@charset "utf-8";

/* tablet-768 */
@media screen and (min-width:768px) {

  /* header */

  /* body {
    background: #fff;
  } */

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

  .header_top {}

  header h1 {
    /* position: absolute; */
    top: -40px;
    /* left: 50%;
    transform: translateX(-50%); */
    top: 70px;
    /* 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: 69px;
    /* 48/768*/
    left: 6.25%;
    z-index: 110;
  }

  .btn_input {
    display: block;
    width: 30px;
    height: 40px;
    position: absolute;
    top: 56px;
    left: 6.25%;
    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;
  }

  z .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/768 */
    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/768 */
    margin-left: 5.208%;
    text-transform: uppercase;
    margin-top: 162px;
  }

  .gnb>li {
    font-size: 1.8rem;
    /* text-align: center;
    font-family: "Montserrat", serif; */
    font-weight: 500;
    height: 160px;
  }

  .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>a:hover {
    color: #657BAA;
    font-weight: 700;
  }


  .icon {
    text-indent: -9999em;
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 69px;
    /* 50/768 */
    right: 6.510%;
    width: 116px;
    height: 26px;

  }

  .icon>li {}

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

  .icon>li:nth-child(1) {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/search_01.png)no-repeat center/cover;
  }

  .icon>li:nth-child(2) {
    display: block;
    width: 22px;
    height: 26px;
    background: url(../img/shoppingbag_01.png)no-repeat center/cover;
  }

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


  /* main */

  main {
    /* width: 100%; */
    margin-top: 124px;
    /* overflow: hidden; */
  }

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

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

  /* .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.6rem;
    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: 22px;
    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: 938px;
    /* position: relative; */
  }

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

  /* value */

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

  .value_wrap {}

  .title_text>h2 {
    font-family: "Montserrat", serif;
    font-size: 8rem;
    /* 48/768 */
    margin-left: 6.25%;
    /* text-transform: uppercase;
    font-weight: 700; */
  }

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

  .title_text>strong br {
    display: none;
  }

  .title_text>strong {
    font-family: 'Paperlogy';
    width: 326px;
    display: block;
    font-size: 2.6rem;
    line-height: 40px;
    font-weight: 700;
    /* 48/768 */
    margin-left: 6.25%;
    padding-top: 40px;
  }

  .value_br {
    display: none;
  }

  .round_img {
    /*522/768 */
    width: 67.968%;
    height: 760px;
    margin: -104px 6.25% 28px 25.781%;
    border-radius: 455px 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: right;
    /* 0 224 0 48 */
    margin: 0 6.25% 0 29.166%;
    /* color: #2A2A2A; */
  }

  .title_text>a {
    position: absolute;
    bottom: 648px;
    left: 6.25%;
    display: block;
    width: 218px;
    height: 78px;
    color: #000;
    border: 2px solid #000;
    border-radius: 58px;
    margin: 0 auto;
    line-height: 75px;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
  }


  /* 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: 1462px;
    /* background: rgba(0, 0, 0, 0.8); */
  }

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

  .core_values_br {
    display: none;
  }

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

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

  /* .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.6rem;
    /* color: #fff;
    font-weight: 700; */
    padding-bottom: 20px;
  }

  .icon_text p {
    /* font-family: 'Freesentation'; */
    font-size: 1.6rem;
    /* color: #fff;
    font-weight: 400; */
    line-height: 26px;
  }

  .value_box {
    /* 516/768 */
    width: 67.187%;
    /* 309/768 */
    margin-left: 40.234%;
    margin-right: auto;
    padding-top: 107px;
  }

  .box_wrap {
    height: 306px;
    margin: 0;
    /* color: #000; */
  }

  .box_wrap>div {
    /* background: #EEE;
    font-family: 'Freesentation'; */
    padding: 60px 133px 59px 26px;
  }

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

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

  .box_wrap>div>strong {
    font-size: 1.6rem;
    /* font-weight: 600; */
  }

  .box_wrap>div>p {
    font-size: 1.6rem;
    line-height: 24px;
    /* font-weight: 400; */
    padding-top: 30px;
  }

  .extra {
    width: 90%;
    margin: 0 auto;
    position: relative;
    left: 0;
    padding-top: 0;
  }

  .extra>a {
    position: absolute;
    bottom: 0;
    width: 174px;
    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: -166px;
    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: 982px;
  }

  /* .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: 982px;
    /* background: url(../img/shopping_banner.jpg)no-repeat center/cover; */
  }

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

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

  .shopping_text {
    /* color: #fff; */
    /* 50/768 */
    margin: 18px 6.510%;
  }

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

  .shopping_text>h3 {
    /* font-family: 'Paperlogy';
    display: block; */
    font-size: 6rem;
    /* font-weight: 600; */
    line-height: 72px;
  }

  .shopping_h3_1_br {
    display: none;
  }

  .shopping_text>p {
    display: block;
    font-size: 1.8rem;
    line-height: 24px;
    padding-top: 36px;
    padding-right: 267px;
  }

  .shopping_text>a {
    font-family: 'Paperlogy';
    display: block;
    text-align: center;
    width: 246px;
    height: 70px;
    line-height: 66px;
    margin: 68px 6.510% 63px 0;
    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;
    /* 309/768 */
    margin: 0 40.234%;
    width: 411px;
    height: 200px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
  }

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

  .white_box>.product_img_01 {
    width: 175px;
    height: 200px;
    background: url(../img/bose_ultra_open_earbuds.png)no-repeat center/cover;
  }

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

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

  .box_product_text>span {
    display: block;
    padding-top: 10px;
    font-size: 2.4rem;
  }

  .text_br_1 {
    display: none;
  }

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

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

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

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

  .slider_content_01_2>.content_wrap>.shopping_text>a {
    font-family: 'Paperlogy';
    display: block;
    text-align: center;
    width: 246px;
    height: 70px;
    line-height: 66px;
    /* 50/768*/
    margin: 68px 6.510% 63px 0;
    border: 1px solid #fff;
    border-radius: 35px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
  }

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

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

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

  .shopping_h3_3_br {
    display: none;
  }

  .slider_content_01_3>.content_wrap>.shopping_text>a {
    font-family: 'Paperlogy';
    display: block;
    text-align: center;
    width: 246px;
    height: 70px;
    line-height: 66px;
    /* 50/768*/
    margin: 68px 6.510% 63px 0;
    border: 1px solid #fff;
    border-radius: 35px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
  }

  .slider_content_01_3>.box_1>.box_product_text {
    position: absolute;
    bottom: 30px;
    /* 200/360 */
    margin-left: 58.555%;
  }

  .shopping_banner_wrap>.shopping-pagination {
    position: absolute;
    bottom: 60px;
    left: 6.510%;
    text-align: left;
    z-index: 100;
  }

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

  .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: 6rem;
    /* font-weight: 700;
  text-transform: uppercase;
  text-align: center; */
    padding-bottom: 0;
  }

  .new_product_br {
    display: none;
  }

  .slider_content_02_wrap p {
    font-family: 'Freesentation';
    color: #000;
    font-size: 3.2rem;
    /* font-weight: 800; */
    padding-bottom: 12px;
  }

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

  .slider_content_02 {}

  .slider_content_02 .swiper-slide {
    width: 50%;
    margin-top: 60px;
  }

  .slider_content_02 .swiper-slide>div {
    margin-top: 70px;
  }

  .slider_content_02 .swiper-slide-active>div {
    height: 690px;
    background: linear-gradient(to bottom, #001133 0%, #657baa 100%);
    margin-top: 0;
    color: #fff;
  }

  .slider_content_02 .swiper-slide-active>div>div:nth-of-type(1) {
    width: 460px;
    height: 460px;
  }

  .slider_content_02 .swiper-slide-active>div p,
  .slider_content_02 .swiper-slide-active>div span {
    color: #fff;
  }

  .slider_content_02_wrap {}

  /* 1 */
  .gradi_box_01_wrap {
    /* 350/768 */
    width: 100%;
    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: 390px;
    height: 390px;
    margin-left: -130px;
    /* background: url(../img/new_product_img_01.png)no-repeat center/cover; */
  }

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

  .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: 20px auto;
  }

  /* 2 */
  .gradi_box_02_wrap {
    /* 350/768 */
    width: 100%;
    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: 390px;
    height: 390px;
    margin-left: -100px;
    /* background: url(../img/new_product_img_02.png)no-repeat center/cover; */
  }

  .gradi_box_02_wrap>p {
    padding-top: 0;
  }

  .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: 20px auto;
  }

  /* 3 */
  .gradi_box_03_wrap {
    /* 350/768 */
    width: 100%;
    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: 390px;
    height: 390px;
    margin-left: -100px;
    /* background: url(../img/new_product_img_03.png)no-repeat center/cover; */
  }

  .gradi_box_03_wrap>p {
    padding-top: 0;
  }

  .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: 20px auto;
  }

  /* 4 */
  .gradi_box_04_wrap {
    /* 350/768 */
    width: 100%;
    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: 380px;
    height: 380px;
    margin-left: -76px;
    background: url(../img/new_product_img_04.png)no-repeat center/cover;
  }

  .gradi_box_04_wrap>p {
    padding-top: 0;
  }

  .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: 20px auto;
  }

  /* 5 */
  .gradi_box_05_wrap {
    width: 100%;
    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: 390px;
    height: 390px;
    margin-left: -130px;
    background: url(../img/new_product_img_05.png)no-repeat center/cover;
  }

  .gradi_box_05_wrap>p {
    padding-top: 0;
  }

  .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: right;
    display: block;
    margin-top: 40px;
    /* 50/768 */
    margin-right: 6.510%;
    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: 92px;
    width: 40px;
    height: 90px;
    background: url(../img/right_black.png)no-repeat center/cover;
  }

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


  /* introduce_bose */

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

  .banner {
    width: 100%;
    height: 640px;
    /* 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: 264px;
  }

  .content_04 {}

  .content_04_wrap {}

  .content_04_wrap h3 {
    /* font-family: 'Paperlogy'; */
    font-size: 6rem;
    line-height: 70px;
    /* font-weight: 800; */
    text-align: left;
    margin-top: 48px;
  }

  .content_04_wrap h3 br:first-child {
    display: none;
  }

  .content_04_wrap p {
    font-family: 'Freesentation';
    font-size: 2.6rem;
    line-height: 36px;
    /* font-weight: 500; */
    text-align: left;
    margin-top: 30px;

  }

  /* 1 */
  .sound {}

  .sound>.gray_bg_1 {
    /* 546/768 */
    width: 71.093%;
    height: 722px;
    /* display: block;
    background: #EEE;
    margin-left: auto; */
  }

  .sound>.img_1 {
    /* 584/768 */
    width: 76.041%;
    height: 620px;
    display: block;
    position: absolute;
    /* 135/768 */
    margin: -620px 17.578%;
    /* background: url(../img/sound_img.JPG)no-repeat center/cover; */
    border-radius: 170px 0 170px 0;
  }

  .text_01 h3 {
    /* 50/768 */
    margin-left: 6.510%;
  }

  .text_01 p {
    /* 170/768  50/768*/
    padding: 0 22.135% 110px 6.510%;
  }

  /* 2 */

  .innovation {}

  .innovation>.gray_bg_2 {
    /* 546/768 */
    width: 71.093%;
    height: 722px;
    /* display: block;
    background: #EEE;
    margin-right: auto; */
  }

  .innovation>.img_2 {
    /* 584/768 */
    width: 76.041%;
    height: 620px;
    /* display: block;
    position: absolute; */
    /* 50/768 */
    margin: -620px 6.510%;
    /* background: url(../img/innovation_img.jpg)no-repeat center/cover; */
    border-radius: 170px 0 170px 0;
  }

  .text_02 h3 {
    text-align: right;
    /* 50/768 */
    margin-right: 6.510%;
  }

  .text_02 p {
    text-align: right;
    /* 50/768 170/768 */
    padding: 0 6.510% 0 22.135%;
  }


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

  .product_shopping_wrap {}

  .slider_content_03 {}

  /* 
  .slider_content_03_wrap {
    animation:bannermove 15s linear infinite;
  }

  @keyframes bannermove {
    0% {
      transform:translate(0,0);
    }
    
    100% {
      transform:translate(-50%,0);
    }
  } */


  .slider_content_03_wrap>div {
    width: 65%;
  }

  .slider_content_03_wrap>div>.dimmed_product_bg {
    position: absolute;
    top: 0;
    width: 130%;
    height: 900px;
    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: 433px;
    /* left: 50%;
  transform: translateX(-50%); */
  }

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

  .content_01 {
    position: relative;
  }

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

  .content_01>p {}

  /* 2 */
  .content_02>.product_bg_img_02 {
    width: 130%;
    height: 900px;
    /* 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: 900px;
    /* 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: 900px;
    /* 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: 900px;
    /* 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: 900px;
    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; */
  }

  /* .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.8rem;
    line-height: 32px;
    /* font-weight: 300;
    color: #fff;
    text-align: center; */
    /* 58/768 60/768 */
    padding: 26px 7.552% 0 7.812%;

  }

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

  .footer_social {
    padding-top: 60px;
    /* text-indent: -9999em; */
  }

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

  .social>li {
    width: 70px;
    height: 70px;
    /* 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;
  } */

}

/* tablet-768-end */