@charset "utf-8";
/* CSS Document */

body {font-size: 16px; background-image: url(../img/common/common_bg.jpg); background-size: cover; background-position: center; background-repeat: no-repeat;}

/* ===============================
	mv
 =============================== */
#mv {
  background-image: url(../img/owner-example/mv_bg.jpg);
}
@media screen and (max-width: 750px) {
  #mv {
    background-image: url(../img/owner-example/mv_bg_sp.jpg);
  }
}

/* ===============================
	owner_search
 =============================== */
#owner_search {
  margin-top: 80px;
  margin-bottom: 80px;
}
.search_con {
  background: var(--C-white);
  filter: drop-shadow(0 0 12px rgb(0 0 0 / 0.16));
  margin-bottom: 48px;
}
/* search_main_con */
.search_main_con {
  padding: 40px;
}
.search_main_con .title {
  margin-bottom: 32px;
}
.search_main_con dl:not(:last-child) {
  margin-bottom: 32px;
}
.search_main_con dl {
  display: flex;
  flex-direction: row;
  gap: 32px 8px;
}
.search_main_con .oe-sc-items-title,
.search_sub_con .oe-sc-items-title {
  width: 150px;
  font-size: 16px;
  font-weight: 500;
}
.search_main_con .oe-sc-items,
.search_sub_con .oe-sc-items {
  width: calc(100% - (150px + 8px));
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
}
.search_main_con .oe-sc-items label span,
.search_sub_con .oe-sc-items label > span {
  font-size: 12px;
  font-weight: 400;
  border: var(--C-line-gray) 1px solid;
  border-radius: 13px;
  min-width: 57px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 16px;
  transition: .4s;
}
.search_main_con .oe-sc-items label span,
.search_sub_con .oe-sc-items label > span {
  cursor: pointer;
}
.search_main_con .oe-sc-items label input,
.search_sub_con .oe-sc-items label input {
  display: none;
}
.search_main_con .oe-sc-items label:hover span,
.search_main_con .oe-sc-items label input:checked + span,
.search_sub_con .oe-sc-items label:hover > span,
.search_sub_con .oe-sc-items label input:checked + span {
  background: var(--C-accent-green);
  color: var(--C-white);
}
/* search_sub */
.search_sub {
  overflow: hidden;
  display: none;
  position: relative;
  padding: 40px 40px 48px;
}
.search_sub_con::before {
  content: '';
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--C-line-gray) 4px, transparent 4px);
  background-size: 8px 1px;
  background-position: center;
  display: block;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
}
.search_sub_con {
  position: relative;
}
.search_sub_con .oe-sc-items-title {
  width: auto;
  margin-bottom: 16px;
}
.search_sub_con .oe-sc-items {
  width: auto;
}
.search_sub_con .oe-sc-items label span span {
  color: var(--C-accent-green);
  transition: .4s;
}
.search_sub_con .list_main label:hover span,
.search_sub_con .list_main label input:checked + span {
  color: var(--C-white);
}
/* open */
.search_sub.open {
  display: block;
}
.search_title_con.active .open::after {
  transform: rotate(90deg);
}
/* search_title_con */
.search_title_con {
  background: var(--C-checkbox-border);
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-left: 70px;
  cursor: pointer;
}
.search_title_con .title {
  font-family: "Noto Serif JP", serif;
  font-size:18px;
  font-weight: 500;
  color: var(--C-white);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.search_title_con .title::after {
  content: 'すべての検索条件を見る';
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
}
.search_title_con.active .title::after {
  content: '閉じる';
}
.search_title_con .open {
  width: 75px;
  height: 100%;
  background: rgb(0 0 0 / 0.20);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.search_title_con .open::before,
.search_title_con .open::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--C-white);
  transition: .3s;
}
.search_title_con .open::before {
  width: 24px;
  height: 2px;
}
.search_title_con .open::after {
  top: calc((100% - 24px) / 2);
  bottom: auto;
  width: 2px;
  height: 24px;
}
@media screen and (max-width: 750px) {
  #owner_search {
    margin-top: 10.66666666666667vw;
    margin-bottom: 12.8vw;
  }
  .search_main_con {
    padding: 10.66666666666667vw 4.26666666666667vw 6.4vw;
  }
  .search_main_con .title {
    margin-bottom: 6.4vw;
  }
  .search_main_con dl:not(:last-child) {
    margin-bottom: 6.4vw;
  }
  .search_main_con dl {
    flex-direction: column;
    gap: 3.2vw;
  }
  .search_main_con .oe-sc-items-title,
  .search_sub_con .oe-sc-items-title {
    width: 100%;
    font-size: 3.73333333333333vw;
  }
  .search_main_con .oe-sc-items,
  .search_sub_con .oe-sc-items {
    width: 100%;
    gap: 3.2vw 1.06666666666667vw;
  }
  .search_main_con .oe-sc-items .label span,
  .search_sub_con .oe-sc-items .label > span {
    font-size: 3.2vw;
    border-radius: 3.46666666666667vw;
    min-width: 13.86666666666667vw;
    height: 6.93333333333333vw;
    padding: 0 2.66666666666667vw;
  }
  .search_sub {
    padding: 6.4vw 4.26666666666667vw;
  }
  .search_sub_con::before {
    top: -6.4vw;
  }
  .search_title_con {
    height: 14.13333333333333vw;
    padding-left: 4.26666666666667vw;
  }
  .search_title_con .title {
    font-size: 4.26666666666667vw;
    margin-left: -14.13333333333333vw;
    gap: 2.13333333333333vw;
  }
  .search_title_con .title::before {
    width: 7.46666666666667vw;
    height: 7.46666666666667vw;
  }
  .search_title_con .title::after {
    font-size: 4.26666666666667vw;
  }
  .search_title_con .title img {
    width: 5.86666666666667vw;
    height: auto;
  }
  .search_title_con .open {
    width: 14.13333333333333vw;
  }
  .search_title_con .open::before {
    width: 4.26666666666667vw;
  }
  .search_title_con .open::after {
    top: calc((100% - 4.26666666666667vw) / 2);
    height: 4.26666666666667vw;
  }
}

/* ===============================
	owner-example
 =============================== */
#owner-example {
  margin-bottom: 160px;
}
#owner-example .choice_con {
  border-top: var(--C-accent-green) 6px solid;
  border-bottom: var(--C-checkbox-border) 1px solid;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 54px;
  padding: 16px 0;
  margin-top: 80px;
  margin-bottom: 56px;
}
#owner-example .choice_con * {
  font-family: "Noto Serif JP", serif;
}
#owner-example .choice_con .num,
#owner-example .choice_con p {
  font-size: 14px;
  font-weight: 500;
}
#owner-example .choice_con .num {
  width: 158px;
}
#owner-example .choice_con .num span {
  font-size: 32px;
  font-weight: 600;
  color: var(--C-accent-Dyellow);
}
#owner-example .choice_con p {
  width: calc(100% - 158px);
}
#owner-example ul {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 40px;
  margin-bottom: 112px;
}
#owner-example li {
  width: calc((100% - (40px * 2)) / 3);
  display: none;
}
#owner-example li:nth-child(-n+12) {
  display: block;
}
.owner-example_img {
  aspect-ratio: 400 / 226;
  background: var(--C-black);
  transition: .6s;
  margin-bottom: 16px;
}
#owner-example li:hover .owner-example_img {
  opacity: .6;
}
.owner-example_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#owner-example h2 {
  margin-bottom: 16px;
}
.owner-example_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  position: relative;
}
.owner-example_tag > div {
  font-size: 12px;
  font-weight: 400;
  border: var(--C-line-gray) 1px solid;
  border-radius: 13px;
  min-width: 57px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 16px;
  transition: .4s;
}
.owner-example_tag .more-indicator {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  font-size: 12px;
  font-weight: 400;
  border: none;
  height: 26px;
  padding: 0;
}
.owner-example_tag > div span {
  color: var(--C-accent-green);
}
@media screen and (max-width: 750px) {
  #owner-example {
    margin-bottom: 17.06666666666667vw;
  }
  #owner-example .choice_con {
    flex-direction: column;
    gap: 1.06666666666667vw;
    padding: 0 0 2.13333333333333vw;
    margin-top: 12.8vw;
    margin-bottom: 8.53333333333333vw;
  }
  #owner-example .choice_con .num,
  #owner-example .choice_con p {
    font-size: 3.2vw;
    width: 100%;
  }
  #owner-example .choice_con .num span {
    font-size: 6.4vw;
    padding: 0 1.06666666666667vw;
  }
  #owner-example ul {
    gap: 10.66666666666667vw;
    margin-bottom: 12.8vw;
  }
  #owner-example li {
    width: 100%;
  }
  .owner-example_img,
  #owner-example h2 {
    margin-bottom: 4.26666666666667vw;
  }
  .owner-example_tag {
    gap: 1.6vw 1.06666666666667vw;
  }
  .owner-example_tag > div {
    font-size: 2.66666666666667vw;
    border-radius: 3.46666666666667vw;
    height: 6.4vw;
    padding: 0 4.26666666666667vw;
  }
  .owner-example_tag .more-indicator {
    font-size: 2.66666666666667vw;
    height: 6.4vw;
  }
}

/* ===============================
	owners-house_banner
 =============================== */
#owners-house_banner {
  margin-bottom: 160px;
}
#owners-house_banner a {
  display: block;
}
#owners-house_banner a img {
  height: auto;
  transition: .6s;
}
#owners-house_banner a:hover img {
  opacity: .6;
}
@media screen and (max-width: 750px) {
  #owners-house_banner {
    margin-bottom: 21.33333333333333vw;
  }
}

/* ===============================
	detail_top
 =============================== */
.splide {
  visibility:visible !important;
}

#detail_top {
  padding-top: 160px;
}
.detail_top_title {
  margin-bottom: 40px;
}
.detail_top_title .title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  border-bottom: var(--C-checkbox-border) 1px solid;
  padding-bottom: 32px;
  margin-bottom: 40px;
}
#detail_top_slider {
  overflow: hidden;
  position: relative;
}
#detail_top_slider .splide__slide {
  height: 100%;
  aspect-ratio: 265 / 149;
  background: var(--C-black);
}
#detail_top_slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#detail_top_slider .splide__arrow {
  background-image: url(../img/search/detail/top_slider_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: +1;
  margin: auto;
}
#detail_top_slider .splide__arrow.splide__arrow--prev {
  left: 0;
}
#detail_top_slider .splide__arrow.splide__arrow--next {
  right: 0;
  transform: rotate(180deg);
}
#detail_top_slider .splide__arrow svg {
  display: none;
}
#detail_top p,
#detail_top p span {
  color: var(--C-accent-green);
}
#detail_top p {
  font-size: 24px;
  margin-bottom: 7px;
}
#detail_top p span {
  font-size: 40px;
  letter-spacing: 0;
  display: inline-block;
  margin-left: 8px;
}
#detail_top_slider_thumbnail {
  margin-top: 40px;
}
#detail_top_slider_thumbnail .splide__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
#detail_top_slider_thumbnail .splide__slide {
  overflow: hidden;
  aspect-ratio: 99 / 56;
  max-width: 99px;
  margin-right: 0 !important;
}
#detail_top_slider_thumbnail .splide__slide.is-active::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--C-txt-main);
  opacity: .6;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  #detail_top {
    padding-top: 26.66666666666667vw;
  }
  .detail_top_title {
    margin-bottom: 4.26666666666667vw;
  }
  .detail_top_category_con {
    height: 6.93333333333333vw;
    margin-bottom: 3.2vw;
    gap: 1.06666666666667vw;
    border-radius: 3.46666666666667vw;
  }
  .detail_top_new,
  .detail_top_category {
    font-size: 3.2vw;
  }
  .detail_top_new {
    width: 16vw;
  }
  .detail_top_category {
    width: 34.13333333333333vw;
  }
  .detail_top_title .title {
    font-size: 6.4vw;
    padding-bottom: 4.26666666666667vw;
    margin-bottom: 8.53333333333333vw;
  }
  .detail_top_slider .splide__slide {
    height: 50.4vw;
  }
  .detail_top_info {
    gap: 1.06666666666667vw;
  }
  .detail_top_info dl * {
    font-size: 2.66666666666667vw;
  }
  .detail_top_info dt {
    width: 15.46666666666667vw;
    height: auto;
    padding: 1.06666666666667vw 0;
  }
  .detail_top_info dd {
    width: calc(100% - 15.46666666666667vw);
    padding-left: 2.13333333333333vw;
    padding-right: 0;
    display: flex;
    align-items: center;
  }
  #detail_top_slider .splide__arrow {
    width: 8vw;
    height: 8vw;
  }
  #detail_top p {
    font-size: 5.33333333333333vw;
    margin-bottom: 2.13333333333333vw;
  }
  #detail_top p span {
    font-size: 8.53333333333333vw;
    margin-left: 1.06666666666667vw;
  }
  #detail_top h2 {
    margin-bottom: 0;
  }
  #detail_top_slider_thumbnail {
    scrollbar-width: none;
    position: relative;
    margin-top: 6.4vw;
    margin-left: 4vw;
    margin-right: 4vw;
  }
  #detail_top_slider_thumbnail .splide__slide {
    max-width: 20.8vw;
  }
  #detail_top_slider_thumbnail .splide__list {
    flex-wrap: nowrap;
  }
  #detail_top_slider_thumbnail .splide__arrow {
    background-image: url(../img/search/detail/top_slider_arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 8vw;
    height: 8vw;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: +1;
    margin: auto;
  }
  #detail_top_slider_thumbnail .splide__arrow.splide__arrow--prev {
    left: -4vw;
  }
  #detail_top_slider_thumbnail .splide__arrow.splide__arrow--next {
    right: -4vw;
    transform: rotate(180deg);
  }
  #detail_top_slider_thumbnail .splide__arrow svg {
    display: none;
  }
}

/* ===============================
	detail_point
 =============================== */
#detail_point {
  padding-top: 120px;
}
#detail_point .title {
  margin-bottom: 64px;
}

/* point_con */
#detail_point .point_con {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 40px;
}
#detail_point .point_con p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: calc((100% - 48.11320754716981%) - 40px);
}
#detail_point .point_con .point_img {
  width: 48.11320754716981%;
  max-width: 510px;
  height: fit-content;
  max-height: 287px;
  aspect-ratio: 510 / 287;
  background: var(--C-black);
}
#detail_point .point_con .point_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* point_list */
#point_list {
  background: var(--C-sub);
  padding: 40px 32px;
}
#point_list .list_con {
  position: relative;
  padding-bottom: 24px;
}
#point_list .list_con::after {
  content: '';
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, var(--C-line-gray) 4px, transparent 4px);
  background-size: 8px 1px;
  background-position: center;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#point_list .list_con ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
#point_list .list_con .label {
  margin-bottom: 8px;
}
#point_list .list_con li {
  font-size: 10px;
  font-weight: 400;
  background: var(--C-white);
  border: var(--C-line-gray) 1px solid;
  border-radius: 13px;
  min-width: 59px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 16px;
}
#point_list .list_con li span {
  color: var(--C-accent-green);
}
#point_list .info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 16px 32px;
  margin-top: 31px;
  margin-bottom: 16px;
}
#point_list .info li {
  font-size: 14px;
  font-weight: 400;
}
#point_list .info li span {
  font-size: 12px;
  color: var(--C-checkbox-border);
  display: inline-block;
  margin-right: 8px;
}
#point_list small {
  font-size: 10px;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 750px) {
  #detail_point {
    padding-top: 21.33333333333333vw;
  }
  #detail_point .point_con {
    flex-direction: column;
    gap: 10.66666666666667vw;
    margin-bottom: 4.26666666666667vw;
  }
  #detail_point .point_con p {
    font-size: 3.46666666666667vw;
    width: 100%;
  }
  #detail_point .point_con .point_img {
    width: 100%;
  }
  #point_list {
    padding: 8.53333333333333vw 4.26666666666667vw;
  }
  #point_list .list_con {
    padding-bottom: 6.4vw;
  }
  #point_list .list_con ul {
    gap: 1.06666666666667vw;
  }
  #point_list .list_con .label {
    margin-bottom: 2.13333333333333vw;
  }
  #point_list .list_con li {
    font-size: 2.66666666666667vw;
    border-radius: 3.46666666666667vw;
    min-width: 15.73333333333333vw;
    height: 6.4vw;
    padding: 0 4.26666666666667vw;
  }
  #point_list .info {
    flex-direction: column;
    gap: 2.13333333333333vw;
    margin-top: 6.66666666666667vw;
    margin-bottom: 4.26666666666667vw;
  }
  #point_list .info li {
    font-size: 3.46666666666667vw;
  }
  #point_list .info li span {
    font-size: 3.2vw;
    margin-right: 2.13333333333333vw;
  }
  #point_list small {
    font-size: 2.66666666666667vw;
  }
}

/* ===============================
	detail_floor
 =============================== */
#detail_floor {
  padding-top: 120px;
}
#detail_floor .title {
  margin-bottom: 64px;
}
#detail_floor_slider {
  overflow: hidden;
  position: relative;
}
#detail_floor_slider .splide__slide {
  height: 100%;
  aspect-ratio: 265 / 149;
  background: var(--C-black);
}
#detail_floor_slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#detail_floor_slider .splide__arrow {
  background-image: url(../img/search/detail/top_slider_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: +1;
  margin: auto;
}
#detail_floor_slider .splide__arrow.splide__arrow--prev {
  left: 0;
}
#detail_floor_slider .splide__arrow.splide__arrow--next {
  right: 0;
  transform: rotate(180deg);
}
#detail_floor_slider .splide__arrow svg {
  display: none;
}
.detail_floor_slider_txt_list {
  margin-top: 24px;
}
#detail_floor_slider_thumbnail {
  margin-top: 40px;
}
#detail_floor_slider_thumbnail .splide__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
#detail_floor_slider_thumbnail .splide__slide {
  overflow: hidden;
  aspect-ratio: 99 / 56;
  max-width: 99px;
  margin-right: 0 !important;
}
#detail_floor_slider_thumbnail .splide__slide.is-active::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--C-txt-main);
  opacity: .6;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  #detail_floor {
    padding-top: 21.33333333333333vw;
  }
  #detail_floor .title {
    margin-bottom: 12.8vw;
  }
  #detail_floor_slider .splide__arrow {
    width: 8vw;
    height: 8vw;
  }
  .detail_floor_slider_txt_list {
    margin-top: 4.26666666666667vw;
  }
  #detail_floor_slider_thumbnail {
    scrollbar-width: none;
    position: relative;
    margin-top: 6.4vw;
    margin-left: 4vw;
    margin-right: 4vw;
  }
  #detail_floor_slider_thumbnail .splide__slide {
    max-width: 20.8vw;
  }
  #detail_floor_slider_thumbnail .splide__list {
    flex-wrap: nowrap;
  }
  #detail_floor_slider_thumbnail .splide__arrow {
    background-image: url(../img/search/detail/top_slider_arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 8vw;
    height: 8vw;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: +1;
    margin: auto;
  }
  #detail_floor_slider_thumbnail .splide__arrow.splide__arrow--prev {
    left: -4vw;
  }
  #detail_floor_slider_thumbnail .splide__arrow.splide__arrow--next {
    right: -4vw;
    transform: rotate(180deg);
  }
  #detail_floor_slider_thumbnail .splide__arrow svg {
    display: none;
  }
}

/* ===============================
	detail_product
 =============================== */
#detail_product {
  margin-top: 120px;
  margin-bottom: 160px;
}
#product_con {
  container-type: inline-size;
  background: var(--C-sub);
  padding: 64px 110px 80px;
  margin-bottom: 80px;
}
#product_con .title {
  margin-bottom: 64px;
}
#product_con .list_con {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
#product_con .list_img {
  max-width: 400px;
  max-height: 225px;
  aspect-ratio: 16 / 9;
  background: var(--C-black);
}
#product_con .list_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#product_con .list_txt {
  width: calc((100% - 400px) - 40px);
}
#product_con .list_txt .txt_logo {
  max-width: 100%;
  height: 41px;
  margin-bottom: 24px;
}
#product_con .list_txt .txt_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}
#product_con .list_txt p {
  font-size: 16px;
  margin-bottom: 40px;
}
#product_con .btn {
  margin-left: 0;
}
@container (max-width: 804px) {
  #product_con .list_con {
    flex-direction: column;
  }
  #product_con .list_txt {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  #detail_product {
    margin-top: 21.33333333333333vw;
    margin-bottom: 21.33333333333333vw;
  }
  #product_con {
    border-image-source: linear-gradient(var(--C-sub), var(--C-sub));
    border-image-slice: 0 fill;
    border-image-outset: 0 100vw 0 100vw;
    padding: 12.8vw 0;
    margin-bottom: 12.8vw;
  }
  #product_con .title {
    margin-bottom: 12.8vw;
  }
  #product_con .list_con {
    gap: 6.4vw;
  }
  #product_con .list_txt .txt_logo {
    height: 9.06666666666667vw;
    margin-bottom: 6.4vw;
  }
  #product_con .list_txt p {
    font-size: 3.46666666666667vw;
    margin-bottom: 10.66666666666667vw;
  }
}