@charset "UTF-8";
@import url("reset.css");
@import url("layouts.css");
@import url("parts.css");
@import url("utility.css");
@import url("form.css");

.modaal-inner-wrapper {
  padding: 60px 10px !important;
}
.modaal-container {
  border-radius: 10px;
}
.modaal-content-container {
  padding: 0px 15px !important;
  margin: 20px 0;
}
img {
  max-width: 100%;
}
#btn-back {
  text-decoration: none;
  color: #1AA2D6;
  font-size: 14px;
}
.sp{display: none;}
.pc{display: block;}
/* sp */
@media (max-width: 1000px) {
  .sp{display: block;}
  .pc{display: none;}
  main { padding-top: 55px;}
}

/*---------------------------------------------
header
---------------------------------------------*/
header {
  width: 100%;
  background: #fff;
}
header *, header a {
  color: #000;
}
header ._inner {
  max-width: 70vw;
  position: relative;
}
header h1 {
  font-weight: bold;
  font-size: 26px;
  padding: 25px 0;
}
header h1 img{ width:156px; }
header .gnav-wrapper{
  display: inline-block;
  position: absolute;
  right:0;
  top:0;
}

header .gnav{
  padding: 40px 0 20px 0;
}
header .gnav ul {
  text-align: right;
}
header .gnav ul li {
  display: inline-block;
  padding-right: 15px;
}
header .gnav ul li a {
  text-decoration: none;
  display: block;
  padding: 3px;
}
header .gnav ul li.bt-external{
  border-left:1px solid #000;
  padding-left: 15px;
}
header .gnav ul li.bt-contact{
  display: none;
}
#head_contact {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
}

/* sp */
@media (max-width: 1300px) {
  header ._inner { max-width: 85vw; }
  header h1 { padding: 10px 0; }
  header .gnav-wrapper{ position: relative; }
  header .gnav{padding: 0px 0 20px 0;}
}
@media (max-width: 1000px) {
  header{position: fixed;  z-index: 999999; background:rgba(255,255,255,0.8);}
  header ._inner { max-width: 90vw;min-height: 40px;}
  header h1 { padding: 4px 0; }
  header h1 img{ width:120px; }
  #head_contact{ display: none;}
}

/*---------------------------------------------
sp menu
---------------------------------------------*/
header .nav-button { display: none;}
header .gnav-wrapper.open {  display: block;}
header .gnav-wrapper.close {  display: none;}

/* -- Mobile Device -- */
@media screen and (max-width: 1000px) {
  header .gnav-wrapper{
    position: fixed!important;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: none;
  }
  header .gnav-wrapper .gnav{
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }

  /* コンテンツ */
  header .gnav ul{
    display: block;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 20px 0;
    text-align: center;
  }
  header .gnav ul li{
    display: block!important;
    position: relative;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 15px;
    padding-right: 0;
    color: #fff;
  }
  header .gnav ul li a{ color: #fff; height: auto; padding: 7px 7px;}
  /**/
  header .gnav ul li.bt-external{ margin-top: 40px;}
  header .gnav ul li.bt-external::before{
  content: '';
  position: absolute;
  top: -15px;
  display: inline-block;
  width: 40px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ccc;
  }
  header .gnav ul li.bt-contact{}
  header .gnav ul li.bt-contact a{
    display: block;
    background:linear-gradient(to right, #d28a73, #ecd800);
    border-radius: 20px;
    padding: 10px 0;
    width: 80%;
    margin: 0 auto;
  }
  /* メニューボタン */
  header .nav-button,
  header .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  header .nav-button {
    z-index: 20;
    position: fixed;
    right: 10px;
    top:10px;
    width: 40px;
    height: 36px;
  }
  header .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
  }
  header .nav-button span:nth-of-type(1) { top: 0; }
  header .nav-button span:nth-of-type(2) { top: 16px; }
  header .nav-button span:nth-of-type(3) { bottom: 0; }
  header .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(16px) rotate(-45deg);
    transform: translateY(16px) rotate(-45deg);
  }
  header .nav-button.active span:nth-of-type(2) { opacity: 0; }
  header .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(45deg);
  }
  header .nav-button.active span{ background-color: #fff; }
}

/*---------------------------------------------
detail
---------------------------------------------*/
section#detail .detail-head {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section#detail .detail-head .box-title {
  width: 50%;
}
section#detail .detail-head .box-title2 {
  width: 100%;
}
section#detail .detail-head .box-title > .flex,
section#detail .detail-head .box-title2 > .flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}
section#detail .detail-head .box-title > .flex h2,
section#detail .detail-head .box-title2 > .flex h2{
  color: #212121;
  font-size: 34px;
  line-height:1.5;
}
section#detail .detail-head .box-title > .flex p.price {
  color: #212121;
  font-size: 24px;
  font-weight: bold;
}
section#detail .detail-head .box-title > .flex p.price span {
  color: #D38A74;
  font-size: 34px;
}
section#detail .detail-head p.addr {
  margin-top: 20px;
  line-height:1.5;
}
/* sp */
@media (max-width: 768px) {
  section#detail .detail-head { display: block;}
  section#detail .detail-head .box-title { width: 100%; margin-bottom: 40px;}
  section#detail .detail-head .box-cv{ text-align: center;}
}


section#detail .flex > * {
  margin: 0;
}
section#detail .flex.col-2 {
  margin: auto;
}
section#detail .flex.col-2 > * {
  margin: auto;
  width: 50%;
}
section#detail .box-slider {
  margin: 50px auto;
}
section#detail .box-slider .swiper-container {
  width: 50%;
  margin:auto;
  position: relative;
  overflow: hidden;
  /* 次ページボタンのスタイル */
  /* 前ページボタンのスタイル */
}

@media (max-width: 768px) {
 section#detail .box-slider .swiper-container {
  width: 100%;
 }
 .swiper-slide-upper img{
  height:300px;  
 }
}

section#detail .box-slider .swiper-container.slider-thumbnail {
  height: 20vh;
  padding-top: 20px;
}
section#detail .box-slider .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: .5;
  overflow: hidden;
  text-align: center;
}
section#detail .box-slider .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
section#detail .box-slider .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 20vh;
}
section#detail .box-slider .swiper-container .swiper-button-prev,
section#detail .box-slider .swiper-container .swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  width: 50px;
  /* ボタンの幅 */
  height: 91px;
  /* ボタンの高さ */
  background-size: 50px 91px;
  /* 背景画像としてのサイズ（＝表示したい画像サイズ） */
  margin-top: -24px;
  /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
}
section#detail .box-slider .swiper-container .swiper-button-next {
  background-image: url(/assets/img/icon_slider_l.png);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  /* 左右反転 */
  right: 0;
}
section#detail .box-slider .swiper-container .swiper-button-prev {
  background-image: url(/assets/img/icon_slider_l.png);
  left: 0;
}
section#detail .box-slider .swiper-container .swiper-button-next:after, section#detail .box-slider .swiper-container .swiper-rtl .swiper-button-prev:after, section#detail .box-slider .swiper-container .swiper-button-prev:after, section#detail .box-slider .swiper-container .swiper-rtl .swiper-button-next:after {
  content: "";
}
/* sp */
@media (max-width: 768px) {
  section#detail .flex.col-2 > * { width: 100%; }
}


/*---------------------------------------------
contact
---------------------------------------------*/
section#contact {
  background: #FCFAEA;
}
section#contact .bg_white {
  background: #fff;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 40px 0;
}
section#contact .buy-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section#contact .buy-head > p.img {
  width: 400px;
}
section#contact .buy-head > div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 10px;
  width: calc(100% - 400px);
}
/* sp */
@media (max-width: 768px) {
  section#contact .buy-head { display: block;}
  section#contact .buy-head > div { width: 100%; padding-left: 0;}
  section#contact .buy-head > p.img { margin-bottom: 20px;}
}
@media (max-width: 544px) {
  section#contact .buy-head > p.img { width: 100%;}
  section#contact .buy-head img { width: 100%;}
}

/*---------------------------------------------
footer
---------------------------------------------*/
footer {
  margin-top: 100px;
}
footer a {
  text-decoration: none;
  color: #000;
}
footer .logo {
  padding-bottom: 20px;
}
footer p.info {
  line-height: 1.4;
}
footer #contact {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/bg_contact.png");
  padding: 50px;
}
footer #contact > * {
  color: #fff;
  text-align: center;
}
footer #contact .title {
  font-size: 22px;
  margin-bottom: 20px;
}

footer #contact .btn-contact {
  background: #fff;
  color: #000;
  padding: 15px 150px;
  border-radius: 50px;
  max-width: auto;
}
footer #contact .btn-contact b, footer #contact .btn-contact span {
  display: block;
}
footer #contact .btn-contact b {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.4;
}
footer #contact .btn-contact span {
  color: #212121;
  display: block;
  font-size: 12px;
}
footer #contact .tel {
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer #contact .tel img {
  width: 50px;
  padding-right: 20px;
}
footer #contact .tel span, footer #contact .tel a {
  display: block;
  color: #fff;
  text-decoration: none;
}
footer #contact .tel span {
  font-size: 12px;
}
footer #contact .tel a {
  font-size: 44px;
  font-weight: bold;
}

footer .foot_sitemap{
  display: flex;
  justify-content: space-between;
}
footer .foot_company .logo img{
  width: 150px;
}
footer .foot_company .info {}



footer ul li {
  padding: 5px 0;
}
footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
footer .text-info {
  display: inline-block;
  text-align: left;
  color: #fff;
  line-height: 1.4;
  font-size: 14px;
}
footer .foot_menu {
  display: -ms-flexbox;
}
footer .foot_menu dl {
  margin: 0 10px;
}
footer .foot_menu dl dt {
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 20px;
}
footer .foot_menu dl dd {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #CCCCCC;
}
footer .foot_menu dl dd a {
  display: block;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  padding-bottom: 10px;
}
footer .foot_copyright{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.cpr { font-size: 12px;}
.prv{ font-size: 12px;}
.sitemap { text-align: right;}
.sitemap a {
  text-decoration: none;
  font-size: 12px;
  padding-left: 20px;
}

.btn.btn-contact {
  background: #FFE100;
  color: #000;
  margin-left: auto;
}
.card {
  background: #00ADA9;
  border-radius: 15px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card .card-header {
  text-align: center;
  padding: 20px 0;
}
.card .card-header h2 {
  color: #fff;
  margin: 0;
  font-size: 20px;
}
.card .card-body {
  background: #fff;
  text-align: center;
  padding: 20px;
  line-height: 1.6;
}
.card .card-footer {
  text-align: center;
  padding: 15px 0;
}
.card .card-footer a {
  color: #fff;
  text-decoration: none;
}

/* sp */
@media (max-width: 768px) {
  footer #contact { padding: 30px 10px 30px 10px;}
  footer #contact .title {font-size: 20px; line-height: 140%;}
  footer #contact .tel img {width: 30px;}
  footer #contact .tel span{ line-height: 140%;}
  footer #contact .tel p{ text-align: left;}
  footer #contact .tel a { font-size: 30px;}

  footer .foot_sitemap{ display: block;}
  footer .foot_company{ width: 100%; margin-bottom: 60px;}
  footer .foot_company .logo { text-align: center; }
  footer .foot_company .info { text-align: center; }

  footer .foot_menu { display: flex; flex-wrap: wrap; }
  footer .foot_menu dl{ width: 50%; margin: 0 0 20px 0;}
  footer .foot_menu dl dt{
    border-bottom: 1px solid #CCC; padding-bottom: 10px; margin: 0 10px 15px 10px;
  }
  footer .foot_menu dl dd {
    margin: 0 10px 0 20px; padding-left: 5px; border-left: none;
  }
  footer .foot_copyright{
    display: block; border-top:1px solid #ccc; padding-top: 20px;
  }
  footer .foot_copyright .cpr{ text-align: center; margin-bottom: 20px;}
  footer .foot_copyright .prv{ text-align: center;}

  footer #contact .btn-contact { padding: 5px 80px 10px 80px;}
  footer #contact .btn-contact b{font-size: 26px;}
}
@media (max-width:544px){
  footer #contact .btn-contact { padding: 5px 50px 10px 50px;}
}
/*---------------------------------------------
breadcrumb
---------------------------------------------*/
.breadcrumb {
  margin: 0;
  padding: 20px 0;
  list-style: none;
  line-height:1.5;
}
.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
}
.breadcrumb li:after {
  /* >を表示*/
  content: '>';
  padding: 0 0.5em;
  color: #000;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #000;
  /*色*/
}
.breadcrumb li a:hover {
  text-decoration: underline;
}

/*---------------------------------------------
section *
---------------------------------------------*/
section#mv {
  margin: 0 0 50px;
}
section#point {
  margin: 50px 0;
}
section#point h2 {
  text-align: center;
  font-size: 40px;
  color: #ec6d56;
}
section#infomation {
  margin: 50px 0;
}
section#infomation ._inner {
  background: #D8E2EA;
}

/*---------------------------------------------
kv
---------------------------------------------*/
section#kv {
  background-size: cover;
  background-repeat: no-repeat;
}
section#kv.type_1 {
  background-image: url("../img/bg_kv.png");
}
section#kv.type_2 {
  background-image: url("../img/bg_kv_rent.png");
}
section#kv.type_3 {
  background-image: url("../img/bg_kv_infomation.png");
}
section#kv.type_4 {
  background-image: url("../img/bg_kv_work.png");
}
section#kv.type_5 {
  background-image: url("../img/bg_kv_sales.png");
}
section#kv.type_login {
  background-image: url("../img/bg_kv_login.png");
}
section#kv div._inner {
  padding: 100px 0;
}
section#kv div._inner h2 {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

/*---------------------------------------------
list-news
---------------------------------------------*/
.list-news dl {
  border-bottom: 1px solid #707070;
  padding: 5px 0;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.list-news dl > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.list-news dl dt {
  font-size: 14px;
  width: 90px;
}
.list-news dl dd {
  font-size: 18px;
  width: calc(100% - 90px);
}
.list-news dl dd a {
  color: #000;
  text-decoration: none;
  line-height:1.5;
}

/*---------------------------------------------
contents
---------------------------------------------*/
section#contents {
  margin: 50px 0;
}
section#contents h2 {
  font-size: 30px;
  text-align: center;
  color: #000;
  padding: 15px 0;
}
section#contents h2.ttl-point {
  color: #ec6d56;
}
section#contents .list {
  background: #D8E2EA;
}
section#contents .list .list-box {
  background: #fff;
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin: 1%;
}
section#contents .list .list-box .ttl {
  font-weight: bold;
  border-bottom: 2px solid #000;
  padding: 0 0 10px;
  text-align: center;
}
section#contents .list .list-box .info-text {
  padding: 15px 0;
  line-height: 1.4;
  font-size: 14px;
  word-break: break-all;
}
section#contents .list .list-box .info-text span {
  color: #5185C5;
  font-weight: bold;
}
section#contents .list .list-box .btn {
  background: #5185C5;
  color: #fff;
  border: 1px solid #5185C5;
  width: 100%;
  font-size: 16px;
}
section#contents .list .list-box .btn:hover {
  background: #fff;
  color: #5185C5;
}

/*---------------------------------------------
buy
---------------------------------------------*/
section#buy h2 {
  font-size: 30px;
  color: #212121;
  line-height: 1.2;
  margin-bottom: 10px;
}
section#buy p.addr {
  color: #212121;
  text-decoration: underline;
  margin-bottom: 30px;
}
section#buy p.price {
  font-size: 24px;
  margin-bottom: 30px;
}
section#buy p.price span {
  color: #D38A74;
  font-weight: bold;
  font-size: 1.5em;
}
section#buy .list {
  margin: 50px 0 100px;
}

/* sp */
@media (max-width: 768px) {
  section#buy h2 { font-size: 26px;}
}
/*---------------------------------------------
search
---------------------------------------------*/
section#search h2 {
  font-size: 30px;
  color: #212121;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
}
section#search .search-box {
  margin-bottom: 50px;
}
section#search .search-box.acc .box-header {
  cursor: pointer;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
section#search .search-box.acc .box-header .minus {
  display: none;
}
section#search .search-box.acc .box-contents {
  display: none;
}
section#search .search-box.acc.open .box-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/bg_search_head.png");
}
section#search .search-box.acc.open .box-header .plus {
  display: none;
}
section#search .search-box.acc.open .box-header .minus {
  display: inline-block;
}
section#search .search-box.acc.open .box-contents {
  display: block;
}
section#search .search-box .box-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
section#search .search-box .box-header label {
  color: #fff;
}
section#search .search-box .box-contents {
  padding: 20px 20px 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #F8F8F8;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
section#search .search-box .box-contents .ttl-search {
  border-left: 4px solid #D38A74;
  font-size: 18px;
  color: #000;
  padding: 5px 0;
  padding-left: 10px;
}
section#search .search-box .box-contents label {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  font-size: 16px;
  color: #000;
}
section#search .search-box .box-contents label input {
  margin-right: 15px;
}
/* sp */
@media (max-width: 768px) {
  section#search .search-box .box-header label{ width: 50%; margin-top: 10px;}
}


/*---------------------------------------------
login
---------------------------------------------*/
section#login {
  background: #FCFAEA;
  padding: 100px 0;
}
section#login ._inner {
  background: #fff;
  padding: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
section#login ._inner form {
  max-width: 500px;
  margin: 0 auto;
}
section#login ._inner form label {
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 10px;
}
section#login ._inner form a {
  color: #212121;
}

/*---------------------------------------------
category_page
---------------------------------------------*/
.category_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.category_page h2 {
  font-size: 30px;
  color: #212121;
  line-height: 1.2;
  margin: 30px auto 20px;
  text-align: center;
}
.category_page .list-box {
  width: calc(100% - 250px);
}
.category_page .list-box .date_cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category_page .list-category {
  width: 250px;
}
.category_page .list-category h3 {
  font-size: 24px;
  border-left: 6px solid #D38A74;
  padding: 5px 10px;
  font-weight: bold;
}
.category_page .list-category ul {
  background: #F8F8F8;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 20px;
}
.category_page .list-category ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  margin-bottom: 10px;
  color: #000;
}
#pp p {
  line-height: 1.6;
  font-size: 14px;
}
#pp h3 {
  font-size: 20px;
  border-left: 6px solid #D38A74;
  padding: 5px 10px;
  font-weight: bold;
  margin: 30px 0 10px;
}

/* sp */
@media (max-width: 768px) {
  section#contents { margin: 50px 0; }
  section#contents .list .list-box { margin: 15px; }
  .category_page { display: block;}
  .category_page .list-box { width: 100%; margin-bottom: 40px;}
  .category_page .list-category { width: 100%;}
}

/*---------------------------------------------
works
---------------------------------------------*/
section#list .result-stats{
  display: flex;
  position: relative;
}
section#list .result-stats .total-num{
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
  margin-top: 5px;
}
section#list .result-stats .total-num span{
  color: #d06e27;
  font-size: 36px;
  font-weight: bold;
  padding-right: 5px;
}
section#list .result-stats .refine dl{
  display: flex;
  width: 100%;
}
section#list .result-stats .refine dt label{
  white-space: nowrap;
  margin: 20px 10px;
  font-weight: normal;
}
section#list .result-stats .refine dd .form-group{
  background-color: #f8f8f9;
  width: 100%;
}
section#list .pager{
}
section#list .pager.pos-center{
  margin: 0 auto;
  text-align: center;
}
section#list .pager.pos-right{
  margin: 0 0;
  text-align: right;
}
section#list .pager li{
  display: inline;
  margin-right: 3px;
}
section#list .pager li:last-child{
  margin-right: 0px;
}
section#list .pager li span{
  padding: 6px 14px;
  border: 1px solid #e6e5ea;
  border-radius: 3px;
  color: #000;
  text-decoration: none;
}
section#list .pager li a{
  text-decoration: none;
}
section#list .pager li.active span{
  font-weight: bold;
  color: #d06e27;
  border: 0;
}

/*---------------------------------------------
sales
---------------------------------------------*/
section#flow h2 {
  font-size: 30px;
  color: #212121;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
}
section#flow .flow-box{
  position: relative;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  margin-bottom: 60px;
}
section#flow .flow-box dl{
  display: flex;
}
section#flow .flow-box dt{
  width: 190px;
  min-height: 150px;
  background-color: #f8f8f8;
  position: relative;
  text-align: center;
}
section#flow .flow-box dd{
  width: calc(100% - 190px);
  padding: 40px 0;
}
section#flow .flow-box dt p{

}
section#flow .flow-box dt span{
  left: 50%;
  position: absolute;
  top: 50%;
}
section#flow .flow-box dt img{
  transform: translate(-50%,-50%);
}
section#flow .flow-box dd h3,
section#flow .flow-box dd p{
  margin: 0 40px;
}
section#flow .flow-box dd h3{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
section#flow .flow-box.arrow-pos1::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: 0 0 0 35px;
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
  border-width: 30px 60px 0 60px;
}
section#flow .flow-box.arrow-pos2::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  left: 50%;
  width: 0px;
  height: 0px;
  margin: 0 0 0 30px;
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
  border-width: 30px 60px 0 60px;
}
section#flow .flow-box.arrow-ln-pos1::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: -60px;
  left: 0;
  height: 60px;
  width: 10px;
  margin: 0 0 0 85px;
  border-left: 10px solid #ccc;
  box-sizing: border-box;
}
section#flow .arrow-lnb{
  position: absolute;
  right: 0;
  left: 50%;
  width: 10px;
  height: 20px;
  margin: 0 0 0 85px;
  background-color: #ccc;
  border-right: 10px solid #ccc;
  box-sizing: border-box;
}
section#flow .arrow-lnb::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  left: -75px;
  width: 0px;
  height: 0px;
  margin: 0 0 0 20px;
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
  border-width: 30px 60px 0 60px;
}
section#flow .flow-box dt.mh-ex{ min-height: 335px!important;} 
/* sp */
@media (max-width: 768px) {
  section#flow .flow-box{ margin-bottom: 40px;}
  section#flow .flow-box dl{ display: block; text-align: center;}
  section#flow .flow-box dt span{ position: static; left: 0;  top: 0;}
  section#flow .flow-box dt img{ transform: none; width: 50px;}
  section#flow .flow-box dt{ width: 100%; min-height: auto; padding: 10px 0; }
  section#flow .flow-box dd{ width: 100% ;padding: 10px 0; text-align: left;}
  section#flow .flow-box dt.mh-ex{ min-height: auto!important;} 
  section#flow .flow-box dd h3,
  section#flow .flow-box dd p{margin: 0 10px; font-size: 14px;}
  section#flow .flow-box dd h3{ font-size: 18px; margin-bottom: 10px;}
  section#flow .flow-box.arrow-pos1::before{ bottom: -30px; margin: 0 0 0 10px; border-width: 15px 30px 0 30px; }
  section#flow .flow-box.arrow-pos2::after{ bottom: -30px; margin: 0 0 0 10px; border-width: 15px 30px 0 30px; }
  section#flow .flow-box.arrow-ln-pos1::before{ bottom: -40px; height: 40px; width: 10px; margin: 0 0 0 38px; border-left: 6px solid #ccc;}
  section#flow .arrow-lnb{ width: 6px; height: 15px; margin: 0 0 0 38px; background-color: #ccc; border-right: 6px solid #ccc;}
  section#flow .arrow-lnb::after{ bottom: -15px; margin: 0 0 0 48px; border-width: 15px 30px 0 30px;}
}
/*---------------------------------------------
company
---------------------------------------------*/
section#company .access{
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section#company .access > * {
  width: 48%;
  margin: 10px 0;
}
section#company .access > *:nth-child(2n-1) {
  margin-right: 1%;
}

section#company .access > *:nth-child(2n) {
  margin-right: 1%;
}
/* sp */
@media (max-width: 768px) {
  section#company .access{ display: block;}
  section#company .access > * { width: 100%;}
}

/*---------------------------------------------
top-search
---------------------------------------------*/
section#top-search{
  margin-bottom: 50px;
}
section#top-search h2 {
  font-size: 30px;
  color: #212121;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
}
section#top-search .tab-area {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
section#top-search .tab-area .tab {
  width: 49.5%;
  background: #eff0ef;
  text-align: center;
  border-radius: 10px 10px 0 0;
  padding: 20px 0;
  line-height:1.5;
}
section#top-search .tab-area .tab.active {
  background: linear-gradient(to right, #d48b73, #d3cb3e);
  color: #fff;
  line-height:1.5;
}
section#top-search .content-area {
  background-color: #f8f8f8;
  padding: 0 40px 40px 40px;
}
section#top-search .content-area .tabcontent {
  display: none;
}
section#top-search .content-area .tabcontent.show {
  display: block;
}
/**/
section#top-search .search-map{
  padding-right: 10px;
}
section#top-search .search-choice{
}
section#top-search .search-choice li{
  background-color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 100%;
}
section#top-search .search-choice li.first{
  margin-left: 0;
}
section#top-search .search-choice li a{
  display: block;
  padding: 15px 10px;
  color: #000;
  text-decoration: none;
}
section#top-search .search-choice li a:hover{
  text-decoration: underline;
}
section#top-search .search-choice li a span{
  background: url("../img/arrow01.png") no-repeat left 3px;
  background-size: 20px auto;
  padding-left: 25px;
}
section#top-search .search-choice.purpose p{
  margin-bottom: 10px;
}
section#top-search .search-choice.purpose p img{
  width: 100px;
}
/* sp */
@media (max-width: 768px) {
  section#top-search .content-area { padding: 0 0px 40px 10px;}
  section#top-search .search-choice.purpose p img{ width: 60px;}
}
/*---------------------------------------------
top-newarrivals
---------------------------------------------*/
section#top-newarrivals{
  margin-bottom: 50px;
}
section#top-newarrivals h2 {
  font-size: 30px;
  color: #212121;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
}

/*---------------------------------------------
top-assessment
---------------------------------------------*/
section#top-assessment {
  background-color: #F5F5F5;
  margin-bottom: 50px;
}
section#top-assessment ._inner{
  padding: 40px 0;
}
section#top-assessment .ass-flow{
  background: #000 url("../img/bg_assessment01.png") no-repeat;
  background-size: cover;
  position: relative;
  min-height: 135px;
}
section#top-assessment .ass-ask{
  background: #000 url("../img/bg_assessment02.png") no-repeat;
  background-size: cover;
  position: relative;
  min-height: 135px;
}
section#top-assessment .ass-flow::before,
section#top-assessment .ass-ask::before{
  content: '';
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
section#top-assessment .ass-flow:hover::before,
section#top-assessment .ass-ask:hover::before{
  background-color: rgba(0,0,0,0.6);
}
section#top-assessment .ass-flow a,
section#top-assessment .ass-ask a{
  display: block;
}

section#top-assessment .ass-flow p,
section#top-assessment .ass-ask p{
  display: block;
  position: relative;
  border: 1px solid #fff;
  text-align: center;
  margin: 10px 10px;
  height: 115px;
  color: #fff;
  text-decoration: none;
  
}
section#top-assessment .ass-flow span,
section#top-assessment .ass-ask span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  font-size: 28px;
  line-height:1.5;
}
section#top-assessment .ass-flow span img{width: 123px; margin-top: 10px;}
section#top-assessment .ass-ask span img{width: 165px; margin-top: 10px;}

/* sp */
@media (max-width: 768px) {
  section#top-assessment .ass-flow span,
  section#top-assessment .ass-ask span{
    font-size: 25px;
	line-height:1.5;
  }
}
/*---------------------------------------------
top-whatsmeiwa
---------------------------------------------*/
section#top-whatsmeiwa{
  margin-bottom: 50px;
}
section#top-whatsmeiwa h2 {
  font-size: 30px;
  color: #212121;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
}
section#top-whatsmeiwa h3{
  position: relative;
  margin-bottom: 10px;
}
section#top-whatsmeiwa h3::after{
  content: '';
  position: absolute;
  top:12px;
  left: 80px;
  border-right: 1px solid #ccc;
  height: 40px;
}
section#top-whatsmeiwa h3 img{
  width: 60px;
}

section#top-whatsmeiwa h3 span{
  position: absolute;
  top:22px;
  font-size: 24px;
  font-weight: bold;
  margin-left: 40px;
}

/*---------------------------------------------
top-infomation
---------------------------------------------*/
section#top-infomation{
  background-color: #F8F8F8;
  margin-bottom: -100px;
}
section#top-infomation h2{
  font-size: 30px;
  color: #212121;
  line-height: 1.2;
  margin-bottom: 50px;
  position: relative;
}
section#top-infomation h2 span{
  position: absolute;
  top:15px;
  right: 0;
  font-size: 14px;
}
section#top-infomation h2 span a{
  background: url("../img/arrow01.png") no-repeat left 3px;
  background-size: 20px auto;
  padding-left: 25px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #000;
  text-decoration: none;
}
section#top-infomation .flex{
  justify-content: space-between;
}
section#top-infomation .info,
section#top-infomation .blog{
  width: 46%;
  margin-bottom: 50px;
}
section#top-infomation .info dl{
  margin-bottom: 30px;
}
section#top-infomation .info dt,
section#top-infomation .info dd{
  margin-bottom: 9px;
}
section#top-infomation .info dd{
  font-size: 16px;
}
section#top-infomation .list-blog dl{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #707070;
  padding: 5px 0;
  margin-bottom: 10px;
}
section#top-infomation .list-blog dt{
  width: 120px;
  margin-bottom: 10px;
  background-color: #ccc;
}
section#top-infomation .list-blog dd{
  width: calc(100% - 140px);
  margin-bottom: 10px;
  
}
section#top-infomation .list-blog a{
  color: #000;
  text-decoration: none;
  line-height:1.5;
}
section#top-infomation .list-blog .date{
  font-size: 14px;
  margin-bottom: 10px;
}
/* sp */
@media (max-width: 768px) {
  section#top-infomation{ padding: 30px 0}
  section#top-infomation .flex{ display: block;}
  section#top-infomation .info,
  section#top-infomation .blog{ width: 100%;}
}

/*---------------------------------------------
headline
---------------------------------------------*/
section#mainvisual .headline{
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: -1px;
  width: calc(100% - 50px);
}

section#mainvisual .headline .banner{
  width: 220px;
  background-color: #EFEFEF;
  text-align: center;
  position: relative;
}
section#mainvisual .headline .sns{
  width: 220px;
  background-color: #1AB41E;
  text-align: center;
  position: relative;
}
section#mainvisual .headline .news{
  width: calc(100% - 440px);
  min-height: 80px;
  background-color: #ccc;
  position: relative;
}
section#mainvisual .headline .banner a,
section#mainvisual .headline .sns a{
  display: block;
  min-height: 80px;
}
section#mainvisual .headline .banner img,
section#mainvisual .headline .sns img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

section#mainvisual .headline .news img{
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
section#mainvisual .headline .news .news-detail{
  position: absolute;
  top: 50%;
  left: 140px;
  transform: translateY(-50%);
  border-left:1px solid #212121;
  padding: 15px 0 15px 20px;
  line-height: 1.5;
}
section#mainvisual .headline .news .news-detail span{
  margin-right: 10px;
}
section#mainvisual .headline .news .news-detail a{
  color: #000;
  text-decoration: none;
}

/* sp */
@media (max-width: 768px) {
  section#mainvisual .headline{ width: 100%;}
  section#mainvisual .headline{ display: block;}
  section#mainvisual .headline::after {content: ""; display: block; clear: both;}
  section#mainvisual .headline .news{ width: 100%; }
  section#mainvisual .headline .banner{ width: 50%; float: left; }
  section#mainvisual .headline .banner img,
  section#mainvisual .headline .sns img{ width: 150px;}
  section#mainvisual .headline .sns{ width: 50%; float: right; }
  section#mainvisual .headline .news img{ width: 80px;left: 10px;}
  section#mainvisual .headline .news .news-detail{ left: 100px;}
  section#mainvisual .headline .news .news-detail span{ display: block;}
}

/*---------------------------------------------
swiper
---------------------------------------------*/
section#mainvisual{
  position: relative;
}
section#mainvisual .swiper-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  left: -50px;
}
section#mainvisual .swiper {
  width: 100%;
  height: 600px;
}

section#mainvisual .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #f2f2f2;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section#mainvisual .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#mainvisual .swiper-pagination{
  text-align: center;
  width: 50px!important;
  position: absolute!important;
  left: calc(100% - 45px)!important;
  bottom:0;
}
section#mainvisual .swiper-pagination-bullet {
  display: block!important;
  width: 30px!important;
  height: 30px!important;
  text-align: center;
  line-height: 28px;
  opacity: 0.9!important;
  font-size: 18px!important;
  font-weight: bold;
  color: #000!important;
  background: rgba(255, 255, 255)!important;
}
section#mainvisual .swiper-pagination-bullet-active {
  color: #000!important;
  border: 1px solid #000;
}
section#mainvisual .swiper-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  z-index: 9999;
  color: #fff;
}
section#mainvisual .swiper-text .copy-catch{
  margin-bottom: 20px;
}
section#mainvisual .swiper-text .copy-catch img{
  opacity: 0.8;
}
section#mainvisual .swiper-text .copy-read{
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 30px;
}
section#mainvisual .swiper-text .copy-body{
  line-height: 180%;
}
section#mainvisual .swiper-rights{
  position: absolute;
  top: 180px;
  left: calc(100% - 34px);
  z-index: 9999;
}

section#mainvisual .swiper-slide::before{
  content: '';
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
section#mainvisual #bg01{  background-image: url("../img/main_visual01.png");}
section#mainvisual #bg02{  background-image: url("../img/main_visual02.png");}


/* sp */
@media (max-width: 768px) {
  section#mainvisual{ padding-top: 12px;}
  section#mainvisual .swiper-container { left:0;}
  section#mainvisual .swiper-text{ width: 80%;}
  section#mainvisual .swiper { height: 480px; }
  section#mainvisual .swiper-pagination{display: none;}
  section#mainvisual .swiper-rights{display: none;}
}
@media (max-width: 544px) {
  section#mainvisual{ padding-top: 6px;}
}



