@charset "UTF-8";
/*---------------------------------------------
 font
---------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prociono&display=swap&text=MOVIE");
/* ***********************************
 *
 *    CSS Reset & Base
 *
 * *********************************** */
/* Reset margin, padding, border
 * *********************************** */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
 * *********************************** */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
}

/* Layout
 * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/* Elements
 * *********************************** */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/*----------------------------------
	common
----------------------------------*/
body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #4d4d4d;
  background-color: #fff;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
  padding-bottom: 20%;
}

a {
  color: #2faeaa;
  text-decoration: none;
}

img {
  -webkit-backface-visibility: hidden;
}

main {
  overflow: hidden;
}

.pcOnly {
  display: none;
}

.spOnly {
  visibility: visible;
}

@media screen and (min-width: 769px) {
  body {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .pcOnly {
    display: block;
  }

  .spOnly {
    display: none;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*----------------------------------
	layout
----------------------------------*/
/* ly_header
----------------------------------*/
.ly_header {
  position: relative;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.ly_header_inner {
  padding: 10px 15px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .ly_header {
    position: fixed;
    z-index: 10;
    top: 0;
  }

  .ly_header_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 20px;
  }
}
/*----------------------------------
	block
----------------------------------*/
/* bl_headerUnits
----------------------------------*/
.bl_headerUnits {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bl_header_logo {
  max-width: 300px;
  height: auto;
}
.bl_header_logo img {
  width: 70%;
}

.bl_header_contact {
  display: none;
}

@media screen and (min-width: 769px) {
  .bl_headerUnits {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
  }

  .bl_header_logo {
    width: 40%;
    display: flex;
    flex-direction: row;
    max-width: 350px;
    margin-right: 10px;
  }

  .bl_header_contact {
    width: 60%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .bl_header_contact img {
    width: 100%;
  }
  .bl_header_contact ul {
    display: flex;
    align-items: center;
  }
  .bl_header_contact li:first-of-type {
    margin-right: 20px;
  }

  .bl_header_btn {
    display: block;
    background-color: #2faeaa;
    color: #fff;
    padding: 14px 20px 9px;
    font-size: 2.1rem;
    white-space: nowrap;
    border: 2px solid #2faeaa;
    border-bottom: 7px solid #0b8581;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .bl_header_btn:visited {
    color: #fff;
  }

  .bl_header_btn:after {
    width: 100%;
    height: 0;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #FFF;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transition: 0.3s;
    z-index: -1;
  }

  .bl_header_btn:hover {
    color: #2faeaa;
  }

  .bl_header_btn:hover:after {
    height: 330%;
    opacity: 1;
  }

  .bl_header_btn:active:after {
    height: 500%;
    opacity: 1;
  }
}
@media screen and (min-width: 900px) {
  .bl_header_btn {
    padding: 14px 40px 9px;
    font-size: 2.4rem;
  }

  .bl_header_btn:hover:after {
    height: 380%;
    opacity: 1;
  }
}
/*----------------------------------
	footer
----------------------------------*/
/* ly_footer
----------------------------------*/
.ly_footer {
  background-color: #2faeaa;
  position: relative;
}

.ly_footer_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 35px 20px 20px;
  text-align: center;
  position: relative;
}

.el_footerCopyright {
  color: #fff;
  font-size: 1.4rem;
}

.el_scrollTop {
  position: absolute;
  top: -20px;
  left: calc(50% - 20px);
  display: block;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.5s;
}

.el_scrollTop:before {
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(-45deg, transparent 0%, transparent 50%, #2faeaa 50%, #2faeaa 100%);
}

.el_scrollTop:hover {
  background: #2faeaa;
}

.el_scrollTop:hover:before {
  background: linear-gradient(-45deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
}

@media screen and (min-width: 769px) {
  .ly_footer_inner {
    padding: 50px 20px 30px;
  }

  .el_footerCopyright {
    font-size: 1.6rem;
  }

  .el_scrollTop {
    top: -30px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
  }
}
/*----------------------------------
	.element
----------------------------------*/
.el_title {
  width: 100%;
  text-align: center;
  font-size: 6.4vw;
  line-height: 1.4;
  padding-bottom: 30px;
  color: #2faeaa;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.el_title span {
  display: block;
  margin-top: 5px;
  font-size: 1.8rem;
  color: #4d4d4d;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .el_title {
    font-size: 4.8rem;
    padding-bottom: 30px;
  }
  .el_title span {
    margin-top: 10px;
    font-size: 2.4rem;
  }
}
.el_em_green {
  color: #2faeaa;
  font-weight: 700;
  font-style: normal;
}

.el_em_dot {
  -webkit-text-emphasis: dot;
          text-emphasis: dot;
}

.el_nmn {
  color: #2faeaa;
  -webkit-text-emphasis: dot;
          text-emphasis: dot;
}

.el_color_red {
  color: #cf0000;
}

.el_color_logo {
  color: #3b5f75;
}

.el_under_line {
  background: linear-gradient(transparent 60%, #ffea00 60%);
}

.el_fw_bold {
  font-style: normal;
  font-weight: 700;
}

/*----------------------------------
	中ページ共通
----------------------------------*/
main {
  display: block;
  /*ie11用*/
}

/*----------------------------------
	#home
----------------------------------*/
/*----------------------------------
 .bl_hero
----------------------------------*/
.bl_hero_drip {
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .bl_hero_inner {
    width: 100%;
  }
  .bl_hero_inner img {
    width: 100%;
    height: auto;
  }
}
/*----------------------------------
 .bl_movie
----------------------------------*/
.bl_movie_inner {
  padding: 40px 20px 50px;
}

.bl_movie_title {
  width: 100%;
  text-align: center;
  font-size: 6.4vw;
  padding-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  font-family: "Prociono", serif;
}

.bl_movie_contents {
  text-align: center;
}

.bl_movie_youtube {
  padding: 7px;
  background-color: #4d4d4d;
  margin: 0 auto 10px;
}

.bl_movie_youtube_inner {
  background-color: #4d4d4d;
  display: inline-block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.bl_movie_youtube_inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.bl_movie_note {
  font-size: 1rem;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .bl_movie_inner {
    max-width: 1140px;
    padding: 80px 20px 120px;
    margin: 0 auto;
  }

  .bl_movie_title {
    font-size: 5rem;
    padding-bottom: 30px;
  }

  .bl_movie_youtube {
    padding: 10px;
    max-width: 900px;
    margin-bottom: 20px;
  }

  .bl_movie_note {
    font-size: 1.2rem;
  }
}
/*----------------------------------
 .bl_voice
----------------------------------*/
.bl_voice {
  background-image: url(../img/voice_bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.bl_voice::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: #fff;
  transform-origin: left center;
  transform: rotate(-3deg);
  z-index: -1;
}

.bl_voice_inner {
  padding: 50px 20px 90px;
}

.bl_voice_contents {
  margin-bottom: 40px;
}

.bl_voice_note {
  text-align: center;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .bl_voice_inner {
    max-width: 1140px;
    padding: 100px 20px 200px;
    margin: 0 auto;
  }

  .bl_voice_contents {
    margin-bottom: 80px;
  }

  .bl_voice_note {
    font-size: 1.8rem;
  }
}
/*----------------------------------
 .bl_about
----------------------------------*/
.bl_about_inner {
  padding: 40px 20px 50px;
}

.bl_about_txt {
  line-height: 2;
}
.bl_about_txt .supText {
  font-size: 75%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

@media screen and (min-width: 769px) {
  .bl_about_inner {
    max-width: 1140px;
    padding: 80px 20px 150px;
    margin: 0 auto;
  }

  .bl_about_txt {
    font-size: 2rem;
  }
}
/*----------------------------------
 .bl_takein
----------------------------------*/
.bl_takein {
  background-color: #f9f6ed;
  transform: skewY(-3deg);
}

.bl_takein_inner {
  padding: 60px 20px;
  transform: skewY(3deg);
}

.bl_takein_read {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.bl_takein_list img {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .bl_takein_inner {
    max-width: 1140px;
    padding: 140px 20px;
    margin: 0 auto;
  }

  .bl_takein_read {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
}
/*----------------------------------
 .bl_merit
----------------------------------*/
.bl_merit_inner {
  padding: 60px 20px;
}

.bl_merit_pict {
  margin-bottom: 30px;
}
.bl_merit_pict img {
  margin: 0 auto;
}

.bl_merit_read {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bl_merit_list img {
  margin: 0 auto;
}

.bl_merit_txt {
  line-height: 2;
  margin-bottom: 5rem;
}

.bl_merit_ref {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.bl_merit_ref ul {
  font-size: 1.2rem;
  line-height: 1.5;
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
}

.bl_merit_ref li:before {
  counter-increment: number;
  content: counter(number) "）";
  position: absolute;
  left: 0;
}

.bl_merit_ref li {
  padding: 0.2em 0;
  position: relative;
  padding-left: 2em;
}

.bl_merit_ref a {
  color: #3b5f75;
}

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

.bl_merit_ref_title {
  font-size: 1.4rem;
  padding-bottom: 10px;
  margin-bottom: 1rem;
  border-bottom: 1px dotted #333;
}

@media screen and (min-width: 769px) {
  .bl_merit_inner {
    max-width: 900px;
    padding: 140px 20px;
    margin: 0 auto;
  }

  .bl_merit_pict {
    margin-bottom: 50px;
  }

  .bl_merit_read {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }

  .bl_merit_txt {
    font-size: 2rem;
  }

  .bl_merit_ref ul {
    font-size: 1.4rem;
  }

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

  .bl_merit_ref_title {
    font-size: 1.6rem;
  }
}
/*----------------------------------
 .bl_flow
----------------------------------*/
.bl_flow {
  background-color: #f9f6ed;
  transform: skewY(-3deg);
}

.bl_flow_inner {
  padding: 60px 20px;
  transform: skewY(3deg);
}

.bl_flow_list {
  display: flex;
  justify-content: center;
}

.bl_flow_list ul {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
}

.bl_flow_list li {
  position: relative;
  padding-left: 5rem;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.bl_flow_list li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background-color: #2faeaa;
  color: white;
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  border-radius: 50%;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding-right: 5px;
  /*以下 上下中央寄せのため*/
  top: 50%;
  transform: translateY(-50%);
}

.bl_flow_pict {
  text-align: center;
}
.bl_flow_pict img {
  margin: 0 auto;
  border-radius: 10px;
}

@media screen and (min-width: 769px) {
  .bl_flow_inner {
    max-width: 1140px;
    padding: 140px 20px;
    margin: 0 auto;
  }

  .bl_flow_list li {
    padding-left: 8rem;
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }

  .bl_flow_list li:before {
    font-size: 5rem;
    width: 66px;
    height: 66px;
    line-height: 66px;
    padding-right: 7px;
  }
}
/*----------------------------------
 .bl_attention
----------------------------------*/
.bl_attention {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bl_attention::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: #f9f6ed;
  transform-origin: left center;
  transform: rotate(-3deg);
  z-index: -1;
}

.bl_attention_inner {
  padding: 60px 20px 80px;
}

.bl_attention_list {
  display: flex;
  justify-content: center;
  line-height: 2;
}
.bl_attention_list ul {
  list-style: disc;
  padding-left: 2rem;
}

@media screen and (min-width: 769px) {
  .bl_attention_inner {
    max-width: 900px;
    padding: 140px 20px 180px;
    margin: 0 auto;
  }

  .bl_attention_list {
    font-size: 2rem;
  }
}
/*----------------------------------
 .bl_price
----------------------------------*/
.bl_price {
  background-color: #f9f6ed;
}

.bl_price_inner {
  padding: 60px 20px;
  margin-bottom: 30px;
}

.bl_price_read {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.bl_price_table {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 10px;
  background-color: #fff;
  border: 3px solid #b2b2b2;
}
.bl_price_table th {
  background-color: #2faeaa;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  border: 1px solid #b2b2b2;
  padding: 15px 10px;
}
.bl_price_table td {
  font-size: 1.6rem;
  border: 1px solid #b2b2b2;
  padding: 15px 10px;
  text-align: center;
  white-space: nowrap;
}
.bl_price_table .bl_price_main {
  font-size: 2.4rem;
  font-weight: 700;
}
.bl_price_table .bl_price_main span {
  font-size: 1.6rem;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .bl_price {
    margin-bottom: 40px;
  }

  .bl_price_inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 20px;
  }

  .bl_price_read {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .bl_price_table {
    margin: 0 auto 30px;
  }
  .bl_price_table th {
    font-size: 2.1rem;
  }
  .bl_price_table td {
    font-size: 2.1rem;
  }
  .bl_price_table .bl_price_main {
    font-size: 3.6rem;
    font-weight: 700;
  }
  .bl_price_table .bl_price_main span {
    font-size: 2.1rem;
    font-weight: normal;
  }
}
/*----------------------------------
 .bl_clinic
----------------------------------*/
.bl_clinic {
  padding: 0 0 50px;
  background-color: #fff;
}

.bl_clinic_pict {
  background-image: url(../img/clinic_pict.jpg);
  background-position: center;
  background-size: cover;
  height: 300px;
  margin-bottom: 30px;
}

.bl_clinic_inner {
  padding: 0 20px;
}

.bl_clinic_logo {
  text-align: center;
  margin-bottom: 30px;
}
.bl_clinic_logo img {
  width: 75%;
  max-width: 500px;
  height: auto;
}

.bl_clinic_time {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.bl_clinic_time_title {
  width: 100%;
  text-align: center;
  font-size: 4.8vw;
  line-height: 1.4;
  color: #3b5f75;
  font-weight: normal;
  text-transform: capitalize;
  letter-spacing: 0.2rem;
  margin-bottom: 20px;
}

.bl_clinic_time_list {
  margin: 20px auto 20px;
  border-collapse: collapse;
  padding: 0;
  max-width: 600px;
  width: 100%;
  border: 2px solid #3b5f75;
}
.bl_clinic_time_list tr {
  padding: 3px;
}
.bl_clinic_time_list thead {
  border-bottom: 1px dotted #bbb;
  background-color: rgba(59, 95, 117, 0.2);
}
.bl_clinic_time_list tr:last-child {
  border-bottom: none;
}
.bl_clinic_time_list th, .bl_clinic_time_list td {
  font-weight: normal;
  padding: 1rem;
  border-right: 1px dotted #bbb;
  text-align: center;
}
.bl_clinic_time_list th:last-child, .bl_clinic_time_list td:last-child {
  border: none;
}
.bl_clinic_time_list tbody th {
  color: #ff9901;
}
.bl_clinic_time_list tbody td {
  color: #3b5f75;
  font-size: 2rem;
}

.bl_clinic_time_text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
}

.bl_clinic_access_txt {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.bl_clinic_access_txt table th {
  padding: 0 5px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6;
  text-align: right;
  vertical-align: top;
}
.bl_clinic_access_txt table td {
  padding: 0 5px;
  font-size: 1.6rem;
  line-height: 1.6;
}

.bl_clinic_access_btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.bl_clinic_access_btn a {
  width: 80%;
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  border: 1px solid rgba(59, 95, 117, 0.5);
  transition: all 0.5s;
}
.bl_clinic_access_btn a:after {
  content: "see google map";
  display: block;
  font-size: 0.8rem;
  color: #3b5f75;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
}
.bl_clinic_access_btn a:hover {
  background: #f9f9f9 !important;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 769px) {
  .bl_clinic_access_map {
    height: 0;
    overflow: hidden;
    padding-bottom: 75%;
    position: relative;
  }

  .bl_clinic_access_map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .bl_clinic {
    padding: 0 0 50px;
  }

  .bl_clinic_pict {
    height: 500px;
    margin-bottom: 50px;
  }

  .bl_clinic_inner {
    max-width: 1140px;
    margin: 0 auto 40px;
  }

  .bl_clinic_logo {
    margin-bottom: 50px;
  }
  .bl_clinic_time {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .bl_clinic_time_title {
    font-size: 3.6rem;
    margin-bottom: 30px;
  }

  .bl_clinic_time_list {
    width: 600px;
    margin-bottom: 40px;
  }
  .bl_clinic_time_text {
    font-size: 2rem;
  }

  .bl_clinic_access_txt {
    margin-bottom: 30px;
  }
  .bl_clinic_access_txt table th {
    font-size: 1.8rem;
  }
  .bl_clinic_access_txt table td {
    font-size: 1.8rem;
  }

  .bl_clinic_access_btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .bl_clinic_access_btn a {
    width: auto;
    padding: 20px 130px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .bl_clinic_access_btn a:after {
    font-size: 1rem;
  }
}
/*----------------------------------*/
/* bl_foot_cta
----------------------------------*/
.bl_foot_cta {
  position: fixed;
  bottom: 0%;
  z-index: 5;
  width: 100%;
  text-align: center;
}
.bl_foot_cta .bl_foot_cta_inner {
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 5px;
}
.bl_foot_cta .bl_foot_cta_tel {
  width: 50%;
}
.bl_foot_cta .bl_foot_cta_form {
  width: 50%;
}
.bl_foot_cta a {
  display: block;
}
.bl_foot_cta a img {
  width: 95%;
  height: auto;
  max-width: 250px;
  height: auto;
}

@media screen and (min-width: 769px) {
  .bl_foot_cta {
    display: none;
  }
}
/*----------------------------------
	helper
----------------------------------*/
.hp_mb0 {
  margin-bottom: 0 !important;
}

.hp_mb_middle {
  margin-bottom: 50px;
}

@media screen and (min-width: 769px) {
  .hp_mb_middle {
    margin-bottom: 70px;
  }
}