/* イントラネット　ログインページ */
 *{
  margin: 0;
}
.login {
  border-bottom: 1px solid #a6a6a6;
}
.login .category_title {
  margin-bottom: 30px;
}
.login .warning {
  text-align: center;
  color: #f24e02;
}
.login .form__wrapper {
  max-width: 800px;
  margin: 30px auto 113px;
  padding: 10px 0 30px;
  background-color: #f7f7f7;
}
.login .login__form {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  width: 90%;
  margin: 20px auto 50px;
}
.login .login__form label {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.login .login__form input {
  height: 50px;
  margin-bottom: 50px;
  border: 1px solid rgb(118, 118, 118);
  border-radius: 5px;
}
.login .login__form button {
  background-color: #f24e02;
  background-size: 10px 20px;
  background-repeat: no-repeat;
  background-image: url(/common/images/icon_arrow_wr.png);
  background-position: right 20px center;
  box-shadow: 0px 1px 4px 0px rgb(0 0 0 / 20%);
  border: none;
  color: #fff;
  max-width: 450px;
  width: 100%;
  height: 54px;
  font-size: 2rem;
  margin: 0 auto;
}
.login .login__form button:hover {
  background-color: #f56b2b;
}

/* イントラネット　製品一覧ページ */

.internalInfo {
  background-color: #e7f1e5;
  color: #4d4c40;
}
.internalInfo h2 {
  position: relative;
  padding-left: 50px;
  margin-top: 4rem;
  text-align: left;
}
.internalInfo h2::before {
  position: absolute;
  content: "";
  width: 29px;
  height: 36px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(/intranet/images/icon_lock.png);
}
.internalInfo .item__lists {
  margin-bottom: 20px;
}
.internalInfo .item__lists li {
  box-shadow: 1px 2px 5px rgb(0 0 0 / 20%);
}
.internalInfo .column3 li:not(:nth-of-type(3n)) {
  margin-right: 2.8%;
}
.internalInfo .column3 li:nth-of-type(3n) {
  margin-right: 0.3%;
}
@media screen and (max-width: 767px) {
  .internalInfo .column3 li {
    width: 49%;
    margin-bottom: 2%;
  }
  .internalInfo .column3 li:not(:nth-of-type(2n)) {
    margin-right: 1.6%;
  }
  .internalInfo .column3 li:nth-of-type(2n) {
    margin-right: 0.3%;
  }
}

/* イントラネット　製品詳細ページ */

.internalInfo__wrapper ul {
  list-style: none;
}
.internalInfo__wrapper .contentsInner {
  border-bottom: none;
  padding-bottom: 85px;
  margin-bottom: 55px;
}
.interior-page .internalInfo__title {
  border-bottom: 1px solid #a0988e;
  display: flex;
  justify-content: space-between;
  margin: 30px auto 10px;
  line-height: 2;
  font-size: 2.4rem;
  font-weight: normal;
}
.modal__content .internalInfo__title {
  margin: 0 auto 10px;
}
.internalInfo__title .btn--acc {
  width: 35px;
  height: 35px;
  background-color: #a0988e;
  border-radius: 50%;
  position: relative;
  margin: 0;
}
.internalInfo__title .btn--acc::marker {
  display: none;
  color: transparent;
}
.internalInfo__title .btn--acc::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%) rotate(-225deg);
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
.internalInfo__title .btn--acc.open::before {
  transform: translate(-50%, -25%) rotate(-45deg);
}
.internalInfo__wrapper .btn__lists {
  flex-wrap: wrap;
  gap: 16px 2.5%;
  margin-top: 16px;
  display: none;
}
.internalInfo__wrapper .btn__lists.open {
  display: flex;
}
.internalInfo__wrapper .btn__list {
  width: 23%;
}
.supply-order .internalInfo__wrapper .btn__list {
  width: 40%;
}
.internalInfo__wrapper .btn,
.internalInfo__wrapper .btn--product {
  position: relative;
  margin: 0;
  padding-right: 2em;
  width: auto;
  height: 30px;
  background-color: #4d4c40;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid #a0988e;
  font-size: 1.2rem;
  line-height: 1.1;
}
.internalInfo__wrapper .btn::after,
.internalInfo__wrapper .btn--product::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
.internalInfo__wrapper .btn:hover,
.internalInfo__wrapper .btn--product:hover,
.internalInfo__wrapper .btn--product.active,
.internalInfo__wrapper .btn.active {
  background-color: #fff;
  color: #4d4c40;
}
.internalInfo__wrapper .btn:hover::after,
.internalInfo__wrapper .btn--product:hover::after,
.internalInfo__wrapper .btn--product.active::after,
.internalInfo__wrapper .btn.active::after {
  border-right: 1px solid #4d4c40;
  border-top: 1px solid #4d4c40;
}
@media screen and (max-width: 1000px) {
  .internalInfo__wrapper .btn__lists {
    gap: 20px 2%;
  }
  .internalInfo__wrapper .btn__list {
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  .supply-order .internalInfo__wrapper .btn__list,
  .internalInfo__wrapper .btn__list {
    width: 49%;
  }
}
@media screen and (max-width: 500px) {
  .supply-order .internalInfo__wrapper .btn__list,
  .internalInfo__wrapper .btn__list {
    width: 100%;
  }
}

/* イントラネット　製品詳細ページ　モーダル */

.modal__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 3vw 8vw;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  color: #4d4c40;
  z-index: 9999;
}
.modal__container.active {
  opacity: 1;
  visibility: visible;
}
.modal__body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 1140px;
}
.modal__btn--close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  color: #4d4c40;
  cursor: pointer;
}
.modal__btn--close img{
  width: 100%;
}
.modal__content {
  background: #fff;
  text-align: left;
  padding: 2vw 6vw 2vw 5vw;
}
@media screen and (min-width: 1301px) {
.systemFurniture .modal__content {
  padding: 26px 65px 26px 26px;
}
}
.content__lists {
  margin-bottom: 100px;
}
.content__list.open {
  display: list-item;
}
.content__title {
  font-size: 2rem;
  font-weight: normal;
  margin: 16px 0 10px;
}
.download__folders {
  margin-bottom: 50px;
}
.download__lists.gallery {
  align-items:flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 3.2%;
}
.download__lists.gallery .download__list {
  width: 22%;
}
.download__list a {
  color: inherit;
}
.download__list figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.download__list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.download__lists.lists .download__list {
  border-bottom: 1px solid #d2d2d2;
  word-wrap: break-word;
}
.download__lists.lists .download__link {
  font-size: 1.4rem;
  padding: 14px 0 10px 32px;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 93%;
  overflow-wrap: anywhere;
}
.download__lists.lists .download__link::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 25px;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/intranet/images/file-text.png);
}
.download__lists.lists .download__link--movie::before {
  background-image: url(/intranet/images/Icon_metro-youtube-play.png);
  height: 15px;
}
.download__lists.lists .download__link::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: -30px;
  background-image: url(/intranet/images/download.png);
}
.download__lists.lists .download__link--movie::after {
  display: none;
}
@media screen and (max-width: 1300px) {
  .modal__container {
    padding: 3vw 4vw;
  }
  .modal__content {
  padding: 2vw 5vw 2vw 2vw;
  }
  .internalInfo__wrapper .btn--product {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .modal__content {
  padding: 12vw 3vw 2vw 3vw;
  }
  .modal__btn--close {
  width: 6vw;
  height: 6vw;
}
  .download__lists.gallery {
    flex-direction: column;
  }
  .download__lists.gallery .download__list {
    width: 100%;
  }
.download__lists.lists .download__link::after {
  right: -5vw;
}
}

/* ダウンロードリスト内フォルダ */
.product__list {
  display: none;
}
.product__list.open {
  display: list-item;
}
.product__list.open .folder .far,
.product__list.open .folder .folder__link{
  display: none;
}

.folder {
  font-size: 1.4rem;
}
.folder a {
  color: inherit;
  padding: 10px;
  display: inline-block;
}
.folder__link {
  line-height: 2;
}
.folder .far {
  font-size: 2rem;
}


/* モーダル内　パンくずリスト */
.breadcrumb li a::before {
  display: none;
}
.modal__body .breadcrumb li{
  color: #000000;
  padding-right: 20px;
  text-decoration: underline;
  cursor: pointer;
}
.modal__body .breadcrumb li:not(:last-child) a {
  position: relative;
}
.modal__body .breadcrumb li:not(:last-child) a::before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #5b5a56;
  border-right: solid 1px #5b5a56;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
}

/* exhibition */
/* searchWrapper */
.exhibition .mainVisual {
  width: 100%;
  margin: 10px 0;
}
.exhibition .heading--secondary {
  border-bottom: 1px solid #d9d9d9;
  padding: 0 0 30px 64px;
  position: relative;
}
.exhibition .heading--secondary::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url(/intranet/images/exhibition/icon_exhibition_title.png);
  background-size: contain;
  top: 3px;
  left: 12px;
}
.exhibition .heading--tertiary {
  text-align: left;
  font-size: 2rem;
  margin: 0 25px 0 12px;
  display: inline-block;
}
.exhibition .search__btn {
  background-color: #fff;
  border: 1px solid #434343;
  border-radius: 15px;
  color: #434343;
  font-size: 1.8rem;
  padding: 1px 22px;
}

.exhibition .area__lists--wrapper,
.exhibition .search__list > ul {
  margin: 40px 7.8% 66px 3.5%;
}
.exhibition .area__lists--wrapper {
  display: flex;
  justify-content: space-between;
}
.exhibition .area__lists--region {
  width: 42%;
}
.exhibition .area__list--region {
  border-bottom: 1px solid #d9d9d9;
}

.exhibition .btn--region {
  position: relative;
  font-size: 2rem;
  padding: 10px 0;
  text-align: left;
  cursor: pointer;
}
.exhibition .btn--region::before,
.exhibition .btn--region::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #5b5a56;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.exhibition .btn--region::after {
  width: 2px;
  height: 24px;
  right: 11px;
}
.exhibition .btn--region.open::after {
  display: none;
}
.exhibition .area__lists {
  display: none;
}
.exhibition .area__lists.open {
  display: block;
}
.exhibition .area__list {
  padding: 5px 0 10px 20px;
}
.exhibition .btn--data {
  cursor: pointer;
}
.exhibition .search__btn[data-selected],
.exhibition .btn--data[data-selected] {
  background-color: #434343;
  color: #fff;
}
.exhibition .btn__lists {
  display: flex;
  flex-wrap: wrap;
}
.exhibition .btn__list {
  border: 1px solid #a0988e;
  width: 21%;
}
.exhibition .btn__list:not(:nth-child(4n)) {
  margin-right: 5%;
}

.exhibition .search--products .btn__list {
  width: 30%;
}
.exhibition .search--products .btn__list:last-child {
  margin-right: 0;
}
.search--products .btn__list .btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  padding: 8px 16px 8px 6px;
  cursor: pointer;
  position: relative;
}
.search--products .btn__list .btn::after {
  position: absolute;
  content: "+";
  right: 8%;
}
.search--rooms .btn__list,
.selectedItems .btn__list {
  text-align: center;
  font-size: 1.8rem;
  padding: 8px 6px;
  cursor: pointer;
  margin-bottom: 26px;
}

@media screen and (max-width: 1000px) {
.exhibition .area__lists--wrapper,
.exhibition .search__list > ul {
  margin: 2vw 2vw 6vw;
}
.exhibition .heading--tertiary {
margin-left: 0;
}
.exhibition .btn__list:not(:nth-child(4n)) {
  margin-right: 0;
}
.exhibition .btn__list:not(:nth-child(3n)) {
  margin-right: 5%;
}
.search--rooms .btn__list, .selectedItems .btn__list {
  width: 30%;
}
}
@media screen and (max-width: 767px) {
.exhibition .area__lists--wrapper {
  flex-direction: column;
}
.exhibition .area__lists--region {
  display: contents;
}
.sp_01 {order: 1;}
.sp_02 {order: 2;}
.sp_03 {order: 3;}
.sp_04 {order: 4;}
.sp_05 {order: 5;}
.sp_06 {order: 6;}
.sp_07 {order: 7;}

.exhibition .btn__list:not(:nth-child(3n)) {
  margin-right: 0;
}
.exhibition .btn__list:not(:nth-child(2n)) {
  margin-right: 5%;
}
.search--rooms .btn__list, .selectedItems .btn__list {
  width: 47%;
  font-size: 1.6rem;
}
.exhibition .search--products .btn__list {
  width: 47%;
  margin-bottom: 26px;
}
.exhibition .search--products .btn__list .btn{
  font-size: 1.6rem;
  padding: 8px 10px 8px 2px;
}
.search--products .btn__list .btn::after {
  right: 4%;
}
}

/* searchResult */
.exhibition .searchResult__titleBox {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 60px;
}
.exhibition .searchResult__title {
  display: inline-block;
  font-size: 1.8rem;
  margin-right: 50px;
  margin-top: 0;
}
.exhibition .searchResult__count {
  font-size: 1.8rem;
  display: inline-block;
}
.exhibition .searchResult .column3 {
  margin-bottom: 60px;
}
.exhibition .searchResult .ttl_block {
  padding: 10px 20px;
}
.exhibition .searchResult .ttl {
  margin: 0;
  text-align: left;
}
.exhibition .searchResult .tag__list {
  width: 100%;
  box-shadow: none;
  margin: 0 0 6px;
  text-align: left;
}
.exhibition .searchResult .tag__list span{
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  font-size: 1.4rem;
  padding: 1px 10px;
  display: inline-block;
}

/* selectedItems */
.exhibition .selectedItems {
  background-color: #f1ede1;
  margin-bottom: 60px;
}
.exhibition .selectedItems .btn__lists{
  margin: 40px 0;
}
.exhibition .selectedItems .btn__list{
  padding: 0;
}
.exhibition .selected__link{
  display: block;
}
.exhibition .selected__image{
  width: 100%;
  object-fit: cover;
  height: 45px;
}

/*----------------------
___2024/04_premium door
------------------------*/
.interior-page.premium_door .widthSetting{
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0 40px 0;
/*  border-bottom: solid 1px #ddd;*/
  overflow: hidden;
}

.interior-page.premium_door .widthSetting.pdoor_exhibition{
  background: #F1EDE1;
  padding: 0;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door .widthSetting.pdoor_exhibition{
    background: none;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockWrapper *{
  list-style: none;
  color: #42423E;
}

.interior-page.premium_door #PREMIUMDOOR .lineup *{
  list-style: none;
  color: #42423E;
}

.interior-page.premium_door #PREMIUMDOOR .lineup .btn_long a{
  color: #fff;
}

.interior-page.premium_door #PREMIUMDOOR .lineup .btn_long i{
  color: #fff;
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockWrapper img{
  border-style: none;
	width: 100%;
	max-width: 100%;
	vertical-align: bottom;
}

.interior-page.premium_door #PREMIUMDOOR .imgBorder{
  border: 1px solid #777;
}

.interior-page.premium_door #PREMIUMDOOR .fz_S{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  display: inline-block;
}

.interior-page.premium_door #PREMIUMDOOR .tileSpace{
  padding-top: 10px;
}

.interior-page.premium_door #PREMIUMDOOR .spaceT_note{
  margin-top: 10px;
}

.interior-page.premium_door #PREMIUMDOOR .fw700{
  font-weight: 700;
}

.interior-page.premium_door #PREMIUMDOOR .mgT_2em{
  margin-top: 2em;
}

.interior-page.premium_door #PREMIUMDOOR .display_b{
 display: block;
}

.interior-page.premium_door #PREMIUMDOOR .display_b_sp{
  display: none;
 }

 @media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .display_b_sp{
    display: block;
   }
 }

.interior-page.premium_door #PREMIUMDOOR .display_ib{
  display: inline-block;
 }

.interior-page.premium_door #PREMIUMDOOR .lineupSeriesSubTtl{
  font-size: 20px;
  font-weight: 700;
  padding-top: 2.4%;/*20.5px*/
  margin-bottom: 1.2%;/*10px*/
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupSeriesSubTtl{
    font-size: 13px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupAreaH2{
  text-align: center;
  font-weight: normal;
  font-size: 3rem;
  line-height: 1.2;
  margin: 3rem auto 2rem auto;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupAreaH2{
    font-size: 2.2rem;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupAreaH2.spaceL{
  margin: 5rem auto;
}

.interior-page.premium_door #PREMIUMDOOR .lineupAreaH2 span.lineupAreaH2-eng{
  display: block;
  font-weight: normal;
  font-size: 1.8rem;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupAreaH2 span.lineupAreaH2-eng{
    font-size: 1.4rem;
  }
}

.interior-page.premium_door #PREMIUMDOOR span.lineupAreaH2-L{
  font-size: 3rem;
  font-weight: 700;
}

.interior-page.premium_door #PREMIUMDOOR .lineupAreaH3{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid #999;
  font-weight: 500;
  line-height: 2;
  font-size: 2rem;
}

.interior-page.premium_door #PREMIUMDOOR .lineupAreaH3 .lineup_ttl{
  display: block;
  font-size: 2.8rem;
  line-height: 1.2;
  color: #42423E;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupAreaH3 .lineup_ttl{
    font-size: 1.9rem;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupAreaH3 .lineup_subttl{
  display: block;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #42423E;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupAreaH3 .lineup_subttl{
    font-size: 1.2rem;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupAreaH4{
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 5px;
}

.interior-page.premium_door #PREMIUMDOOR .lineupSeriesSubTtl-arrow{
  position: relative;
  display: inline-block;
  padding-right: 1em;
  padding-bottom: .2em;
  margin-bottom: 15.5px;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupSeriesSubTtl-arrow{
    font-size: 13px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupSeriesSubTtl-arrow::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 10px;
  border-bottom: 1px solid #F24E02;
  left: 0;
  bottom: 0;
}

.interior-page.premium_door #PREMIUMDOOR .lineupSeriesSubTtl-arrow::after{
  position: absolute;
  content: '';
  width: 1px;
  height: 14px;
  border-right: 1px solid #F24E02;
  right: 4px;
  bottom: -2px;
  transform: rotate(-45deg);
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockWrapper{
  margin-top: 4%;
  margin-bottom: 75px;
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockWrapper:has(.lineupSeriesSubTtl){
  margin-top: 0;
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockWrapper.spaceB_S{
  margin-bottom: 44px;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupBlockWrapper.spaceB_S{
    margin-bottom: 20px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockWrapper:has(.lineupSeriesSubTtl-arrow){
  margin-top: 0;
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockWrapper.wBorderB{
  padding-bottom: 4%;
  margin-bottom: 0;
  border-bottom: 1px dotted rgba(66,66,62,0.5);
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid{
  display: grid;
  grid:
    'door others' 1fr
    / calc(50% - 2rem) 50%;
  grid-gap: 1rem 2rem;
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid{
    grid:
    'door' auto
    'others' auto
    / 100%;
    grid-gap: 2rem;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.single{
  grid-column-gap: 2rem;
  grid-row-gap: 0;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.single{
    grid-row-gap: 2rem;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev{
  display: grid;
  grid:
    'door others' 1fr
    / 60% calc(40% - 2rem);
  grid-gap: 1rem 2rem;
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev{
    grid:
    'door' auto
    'others' auto
    / 100%;
    grid-gap: 2rem;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev .lineupDoorFlex__item{
  width: 14%;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev .lineupDoorFlex__item{
    width: 16%;
    max-width: 104px;
  }
}


.interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev .lineupColor{
  width: 30%;
  min-width: 70px;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev .lineupColor{
    width: 17.5%;
    min-width: initial;
    max-width: 70px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev .lineupFrame{
  width: 40%;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev .lineupFrame{
    width: 30%;
  }
}

.lineupCardGrid.door{
  grid-area: door;
}

.lineupCardGrid.others{
  grid-area: others;
}

.interior-page.premium_door #PREMIUMDOOR .lineupDoorFlex{
  display: flex;
}

/*@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupDoorFlex{
    justify-content: space-between;
  }
}*/

.interior-page.premium_door #PREMIUMDOOR .lineupDoorFlex__item{
/*  width: 20%;*/
  width: 9vw;
  max-width: 104px;
  margin-bottom: 2%;
  float: none;
  list-style: none;
}

.interior-page.premium_door #PREMIUMDOOR .lineupDoorFlex__item:not(:last-of-type){
  margin-right: 4.2%;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupDoorFlex__item{
    width: 23%;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupCardGrid{
  grid-row: span 2;
  display: grid;
  grid-template-rows: subgrid;
}

.interior-page.premium_door #PREMIUMDOOR .lineupTileFlex{
  display: flex;
  justify-content: space-between;
}

.interior-page.premium_door #PREMIUMDOOR .lineupTileFlex__item.lineupGlass{
  width: 30%;
  max-width: 130px;
}

.interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev .lineupTileFlex__item.lineupGlass{
  width: 40%;
  max-width: 130px;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupBlockGrid.rev .lineupTileFlex__item.lineupGlass{
    width: 30%;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupTileFlex__item{
  width: calc(100% - 30%);
/*  max-width: calc(100% - 130px);*/
  max-width: calc(100% - 10px);
}

.interior-page.premium_door #PREMIUMDOOR .lineupColorFlex{
  display: flex;
  flex-direction: column;
/*  flex-wrap: wrap;
  justify-content: space-between;*/
}

.interior-page.premium_door #PREMIUMDOOR .lineupColorFlex-row{
  display: flex;
  flex-direction: row;
}

.interior-page.premium_door #PREMIUMDOOR .lineupColorListFlex{
/*  width: 47%;*/
  display: flex;
/*  width: 17.5%;
  max-width: 70px;*/
}

.interior-page.premium_door #PREMIUMDOOR .lineupGlassList__item:not(:last-of-type){
  margin-bottom: 5px;
}

.interior-page.premium_door #PREMIUMDOOR .lineupColorFlex__item{
  display: block;
}

.interior-page.premium_door #PREMIUMDOOR .lineupColorFlex__item:not(:last-of-type){
  margin-bottom: 7px;
}

.interior-page.premium_door #PREMIUMDOOR .lineupColor{
/*  width: 17.5%;*/
/*  min-width: 70px;*/
  max-width: 70px;
  margin-right: 5px;
  width: 6vw;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupColor{
    width: 12vw;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupColorFlex-row__item{
/*  width: 50%;*/
  margin-right: 20px;
}

/*.interior-page.premium_door #PREMIUMDOOR .lineupColorFlex-row__item .lineupColor{
  width: 46%;
  max-width: 70px;
  margin-right: 5px;
}*/

.interior-page.premium_door #PREMIUMDOOR .lineupFrameFlex{
  display: flex;
}

.interior-page.premium_door #PREMIUMDOOR .lineupFrame{
  display: block;
  width: 30%;
  max-width: 130px;
  margin-right: 5px;
}

.interior-page.premium_door #PREMIUMDOOR .lineupFrameList__item{
  margin-bottom: 5px;
}

.interior-page.premium_door #PREMIUMDOOR .lineupNoteFlex-pc{
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupNoteFlex-pc{
    display: none;
  }
  .interior-page.premium_door #PREMIUMDOOR .lineupCardGrid.door:has(.lineupNoteFlex-pc) + .lineupCardGrid.others{
    margin-top: -2rem;/* grid-gap */
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupNoteFlex-sp{
  display: none;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupNoteFlex-sp{
    display: block;
    margin-top: 2rem;
  }
}

.interior-page.premium_door #PREMIUMDOOR .note_tile{
  width: calc(100% - 4rem - 5.4% * 2);
  max-width: 370px;
  padding: 5.7% 5.4% 5.1%;/* 21px 20px 19px */
  background: #f3ede1;
  display: flex;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .note_tile{
    max-width: initial;
    width: calc(100% - 5.4% * 2);
  }
}

.interior-page.premium_door #PREMIUMDOOR .note_img{
  width: 35%;
  margin-right: 3%;
}

.interior-page.premium_door #PREMIUMDOOR .note_txt{
  font-size: 16px;
  font-weight: 500;
}

.interior-page.premium_door #PREMIUMDOOR .display_n_sp{
  display: block;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .display_n_sp{
    display: none;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointGrid{
  display: grid;
  grid:
    'pointL pointR' 1fr
    / 1fr 1fr;
  grid-column-gap: 3rem;
/*  grid-row-gap: 2rem;*/
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupPointGrid{
    display: block;
/*    grid:
      'pointL' 1fr
      'pointR' 1fr
      / 1fr;
    grid-column-gap: 0;
    grid-row-gap: 2rem;
    grid-auto-flow: column;*/
  }
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupPointGrid.spNoGap{
    grid-row-gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupPointGrid.spNoGap .lineupPointGrid__item.gridL{
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupPointGrid.spNoGap .lineupPointGrid__item.gridL::after{
    position: absolute;
    content: '';
    width: calc(100% - 25px * 2);
    left: 25px;
    bottom: 0;
    height: 1px;
    border-bottom: 1px dotted rgba(66,66,62,0.5);
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointGrid__item{
  background: #F1EDE1;
  padding: 30px;
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  grid-row-gap: 2rem;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupPointGrid__item{
/*    display: block;*/
    display: grid;
    padding: 25px;
/*    grid-row-gap: 1rem;*/
  }
}

.lineupPointGrid__item.gridL{
  grid-area: pointL;
}

.lineupPointGrid__item.gridR{
  grid-area: pointR;
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__ttl{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__ttl{
    font-size: 13px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__ttl.txtL{
  font-size: 30px;
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__ttl.txtC{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__ttl.txtC{
    display: inline-block;
    text-align: center;
  }
}

/*.interior-page.premium_door #PREMIUMDOOR .lineupPointGrid__item.gridL .lineupPointStyle__ttl{
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}*/

.interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__txt{
  font-size: 16px;
  font-weight: 500;
/*  margin-top: 2rem;
  margin-bottom: 2rem;*/
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__tile{
  width: calc((100% - 3% * 2) / 3);
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__tile--cap{
  font-size: 16px;
  font-weight: 500;
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointStyle__img.yoroi{
  width: 200px;
  margin: auto;
}

.interior-page.premium_door #PREMIUMDOOR .lineupPointFlex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
}

.interior-page.premium_door #PREMIUMDOOR .lineup-col2{
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineup-col2{
    display: block;
  }
}

.interior-page.premium_door #PREMIUMDOOR .lineup-col2__item{
  width: calc((100% - 2.5rem) / 2);
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .lineup-col2__item{
    width: 100%;
  }
}

.interior-page.premium_door #PREMIUMDOOR .bg-grey{
  background: rgba(69,69,69,0.05);
}

.interior-page.premium_door #PREMIUMDOOR .bg-beige{
  background: #F1EDE1;
}

.interior-page.premium_door #PREMIUMDOOR .door_list{
  justify-content: space-between;
}

.interior-page.premium_door #PREMIUMDOOR .door_list li{
  margin-right: 0;
  width: calc((100% - (2.5rem / 2) - (4% * 2)) / 3);
}

.interior-page.premium_door #PREMIUMDOOR .knob_lineup li > div{
  justify-content: center;
}

.interior-page.premium_door #PREMIUMDOOR .knob_lineup li .txt{
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
}

.interior-page.premium_door #PREMIUMDOOR .l_handle_lineup li .txt{
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  white-space: nowrap;
}

.interior-page.premium_door #PREMIUMDOOR .l_handle_lineup li .txt_sub{
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  text-align: right;
  margin-right: .5em;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .l_handle_lineup li .txt_sub{
    margin-right: 0;
    font-size: 14px;
  }
}
/* end lineup */

.interior-page.premium_door #PREMIUMDOOR .listCardGrid{
  display: grid;
  grid:
    'listCardGrid_pic listCardGrid_ttl' auto
    'listCardGrid_pic listCardGrid_txt' auto
    'listCardGrid_pic listCardGrid_btn' auto
    / calc(50% - (2.5rem / 2)) calc(50% + (2.5rem / 2));
    grid-gap: 2rem 0;
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .listCardGrid{
    display: grid;
    grid:
      'listCardGrid_ttl' auto
      'listCardGrid_pic' auto
      'listCardGrid_txt' auto
      'listCardGrid_btn' auto
      / 100%;
      grid-gap: 2rem 0;
    grid-auto-flow: column;
  }
}

.interior-page.premium_door #PREMIUMDOOR .listCardStyle:not(:last-of-type){
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .listCardStyle:not(:last-of-type){
    margin-bottom: 10px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .listCardStyle__pic{
  grid-area: listCardGrid_pic;
}

.interior-page.premium_door #PREMIUMDOOR .objectFit_img{
  object-fit: cover;
  height: 100%;
}

.interior-page.premium_door #PREMIUMDOOR .objectFit_img.pos_R{
  object-position: right 50%;
}

/*.interior-page.premium_door #PREMIUMDOOR .listCardStyle__detail{
  padding: 25px 30px 30px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}*/

.interior-page.premium_door #PREMIUMDOOR .listCardStyle__detail--ttl{
  padding-top: 25px;
  padding-right: 30px;
  padding-left: 30px;
  grid-area: listCardGrid_ttl;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .listCardStyle__detail--ttl{
    padding-top: 15px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 16px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .listCardStyle__detail--txt{
  padding-right: 30px;
  padding-left: 30px;
  grid-area: listCardGrid_txt;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .listCardStyle__detail--txt{
    padding-right: 14px;
    padding-left: 14px;
    font-size: 14px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .listCardStyle__detail--btn{
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
  grid-area: listCardGrid_btn;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .listCardStyle__detail--btn{
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 20px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow{
  position: relative;
  display: inline-block;
  padding-right: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s ease;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .textLink-arrow{
    font-size: 14px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow::after{
  position: absolute;
  content: '';
  right: 0;
/*  top: 0.4em;*/
  top: 50%;
  height: 6px;
  width: 6px;
  border-right: 1px solid #F24E02;
  border-bottom: 1px solid #F24E02;
  transform: translateY(-62%) rotate(45deg);
}

/* safari hack */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media, _:future, :root .interior-page.premium_door #PREMIUMDOOR .textLink-arrow::after{
    transform: translateY(-68%) rotate(45deg);
  }
}
/* firefox hack */
/*@-moz-document url-prefix(){
  .interior-page.premium_door #PREMIUMDOOR .textLink-arrow::after{
    top: 0.8em;
  }
}*/

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow:hover{
  opacity: .6;
  cursor: pointer;
  text-decoration: none;
}

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow:not(:last-of-type){
  margin-right: 1.5em;
}

.interior-page.premium_door #PREMIUMDOOR .roomTypeList .textLink-arrow:not(:last-of-type){
  margin-right: 0;
}

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow:not(:first-of-type){
  margin-top: 1rem;
}

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow__ext{
  position: relative;
  display: inline-block;
  padding-right: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s ease;
  color: #42423E;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .textLink-arrow__ext{
    font-size: 14px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow__ext:not(:first-of-type){
  margin-top: 1rem;
}

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow__ext::after{
  position: absolute;
  content: '';
  right: 0;
/*  top: 0.6em;*/
  top: 50%;
  height: 6px;
  width: 6px;
  border-right: 1px solid #F24E02;
  border-bottom: 1px solid #F24E02;
  transform: translateY(-50%) rotate(-45deg);
}
/*
@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .textLink-arrow__ext::after{
    top: 0.6em;
  }
}
*/
/* firefox hack */
/*@-moz-document url-prefix(){
  .interior-page.premium_door #PREMIUMDOOR .textLink-arrow__ext::after{
    top: 0.8em;
  }
}*/

.interior-page.premium_door #PREMIUMDOOR .textLink-arrow__ext:hover{
  opacity: .6;
  cursor: pointer;
  text-decoration: none;
}

.interior-page.premium_door #PREMIUMDOOR .roomTypeList__item{
  border-top: 3px solid rgba(69,69,69,0.1);
}

.interior-page.premium_door #PREMIUMDOOR .roomTypeList__item:last-of-type{
  border-bottom: 3px solid rgba(69,69,69,0.1);
}

.interior-page.premium_door #PREMIUMDOOR .roomType__ttl{
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  padding-top: 42px;
  padding-bottom: 40px;
  position: relative;
  cursor: pointer;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomType__ttl{
    font-size: 15px;
    padding-top: 18px;
    padding-bottom: 17px;
    text-align: left;
  }
}

.interior-page.premium_door #PREMIUMDOOR .roomType__ttl--icon{
  position: absolute;
  content: '';
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(180deg);
  width: 25px;
  height: 25px;
  /*background: #F24E02;*/
  background: url(/interior/images/premium_door/premiumdoor_toggleIcon.png) center center / contain no-repeat;
  transition: all .4s ease;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomType__ttl--icon{
    right: 15px;
    width: 20px;
    height: 20px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .roomType__ttl--icon.js_toggle_icon.open{
  transform: translateY(-50%) rotate(0deg);
}

.interior-page.premium_door #PREMIUMDOOR .roomTypeGrid{
  display: grid;
  grid:
    'rtgL rtgR' 1fr
    / 1fr 1fr;
  grid-column-gap: 3rem;
/*  grid-row-gap: 2rem;*/
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomTypeGrid{
    display: block;
/*    grid:
      'pointL' 1fr
      'pointR' 1fr
      / 1fr;
    grid-column-gap: 0;
    grid-row-gap: 2rem;
    grid-auto-flow: column;*/
  }
}

.roomTypeGrid__item.rtgL{
  grid-area: rtgL;
}

.roomTypeGrid__item.rtgR{
  grid-area: rtgR;
}

.interior-page.premium_door #PREMIUMDOOR .roomTypeGrid__item{
/*  background: #F1EDE1;*/
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  grid-row-gap: 2rem;
  padding-bottom: 46px;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomTypeGrid__item{
    padding-bottom: 26px;
  }
}

/*@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomTypeGrid__item:not(:last-of-type){
    padding-bottom: 20px;
  }
}*/

.interior-page.premium_door #PREMIUMDOOR .roomTypeList__pic{
  width: 100%;
}

.interior-page.premium_door #PREMIUMDOOR .roomTypeList__ttl{
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomTypeList__ttl{
    justify-content: flex-start;
    font-size: 16px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .roomTypeList__txt{
  font-size: 16px;
  line-height: 1.6;
}

.interior-page.premium_door #PREMIUMDOOR .roomTypeList__btn{
  text-align: center;
/*  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;*/
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomTypeList__btn{
    text-align: left;
  }
}

.interior-page.premium_door #PREMIUMDOOR .roomType__detail{
  margin-right: 30px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomType__detail{
    margin-right: 0;
    margin-left: 0;
  }
}

.interior-page.premium_door #PREMIUMDOOR .roomType__detail--inner{
  width: calc(50% - 1.5rem);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .roomType__detail--inner{
    width: 100%;
  }
}

.interior-page.premium_door #PREMIUMDOOR .premiumD-exhibitionFlex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.interior-page.premium_door #PREMIUMDOOR .premiumD-exhibitionFlex__item{
  width: calc((100% - 10px * 3) / 4);
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .premiumD-exhibitionFlex__item{
    width: calc((100% - 10px) / 2);
  }
}

.interior-page.premium_door #PREMIUMDOOR .premiumD-exhibitionFlex__item:not(:nth-last-of-type(-n+4)){
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .premiumD-exhibitionFlex__item:not(:nth-last-of-type(-n+2)){
    margin-bottom: 10px;
  }
}

.interior-page.premium_door #PREMIUMDOOR .premiumD-exhibitionStyle{
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .interior-page.premium_door #PREMIUMDOOR .premiumD-exhibitionStyle{
    padding-right: 0;
    padding-left: 0;
  }  
}

/*-----------------------
___2024/04_cove lighting
------------------------*/
.interior-page.led.cove .widthSetting{
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0 40px 0;
/*  border-bottom: solid 1px #ddd;*/
  overflow: hidden;
}

.interior-page.led.cove .widthSetting.pdoor_exhibition{
  background: #F1EDE1;
/*  padding: 0;*/
  margin-bottom: 40px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove .widthSetting.pdoor_exhibition{
    background: none;
    margin-top: 0;
  }
}

.interior-page.led.cove #COVELIGHTING .coveBlockWrapper *{
  list-style: none;
  color: #42423E;
}

.interior-page.led.cove #COVELIGHTING *{
  list-style: none;
  color: #42423E;
}

.interior-page.led.cove #COVELIGHTING .btn_long a{
  color: #fff;
}

.interior-page.led.cove #COVELIGHTING .btn_long i{
  color: #fff;
}

.interior-page.led.cove #COVELIGHTING img{
  border-style: none;
	width: 100%;
	max-width: 100%;
	vertical-align: bottom;
}

.interior-page.led.cove #COVELIGHTING .imgBorder{
  border: 1px solid #777;
}

.interior-page.led.cove #COVELIGHTING .fz_S{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .fz_S{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .fz_14{
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .listCardStyle__detail--ttl.fColumn .fz_14{
    font-size: 16px;
  }
}

.interior-page.led.cove #COVELIGHTING .fz_13{
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .fz_13{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .tileSpace{
  padding-top: 10px;
}

.interior-page.led.cove #COVELIGHTING .spaceT_note{
  margin-top: 10px;
}

.interior-page.led.cove #COVELIGHTING .fw700{
  font-weight: 700;
}

.interior-page.led.cove #COVELIGHTING .fw500{
  font-weight: 500;
}

.interior-page.led.cove #COVELIGHTING .mgT_2em{
  margin-top: 2em;
}

.interior-page.led.cove #COVELIGHTING .mgB_05em{
  margin-bottom: .5em;
}

.interior-page.led.cove #COVELIGHTING .display_b{
 display: block;
}

.interior-page.led.cove #COVELIGHTING .display_b_sp{
  display: none;
 }

 @media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .display_b_sp{
    display: block;
   }
 }

 .interior-page.led.cove #COVELIGHTING .display_ib_sp{
  display: none;
 }

 @media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .display_ib_sp{
    display: inline-block;
   }
 }

.interior-page.led.cove #COVELIGHTING .display_ib{
  display: inline-block;
 }

.interior-page.led.cove #COVELIGHTING .lineupSeriesSubTtl{
  font-size: 20px;
  font-weight: 700;
  padding-top: 2.4%;/*20.5px*/
  margin-bottom: 1.2%;/*10px*/
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupSeriesSubTtl{
    font-size: 13px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupAreaH2{
  text-align: center;
  font-weight: normal;
  font-size: 3rem;
  line-height: 1.2;
  margin: 3rem auto 2rem auto;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupAreaH2{
    font-size: 2.2rem;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupAreaH2.spaceL{
  margin: 5rem auto;
}

.interior-page.led.cove #COVELIGHTING .lineupAreaH2 span.lineupAreaH2-eng{
  display: block;
  font-weight: normal;
  font-size: 1.8rem;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupAreaH2 span.lineupAreaH2-eng{
    font-size: 1.4rem;
  }
}

.interior-page.led.cove #COVELIGHTING span.lineupAreaH2-L{
  font-size: 3rem;
  font-weight: 700;
}

.interior-page.led.cove #COVELIGHTING span.lineupAreaH2-S{
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  margin-bottom: 0.8em;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING span.lineupAreaH2-S{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupAreaH3{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid #999;
  font-weight: 500;
  line-height: 2;
  font-size: 2rem;
}

.interior-page.led.cove #COVELIGHTING .lineupAreaH3 .lineup_ttl{
  display: block;
  font-size: 2.8rem;
  line-height: 1.2;
  color: #42423E;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupAreaH3 .lineup_ttl{
    font-size: 1.9rem;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupAreaH3 .lineup_subttl{
  display: block;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #42423E;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupAreaH3 .lineup_subttl{
    font-size: 1.2rem;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupAreaH4{
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupAreaH4{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupSeriesSubTtl-arrow{
  position: relative;
  display: inline-block;
  padding-right: 1em;
  padding-bottom: .2em;
  margin-bottom: 15.5px;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupSeriesSubTtl-arrow{
    font-size: 13px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupSeriesSubTtl-arrow::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 10px;
  border-bottom: 1px solid #F24E02;
  left: 0;
  bottom: 0;
}

.interior-page.led.cove #COVELIGHTING .lineupSeriesSubTtl-arrow::after{
  position: absolute;
  content: '';
  width: 1px;
  height: 14px;
  border-right: 1px solid #F24E02;
  right: 4px;
  bottom: -2px;
  transform: rotate(-45deg);
}

.interior-page.led.cove #COVELIGHTING .coveBlockWrapper{
  margin-top: 4%;
  margin-bottom: 75px;
}

.interior-page.led.cove #COVELIGHTING .coveBlockWrapper.noTopSpace{
  margin-top: 0;
}

.interior-page.led.cove #COVELIGHTING .coveBlockWrapper.spaceB_S{
  margin-bottom: 44px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .coveBlockWrapper.spaceB_S{
    margin-bottom: 20px;
  }
}

.interior-page.led.cove #COVELIGHTING .coveBlockWrapper.wBorderB{
  padding-bottom: 4%;
  margin-bottom: 0;
  border-bottom: 1px dotted rgba(66,66,62,0.5);
}

.interior-page.led.cove #COVELIGHTING .coveBlockWrapper.wBorderT{
  border-top: 2px solid #999;
  padding-top: 4%;
}

.interior-page.led.cove #COVELIGHTING .coveBlockGrid{
  display: grid;
  grid:
    'covelight covecolor' auto
    'covenotes covecolor' auto
    / calc(100% - 20% - 5rem) 20%;
  grid-gap: 2rem 5rem;
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .coveBlockGrid{
    grid:
    'covelight covelight' auto
    'covecolor covenotes' auto
    / calc(45% - 1rem) 55%;
    grid-gap: 4rem 1rem;
  }
}

.coveBlockGrid__item.covelight{
  grid-area: covelight;
}

.coveBlockGrid__item.covenotes{
  grid-area: covenotes;
}

.coveBlockGrid__item.covecolor{
  grid-area: covecolor;
}

.interior-page.led.cove #COVELIGHTING .coveBlockFlex{
  display: flex;
}

.interior-page.led.cove #COVELIGHTING .coveBlockFlex.covelight .coveBlockFlex__item{
  width: calc((100% - 1.4rem * 2) / 3);
}

.interior-page.led.cove #COVELIGHTING .coveBlockFlex.covelight .coveBlockFlex__item:not(:last-of-type){
  margin-right: 1.4rem;
}

.interior-page.led.cove #COVELIGHTING .coveBlockGrid__item--innerTile{
  padding: 20px;
}

.interior-page.led.cove #COVELIGHTING .tag_new{
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #F24D02;
  padding: .4em;
  color: #F24D02;
  margin-bottom: 0.5em;
  display: inline-block;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .tag_new{
    font-weight: 500;
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .coveCardGrid__outliner{
  width: calc(((100% - 1.4rem * 2) / 4) * 3);
}
@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .coveCardGrid__outliner{
    width: auto;
  }
}

.interior-page.led.cove #COVELIGHTING .coveCardGrid.covenotes{
  display: grid;
  grid:
    'covenote_curtain covenote_blind covenote_text' auto
    / calc((100% - 1.4rem * 2) / 3) calc((100% - 1.4rem * 2) / 3) calc((100% - 1.4rem * 2) / 3);
  grid-gap: 0 1rem;
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .coveCardGrid.covenotes{
  /*  grid:
    'covenote_text' auto
    'covenote_curtain' auto
    'covenote_blind' auto
    / 1fr;
    grid-gap: 10px 0;
    */
    grid:
    'covenote_text covenote_text' auto
    'covenote_curtain covenote_blind' auto
    / 1fr 1fr;
  grid-gap: 10px 10px;
  grid-auto-flow: column;
  }
}

.coveCardGrid__item.covenote_curtain{
  grid-area: covenote_curtain;
}

.coveCardGrid__item.covenote_blind{
  grid-area: covenote_blind;
}

.coveCardGrid__item.covenote_text{
  grid-area: covenote_text;
  display: flex;
  align-items: center;
}

.interior-page.led.cove #COVELIGHTING .lineupOptionFlex__outliner{
  width: calc(100% - 20% - 5rem);
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupOptionFlex__outliner{
    width: 100%;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupOptionFlex{
  display: flex;
}

.interior-page.led.cove #COVELIGHTING .lineupOptionFlex__item{
 width: calc((100% - 1.4rem * 2) / 3);
}

.interior-page.led.cove #COVELIGHTING .lineupOptionFlex__item:not(:last-of-type){
  margin-right: 1.4rem;
}

.interior-page.led.cove #COVELIGHTING .cove-lineup-ttl__option{
  font-size: 20px;
  font-weight: 700;
/*  padding-top: 2.4%;*/
  margin-bottom: 1.2%;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .cove-lineup-ttl__option{
    font-size: 13px;
  }
}

.interior-page.led.cove #COVELIGHTING .colorNotes{
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 7px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .colorNotes{
    font-size: 14px;
  }
}

.lineupCardGrid.door{
  grid-area: door;
}

.lineupCardGrid.others{
  grid-area: others;
}

.interior-page.led.cove #COVELIGHTING .lineupDoorFlex{
  display: flex;
}

/*@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupDoorFlex{
    justify-content: space-between;
  }
}*/

.interior-page.led.cove #COVELIGHTING .lineupDoorFlex__item{
/*  width: 20%;*/
  width: 9vw;
  max-width: 104px;
  margin-bottom: 2%;
  float: none;
  list-style: none;
}

.interior-page.led.cove #COVELIGHTING .lineupDoorFlex__item:not(:last-of-type){
  margin-right: 4.2%;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupDoorFlex__item{
    width: 23%;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupCardGrid{
  grid-row: span 2;
  display: grid;
  grid-template-rows: subgrid;
}

.interior-page.led.cove #COVELIGHTING .lineupTileFlex{
  display: flex;
  justify-content: space-between;
}

.interior-page.led.cove #COVELIGHTING .lineupTileFlex__item.lineupGlass{
  width: 30%;
  max-width: 130px;
}

.interior-page.led.cove #COVELIGHTING .lineupBlockGrid.rev .lineupTileFlex__item.lineupGlass{
  width: 40%;
  max-width: 130px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupBlockGrid.rev .lineupTileFlex__item.lineupGlass{
    width: 30%;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupTileFlex__item{
  width: calc(100% - 30%);
/*  max-width: calc(100% - 130px);*/
  max-width: calc(100% - 10px);
}

.interior-page.led.cove #COVELIGHTING .lineupColorFlex{
  display: flex;
  flex-direction: column;
/*  flex-wrap: wrap;
  justify-content: space-between;*/
}

.interior-page.led.cove #COVELIGHTING .lineupColorFlex-row{
  display: flex;
  flex-direction: row;
}

.interior-page.led.cove #COVELIGHTING .lineupColorListFlex{
/*  width: 47%;*/
  display: flex;
/*  width: 17.5%;
  max-width: 70px;*/
}

.interior-page.led.cove #COVELIGHTING .lineupGlassList__item:not(:last-of-type){
  margin-bottom: 5px;
}

.interior-page.led.cove #COVELIGHTING .lineupColorFlex__item{
  display: block;
}

.interior-page.led.cove #COVELIGHTING .lineupColorFlex__item:not(:last-of-type){
  margin-bottom: 7px;
}

.interior-page.led.cove #COVELIGHTING .lineupColor{
/*  width: 17.5%;*/
/*  min-width: 70px;*/
  max-width: 70px;
  margin-right: 5px;
  width: 6vw;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupColor{
    width: 12vw;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupColorFlex-row__item{
/*  width: 50%;*/
  margin-right: 20px;
}

/*.interior-page.led.cove #COVELIGHTING .lineupColorFlex-row__item .lineupColor{
  width: 46%;
  max-width: 70px;
  margin-right: 5px;
}*/

.interior-page.led.cove #COVELIGHTING .lineupFrameFlex{
  display: flex;
}

.interior-page.led.cove #COVELIGHTING .lineupFrame{
  display: block;
  width: 30%;
  max-width: 130px;
  margin-right: 5px;
}

.interior-page.led.cove #COVELIGHTING .lineupFrameList__item{
  margin-bottom: 5px;
}

.interior-page.led.cove #COVELIGHTING .lineupNoteFlex-pc{
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupNoteFlex-pc{
    display: none;
  }
  .interior-page.led.cove #COVELIGHTING .lineupCardGrid.door:has(.lineupNoteFlex-pc) + .lineupCardGrid.others{
    margin-top: -2rem;/* grid-gap */
  }
}

.interior-page.led.cove #COVELIGHTING .lineupNoteFlex-sp{
  display: none;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupNoteFlex-sp{
    display: block;
    margin-top: 2rem;
  }
}

.interior-page.led.cove #COVELIGHTING .note_tile{
  width: calc(100% - 4rem - 5.4% * 2);
  max-width: 370px;
  padding: 5.7% 5.4% 5.1%;/* 21px 20px 19px */
  background: #f3ede1;
  display: flex;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .note_tile{
    max-width: initial;
    width: calc(100% - 5.4% * 2);
  }
}

.interior-page.led.cove #COVELIGHTING .note_img{
  width: 35%;
  margin-right: 3%;
}

.interior-page.led.cove #COVELIGHTING .note_txt{
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .note_txt{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .display_n_sp{
  display: block;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .display_n_sp{
    display: none;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupPointGrid{
  display: grid;
  grid:
    'pointL pointR' 1fr
    / 1fr 1fr;
  grid-column-gap: 3rem;
/*  grid-row-gap: 2rem;*/
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointGrid{
    display: block;
/*    grid:
      'pointL' 1fr
      'pointR' 1fr
      / 1fr;
    grid-column-gap: 0;
    grid-row-gap: 2rem;
    grid-auto-flow: column;*/
  }
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointGrid.spNoGap{
    grid-row-gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointGrid.spNoGap .lineupPointGrid__item.gridL{
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointGrid.spNoGap .lineupPointGrid__item.gridL::after{
    position: absolute;
    content: '';
    width: calc(100% - 25px * 2);
    left: 25px;
    bottom: 0;
    height: 1px;
    border-bottom: 1px dotted rgba(66,66,62,0.5);
  }
}

.interior-page.led.cove #COVELIGHTING .lineupPointGrid__item{
  background: #F1EDE1;
  padding: 30px;
  grid-row: span 4;
  display: grid;
  grid-template-rows: subgrid;
  grid-row-gap: 2rem;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointGrid__item{
    display: grid;
    padding: 25px;
  }
}

.lineupPointGrid__item.gridL{
  grid-area: pointL;
}

.lineupPointGrid__item.gridR{
  grid-area: pointR;
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl{
    font-size: 13px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl.txtL{
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl.txtL{
    font-size: 16px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl.txtM{
  font-size: 25px;
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl.txtS{
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl.txtS{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl.txtC{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointStyle__ttl.txtC{
    display: inline-block;
    text-align: center;
  }
}

.interior-page.led.cove #COVELIGHTING .covelightingPointFlex{
  display: flex;
}

.interior-page.led.cove #COVELIGHTING .covelightingPointFlex__left{
  width: 7em;
}

.interior-page.led.cove #COVELIGHTING .covelightingPointFlex__right{
  width: calc(100% - 7em);
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__txt{
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointStyle__txt{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__btn{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__tile{
  width: calc((100% - 3% * 2) / 3);
}

.interior-page.led.cove #COVELIGHTING .lineupPointStyle__tile--cap{
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineupPointStyle__tile--cap{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .lineupPointFlex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
}

.interior-page.led.cove #COVELIGHTING .lineup-col2{
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineup-col2{
    display: block;
  }
}

.interior-page.led.cove #COVELIGHTING .lineup-col2__item{
  width: calc((100% - 2.5rem) / 2);
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .lineup-col2__item{
    width: 100%;
  }
}

.interior-page.led.cove #COVELIGHTING .bg-grey{
  background: rgba(69,69,69,0.05);
}

.interior-page.led.cove #COVELIGHTING .bg-beige{
  background: #F1EDE1;
}

.interior-page.led.cove #COVELIGHTING .door_list{
  justify-content: space-between;
}

.interior-page.led.cove #COVELIGHTING .door_list li{
  margin-right: 0;
  width: calc((100% - (2.5rem / 2) - (4% * 2)) / 3);
}

.interior-page.led.cove #COVELIGHTING .knob_lineup li > div{
  justify-content: center;
}

.interior-page.led.cove #COVELIGHTING .knob_lineup li .txt{
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .knob_lineup li .txt{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .l_handle_lineup li .txt{
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .l_handle_lineup li .txt{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .l_handle_lineup li .txt_sub{
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  text-align: right;
  margin-right: .5em;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .l_handle_lineup li .txt_sub{
    margin-right: 0;
    font-size: 14px;
  }
}
/* end lineup */

.interior-page.led.cove #COVELIGHTING .listCardGrid{
  display: grid;
  grid:
    'listCardGrid_pic listCardGrid_ttl' auto
    'listCardGrid_pic listCardGrid_txt' auto
    'listCardGrid_pic listCardGrid_btn' auto
    / calc(50% - (2.5rem / 2)) calc(50% + (2.5rem / 2));
    grid-gap: 2rem 0;
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .listCardGrid{
    display: grid;
    grid:
      'listCardGrid_ttl' auto
      'listCardGrid_pic' auto
      'listCardGrid_txt' auto
      'listCardGrid_btn' auto
      / 100%;
      grid-gap: 2rem 0;
    grid-auto-flow: column;
  }
}

.interior-page.led.cove #COVELIGHTING .listCardStyle:not(:last-of-type){
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .listCardStyle:not(:last-of-type){
    margin-bottom: 10px;
  }
}

.interior-page.led.cove #COVELIGHTING .listCardStyle__pic{
  grid-area: listCardGrid_pic;
}

.interior-page.led.cove #COVELIGHTING .objectFit_img{
  object-fit: cover;
  height: 100%;
}

/*.interior-page.led.cove #COVELIGHTING .listCardStyle__detail{
  padding: 25px 30px 30px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}*/

.interior-page.led.cove #COVELIGHTING .listCardStyle__detail--ttl{
  padding-top: 25px;
  padding-right: 30px;
  padding-left: 30px;
  grid-area: listCardGrid_ttl;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .listCardStyle__detail--ttl{
    padding-top: 15px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 16px;
  }
}

.interior-page.led.cove #COVELIGHTING .listCardStyle__detail--ttl.fColumn{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .listCardStyle__detail--ttl.fColumn{
    font-size: 18px;
  }
}

.interior-page.led.cove #COVELIGHTING .listCardStyle__detail--txt{
  padding-right: 30px;
  padding-left: 30px;
  grid-area: listCardGrid_txt;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .listCardStyle__detail--txt{
    padding-right: 14px;
    padding-left: 14px;
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .listCardStyle__detail--btn{
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
  grid-area: listCardGrid_btn;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .listCardStyle__detail--btn{
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 20px;
  }
}

.interior-page.led.cove #COVELIGHTING .textLink-arrow{
  position: relative;
  display: inline-block;
  padding-right: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s ease;
  color: #42423E;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .textLink-arrow{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .textLink-arrow::after{
  position: absolute;
  content: '';
  right: 0;
/*  top: 0.4em;*/
  top: 50%;
  height: 6px;
  width: 6px;
  border-right: 1px solid #F24E02;
  border-bottom: 1px solid #F24E02;
  transform: translateY(-62%) rotate(45deg);
}
/* safari hack */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media, _:future, :root .interior-page.led.cove #COVELIGHTING .textLink-arrow::after{
    transform: translateY(-68%) rotate(45deg);
  }
}
/* firefox hack */
/*@-moz-document url-prefix(){
  .interior-page.led.cove #COVELIGHTING .textLink-arrow::after{
    top: 0.8em;
  }
}*/

.interior-page.led.cove #COVELIGHTING .textLink-arrow:hover{
  opacity: .6;
  cursor: pointer;
  text-decoration: none;
}

.interior-page.led.cove #COVELIGHTING .textLink-arrow:not(:last-of-type){
  margin-right: 1.5em;
}

.interior-page.led.cove #COVELIGHTING .roomTypeList .textLink-arrow:not(:last-of-type){
  margin-right: 0;
}

.interior-page.led.cove #COVELIGHTING .textLink-arrow:not(:first-of-type){
  margin-top: 1rem;
}

.interior-page.led.cove #COVELIGHTING .textLink-arrow__ext{
  position: relative;
  display: inline-block;
  padding-right: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s ease;
  color: #42423E;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .textLink-arrow__ext{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .textLink-arrow__ext::after{
  position: absolute;
  content: '';
  right: 0;
/*  top: 0.6em;*/
  top: 50%;
  height: 6px;
  width: 6px;
  border-right: 1px solid #F24E02;
  border-bottom: 1px solid #F24E02;
  transform: translateY(-50%) rotate(-45deg);
}
/*
@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .textLink-arrow__ext::after{
    top: 0.6em;
  }
}
*/
/* firefox hack */
/*@-moz-document url-prefix(){
  .interior-page.led.cove #COVELIGHTING .textLink-arrow__ext::after{
    top: 0.8em;
  }
}*/

.interior-page.led.cove #COVELIGHTING .textLink-arrow__ext:hover{
  opacity: .6;
  cursor: pointer;
  text-decoration: none;
}

.interior-page.led.cove #COVELIGHTING .roomTypeList__item{
  border-top: 3px solid rgba(69,69,69,0.1);
}

.interior-page.led.cove #COVELIGHTING .roomTypeList__item:last-of-type{
  border-bottom: 3px solid rgba(69,69,69,0.1);
}

.interior-page.led.cove #COVELIGHTING .roomType__ttl{
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  padding-top: 42px;
  padding-bottom: 40px;
  position: relative;
  cursor: pointer;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomType__ttl{
    font-size: 15px;
    padding-top: 18px;
    padding-bottom: 17px;
    text-align: left;
  }
}

.interior-page.led.cove #COVELIGHTING .roomType__ttl--icon{
  position: absolute;
  content: '';
  top: 50%;
  right: 35px;
  transform: translateY(-50%) rotate(180deg);
  width: 25px;
  height: 25px;
  /*background: #F24E02;*/
  background: url(/interior/images/premium_door/premiumdoor_toggleIcon.png) center center / contain no-repeat;
  transition: all .4s ease;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomType__ttl--icon{
    right: 15px;
    width: 20px;
    height: 20px;
  }
}

.interior-page.led.cove #COVELIGHTING .roomType__ttl--icon.js_toggle_icon.open{
  transform: translateY(-50%) rotate(0deg);
}

.interior-page.led.cove #COVELIGHTING .roomTypeGrid{
  display: grid;
  grid:
    'rtgL rtgR' 1fr
    / 1fr 1fr;
  grid-column-gap: 3rem;
/*  grid-row-gap: 2rem;*/
  grid-auto-flow: column;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomTypeGrid{
    display: block;
  }
}

.roomTypeGrid__item.rtgL{
  grid-area: rtgL;
}

.roomTypeGrid__item.rtgR{
  grid-area: rtgR;
}

.interior-page.led.cove #COVELIGHTING .roomTypeGrid__item{
/*  background: #F1EDE1;*/
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  grid-row-gap: 2rem;
  padding-bottom: 46px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomTypeGrid__item{
    padding-bottom: 26px;
  }
}

.interior-page.led.cove #COVELIGHTING .roomTypeList__pic{
  width: 100%;
}

.interior-page.led.cove #COVELIGHTING .roomTypeList__ttl{
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomTypeList__ttl{
    justify-content: flex-start;
    font-size: 16px;
  }
}

.interior-page.led.cove #COVELIGHTING .roomTypeList__txt{
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomTypeList__txt{
    font-size: 14px;
  }
}

.interior-page.led.cove #COVELIGHTING .roomTypeList__btn{
  text-align: center;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomTypeList__btn{
    text-align: left;
  }
}

.interior-page.led.cove #COVELIGHTING .roomType__detail{
  margin-right: 30px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomType__detail{
    margin-right: 0;
    margin-left: 0;
  }
}

.interior-page.led.cove #COVELIGHTING .roomType__detail--inner{
  width: calc(50% - 1.5rem);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .roomType__detail--inner{
    width: 100%;
  }
}

.interior-page.led.cove #COVELIGHTING .premiumD-exhibitionFlex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.interior-page.led.cove #COVELIGHTING .premiumD-exhibitionFlex__item{
  width: calc((100% - 10px * 3) / 4);
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .premiumD-exhibitionFlex__item{
    width: calc((100% - 10px) / 2);
  }
}

.interior-page.led.cove #COVELIGHTING .premiumD-exhibitionFlex__item:not(:nth-last-of-type(-n+4)){
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .premiumD-exhibitionFlex__item:not(:nth-last-of-type(-n+2)){
    margin-bottom: 10px;
  }
}

.interior-page.led.cove #COVELIGHTING .premiumD-exhibitionStyle{
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .premiumD-exhibitionStyle{
    padding-right: 0;
    padding-left: 0;
  }  
}

.interior-page.iron_panel .new_item__ttl{
  position: relative;
}
.interior-page.iron_panel .new_item__ttl::after{
  position: absolute;
  content: 'NEW';
  width: 3em;
  height: 1.5em;
  line-height: 1.5em;
  color: #e55000;
  border: 2px solid #e55000;
  text-align: center;
  font-size: 0.6em;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  margin-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .interior-page.iron_panel .new_item__ttl:has(>.ttl_space)::after{
    margin-left: 1em;
  }
}

.interior-page.iron_panel .ttl_space{
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .interior-page.iron_panel .ttl_space{
    margin-left: .5em;
  }
}

.interior-page.led.cove #COVELIGHTING .wBorderT{
  border-top: 2px solid #999;
  margin-top: 4%;
  padding-top: 4%;
  width: 100%;
  display: block;
}

.interior-page.led.cove #COVELIGHTING .wBorderT__light{
  border-top: 1px dotted rgba(66,66,62,0.5);
  margin-top: 7%;
  width: 100%;
  display: block;
}

.interior-page.led.cove .contentsInner.noBorderB{
  border-bottom: none;
}

.interior-page.led.cove #COVELIGHTING .cove-lineup-ttl__option{
  margin-top: 1em;
}

.interior-page.led.cove #COVELIGHTING .mgB_M{
  margin-bottom: 4em;
}
@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .mgB_M{
    margin-bottom: 2em;
  }
}

/*.interior-page.led.cove #COVELIGHTING .coveBlockFlex.covelight .coveBlockFlex__item.colFour{
  width: calc((100% - 1.4rem * 3) / 4);
}
*/

.interior-page.led.cove #COVELIGHTING .coveBlockFlex-four__outliner.covelight{
  width: calc(100% - 20% - 5rem);
}

@media screen and (max-width: 767px) {
  .interior-page.led.cove #COVELIGHTING .coveBlockFlex-four__outliner.covelight{
    width: 100%;
  }
}

.interior-page.led.cove #COVELIGHTING .coveBlockFlex-four.covelight{
  display: flex;
}

.interior-page.led.cove #COVELIGHTING .coveBlockFlex-four.covelight .coveBlockFlex-four__item{
 width: calc((100% - 1.4rem * 2) / 3);
}

.interior-page.led.cove #COVELIGHTING .coveBlockFlex-four.covelight .coveBlockFlex-four__item:not(:last-of-type){
  margin-right: 1.4rem;
}

/*.iron_panel .ip_flexStart{
  flex-wrap: wrap;
}*/
.iron_panel .ip_flexStart::before{
  content: '';
  width: 204px;
  height: 0;
  display: block;
  margin-right: 0;
  order: 1;
}

.iron_panel .ip_flexStart::after{
  content: '';
  width: 204px;
  height: 0;
  display: block;
  margin-right: 2.6%;
/*  order: 1;*/
}

/* === glass_works.html === */
.glass_works .grid__colSix{
  display: grid;
/*  grid:
    'gPas-1 gPas-2 gPas-3 gMat-1 gMat-2 gMat-3' 1fr
    'gBonita gDrop' 1fr
    / 1fr 1fr 1fr 1fr 1fr 1fr;
*/
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5% 1%;
/*  grid-auto-flow: column;*/
  }
  @media screen and (max-width: 767px) {
    .glass_works .grid__colSix{
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 4% 3%;
    }
  }
  .glass_works .grid__colSix img{
    width: 100%;
  }
  .glass_works .grid__colSix--item{
    float: none!important;
  }
  .glass_works .pdB__M{
    padding-bottom: 4rem;
  }
  .glass_works .grid__colEight{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 5% 1%;
  /*  grid-auto-flow: column;*/
    }
    @media screen and (max-width: 767px) {
      .glass_works .grid__colEight{
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 4% 3%;
        height: 1600px;
      }
    }
/*    .glass_works .grid__colEight img{
      width: 100%;
    }*/
    .glass_works .grid__colEight--item{
      float: none!important;
    }

  .glass_works .fl-ttl__wBor{
  display: flex!important;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #999;
  margin-bottom: 1.6em!important;
}
.interior-page.glass_works .fz_S{
  font-size: .7em;
}
.glass_works .fl-ttl__fCap{
  display: flex!important;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .glass_works .fl-ttl__fCap{
    display: inline-block!important;
  }
}
.glass_works .fCap-span{
  margin-top: 0!important;
}

.glass_works .gw_slitImg{
  width: auto;
  max-height: 550px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width:900px) {
  .glass_works .gw_slitImg{
    max-height: 400px;
  }
}

.interior-page.glass_works .new_item__ttl{
  position: relative;
}
.interior-page.glass_works .new_item__ttl::after{
  position: absolute;
  content: 'NEW';
  width: 3em;
  height: 1.5em;
  line-height: 1.5em;
  color: #e55000;
  border: 2px solid #e55000;
  text-align: center;
  font-size: 0.6em;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  margin-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .interior-page.glass_works .new_item__ttl:has(>.ttl_space)::after{
    margin-left: 1em;
  }
}

.interior-page.glass_works .ttl_space{
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .interior-page.glass_works .ttl_space{
    margin-left: .5em;
  }
}
/*
.glass_works .grid__handmade{
  display: grid;
  grid:
    'gh_text gh_glass_01' 1fr
    'gh_text gh_glass_02' 1fr
    / 1fr 1fr;
  grid-gap: 5% 10%;
  grid-auto-flow: column;
}
.glass_works .gh_text{
  grid-area: gh_text;
}
.glass_works .gh_glass_01{
  grid-area: gh_glass_01;
}
.glass_works .gh_glass_02{
  grid-area: gh_glass_02;
}

.glass_works .grid__handmade--outliner{
  width: 100%;
  max-width: 600px;
  margin-bottom: 0;
  margin-right: 0;
}
*/

.glass_works .grid__topic{
  display: grid;
  grid:
    'gt_box' auto
    'gt_text' auto
    / 1fr;
  grid-gap: 1% 0;
  grid-auto-flow: column;
}
.glass_works .gt_box{
  grid-area: gt_box;
  display: flex;
}
.glass_works .gt_text{
  grid-area: gt_text;
}

.glass_works .products_bg.gt_box--inner{
/*  width: 100%;*/
  width: 550px;
  margin-right: auto;
  margin-left: auto;
/*  margin-bottom: 0;
  margin-right: 0;*/
}
@media screen and (max-width: 767px) {
  .glass_works .products_bg.gt_box--inner{
    width: 100%;
  }
}

.glass_works .topicHandmade_w{
/*  width: 90%;
  max-width: 760px;*/
  width: 840px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 4em;
}
@media screen and (max-width: 900px) {
  .glass_works .topicHandmade_w{
    width: 100%;
  }
}
.glass_works .bg-beige{
  background: #f3ede1;
}
.glass_works .mgAuto{
  margin-left: auto;
  margin-right: auto;
}
.glass_works .mgT_SS{
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .glass_works .mgT_SS{
    margin-top: 1rem;
  }
}
.glass_works .icon_new{
  font-size: 1.2rem;
  line-height: 1.2;
  border: 2px solid#e55000;
  color: #e55000;
  display: inline;
  padding: .2em;
  font-weight: bold;
  margin-right: .4em;
}
.glass_works .textR{
  text-align: right;
  margin-top: 0;
}

.glass_works .ip_flexStart::before{
  content: '';
  width: 204px;
  height: 0;
  display: block;
  margin-right: 0;
  order: 1;
}

.glass_works .ip_flexStart::after{
  content: '';
  width: 204px;
  height: 0;
  display: block;
  margin-right: 2.6%;
/*  order: 1;*/
}

/* === premium door === */
/*.premium_door .icon_new{
  font-size: .6em;
  border: 2px solid#e55000;
  color: #e55000!important;
  display: inline;
  padding: .2em;
  font-weight: bold;
  margin-left: .6em;
}*/

.premium_door .icon_new{
  position: relative;
}
.premium_door .icon_new::after{
  position: absolute;
  content: 'NEW';
  font-size: .6em;
  border: 2px solid#e55000;
  color: #e55000!important;
  display: inline;
  padding: .2em;
  font-weight: bold;
  margin-left: .6em;
}

.premium_door .ttl_M{
  font-size: 3.4rem;
  line-height: 1.2;
  color: #42423E;
  margin-bottom: 1em;
}

.interior-page.premium_door #PREMIUMDOOR .lineupAreaH3 .lineup_subttl.fz-em_S{
  font-size: 0.8em;
}
.interior-page.premium_door #PREMIUMDOOR .lineupAreaH3 .lineup_subttl.fz-em_M{
  font-size: 0.9em;
}
.interior-page.premium_door #PREMIUMDOOR .lineupAreaH3 .lineup_ttl.fz-em_S{
  font-size: 0.8em;
}
.interior-page.premium_door #PREMIUMDOOR .lineupAreaH3 .lineup_ttl.fz-em_M{
  font-size: 0.9em;
}
.premium_door .mgB__ttl{
  margin-bottom: 1.8em;
}
/*
.premium_door .lineup-col1{
  display: flex;
  flex-wrap: wrap;
}
  */

.premium_door .flex.col_1{
   justify-content: flex-start!important;
   flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .premium_door .flex.col_1{
    justify-content: space-between!important;
    flex-wrap: wrap;
  }
  .premium_door .flex.col_1::after{
    content: '';
    width: calc((100% - (2.5rem / 2) - (4% * 2)) / 3);
    height: 0;
    display: block;
  }
}
.premium_door .col_1__item{
  margin-right: 2%!important;
  width: calc((100% - (2.5rem / 5) - (4% * 2)) / 6)!important;
}
@media screen and (max-width: 767px) {
  .premium_door .col_1__item{
    width: calc((100% - (2.5rem / 2) - (4% * 2)) / 3)!important;
    margin-right: 0;
  }
}
.premium_door .col_1__item.wide{
  width: calc((100% - (2.5rem / 5) - (4% * 2)) / 3)!important;
}
.premium_door .col_1__item.nrw{
  width: calc((100% - (2.5rem / 5) - (4% * 2)) / 8)!important;
}

.premium_door .door_list{
  margin-top: 3rem;
}

.premium_door .lineup-col1 .lineup{
  margin-bottom: 0;
}

.premium_door .lockBox{
  padding: 10px;
  display: block!important;
  height: 84%;
}
.premium_door .lockBox.knobLockBox{
  height: 100%;
}
@media screen and (max-width: 767px) {
  .premium_door .lockBox.knobLockBox{
    height: auto;
  }
}

.premium_door .lockBox__ttl{
  font-weight: bold;
  border-bottom: 2px solid #42423E;
  display: block;
  width: 100%;
  padding-bottom: 0.2em;
  margin-bottom: 0.5em;
}
.premium_door .lockBox__img{
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.premium_door .lockBox__fl{
  display: flex;
  justify-content: space-between;
}
.premium_door .lockBox__fl--item{
  display: inline-block;
  width: 100%;
  margin-right: 4px;
}
.premium_door .lockBox__fl--item img{
  width: 100%;
  height: 100%;
}

.premium_door .door_list.door_list_mg_S{
  margin-top: 1.4rem;
}

.premium_door .itemTile__img{
  display: block;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.interior-page.premium_door #PREMIUMDOOR .item_area .l_handle_lineup li .txt{
  white-space: wrap;
}

.premium_door .tag-new{
  color: #e55000!important;
  font-size: .8em;
  font-weight: bold;
  border: 1px solid #e55000;
  margin-left: .2em;
  padding: .1em;
}

/* -----------------
__2025/02/21 追加
------------------ */
.internalInfo__wrapper .btn.btnSp{
  background-color: #ffdc19;
  color: #4d4c40;
}
.internalInfo__wrapper .btn.btnSp::after{
  border-top: 1px solid #4d4c40;
  border-right: 1px solid #4d4c40;
}
.internalInfo__wrapper .btn.btnSp:hover,
.internalInfo__wrapper .btn.btnSp.active{
  background-color: #fff;
  color: #4d4c40;
}

