@charset "utf-8";

/* mobile-360 */

/* header */

body {
  background: #fff;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: #fff;
}

.header_top {}

header h1 {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  top: 58px;
  width: 150px;
  height: 18px;
}

h1>a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bose_logo_size.png) no-repeat center/contain;
}

/* hamburger animation */
.m_btn {
  position: absolute;
  top: 56px;
  /* 40/360 */
  left: 11.111%;
  z-index: 110;
}

.btn_input {
  display: block;
  width: 30px;
  height: 40px;
  position: absolute;
  top: 56px;
  left: 11.111%;
  opacity: 0;
  z-index: 120;
}

.m_btn>span {
  position: relative;
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 8px;
  background: #000;
  text-indent: -9999px;
  z-index: 1;
  transform-origin: 27px -12px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

.m_btn>span:first-child {
  transform-origin: 0% 0%;
}

.m_btn>span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.btn_input:checked+.m_btn span {
  opacity: 1;
  transform: rotate(45deg) translate(3px, -5px);
  background: #000;
}

.btn_input:checked+.m_btn span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.btn_input:checked+.m_btn span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, 8px);
}

/* hamburger animation - end */

.nav_wrap {
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  /* 262/360 */
  width: 72.777%;
  height: 100%;
  background: #fff;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn_input:checked~.nav_wrap {
  transform: translateX(0);
}

.header_top>.dimmed {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.header_top>.btn_input:checked~.dimmed {
  display: block;
}

.gnb {
  width: 100%;
  /* 40/360 */
  margin-left: 11.111%;
  text-transform: uppercase;
  margin-top: 162px;
}

.gnb>li {
  font-size: 1.8rem;
  font-family: "Montserrat", serif;
  font-weight: 500;
  margin-bottom: 46px;
}

.gnb>li>a:hover {
  color: #657BAA;
  font-weight: 700;
}

#sub_product {
  font-family: 'Freesentation';
  font-size: 1.8rem;
  font-weight: 400;
  padding-top: 18px;
}

#sub_product>li {
  padding-bottom: 8px;
}

#sub_product>li>a:hover {
  color: #657BAA;
  font-weight: 700;
}

.icon {
  text-indent: -9999em;
  position: absolute;
  display: block;
  top: 56px;
  /* 40/360 */
  right: 11.111%;
  width: 22px;
  height: 23px;
}

.icon>li {}

.icon>li>a {
  display: block;
  width: 100%;
  height: 100%;
}

.icon>li:nth-child(1) {
  display: none;
}

.icon>li:nth-child(2) {
  display: none;
}

.icon>li:nth-child(3) {
  width: 22px;
  height: 24px;
  background: url(../img/mypage_01.png)no-repeat center/cover;
}


/* main */

main {
  width: 100%;
  margin-top: 114px;
  overflow: hidden;
}

main>section {
  width: 100%;
  margin-bottom: 200px;
}

main>section:nth-child(2) {
  margin-bottom: 124px;
}

.visual_inner {
  position: relative;
}

.bg_box {
  font-family: "Montserrat", serif;
  position: absolute;
  top: 16px;
  width: auto;
  height: 76px;
  white-space: nowrap;
  justify-content: space-between;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* svg-s */

.scroll_mousewheel {
  position: absolute;
  display: block;
  bottom: 48px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 42px;
  height: 98px;
  animation: bounce 2s linear infinite;
  background: url(../img/mousewheel_scroll.png)no-repeat center/contain;
  z-index: 10;
}

@keyframes float {
  50% {
    transform: translate(0, -10px);
  }
}

@keyframes bounce {
  50% {
    transform: translate(-50%, -5px);
  }

  65% {
    transform: translate(-50%, 0);
  }

  80% {
    transform: translate(-50%, -3px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

/* svg-e */

.visual_moving_text {
  padding: 24px;
  position: relative;
  width: auto;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
}

.visual_moving_text p {
  display: inline-block;
  animation: text-to-right 20s linear infinite;
}

/*오른쪽에서 왼쪽으로 텍스트가 흐르는 애니메이션*/
@keyframes text-to-right {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.lisa_video {
  height: 680px;
  position: relative;
}

iframe {
  border: none;
  width: 1207px;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* value */

.value {
  width: 100%;
}

.value_wrap {}

.title_text>h2 {
  font-family: "Montserrat", serif;
  font-size: 5.8rem;
  /* 40/360 */
  margin-left: 11.111%;
  text-transform: uppercase;
  font-weight: 700;
}

.title_text>h2:after {
  content: " ";
  display: block;
  width: 204px;
  height: 3px;
  background-color: #000;
  margin-left: 43px;
}

.title_text>strong {
  font-family: 'Paperlogy';
  width: 100%;
  display: block;
  font-size: 2.4rem;
  line-height: 36px;
  font-weight: 700;
  /* 40/360 */
  margin-left: 11.111%;
  padding-top: 20px;
}

.round_img {
  /* 280/360 */
  width: 77.777%;
  height: 510px;
  margin: -104px auto 18px;
  border-radius: 400px 0 0 0;
  background: url(../img/value_img.jpg)no-repeat center/cover;
}

.title_text>p {
  font-family: 'Freesentation';
  font-size: 1.8rem;
  line-height: 24px;
  text-align: center;
  /* 0 39 0 39 */
  margin: 0 10.833% 0 10.833%;
  color: #2A2A2A;
}

.title_text>a {
  display: none;
}


/* core_values */
.core_values {
  display: block;
  width: 100%;
  background: url(../img/core_value_img.png)no-repeat center/cover;
}

.core_values_wrap {
  width: 100%;
  height: 1522px;
  background: rgba(0, 0, 0, 0.8);
}

.core_values_wrap>h2 {
  font-family: "Montserrat", serif;
  padding-top: 110px;
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.icon_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}

.icon_text>div {
  width: 40%;
  padding-top: 140px;
  margin-bottom: 70px;
  background: url(../img/icon_01.png)no-repeat center top/114px;
}


.icon_text>div:nth-of-type(1) {
  background-image: url(../img/icon_01.png);
}

.icon_text>div:nth-of-type(2) {
  background-image: url(../img/icon_02.png);
}

.icon_text>div:nth-of-type(3) {
  background-image: url(../img/icon_03.png);
}

.icon_text>div:nth-of-type(4) {
  background-image: url(../img/icon_04.png);
}

.icon_text h3 {
  font-family: 'Freesentation';
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  padding-bottom: 12px;
}

.icon_text p {
  font-family: 'Freesentation';
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  line-height: 20px;
}

.value_box {
  /* 280/360 */
  width: 77.777%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4px;
}

.box_wrap {
  height: 248px;
  margin: 0;
  color: #000;
}

.box_wrap>div {
  background: #EEE;
  font-family: 'Freesentation';
  padding: 30px 27px 29px 27px;
}

.box_wrap>div.swiper-slide-active {
  color: #fff;
  background: rgba(238, 238, 238, 0.4);
}

.box_wrap>div h2 {
  font-size: 2.7rem;
  font-weight: 700;
  padding-bottom: 13px;
}

.box_wrap>div>strong {
  font-size: 1.4rem;
  font-weight: 600;
}

.box_wrap>div>p {
  font-size: 1.4rem;
  line-height: 22px;
  font-weight: 400;
  padding-top: 20px;
}

.extra {
  width: 80%;
  margin: 0 auto;
  position: relative;
  padding-top: 150px;
}

.extra>a {
  position: relative;
  width: 189px;
  height: 78px;
  display: block;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 58px;
  margin: 0 auto;
  line-height: 75px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
}

.extra>button {
  position: absolute;
  top: 30px;
  /* 40/360 */
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 43px;
  text-indent: -9999rem;
}

.extra>.slide_btn_left {
  background: #0059A9 url(../img/left.png)no-repeat center/9px;
}

.extra>.slide_btn_left:disabled {
  opacity: .5;
}

.extra>.slide_btn_right:disabled {
  opacity: .5;
}

.extra>.slide_btn_right {
  margin-left: 94px;
  background: #0059A9 url(../img/right.png)no-repeat center/9px;
}


/* shopping_banner */

.shopping_banner {
  width: 100%;
  display: block;
  position: relative;
}

.shopping_banner_wrap {
  width: 100%;
  height: 820px;
}

.shopping_banner_slider>div {
  overflow: hidden;
}

.shopping_banner_slider {}

/* 1 */
.slider_content_01_1>.bg {}

.slider_content_01_1>div>.bg_img_1 {
  width: 100%;
  height: 820px;
  background: url(../img/shopping_banner.jpg)no-repeat center/cover;
}

.slider_content_01_1>div>.dimmed_bg {
  margin-top: -820px;
  width: 100%;
  height: 150px;
  background: rgba(0, 0, 0, 0.7);
}

.content_wrap>span {
  font-family: "Montserrat", serif;
  position: absolute;
  top: -24px;
  /* -114px */
  left: -20%;
  font-size: 33.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
}

.shopping_text {
  color: #fff;
  /* 40/360 */
  margin: 10px 11.111%;
}

.shopping_text>span {
  font-family: "Montserrat", serif;
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 14px;
}

.shopping_text>h3 {
  font-family: 'Paperlogy';
  display: block;
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 56px;
}

.shopping_text>p {
  display: none;
}

.shopping_text>a {
  font-family: 'Paperlogy';
  display: block;
  text-align: center;
  width: 246px;
  height: 70px;
  line-height: 66px;
  margin: 132px auto 20px;
  border: 1px solid #fff;
  border-radius: 35px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.content_wrap>.box_1 {
  position: relative;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 297px;
  height: 139px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
}

.white_box {
  width: 157px;
  height: 140px;
  background: #fff;
  border-radius: 50px;
}

.white_box>.product_img_01 {
  width: 157px;
  height: 140px;
  background: url(../img/bose_ultra_open_earbuds.png)no-repeat center/contain;
}

.box_product_text {
  font-family: 'Freesentation';
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  /* 200/360 */
  margin-left: 58.555%;
  color: #000;
}

.box_product_text p {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 28px;
}

.box_product_text p:nth-child(3) {
  margin-bottom: 20px;
}

.box_product_text>span {
  display: none;
}

/* 2 */
.slider_content_01_2 {
  /* display: none; */
}

.slider_content_01_2>div>.bg_img_2 {
  width: 100%;
  height: 820px;
  background: url(../img/shopping_banner_02.png)no-repeat center/cover;
}

.slider_content_01_2>div>.dimmed_bg {
  /* position:absolute;
  top:0; */
  margin-top: -820px;
  width: 100%;
  height: 150px;
  background: rgba(0, 0, 0, 0.7);
}

.slider_content_01_2>.content_wrap>.shopping_text>a {
  font-family: 'Paperlogy';
  display: block;
  text-align: center;
  width: 246px;
  height: 70px;
  line-height: 66px;
  margin: 188px auto 20px;
  border: 1px solid #fff;
  border-radius: 35px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.white_box>.product_img_02 {
  width: 157px;
  height: 140px;
  background: url(../img/soundlink_speaker.png)no-repeat center/contain;
}

/* 3 */
.slider_content_01_3>div>.bg_img_3 {
  width: 100%;
  height: 820px;
  background: url(../img/shopping_banner_03.png)no-repeat center/cover;
}

.slider_content_01_3>div>.dimmed_bg {
  /* position:absolute;
  top:0; */
  margin-top: -820px;
  width: 100%;
  height: 150px;
  background: rgba(0, 0, 0, 0.7);
}

.white_box>.product_img_03 {
  width: 157px;
  height: 140px;
  background: url(../img/bose_smart_soundbar.png)no-repeat center/contain;
}

.slider_content_01_3>.content_wrap>.shopping_text>a {
  font-family: 'Paperlogy';
  display: block;
  text-align: center;
  width: 246px;
  height: 70px;
  line-height: 66px;
  margin: 132px auto 20px;
  border: 1px solid #fff;
  border-radius: 35px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.shopping_banner_wrap>.shopping-pagination {
  position: absolute;
  bottom: 50px;
  left: 0;
  text-align: center;
  z-index: 100;
}

.shopping_banner .shopping-pagination>.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #7E7E7E;
  opacity: 1;
  margin: 0 15px;
}

.shopping_banner .shopping-pagination>.swiper-pagination-bullet-active {
  background-color: #fff;
}


/* new_product */

.new_product {
  width: 100%;
  position: relative;
}

.new_product_wrap {}

.new_product_wrap h2 {
  font-family: "Montserrat", serif;
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 60px;
}

.slider_content_02_wrap p {
  font-family: 'Freesentation';
  color: #fff;
  font-size: 2.7rem;
  font-weight: 800;
  padding-bottom: 12px;
}

.slider_content_02_wrap span {
  font-family: 'Freesentation';
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
}

.slider_content_02 {}

.slider_content_02 .swiper-slide {
  width: 100%;
}

.slider_content_02 .swiper-slide-active>div {
  background: linear-gradient(to bottom, #001133 0%, #657baa 100%);
}

.slider_content_02_wrap {}

/* 1 */
.gradi_box_01_wrap {
  width: 280px;
  height: 620px;
  text-align: center;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, #eeeeee 0%, #f9f9f9 100%);
  border-radius: 115px;
}

.gradi_box_01_wrap>.img_01_1 {
  width: 380px;
  height: 380px;
  margin-left: -100px;
  background: url(../img/new_product_img_01.png)no-repeat center/cover;
}

.gradi_box_01_wrap>p {
  padding-top: 14px;
}

.gradi_box_01_wrap>a {
  display: block;
  width: 70px;
  height: 70px;
  background: #fff url(../img/arrow_b.png)no-repeat center/24px;
  border-radius: 45px;
  /* 위 오 아 왼 */
  margin: 24px auto;
}

/* 2 */
.gradi_box_02_wrap {
  width: 280px;
  height: 620px;
  text-align: center;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, #eeeeee 0%, #f9f9f9 100%);
  border-radius: 115px;
}

.gradi_box_02_wrap>.img_01_2 {
  width: 340px;
  height: 340px;
  margin-left: -100px;
  background: url(../img/new_product_img_02.png)no-repeat center/cover;
}

.gradi_box_02_wrap>p {
  padding-top: 20px;
}

.gradi_box_02_wrap>a {
  display: block;
  width: 70px;
  height: 70px;
  background: #fff url(../img/arrow_b.png)no-repeat center/24px;
  border-radius: 45px;
  /* 위 오 아 왼 */
  margin: 24px auto;
}

/* 3 */
.gradi_box_03_wrap {
  width: 280px;
  height: 620px;
  text-align: center;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, #eeeeee 0%, #f9f9f9 100%);
  border-radius: 115px;
}

.gradi_box_03_wrap>.img_01_3 {
  width: 340px;
  height: 340px;
  margin-left: -80px;
  background: url(../img/new_product_img_03.png)no-repeat center/cover;
}

.gradi_box_03_wrap>p {
  padding-top: 54px
}

.gradi_box_03_wrap>a {
  display: block;
  width: 70px;
  height: 70px;
  background: #fff url(../img/arrow_b.png)no-repeat center/24px;
  border-radius: 45px;
  /* 위 오 아 왼 */
  margin: 24px auto;
}

/* 4 */
.gradi_box_04_wrap {
  width: 280px;
  height: 620px;
  text-align: center;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, #eeeeee 0%, #f9f9f9 100%);
  border-radius: 115px;
}

.gradi_box_04_wrap>.img_01_4 {
  width: 340px;
  height: 340px;
  margin-left: -60px;
  background: url(../img/new_product_img_04.png)no-repeat center/cover;
}

.gradi_box_04_wrap>p {
  padding-top: 20px;
}

.gradi_box_04_wrap>a {
  display: block;
  width: 70px;
  height: 70px;
  background: #fff url(../img/arrow_b.png)no-repeat center/24px;
  border-radius: 45px;
  /* 위 오 아 왼 */
  margin: 24px auto;
}

/* 5 */
.gradi_box_05_wrap {
  width: 280px;
  height: 620px;
  text-align: center;
  margin: 0 auto;
  background: radial-gradient(ellipse at center, #eeeeee 0%, #f9f9f9 100%);
  border-radius: 115px;
}

.gradi_box_05_wrap>.img_01_5 {
  width: 340px;
  height: 340px;
  margin-left: -100px;
  background: url(../img/new_product_img_05.png)no-repeat center/cover;
}

.gradi_box_05_wrap>p {
  padding-top: 54px;
}

.gradi_box_05_wrap>a {
  display: block;
  width: 70px;
  height: 70px;
  background: #fff url(../img/arrow_b.png)no-repeat center/24px;
  border-radius: 45px;
  /* 위 오 아 왼 */
  margin: 24px auto;
}

.new_product_wrap>a {
  font-family: 'Freesentation';
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  display: block;
  margin-top: 50px;
  text-indent: 100px;
}

.new_product_wrap>a:after {
  content: " ";
  display: inline-block;
  width: 54px;
  height: 30px;
  vertical-align: 7px;
  margin-left: 47px;
  background: url(../img/arrow_half.png)no-repeat center/cover;
}

.new_product>.swiper-button-next:after {
  font-size: 0;
}

.new_product>.swiper-button-prev:after {
  font-size: 0;
}

.new_product>.swiper-button-next {
  margin-right: 20px;
  width: 40px;
  height: 90px;
  background: url(../img/right_black.png)no-repeat center/cover;
}

.new_product>.swiper-button-prev {
  margin-left: 20px;
  width: 40px;
  height: 90px;
  background: url(../img/left_black.png)no-repeat center/cover;
}


/* introduce_bose */
.introduce_bose {
  width: 100%;
}

.banner {
  width: 100%;
  height: 520px;
  background: url(../img/introduce_img.png)no-repeat 25% center/cover;
}

.banner>.dimmed_bg_02 {
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.banner h2 {
  font-family: "Montserrat", serif;
  font-size: 7rem;
  font-weight: 700;
  display: block;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding-top: 153px;
}

.content_04 {}

.content_04_wrap {}

.content_04_wrap h3 {
  font-family: 'Paperlogy';
  font-size: 4.6rem;
  line-height: 58px;
  font-weight: 800;
  text-align: center;
  margin-top: 82px;
}

.content_04_wrap p {
  font-family: 'Freesentation';
  font-size: 2.4rem;
  line-height: 34px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;

}

/* 1 */
.sound {}

.sound>.gray_bg_1 {
  /* 246/360 */
  width: 68.333%;
  height: 514px;
  display: block;
  background: #EEE;
  margin-left: auto;
}

.sound>.img_1 {
  /* 280/360 */
  width: 77.777%;
  height: 450px;
  display: block;
  position: absolute;
  /* 40/360 */
  margin: -400px 11.111%;
  background: url(../img/sound_img.JPG)no-repeat center/cover;
  border-radius: 100px 0 100px 0;
}

.text_01 p {
  /* 48/360 */
  padding: 0 13.333% 100px;
}

/* 2 */

.innovation {}

.innovation>.gray_bg_2 {
  /* 246/360 */
  width: 68.333%;
  height: 514px;
  display: block;
  background: #EEE;
  margin-right: auto;
}

.innovation>.img_2 {
  /* 280/360 */
  width: 77.777%;
  height: 450px;
  display: block;
  position: absolute;
  /* 50/360 */
  margin: -400px 11.111%;
  background: url(../img/innovation_img.jpg)no-repeat center/cover;
  border-radius: 100px 0 100px 0;
}

.text_02 p {
  /* 42/360 */
  padding: 0 11.666%;
}


/* product_shopping */
.product_shopping {
  width: 100%;
}

.product_shopping_wrap {}

.slider_content_03 {}

.slider_content_03_wrap {
  transition-timing-function: linear;
}

.slider_content_03_wrap>div>.dimmed_product_bg {
  position: absolute;
  top: 0;
  width: 130%;
  height: 640px;
  background: rgba(0, 0, 0, 0.5);
}

.slider_content_03_wrap p {
  font-family: 'Freesentation';
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 303px;
  left: 50%;
  transform: translateX(-50%);
}

.slider_content_03_wrap a {
  width: 76px;
  height: 76px;
  display: block;
  background: url(../img/360_round_arrow.png)no-repeat center/cover;
  position: absolute;
  bottom: 82px;
  /* 40/360 */
  right: 11.111%;
  /* border:1px solid red; */
}

.content_01 {
  position: relative;
}

.content_01>.product_bg_img_01 {
  width: 130%;
  height: 640px;
  background: url(../img/image_soundbar.png)no-repeat center/cover;
}

.content_01>p {}

/* 2 */
.content_02>.product_bg_img_02 {
  width: 130%;
  height: 640px;
  background: url(../img/image_headphone.png)no-repeat center/cover;
}

.content_02>p {
  display: block;
}

/* 3 */
.content_03>.product_bg_img_03 {
  width: 130%;
  height: 640px;
  background: url(../img/image_speaker_2.png)no-repeat center/cover;
}

.content_03>p {
  display: block;
}

/* 4 */
.content_04>.product_bg_img_04 {
  width: 130%;
  height: 640px;
  background: url(../img/image_bose_qc_ultra_earbuds.png)no-repeat center/cover;
}

.content_04>p {
  display: block;
}

/* 5 */
.content_05>.product_bg_img_05 {
  width: 130%;
  height: 640px;
  background: url(../img/image_bose_micro_speaker.png)no-repeat center/cover;
}

.content_05>p {
  display: block;
}

/* 6 */
.content_06>.product_bg_img_06 {
  width: 130%;
  height: 640px;
  background: url(../img/image_bose_qc_ultra_2.png)no-repeat center/cover;
}

.content_06>p {
  display: block;
}

.slider_content_03>.product-pagination {
  position: absolute;
  bottom: 50px;
  left: 0;
  text-align: center;
  z-index: 100;
}

.product-pagination>.swiper-pagination-bullet {
  width: 19px;
  height: 19px;
  background-color: #828282;
  opacity: 1;
}

.product-pagination>.swiper-pagination-bullet-active {
  background-color: #fff;
}

/* footer */
footer {
  width: 100%;
  height: 720px;
  background: #171717;
}

.footer_wrap {
  padding-top: 96px;
  /* border: 2px solid red; */
}

.footer_wrap>.ir_pm {
  display: block;
  width: 246px;
  height: 105px;
  background: url(../img/bose_logo_white.png)no-repeat center/contain;
  margin: 0 auto;
}

.footer_text {
  font-family: 'Freesentation';
  font-size: 1.4rem;
  line-height: 22px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  /*42/360 */
  padding: 30px 11.666%;

}

.footer_text>p:nth-child(4) {
  padding-bottom: 80px;
  border-bottom: 1px solid #fff;
}

.footer_social {
  padding-top: 40px;
  text-indent: -9999em;
}

.footer_social>.social {
  display: flex;
  justify-content: space-between;
  width: 280px;
  margin: 0 auto;
}

.social>li {
  width: 64px;
  height: 64px;
  background: #707070;
  border-radius: 35px;
}

.social>li>a {
  display: block;
  width: 100%;
  height: 100%;
}

.social>li:nth-child(1)>a {
  display: block;
  background: url(../img/youtube_w.png)no-repeat center/32px;
}

.social>li:nth-child(2)>a {
  display: block;
  background: url(../img/insta_w.png)no-repeat center/32px;
}

.social>li:nth-child(3)>a {
  display: block;
  background: url(../img/faceboock_w.png)no-repeat center/32px;
}

.social>li:nth-child(4)>a {
  display: block;
  background: url(../img/x_w.png)no-repeat center/32px;
}