/* CSS Document */

img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  height: auto;
}
body {
  -webkit-text-size-adjust: 100%;
  line-height: 1.5em;
  padding-bottom: 120px;
}

.wrapper {
  max-width: 1040px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 auto;
}

.serif {
  font-family: 'Noto Serif JP', serif;
}

sup {
  font-size: 0.6em;
  vertical-align: super;
}

sub {
  font-size: 0.6em;
}

.sp_break {
  display: none;
}

.ex_link::after {
  content: "";
  width: 16px;
  height: 17px;
  display: inline-block;
  margin-left: 0.5em;
  background: url("../../img/vitamo/icon_outer_link.png") no-repeat;
  width: 100% auto;
}

@media screen and (max-width: 736px) {
  body {
    padding-bottom: 70px;
  }
  
  .wrapper {
    padding: 0 1rem;
  }
  
  .sp_break {
    display: inline;
  }
  
  .pc_break {
    display: none;
  }
}

/***************************
 ** flexible boxと子要素の関係
 */

.flex_row {
  /* flexible boxの使用宣言（box,flexbox,flex） */
  display: -webkit-box;/*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;/*--- ie10 ---*/
  display: -webkit-flex;/*--- mac old safari ---*/
  display: flex;
  /* flexアイテムの横方向の位置揃え */
  -webkit-box-pack: justify;/*--- Androidブラウザ ---*/
  -ms-flex-pack: justify;/*--- ie10 ---*/
  -webkit-justify-content: space-between;/*--- mac old safari ---*/
  justify-content: space-between;
  /* flexアイテムの縦方向の整列 */
  -webkit-box-align: stretch;/*--- Androidブラウザ ---*/
  -ms-flex-align: stretch;/*--- ie10 ---*/
  -webkit-align-items: stretch;/*--- mac old safari ---*/
  align-items: stretch;
  /* flexアイテムの並び方向 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;/*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: row;/*--- ie10 ---*/
  -webkit-flex-direction: row;/*--- mac old safari ---*/
  flex-direction: row;
  /* flexアイテムを複数行にするかどうか */
  -ms-flex-wrap: nowrap;/*--- ie10 ---*/
  -webkit-flex-wrap: nowrap;/*--- mac old safari ---*/
  flex-wrap: nowrap;
}
.flex_row>* {
  /**** flexible box関連指定 ****/
    /* flexアイテムの伸縮、アイテム幅の指定 */
  -webkit-box-flex: 0.1;    /*--- Androidブラウザ 要素がはみ出す場合があることへの対処 ---*/
  -ms-flex: 1 1;    /*--- ie10 ---*/
  -webkit-flex: 1 1 auto;    /* mac old safari */
  /* ie11で、flex-basisを記述すると正しく動作しないので記載しないように変更 */
  flex: 1 1;    /*--- flex-grow,flex-shrink,flex-basis ---*/
  /* 並び順の指定 */
  -webkit-box-ordinal-group: 1;/*--- Androidブラウザ ---*/
  -ms-flex-order: 0;/*--- ie10 ---*/
  -webkit-order: 0;/*--- mac old safari ---*/
  order: 0;
}

@media screen and (max-width: 736px) {
.sp_flex_col {
  -webkit-box-orient: vertical;/*--- Androidブラウザ 2つに分かれている ---*/
  -ms-flex-direction: column;/*--- ie10 ---*/
  -webkit-flex-direction: column;/*--- mac old safari ---*/
  flex-direction: column;
}
.sp_flex_col>* {
  width: 100%;
}

.sp_flex_2row2col {
  -ms-flex-wrap: wrap;/*--- ie10 ---*/
  -webkit-flex-wrap: wrap;/*--- mac old safari ---*/
  flex-wrap: wrap;
}
.sp_flex_2row2col>* {
  width: 50%;
  box-sizing: border-box;
}
}

/***************************
 ** アコーディオン
 */
.accordion_container .accordion_item {
}
.accordion_container .accordion_btn {
  cursor: pointer;
}
.accordion_container .accordion_box {
  display: none;
}


/***************************
 ** #main
 */
main {
  display: block;
}


/***************************
 ** ヘッダー
 */
.header {
  padding: 1rem;
  border-bottom: 3px solid #ecf0f0;
}

.header_inner p {
  flex-basis: 50%;
}

.header_inner p:first-child img {
  width: 172px;
}

.header_inner p:last-child {
  text-align: right;
}

.header_inner p:last-child img {
  width: 158px;
  margin-top: 1rem;
}

@media screen and (max-width: 736px) {
  .header {
    padding: 0.5rem 0;
  }

  .header_inner p:first-child img {
    width: 50%;
  }

  .header_inner p:last-child img {
    width: 50%;
    margin-top: 0.5rem;
  }
}


/***************************
 ** FV
 */
.fv {
  background: url("../../img/vitamo/pc/bg_fv.jpg") no-repeat center top;
  background-size: cover;
}

@media screen and (max-width: 736px) {
  .fv {
    background: none;
  }
  
  .fv .wrapper {
    padding: 0;
  }
}


/***************************
 ** ページ内リンクメニュー
 */
.link_menu {
  background: #f6ad1f;
  padding: 1rem 0;
}

.link_menu_list li {
  background: #fff;
  text-align: center;
}

.link_menu_list li:not(:last-child) {
  border-right: 1px solid #ccc;
}

.link_menu_list li a {
  display: block;
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: #000;
  font-size: 1.15rem;
  padding: 0.5rem 0.5rem 2rem 0.5rem;
  position: relative;
  line-height: 2.4;
}

.link_menu_list li:nth-child(2) a,
.link_menu_list li:nth-child(3) a,
.link_menu_list li:nth-child(5) a {
  line-height: 1.2;
}

.link_menu_list li a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #dd0620;
  border-radius: 50%;
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  margin-left: -10px;
}

.link_menu_list li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: 1rem;
  left: 50%;
  margin-left: -4px;
}

.link_menu_list li:hover {
  background: #ffd6db;
}

@media screen and (max-width: 736px) {
  .link_menu {
    padding: 0.5rem 0;
  }
  
  .link_menu_list {
    flex-wrap: wrap;
  }

  .link_menu_list li {
    flex-basis: 33.3%;
    box-sizing: border-box;
  }

  .link_menu_list li:not(:last-child) {
    border-right: none;
  }
  
  .link_menu_list li:not(:nth-child(3n)) {
    border-right: 1px solid #ccc;
  }
  
  .link_menu_list li:nth-child(-n+3) {
    border-bottom: 1px solid #ccc;
  }

  .link_menu_list li a {
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  }

  .link_menu_list li a::before {
    content: "";
    width: 12px;
    height: 12px;
    bottom: auto;
    left: auto;
    right: 0.5rem;
    top: 50%;
    margin-left: 0;
    margin-top: -6px;
  }

  .link_menu_list li a::after {
    content: "";
    width: 3px;
    height: 3px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    bottom: auto;
    left: auto;
    margin-left: 0;
    right: 0.7rem;
    top: 50%;
    margin-top: -3px;
  }
}


/***************************
 ** ビタモ液とは
 */
.about_02 {
  text-align: center;
}

.about_03 {
  padding: 6rem 2rem 4rem;
  background: url("../../img/vitamo/bg_about_01.gif") no-repeat;
  background-size: cover;
  margin-top: -3rem;
}

.about_03_ttl {
  text-align: center;
  font-size: 1.625rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about_03_ttl span {
  font-size: 3.75rem;
  font-weight: bold;
}

.about_03 p {
  font-size: 1.15rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.qa_link {
  display: block;
  max-width: 680px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 2px solid #dd0620;
  border-radius: 12px;
  font-size: 1.75rem;
  text-align: center;
  color: #000;
  text-decoration: none;
  position: relative;
}

.qa_link::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../../img/vitamo/icon_arrow_down.png") no-repeat;
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -12px;
}

.qa_link:hover {
  background: #ffd6db;
}

@media screen and (max-width: 736px) {
  .about_03 {
    padding: 2rem 0.8rem;
    margin-top: 0;
  }

  .about_03_ttl {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .about_03_ttl span {
    font-size: 1.25rem;
  }

  .about_03 p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .qa_link {
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 0.875rem;
  }

  .qa_link::after {
    width: 14px;
    height: 14px;
    background-size: 100% auto;
    right: 0.5rem;
    margin-top: -7px;
  }
}


/***************************
 ** おすすめ
 */
.recommend {
  background: #f6ad1f;
  padding: 4rem 0;
}

.recommend_ttl {
  text-align: center;
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 4rem;
}

.recommend_list {
  flex-wrap: wrap;
}

.recommend_list li {
  flex-basis: 32%;
  margin-bottom: 1.5rem;
}

.recommend_list li:not(:nth-child(3n)) {
  margin-right: 2%;
}

@media screen and (max-width: 736px) {
  .recommend {
    padding: 2rem 0;
  }

  .recommend_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5em;
  }

  .recommend_list li {
    flex-basis: 48%;
    margin-bottom: 0.8rem;
  }

  .recommend_list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  
  .recommend_list li:nth-child(odd) {
    margin-right: 4%;
  }
}


/***************************
 ** おすすめ2
 */
.recommend_02-01 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.recommend_02-01 .wrapper p {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 2;
}

.recommend_02-01 .wrapper p:nth-child(4) {
  margin-bottom: 0;
}

.recommend_02-01 > p {
  text-align: center;
}

.recommend_02-02 {
  text-align: center;
  background: url("../../img/vitamo/bg_recommend_01.png") no-repeat;
  background-size: cover;
}

.recommend_02-03 {
  background: #f6ad1f;
  padding: 4rem 0 1rem; 
}

.ingredients_01 {
  margin-bottom: 5rem;
}

.ingredients_01_contents {
  flex-basis: 48%;
}

.ingredients_01 .ingredients_01_contents:first-of-type {
  margin-right: 4%;
}

.ingredients_01_contents_ttl {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.2;
}

.ingredients_01_contents_ttl span {
  color: #f6ad1f;
  font-size: 1rem;
  font-weight: normal;
}

.connection {
  text-align: center;
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 4rem;
}

.ingredients_02 {
  max-width: 790px;
  margin: 0 auto 4rem;
}

.ingredients_02 li {
  flex-basis: 31%;
  text-align: center;
}

.ingredients_02 li:nth-child(2) {
  margin: 0 3.5%;
}

.ingredients_02 li p {
  font-size: 1.15rem;
  line-height: 1.6;
  min-height: 6em;
}

@media screen and (max-width: 736px) {
  .recommend_02-01 {
    padding-top: 2rem;
  }
  
  .recommend_02-01 .wrapper p {
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }
  
  .recommend_02-02 img {
    width: 70%;
  }

  .recommend_02-03 {
    padding: 2rem 0 0.5rem; 
  }

  .ingredients_01 {
    margin-bottom: 2rem;
  }

  .ingredients_01_contents {
    flex-basis: auto;
  }

  .ingredients_01 .ingredients_01_contents:first-of-type {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .ingredients_01_contents_ttl {
    padding: 0.5rem;
    font-size: 1.25rem;
  }

  .ingredients_01_contents_ttl span {
    font-size: 0.75rem;
  }

  .connection {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .ingredients_02 {
    margin: 0 auto 0.8rem;
  }

  .ingredients_02 li p {
    font-size: 0.625rem;
    letter-spacing: -1px;
    min-height: 8.5em;
  }
}


/***************************
 ** こだわり
 */
.commitment {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.commitment_ttl {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1.4;
}

.commitment_ttl span {
  font-size: 4.625rem;
  color: #dd0620;
}

.commitment p:first-of-type {
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.commitment p:last-of-type {
  font-size: 1.15rem;
}

@media screen and (max-width: 736px) {
  .commitment {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .commitment_ttl {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }

  .commitment_ttl span {
    font-size: 1.875rem;
  }

  .commitment p:first-of-type {
    margin: 0 auto 1rem;
  }

  .commitment p:last-of-type {
    font-size: 0.75rem;
  }
}


/***************************
 ** CV
 */
.cv {
  background: #ecf0f0;
  padding: 4rem 0;
}

.cv_ttl {
  text-align: center;
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 4rem;
}

.cv_slider_area {
  margin-bottom: 3rem;
}

.cv_slider .slider_item {
  padding: 0 0.8rem;
}

.cv_slider .slider_item img {
  margin-bottom: 0.8rem;
}

.item_ttl {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.item_ttl span {
  display: inline-block;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #000;
  padding: 0 0.5em;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.quantity {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.875rem;
  font-weight: bold;
  color: #dd0620;
  margin-bottom: 1rem;
}

.cv_btn {
  display: block;
  padding: 1rem;
  background: #fff;
  border: 2px solid #dd0620;
  border-radius: 10px;
  text-align: center;
  font-size: 1.625rem;
  color: #000;
  text-decoration: none;
}

.cv_btn::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 41px;
  background: url("../../img/vitamo/icon_cart.png") no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.priduct_info_list {
  font-size: 0.875rem;
  line-height: 2;
}

.priduct_info_list dt {
  font-weight: bold;
}

/*.priduct_info_list dd:not(:last-of-type) {
  margin-bottom: 2rem;
}*/

.priduct_info_list dd p:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 736px) {
  .cv {
    padding: 2rem 0;
  }

  .cv_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .cv_slider_area {
    margin-bottom: 1.5rem;
  }

  .cv_slider .slider_item {
    padding: 0 0.5rem 0 0;
  }

  .cv_slider .slider_item img {
    margin-bottom: 0.5rem;
  }

  .item_ttl {
    font-size: 0.875rem;
  }

  .item_ttl span {
    font-size: 0.75rem;
  }

  .quantity {
    font-size: 0.6875rem;
    line-height: 1.4;
  }

  .price {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .cv_btn {
    padding: 0.3rem;
    border-radius: 5px;
    font-size: .875rem;
  }

  .cv_btn::before {
    width: 25px;
    height: 20px;
    margin-right: 0.3rem;
  }

  .priduct_info_list {
    font-size: 0.75rem;
  }

  .priduct_info_list dd:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  
  .cv_slider_area .slick-prev.slick-arrow {
    display: none;
  }
  
  .cv_slider_area .slick-prev:before {
    display: none;
  }
  
  .cv_slider_area .slick-next.slick-arrow {
    display: inline-block;
    width: 24px;
    height: 30px;
    background: #414242;
    right: -0.8rem;
  }
  
  .cv_slider_area .slick-next:before {
    content: "→";
    display: inline-block;
    font-weight: bold;
    font-size: 0.75rem;
  }
}


/***************************
 ** QA
 */
.qa_area {
  padding-top: 4rem;
  margin-bottom: 4rem;
}

.qa_ttl {
  font-size: 3.75rem;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: bold;
}

.qa_list {
  border-bottom: 3px solid #ecf0f0;
}

.qa_list li {
  padding: 1rem 0.5rem;
  border-top: 3px solid #ecf0f0;
}

.qa_text_ttl {
  font-size: 1.25rem;
  display: table;
  width: 100%;
  position: relative;
}

.qa_text_ttl::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../../img/vitamo/icon_arrow_down.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.qa_text_ttl.btn_active::after {
  transform: rotate(180deg);
}

.qa_text_ttl > span {
  display: table-cell;
  vertical-align: top;
}

.qa_q,
.qa_a {
  width: 2em;
}

.qa_q span,
.qa_a span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  box-sizing: border-box;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  border-radius: 50%;
  vertical-align: bottom;
}

.qa_q span {
  background: #f6ad1f;
}

.qa_ttl_last {
  padding-left: 0.5rem;
  padding-right: 3rem;
  line-height: 2;
}

.qa_text {
  padding: 2rem 1rem 2rem 4rem;
  box-sizing: border-box;
  display: table;
  width: 100%;
}

.qa_text > span {
  display: table-cell;
}

.qa_a span {
  background: #ecf0f0;
  vertical-align: middle;
}

.qa_text_last {
  padding-left: 0.5rem;
  line-height: 2;
}

@media screen and (max-width: 736px) {
  .qa_area {
    padding-top: 2rem;
    margin-bottom: 3rem;
  }
  
  .qa_ttl {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
  
  .qa_list li {
    padding: 0.5rem;
  }
  
  .qa_text_ttl {
    font-size: 0.875rem;
  }
  
  .qa_text_ttl::after {
    content: "";
    width: 16px;
    height: 16px;
    right: 0;
    top: 0.5rem;
  }

  .qa_q span,
  .qa_a span {
    font-size: 1.125rem;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.6;
  }

  .qa_text {
    padding: 1rem 1rem 1.5rem 2rem;
    font-size: 0.75rem;
  }
}


/***************************
 ** お買い求め
 */
.purchase {
  padding: 3rem 0;
  background: #f6ad1f;
  margin-bottom: 2rem;
}

.purchase_ttl {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 3rem;
}

.purchase_btns li {
  flex-basis: 48%;
  text-align: center;
}

.purchase_btns li:first-child {
  margin-right: 4%;
}

.purchase_btns li a {
  display: block;
  font-size: 1.25rem;
  text-decoration: none;
  color: #000;
  padding: 0.8rem;
  background: #fff;
  border: 3px solid #dd0620;
  border-radius: 10px;
}

.online_btn::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 30px;
  background: url("../../img/vitamo/icon_cart.png") no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  margin-right: 0.8rem;
}

.shop_btn::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../../img/vitamo/icon_loupe.png") no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  margin-right: 0.8rem;
}

.purchase_btns li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 736px) {
  .purchase {
    padding: 2rem 0;
    margin-bottom: 1rem;
  }

  .purchase_ttl {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .purchase_btns li {
    flex-basis: auto;
  }

  .purchase_btns li:first-child {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }

  .purchase_btns li a {
    font-size: 0.875rem;
  }

  .online_btn::before {
    width: 26px;
    height: 23px;
    margin-right: 0.5rem;
  }

  .shop_btn::before {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
  }
}



/***************************
 ** #footer
 */
.foot_company_link {
  text-align: center;
  margin-bottom: 0.5rem;
}

.foot_company_link a {
  color: #000;
  text-decoration: none;
}

.foot_company_link a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../../img/vitamo/icon_arrow_down.png") no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  transform: rotate(-90deg);
  margin-left: 0.5em;
}

.foot_company_link a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  margin-bottom: 2.5rem;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
  background: #fff;
  padding: 0.7rem 0 0.5rem;
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
  display: none;
}

.wrapper.footer_inner {
  position: relative;
  padding: 0;
}

.foot_cv_img {
  position: absolute;
  left: 20px;
  bottom: 0;
}

.foot_cv {
  display: table;
  box-sizing: border-box;
  width: 100%;
  padding-left: 120px;
}

.foot_cv > p {
  display: table-cell;
  width: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}

.foot_cv > p:first-child {
  padding-right: 1rem;
}

.foot_cv > p:last-child {
  text-align: right;
}

.foot_cv p .foot_cv_btn {
  display: block;
  line-height: 1;
  padding: 0.8rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  background: #c80a0a;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.foot_cv p .foot_cv_btn:hover {
  opacity: 0.7;
}

.foot_cv_btn::before {
  content: "";
  width: 36px;
  height: 30px;
  display: inline-block;
  background: url("../../img/vitamo/icon_cart_02.png") no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@media screen and (max-width: 736px) {
  .foot_company_link {
    font-size: 0.75rem;
  }
  
  .foot_company_link a::after {
    width: 14px;
    height: 14px;
  }
  
  .copyright {
    font-size: 0.625rem;
    margin-bottom: 1rem;
  }

  #footer {
    padding: 0.5rem 0.8rem;
  }

  .foot_cv_img {
    display: none;
  }

  .foot_cv {
    padding-left: 0;
  }

  .foot_cv p .foot_cv_btn {
    font-size: 0.6875rem;
  }

  .foot_cv_btn::before {
    width: 18px;
    height: 15px;
  }
}


/***************************
 ** #rev_top
 */
.rev_top {
  position: fixed;
  width: 7%;
  max-width: 60px;
  bottom: 130px;
  right: 20px;
  text-decoration: none;
}

@media screen and (max-width: 736px) {
  .rev_top {
    width: 12%;
    bottom: 80px;
    right: 10px;
  }
}