@charset "UTF-8";
:root {
  --base-color: #4d4d4d;
  --logo-color: #3b5f75;
  --main-color: #3d61c4;
  --accent-color: #cb0000;
  --base-width: 1240px;
  --breakppoint-tab: 769px;
}

/* ***********************************
 *
 *    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;
}

blockquote,
q {
  quotes: none;
}

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

/*----------------------------------
	common
----------------------------------*/
body {
  font-family: "Zen Old Mincho", serif;
  -webkit-font-smoothing: antialiased;
  color: var(--base-color);
  background-color: #fff;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
}

a, a:visited {
  color: var(--logo-color);
  text-decoration: none;
}

main {
  overflow: hidden;
}

.pcOnly {
  display: none;
}

.spOnly {
  visibility: visible;
}

@media screen and (min-width: 769px) {
  .pcOnly {
    display: block;
  }

  .spOnly {
    display: none;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*----------------------------------
	layout
----------------------------------*/
/* ly_header
----------------------------------*/
.ly_header {
  display: block;
  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 {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
  }

  .ly_header_inner {
    max-width: var(--base-width);
    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: 260px;
  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 {
    display: flex;
    flex-direction: row;
    max-width: 300px;
    margin-right: 10px;
  }

  .bl_header_contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .bl_header_contact img {
    width: 70%;
  }
  .bl_header_contact ul {
    display: flex;
    align-items: center;
  }
  .bl_header_contact li:first-of-type {
    margin-right: 20px;
  }
}
@media screen and (min-width: 769px) {
  .bl_header_btn {
    display: block;
    font-size: 2.2rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    padding: 15px 30px 15px 40px;
    text-align: center;
    border: none;
    border-radius: 50px;
    background-image: linear-gradient(to right, #33a0b8, #4668a7);
    box-shadow: 0 3px 5px 0 rgba(70, 104, 167, 0.5);
    transition: all 0.3s ease-in-out;
  }

  .bl_header_btn:hover {
    transform: scale(0.96, 0.96);
  }

  .bl_header_btn:visited {
    color: #fff;
  }

  .bl_header_btn span {
    position: relative;
    padding-right: 27px;
  }

  .bl_header_btn span:before {
    content: "";
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 55%;
    right: 0;
    margin-top: -10px;
    transition: all 0.2s;
  }

  .bl_header_btn span:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #ac3509;
    border-right: 2px solid #ac3509;
    transform: rotate(45deg);
    position: absolute;
    top: 55%;
    right: 7px;
    margin-top: -4px;
    transition: all 0.2s;
  }
}
/*----------------------------------
	footer
----------------------------------*/
/* ly_footer
----------------------------------*/
.ly_footer {
  background-color: var(--main-color);
  background: linear-gradient(to bottom right, #33a0b8, #4668a7);
  background: linear-gradient(170deg, #33a0b8, #4668a7);
  position: relative;
}

.ly_footer_inner {
  max-width: var(--base-width);
  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%, var(--main-color) 50%, var(--main-color) 100%);
}

.el_scrollTop:hover {
  background: var(--main-color);
}

.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;
  }
}
/*----------------------------------*/
/* bl_foot_cta
----------------------------------*/
.bl_foot_cta {
  display: none;
  position: sticky;
  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 10px 13px;
}
.bl_foot_cta .bl_foot_cta_tel {
  width: 49%;
}
.bl_foot_cta .bl_foot_cta_tel a {
  background-image: linear-gradient(to right, #94b833, #5fa746);
  box-shadow: 0 5px #197a22;
  border: 2px solid #197a22;
}
.bl_foot_cta .bl_foot_cta_form {
  width: 49%;
}
.bl_foot_cta .bl_foot_cta_form a {
  background-image: linear-gradient(to right, #33a0b8, #4668a7);
  box-shadow: 0 5px #193b7a;
  border: 2px solid #193b7a;
}
.bl_foot_cta a {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}
.bl_foot_cta a img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

_:lang(x)::-internal-media-controls-overlay-cast-button, .bl_foot_cta img {
  image-rendering: -webkit-optimize-contrast;
}

@media screen and (min-width: 769px) {
  .bl_foot_cta {
    display: none !important;
  }
}
/*----------------------------------
	.element
----------------------------------*/
.el_title_en {
  font-family: "Great Vibes", serif;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.el_title_en_sub {
  font-family: "Great Vibes", serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.el_title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  line-height: 1.4;
}

@media screen and (min-width: 769px) {
  .el_title_en {
    font-size: 7.2rem;
    margin-bottom: 50px;
  }

  .el_title_en_sub {
    font-size: 3.6rem;
    margin-bottom: 20px;
  }

  .el_title {
    font-size: 4.8rem;
    margin-bottom: 50px;
  }
}
.el_btn_form_wrap {
  max-width: 700px;
  margin: 30px auto;
}

.el_btn_form {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  padding: 15px 15px 15px 30px;
  text-align: center;
  border: none;
  border-radius: 50px;
  background-image: linear-gradient(to right, #33a0b8, #4668a7);
  box-shadow: 0 3px 5px 0 rgba(70, 104, 167, 0.5);
}

.el_btn_form:visited {
  color: #fff;
}

.el_btn_form span {
  position: relative;
  padding-right: 35px;
}

.el_btn_form span:before {
  content: "";
  width: 25px;
  height: 25px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  transition: all 0.2s;
}

.el_btn_form span:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 3px solid #ac3509;
  border-right: 3px solid #ac3509;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 9px;
  margin-top: -3px;
  transition: all 0.2s;
}

@media screen and (min-width: 769px) {
  .el_btn_form_wrap {
    margin: 50px auto;
  }

  .el_btn_form {
    font-size: 4rem;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    padding: 30px 30px 30px 40px;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
  }

  .el_btn_form:hover {
    transform: scale(1.05, 1.05);
  }

  .el_btn_form:visited {
    color: #fff;
  }

  .el_btn_form span {
    position: relative;
    padding-right: 50px;
  }

  .el_btn_form span:before {
    width: 40px;
    height: 40px;
    background: #ffffff;
    right: 0;
    margin-top: -20px;
    transition: all 0.2s;
  }

  .el_btn_form span:after {
    width: 18px;
    height: 18px;
    border-top: 5px solid #ac3509;
    border-right: 5px solid #ac3509;
    right: 14px;
    margin-top: -9px;
    transition: all 0.2s;
  }
}
.el_em_green {
  color: #3d61c4;
  font-weight: 700;
  font-style: normal;
}

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

.el_nmn {
  color: #3d61c4;
  -webkit-text-emphasis: dot;
          text-emphasis: dot;
}

.el_color_accent {
  color: var(--accent-color);
}

.el_color_logo {
  color: #3b5f75;
}

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

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

/*----------------------------------
	helper
----------------------------------*/
.hp_bm_xl {
  margin-bottom: 100px;
}

/*----------------------------------
 .bl_hero
----------------------------------*/
.bl_hero_pc {
  display: block;
  background-image: url(../img/hero_bg.jpg);
  height: 450px;
  background-size: cover;
  background-position: 85%;
  position: relative;
  margin-bottom: 50px;
}

.bl_hero_logo {
  display: none;
}

.bl_hero_price {
  display: none;
}

.bl_hero_title {
  width: 100%;
  padding: 0 10px;
  text-align: center;
  position: absolute;
  bottom: 0%;
  transform: translateY(45%);
}

@media screen and (min-width: 769px) {
  .bl_hero_pc {
    display: block;
    background-image: url(../img/hero_bg.jpg);
    height: 730px;
    background-size: cover;
    background-position: 70%;
    position: relative;
    margin-bottom: 100px;
  }

  .bl_hero_logo {
    display: block;
    text-align: center;
    padding-top: 20px;
    opacity: 0.6;
  }
  .bl_hero_logo img {
    width: 290px;
    height: auto;
  }

  .bl_hero_price {
    display: block;
    position: absolute;
    top: 180px;
    left: 15px;
  }

  .bl_hero_title {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -118px;
    transform: translateY(0);
  }
}
/*----------------------------------
 .bl_movie
----------------------------------*/
.bl_movie_wrap {
  padding: 80px 0 80px;
}

.bl_movie_inner {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 20px;
  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;
}

@media screen and (min-width: 769px) {
  .bl_movie_wrap {
    padding: 100px 0 150px;
  }

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

  .bl_movie_youtube {
    padding: 10px;
    max-width: 900px;
    margin-bottom: 20px;
  }
}
/*----------------------------------
 .bl_about
----------------------------------*/
.bl_about_wrap {
  padding: 70px 0;
  background-image: url(../img/about_bg.jpg);
  background-size: cover;
  transform: skewY(-3deg);
}

.bl_about_inner {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 20px;
  transform: skewY(3deg);
  text-align: center;
}

.bl_about_read {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.bl_about_pict {
  margin-bottom: 30px;
}
.bl_about_pict img {
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(61, 97, 196, 0.4);
}

.bl_about_title {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
.bl_about_title span {
  font-size: 1.6rem;
}

.bl_about_text {
  font-size: 1.6rem;
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .bl_about_wrap {
    padding: 100px 0;
  }

  .bl_about_read {
    font-size: 2.1rem;
    margin-bottom: 40px;
    text-align: center;
  }

  .bl_about_pict {
    margin-bottom: 50px;
  }

  .bl_about_title {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  .bl_about_title span {
    font-size: 2rem;
  }

  .bl_about_text {
    font-size: 1.8rem;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
  }
}
/*----------------------------------
 .bl_feature
----------------------------------*/
.bl_feature_wrap {
  padding: 70px 0;
  padding-bottom: calc(7vw + 70px);
  position: relative;
  overflow: hidden;
}

.bl_feature_wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 7vw solid #f6f1e8;
  /* 三角を白に */
  border-left: 100vw solid transparent;
}

.bl_feature_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 7vw solid #f6f1e8;
  /* 三角を白に */
  border-right: 100vw solid transparent;
}

.bl_feature_inner {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bl_feature_box_wrap {
  margin-top: 60px;
}

.bl_feature_box {
  text-align: center;
  margin-bottom: 30px;
}

.bl_feature_pict {
  margin-bottom: 20px;
}

.bl_feature_machine {
  max-width: 300px;
}

.bl_feature_effect {
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.bl_feature_txt {
  text-align: left;
}

.bl_feature_txt p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.bl_feature_title {
  font-size: 2.1rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.bl_feature_clinic_pict:first-of-type {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .bl_feature_wrap {
    padding: 100px 0;
    padding-bottom: calc(7vw + 110px);
  }

  .bl_feature_box_wrap {
    margin-top: 120px;
  }

  .bl_feature_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
  }

  .bl_feature_reverse {
    flex-direction: row-reverse;
  }

  .bl_feature_pict {
    width: 30%;
  }

  .bl_feature_machine {
    max-width: 200px;
  }

  .bl_feature_effect {
    border-radius: 10px;
    max-width: 300px;
    width: 100%;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  }

  .bl_feature_txt {
    width: 68%;
    text-align: left;
    padding-right: 30px;
  }

  .bl_feature_reverse .bl_feature_txt {
    padding-right: 0;
    padding-left: 30px;
  }

  .bl_feature_txt p {
    font-size: 1.8rem;
    line-height: 1.8;
  }

  .bl_feature_title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
  }

  .bl_feature_clinic {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
  }

  .bl_feature_clinic_pict {
    width: 49%;
  }
}
/*----------------------------------
 .bl_progress
----------------------------------*/
.bl_progress_wrap {
  padding: 70px 0;
  background-color: #f6f1e8;
  padding-bottom: calc(7vw + 70px);
  position: relative;
  overflow: hidden;
}

.bl_progress_wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 7vw solid #fff;
  border-left: 100vw solid transparent;
}

.bl_progress_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 7vw solid #fff;
  border-right: 100vw solid transparent;
}

.bl_progress_inner {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bl_progress_box_wrap {
  margin-bottom: 50px;
  text-align: center;
}

.bl_progress_pict {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 30px;
  border: 10px solid #fff;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.15);
}

.bl_progress_title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bl_progress_txt {
  line-height: 1.6;
}

.bl_progress_arrow {
  margin: 20px 0;
}

.bl_progress_note_title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.bl_progress_note_txt {
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .bl_progress_wrap {
    padding: 70px 0;
    padding-bottom: calc(7vw + 110px);
  }

  .bl_progress_box_wrap {
    max-width: 1100px;
    margin: 20px auto;
    margin-bottom: 80px;
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
  }

  .bl_progress_box {
    width: 25%;
  }

  .bl_progress_pict {
    max-width: 270px;
    height: auto;
    margin-bottom: 30px;
    border: 10px solid #fff;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
  }

  .bl_progress_title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .bl_progress_txt {
    max-width: 270px;
    line-height: 1.6;
  }

  .bl_progress_arrow {
    margin-top: 12%;
    padding-left: 10px;
  }

  .bl_progress_note_title {
    display: inline-block;
    font-size: 2.4rem;
    padding: 10px 20px;
  }

  .bl_progress_note_txt {
    font-size: 1.8rem;
    text-align: center;
  }
}
/*----------------------------------
 .bl_price
----------------------------------*/
.bl_price_wrap {
  padding: 70px 0;
  background-color: #fff;
  padding-bottom: calc(7vw + 70px);
  position: relative;
  overflow: hidden;
}

.bl_price_wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 7vw solid #f6f1e8;
  border-left: 100vw solid transparent;
}

.bl_price_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 7vw solid #f6f1e8;
  border-right: 100vw solid transparent;
}

.bl_price_inner {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bl_price_table_wrap {
  max-width: 600px;
  margin: 0 auto 50px;
}

.bl_price_table {
  width: 100%;
}

.bl_price_table th {
  font-weight: 700;
  font-size: 2.4rem;
  border-bottom: 2px solid #6b6b6b;
  padding: 15px 10px;
}

.bl_price_table td {
  border-bottom: 2px solid #c9c9c9;
  padding: 15px 10px;
}

.bl_price_table span {
  font-size: 1.6rem;
}

.bl_price_times {
  font-size: 2.4rem;
}

.bl_price {
  font-size: 3.2rem;
}

_:lang(x)::-internal-media-controls-overlay-cast-button, .bl_price_campaign img {
  image-rendering: -webkit-optimize-contrast;
}

@media screen and (min-width: 769px) {
  .bl_price_wrap {
    padding: 70px 0;
    padding-bottom: calc(7vw + 110px);
  }

  .bl_price_inner {
    max-width: var(--base-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  .bl_price_table_wrap {
    max-width: 600px;
    margin: 0 auto 70px;
  }

  .bl_price_table {
    width: 100%;
  }

  .bl_price_table th {
    font-weight: 700;
    font-size: 3rem;
    border-bottom: 2px solid #6b6b6b;
    padding: 20px 20px;
  }

  .bl_price_table td {
    border-bottom: 2px solid #c9c9c9;
    padding: 20px 20px;
  }

  .bl_price_table span {
    font-size: 2rem;
    margin-left: 10px;
  }

  .bl_price_times {
    font-size: 3rem;
  }

  .bl_price {
    font-size: 4.6rem;
  }
}
/*----------------------------------
 .bl_clinic
----------------------------------*/
.bl_clinic_wrap {
  padding: 50px 0;
  background-color: #f6f1e8;
}

.bl_clinic_inner {
  max-width: var(--base-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bl_clinic_contents {
  margin-top: 40px;
  margin-bottom: 40px;
}

.bl_clinic_text {
  text-align: left;
}

.bl_clinic_name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.bl_clinic_table {
  font-size: 1.6rem;
  margin: 0 auto;
}
.bl_clinic_table th {
  padding: 5px 0;
  vertical-align: top;
  line-height: 1.8;
  white-space: nowrap;
}
.bl_clinic_table td {
  padding: 5px 0 5px 15px;
  line-height: 1.8;
}

.bl_clinic_pict {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}
.bl_clinic_pict img {
  max-width: 500px;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .bl_clinic_wrap {
    padding: 70px 0;
  }

  .bl_clinic_contents {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 100px auto;
  }

  .bl_clinic_text {
    text-align: left;
  }

  .bl_clinic_name {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
  }

  .bl_clinic_table {
    font-size: 1.8rem;
  }
  .bl_clinic_table th {
    padding: 10px 0;
  }
  .bl_clinic_table td {
    padding: 10px 20px;
    white-space: nowrap;
  }

  .bl_clinic_pict {
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
  }
  .bl_clinic_pict img {
    max-width: 330px;
  }
}
@media screen and (max-width: 769px) {
  .bl_clinic_gmap {
    margin-bottom: 10px;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 90%;
  }

  .bl_clinic_gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/*----------------------------------
	helper
----------------------------------*/
.hp_mb0 {
  margin-bottom: 0 !important;
}

.hp_mb_middle {
  margin-bottom: 50px;
}

@media screen and (min-width: 769px) {
  .hp_mb_middle {
    margin-bottom: 80px;
  }
}
/*# sourceMappingURL=style.css.map */