/*******************************************************************************
  共通 ここから
*******************************************************************************/

:root {
  /* 色 */
  --c-crimson:   #7f0019;
  --c-crimson60: #b26675;
  --c-crimson20: #e5ccd1;

  --c-grey:   #5c5a5a;
  --c-grey60: #9d9c9c;
  --c-grey20: #dedede;

  --c-beige:   #f3e9cc;
  --c-beige60: #f8f2e0;
  --c-beige30: #fcf8f0;

  --c-font:   #000;
  --c-font60: #8a8a8e;
  --c-font20: #d8d8d9;

  --c-bg: #F5F5F5;

  /* SVG画像をえんじ色に変換 */
  --c-crimson-filter: brightness(0) saturate(100%) invert(9%) sepia(53%) saturate(6618%) hue-rotate(338deg) brightness(89%) contrast(109%);


  /* コンテナ幅 */
  --container-xl: 1128px;
  --container-lg: 936px;
  --container-md: 744px;
  --container-sm: 648px;


  /* ウィンドウ端の余白 */
  --gutter-pc: 33px;
  --gutter-tb: 60px;
  --gutter-sp: 23.5px;
}

/*******************************************************************************
  基本要素のスタイル
*******************************************************************************/

iframe {
  border: 0;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  color: var(--c-font);
}

/*******************************************************************************
  セクション境界線
*******************************************************************************/

.section-border {
  position: relative;
}

.section-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1366px);
  border-top: 1px solid var(--c-grey20);
}

@media (max-width: 1128px) {
  .section-border::before {
    width: min(100%, 647px);
  }
}

@media (max-width: 648px) {
  .section-border::before {
    width: min(100%, 327px);
  }
}

/*******************************************************************************
  ボタンスタイル
*******************************************************************************/

.btn .boxed-btn {
  padding: 24px 40px;
}

.btn .boxed-btn span {
  font-weight: normal;
  margin-right: 8px;
}

/*******************************************************************************
  レスポンシブ表示制御
*******************************************************************************/

.show-tb {
  display: none;
}

@media (max-width: 1128px) {
  .show-tb {
    display: block;
  }
}

.show-sp {
  display: none;
}

@media (max-width: 648px) {
  .show-sp {
    display: block;
  }
}

@media (max-width: 1128px) {
  .hide-tb {
    display: none;
  }
}

@media (max-width: 648px) {
  .hide-sp {
    display: none;
  }
}

/*******************************************************************************
  スクリーンリーダー用
*******************************************************************************/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/*******************************************************************************
  メインコンテンツ（プレフィックスのみ他と違う）
*******************************************************************************/

.tokucho {
  padding-bottom: 120px;
  overflow-x: hidden;
}

@media (max-width: 648px) {
  .tokucho {
    padding-bottom: 60px;
  }
}

.tokucho img {
  height: auto;
  max-width: 100%;
  display: block;
  vertical-align: bottom;
}

.tokucho p {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (max-width: 648px) {
  .tokucho p {
    font-size: 1.4rem;
  }
}

.tokucho h2,
.tokucho h3,
.tokucho h4,
.tokucho p,
.tokucho small {
  text-box: trim-both cap alphabetic;
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.tokucho p.btn {
  text-box: initial;
}

/*******************************************************************************
  コンテナ（プレフィックスのみ他と違う）
*******************************************************************************/

.tokucho-container {
  margin: 0 auto;
  padding-left: var(--gutter-pc);
  padding-right: var(--gutter-pc);
}

.tokucho-container.--sm {
  width: min(100%, calc(var(--container-sm) + (var(--gutter-pc) * 2)));
}

.tokucho-container.--md {
  width: min(100%, calc(var(--container-md) + (var(--gutter-pc) * 2)));
}

.tokucho-container.--lg {
  width: min(100%, calc(var(--container-lg) + (var(--gutter-pc) * 2)));
}

.tokucho-container.--xl {
  width: min(100%, calc(var(--container-xl) + (var(--gutter-pc) * 2)));
}

@media (max-width: 1128px) {
  .tokucho-container {
    padding-left: var(--gutter-tb);
    padding-right: var(--gutter-tb);
  }

  .tokucho-container.--sm,
  .tokucho-container.--md,
  .tokucho-container.--lg,
  .tokucho-container.--xl {
    width: min(100%, calc(648px + (var(--gutter-tb) * 2)));
  }
}

@media (max-width: 648px) {
  .tokucho-container {
    padding-left: var(--gutter-sp);
    padding-right: var(--gutter-sp);
  }

  .tokucho-container.--sm,
  .tokucho-container.--md,
  .tokucho-container.--lg,
  .tokucho-container.--xl {
    width: min(100%, calc(328px + (var(--gutter-sp) * 2)));
  }
}

.tokucho-container .tokucho-container {
  padding-left: 0;
  padding-right: 0;
}

/*******************************************************************************
  共通 ここまで
*******************************************************************************/

/*******************************************************************************
  メインビジュアル
*******************************************************************************/

.tokucho-mv {
  padding: 120px 0;
  background: var(--c-beige30);
}

@media (max-width: 648px) {
  .tokucho-mv {
    padding: 90px 0 60px;
  }
}

.tokucho-mv__inner {
  position: relative;
}

.tokucho-mv__title {
  position: absolute;
  top: calc(45 / 766 * 100%);
  right: calc(119 / 1128 * 100%);
  width: calc(166 / 1128 * 100%);
}

@media (max-width: 1128px) {
  .tokucho-mv__title {
    top: calc(0 / 587 * 100%);
    right: calc(396 / 768 * 100%);
    width: calc(312 / 768 * 100%);
  }
}

@media (max-width: 648px) {
  .tokucho-mv__title {
    top: calc(59 / 591 * 100%);
    right: calc(118 / 375 * 100%);
    width: calc(239 / 375 * 100%);
  }
}

/*******************************************************************************
  「無地良品の家」の5つの特長
*******************************************************************************/

.tokucho-feature {
  padding: 120px 0;
}

@media (max-width: 648px) {
  .tokucho-feature {
    padding: 80px 0 60px;
  }
}

.tokucho-feature__inner {
  display: grid;
  grid-template-columns: 552fr 552fr;
  grid-template-rows: auto 1fr;
  column-gap: 24px;
  row-gap: 60px;
}

@media (max-width: 1128px) {
  .tokucho-feature__inner {
    grid-template-columns: none;
    grid-template-rows: repeat(3, auto);
    row-gap: 60px;
  }
}

@media (max-width: 648px) {
  .tokucho-feature__inner {
    row-gap: 40px;
  }
}

.tokucho-feature-header {
  grid-column: 1/2;
  grid-row: 1/2;
}

.tokucho-feature__txt {
  margin-top: 60px;
}

@media (max-width: 648px) {
  .tokucho-feature__txt {
    margin-top: 40px;
  }
}

@media (max-width: 648px) {
  .tokucho-feature__btn {
    display: flex;
    justify-content: center;
  }
}

.tokucho-feature-body {
  grid-column: 2/3;
  grid-row: 1/-1;
}

@media (max-width: 1128px) {
  .tokucho-feature-body {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.tokucho-feature-list__item {
  border-top: 1px solid var(--c-grey20);
}

.tokucho-feature-list__item:last-child {
  border-bottom: 1px solid var(--c-grey20);
}

.tokucho-feature-list__link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  column-gap: 24px;
}

@media (max-width: 648px) {
  .tokucho-feature-list__link {
    column-gap: 16px;
  }
}

@media (max-width: 648px) {
  .tokucho-feature-list__link img {
    height: 16px;
    width: auto;
  }
}

.tokucho-feature-list__link::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background: center/contain no-repeat;
}

@media (max-width: 648px) {
  .tokucho-feature-list__link::before {
    width: 32px;
    height: 32px;
  }
}

.tokucho-feature-list__item:nth-child(1) .tokucho-feature-list__link::before {
  background-image: url(/ie/assets/images/top/feature_list_1.svg)
}

.tokucho-feature-list__item:nth-child(2) .tokucho-feature-list__link::before {
  background-image: url(/ie/assets/images/top/feature_list_2.svg)
}

.tokucho-feature-list__item:nth-child(3) .tokucho-feature-list__link::before {
  background-image: url(/ie/assets/images/top/feature_list_3.svg)
}

.tokucho-feature-list__item:nth-child(4) .tokucho-feature-list__link::before {
  background-image: url(/ie/assets/images/top/feature_list_4.svg)
}

.tokucho-feature-list__item:nth-child(5) .tokucho-feature-list__link::before {
  background-image: url(/ie/assets/images/top/feature_list_5.svg)
}

.tokucho-feature-list__link::after {
  content: "";
  display: block;
  width: 16px;
  height: 28px;
  margin-left: auto;
  margin-right: 24px;
  background: url(/ie/assets/images/top/icon_list_arrow.svg) center/contain no-repeat;
  transition: transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 648px) {
  .tokucho-feature-list__link::after {
    width: 12.31px;
    height: 20px;
    margin-right: 0;
  }
}

.tokucho-feature-list__link:hover::after {
  transform: translateX(50%);
}

.tokucho-feature-footer {
  grid-column: 1/2;
  grid-row: 2/3;
}

@media (max-width: 1128px) {
  .tokucho-feature-footer {
    grid-row: 3/4;
  }
}

/*******************************************************************************
  「無地良品の家」の理由
*******************************************************************************/

.tokucho-reason {
  padding-top: 120px;
}

@media (max-width: 648px) {
  .tokucho-reason {
    padding-top: 60px;
  }
}

.tokucho-reason__title {
  width: fit-content;
  margin: auto;
}

@media (max-width: 648px) {
  .tokucho-reason__title {
    margin-left: 0;
  }
}

.tokucho-reason__lead {
  width: min(100%, 844px);
  margin: 60px auto 0;
}

@media (max-width: 1128px) {
  .tokucho-reason__lead {
    width: min(100%, 535px);
  }
}

@media (max-width: 648px) {
  .tokucho-reason__lead {
    margin-top: 40px;
  }
}

.tokucho-reason__movie {
  margin-top: 60px;
}

@media (max-width: 648px) {
  .tokucho-reason__movie {
    margin-top: 40px;
  }
}

.tokucho-reason__movie video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}