@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-weight: 500;
  margin: 0;
  background-image: url("../images/pc/bg_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media (max-width: 1169px) {
  .tab-only {
    display: inline-block !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: inline-block !important;
  }
}

/*Loading*/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 200px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.spinner > div {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #f05d43;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.24s;
  animation-delay: -0.16s;
  background-color: #af5ac4;
}

.spinner .bounce3 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #af5ac4;
}

.spinner .bounce4 {
  -webkit-animation-delay: -0.08s;
  animation-delay: -0.16s;
  background-color: #af5ac4;
}

.spinner .bounce3 {
  background-color: #36c2b9;
}

.spinner .bounce4 {
  background-color: #3768c4;
}

.spinner .bounce5 {
  background-color: #8cc63f;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*ページ内リンク位置調整*/
#lineup {
  position: relative;
  top: -150px;
}

/*PC表示*/
.block-left,
.block-right {
  width: calc((100% - 500px) / 2);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  position: fixed;
}
@media (max-width: 1169px) {
  .block-left,
  .block-right {
    display: none;
  }
}

.block-left {
  padding-top: 40px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  margin-left: -450px;
}
.block-left__logo {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .block-left-onlineshop {
    width: 51%;
    margin-left: auto;
    margin-right: auto;
  }
}
.block-left-onlineshop__title {
  font-size: 19px;
  font-weight: 700;
  padding-top: 50px;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .block-left-onlineshop__title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

.block-left-onlineshop-list {
  padding-left: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 338px;
}
@media (max-width: 1169px) {
  .block-left-onlineshop-list {
    display: block;
    width: 100%;
  }
}
.block-left-onlineshop-list__item {
  list-style: none;
  margin-bottom: 8px;
}
@media (max-width: 1169px) {
  .block-left-onlineshop-list__item {
    margin-bottom: 10px;
  }
}
.block-left-onlineshop-list__item a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 100px;
  overflow: hidden;
  width: 163px;
  height: 44px;
  background-color: #fff;
}
@media (max-width: 1169px) {
  .block-left-onlineshop-list__item a {
    width: 250px;
    max-width: 100%;
    height: 67px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .block-left-onlineshop-list__item a {
    width: 100%;
    height: 0;
    padding-top: 27%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.block-left-onlineshop-list__item img {
  max-height: 100%;
}
@media (max-width: 1169px) {
  .block-left-onlineshop-list__item img {
    max-height: 80px;
  }
}
@media (max-width: 767px) {
  .block-left-onlineshop-list__item img {
    display: none;
  }
}
@media (max-width: 767px) {
  .block-left-onlineshop-list__item.is-amazon a {
    background-image: url(../images/pc/nav_onlineshop_01.png);
  }
  .block-left-onlineshop-list__item.is-lohaco a {
    background-image: url(../images/pc/nav_onlineshop_03.png);
  }
  .block-left-onlineshop-list__item.is-rakuten a {
    background-image: url(../images/pc/nav_onlineshop_02.png);
  }
  .block-left-onlineshop-list__item.is-shop a {
    background-image: url(../images/pc/nav_onlineshop_04.png);
  }
}

.block-right {
  padding-top: 90px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  margin-left: 470px;
}
.block-right img {
  vertical-align: top;
}

.block-right-menu__item {
  margin-bottom: 10px;
}
.block-right-menu__item a {
  font-size: 12px;
  position: relative;
  padding-right: 20px;
}
.block-right-menu__item a:hover {
  border-bottom: 2px solid #F08307;
}
.block-right-menu__item a:hover:after {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../images/common/icon-linkhover.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 1px;
}
.block-right-menu__item a img {
  height: 21px;
  vertical-align: 0;
  padding-right: 6px;
}
.block-right-menu__product-item a {
  font-size: 13px;
  position: relative;
  padding-right: 20px;
}
.block-right-menu__product-item a:hover:after {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../images/common/icon-linkhover.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 1px;
}
.block-right-menu__product-item a img {
  padding-right: 7px;
  vertical-align: -2px;
}

.block__inner {
  display: inline-block;
}

.block-right-banner {
  margin-top: 75px;
}
@media (max-width: 1169px) {
  .block-right-banner {
    width: 250px;
    max-width: 51%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -35px;
    margin-bottom: 20px;
    display: block !important;
  }
  .block-right-banner img {
    width: 100%;
  }
}

/*コンテンツ*/
.block-content {
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
  /*@include pc {    
    box-shadow: 0px 0px 12px 0px rgba(247, 190, 62, 0.75);
  }*/
}
@media screen and (min-width: 768px) {
  .block-content {
    box-shadow: 0px 0px 12px 0px rgba(247, 190, 62, 0.75);
  }
}
@media screen and (min-width: 1160px) {
  .block-content {
    max-width: 500px;
  }
}

.kv {
  position: relative;
  z-index: 2;
}
.kv__title {
  z-index: 3;
  position: absolute;
  width: 30%;
  left: 7%;
  top: 5%;
}
.kv__copy {
  width: 88%;
  position: absolute;
  left: 5%;
  bottom: -1%;
  z-index: 3;
}
.kv__bubble {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  left: 0;
  top: 0;
}
.kv .swiper img {
  width: 100%;
}

/*KVバブル*/
.bubble {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: bubble 15000s ease-in infinite;
  opacity: 0.45;
  z-index: 2;
}

.bubble:nth-child(2) {
  width: 15px;
  height: 15px;
  left: 20%;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  width: 10px;
  height: 10px;
  left: 0;
  animation-duration: 5s;
}

.bubble:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 25%;
  animation-duration: 10s;
  animation-delay: 2s;
}

.bubble:nth-child(5) {
  width: 15px;
  height: 15px;
  left: 15%;
  animation-duration: 8s;
}

.bubble:nth-child(6) {
  width: 8px;
  height: 8px;
  left: 12%;
  animation-duration: 7s;
}

.bubble:nth-child(7) {
  width: 13px;
  height: 13px;
  left: 20%;
  animation-duration: 4s;
}

.bubble02 {
  position: absolute;
  bottom: 0;
  width: 5px;
  height: 5px;
  background-color: transparent;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: bubble02 15000s ease-in infinite;
  opacity: 0.45;
  z-index: 2;
}

.bubble02:nth-child(2) {
  width: 10px;
  height: 10px;
  left: 10%;
  animation-delay: 1.5s;
}

.bubble02:nth-child(3) {
  width: 18px;
  height: 18px;
  left: 13%;
  animation-duration: 9.5s;
}

.bubble02:nth-child(4) {
  width: 8px;
  height: 8px;
  left: 15%;
  animation-duration: 10s;
  animation-delay: 2.5s;
}

.bubble02:nth-child(5) {
  width: 13px;
  height: 13px;
  left: 15%;
  animation-duration: 8.5s;
}

.bubble02:nth-child(6) {
  width: 15px;
  height: 15px;
  left: 8%;
  animation-duration: 7.5s;
}

.bubble02:nth-child(7) {
  width: 20px;
  height: 20px;
  left: 10%;
  animation-duration: 6.5s;
}

@keyframes bubble {
  0% {
    bottom: 0;
    transform: translateX(0);
    opacity: 0;
  }
  40% {
    opacity: 0.45;
  }
  50% {
    transform: translateX(100px);
  }
  80% {
    opacity: 0;
  }
  100% {
    bottom: 500px;
    opacity: 0;
  }
}
@keyframes bubble02 {
  0% {
    bottom: 0;
    transform: translateX(0);
    opacity: 0;
  }
  40% {
    opacity: 0.45;
  }
  50% {
    transform: translateX(-100px);
  }
  80% {
    opacity: 0;
  }
  100% {
    bottom: 500px;
    opacity: 0;
  }
}
/*KVスクロール*/
.scroll-block {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -60px;
}

.loop_wrap {
  display: flex;
  width: 100vw;
  height: 300px;
  overflow: hidden;
}

.loop_wrap img {
  width: auto;
  max-width: initial;
  height: 100%;
}

.loop_wrap img:first-child {
  animation: loop 100s -50s linear infinite;
}

.loop_wrap img:last-child {
  animation: loop2 100s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.block-content-inner {
  padding: 0 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.block-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
.block-title img {
  width: auto;
  height: 32px;
}
.block-title span {
  display: block;
  font-size: 13px;
  padding-top: 11px;
  margin-top: 17px;
  position: relative;
}
.block-title span:before {
  content: '';
  width: 81px;
  height: 2px;
  background-color: #FFD100;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/*コンセプト*/
.concept__image {
  text-align: center;
  padding-top: 33px;
  background-image: url("../images/common/lead-products-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.concept__image img {
  max-width: 94%;
}
@media (max-width: 767px) {
  .concept__image img {
    width: 85%;
  }
}
.concept__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
@media (max-width: 767px) {
  .concept__text {
    font-size: 13px;
    letter-spacing: -0.5px;
  }
}
.concept__logo {
  text-align: right;
  margin-top: -35px;
}
.concept__logo img {
  max-width: 34%;
}
.concept__line {
  margin-top: -20px;
  margin-bottom: 25px;
}

/*ムービーブロック*/
.movie-block {
  max-width: 440px;
  margin: 30px auto 60px;
}

.movie-buttons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.movie-buttons button {
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 126px;
  max-width: 31.5%;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  background-position: center;
}
.movie-buttons button.movie1 {
  background-image: url("../images/common/movie-btn01_off.png");
}
.movie-buttons button.movie1.active {
  background-image: url("../images/common/movie-btn01_on.png");
}
.movie-buttons button.movie2 {
  background-image: url("../images/common/movie-btn02_off.png");
}
.movie-buttons button.movie2.active {
  background-image: url("../images/common/movie-btn02_on.png");
}
.movie-buttons button.movie3 {
  background-image: url("../images/common/movie-btn03_off.png");
}
.movie-buttons button.movie3.active {
  background-image: url("../images/common/movie-btn03_on.png");
}

.movie-buttton {
  width: 100%;
  height: auto;
  padding-top: 30.9%;
  display: block;
}

.movie-contents .movie-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.movie-contents .movie-content.active {
  display: block;
}

.movie-content__movie {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 5px 5px 8px rgba(255, 217, 57, 0.75);
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie-content__movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.movie-content__title {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 15px;
}
.movie-content__text {
  font-size: 19px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.movie-content__text:before {
  background-color: #ffee80;
  content: '';
  position: absolute;
  bottom: 2px;
  display: inline-block;
  opacity: 0.75;
  width: 100%;
  height: 10px;
  transform: skewX(-50deg);
  z-index: 1;
}
.movie-content__text span {
  display: inline-block;
  z-index: 2;
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*特長*/
.feature__copy {
  width: 400px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -5px;
}
@media (max-width: 767px) {
  .feature__copy {
    max-width: 100%;
  }
}
.feature__copy img {
  width: 100%;
}

.feature-block-header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.feature-block-header__title img {
  width: 100%;
}

.feature-block-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.feature-block-content__text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  background-color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .feature-block-content__text {
    font-size: 13px;
    letter-spacing: -0.8px;
    border-radius: 8px;
    padding: 6px 10px;
  }
}
.feature-block-content__text span {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), 70%, #e8cb00 71% 89%, rgba(255, 255, 255, 0) 90%);
}

.feature-block-point {
  position: relative;
}
@media (max-width: 767px) {
  .feature-block-point {
    margin-top: 1%;
  }
}
.feature-block-point__text--title {
  color: #eda200;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .feature-block-point__text--title {
    font-size: 14px;
    margin-bottom: 1%;
  }
}
.feature-block-point__text--title span {
  display: inline-block;
  z-index: 2;
  position: relative;
  font-size: 21px;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .feature-block-point__text--title span {
    font-size: 17px;
    letter-spacing: -1px;
    line-height: 1.4;
  }
}
.feature-block-point__text--title span:before {
  background-color: #eda200;
  content: '';
  position: absolute;
  left: -1%;
  bottom: 0;
  display: inline-block;
  opacity: 0.75;
  width: 103%;
  height: 25px;
  transform: skewX(-20deg);
  z-index: -1;
}
@media (max-width: 767px) {
  .feature-block-point__text--title span:before {
    height: 23px;
  }
}
.feature-block-point__text--text {
  font-size: 15px;
  color: #000;
  font-weight: 700;
}
@media (max-width: 767px) {
  .feature-block-point__text--text {
    font-size: 12px;
    width: 78%;
  }
}
.feature-block-point__text--text span {
  color: #eda200;
}
.feature-block-point__image {
  position: absolute;
  right: -10px;
  top: -25px;
  width: 26%;
}
@media (max-width: 767px) {
  .feature-block-point__image {
    right: -7%;
    top: -10%;
    width: 26%;
  }
}
.feature-block-point__image img {
  width: 100%;
}

.feature-block-note {
  font-size: 12px;
  color: #1a1a1a;
  margin-top: 20px;
  margin-left: 3%;
}
@media (max-width: 767px) {
  .feature-block-note {
    font-size: 10px;
  }
}

.feature-block.is-no01 .feature-block-header {
  position: relative;
  z-index: 3;
}
.feature-block.is-no01 .feature-block-header__num {
  margin-right: 13%;
  width: 10%;
}
.feature-block.is-no01 .feature-block-header__title {
  margin-top: 46px;
  width: 69%;
}
@media (max-width: 767px) {
  .feature-block.is-no01 .feature-block-header__title {
    margin-top: 13%;
    width: 80%;
  }
}
.feature-block.is-no01 .feature-block-content {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .feature-block.is-no01 .feature-block-content {
    margin-top: 3%;
  }
}
.feature-block.is-no01 .feature-block-content__image {
  margin-left: -30px;
  margin-top: -40px;
  width: 51%;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .feature-block.is-no01 .feature-block-content__image {
    margin-top: -9%;
    width: 80%;
  }
}
.feature-block.is-no01 .feature-block-content__image img {
  width: 100%;
  border-radius: 0 12px 12px 0;
}
.feature-block.is-no01 .feature-block-content__text {
  flex-basis: 55%;
  margin-left: -4%;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .feature-block.is-no01 .feature-block-content__text {
    flex-basis: 80%;
  }
}

.feature-block.is-no02 .feature-block-header {
  display: block;
  margin-top: -15px;
  position: relative;
}
.feature-block.is-no02 .feature-block-header:before {
  content: '';
  width: 75%;
  height: 4px;
  display: block;
  background-image: url("../images/common/dotted.svg");
  background-repeat: repeat-x;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: 30%;
}
.feature-block.is-no02 .feature-block-header__num {
  width: 18%;
  margin-right: -2%;
  margin-left: auto;
  margin-top: -2%;
}
@media (max-width: 767px) {
  .feature-block.is-no02 .feature-block-header__num {
    margin-top: 9%;
  }
}
@media (max-width: 400px) {
  .feature-block.is-no02 .feature-block-header__num {
    margin-top: -9%;
  }
}
.feature-block.is-no02 .feature-block-header__title {
  width: 85%;
  margin-top: -10%;
}
@media (max-width: 767px) {
  .feature-block.is-no02 .feature-block-header__title {
    width: 90%;
  }
}
.feature-block.is-no02 .feature-block-header__title img {
  width: 100%;
}
.feature-block.is-no02 .feature-block-content {
  display: block;
  position: relative;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .feature-block.is-no02 .feature-block-content {
    margin-top: 4%;
  }
}
.feature-block.is-no02 .feature-block-content__text {
  width: 56%;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .feature-block.is-no02 .feature-block-content__text {
    width: 60%;
  }
}
.feature-block.is-no02 .feature-block-content__image {
  position: absolute;
  right: -25px;
  top: 0;
  width: 66%;
}
@media (max-width: 767px) {
  .feature-block.is-no02 .feature-block-content__image {
    top: auto;
    bottom: -50%;
    width: 50%;
  }
}
@media (max-width: 400px) {
  .feature-block.is-no02 .feature-block-content__image {
    bottom: -20%;
    width: 60%;
  }
}

.feature-block.is-no03 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .feature-block.is-no03 {
    margin-top: 12%;
    margin-left: -10px;
  }
}
.feature-block.is-no03 .feature-block-header {
  display: block;
  position: relative;
}
.feature-block.is-no03 .feature-block-header:before {
  content: '';
  width: 75%;
  height: 4px;
  display: block;
  background-image: url("../images/common/dotted.svg");
  background-repeat: repeat-x;
  background-size: 100% auto;
  position: absolute;
  right: 0;
  top: 8%;
}
.feature-block.is-no03 .feature-block-header__num {
  width: 18%;
}
.feature-block.is-no03 .feature-block-header__title {
  width: 64%;
  position: absolute;
  left: 28%;
  top: 26%;
}
@media (max-width: 767px) {
  .feature-block.is-no03 .feature-block-header__title {
    width: 75%;
  }
}
.feature-block.is-no03 .feature-block-content {
  display: block;
  margin-top: -3%;
}
@media (max-width: 767px) {
  .feature-block.is-no03 .feature-block-content {
    margin-top: -1%;
  }
}
.feature-block.is-no03 .feature-block-content__text {
  width: 72%;
  margin-left: 28%;
}
.feature-block.is-no03 .feature-block-content__image {
  margin-top: -8%;
  margin-left: 3%;
  width: 75%;
}
@media (max-width: 767px) {
  .feature-block.is-no03 .feature-block-content__image {
    width: 90%;
    margin-left: 0;
  }
}

/*ヘッダー・コンセプト*/
.header {
  background-image: url("../images/common/bg-concept.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 180px;
}
@media (min-width: 1170px) {
  .header {
    background-position: center -50px;
  }
}
@media (max-width: 767px) {
  .header {
    padding-bottom: 170px;
    background-position: center;
  }
}

/*ラインナップ*/
.lineup {
  background-image: url("../images/common/bg-lineup.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -83px;
  padding-bottom: 50px;
}
.lineup .block-title span:before {
  background-color: #fff;
}
.lineup__header {
  position: relative;
  top: -58px;
}
.lineup__line {
  margin-top: -50px;
}
@media (max-width: 767px) {
  .lineup__line {
    margin-top: -10%;
  }
}

.lineup-lists {
  margin-top: -40px;
}
@media (max-width: 767px) {
  .lineup-lists {
    margin-top: -17%;
  }
}
.lineup-lists__item {
  display: block;
  margin-top: -15px;
}
@media (max-width: 767px) {
  .lineup-lists__item {
    margin-top: -3%;
  }
}

.lineup-note {
  font-size: 10px;
  line-height: 1.3;
  margin-top: 7px;
}
@media (max-width: 767px) {
  .lineup-note {
    letter-spacing: -0.5px;
  }
}

/*製品説明*/
.product {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-top: -30px;
  padding-bottom: 108px;
}
@media (min-width: 501px) and (max-width: 1160px) {
  .product {
    margin-top: -50px;
  }
}
@media (max-width: 500px) {
  .product {
    padding-bottom: 90px;
    margin-top: -30px;
  }
}

.product-inner {
  background-repeat: no-repeat;
  background-position: 16px 80px;
  background-size: 45px auto;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .product-inner {
    background-position: 10px 50px;
    background-size: 30px auto;
    padding-top: 45px;
  }
}

.product-header {
  padding-left: 65px;
  padding-right: 65px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .product-header {
    padding-left: 45px;
    padding-right: 45px;
  }
}
.product-header__image {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 500px) {
  .product-header__image {
    margin-right: 30px;
    margin-left: -10px;
  }
}
@media (max-width: 767px) {
  .product-header__image img {
    max-width: 100%;
  }
}
.product-header__note {
  text-align: right;
  margin-bottom: 10px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .product-header__note {
    font-size: 10px;
  }
}
.product-header__check {
  margin-top: 30px;
  padding-left: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .product-header__check {
    padding-left: 0;
  }
}
.product-header__checklist {
  font-size: 16px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .product-header__checklist {
    font-size: 13px;
  }
}
.product-header__checklist img {
  padding-bottom: 2px;
}
@media (max-width: 767px) {
  .product-header__checklist img {
    width: 17px;
  }
}

.product-details {
  margin-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
  box-sizing: border-box;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 501px) and (max-width: 1160px) {
  .product-details {
    padding-left: 0;
  }
}
@media (max-width: 500px) {
  .product-details {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.product-details__title {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .product-details__title {
    margin-bottom: 5px;
  }
}
.product-details__title img {
  height: 65px;
}
@media (max-width: 767px) {
  .product-details__title img {
    height: 48px;
  }
}
.product-details__type {
  color: #1A1A1A;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  padding: 2px;
  border: 1px solid #1A1A1A;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .product-details__type {
    font-size: 10px;
  }
}
.product-details__name {
  color: #1A1A1A;
  display: inline-block;
  font-size: 14px;
}
@media (max-width: 767px) {
  .product-details__name {
    font-size: 11px;
    letter-spacing: -1px;
  }
}

.product-images {
  margin-top: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
  padding-left: 35px;
  padding-right: 35px;
  box-sizing: border-box;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .product-images {
    margin-top: 20px;
    padding-left: 35px;
    padding-right: 35px;
    width: calc(100% - 30px);
  }
}

.product-image {
  margin-right: 25px;
  text-align: center;
}
@media (max-width: 767px) {
  .product-image {
    margin-right: 20px;
  }
}
.product-image__name {
  display: block;
  font-size: 15px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .product-image__name {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .product-image.is-bottle img {
    width: 56px;
  }
  .product-image.is-pack img {
    width: 78px;
  }
  .product-image.is-bumpo {
    width: 65px;
  }
}

.product-info {
  margin-top: 26px;
  padding-left: 35px;
  padding-right: 35px;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 75px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .product-info {
    margin-top: 20px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 55px;
  }
}
.product-info dl {
  margin-top: 0;
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.product-info dl dt {
  width: 56px;
  height: 26px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 18px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding-bottom: 2px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .product-info dl dt {
    width: 36px;
    height: 22px;
    border-radius: 5px;
    font-size: 13px;
  }
}
.product-info dl dd {
  font-size: 21px;
  margin-left: 7px;
}
@media (max-width: 767px) {
  .product-info dl dd {
    font-size: 15px;
    letter-spacing: -1px;
  }
}
.product-info dl dd span {
  font-size: 16px;
}
@media (max-width: 767px) {
  .product-info dl dd span {
    font-size: 12px;
  }
}
.product-info__image {
  position: absolute;
}

/*POINT*/
.product-point-block {
  width: 90%;
  border-radius: 0 23px 23px 0;
  padding: 50px 14px 70px 33px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .product-point-block {
    padding-left: 20px;
  }
}
.product-point-block__inner {
  margin-top: -70px;
}
@media (max-width: 767px) {
  .product-point-block__inner {
    margin-top: -65px;
  }
}
.product-point-block__title {
  margin-top: 0;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .product-point-block__title {
    width: 140px;
  }
}
.product-point-block__lead--line01 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .product-point-block__lead--line01 {
    font-size: 15px;
  }
}
.product-point-block__lead--line01 span {
  position: relative;
  background: linear-gradient(transparent 70%, #E7CA00 30%);
  background-position: left bottom 3px;
}
.product-point-block__lead--line02 {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
@media (max-width: 767px) {
  .product-point-block__lead--line02 {
    font-size: 18px;
  }
}
.product-point-block__lead--line02:before {
  background-color: #009096;
  content: '';
  position: absolute;
  bottom: 2px;
  display: inline-block;
  opacity: 0.75;
  width: 100%;
  height: 14px;
  transform: skewX(-50deg);
  z-index: 1;
}
.product-point-block__lead--line02 span {
  display: inline-block;
  z-index: 2;
  position: relative;
}
.product-point-block__image {
  margin-top: 40px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .product-point-block__image {
    margin-top: 28px;
  }
}
.product-point-block__note {
  color: #fff;
  font-size: 10px;
}

.product-point-howto {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
}
.product-point-howto__inner {
  width: 90%;
  border-radius: 23px 0 0 23px;
  padding: 10px 82px 10px 23px;
  box-sizing: border-box;
  background-color: #fff;
  margin-top: -20px;
}
@media (max-width: 767px) {
  .product-point-howto__inner {
    padding: 5px 75px 10px 15px;
    border-radius: 18px 0 0 18px;
  }
}
.product-point-howto__subtitle {
  margin-top: -40px;
  margin-bottom: 18px;
  padding-left: 90px;
}
@media (max-width: 767px) {
  .product-point-howto__subtitle {
    padding-left: 20%;
    margin-top: -30px;
    margin-bottom: 10px;
  }
}
.product-point-howto__subtitle span {
  color: #fff;
  font-size: 16px;
  position: relative;
  padding: 0 20px;
  display: inline-block;
}
@media (max-width: 767px) {
  .product-point-howto__subtitle span {
    font-size: 13px;
  }
}
.product-point-howto__subtitle span:before, .product-point-howto__subtitle span:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: #fff;
}
.product-point-howto__subtitle span:before {
  left: 0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.product-point-howto__subtitle span:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.product-point-howto__title {
  font-size: 19px;
  font-weight: 700;
  border-bottom: 2px solid;
  text-align: center;
  padding-bottom: 3px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .product-point-howto__title {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.product-point-howto-list__item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 15px;
}
.product-point-howto-list__item.is-line01 {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .product-point-howto-list__item.is-line01 {
    align-items: flex-start;
  }
}
.product-point-howto-list__num {
  flex-basis: 25px;
  margin-top: 5px;
  text-align: right;
}
@media (max-width: 767px) {
  .product-point-howto-list__num {
    flex-basis: 20px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .product-point-howto-list__num .num01 {
    width: 18px;
  }
}
.product-point-howto-list__text {
  flex-basis: calc(100% - 20px);
  padding-left: 10px;
  box-sizing: border-box;
  font-size: 17px;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .product-point-howto-list__text {
    font-size: 13px;
  }
}
.product-point-howto-list__image {
  text-align: right;
}

/*RESET NIGHT*/
.is-reset {
  background-image: url("../images/resetnight/bg.png");
}
.is-reset .product-inner {
  background-image: url("../images/resetnight/bg-text.svg");
}
.is-reset .product-header__check {
  margin-top: 15px;
}
.is-reset .product-header__checklist {
  color: #007C81;
}
.is-reset .product-header__note {
  margin-top: -15px;
}
.is-reset .product-info dt {
  color: #009197;
}
.is-reset .product-info__image {
  bottom: 36px;
  left: 310px;
}
@media (max-width: 767px) {
  .is-reset .product-info__image {
    bottom: 30px;
    left: 230px;
    width: 100px;
  }
}
.is-reset .product-point-block {
  background: rgba(0, 144, 150, 0.45);
}
.is-reset .product-point-howto__title {
  color: #009096;
}
.is-reset .product-point-howto-list__image {
  margin-top: -22px;
}

/*HOGUSHI OFF*/
.is-hogushi {
  background-image: url("../images/hogushioff/bg.png");
}
.is-hogushi .product-inner {
  background-image: url("../images/hogushioff/bg-text.svg");
  background-position: 16px 70px;
  background-size: 47px auto;
}
@media (min-width: 501px) and (max-width: 1160px) {
  .is-hogushi .product-inner {
    padding-top: 90px;
    background-position: 16px 90px;
  }
}
@media (max-width: 500px) {
  .is-hogushi .product-inner {
    background-position: 10px 50px;
    background-size: 30px auto;
  }
}
.is-hogushi .product-header {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 500px) {
  .is-hogushi .product-header__image {
    margin-right: 20px;
    margin-left: -25px;
  }
}
.is-hogushi .product-header__note {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .is-hogushi .product-header__note {
    margin-top: 10px;
  }
}
.is-hogushi .product-header__check {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .is-hogushi .product-header__check {
    margin-top: 15px;
    margin-left: -10px;
  }
}
.is-hogushi .product-header__checklist {
  color: #7A1F8E;
}
@media (max-width: 767px) {
  .is-hogushi .product-details {
    margin-top: 25px;
  }
}
.is-hogushi .product-info dt {
  color: #8D429F;
}
.is-hogushi .product-info__image {
  bottom: 10px;
  left: 330px;
}
@media (max-width: 767px) {
  .is-hogushi .product-info__image {
    bottom: 10px;
    left: 240px;
    width: 75px;
  }
}
.is-hogushi .product-point-block {
  background: rgba(163, 128, 219, 0.45);
}
.is-hogushi .product-point-block__lead--line02:before {
  background-color: #A960B4;
}
.is-hogushi .product-point-howto__title {
  color: #A960B4;
  letter-spacing: -1.5px;
}
.is-hogushi .product-point-howto-list__image {
  margin-top: -28px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .is-hogushi .product-point-howto-list__image {
    margin-top: 0;
  }
  .is-hogushi .product-point-howto-list__image img {
    width: 40%;
  }
}

/*DIGI CARE*/
.is-digi {
  background-image: url("../images/digicare/bg.png");
}
.is-digi .product-inner {
  background-image: url("../images/digicare/bg-text.svg");
}
@media (min-width: 501px) and (max-width: 1160px) {
  .is-digi .product-inner {
    padding-top: 60px;
    background-position: 10px 80px;
  }
}
@media (max-width: 500px) {
  .is-digi .product-inner {
    padding-top: 30px;
  }
}
.is-digi .product-header__check {
  margin-left: 50px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .is-digi .product-header__check {
    margin-left: 30px;
  }
}
.is-digi .product-header__checklist {
  color: #074799;
}
.is-digi .product-images {
  align-items: flex-start;
  padding-bottom: 55px;
}
.is-digi .product-image {
  margin-right: 0;
  width: 110px;
  text-align: left;
}
@media (max-width: 767px) {
  .is-digi .product-image {
    width: 80px;
  }
}
.is-digi .product-info {
  padding: 0;
  margin: 0;
  width: calc(100% - 80px);
}
.is-digi .product-info__info {
  display: block;
}
.is-digi .product-info dt {
  color: #074799;
}
.is-digi .product-info dd {
  margin-left: 0;
}
.is-digi .product-info__image {
  bottom: -47px;
  left: 180px;
  width: 94px;
}
@media (max-width: 767px) {
  .is-digi .product-info__image {
    bottom: -37px;
    left: 125px;
    width: 74px;
  }
}
.is-digi .product-point-block {
  background: rgba(87, 148, 212, 0.45);
}
.is-digi .product-point-block__lead--line02:before {
  background: rgba(34, 105, 201, 0.88);
}
.is-digi .product-point-howto__title {
  color: #2269CA;
  font-size: 16px;
  letter-spacing: -2px;
}
@media (max-width: 767px) {
  .is-digi .product-point-howto__title {
    font-size: 12px;
  }
}
.is-digi .product-point-howto-list__image {
  margin-top: -10px;
  margin-bottom: 8px;
}
@media (min-width: 1170px) {
  .is-digi .product-point-howto-list__image.is-no03 {
    margin-top: -20px;
  }
}

/*SMART MODEL*/
.is-smart {
  background-image: url("../images/smartmodel/bg.png");
}
.is-smart .product-inner {
  background-image: url("../images/smartmodel/bg-text.svg");
}
@media (min-width: 1161px) {
  .is-smart .product-inner {
    padding-top: 70px;
  }
}
@media (min-width: 501px) and (max-width: 1160px) {
  .is-smart .product-inner {
    background-position: 10px 90px;
  }
}
@media (max-width: 500px) {
  .is-smart .product-inner {
    background-position: 10px 60px;
  }
}
.is-smart .product-header__note {
  margin-top: -20px;
}
@media (max-width: 767px) {
  .is-smart .product-header__note {
    margin-top: 0;
  }
}
.is-smart .product-header__check {
  margin-top: 20px;
}
.is-smart .product-header__checklist {
  color: #E44249;
}
.is-smart .product-details {
  margin-top: 30px;
}
.is-smart .product-info dt {
  color: #EE4D53;
}
.is-smart .product-info__image {
  bottom: 15px;
  left: 330px;
}
@media (max-width: 767px) {
  .is-smart .product-info__image {
    bottom: 15px;
    left: 230px;
    width: 80px;
  }
  .is-smart .product-info__image img {
    width: 100%;
  }
}
.is-smart .product-point-block {
  background: rgba(223, 43, 54, 0.45);
}
.is-smart .product-point-block__lead--line02:before {
  background: rgba(238, 77, 83, 0.88);
}
.is-smart .product-point-howto__title {
  color: #EE4D53;
  letter-spacing: -2.4px;
}
.is-smart .product-point-howto-list__image {
  margin-top: -10px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .is-smart .product-point-howto-list__image img {
    width: 60%;
  }
}

/*DEEP REFRESH*/
.is-deep {
  background-image: url("../images/deeprefresh/bg.png");
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .is-deep {
    padding-bottom: 50px;
  }
}
.is-deep .product-inner {
  background-image: url("../images/deeprefresh/bg-text.svg");
}
@media (min-width: 501px) and (max-width: 1160px) {
  .is-deep .product-inner {
    background-position: 10px 80px;
  }
}
@media (max-width: 500px) {
  .is-deep .product-inner {
    background-position: 10px 60px;
  }
}
@media (max-width: 767px) {
  .is-deep .product-header__check {
    margin-top: 25px;
  }
}
.is-deep .product-header__checklist {
  color: #00973E;
}
@media (max-width: 767px) {
  .is-deep .product-details {
    margin-top: 30px;
  }
}
.is-deep .product-images {
  align-items: flex-start;
  padding-bottom: 55px;
}
.is-deep .product-image {
  margin-right: 0;
  width: 110px;
  text-align: left;
}
@media (max-width: 767px) {
  .is-deep .product-image {
    width: 80px;
  }
}
.is-deep .product-info {
  margin-top: 0;
  padding: 0;
  width: calc(100% - 80px);
}
.is-deep .product-info__info {
  display: block;
}
.is-deep .product-info dt {
  color: #00973E;
}
.is-deep .product-info dd {
  margin-left: 0;
}
.is-deep .product-info__image {
  bottom: -100px;
  left: 140px;
  width: 163px;
}
@media (max-width: 767px) {
  .is-deep .product-info__image {
    bottom: -90px;
    left: 85px;
    width: 143px;
  }
}
.is-deep .product-point-block {
  background: rgba(93, 168, 38, 0.45);
}
.is-deep .product-point-block__lead--line02:before {
  background: rgba(50, 151, 92, 0.88);
}
.is-deep .product-point-howto__title {
  color: #32975C;
  letter-spacing: -2px;
}
.is-deep .product-point-howto-list__image {
  margin-top: -10px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .is-deep .product-point-howto-list__image img {
    width: 50%;
  }
}

/*スマホ用製品メニュー*/
.product-menu {
  position: fixed;
  top: 170px;
  right: 0;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}
@media (min-width: 1170px) {
  .product-menu {
    display: none;
  }
}
.product-menu.fixed {
  opacity: 1;
  z-index: 9;
}
.product-menu__link {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 66px;
  height: 82px;
  border-bottom: 2px solid #fff;
}
.product-menu__link.is-link-reset {
  background-color: #8AE3D9;
}
.product-menu__link.is-link-hogushi {
  background-color: #B6AADE;
}
.product-menu__link.is-link-digi {
  background-color: #AAC9F5;
}
.product-menu__link.is-link-smart {
  background-color: #FBBBAD;
}
.product-menu__link.is-link-deep {
  background-color: #C5EDA0;
  border-bottom: none;
}

/*スマホ用フッター*/
.online-shop {
  background-image: url("../images/common/bg-onlineshop.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 50px;
}
@media (min-width: 1170px) {
  .online-shop {
    display: none;
  }
}

.footer {
  background-color: #fff;
}

.to-top {
  text-align: right;
  padding-right: 28px;
  box-sizing: border-box;
  top: -35px;
  position: relative;
}
@media (min-width: 1170px) {
  .to-top {
    display: none;
  }
}

.footer_sns {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-top: 20px;
  margin-top: 0;
  margin-bottom: 50px;
}
.footer_sns li {
  width: 15%;
  list-style: none;
  border-radius: 50%;
  -webkit-box-shadow: 0 10px 10px rgba(239, 130, 29, 0.7);
  box-shadow: 0 10px 10px rgba(239, 130, 29, 0.7);
  -webkit-transition: .2s ease 0s;
  transition: .2s ease 0s;
}
@media (min-width: 1170px) {
  .footer_sns li {
    width: 50px;
  }
}
.footer_sns li:not(:first-child) {
  margin-left: 6%;
}
@media (min-width: 1170px) {
  .footer_sns li:not(:first-child) {
    margin-left: 20px;
  }
}

.footer_logo {
  margin: 18% auto 6%;
  width: 44%;
}
@media (min-width: 1170px) {
  .footer_logo {
    margin: 40px auto 30px;
    width: 45%;
  }
}

.footer_link {
  padding-left: 0;
}
.footer_link li {
  list-style: none;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1170px) {
  .footer_link li {
    margin-bottom: 20px;
  }
}
.footer_link li a {
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer_link li a {
    font-size: 3.6vw;
  }
}

.footer_copy {
  margin: auto;
  width: 70%;
  padding-bottom: 45px;
  margin-top: 45px;
}
@media (min-width: 1170px) {
  .footer_copy {
    width: 65%;
  }
}
