@charset "utf-8";

@import url("../common/base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/

@font-face {
  font-family: 'Optima';
  src: url('../../fonts/Optima.eot');
  src: url('../../fonts/Optima.eot?#iefix') format('embedded-opentype'),
      url('../../fonts/Optima.woff2') format('woff2'),
      url('../../fonts/Optima.woff') format('woff'),
      url('../../fonts/Optima.ttf') format('truetype'),
      url('../../fonts/Optima.svg#Optima') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.optima {
  font-family: Optima;
}

.serif {
  font-family: 'PT Serif', serif;
}

h3{
	font-weight:normal;
}
.loadingPage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E5E0DE;
  z-index: 9999;
}

body {
  background-color: #FFFFFF;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

body.fixed {
  overflow: hidden;
}

.pageWrapper {
  background: #E5E0DE;
}

#fixedLeft {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 43.9%;
}

#fixedLeft .fixedLW {
  position: relative;
  height: 100vh;
  overflow-y: hidden;
}

#fixedLeft .fixedLW .menuBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(248, 247, 245, 1);
  padding: 28px 48px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#fixedLeft .fixedLW .menuBar .hamburger {
  cursor: pointer;
  z-index: 999;
}

#fixedLeft .fixedLW .menuBar .hamburger .off.pc,
#fixedLeft .fixedLW .menuBar .hamburger.toggle .on {
  display: block;
}

#fixedLeft .fixedLW .menuBar .hamburger .on,
#fixedLeft .fixedLW .menuBar .hamburger .off.sp,
#fixedLeft .fixedLW .menuBar .hamburger.toggle .off,
#fixedLeft .fixedLW .menuBar .hamburger.toggle .on.sp {
  display: none;
}

#fixedLeft .fixedLW .mainMenu {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(131, 112, 112, 0.5);
  width: 34.8%;
  display: none;
}

#fixedLeft .fixedLW .mainMenu .mainMenuW {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
  padding: 106px 45px 140px 0;
  height: 100%;
}

#fixedLeft .fixedLW .mainMenu .menu li {
  margin-bottom: 28px;
}

#fixedLeft .fixedLW .mainMenu .menu li:last-child {
  margin-bottom: 0;
}

#fixedLeft .fixedLW .mainMenu .menu li a {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

#fixedLeft .fixedLW .mainMenu .infoBot .menu li {
  margin-bottom: 10px;
}

#fixedLeft .fixedLW .mainMenu .infoBot .menu li:last-child {
  margin-bottom: 0;
}

#fixedLeft .fixedLW .mainMenu .infoBot .menu li a {
  font-size: 16px;
}

#fixedLeft .fixedLW .mainMenu .infoBot .social {
  margin-top: 36px;
}

#fixedLeft .fixedLW .mainMenu .infoBot .social li {
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 17px;
}

#fixedLeft .fixedLW .mainMenu .infoBot .social li:last-child {
  margin-right: 0;
}

#fixedLeft .fixedLW .mainMenu .infoBot .social li img {
  vertical-align: middle;
}

#pageScroll {
  padding-left: calc(43.9% + 5px);
}

#main {
  height: 100vh;
  overflow: hidden;
}

#main .mainText {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#main .mainPhoto {
  height: 50vh;
  transition: all 3s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
    filter: blur(0);
    -webkit-filter: blur(0);
  }
}

.fadeInBlur {
  -webkit-animation-name: fadeInBlur;
  animation-name: fadeInBlur;
}

#footer {
  width: 100%;
}

.sp {
  display: none;
}

.areaIntro {
  padding: 86px 0;
  transition: all 3s linear;
}

.areaIntro .text {
  text-align: center;
  font-size: 21px;
  color: #192652;
  line-height: 2.15;
}

.areaIntro .btn {
  text-align: center;
  margin-top: 85px;
}

.areaIntro .btn a {
  width: 190px;
  color: #fff;
  background: #C6B7AF;
  display: inline-block;
  font-size: 22px;
  padding: 13px 22px 12px;
  border-radius: 3px;
  position: relative;
  transition: all 300ms linear;
}

.areaIntro .btn a:hover {
  background: #7D6F70;
}

.areaIntro .btn a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  width: 2px;
  height: 68px;
  background: #fff;
  border-radius: 2px;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

.areaCta {
  padding: 243px 86px;
}

.areaCta h2{
  display: block;
  margin-bottom: 55px;
}

.areaCta .btn-cta {
  margin-bottom: 55px;
}

.areaCta .btn-cta:last-child {
  margin-bottom: 0;
}

.areaCta .btn-cta a {
  position: relative;
  display: block;
}

.areaCta .btn-cta a .photo {
  width: 100%;
  transition: all 900ms linear;
}

.areaCta .btn-cta a .photoHover {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 900ms linear;
}

.areaCta .btn-cta a:hover .photo {
  opacity: 0;
}

.areaCta .btn-cta a:hover .photoHover {
  opacity: 1;
}

@media screen and (max-width:440px){
  .areaCta h2 {
    margin: 20px 0px;
  }
}

.wrapContent {
  padding-top: 218px;
	background: #F0EDEC;
}

.wrapContent .areaTitle {
  text-align: center;
  font-size: 43px;
  color: #837070;
  font-weight: normal;
  line-height: 1.45;
}

.wrapContent .areaDaf {
  background: #9b8787;
  padding: 0 90px 108px;
  color: #fff;
}

.wrapContent .areaDaf .imgTop {
  text-align: center;
}

.wrapContent .areaDaf .rowItems {
  margin-top: 58px;
}

.wrapContent .areaDaf .rowDesign {
  margin-top: 36px;
}

.wrapContent .areaDaf .rowItems .rowTitle {
  text-align: center;
  color: #fff;
  font-size: 39px;
  font-weight: normal;
  position: relative;
  z-index: 1;
}

.wrapContent .areaDaf .rowItems .rowTitle:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%);
  width: 280px;
  height: 20px;
  border-radius: 2px;
  background: #837070;
  z-index: -1;
}

.wrapContent .areaDaf .rowItems .subTitle {
  text-align: center;
  font-size: 39px;
  margin-top: 33px;
}

.wrapContent .areaDaf .rowItems .rowContent {
  padding: 32px 50px 0;
  font-size: 20.5px;
  line-height: 1.95;
  text-align: justify;
}

.wrapContent .areaOur {
  background: #9b8787;
  color: #fff;
  padding: 0 90px 103px;
}

.wrapContent .areaOur .areaTitle {
  margin-bottom: 10px;
}

.wrapContent .areaOur .areaImg {
  text-align: center;
}

.wrapContent .areaOur .subTitle {
  text-align: center;
  font-size: 39px;
  margin-top: 40px;
}

.wrapContent .areaOur .rowItems.last {
  margin-top: 42px;
}

.wrapContent .areaOur .history .areaImg{
  margin: 40px 0 20px;
}

.wrapContent .areaOur .areaContent {
  padding: 31px 30px 0 50px;
  font-size: 21px;
  line-height: 1.95;
  text-align: justify;
}

.wrapContent .areaOur .dropdown {
  text-align: center;
  font-size: 20px;
  margin-top: 34px;
  padding-bottom: 18px;
  margin-bottom: 58px;
  cursor: pointer;
  position: relative;
}

.wrapContent .areaOur .dropdown .on {
  display: none;
}

.wrapContent .areaOur .dropdown.active .on {
  display: block;
}

.wrapContent .areaOur .dropdown.active .off {
  display: none;
}

.wrapContent .areaOur .dropdown:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 8px;
  background: url(../../images/top/arrow-down.svg) no-repeat center bottom;
  background-size: contain;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transition: all 0.3s;
}

.wrapContent .areaOur .dropdown:hover:after {
  transform: translate(-50%, 8px) rotate(0deg);
}

.wrapContent .areaOur .dropdown.active:after {
  transform: translateX(-50%) rotate(180deg);
}

.wrapContent .areaOur .rowDropdown {
  display: none;
}

#footer {
  text-align: center;
  color: #837070;
  padding: 17px 0;
}

#footer .footerText {
  font-size: 19px;
  font-weight: bold;
}

#footer .footerText a {
  color: #837070;
}

#footer .copyfooter {
  font-size: 17px;
  margin-top: 15px;
  font-weight: bold;
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  70%,
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media (max-width: 1230px) and (min-width: 769px) {
  body {
    width: 1349px;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .inner {
    width: 100%;
    padding: 0 4%;
  }

  #fixedLeft {
    width: 100%;
  }

  #fixedLeft .fixedLW {
    height: auto;
  }

  #fixedLeft .fixedLW .fixedPhoto {
    display: none;
  }

  #fixedLeft .fixedLW .menuBar {
    position: static;
    background: transparent;
    padding: 19px 20px 19px 18px;
  }

  #fixedLeft .fixedLW .menuBar .logo {
    width: 100px;
    z-index: 1;
  }

  #fixedLeft .fixedLW .menuBar .hamburger .off.sp {
    width: 56px;
  }

  #fixedLeft .fixedLW .menuBar .hamburger .off.sp,
  #fixedLeft .fixedLW .menuBar .hamburger.toggle .on.sp {
    display: block;
  }

  #fixedLeft .fixedLW .menuBar .hamburger .off.sp {
    background: #837070;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
  }

  #fixedLeft .fixedLW .menuBar .hamburger .off.pc,
  #fixedLeft .fixedLW .menuBar .hamburger.toggle .off.sp,
  #fixedLeft .fixedLW .menuBar .hamburger.toggle .on.pc {
    display: none;
  }

  #fixedLeft .fixedLW .mainMenu {
    position: fixed;
    bottom: auto;
    width: 100%;
    background: #837070;
    height: 100vh;
  }

  #fixedLeft .fixedLW .menuBar .logo {
    transform: translateY(-16px);
  }

  #fixedLeft.toogle .fixedLW .menuBar {
    padding: 30px 35px 19px 18px;
  }

  #fixedLeft.toogle .fixedLW .menuBar .logo {
    transform: translateY(-14px);
  }

  #fixedLeft .fixedLW .mainMenu .mainMenuW {
    padding: 80px 77px 17px 27px;
    text-align: left;
  }

  #fixedLeft .fixedLW .mainMenu .menu {
    padding-left: 16px;
  }

  #fixedLeft .fixedLW .mainMenu .menu li a {
    font-size: 18px;
  }

  #fixedLeft .fixedLW .mainMenu .infoBot .menu {
    border-top: 1px solid #F8F7F5;
    text-align: center;
    padding-left: 0;
    padding-top: 3px;

  }

  #fixedLeft .fixedLW .mainMenu .infoBot .menu li {
    margin-bottom: 0;
    display: inline-block;
    position: relative;
  }

  #fixedLeft .fixedLW .mainMenu .infoBot .menu li:after {
    content: "/";
    color: #fff;
    font-size: 12px;
    margin-left: 3px;
  }

  #fixedLeft .fixedLW .mainMenu .infoBot .menu li:last-child:after {
    display: none;
  }

  #fixedLeft .fixedLW .mainMenu .infoBot .menu li a {
    font-size: 12px;
  }

  #fixedLeft .fixedLW .mainMenu .infoBot .social {
    margin-top: 0;
    position: absolute;
    right: 23px;
    bottom: 19px;
    display: flex;
    flex-direction: column-reverse;
  }

  #fixedLeft .fixedLW .mainMenu .infoBot .social li {
    width: 30px;
    display: block;
    margin-right: 0;
    margin-top: 13px;
  }

  #fixedLeft .fixedLW .mainMenu .infoBot .social li:last-child {
    margin-top: 0;
  }

  #copyright {
    font-size: 2vh;
    color: #aaa0a0;
    margin-bottom: 10px;
    white-space: nowrap;
    transform: rotate(-90deg);
  }

  #pageScroll {
    padding-left: 0;
  }

  #main .mainText {
    height: 46.7%;
  }

  #main .mainText img {
    width: 16px;
    margin-top: 15%;
    margin-bottom: 15%;
  }

  #main .mainPhoto {
    height: 53.3%;
  }

  #main .mainPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: cover;
  }

  .areaIntro {
    padding: 30px 12.5%;
  }

  .areaIntro .text {
    max-width: 380px;
    margin: 0 auto;
    font-size: 12.5px;
    text-align: left;
    line-height: 1.8;
  }

  .areaIntro .btn {
    margin-top: 37px;
  }

  .areaIntro .btn a {
    font-size: 14px;
    width: 124px;
    border-radius: 2px;
    padding: 7px 8px;
    text-align: center;
  }

  .areaIntro .btn a:after {
    height: 33px;
    width: 1px;
    top: -28px;
  }

  .areaCta {
    padding: 53px 20px;
  }

  .areaCta .btn-cta {
    margin-bottom: 21px;
    border-radius: 3px;
    overflow: hidden;
  }

  .areaCta .btn-cta a .overlay {
    display: none;
  }

  .wrapContent {
    padding-top: 64px;
  }

  .wrapContent .areaTitle {
    font-size: 26px;
  }

  .wrapContent .areaDaf {
    margin-top: 6px;
    padding: 0 0 64px;
  }

  .wrapContent .areaDaf .rowItems {
    margin-top: 32px;
  }

  .wrapContent .areaDaf .rowItems .rowTitle {
    font-size: 23px;
  }

  .wrapContent .areaDaf .rowDesign {
    margin-top: 26px;
  }

  .wrapContent .areaDaf .rowItems .rowTitle:after {
    width: 139px;
    height: 11px;
    border-radius: 1px;
    bottom: 3px;
  }

  .wrapContent .areaDaf .rowItems .subTitle,
  .wrapContent .areaOur .subTitle {
    font-size: 18px;
    margin-top: 16px;
  }

  .wrapContent .areaDaf .rowItems .rowContent,
  .wrapContent .areaOur .rowItems .areaContent {
    font-size: 13px;
    padding: 12px 25px 0;
    line-height: 1.7;
  }

  .wrapContent .areaOur {
    padding: 0 0 49px;
  }

  .wrapContent .areaOur .areaTitle {
    margin-bottom: 6px;
    color: #4a3f3f;
  }

  .wrapContent .areaOur .rowItems.last {
    margin-top: 15px;
  }

	.wrapContent .areaOur .areaContent {
    font-size: 13px;
    padding: 12px 20px 0;
    line-height: 1.7;
  }

	.wrapContent .areaOur .history{
		margin-top: 20px;
	}

  .wrapContent .areaOur .dropdown {
    font-size: 13px;
    margin-top: 24px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }

  .wrapContent .areaOur .dropdown:after {
    width: 9px;
    height: 5px;
  }

  .wrapContent .areaOur .rowDropdown {
    margin-top: 36px;
  }

  #footer {
    padding: 7px 0 11px;
  }

  #footer .footerText {
    font-size: 10px;
  }

  #footer .copyfooter {
    font-size: 8px;
    margin-top: 6px;
  }
}

@media screen and (max-width:440px){
  .wrapContent .areaTitle {
    font-size: 24px;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  #main .mainPhoto img {
    width: 100%;
  }

  #main .mainText {
    position: relative;
    z-index: 1;
  }

  #main .mainPhoto {
    z-index: -1;
  }
}

.allsofa {
  width: 100%;
  margin: 0px auto;
	background-color:#F0EDEC;
}
@media screen and (max-width:440px){
  .allsofa {
    width: 100%;
  }
}

.allsofa .areaTitle {
  text-align: center;
  color: #745f5f;
  font-size: 43px;
  line-height: 1;
  font-weight: normal;
	padding-top: 30px;
}

.allsofa .titleSub {
  text-align: center;
  font-size: 18px;
  color: #745f5f;
  font-weight: bold;
  margin-bottom: 20px;
}

.allsofa input {
  display: none;
}

.allsofa .blk-sofas .blk-sofa{
  display: block;
  margin-bottom: 25px;
  background-color:#fff;
	padding: 5px;
	border-radius: 2px;
}

.allsofa .blk-sofas .blk-sofa img{
  width: 100%;
}

@media screen and (max-width:440px){
  .allsofa .blk-sofas .blk-sofa{
    width: 90%;
    margin: 15px auto 0px;
  }
}


@media screen and (min-width:768px) and (max-width:1024px){
  .allsofa .blk-sofas{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }
  .allsofa .blk-sofas .blk-sofa{
    width: 45%;
    margin:25px auto 0px;
  }
  .allsofa .blk-sofas .blk-sofa:after {
    content: "";
    display: block;
    width: 45%;
    height: 0;
  }
  .allsofa .blk-sofas .blk-sofa img{
    width: 100%;
  }
}

.allsofa .blk-sofas .blk-sofa .blk-title{
  margin-top: 10px;
}

.allsofa .blk-sofas .blk-sofa .blk-title h3,
.allsofa .blk-sofas .blk-sofa .blk-title h4
{
  color: #717171;
}

.allsofa .blk-sofas .blk-sofa .blk-title h3 {
  display: block;
  font-size: 21px;
  text-align: center;
  line-height: 1.1;
}

.allsofa .blk-sofas .blk-sofa .blk-title h4 {
	display: block;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0;
}

.allsofa label {
  cursor :pointer;
  display: block;
  text-decoration: none;
  color: #000;
  line-height: 1;
  position: relative;
  margin: 15px 0 30px;
}

.allsofa .arrow-open {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1px;
}
.allsofa li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s;
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
	color: #717171;
}

.allsofa li .desc-btn{
  display: block;
  width: 100px;
  height: 30px;
  background-color: rgb(166, 166, 166);
  color: #fff;
  text-align: center;

  margin: 25px auto 0;
  padding-top: 10px;
  font-size: 14px;
}

@media screen and (max-width:440px){
  .allsofa .areaTitle {
    text-align: center;
    color: #745f5f;
    font-size: 24px;
    line-height: 1;
    font-weight: normal;
    background-color:  #E5E0DE;
  }

  .allsofa .titleSub {
    text-align: center;
    font-size: 9px;
    color: #745f5f;
    font-weight: bold;

    margin-bottom: 20px;
    padding-bottom: 10px;
    background-color:  #E5E0DE;
  }
  .allsofa li .desc-btn{
    width: 180px;
    height: 40px;
  }
}

#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li,
#menu_bar03:checked ~ #links03 li,
#menu_bar04:checked ~ #links04 li,
#menu_bar05:checked ~ #links05 li,
#menu_bar06:checked ~ #links06 li,
#menu_bar07:checked ~ #links07 li,
#menu_bar08:checked ~ #links08 li,
#menu_bar09:checked ~ #links09 li,
#menu_bar10:checked ~ #links10 li,
#menu_bar11:checked ~ #links11 li,
#menu_bar12:checked ~ #links12 li,
#menu_bar13:checked ~ #links13 li,
#menu_bar14:checked ~ #links14 li,
#menu_bar15:checked ~ #links15 li,
#menu_bar16:checked ~ #links16 li,
#menu_bar17:checked ~ #links17 li,
#menu_bar20:checked ~ #links20 li,
#menu_bar21:checked ~ #links21 li,
#menu_bar22:checked ~ #links22 li,
#menu_bar23:checked ~ #links23 li,
#menu_bar24:checked ~ #links24 li,
#menu_bar25:checked ~ #links25 li,
#menu_bar26:checked ~ #links26 li   {
  height: auto;
  opacity: 1;
  padding: 10px;
}

#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child,
#menu_bar03:checked ~ #links03 li:last-child,
#menu_bar04:checked ~ #links04 li:last-child,
#menu_bar05:checked ~ #links05 li:last-child,
#menu_bar06:checked ~ #links06 li:last-child,
#menu_bar07:checked ~ #links07 li:last-child,
#menu_bar08:checked ~ #links08 li:last-child,
#menu_bar09:checked ~ #links09 li:last-child,
#menu_bar10:checked ~ #links10 li:last-child,
#menu_bar11:checked ~ #links11 li:last-child,
#menu_bar12:checked ~ #links12 li:last-child,
#menu_bar13:checked ~ #links13 li:last-child,
#menu_bar14:checked ~ #links14 li:last-child,
#menu_bar15:checked ~ #links15 li:last-child,
#menu_bar16:checked ~ #links16 li:last-child,
#menu_bar17:checked ~ #links17 li:last-child,
#menu_bar20:checked ~ #links20 li:last-child,
#menu_bar21:checked ~ #links21 li:last-child,
#menu_bar22:checked ~ #links22 li:last-child,
#menu_bar23:checked ~ #links23 li:last-child,
#menu_bar24:checked ~ #links24 li:last-child,
#menu_bar25:checked ~ #links25 li:last-child,
#menu_bar26:checked ~ #links26 li:last-child {
  margin-bottom: 20px;
}

.allsofa label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #000 2px solid;
  border-right: #000 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 50%;
  top: 0;
  bottom: 15%;
  margin: auto;
}

.allsofa input[type=checkbox]:checked + label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #000 2px solid;
  border-right: #000 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  right: 50%;
  top: 7%;
  bottom: 0;
  margin: auto;
}

.wrapContent .areaOur label {
  cursor :pointer;
  display: block;
  text-decoration: none;
  color: #000;
  line-height: 1;
  position: relative;
  margin: 0 0 10px;
  padding: 10px;
}

.wrapContent .areaOur label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #000 2px solid;
  border-right: #000 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 50%;
  top: 0;
  bottom: 15%;
  margin: auto;
}

.wrapContent .areaOur input[type=checkbox]:checked + label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #000 2px solid;
  border-right: #000 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  right: 50%;
  top: 7%;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width:1025px){
  .allsofa .blk-sofas{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }
  .allsofa .blk-sofas .blk-sofa{
    position: relative;
    display: block;
    width: 47%;
    margin: 15px 16px;
  }
  .allsofa .blk-sofas .blk-sofa:after {
    content: "";
    display: block;
    width: 47%;
    height: 0;
  }

  .allsofa .blk-sofas .blk-sofa .arrow-open{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #fff;
    background-color:rgba(0,0,0,0.65);
    opacity: 0;
    transition: .3s ease-in-out;
  }
  .allsofa .blk-sofas .blk-sofa .arrow-open li{
    color: #fff;
    width: 100%;
    height: 100%;
    font-size: 17px;
    padding: 10px;
    position: relative;
  }

  .allsofa .blk-sofas .blk-sofa:hover .arrow-open {
    opacity: 1;
  }

  .allsofa .blk-sofas .blk-sofa .arrow-open li .desc-btn{
    bottom: 10;
    display: block;
    width: 150px;
    height: 45px;
    background-color: rgb(255, 255, 255,0.8);
    color: rgba(0, 0, 0, 0.8);
    margin: 30px auto 0px;
    padding-top: 13px;
    text-align: center;
  }

  .allsofa label:after,
  .allsofa input[type=checkbox]:checked + label:after{
    display: none;
  }

  .wrapContent .areaOur input[type=checkbox]:checked + label:after{
    display: none;
  }
}

.wrapContent .areaOur input {
  display: none;
}

.wrapContent .areaOur .arrow-open {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1px;
}

#more_bar01:checked ~ #morelink01 li {
  height: auto;
  opacity: 1;
  padding: 10px;
}

#more_bar01:checked ~ #morelink01 li:last-child {
  margin-bottom: 20px;
}

.hide-text2{
  display:none;
  width: 87%;
  margin: 15px auto 0px;
}
.hide-text2 img{
  margin: 10px 0px;
}

.hide-text2 .subTitle {
  margin-bottom: 10px;
}

.hide-text2 p{
  font-size: 13px;
  padding: 12px 0px 0;
  line-height: 1.7;
}

button.readmore2{position:relative;height:80px;width:250px;margin:30px auto;display:block;background-color:transparent;color:#4a3f3f;font-size:14px;padding:20px; border: none; outline:0;transition:.5s;-erbkit-transition:.5s;}
button.readmore2::after{content:" ";position:absolute;width:30px;height:30px;transition:.5s;-erbkit-transition:.5s;}
button.readmore2:hover::after{top:40px;}
.on-click{color:transparent!important;}
.on-click{transform:rotate(-180deg);-webkit-transform:rotate(-180deg);}
.btn-inner2{display:inline-block;clear:both;}

@media screen and (max-width:440px){
  #fixedLeft .fixedLW .mainMenu .infoBot{
    margin-bottom: 130px;
  }
  #fixedLeft .fixedLW .mainMenu .social{
    margin-bottom: 130px;
  }
  #copyright {
    font-size: 2vh;
    color: #aaa0a0;
    transform: rotate(-90deg);
  }
}

@media screen and (min-width:768px) and (max-width:1024px){
  .blk-sofa label{
    display: none;
  }
  .allsofa .blk-sofas .blk-sofa .arrow-open{
    display: block;
    position: static;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #fff;
    opacity: 1;
    transition: .3s ease-in-out;
  }
  .allsofa .blk-sofas .blk-sofa .arrow-open li{
    display: block;
    color: #aaa0a0;
    width: 100%;
    height: 100%;
    font-size: 17px;
    padding: 10px;
    position: static;
  }

  .allsofa .blk-sofas .blk-sofa .arrow-open li .desc-btn{
    width: 180px;
    height: 40px;
  }

  .allsofa .blk-sofas{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }
  .allsofa .blk-sofas .blk-sofa{
    position: relative;
    display: block;
    width: 48%;
    margin: 15px 5px;
  }
  .allsofa .blk-sofas .blk-sofa:after {
    content: "";
    display: block;
    width: 48%;
    height: 0;
  }

  .allsofa .blk-sofas .blk-sofa img{
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
}

.areaIntro .btn a::after {
  display: none;
}

.areaIntro .btn .btn__about {
  width: auto;
  border-radius: 2px;
  padding: initial;
  background-color: initial;
  color: #487EF6;
  font-weight: 600;
}

.areaIntro .btn .btn__about:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 11px;
  background: url("../../images/top/arrow_right.svg") no-repeat;
  background-size: contain;
  margin-right: 4px;
}

.areaIntro .btn .btn__about:hover {
  background: none;
  opacity: .7;
}

.allsofa label {
  margin: initial;
  padding: 0 0 30px;
}

.allsofa label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 9px;
  background: url("../../images/top/arrow_bottom.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 50%;
  top: initial;
  bottom: 8%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.allsofa label::after {
  display: none;
}

.allsofa .blk-sofas .blk-sofa .blk-title h4 {
  line-height: 1.5;
}

.allsofa input[type=checkbox]:checked + label::before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

.allsofa input[type=checkbox]:checked + label::after {
  display: none;
}

@media screen and (min-width: 1025px) {
  .areaIntro {
    margin-top: -50vh;
    opacity: 0;
    -webkit-transition: .3s all linear .7s;
    transition: .3s all linear .7s;
  }
  .allsofa .blk-sofas .blk-sofa {
    margin: 1.5%;
  }
  .allsofa label::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .loadingPage {
    display: none;
  }
  #main .mainText img {
    width: 16px;
    margin-top: initial;
    margin-bottom: 15%;
  }
  #fixedLeft {
    position: static;
    top: 0;
    left: 0;
    z-index: initial;
  }
  #fixedLeft .fixedLW .menuBar {
    height: 88px;
  }
  #fixedLeft .fixedLW .menuBar .hamburger {
    position: fixed;
    top: 19px;
    right: 6px;
  }
  #fixedLeft .fixedLW .mainMenu {
    z-index: 10;
  }
  #fixedLeft.toogle .fixedLW .menuBar {
    padding: 19px 20px 19px 18px;
  }
  #fixedLeft.toogle .fixedLW .menuBar .logo {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  #fixedLeft.toogle .fixedLW .menuBar .hamburger .on {
    width: 50px;
    height: 50px;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .areaIntro {
    -webkit-transition: none;
    transition: none;
  }
  .areaIntro .btn a {
    -webkit-transition: none;
    transition: none;
  }
  .areaIntro .btn a::after {
    display: none;
  }
  .areaIntro .btn .btn__about {
    font-size: 15px;
    border-radius: 2px;
    text-align: center;
  }
}

@media screen and (max-width: 440px) {
  #fixedLeft .fixedLW .mainMenu .infoBot {
    margin-bottom: 65px;
  }
  #fixedLeft .fixedLW .mainMenu .social {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 768px) {
  .js-fadein {
    opacity: 0 !important;
  }
  .js-fadein2 {
    opacity: 0 !important;
  }
  .js-fadein-show {
    opacity: 1 !important;
    -webkit-transition: 1.5s all !important;
    transition: 1.5s all !important;
  }
}
