@charset "UTF-8";
.spbr {
  display: none;
}
@media (max-width: 767px ) {
  .spbr {
    display: block;
  }
}

@media (max-width: 767px ) {
  .pcbr {
    display: none;
  }
}

.js-fade {
  translate: 0 50px;
  opacity: 0;
}

/*
  1. より直感的なボックスサイズのモデルを使用
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. デフォルトのマージンを削除
*/
* {
  margin: 0;
}

/*
  3. オーバーフロー設定
*/
html,
body {
  width: 100%;
  overflow-x: clip;
}

/*
  タイポグラフィの微調整
  4. アクセシブルなline-heightを追加
  5. テキストのレンダリングを改善
  7. フォントファミリーの設定
*/
body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

/*
  7. メディア要素のデフォルトを改善
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

/*
  8. フォームのfontに関するデフォルトを削除
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  9. テキストのオーバーフローを回避
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  10. ルートのスタックコンテキストを作成
*/
#root,
#__next {
  isolation: isolate;
}

.l-container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px ) {
  .l-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.l-container.is-thin {
  max-width: 1000px;
}

.l-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 0 0 3rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
}
@media (max-width: 767px ) {
  .l-header {
    padding: 0 0 0 1rem;
  }
}
.l-header_logo {
  margin-right: auto;
  pointer-events: all;
  width: 137px;
}
@media (max-width: 767px ) {
  .l-header_logo {
    width: 94px;
  }
}
.l-header_logo.is-miele {
  width: 148px;
}
@media (max-width: 767px ) {
  .l-header_logo.is-miele {
    width: 130px;
  }
}
.l-header_right {
  display: flex;
  pointer-events: all;
}
.l-header_contact {
  width: 100px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #464740;
  text-decoration: none;
  font-size: 0.75rem;
  font-family: "Ubuntu", serif;
  color: #fff;
  font-weight: 300;
}
@media (max-width: 767px ) {
  .l-header_contact {
    width: 60px;
    font-size: 0.625rem;
    gap: 0.25rem;
  }
  .l-header_contact img {
    width: 16px;
  }
}
.l-header_menu {
  width: 100px;
  aspect-ratio: 1/1;
  background: #dbdfca;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 767px ) {
  .l-header_menu {
    width: 60px;
  }
}
.l-header_menu_wrap {
  width: 28px;
  height: 22px;
  position: relative;
}
@media (max-width: 767px ) {
  .l-header_menu_wrap {
    width: 16px;
    height: 14px;
  }
}
.l-header_menu_wrap span {
  width: 100%;
  border-bottom: 1px solid #151515;
  position: absolute;
  left: 0;
  transition: 0.2s;
}
.l-header_menu_wrap span:nth-of-type(1) {
  top: 0;
}
.l-header_menu_wrap span:nth-of-type(2) {
  top: calc(50% - 0.5px);
}
.l-header_menu_wrap span:nth-of-type(3) {
  bottom: 0;
}
.l-header_menu.is-open .l-header_menu_wrap span:nth-of-type(1) {
  top: 10px;
  rotate: 30deg;
}
@media (max-width: 767px ) {
  .l-header_menu.is-open .l-header_menu_wrap span:nth-of-type(1) {
    top: 6px;
  }
}
.l-header_menu.is-open .l-header_menu_wrap span:nth-of-type(2) {
  opacity: 0;
  rotate: 180deg;
}
.l-header_menu.is-open .l-header_menu_wrap span:nth-of-type(3) {
  bottom: 10px;
  rotate: -30deg;
}
@media (max-width: 767px ) {
  .l-header_menu.is-open .l-header_menu_wrap span:nth-of-type(3) {
    bottom: 7px;
  }
}
.l-header_body {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: all;
  display: none;
}
@media (max-width: 767px ) {
  .l-header_body {
    padding-top: 80px;
    overflow-y: auto;
  }
}
.l-header_body_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px ) {
  .l-header_body_wrap {
    align-items: flex-start;
  }
}
.l-header_body_main {
  display: flex;
  gap: 3.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px ) {
  .l-header_body_main {
    gap: 1rem;
    flex-direction: column;
  }
}
.l-header_body_main_item_ttl {
  font-size: 1.25rem;
  padding-left: 1rem;
  border-left: 5px solid #d76432;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media (max-width: 767px ) {
  .l-header_body_main_item_ttl {
    font-size: 1rem;
    line-height: 1;
  }
}
.l-header_body_main_item_list {
  list-style: none;
  padding: 0;
}
.l-header_body_main_item_list_link {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.5rem;
}
@media (max-width: 767px ) {
  .l-header_body_main_item_list_link {
    font-size: 0.875rem;
  }
}
.l-header_body_main_item_list_link + .l-header_body_main_item_list_link {
  margin-top: 1em;
}
.l-header_body_main_item_list_link a {
  text-decoration: none;
  color: #151515;
  transition: 0.2s;
}
.l-header_body_main_item_list_link::before {
  content: "";
  width: 1rem;
  border-bottom: 1px solid #151515;
  transition: 0.2s;
}
.l-header_body_main_item_list_link:hover a {
  color: #d76432;
}
.l-header_body_main_item_list_link:hover::before {
  border-color: #d76432;
}
.l-header_body_sub {
  list-style: none;
  display: flex;
  gap: 2em;
  padding: 0;
}
@media (max-width: 767px ) {
  .l-header_body_sub {
    flex-wrap: wrap;
    gap: 1em;
  }
}
.l-header_body_sub a {
  color: #151515;
  text-decoration: none;
  transition: 0.2s;
}
@media (max-width: 767px ) {
  .l-header_body_sub a {
    font-size: 0.875rem;
  }
}
.l-header_body_sub a:hover {
  color: #d76432;
}

.l-footer_main {
  padding: 3rem 1.25rem;
  background: #464740;
}
@media (max-width: 767px ) {
  .l-footer_main {
    padding: 1.5rem 1rem;
  }
}
.l-footer_main_wrap {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px ) {
  .l-footer_main_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.l-footer_body {
  color: #fff;
}
@media (max-width: 767px ) {
  .l-footer_body {
    width: 100%;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #fff;
  }
}
.l-footer_body_logo {
  margin-bottom: 1.25rem;
  display: inline-block;
}
@media (max-width: 767px ) {
  .l-footer_body_logo {
    width: 90px;
    margin-bottom: 1rem;
  }
}
.l-footer_body_txt {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.l-footer_body_txt a {
  color: #fff;
}
@media (max-width: 767px ) {
  .l-footer_body_txt {
    font-size: 0.875rem;
  }
}
.l-footer_body_mail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin-top: 0.5rem;
}
.l-footer_list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px ) {
  .l-footer_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}
.l-footer_list_item a {
  color: #fff;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
  position: relative;
}
.l-footer_list_item a:hover {
  text-decoration: underline;
}
.l-footer_list_item a.is-other::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/ico_other_w.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 0.5em);
  right: calc(-1em - 0.25rem);
}
.l-footer_list_item + .l-footer_list_item {
  margin-top: 0.875rem;
}
@media (max-width: 767px ) {
  .l-footer_list_item + .l-footer_list_item {
    margin-top: 0;
  }
}
.l-footer_copy {
  text-align: center;
  background: #151515;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.5rem;
}
@media (max-width: 767px ) {
  .l-footer.is-thanks {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
  }
}
.l-footer.is-thanks.is-brizo {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #464740;
  padding: 1.25rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  width: 100%;
  max-width: 300px;
  position: relative;
  outline: none;
  border: none;
  cursor: pointer;
}
.c-btn::before {
  content: "";
  width: 4px;
  height: 100%;
  background: #d76432;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.2s;
}
.c-btn:hover::before {
  width: 10px;
}
.c-btn.size-s {
  max-width: 200px;
  font-size: 0.875rem;
}
@media (max-width: 767px ) {
  .c-btn.size-s {
    max-width: 300px;
  }
}
.c-btn.is-white {
  background: #fff;
  color: #151515;
}

.c-txtbtn {
  color: #151515;
  font-weight: 400;
  text-decoration: none;
  padding-right: 2rem;
  padding-bottom: 0.25rem;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #151515;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.c-txtbtn::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background: url(../img/arrow_right.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0.25rem;
  transition: 0.2s;
}
.c-txtbtn:hover::after {
  translate: 0.25em 0;
}
.c-txtbtn.is-back {
  padding-right: 0.5rem;
  padding-left: 2rem;
  background: none;
}
.c-txtbtn.is-back::after {
  rotate: 180deg;
  right: initial;
  left: 0.25rem;
}
.c-txtbtn.is-back:hover::after {
  translate: -0.25em 0;
}
.c-txtbtn.is-white {
  color: #fff;
  border-color: #fff;
}
.c-txtbtn.is-white::after {
  background: url(../img/arrow_right_w.svg) no-repeat center;
  background-size: contain;
}
.c-txtbtn[target=_blank]::after {
  width: 1em;
  height: 1em;
  background: url(../img/ico_other.svg) no-repeat center;
  background-size: contain;
}
.c-txtbtn[target=_blank]:hover::after {
  translate: 0.125em -0.125rem;
}

.c-conts_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px ) {
  .c-conts_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.c-conts_ttl span {
  color: #d76432;
  font-size: 0.75rem;
  font-family: "Ubuntu", serif;
  font-weight: 300;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.c-conts_ttl span::after {
  content: "";
  width: 150px;
  border-bottom: 1px solid #d76432;
  background: #fff;
  position: absolute;
  left: calc(50% - 75px);
  bottom: -25%;
}
.c-conts_head {
  padding-top: 140px;
  padding-bottom: 50px;
}
@media (max-width: 767px ) {
  .c-conts_head {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
}
.c-conts_head_ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 0;
  font-weight: bold;
}
@media (max-width: 767px ) {
  .c-conts_head_ttl {
    font-size: 1.5rem;
  }
}
.c-conts_head_ttl span {
  color: #d76432;
  font-size: 0.75rem;
  font-family: "Ubuntu", serif;
  font-weight: 300;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.c-conts_head_ttl span::after {
  content: "";
  width: 150px;
  border-bottom: 1px solid #d76432;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -25%;
}
.c-conts_head_ttl span.is-miele {
  color: #841b20;
}
.c-conts_head_ttl span.is-miele::after {
  border-color: #841b20;
}

.c-contact {
  background: #959a83;
  padding: 3.75rem 1rem;
  text-align: center;
}
@media (max-width: 767px ) {
  .c-contact {
    padding: 2.5rem 1rem;
  }
}
.c-contact_ttl {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Ubuntu", serif;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 767px ) {
  .c-contact_ttl {
    font-size: 1.25rem;
  }
}
.c-contact_txt {
  margin-bottom: 1.5rem;
  color: #fff;
}
.c-contact_txt a {
  color: #fff;
}
.c-contact_links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 767px ) {
  .c-contact_links {
    gap: 1.125rem;
    flex-direction: column;
  }
}

.c-value {
  background: #f1f2ef;
  padding: 2.25rem 0 3rem;
}
@media (max-width: 767px ) {
  .c-value {
    padding: 1.5rem 0;
  }
}
.c-value_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px ) {
  .c-value_wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.c-value_ttl {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px ) {
  .c-value_ttl {
    font-size: 1.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-value_ttl span {
  font-size: 2.5rem;
  font-family: "Ubuntu", serif;
  color: #dbdfca;
  text-align: center;
  line-height: 1;
  position: relative;
}
@media (max-width: 767px ) {
  .c-value_ttl span {
    font-size: 2rem;
  }
}
.c-value_ttl span::after {
  content: "";
  width: 100%;
  border-bottom: 1px solid #dbdfca;
  position: absolute;
  left: 0;
  bottom: 5px;
}
.c-value_body {
  width: 68%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px ) {
  .c-value_body {
    width: 100%;
    gap: 1.5rem;
  }
}
.c-value_body_item {
  padding: 0;
  width: 45%;
}
@media (max-width: 767px ) {
  .c-value_body_item {
    width: 100%;
  }
}
.c-value_body_item_ttl {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.c-value_body_item_txt p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.c-value_body_item_txt .c-txtbtn {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}

.c-accordion_ttl {
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px ) {
  .c-accordion_ttl {
    font-size: 1.125rem;
  }
}
.c-accordion_ttl::after {
  content: "";
  width: 24px;
  height: 24px;
}
.c-accordion_body {
  display: none;
  padding: 3.75rem 0;
}
@media (max-width: 767px ) {
  .c-accordion_body {
    padding: 1.5rem 0;
  }
}
.c-accordion.is-dark .c-accordion_ttl {
  background: #464740;
  color: #fff;
}
.c-accordion.is-dark .c-accordion_ttl::after {
  background: url(../img/ico_add.svg) no-repeat;
  background-size: contain;
  transition: 0.2s;
}
.c-accordion.is-dark .c-accordion_ttl.is-active::after {
  background: url(../img/ico_remove.svg) no-repeat;
  background-size: contain;
  rotate: 180deg;
}
.c-accordion.is-high .c-accordion_ttl {
  background: #f1f2ef;
  color: #151515;
}
.c-accordion.is-high .c-accordion_ttl::after {
  background: url(../img/ico_add_bk.svg) no-repeat;
  background-size: contain;
  transition: 0.2s;
}
.c-accordion.is-high .c-accordion_ttl.is-active::after {
  background: url(../img/ico_remove_bk.svg) no-repeat;
  background-size: contain;
  rotate: 180deg;
}
.c-accordion.is-light .c-accordion_ttl {
  background: #dbdfca;
  color: #151515;
}
.c-accordion.is-light .c-accordion_ttl::after {
  background: url(../img/ico_add_bk.svg) no-repeat;
  background-size: contain;
  transition: 0.2s;
}
.c-accordion.is-light .c-accordion_ttl.is-active::after {
  background: url(../img/ico_remove_bk.svg) no-repeat;
  background-size: contain;
  rotate: 180deg;
}
.c-accordion.is-miele .c-accordion_ttl {
  background: #841b20;
  color: #fff;
}
.c-accordion.is-miele .c-accordion_ttl::after {
  background: url(../img/ico_add.svg) no-repeat;
  background-size: contain;
  transition: 0.2s;
}
.c-accordion.is-miele .c-accordion_ttl.is-active::after {
  background: url(../img/ico_remove.svg) no-repeat;
  background-size: contain;
  rotate: 180deg;
}

.c-flow {
  background: #dbdfca;
}
.c-flow_ttl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .c-flow_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.c-flow_ttl span {
  font-size: 2.5rem;
  font-family: "Ubuntu", serif;
  color: #bbc2a1;
  text-align: center;
  line-height: 1;
  position: relative;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media (max-width: 767px ) {
  .c-flow_ttl span {
    font-size: 2rem;
  }
}
.c-flow_ttl span::after {
  content: "";
  width: 100%;
  border-bottom: 1px solid #bbc2a1;
  position: absolute;
  left: 0;
  bottom: 5px;
}
@media (max-width: 767px ) {
  .c-flow_ttl span::after {
    bottom: 4px;
  }
}
.c-flow_list {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 767px ) {
  .c-flow_list {
    gap: 3rem;
    flex-direction: column;
  }
}
.c-flow_list_item {
  width: calc(25% - 2.25rem);
  position: relative;
}
@media (max-width: 767px ) {
  .c-flow_list_item {
    width: 100%;
  }
}
.c-flow_list_item::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/arrow_right.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: -2.5rem;
  top: calc(68px - 1rem);
}
@media (max-width: 767px ) {
  .c-flow_list_item::before {
    left: calc(50% - 1rem);
    top: -2.5rem;
    rotate: 90deg;
  }
}
.c-flow_list_item:first-of-type:before {
  display: none;
}
.c-flow_list_item_img {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px ) {
  .c-flow_list_item_img {
    margin-bottom: 0.75rem;
  }
}
.c-flow_list_item_ttl {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px ) {
  .c-flow_list_item_ttl {
    margin-bottom: 0.5rem;
  }
}
.c-flow_list_item_txt {
  font-size: 0.875rem;
  line-height: 1.7;
}
.c-flow_list_item_note {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}
.c-flow.is-dark {
  background: #464740;
  color: #fff;
}
.c-flow.is-dark .c-flow_list_item::before {
  background: url(../img/arrow_right_w.svg) no-repeat center;
  background-size: contain;
}

.c-case_ttl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .c-case_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.c-case_ttl span {
  font-size: 2.5rem;
  font-family: "Ubuntu", serif;
  color: #bbc2a1;
  text-align: center;
  line-height: 1;
  position: relative;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media (max-width: 767px ) {
  .c-case_ttl span {
    font-size: 2rem;
  }
}
.c-case_ttl span::after {
  content: "";
  width: 100%;
  border-bottom: 1px solid #bbc2a1;
  position: absolute;
  left: 0;
  bottom: 5px;
}
@media (max-width: 767px ) {
  .c-case_ttl span::after {
    bottom: 4px;
  }
}
.c-case_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 767px ) {
  .c-case_list {
    gap: 1.25rem;
  }
}
.c-case_list_item {
  width: calc(33.3333333333% - 2rem);
  aspect-ratio: 338/255;
  position: relative;
  background-color: #464740;
}
@media (max-width: 767px ) {
  .c-case_list_item {
    width: calc(50% - 0.625rem);
  }
}
.c-case_list_item:has(.is-renovation) {
  background-color: #dbdfca;
}
.c-case_list_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.c-case_list_item_cat {
  padding: 0.25rem 0.5rem;
  background: #dbdfca;
  font-size: 0.75rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.c-case_list_item_cat.is-renovation {
  background: #464740;
  color: #fff;
}
.c-case_btn {
  margin-top: 5rem;
}
@media (max-width: 767px ) {
  .c-case_btn {
    margin-top: 2rem;
  }
}
.c-case_btn .c-btn {
  margin-left: auto;
  margin-right: auto;
}

.c-overlay {
  width: 100%;
  height: 100svh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 101;
  display: none;
}
.c-overlay_wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-overlay_item {
  width: 50%;
  height: 80%;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px ) {
  .c-overlay_item {
    width: 90%;
    height: 50%;
  }
}
.c-overlay_item_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-overlay_item_close {
  position: absolute;
  width: 46px;
  right: -23px;
  top: -23px;
  cursor: pointer;
}
.c-overlay_item_list {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  margin-bottom: 0;
}
.c-overlay_item_list_img {
  width: 100%;
  aspect-ratio: 4/3;
}
.c-overlay_item_list_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.c-overlay .slide-arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
  top: calc(50% - 16px);
}
.c-overlay .slide-arrow.prev-arrow {
  left: calc(-5% - 16px);
  rotate: 180deg;
}
.c-overlay .slide-arrow.next-arrow {
  right: calc(-5% - 16px);
}

.c-datalist {
  display: flex;
  gap: 0.5rem;
}
.c-datalist_ttl {
  padding: 1rem 1rem;
  border-bottom: 1px solid #d76432;
  width: 20%;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px ) {
  .c-datalist_ttl {
    width: 30%;
    padding: 1rem 0;
  }
}
.c-datalist_body {
  padding: 1rem 1rem;
  border-bottom: 1px solid #151515;
  flex: 1;
}
.c-datalist_body a {
  color: #151515;
}

.c-news_head {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Ubuntu", serif;
  margin-bottom: 0.5rem;
}
.c-news_head_cat {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  background: #464740;
  color: #fff;
  line-height: 1;
  display: inline-block;
}
.c-news_pageTtl {
  font-size: 1.5rem;
  margin-bottom: 0;
}
@media (max-width: 767px ) {
  .c-news_pageTtl {
    font-size: 1.25rem;
  }
}
.c-news_article {
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.c-news_article_bottom .c-btn {
  margin-left: auto;
  margin-right: auto;
}
.c-news_list {
  list-style: none;
  width: 100%;
  margin-left: auto;
  padding: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px ) {
  .c-news_list {
    width: 100%;
  }
}
.c-news_list_item a {
  text-decoration: none;
  color: #151515;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 2.5rem 1.25rem 0;
  border-bottom: 1px solid #151515;
  position: relative;
}
.c-news_list_item a::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.5em);
  transition: 0.2s;
}
.c-news_list_item a:hover::after {
  translate: 0.25em 0;
}
.c-news_list_item_head {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Ubuntu", serif;
  margin-bottom: 0.5rem;
}
.c-news_list_item_head_cat {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  background: #464740;
  color: #fff;
  line-height: 1;
  display: inline-block;
}

.c-pager {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}
@media (max-width: 767px ) {
  .c-pager {
    margin-top: 1.5rem;
  }
}
.c-pager_item {
  padding: 0.25rem 0.5rem;
  color: #151515;
}
.c-pager_item img {
  width: 8px;
}
.c-pager_item a {
  color: #151515;
}
.c-pager_item.is-current {
  background: #464740;
  color: #fff;
}
.c-pager_item.is-prev {
  rotate: 180deg;
}

.c-brizodelta {
  display: flex;
}
@media (max-width: 767px ) {
  .c-brizodelta {
    flex-direction: column;
    gap: 1rem;
  }
}
.c-brizodelta_item {
  width: 52.72%;
  flex: none;
  padding: 2.5rem 3rem;
}
@media (max-width: 767px ) {
  .c-brizodelta_item {
    width: 100%;
  }
}
.c-brizodelta_item:nth-of-type(2) {
  margin-left: -5.44%;
}
@media (max-width: 767px ) {
  .c-brizodelta_item:nth-of-type(2) {
    margin-left: 0;
  }
}
.c-brizodelta_item.is-delta {
  background: url(../img/brizodelta/bg_delta.png) no-repeat right;
  background-size: 100% 100%;
}
.c-brizodelta_item.is-delta .c-brizodelta_item_logo {
  width: 140px;
}
.c-brizodelta_item.is-brizo {
  background: url(../img/brizodelta/bg_brizo.png) no-repeat left;
  background-size: 100% 100%;
  text-align: right;
}
.c-brizodelta_item.is-brizo .c-brizodelta_item_logo {
  width: 160px;
  margin-left: auto;
  margin-bottom: 0.5rem;
}
.c-brizodelta_item_txt {
  margin-bottom: 1.5rem;
}

.p-top_opening {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #464740;
  flex-direction: column;
  gap: 1.5rem;
  transition: 1s ease-in;
}
@media (max-width: 767px ) {
  .p-top_opening {
    height: 100svh;
  }
}
.p-top_opening_logo {
  opacity: 0;
}
.p-top_opening_txt {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  opacity: 0;
}
@media (max-width: 767px ) {
  .p-top_opening_txt {
    font-size: 1.125rem;
  }
}
.p-top_opening.is-fadeOut {
  opacity: 0;
  filter: blur(20px);
  pointer-events: none;
}
.p-top_opening.is-visited {
  display: none;
}
.p-top_hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px ) {
  .p-top_hero {
    height: auto;
    padding: 110px 1rem 60px;
    margin-bottom: 73px;
  }
}
.p-top_hero_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}
.p-top_hero_img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(32, 32, 29, 0.6);
  pointer-events: none;
  z-index: 0;
}
.p-top_hero_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.05);
  transition: opacity 1.5s ease, filter 1.5s ease, transform 5s ease;
  z-index: 0;
}
.p-top_hero_img img.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  z-index: 1;
  transition: opacity 1s ease, filter 1.5s ease, transform 5s ease;
  z-index: 0;
}
.p-top_hero_body {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.p-top_hero_ttl {
  color: #fff;
  display: inline-block;
  font-weight: bold;
  font-size: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px ) {
  .p-top_hero_ttl {
    font-size: 1.25rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 2;
  }
}
.p-top_hero_txt {
  color: #fff;
  font-size: 1.125rem;
  line-height: 2;
}
@media (max-width: 767px ) {
  .p-top_hero_txt {
    font-size: 0.875rem;
  }
}
.p-top_hero_pickup {
  position: absolute;
  right: 0;
  bottom: 5%;
  padding: 0.875rem 3rem 0.875rem 1.25rem;
  background: rgba(219, 233, 202, 0.47);
  text-decoration: none;
  min-width: 20%;
}
.p-top_hero_pickup.is-brizodelta, .p-top_hero_pickup.is-miele {
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.p-top_hero_pickup.is-brizodelta .p-top_hero_pickup_ttl::before, .p-top_hero_pickup.is-miele .p-top_hero_pickup_ttl::before {
  background: #841b20;
}
@media (max-width: 767px ) {
  .p-top_hero_pickup.is-brizodelta, .p-top_hero_pickup.is-miele {
    background: #000;
  }
}
@media (max-width: 767px ) {
  .p-top_hero_pickup {
    width: 100%;
    bottom: -75px;
    background: #464740;
  }
}
.p-top_hero_pickup::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 1rem;
  top: calc(50% - 7px);
  transition: 0.2s;
}
@media (max-width: 767px ) {
  .p-top_hero_pickup::after {
    background: url(../img/arrow_right_w.svg) no-repeat;
    background-size: contain;
  }
}
.p-top_hero_pickup:hover::after {
  translate: 5px 0;
}
.p-top_hero_pickup_ttl {
  color: #151515;
  font-size: 1.25rem;
  font-family: "Ubuntu", serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media (max-width: 767px ) {
  .p-top_hero_pickup_ttl {
    font-size: 1rem;
    color: #fff;
  }
}
.p-top_hero_pickup_ttl::before {
  content: "";
  width: 5px;
  height: 1em;
  background-color: #d76432;
  position: relative;
}
.p-top_hero_pickup_txt {
  font-size: 1rem;
  font-weight: 500;
  color: #151515;
}
@media (max-width: 767px ) {
  .p-top_hero_pickup_txt {
    font-size: 0.875rem;
    color: #fff;
  }
}
.p-top_about {
  padding-top: 1.25rem;
  padding-bottom: 5.625rem;
}
@media (max-width: 767px ) {
  .p-top_about {
    display: flex;
    flex-direction: column;
    padding-top: 2.25rem;
    padding-bottom: 0;
  }
}
.p-top_about_img {
  width: 100%;
  margin-bottom: 3rem;
}
@media (max-width: 767px ) {
  .p-top_about_img {
    order: 2;
    margin-bottom: 2rem;
  }
}
.p-top_about_ttl {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px ) {
  .p-top_about_ttl {
    order: 1;
    margin-bottom: 2.25rem;
  }
}
.p-top_about_ttl img {
  margin-left: auto;
  margin-right: auto;
}
.p-top_about_txt {
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 0;
}
@media (max-width: 767px ) {
  .p-top_about_txt {
    order: 3;
    text-align: left;
    padding: 0 1rem;
  }
}
.p-top_about_txt + .p-top_about_txt {
  margin-top: 1em;
}
.p-top_about_btns {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 670px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px ) {
  .p-top_about_btns {
    order: 4;
    flex-direction: column;
    gap: 1.125rem;
    margin-top: 2.25rem;
  }
}
.p-top_service {
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media (max-width: 767px ) {
  .p-top_service {
    gap: 2rem;
  }
}
.p-top_service_bnr {
  width: 60%;
  padding: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (max-width: 767px ) {
  .p-top_service_bnr {
    width: 80%;
    padding: 1rem;
  }
}
.p-top_service_bnr.is-kitchen {
  background: #959a83 url(../img/kitchen_btn_bg.png) no-repeat right;
  background-size: auto 100%;
  padding-right: 200px;
}
@media (max-width: 767px ) {
  .p-top_service_bnr.is-kitchen {
    padding-right: 28%;
  }
}
.p-top_service_bnr.is-renovation {
  margin-left: auto;
  background: #464740 url(../img/renovation_btn_bg.png) no-repeat left;
  background-size: auto 100%;
  padding-left: 200px;
}
@media (max-width: 767px ) {
  .p-top_service_bnr.is-renovation {
    padding-left: 28%;
  }
}
.p-top_service_bnr_body {
  text-align: center;
}
.p-top_service_bnr_body_ttl {
  font-size: 2.25rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px ) {
  .p-top_service_bnr_body_ttl {
    font-size: 1rem;
  }
}
.p-top_service_bnr_body_ttl span {
  font-size: 0.75rem;
  font-family: "Ubuntu", serif;
  font-weight: 300;
  position: relative;
  display: inline-block;
}
@media (max-width: 767px ) {
  .p-top_service_bnr_body_ttl span {
    font-size: 0.625rem;
    margin-bottom: 0.25rem;
  }
}
.p-top_service_bnr_body_ttl span::after {
  content: "";
  width: 120%;
  border-bottom: 1px solid #fff;
  background: #fff;
  position: absolute;
  left: -10%;
  bottom: -25%;
}
@media (max-width: 767px ) {
  .p-top_service_bnr_body_ttl span::after {
    bottom: -10%;
  }
}
.p-top_service_bnr_body_btn {
  display: inline-block;
  color: #fff;
  font-size: 1.125rem;
  font-family: "Ubuntu", serif;
  padding: 0 1.5rem 0.5rem 1rem;
  border-bottom: 1px solid #fff;
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
@media (max-width: 767px ) {
  .p-top_service_bnr_body_btn {
    font-size: 0.875rem;
  }
}
.p-top_service_bnr_body_btn::after {
  content: "";
  width: 1rem;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: right;
  rotate: 35deg;
}
.p-top_imported {
  padding-top: 5rem;
  padding-bottom: 5.625rem;
  text-align: center;
}
@media (max-width: 767px ) {
  .p-top_imported {
    padding-top: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.p-top_imported_txt {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px ) {
  .p-top_imported_txt {
    font-size: 0.875rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
}
.p-top_imported_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
@media (max-width: 767px ) {
  .p-top_imported_links {
    margin-bottom: 1.5rem;
  }
}
.p-top_imported_links_item:nth-of-type(1) {
  width: 30.3%;
}
.p-top_imported_links_item:nth-of-type(2) {
  width: 66.666666667%;
}
.p-top_imported_btn .c-btn {
  margin-left: auto;
  margin-right: auto;
}
.p-top_news {
  background-color: #464740;
  padding-top: 5.625rem;
  padding-bottom: 5.625rem;
}
@media (max-width: 767px ) {
  .p-top_news {
    padding: 2.5rem 0;
  }
}
.p-top_news_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.p-top_news_head_ttl {
  width: 28%;
  text-align: center;
  flex: none;
  font-size: 2.5rem;
  font-family: "Ubuntu", serif;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 767px ) {
  .p-top_news_head_ttl {
    font-size: 1.25rem;
    width: 100%;
  }
}
.p-top_news_head_link {
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  padding-right: 1rem;
}
@media (max-width: 767px ) {
  .p-top_news_head_link {
    display: none;
  }
}
.p-top_news_head_link::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background: url(../img/arrow_right_w.svg) no-repeat;
  background-size: contain;
  transition: 0.2s;
}
.p-top_news_head_link:hover::after {
  translate: 0.25em 0;
}
.p-top_news_list {
  list-style: none;
  width: 72%;
  margin-left: auto;
  padding: 0;
}
@media (max-width: 767px ) {
  .p-top_news_list {
    width: 100%;
  }
}
.p-top_news_list_item a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 2.5rem 1.25rem 0;
  border-bottom: 1px solid #fff;
  position: relative;
}
.p-top_news_list_item a::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/arrow_right_w.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.5em);
  transition: 0.2s;
}
.p-top_news_list_item a:hover::after {
  translate: 0.25em 0;
}
.p-top_news_list_item_head {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Ubuntu", serif;
  margin-bottom: 0.5rem;
}
.p-top_news_list_item_head_cat {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  background: #fff;
  color: #464740;
  line-height: 1;
  display: inline-block;
}
.p-top_news_spbtn {
  display: none;
}
@media (max-width: 767px ) {
  .p-top_news_spbtn {
    display: block;
    text-align: center;
    margin-top: 2.5rem;
  }
}
.p-top_access {
  padding-top: 3.75rem;
  padding-bottom: 2.75rem;
}
@media (max-width: 767px ) {
  .p-top_access {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.p-top_access_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #151515;
  margin-bottom: 3rem;
}
@media (max-width: 767px ) {
  .p-top_access_head {
    margin-bottom: 1.25rem;
  }
}
.p-top_access_head_ttl {
  width: 28%;
  text-align: center;
  flex: none;
  font-size: 2.5rem;
  font-family: "Ubuntu", serif;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 767px ) {
  .p-top_access_head_ttl {
    width: 100%;
    font-size: 1.25rem;
  }
}
.p-top_access_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px ) {
  .p-top_access_wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 767px ) {
  .p-top_access_body {
    order: 2;
  }
}
.p-top_access_body_item + .p-top_access_body_item {
  margin-top: 1.25rem;
}
.p-top_access_body_item:not(.is-secondary) + .is-secondary {
  margin-top: 2.5rem;
}
.p-top_access_body_item_ttl {
  font-size: 1rem;
  padding-left: 1rem;
  border-left: 5px solid #d76432;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.p-top_access_body_item_txt {
  font-size: 1rem;
  padding-left: 1.5em;
}
@media (max-width: 767px ) {
  .p-top_access_body_item_txt {
    font-size: 0.875rem;
  }
}
.p-top_access_body_item.is-secondary .p-top_access_body_item_ttl {
  border-color: #151515;
}
.p-top_access_map {
  width: 55.45%;
  flex: none;
}
@media (max-width: 767px ) {
  .p-top_access_map {
    width: 100%;
    aspect-ratio: 350/180;
    order: 1;
  }
  .p-top_access_map iframe {
    width: 100%;
    height: 100%;
  }
}

.p-corporate_message {
  background: #f1f2ef;
  padding: 3.75rem 0;
}
@media (max-width: 767px ) {
  .p-corporate_message {
    padding: 1.5rem 0;
  }
}
.p-corporate_message_wrap {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  justify-content: space-between;
}
.p-corporate_message_body p {
  line-height: 2;
}
.p-corporate_message_body p + p {
  margin-top: 1em;
}
.p-corporate_message_prof {
  width: 200px;
  flex: none;
}
.p-corporate_message_prof_img {
  margin-bottom: 0.5rem;
}
.p-corporate_message_prof_name {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
}
.p-corporate_message_prof_name span {
  font-weight: bold;
  font-size: 1rem;
}
.p-corporate_about {
  background: #f1f2ef;
  padding: 3.75rem 0;
}

.p-staff_wrap {
  background: #f1f2ef;
  padding: 3.75rem 0;
}
@media (max-width: 767px ) {
  .p-staff_wrap {
    padding: 1.5rem 0;
  }
}
.p-staff_list {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px ) {
  .p-staff_list {
    flex-direction: column;
  }
}
.p-staff_list_item {
  width: calc(33.3333333333% - 1.3333333333rem);
}
@media (max-width: 767px ) {
  .p-staff_list_item {
    width: 100%;
  }
}
.p-staff_list_item_img {
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
.p-staff_list_item_name {
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Ubuntu", serif;
  margin-bottom: 1rem;
}
@media (max-width: 767px ) {
  .p-staff_list_item_name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}

.p-import_body {
  background: #f1f2ef;
  padding: 3.75rem 0;
}
@media (max-width: 767px ) {
  .p-import_body {
    padding: 1.5rem 0;
  }
}
.p-import_txt {
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .p-import_txt {
    margin-bottom: 2rem;
  }
}
.p-import_ttl {
  font-size: 1.5rem;
  padding-left: 1rem;
  border-left: 5px solid #d76432;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media (max-width: 767px ) {
  .p-import_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.p-import_list {
  display: flex;
  gap: 39px;
  flex-wrap: wrap;
}
@media (max-width: 767px ) {
  .p-import_list {
    gap: 1.25rem;
  }
}
.p-import_list_item {
  width: calc(25% - 29.25px);
}
@media (max-width: 767px ) {
  .p-import_list_item {
    width: calc(33.3333333333% - 0.8333333333rem);
  }
}
.p-import_list + .p-import_ttl {
  margin-top: 3.75rem;
}

.p-showroom_body {
  background: #f1f2ef;
  padding: 3.75rem 0;
}
@media (max-width: 767px ) {
  .p-showroom_body {
    padding: 1.5rem 0;
  }
}
.p-showroom_txt {
  margin-bottom: 1rem;
}
.p-showroom_txt.is-note {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .p-showroom_txt.is-note {
    margin-bottom: 1.5rem;
  }
}

.p-subpage_body {
  background: #f1f2ef;
  padding: 3.75rem 0;
}
@media (max-width: 767px ) {
  .p-subpage_body {
    padding: 1.5rem 0;
  }
}
.p-subpage_txt {
  margin-bottom: 3.75rem;
}
.p-subpage_txt a {
  color: #151515;
}
@media (max-width: 767px ) {
  .p-subpage_txt {
    margin-bottom: 2rem;
  }
}
.p-subpage_secondary {
  font-size: 1.25rem;
  padding-left: 1rem;
  border-left: 5px solid #d76432;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media (max-width: 767px ) {
  .p-subpage_secondary {
    font-size: 1.125rem;
  }
}
.p-subpage_box + .p-subpage_secondary {
  margin-top: 3.75rem;
}
@media (max-width: 767px ) {
  .p-subpage_box + .p-subpage_secondary {
    margin-top: 2rem;
  }
}
.p-subpage_box p + * {
  margin-top: 1rem;
}
.p-subpage_box ul {
  list-style-type: none;
  padding: 0;
}
.p-subpage_box ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.p-subpage_sign {
  text-align: right;
  margin-top: 3.75rem;
}
.p-subpage_sign p + p {
  margin-top: 1rem;
}
.p-subpage_sign p a {
  color: #151515;
}
.p-subpage_btn {
  margin-top: 1rem;
}
.p-subpage_btn + .p-subpage_txt {
  margin-top: 2rem;
}

.p-miele_hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px ) {
  .p-miele_hero {
    height: auto;
    padding-top: 6.25rem;
    padding-bottom: 2.5rem;
    align-items: flex-start;
    margin-bottom: 75px;
  }
}
.p-miele_hero_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}
.p-miele_hero_img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(32, 32, 29, 0.6);
  pointer-events: none;
  z-index: 0;
}
.p-miele_hero_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.p-miele_hero_body {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  margin-bottom: 5%;
}
@media (max-width: 767px ) {
  .p-miele_hero_body {
    flex-direction: column;
    padding: 0 1rem;
  }
}
.p-miele_hero_body_ttl {
  font-size: 2.5rem;
  line-height: 1.75;
  width: 34.545454%;
}
@media (max-width: 767px ) {
  .p-miele_hero_body_ttl {
    font-size: 1.25rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.p-miele_hero_body_txt {
  font-size: 0.875rem;
  line-height: 2;
  padding-left: 7%;
  border-left: 1px solid #fff;
}
@media (max-width: 767px ) {
  .p-miele_hero_body_txt {
    padding-left: 0;
    padding-top: 0.5rem;
    border-left: none;
    border-top: 1px solid #fff;
  }
}
.p-miele_hero_list {
  display: flex;
  gap: 1.875rem;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 767px ) {
  .p-miele_hero_list {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1rem;
  }
}
.p-miele_hero_list_item {
  background-color: #fff;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #841b20;
  font-weight: bold;
  position: relative;
  width: calc(25% - 1.40625rem);
}
@media (max-width: 767px ) {
  .p-miele_hero_list_item {
    width: 100%;
    padding: 1rem;
  }
}
.p-miele_hero_list_item::before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.2s;
  background: #841b20;
}
.p-miele_hero_list_item:hover::before {
  width: 10px;
}
.p-miele_about_ttl {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media (max-width: 767px ) {
  .p-miele_about_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5em;
  }
}
.p-miele_about_ttl img {
  width: 172px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px ) {
  .p-miele_about_ttl img {
    width: 120px;
    margin-bottom: 0.75rem;
  }
}
.p-miele_about_wrap {
  display: flex;
  gap: 3.75rem;
}
@media (max-width: 767px ) {
  .p-miele_about_wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-miele_about_img {
  width: 37.6%;
}
@media (max-width: 767px ) {
  .p-miele_about_img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-miele_about_body {
  flex: 1;
}
.p-miele_about_body p {
  line-height: 2;
}
@media (max-width: 767px ) {
  .p-miele_about_body p {
    line-height: 1.7;
  }
}
.p-miele_about_body p + p {
  margin-top: 2em;
}
@media (max-width: 767px ) {
  .p-miele_about_body p + p {
    margin-top: 1.7em;
  }
}
.p-miele_life_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px ) {
  .p-miele_life_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.p-miele_life_ttl img {
  width: 137px;
}
@media (max-width: 767px ) {
  .p-miele_life_ttl img {
    width: 120px;
  }
}
.p-miele_life_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
}
@media (max-width: 767px ) {
  .p-miele_life_list {
    gap: 2.5rem;
    flex-direction: column;
  }
}
.p-miele_life_list_item {
  width: calc(33.3333333333% - 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px ) {
  .p-miele_life_list_item {
    width: 100%;
  }
}
.p-miele_life_list_item_img {
  margin-bottom: 0.75rem;
}
@media (max-width: 767px ) {
  .p-miele_life_list_item_img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-miele_life_list_item_ttl {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
@media (max-width: 767px ) {
  .p-miele_life_list_item_ttl {
    font-size: 1.125rem;
  }
}
.p-miele_life_list_item_txt {
  line-height: 1.5;
}
.p-miele_lineup_ttl {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 3rem;
}
@media (max-width: 767px ) {
  .p-miele_lineup_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
}
.p-miele_lineup_txt {
  text-align: center;
  line-height: 2;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .p-miele_lineup_txt {
    text-align: left;
    margin-bottom: 2rem;
  }
}
.p-miele_lineup_category {
  display: flex;
  gap: 5%;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .p-miele_lineup_category {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
.p-miele_lineup_category_item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  color: #151515;
}
@media (max-width: 767px ) {
  .p-miele_lineup_category_item {
    width: calc(50% - 0.625rem);
    font-size: 1.125rem;
    justify-content: center;
  }
}
.p-miele_lineup_category_item::after {
  content: "";
  width: 14px;
  height: 18px;
  background: url(../img/arrow_right.svg) no-repeat center;
  background-size: contain;
  rotate: 90deg;
}
@media (max-width: 767px ) {
  .p-miele_lineup_category_item::after {
    width: 12px;
    height: 16px;
  }
}
.p-miele_lineup_sec {
  margin-bottom: 5rem;
}
@media (max-width: 767px ) {
  .p-miele_lineup_sec {
    margin-bottom: 2.5rem;
  }
}
.p-miele_lineup_sec_ttl {
  font-size: 1.5rem;
  padding-left: 1rem;
  border-left: 5px solid #841b20;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media (max-width: 767px ) {
  .p-miele_lineup_sec_ttl {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.p-miele_lineup_sec_list {
  display: flex;
  gap: 2.5rem 2.25rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.p-miele_lineup_sec_list_item {
  width: calc(33.3333333333% - 1.5rem);
}
@media (max-width: 767px ) {
  .p-miele_lineup_sec_list_item {
    width: calc(50% - 0.625rem);
  }
}
.p-miele_lineup_sec_list_item_img {
  position: relative;
  width: 100%;
  aspect-ratio: 343/259;
  background-color: #f1f2ef;
  margin-bottom: 0.75rem;
}
.p-miele_lineup_sec_list_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-miele_lineup_sec_list_item_img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--subimg, none) no-repeat center, #f1f2ef;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  transition: 0.5s;
}
.p-miele_lineup_sec_list_item_img:hover::after {
  opacity: 1;
}
.p-miele_lineup_sec_list_item_img[style*="--subimg: none"]:hover::after {
  opacity: 0;
}
.p-miele_lineup_sec_list_item_label {
  padding: 0.25rem 0.75rem;
  background: #841b20;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 767px ) {
  .p-miele_lineup_sec_list_item_label {
    font-size: 0.75rem;
  }
}
.p-miele_lineup_sec_list_item_ttl {
  text-align: center;
  font-size: 1.25rem;
}
@media (max-width: 767px ) {
  .p-miele_lineup_sec_list_item_ttl {
    font-size: 0.875rem;
    text-align: left;
  }
}
.p-miele_lineup_bottom {
  text-align: center;
}
.p-miele_lineup_bottom a {
  color: #464740;
}
.p-miele_after_ttl {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 3rem;
}
@media (max-width: 767px ) {
  .p-miele_after_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.p-miele_after_wrap {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
@media (max-width: 767px ) {
  .p-miele_after_wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-miele_after_img {
  width: 37.45%;
}
@media (max-width: 767px ) {
  .p-miele_after_img {
    width: 50%;
  }
}
.p-miele_after_body {
  flex: 1;
}
.p-miele_after_body p {
  line-height: 2;
}
@media (max-width: 767px ) {
  .p-miele_after_body p {
    line-height: 1.7;
  }
}
.p-miele_after_body p + p {
  margin-top: 2em;
}
@media (max-width: 767px ) {
  .p-miele_after_body p + p {
    margin-top: 1.7em;
  }
}
.p-miele_ig_txt {
  text-align: center;
  line-height: 2;
  margin-bottom: 3rem;
}
@media (max-width: 767px ) {
  .p-miele_ig_txt {
    margin-bottom: 4rem;
    text-align: left;
  }
  .p-miele_ig_txt.is-bd {
    margin-bottom: 1rem;
  }
}
.p-miele_ig_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 767px ) {
  .p-miele_ig_wrap {
    gap: 1rem;
  }
}
.p-miele_ig_icon {
  width: 124px;
  flex: none;
  position: relative;
}
@media (max-width: 767px ) {
  .p-miele_ig_icon {
    width: 90px;
  }
}
.p-miele_ig_icon_txt {
  position: absolute;
  width: 192px;
  right: -120%;
  top: -33%;
  pointer-events: none;
}
@media (max-width: 767px ) {
  .p-miele_ig_icon_txt {
    right: -165%;
    top: -60%;
  }
}
.p-miele_ig_body {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  text-decoration: none;
  transition: 0.2s;
}
@media (max-width: 767px ) {
  .p-miele_ig_body {
    gap: 0.5rem;
  }
}
.p-miele_ig_body_icon {
  width: 55px;
}
@media (max-width: 767px ) {
  .p-miele_ig_body_icon {
    width: 48px;
  }
}
.p-miele_ig_body_txt {
  font-size: 1rem;
  font-weight: 500;
  color: #151515;
  text-decoration: none;
}
@media (max-width: 767px ) {
  .p-miele_ig_body_txt {
    font-size: 0.875rem;
  }
}
.p-miele_ig_body:hover {
  opacity: 0.7;
}
.p-miele_contact_ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px ) {
  .p-miele_contact_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.p-miele_contact_txt {
  text-align: center;
  line-height: 2;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px ) {
  .p-miele_contact_txt {
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
}
.p-miele_contact_list {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 767px ) {
  .p-miele_contact_list {
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
  }
}
.p-miele_contact_list_item_txt {
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 767px ) {
  .p-miele_contact_list_item_txt {
    margin-bottom: 0.5rem;
  }
}
.p-miele_contact_list_item .c-btn {
  width: 300px;
}
@media (max-width: 767px ) {
  .p-miele_contact_list_item .c-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-style .c-conts_head_ttl span {
  color: #841b20;
}
.p-style .c-conts_head_ttl span::after {
  border-color: #841b20;
  width: 110%;
}
.p-style_wrap {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}
@media (max-width: 767px ) {
  .p-style_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
}
.p-style_body {
  flex: none;
}
.p-style_body_txt {
  line-height: 2;
}
@media (max-width: 767px ) {
  .p-style_body_txt {
    line-height: 1.7;
  }
}
.p-style_body_txt + .p-style_body_txt {
  margin-top: 2em;
}
@media (max-width: 767px ) {
  .p-style_body_txt + .p-style_body_txt {
    margin-top: 1.7em;
  }
}
.p-style_body .c-btn {
  margin-top: 3.75rem;
}
@media (max-width: 767px ) {
  .p-style_body .c-btn {
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-style_img {
  width: 60%;
  transition: 0.2s;
}
.p-style_list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -5%;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px ) {
  .p-style_list {
    flex-wrap: wrap;
    margin-top: -8%;
  }
}
.p-style_list_item {
  transition: 0.2s;
}
.p-style_list_item:nth-of-type(1) {
  width: 40.63%;
  margin-top: 20%;
  margin-right: auto;
}
@media (max-width: 767px ) {
  .p-style_list_item:nth-of-type(1) {
    width: 52%;
  }
}
.p-style_list_item:nth-of-type(2) {
  width: 20.72%;
  transition: 0.4s;
}
@media (max-width: 767px ) {
  .p-style_list_item:nth-of-type(2) {
    width: 30%;
    margin-left: auto;
  }
}
.p-style_list_item:nth-of-type(3) {
  width: 33.63%;
  margin-top: 35%;
}
@media (max-width: 767px ) {
  .p-style_list_item:nth-of-type(3) {
    width: 70%;
    margin-left: auto;
    margin-top: 10%;
  }
}

.p-contact_body {
  background: #f1f2ef;
  padding: 3.75rem 0;
}
@media (max-width: 767px ) {
  .p-contact_body {
    padding: 1.5rem 0;
  }
}
.p-contact_txt {
  margin-bottom: 2rem;
}
.p-contact_txt a {
  color: #151515;
}
.p-contact_form {
  margin-bottom: 2rem;
  max-width: 700px;
}
.p-contact_form_wrap {
  margin-bottom: 2.25rem;
  margin-top: 2.25rem;
}
.p-contact_form_wrap .p-contact_form_item {
  padding-left: 1rem;
}
@media (max-width: 767px ) {
  .p-contact_form_wrap .p-contact_form_item {
    padding-left: 0;
  }
}
.p-contact_form_ttl {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-contact_form_ttl span.note {
  color: #841b20;
  display: block;
  width: 100%;
  font-size: 0.875rem;
}
.p-contact_form_ttl span.is-required {
  color: #fff;
  padding: 0.25rem 0.5rem;
  background-color: #841b20;
  font-size: 0.625rem;
  border-radius: 3px;
  margin-left: 0.5rem;
}
.p-contact_form_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px ) {
  .p-contact_form_item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.p-contact_form_item + .p-contact_form_item {
  margin-top: 1.25rem;
}
.p-contact_form_item_ttl,
.p-contact_form_item label {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.25rem 0.5rem;
  width: 30%;
  flex: none;
}
@media (max-width: 767px ) {
  .p-contact_form_item_ttl,
  .p-contact_form_item label {
    width: 100%;
  }
}
.p-contact_form_item_ttl span.is-required,
.p-contact_form_item label span.is-required {
  color: #fff;
  padding: 0.25rem 0.5rem;
  background-color: #841b20;
  font-size: 0.625rem;
  border-radius: 3px;
  flex: none;
}
.p-contact_form_item_ttl.is-long,
.p-contact_form_item label.is-long {
  width: 100%;
  margin-top: 1.25rem;
}
.p-contact_form_item_input {
  width: calc(70% - 1rem);
  padding: 0.5rem 0.5rem;
  border: 1px solid #464740;
  border-radius: 4px;
}
@media (max-width: 767px ) {
  .p-contact_form_item_input {
    width: 100%;
  }
}
.p-contact_form_item_textarea {
  width: 100%;
  padding: 0.5rem 0.5rem;
  border: 1px solid #464740;
  border-radius: 4px;
}
.p-contact_form_item_checkwrap {
  display: flex;
  width: 100%;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 767px ) {
  .p-contact_form_item_checkwrap {
    gap: 1rem 1.5rem;
  }
}
.p-contact_form_item_checkwrap label {
  width: auto;
}
.p-contact_form_item_checkwrap label input {
  display: none;
}
.p-contact_form_item_checkwrap label input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 12px;
  border-bottom: 2px solid #841b20;
  border-right: 2px solid #841b20;
  rotate: 45deg;
  left: 6px;
  top: 5px;
}
.p-contact_form_item_checkwrap label input + span {
  padding-left: 1.75rem;
  font-size: 1rem;
  position: relative;
  cursor: pointer;
}
.p-contact_form_item_checkwrap label input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #151515;
  background: #fff;
}
.p-contact_form_item_checkwrap .horizontal-item {
  margin-left: 0 !important;
}
.p-contact_form_item_radiowrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-contact_form_item_radiowrap label {
  width: 100%;
}
.p-contact_form_item .mwform-radio-field {
  display: block;
}
.p-contact_form_item .mwform-radio-field + .mwform-radio-field {
  margin-left: 0 !important;
}
.p-contact_form_item_radio {
  display: none;
}
.p-contact_form_item_radio:checked + span::before {
  border-color: #841b20;
  border-width: 2px;
}
.p-contact_form_item_radio:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #841b20;
}
@media (max-width: 767px ) {
  .p-contact_form_item_radio:checked + span::after {
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
    left: 4px;
  }
}
.p-contact_form_item_radio + span {
  padding-left: 1.8rem;
  font-size: 1rem;
  position: relative;
  cursor: pointer;
}
.p-contact_form_item_radio + span::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #151515;
  background: #fff;
}
@media (max-width: 767px ) {
  .p-contact_form_item_radio + span::before {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
  }
}
.p-contact_form_item_note {
  font-size: 0.875rem;
}
.p-contact_form_btns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media (max-width: 767px ) {
  .p-contact_form_btns {
    align-items: center;
  }
}

.p-bd_header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  padding: 1.125rem 2rem;
  min-height: 65.5px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
}
.p-bd_header.is-showroom {
  padding: 0.5rem 2rem;
}
@media (max-width: 767px ) {
  .p-bd_header.is-showroom {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 767px ) {
  .p-bd_header {
    width: auto;
    min-height: initial;
    left: initial;
    right: 0;
    padding: 0;
    background: none;
  }
}
.p-bd_header_logo {
  width: 186px;
  margin-right: auto;
}
@media (max-width: 767px ) {
  .p-bd_header_logo {
    padding: 0.5rem;
  }
}
.p-bd_header_list {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
@media (max-width: 767px ) {
  .p-bd_header_list {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fff;
    left: 0;
    top: 0;
    z-index: -1;
    padding: 100px 1rem;
  }
}
.p-bd_header_list_item {
  padding: 0;
}
@media (max-width: 767px ) {
  .p-bd_header_list_item {
    display: block;
    text-align: center;
  }
  .p-bd_header_list_item + .p-bd_header_list_item {
    margin-top: 1rem;
  }
}
.p-bd_header_list_item a {
  color: #fff;
  text-decoration: none;
  position: relative;
}
@media (max-width: 767px ) {
  .p-bd_header_list_item a {
    color: #151515;
    font-size: 1.125rem;
  }
}
.p-bd_header_list_item a::after {
  content: "";
  width: 100%;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 0;
  bottom: -5px;
  scale: 0 0;
  transform-origin: left;
  transition: 0.2s;
}
.p-bd_header_list_item a:hover::after {
  scale: 1 1;
}
.p-bd_header_menu {
  display: none;
}
@media (max-width: 767px ) {
  .p-bd_header_menu {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    position: relative;
  }
  .p-bd_header_menu span {
    width: 50%;
    border-bottom: 1px solid #fff;
    transition: 0.2s;
  }
  .p-bd_header_menu.is-open span:nth-of-type(1) {
    rotate: 30deg;
    position: absolute;
  }
  .p-bd_header_menu.is-open span:nth-of-type(2) {
    opacity: 0;
    rotate: 180deg;
  }
  .p-bd_header_menu.is-open span:nth-of-type(3) {
    rotate: -30deg;
    position: absolute;
  }
}
.p-bd_hero {
  width: 100%;
  aspect-ratio: 1280/522;
  background: url(../img/brizodelta/hero.jpg) no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px ) {
  .p-bd_hero {
    aspect-ratio: auto;
    padding: 7.5rem 0;
  }
}
.p-bd_hero::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.52);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.p-bd_hero_ttl {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  z-index: 1;
  font-weight: 200;
}
@media (max-width: 767px ) {
  .p-bd_hero_ttl {
    font-size: 1.125rem;
  }
}
.p-bd_hero_ttl img {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px ) {
  .p-bd_hero_ttl img {
    width: 30%;
  }
}
.p-bd_hero_ttl span {
  font-family: "Ubuntu", serif;
}
.p-bd_about {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px ) {
  .p-bd_about {
    padding-top: calc(2.5rem + 75px);
    padding-bottom: 2.5rem;
  }
}
.p-bd_about_ttl {
  text-align: center;
  font-weight: 500;
  line-height: 2;
  font-size: 1.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px ) {
  .p-bd_about_ttl {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}
.p-bd_about_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px ) {
  .p-bd_about_wrap {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.p-bd_about_body_txt {
  line-height: 2;
}
.p-bd_about_body_txt + .p-bd_about_body_txt {
  margin-top: 2em;
}
@media (max-width: 767px ) {
  .p-bd_about_body {
    order: 2;
  }
}
.p-bd_about_img {
  width: 49.3636%;
  flex: none;
}
@media (max-width: 767px ) {
  .p-bd_about_img {
    order: 1;
    width: 60%;
    margin: 0 auto;
  }
}
.p-bd_delta {
  padding: 5rem 0;
  background: #e6e6e6;
}
@media (max-width: 767px ) {
  .p-bd_delta {
    padding: 2.5rem 0;
  }
}
.p-bd_delta_ttl {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media (max-width: 767px ) {
  .p-bd_delta_ttl {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }
}
.p-bd_delta_ttl img {
  width: 216px;
}
.p-bd_delta_wrap {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px ) {
  .p-bd_delta_wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-bd_delta_wrap + .p-bd_delta_wrap {
  margin-top: 6.25rem;
}
@media (max-width: 767px ) {
  .p-bd_delta_wrap + .p-bd_delta_wrap {
    margin-top: 2rem;
  }
}
@media (max-width: 767px ) {
  .p-bd_delta_body {
    order: 2;
  }
}
.p-bd_delta_body_ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.p-bd_delta_body_txt {
  line-height: 2;
}
.p-bd_delta_body_txt + .p-bd_delta_body_txt {
  margin-top: 2em;
}
.p-bd_delta_img {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px ) {
  .p-bd_delta_img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }
}
.p-bd_delta_img .img01 {
  width: 90.0545454%;
  margin-left: auto;
}
.p-bd_delta_img .img02 {
  width: 58%;
  margin-left: -10%;
  margin-top: -5%;
}
.p-bd_delta_img_video {
  width: 90%;
  aspect-ratio: 16/9;
}
@media (max-width: 767px ) {
  .p-bd_delta_img_video {
    width: 100%;
  }
}
.p-bd_delta_img iframe {
  width: 100%;
  height: 100%;
}
.p-bd_brizo {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 767px ) {
  .p-bd_brizo {
    padding: 3.75rem 0;
  }
}
.p-bd_brizo_hero {
  width: 100vw;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px ) {
  .p-bd_brizo_hero {
    align-items: center;
    margin-bottom: 0;
  }
}
.p-bd_brizo_hero_ttl {
  width: 26.718%;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  padding-top: 5em;
  font-weight: normal;
  letter-spacing: 5px;
  position: relative;
  font-size: 1.5rem;
}
@media (max-width: 767px ) {
  .p-bd_brizo_hero_ttl {
    font-size: 1rem;
    padding-top: 3em;
  }
}
.p-bd_brizo_hero_ttl::before {
  content: "";
  height: 4.5em;
  border-left: 1px solid #151515;
  position: absolute;
  left: calc(50% - 0.5px);
  top: 0;
}
@media (max-width: 767px ) {
  .p-bd_brizo_hero_ttl::before {
    height: 2.5em;
  }
}
.p-bd_brizo_hero_img {
  width: 63.2%;
}
.p-bd_brizo_head {
  display: flex;
  align-items: center;
  gap: 5rem;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 3rem;
}
.p-bd_brizo_head img {
  width: 328px;
}
@media (max-width: 767px ) {
  .p-bd_brizo_head {
    flex-direction: column;
    gap: 1rem;
    font-size: 1.125rem;
    text-align: center;
  }
  .p-bd_brizo_head img {
    width: 150px;
  }
}
.p-bd_brizo_wrap {
  display: flex;
  gap: 3.75rem;
  align-items: center;
}
@media (max-width: 767px ) {
  .p-bd_brizo_wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-bd_brizo_img {
  width: 33.09%;
  flex: none;
}
@media (max-width: 767px ) {
  .p-bd_brizo_img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-bd_brizo_body_txt {
  font-size: 1rem;
  line-height: 2;
}
.p-bd_brizo_body_txt + .p-bd_brizo_body_txt {
  margin-top: 2em;
}
.p-bd_subttl {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  font-family: "Ubuntu", serif;
  margin-bottom: 4rem;
}
@media (max-width: 767px ) {
  .p-bd_subttl {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
  }
}
.p-bd_subttl.is-ja {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px ) {
  .p-bd_subttl.is-ja {
    margin-bottom: 1rem;
  }
}
.p-bd_subttl::after {
  content: "";
  width: 50%;
  border-bottom: 1px solid #151515;
  position: absolute;
  left: 25%;
  bottom: -5%;
}
.p-bd_subtxt {
  text-align: center;
  font-size: 1.5rem;
  font-family: "Ubuntu", serif;
  margin-bottom: 2.5rem;
  margin-top: -2rem;
}
@media (max-width: 767px ) {
  .p-bd_subtxt {
    margin-top: 0;
  }
}
.p-bd_kitchen {
  padding-bottom: 6.25rem;
}
@media (max-width: 767px ) {
  .p-bd_kitchen {
    padding-bottom: 3.75rem;
  }
}
.p-bd_kitchen_hero {
  width: 100%;
  margin-bottom: 4rem;
  aspect-ratio: 1280/428;
  position: relative;
}
@media (max-width: 767px ) {
  .p-bd_kitchen_hero {
    margin-bottom: 2.5rem;
  }
}
.p-bd_kitchen_hero_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.p-bd_kitchen_hero_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.05);
  transition: opacity 1.5s ease, filter 1.5s ease, transform 5s ease;
  z-index: 0;
}
.p-bd_kitchen_hero_img img.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  z-index: 1;
  transition: opacity 1s ease, filter 1.5s ease, transform 5s ease;
  z-index: 0;
}
.p-bd_lavatory_head, .p-bd_lavatory_bottom {
  display: flex;
  align-items: center;
  gap: 1vw;
}
.p-bd_lavatory_head img, .p-bd_lavatory_bottom img {
  width: calc(var(--w) / 1280 * 100%);
}
@media (max-width: 767px ) {
  .p-bd_lavatory_head img, .p-bd_lavatory_bottom img {
    width: calc(var(--spw) / 1280 * 100%);
  }
}
.p-bd_lavatory_head {
  margin-bottom: 0;
}
@media (max-width: 767px ) {
  .p-bd_lavatory_head {
    margin-bottom: 2.5rem;
  }
}
.p-bd_lavatory_head img:nth-of-type(2) {
  margin-top: 8%;
  transition: 0.3s;
}
.p-bd_lavatory_head img:nth-of-type(3) {
  margin-bottom: 8%;
}
.p-bd_lavatory_head img:nth-of-type(5) {
  margin-top: 3%;
  transition: 0.3s;
}
.p-bd_lavatory_bottom {
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media (max-width: 767px ) {
  .p-bd_lavatory_bottom {
    margin-top: 2.5rem;
  }
}
.p-bd_lavatory_bottom img:nth-of-type(2) {
  margin-top: 5%;
}
.p-bd_lavatory_bottom img:nth-of-type(3) {
  margin-bottom: 5%;
  transition: 0.3s;
}
.p-bd_lavatory_bottom img:nth-of-type(5) {
  margin-bottom: 10%;
  transition: 0.3s;
}
.p-bd_lavatory .p-bd_subttl {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}
.p-bd_lavatory_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.625rem;
  font-family: "Ubuntu", serif;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 767px ) {
  .p-bd_lavatory_ttl {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
.p-bd_lavatory_ttl img.is-delta {
  width: 180px;
}
@media (max-width: 767px ) {
  .p-bd_lavatory_ttl img.is-delta {
    width: 30%;
  }
}
.p-bd_lavatory_ttl img.is-brizo {
  width: 200px;
}
@media (max-width: 767px ) {
  .p-bd_lavatory_ttl img.is-brizo {
    width: 31%;
  }
}
.p-bd_lavatory_txt {
  text-align: center;
  font-size: 1.25rem;
  font-family: "Ubuntu", serif;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px ) {
  .p-bd_lavatory_txt {
    font-size: 1.125rem;
  }
}
.p-bd_accessory {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 767px ) {
  .p-bd_accessory {
    padding: 3.75rem 0;
  }
}
.p-bd_accessory_head {
  margin-bottom: 2rem;
}
.p-bd_sns {
  padding-bottom: 7.5rem;
}
@media (max-width: 767px ) {
  .p-bd_sns {
    padding-bottom: 3.75rem;
  }
}
.p-bd .p-miele_contact_list_item_txt {
  color: #fff;
}
.p-bd .js-img {
  transition: 0.4s;
}

.p-bd.is-showroom {
  padding-top: 150px;
}
.p-bd_showroom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.p-bd_showroom_wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 2.5rem;
}
@media (max-width: 767px ) {
  .p-bd_showroom_wrap {
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
.p-bd_showroom_wrap.is-delta {
  background: #e6e6e6;
}
.p-bd_showroom_wrap.is-delta .p-bd_showroom_logo {
  width: 216px;
}
.p-bd_showroom_wrap.is-brizo {
  background: #e3dad1;
}
.p-bd_showroom_wrap.is-brizo > .p-bd_showroom_inner {
  margin-left: 0;
  margin-right: auto;
}
.p-bd_showroom_wrap.is-brizo .p-bd_showroom_logo {
  height: 67.4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.p-bd_showroom_wrap.is-brizo .p-bd_showroom_logo img {
  width: 161px;
}
.p-bd_showroom_inner {
  max-width: 511px;
  margin-left: auto;
}
.p-bd_showroom_logo {
  margin-bottom: 2.5rem;
}
.p-bd_showroom_item + .p-bd_showroom_item {
  margin-top: 3.75rem;
}
.p-bd_showroom_item_img {
  margin-bottom: 0.75rem;
  position: relative;
  cursor: pointer;
}
.p-bd_showroom_item_img_hover {
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  z-index: 1;
  line-height: 2;
}
.p-bd_showroom_item_img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.p-bd_showroom_item_img:hover .p-bd_showroom_item_img_hover {
  opacity: 1;
}
.p-bd_showroom_item_img:hover::after {
  opacity: 1;
}
.p-bd_showroom_item_label {
  margin-bottom: 0.75rem;
}
.p-bd_showroom_item_label span {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: #000;
  color: #fff;
  font-weight: bold;
}
.p-bd_showroom_item_txt {
  font-size: 1rem;
  margin-bottom: 0;
}
.p-bd.is-form {
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px ) {
  .p-bd.is-form {
    padding-top: 5rem;
  }
}/*# sourceMappingURL=style.css.map */