@charset "UTF-8";
/* responsive setting */
/* color setting */
* {
  box-sizing: border-box;
}

body,
div,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
figure,
form,
fieldset,
input,
textarea,
p,
blockquote,
tbody,
th,
tr,
td,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  background: #fff;
  color: #111;
  font-size: 1.6rem;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, sans-serif;
  font-weight: 300;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}

em,
i {
  font-size: 100%;
  font-weight: 400;
  font-style: normal;
}

ul {
  list-style: none;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}

li {
  list-style: none;
}

table,
tbody,
tr,
th,
td {
  border-collapse: collapse;
}

fieldset,
img {
  border: 0 none;
  max-width: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

img[src$=".svg"] {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 400;
}

main,
article,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym,
tbody,
tr {
  border: 0 none;
}

select option {
  padding: 0 0.5em;
}

form label {
  cursor: pointer;
  display: block;
}

hr {
  clear: both;
  margin: 0;
  padding: 0;
  visibility: hidden;
}

a {
  color: #111;
  border: 0 none;
  outline: medium none;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0, 0, 0.25, 1) 0s;
}

a:focus,
a:hover,
button:focus,
button:hover {
  color: #111;
  outline: medium none;
  text-decoration: none;
}

input,
select,
button {
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, sans-serif;
  vertical-align: middle;
  border-radius: 0;
}

input[type=submit] {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  display: block;
  letter-spacing: inherit;
  padding: 0;
  transition: all 0.5s cubic-bezier(0, 0, 0.25, 1) 0s;
}

textarea {
  font-size: 1.6rem;
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, sans-serif;
  border-radius: 0;
  -webkit-appearance: none;
}

input[type=text],
input[type=password],
textarea,
select {
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
}

*:focus {
  outline: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

iframe {
  border: none;
  display: block;
}

/*------------------------------------------------

		md_select_wrap

------------------------------------------------*/
.md_select_wrap {
  position: relative;
}
.md_select_wrap::after {
  background: url(../img/icn_arrow.svg) center center/24px 24px no-repeat;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  position: absolute;
  top: 16px;
  right: 5px;
}
@media (max-width: 559px) {
  .md_select_wrap::after {
    top: 12px;
  }
}
.md_select_wrap select {
  padding-right: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.md_select_wrap select ::-ms-expand {
  display: none;
}

/*------------------------------------------------

		modal fade

------------------------------------------------*/
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap.mfp-content {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.mfp-fade.mfp-wrap.mfp-ready.mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing.mfp-content {
  opacity: 0;
}

/*------------------------------------------------

		font

------------------------------------------------*/
.is_mont {
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, sans-serif;
}

/*------------------------------------------------

		common

------------------------------------------------*/
.is_animation {
  opacity: 0;
  transform: translate(0, 30px);
  -webkit-transform: translate(0, 30px);
  transition: all 0.5s cubic-bezier(0, 0, 0.25, 1) 0s;
}
@media (max-width: 559px) {
  .is_animation {
    transform: translate(0, 15px);
    -webkit-transform: translate(0, 15px);
  }
}

.is_animation.is_show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
@media (max-width: 559px) {
  .is_animation.is_show {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}

/*------------------------------------------------

		gnavi

------------------------------------------------*/
.md_cta {
  background: #fff;
  padding: 60px 5% 50px;
}
@media (max-width: 767px) {
  .md_cta {
    padding: 30px 3.5% 25px;
  }
}

.cvn-btn-text {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cvn-btn-text p {
  width: 350px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 15px;
  position: relative;
}
@media (max-width: 750px) {
  .cvn-btn-text p {
    width: 48%;
  }
}

.cvn-btn-text p:nth-child(2) {
  margin: 0 0 15px 20px;
  padding: 0 0 0 10px;
}
@media (max-width: 750px) {
  .cvn-btn-text p:nth-child(2) {
    margin: 0 0 7.5px 10px;
    padding: 0 0 0 5px;
  }
}
@media (max-width: 750px) {
  .cvn-btn-text p {
    font-size: 1rem;
    margin: 0 0 7.5px;
  }
}
.cvn-btn-text p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 40px;
  height: 1px;
  background: #111;
  transform: rotate(65deg);
}
@media (max-width: 750px) {
  .cvn-btn-text p::before {
    left: -10px;
    width: 30px;
  }
}
.cvn-btn-text p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 1px;
  background: #111;
  transform: rotate(-65deg);
}
@media (max-width: 750px) {
  .cvn-btn-text p::after {
    right: -10px;
    width: 30px;
  }
}

.md_cta ul {
  line-height: 1.4;
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .md_cta ul {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .md_cta ul li {
    width: 48%;
  }
}
.md_cta ul li a {
  background: #b4e3c1;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  width: 350px;
  height: 100%;
  padding: 10px 0 12px;
  overflow: visible;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .md_cta ul li a {
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    padding: 8px 0 10px;
  }
}

.md_cta ul li:last-child a {
  background: #fffab9;
}

.md_cta ul li a::after {
  border: 1px solid #111;
  border-radius: 100px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .md_cta ul li a::after {
    top: -2px;
  }
}
.md_cta ul li a:hover {
  opacity: 0.6;
}
.md_cta ul li:first-of-type a::before {
  background: url(../img/icn_line.png) center/contain no-repeat;
  content: "";
  display: block;
  width: 25px;
  height: 30px;
  margin-right: 12px;
}
@media (max-width: 767px) {
  .md_cta ul li:first-of-type a::before {
    width: 20px;
    height: 20px;
  }
}
.md_cta ul li:last-of-type {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .md_cta ul li:last-of-type {
    margin-left: 4%;
  }
}
.md_cta ul li:last-of-type a::before {
  background: url(../img/icn_tel.svg) center/contain no-repeat;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
@media (max-width: 767px) {
  .md_cta ul li:last-of-type a::before {
    width: 15px;
    height: 15px;
  }
}

.md_cta.reservation ul li a::before {
  background: url(../img/icn_line.png) center/contain no-repeat;
  content: "";
  display: block;
  width: 25px;
  height: 30px;
  margin-right: 12px;
}

.md_cta > p {
  font-size: 1.2rem;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .md_cta > p {
    font-size: 1.1rem;
    margin-top: 8px;
  }
}
.md_cta.is_green {
  background: #b4e3c1;
}
.md_cta.is_green ul li a {
  background: #fff;
}
.md_cta.is_fix {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 15px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0, 0, 0.25, 1) 0s;
}
@media (max-width: 767px) {
  .md_cta.is_fix {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px 4% 5px;
    left: 0;
  }
}
.md_cta.is_fix.is_show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.md_cta.is_fix ul li a {
  width: 210px;
}
@media (max-width: 767px) {
  .md_cta.is_fix ul li a {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .md_cta.is_fix > p {
    margin-top: 3px;
  }
}

.md_cta.is_fix .cvn-btn-text p {
  width: 210px;
}
@media (max-width: 767px) {
  .md_cta.is_fix .cvn-btn-text p {
    width: 48%;
  }
}
.md_cta.is_fix .cvn-btn-text p:before {
  left: -15px;
}
@media (max-width: 767px) {
  .md_cta.is_fix .cvn-btn-text p:before {
    left: -10px;
  }
}
.md_cta.is_fix .cvn-btn-text p:after {
  right: -15px;
}
@media (max-width: 767px) {
  .md_cta.is_fix .cvn-btn-text p:after {
    right: -10px;
  }
}

.md_cta.reservation ul {
  line-height: 1.4;
  display: block;
}
.md_cta.reservation ul li {
  margin: 0 auto;
}
.md_cta.reservation ul li a {
  background: #b4e3c1;
  margin: 0 auto;
}
.md_cta .banner {
  display: block;
  margin: 0 auto 40px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .md_cta .banner {
    margin: 0 auto 20px;
    width: 100%;
  }
}

/*------------------------------------------------

		header

------------------------------------------------*/
.l_header {
  width: 100%;
  padding: 0 5%;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .l_header {
    background: #fff;
    padding: 25px 5% 20px;
    position: relative;
    top: 0;
  }
}
.l_header .md_inner {
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l_header .md_inner {
    align-items: flex-start;
  }
}
.l_header .md_inner .md_logo a {
  display: block;
}
@media (max-width: 767px) {
  .l_header .md_inner .md_logo a img {
    width: 200px;
  }
}
.l_header .md_inner .md_logo p + p {
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .l_header .md_inner .md_logo p + p {
    font-size: 1rem;
    margin-top: 5px;
  }
}
@media (max-width: 349px) {
  .l_header .md_inner .md_logo p + p {
    font-size: 0.9rem;
  }
}
.l_header .md_inner .md_sns {
  margin-left: 30px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .l_header .md_inner .md_sns {
    margin-left: 0;
  }
}
.l_header .md_inner .md_sns li + li {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .l_header .md_inner .md_sns li + li {
    margin-left: 15px;
  }
}
.l_header .md_inner .md_sns li a {
  display: block;
}
@media (max-width: 559px) {
  .l_header .md_inner .md_sns li a {
    width: 15px;
  }
}
.l_header .md_inner .md_sns li a:hover {
  opacity: 0.6;
}

/*------------------------------------------------

		footer

------------------------------------------------*/
.l_footer {
  font-size: 1.2rem;
  padding: 60px 5% 90px;
  text-align: center;
  background: #fff1e8;
}
.l_footer img {
	height: 33px;
}
@media (max-width: 767px) {
  .l_footer {
    font-size: 1.1rem;
    padding: 30px 5% 150px;
    margin: 0 0 33px;
  }
}

/*------------------------------------------------

		main

------------------------------------------------*/
.l_main {
  overflow: hidden;
}

/*------------------------------------------------

		anchor

------------------------------------------------*/
.md_anchor_list {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 8%;
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 559px) {
  .md_anchor_list {
    margin: 30px auto;
  }
}
.md_anchor_list_item {
  width: 22.5%;
}
@media (max-width: 767px) {
  .md_anchor_list_item {
    width: 48.5%;
  }
}
@media (max-width: 767px) {
  .md_anchor_list_item:nth-of-type(n+3) {
    margin-top: 15px;
  }
}
.md_anchor_list_item a {
  background: #fff;
  border: 1px solid #111;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 10px 20px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .md_anchor_list_item a {
    font-size: 1rem;
    padding: 5px 15px;
  }
}
.md_anchor_list_item a::before {
  background: url(../img/icn_anchor_list_arrow.svg) center/contain no-repeat;
  content: "";
  display: block;
  width: 11px;
  height: 11.5px;
  margin-right: 10px;
}
.md_anchor_list_item a:hover {
  background: #b4e3c1;
}

/*------------------------------------------------

		kv

------------------------------------------------*/
.md_kv {
  background: url(../img/bg_kv_pc.jpg) center/cover no-repeat;
  display: flex !important;
  padding: 200px 8% 90px;
  overflow: hidden;
  position: relative;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .md_kv {
    background: url(../img/bg_kv.jpg) center/cover no-repeat;
    padding: 0 8% 75px;
  }
}
.md_kv::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  display: block;
  width: 30px;
  height: 2000px;
  margin: auto;
  transform: skew(-9deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5%;
  right: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .md_kv::before {
    width: 15px;
    left: 22%;
  }
}
.md_kv::after {
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  min-height: 600px;
  margin: 0 auto;
  position: absolute;
  z-index: 1;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  top: 200px;
  width: 84%;
  height: calc(100% - 290px);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .md_kv::after {
    min-height: 100px;
    top: 45px;
    height: calc(100% - 90px);
  }
}
.md_kv_inner {
  max-width: 1200px;
  min-height: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .md_kv_inner {
    min-height: 440px;
  }
}
.md_kv_inner::before, .md_kv_inner::after {
  background: rgba(255, 255, 255, 0.5);
  content: none;
  display: block;
  width: 80%;
  height: 10px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .md_kv_inner::before, .md_kv_inner::after {
    height: 5px;
  }
}
.md_kv_inner::before {
  top: -40px;
}
@media (max-width: 767px) {
  .md_kv_inner::before {
    top: -20px;
  }
}
.md_kv_inner::after {
  bottom: -40px;
}
@media (max-width: 767px) {
  .md_kv_inner::after {
    bottom: -20px;
  }
}
.md_kv_image {
  position: absolute;
  top: -120px;
  left: 30px;
  z-index: 1;
}
@media (max-width: 767px) {
  .md_kv_image {
  left: -65px;
  top: 0;
  zoom: 0.9;
  }
}
.md_kv_image img {
  zoom: 1;
}
@media (max-width: 767px) {
  .md_kv_image img {
    zoom: 0.68;
  }
}
.md_kv_text {
  width: 100%;
  padding: 0 10% 90px 40%;
  text-align: center;
  flex-direction: row-reverse;
  position: relative;
  z-index: 1;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .md_kv_text {
    padding: 10px 2% 90px 45%;
    align-items: flex-end;
    flex-direction: column-reverse;
  }
}
.md_kv_text h1 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .md_kv_text h1 {
    margin-bottom: 20px;
    zoom: 0.7;
  }
}
@media (max-width: 767px) {
  .md_kv_text h1 img {
    zoom: 0.75;
  }
}
.md_kv_text p {
  margin-right: 50px;
}
@media (max-width: 767px) {
  .md_kv_text p {
    margin-top: 20px;
    margin-right: 30px;
    margin-bottom: 30px;
  }
}
.md_kv_text p img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_kv_text p img {
    zoom: 0.5;
  }
}
.md_kv_btn {
  display: none;
}
@media (max-width: 767px) {
  .md_kv_btn {
    display: block;
    position: absolute;
    bottom: -32px;
    right: -22px;
    z-index: 2;
  }
}
@media (max-width: 767px) {
/*期間限定カウンセリング予約があるとき*/
/*  .md_kv_btn a {
    background: url(../img/bg_kv_btn.svg) center / contain no-repeat;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    width: 200px;
    height: 160px;
    padding: 35px 0 15px 0;
    text-align: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}*/
/*通常*/
  .md_kv_btn a {
    background: url(../img/bg_kv_btn.svg) center/contain no-repeat;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    width: 150px;
    height: 150px;
    padding: 0 5px 15px 0;
    text-align: center;
    align-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*期間限定カウンセリング予約があるとき*/
/*.md_kv_btn a p {
  margin: 5px 0 0;
}
.md_kv_btn a p:nth-of-type(3) {
  margin: 5px 0 5px;
}*/
.md_kv_btn a p:nth-of-type(1) {
  color: #f3290e;
}
/*通常*/
  .md_kv_btn a p {
  margin: 5px 0;
}
.md_kv_btn a img {
  zoom: 0.5;
}
.md_kv_price {
  position: absolute;
  width: 100%;
  background: #423d3c;
  left: 0;
  color: #FFF;
  bottom: 30%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5% 8%;
  height: 58px;
}
@media (max-width: 767px) {
  .md_kv_price {
    bottom: 24%;
    height: 40px;
  }
}
/* .md_kv picture img {
    position: absolute;
    bottom: 120px;
    left: 0;
    z-index: 100;
    width: 60%;
    padding: 0 0 0 11%;
}
@media (max-width: 767px) {
.md_kv picture img {
    bottom: 24px;
    padding: 0 0 0 8%;
}
} */
.md_kv > p{
  position: absolute;
  bottom: 18%;
  right: 7%;
  z-index: 100;
  color: #f3290e;
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0 10% 0 auto;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .md_kv > p {
    bottom: 5%;
    right: 30%;
    font-size: 1.6rem;
    margin: 0 10% 0 auto;
    width: 50%;
  }
}


.md_kv_price::before,
.md_kv_price::after {
  background: url(../img/point_top_line_white.svg) 0 0 / 580px auto repeat-x;
  content: "";
  display: block;
  width: 50%;
  height: 39px;
  margin: 0 2px 0;
  position: absolute;
  bottom: 0;
  top: 10px;
  z-index: 1;
}
@media (max-width: 767px) {
  .md_kv_price::before,
  .md_kv_price::after {
    background: url(../img/point_top_line_white.svg) 0 0 / 390px 39px repeat-x;
    height: 40px;
    bottom: 0;
    top: 0;
  }
}
.md_kv_price::before {
  left: 0;
  width: 35%;
}
.md_kv_price::after {
  right: 0;
  width: 10%;
}
@media (max-width: 767px) {
  .md_kv_price::before {
    width: 35%;
  }
  .md_kv_price::after {
    width: 8%;
  }
}
.md_kv_price_inner {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  top: 0;
  min-height: 60px;
  width: 84%;
}
@media (max-width: 767px) {
  .md_kv_price_inner {
    font-size: 10px;
    min-height: 45px;
    zoom: 0.92;
  }
}
.md_kv_price_inner p:nth-of-type(1) {
  position: absolute;
  right: 15%;
}
@media (max-width: 767px) {
  .md_kv_price_inner p:nth-of-type(1) {
    right: 3%;
  }
}
@media (max-width: 767px) {
  .md_kv_price_inner p:nth-of-type(1) img {
    zoom: 0.75;
  }
}
.md_kv_price_inner p:nth-of-type(2) {
  position: absolute;
  right: 9%;
  top: 80px;
  color: #f3290e;
  font-weight: 500;
  font-size: 1.8rem;
  /* left: 0; */
  text-align: center;
}
@media (max-width: 767px) {
  .md_kv_price_inner p:nth-of-type(2) {
    display: none;
}
}
/*------------------------------------------------

		about

------------------------------------------------*/
.md_about {
  background: #ffe4d1 url(../img/bg_about.png) center/cover no-repeat;
  padding: 120px 12%;
  position: relative;
  overflow: visible;
}
@media (max-width: 767px) {
  .md_about {
    padding: 75px 0 60px;
  }
}
.md_about::before {
  background: url(../img/point_top_line.svg) center/contain no-repeat;
  content: "";
  display: block;
  width: 576px;
  height: 39px;
  margin: 0 auto;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .md_about::before {
    width: 288px;
    height: 19px;
    bottom: -10px;
  }
}
.md_about_inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.md_about img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_about img {
    zoom: 0.5;
  }
}
.md_about_ttl {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .md_about_ttl {
    margin-bottom: 25px;
  }
}
.md_about_list {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .md_about_list {
    margin: 0 -30px;
  }
}
.md_about_list_item {
  background: url(../img/bg_about_list.svg) center/contain no-repeat;
  width: 240px;
  height: 240px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .md_about_list_item {
    width: 161px;
    height: 161px;
  }
}
.md_about_list_item:nth-of-type(2) {
  margin: 45px -10px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .md_about_list_item:nth-of-type(2) {
    margin: 45px -35px 0;
  }
}
.md_about_list_item span {
  display: block;
  width: 100%;
}
.md_about_list_item strong {
  display: block;
  width: 100%;
}
.md_about_list_item span + strong,
.md_about_list_item strong + span {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .md_about_list_item span + strong,
.md_about_list_item strong + span {
    margin-top: 5px;
    font-size: 11px;
    position: sticky;
    z-index: 1;
  }
}
.md_about_caption {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .md_about_caption {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
.md_about_caption strong {
  color: #f3290e;
  font-size: 4.5rem;
  font-weight: 500;
  padding: 0 5px;
}
@media (max-width: 767px) {
  .md_about_caption strong {
    font-size: 3rem;
  }
}
.md_about_caption span {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .md_about_caption span {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------

		point

------------------------------------------------*/
.md_point {
  border-bottom: 1px solid #ccc;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .md_point {
    padding: 75px 0 60px;
  }
}
.md_point::after {
  background: url(../img/point_top_circle.svg) center/contain no-repeat;
  content: "";
  display: block;
  width: 300px;
  height: 490px;
  position: absolute;
  top: -160px;
  left: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .md_point::after {
    width: 150px;
    height: 245px;
    top: -80px;
  }
}
.md_point_inner {
  max-width: 750px;
  margin: 0 auto;
}
.md_point_ttl {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .md_point_ttl {
    margin-bottom: 45px;
  }
}
.md_point_ttl h2 img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_point_ttl h2 img {
    zoom: 0.5;
  }
}
@media (max-width: 767px) {
  .md_point_ttl h2 {
    font-size: 2.25rem;
  }
}
.md_point_ttl span {
  font-size: 4.5rem;
}
@media (max-width: 767px) {
  .md_point_ttl span {
    font-size: 3rem;
  }
}
.md_point_list_item:not(:first-of-type) {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .md_point_list_item:not(:first-of-type) {
    margin-top: 30px;
  }
}
.md_point_list_item:nth-of-type(even) {
  padding-left: 12%;
}
@media (max-width: 767px) {
  .md_point_list_item:nth-of-type(even) figure {
    border-radius: 10px 0 0 10px;
  }
}
.md_point_list_item:nth-of-type(even) div {
  padding-right: 12%;
}
.md_point_list_item:nth-of-type(odd) {
  padding-right: 12%;
}
@media (max-width: 767px) {
  .md_point_list_item:nth-of-type(odd) figure {
    border-radius: 0 10px 10px 0;
  }
}
.md_point_list_item:nth-of-type(odd) div {
  padding-left: 12%;
}
.md_point_list_item figure {
  border-radius: 20px;
  width: 100%;
  height: 0;
  padding-top: 66.66666%;
  overflow: hidden;
  position: relative;
}
.md_point_list_item figure img {
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.md_point_list_item figure figcaption {
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: #fff 1px 0 5px, #fff 1px 0 10px;
  position: absolute;
  bottom: 30px;
  left: 5%;
}
@media (max-width: 767px) {
  .md_point_list_item figure figcaption {
    font-size: 1.1rem;
    bottom: 15px;
  }
}
.md_point_list_item_text {
  margin-top: 30px;
  text-align: justify;
}
@media (max-width: 767px) {
  .md_point_list_item_text {
    margin-top: 20px;
  }
}
.md_point_list_item_text p span {
  background: #fff78d;
  font-weight: 500;
}
.md_point_list_item_text .is_attention {
  font-size: 1.4rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .md_point_list_item_text .is_attention {
    font-size: 1.2rem;
  }
}
.md_point_image {
  display: none;
  position: absolute;
  bottom: 0;
  right: calc(50% - 30%);
  z-index: 1;
}
@media (max-width: 767px) {
  .md_point_image {
    right: -100px;
  }
}
.md_point_image img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_point_image img {
    zoom: 0.5;
  }
}

/*------------------------------------------------

		recommend

------------------------------------------------*/
.md_recommend {
  background: #fff;
  padding: 90px 0 0;
}
@media (max-width: 767px) {
  .md_recommend {
    padding: 60px 0 0;
  }
}
.md_recommend img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_recommend img {
    zoom: 0.5;
  }
}
.md_recommend_ttl {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .md_recommend_ttl {
    margin-bottom: 40px;
  }
}
.md_recommend_content {
  background: #ead3cb url(../img/bg_recommend.jpg) center left/contain no-repeat;
  padding: 60px 12%;
}
@media (max-width: 767px) {
  .md_recommend_content {
    background: #ead3cb url(../img/bg_recommend_sp.jpg) center left/contain no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 145px 8% 25px;
  }
}
.md_recommend_list_item {
  align-items: center;
  background: rgba(255, 255, 255, 0.5) url(../img/icn_recommend_check.svg) center left 10px/20px auto no-repeat;
  border: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
  padding: 15px 20px 15px 50px;
}
@media (max-width: 767px) {
  .md_recommend_list_item {
    background-size: 15px auto;
    font-size: 1.3rem;
    padding: 8px 15px 8px 35px;
  }
}
.md_recommend_list_item:not(:first-of-type) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .md_recommend_list_item:not(:first-of-type) {
    margin-top: 15px;
  }
}
.md_recommend_list_item:nth-child(4) p:first-child {
  width: calc(100% - 95px);
}
.md_recommend_list_item:nth-child(4) p:last-child {
  width: 80px;
  margin-left: 15px;
}
.md_recommend_list_item strong {
  color: #f3290e;
  font-size: 1.8rem;
  display: block;
}
@media (max-width: 767px) {
  .md_recommend_list_item strong {
    font-size: 1.3rem;
  }
}
.md_recommend_list_item span {
  font-size: 1.1rem;
  display: block;
}

/*------------------------------------------------

		effect
		sp

------------------------------------------------*/
.md_effect {
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .md_effect {
    padding: 60px 0;
  }
}
.md_effect::before, .md_effect::after {
  content: "";
  display: block;
  width: 300px;
  height: 490px;
  position: absolute;
}
@media (max-width: 767px) {
  .md_effect::before, .md_effect::after {
    width: 150px;
    height: 245px;
  }
}
.md_effect::before {
  background: url(../img/effect_top_circle.svg) center/contain no-repeat;
  top: -160px;
  left: 0;
}
@media (max-width: 767px) {
  .md_effect::before {
    top: -80px;
  }
}
.md_effect::after {
  background: url(../img/effect_bottom_circle.svg) center/contain no-repeat;
  bottom: -160px;
  right: 0;
}
@media (max-width: 767px) {
  .md_effect::after {
    bottom: -80px;
  }
}
.md_effect_inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.md_effect_ttl {
  max-width: 750px;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .md_effect_ttl {
    margin-bottom: 45px;
    padding: 0 12%;
  }
}
.md_effect_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_effect_ttl img {
    zoom: 0.5;
  }
}
.md_effect_content {
  max-width: 750px;
  margin: 0 auto;
}
.md_effect_content:not(:first-of-type) {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .md_effect_content:not(:first-of-type) {
    margin-top: 60px;
  }
}
.md_effect_content_ttl {
  max-width: 570px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .md_effect_content_ttl {
    max-width: unset;
    padding: 0 12%;
  }
}
.md_effect_content_ttl figure {
  width: 100%;
  height: 0;
  padding-top: 50%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .md_effect_content_ttl figure {
    padding-top: 61.4%;
  }
}
.md_effect_content_ttl figure img {
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.md_effect_content_ttl_text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .md_effect_content_ttl_text {
    left: 8%;
  }
}
.md_effect_content_ttl_text img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_effect_content_ttl_text img {
    zoom: 0.5;
  }
}
.md_effect_content_ttl_text p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .md_effect_content_ttl_text p {
    margin-bottom: 20px;
  }
}
.md_effect_content_caption {
  width: 100%;
  max-width: 570px;
  margin: 30px auto 0;
  text-align: justify;
}
@media (max-width: 767px) {
  .md_effect_content_caption {
    max-width: unset;
    margin-top: 20px;
    padding: 0 12%;
  }
}
.md_effect_content_list {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .md_effect_content_list {
    margin-top: 35px;
  }
}
.md_effect_content_list_item:not(:first-of-type) {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .md_effect_content_list_item:not(:first-of-type) {
    margin-top: 35px;
  }
}
.md_effect_content_list_item:nth-of-type(odd) {
  padding-right: 12%;
}
@media (max-width: 767px) {
  .md_effect_content_list_item:nth-of-type(odd) figure {
    border-radius: 0 10px 10px 0;
  }
}
.md_effect_content_list_item:nth-of-type(odd) div {
  padding-left: 12%;
}
.md_effect_content_list_item:nth-of-type(even) {
  padding-left: 12%;
}
.md_effect_content_list_item:nth-of-type(even) > p {
  text-align: right;
}
@media (max-width: 767px) {
  .md_effect_content_list_item:nth-of-type(even) figure {
    border-radius: 10px 0 0 10px;
  }
}
.md_effect_content_list_item:nth-of-type(even) div {
  padding-right: 12%;
}
.md_effect_content_list_item_caption {
  margin-bottom: -20px;
  padding: 0 12%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .md_effect_content_list_item_caption {
    margin-bottom: -8px;
  }
}
.md_effect_content_list_item_caption img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_effect_content_list_item_caption img {
    zoom: 0.5;
  }
}
.md_effect_content_list_item_image {
  border-radius: 20px;
  width: 100%;
  height: 0;
  padding-top: 45%;
  overflow: hidden;
  position: relative;
}
.md_effect_content_list_item_image img {
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.md_effect_content_list_item_text {
  margin-top: -15px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .md_effect_content_list_item_text {
    margin-top: -10px;
  }
}
.md_effect_content_list_item_text h4 span {
  display: block;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .md_effect_content_list_item_text h4 span {
    font-size: 1.3rem;
  }
}
.md_effect_content_list_item_text h4 strong {
  display: block;
  margin-top: 5px;
}
.md_effect_content_list_item_text h4 strong img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_effect_content_list_item_text h4 strong img {
    zoom: 0.5;
  }
}

/*------------------------------------------------

		price

------------------------------------------------*/
.md_price {
  background: #ffe4d1;
  padding: 120px 0 90px;
}
@media (max-width: 767px) {
  .md_price {
    padding: 60px 0 0;
  }
}
.md_price_inner {
  max-width: 1200px;
  margin: 0 auto;
}
.md_price_ttl {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .md_price_ttl {
    margin-bottom: 45px;
  }
}
.md_price_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_price_ttl img {
    zoom: 0.5;
  }
}
.md_price_ttl .md_anchor_list {
  display: none;
}
@media (max-width: 767px) {
  .md_price_ttl .md_anchor_list {
    display: flex;
  }
}
.md_price_text {
  margin: 40px 0;
}
@media (max-width: 767px) {
  .md_price_text {
    margin: 20px 0;
  }
}
.md_price_list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.md_price_list_item {
  width: 48.5%;
  padding: 20px 4% 50px;
}
@media (max-width: 767px) {
  .md_price_list_item {
    border-radius: 10px 10px 0 0;
    width: 100%;
    padding: 15px 0 75px;
  }
}
.md_price_list_item:nth-of-type(1) {
  background: #fff;
}
.md_price_list_item:nth-of-type(2) {
  background: #fff1e8;
}
.md_price_list_item:nth-of-type(3) {
  background: #fff1e8;
}
@media (max-width: 767px) {
  .md_price_list_item:nth-of-type(3) {
    background: #fff;
  }
}
.md_price_list_item:nth-of-type(4) {
  background: #fff;
}
@media (max-width: 767px) {
  .md_price_list_item:nth-of-type(4) {
    background: #fff1e8;
  }
}
@media (max-width: 767px) {
  .md_price_list_item:nth-of-type(n+2) {
    margin-top: -30px;
  }
}
.md_price_list_item:nth-of-type(n+3) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .md_price_list_item:nth-of-type(n+3) {
    margin-top: -30px;
  }
}
.md_price_list_item h3 {
  background: #fff;
  border: 1px solid #111;
  border-radius: 15px;
  width: 85%;
  max-width: 240px;
  margin: 0 auto;
  padding: 3px 10px;
  text-align: center;
  position: relative;
  top: -40px;
}
@media (max-width: 767px) {
  .md_price_list_item h3 {
    border-radius: 10px;
    top: -30px;
  }
}
.md_price_list_item h3 img {
  zoom: 0.6;
}
@media (max-width: 559px) {
  .md_price_list_item h3 img {
    zoom: 0.5;
  }
}
.md_price_list_item_ttl {
  margin-bottom: 20px;
  text-align: center;
}
.md_price_list_item_ttl p {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .md_price_list_item_ttl p {
    font-size: 1.4rem;
  }
}
.md_price_list_item_ttl p span {
  display: block;
  font-weight: 300;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .md_price_list_item_ttl p span {
    font-size: 1.2rem;
  }
}
.md_price_list_item_ttl p + p {
  color: #f3290e;
  font-size: 1.2rem;
}
.md_price_list_item_ttl p + p strong {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .md_price_list_item_ttl p + p strong {
    font-size: 2rem;
  }
}
.md_price_list_item_image {
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .md_price_list_item_price {
    font-size: 1.2rem;
    padding: 0 12%;
  }
}
.md_price_list_item_price dl {
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
}
.md_price_list_item_price dl div {
  padding-bottom: calc(35px + 1em);
  position: relative;
}
@media (max-width: 767px) {
  .md_price_list_item_price dl div {
    padding-bottom: calc(35px + 1em);
  }
}
.md_price_list_item_price dl div:not(:first-of-type) {
  border-top: 1px dashed #111;
}
.md_price_list_item_price dl div dt {
  padding-top: 15px;
  margin-bottom: 5px;
  font-weight: 700;
}
.md_price_list_item_price dl div dt span {
  font-weight: 300;
}
.md_price_list_item_price dl div dt img{
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_price_list_item_price dl div dt img{
    zoom: 0.5;
  }
}
.md_price_list_item_price dl div dd {
  font-weight: 700;
  position: absolute;
  bottom: 8px;
  right: 0;
}
.md_price_list_item_price dl div dd {
  bottom: 12px;
}
.md_price_list_item_price dl div dd span {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .md_price_list_item_price dl div dd span {
    font-size: 1rem;
  }
}
.md_price_list_item_price dl div dd.is_fc_red {
  color: #f3290e;
  width: 100%;
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.md_price_list_item_price dl div dd.is_fc_red p:first-child {
  line-height: 1.5;
}
.md_price_list_item_price dl div dd.is_fc_red .is_marker {
  box-decoration-break: clone;	
  -webkit-box-decoration-break: clone;
  background: #ffe682;
  color: #000;
}
.md_price + .md_cta {
  background: #fff;
  padding: 60px 5% 50px;
}
@media (max-width: 767px) {
  .md_price + .md_cta {
    padding: 0 3.5% 25px;
  }
}
/*------------------------------------------------

		aquicell

------------------------------------------------*/
.md_aquicell {
  background: #f1f1f1;
  padding: 90px 0;
}
@media (max-width: 767px) {
  .md_aquicell {
    padding: 60px 0;
  }
}
.md_aquicell_inner {
  max-width: 750px;
  margin: 0 auto;
}
.md_aquicell_ttl {
  text-align: center;
}
.md_aquicell_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_aquicell_ttl img {
    zoom: 0.5;
  }
}
.md_aquicell_list {
  margin-top: 60px;
}
.md_aquicell_list_item:not(:first-of-type) {
  margin-top: 45px;
}
.md_aquicell_list_item:nth-of-type(odd) {
  padding-left: 12%;
}
@media (max-width: 767px) {
  .md_aquicell_list_item:nth-of-type(odd) figure {
    border-radius: 10px 0 0 10px;
  }
}
.md_aquicell_list_item:nth-of-type(odd) div:first-of-type > p {
  left: -20px;
}
.md_aquicell_list_item:nth-of-type(odd) div:last-of-type {
  padding-right: 12%;
}
.md_aquicell_list_item:nth-of-type(even) {
  padding-right: 12%;
}
@media (max-width: 767px) {
  .md_aquicell_list_item:nth-of-type(even) figure {
    border-radius: 0 10px 10px 0;
  }
}
.md_aquicell_list_item:nth-of-type(even) div:first-of-type > p {
  right: -20px;
}
.md_aquicell_list_item:nth-of-type(even) div:last-of-type {
  padding-left: 12%;
}
.md_aquicell_list_item_ttl {
  position: relative;
}
.md_aquicell_list_item_ttl_image {
  border-radius: 20px;
  width: 100%;
  height: 0;
  padding-top: 66.6666%;
  overflow: hidden;
  position: relative;
}
.md_aquicell_list_item_ttl_image img {
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.md_aquicell_list_item_ttl > p {
  position: absolute;
  top: 40px;
}
@media (max-width: 767px) {
  .md_aquicell_list_item_ttl > p {
    top: 20px;
  }
}
.md_aquicell_list_item_ttl > p img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_aquicell_list_item_ttl > p img {
    zoom: 0.5;
  }
}
.md_aquicell_list_item_text {
  margin-top: 30px;
}

.md_aquicell_list_item_text p {
  text-align: justify;
}
.md_aquicell_list_item_text p span {
  background: #fff78d;
  font-weight: 500;
}

.md_aquicell_list_item_text li {
  text-align: justify;
  padding-left: 1em;
  text-indent: -1em;
}
.md_aquicell_list_item_text li::before {
   content: "●";
   color: #111;
}
.md_aquicell_list_item_text li:not(:first-child) {
   padding-top: 20px;
}
@media (max-width: 767px) {
	.md_aquicell_list_item_text li:not(:first-child) {
	padding-top: 10px;
	}
}
.md_aquicell_list_item_text li span {
  background: #fff78d;
  font-weight: 500;
}

/*------------------------------------------------

		feature

------------------------------------------------*/
.md_feature {
  padding: 90px 0;
}
@media (max-width: 767px) {
  .md_feature {
    padding: 60px 0;
  }
}
.md_feature_inner {
  max-width: 750px;
  margin: 0 auto;
}
.md_feature_ttl {
  text-align: center;
}
.md_feature_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_feature_ttl img {
    zoom: 0.5;
  }
}
.md_feature_list {
  margin-top: 60px;
}
.md_feature_list_item:not(:first-of-type) {
  margin-top: 45px;
}
.md_feature_list_item:nth-of-type(odd) {
  padding-left: 12%;
}
@media (max-width: 767px) {
  .md_feature_list_item:nth-of-type(odd) figure {
    border-radius: 10px 0 0 10px;
  }
}
.md_feature_list_item:nth-of-type(odd) div:first-of-type > p {
  left: -20px;
}
.md_feature_list_item:nth-of-type(odd) div:last-of-type {
  padding-right: 12%;
}
.md_feature_list_item:nth-of-type(even) {
  padding-right: 12%;
}
@media (max-width: 767px) {
  .md_feature_list_item:nth-of-type(even) figure {
    border-radius: 0 10px 10px 0;
  }
}
.md_feature_list_item:nth-of-type(even) div:first-of-type > p {
  right: -20px;
}
.md_feature_list_item:nth-of-type(even) div:last-of-type {
  padding-left: 12%;
}
.md_feature_list_item_ttl {
  position: relative;
}
.md_feature_list_item_ttl_image {
  border-radius: 20px;
  width: 100%;
  height: 0;
  padding-top: 45%;
  overflow: hidden;
  position: relative;
}
.md_feature_list_item_ttl_image img {
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.md_feature_list_item_ttl > p {
  position: absolute;
  top: 40px;
}
@media (max-width: 767px) {
  .md_feature_list_item_ttl > p {
    top: 20px;
  }
}
.md_feature_list_item_ttl > p img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_feature_list_item_ttl > p img {
    zoom: 0.5;
  }
}
.md_feature_list_item_text {
  margin-top: 30px;
}
.md_feature_list_item_text h3 {
  margin-bottom: 15px;
}
.md_feature_list_item_text h3 img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_feature_list_item_text h3 img {
    zoom: 0.5;
  }
}
.md_feature_list_item_text p {
  text-align: justify;
}
.md_feature_list_item_text p strong {
  color: #f3290e;
}
.md_feature_list_item_text_btn {
  margin-top: 20px;
}
@media (max-width: 559px) {
  .md_feature_list_item_text_btn {
    margin-top: 15px;
  }
}
.md_feature_list_item_text_btn a {
  background: #FFF;
  border-radius: 100px;
  border: 1px solid #111;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  width: 350px;
  height: 100%;
  margin: 0 auto;
  padding: 10px 0 10px;
  overflow: visible;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: all 0.5s;
}
.md_feature_list_item_text_btn a:hover {
  opacity: 0.5;
}
@media (max-width: 559px) {
  .md_feature_list_item_text_btn a {
    width: 100%;
    margin: 0;
  }
}
.md_feature_list_item_text_btn a img {
  zoom: 0.65;
  left: 30px;
  position: absolute;
}
@media (max-width: 559px) {
  .md_feature_list_item_text_btn a img {
    width: 15px;
    left: 40px;
    position: absolute;
      zoom: 0.75;
  }
}

/*------------------------------------------------

		doctor

------------------------------------------------*/
.md_doctor {
  background: #ffe4d1;
  padding: 120px 0 90px;
}
@media (max-width: 767px) {
  .md_doctor {
    padding: 60px 0 0;
  }
}
.md_doctor_inner {
  max-width: 1200px;
  margin: 0 auto;
}
.md_doctor_ttl {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .md_doctor_ttl {
    margin-bottom: 45px;
  }
}
.md_doctor_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_doctor_ttl img {
    zoom: 0.5;
  }
}
.md_doctor_ttl .md_anchor_list {
  display: none;
}
@media (max-width: 767px) {
  .md_doctor_ttl .md_anchor_list {
    display: flex;
  }
}
.md_doctor_list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.md_doctor_list_item {
  width: 48.5%;
  padding: 20px 4% 50px;
}
@media (max-width: 767px) {
  .md_doctor_list_item {
    border-radius: 10px 10px 0 0;
    width: 100%;
    padding: 15px 0 75px;
  }
}
.md_doctor_list_item:nth-of-type(1) {
  background: #fff;
}
.md_doctor_list_item:nth-of-type(2) {
  background: #fff1e8;
}
.md_doctor_list_item:nth-of-type(3) {
  background: #fff1e8;
}
@media (max-width: 767px) {
  .md_doctor_list_item:nth-of-type(3) {
    background: #fff;
  }
}
.md_doctor_list_item:nth-of-type(4) {
  background: #fff;
}
@media (max-width: 767px) {
  .md_doctor_list_item:nth-of-type(4) {
    background: #fff1e8;
  }
}
.md_doctor_list_item:nth-of-type(5) {
  background: #fff;
}
@media (max-width: 767px) {
  .md_doctor_list_item:nth-of-type(5) {
    background: #fff;
  }
}
.md_doctor_list_item:nth-of-type(6) {
  background: #fff1e8;
}
@media (max-width: 767px) {
  .md_doctor_list_item:nth-of-type(6) {
    background: #fff1e8;
  }
}

@media (max-width: 767px) {
  .md_doctor_list_item:nth-of-type(n+2) {
    margin-top: -30px;
  }
}
.md_doctor_list_item:nth-of-type(n+3) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .md_doctor_list_item:nth-of-type(n+3) {
    margin-top: -30px;
  }
}
.md_doctor_list_item h3 {
  background: #fff;
  border: 1px solid #111;
  border-radius: 15px;
  width: 85%;
  max-width: 240px;
  margin: 0 auto;
  padding: 3px 10px;
  text-align: center;
  position: relative;
  top: -40px;
}
@media (max-width: 767px) {
  .md_doctor_list_item h3 {
    border-radius: 10px;
    top: -30px;
  }
}
.md_doctor_list_item h3 img {
  zoom: 0.6;
}
@media (max-width: 559px) {
  .md_doctor_list_item h3 img {
    zoom: 0.5;
  }
}
.md_doctor_list_item_text {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .md_doctor_list_item_text {
    font-size: 1.2rem;
    padding: 0 12%;
  }
}
.md_doctor_list_item_text p strong {
  font-weight: 500;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .md_doctor_list_item_text p strong {
    font-size: 1.1rem;
  }
}
.md_doctor_list_item_text p + p {
  min-height: 5.2em;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .md_doctor_list_item_text p + p {
    margin-top: 5px;
  }
}
.md_doctor_list_item_iframe {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .md_doctor_list_item_iframe {
    margin: 20px 12% 0;
  }
}
.md_doctor_list_item_iframe iframe {
  width: 100%;
  height: 250px;
}
@media (max-width: 767px) {
  .md_doctor_list_item_iframe iframe {
    height: 175px;
  }
}
.md_doctor_list_item_person {
  margin-top: 30px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .md_doctor_list_item_person {
    padding-right: 8%;
  }
}
.md_doctor_list_item_person_image {
  border-radius: 10px;
  width: 160px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .md_doctor_list_item_person_image {
    border-radius: 0 10px 10px 0;
  }
}
.md_doctor_list_item_person_text {
  width: calc(100% - 180px);
  text-align: center;
}
.md_doctor_list_item_person_text p:not(.md_tel_btn) {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .md_doctor_list_item_person_text p:not(.md_tel_btn) {
    font-size: 1.2rem;
  }
}
.md_doctor_list_item_person_text p:not(.md_tel_btn) strong {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .md_doctor_list_item_person_text p:not(.md_tel_btn) strong {
    font-size: 1.4rem;
  }
}
.md_doctor_list_item_person_text .md_tel_btn {
  margin-top: 10px;
}
.md_doctor_list_item_person_text .md_tel_btn a {
  background: #fffab9;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  width: 200px;
  height: 100%;
  margin: 0 auto;
  padding: 10px 0 12px;
  overflow: visible;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .md_doctor_list_item_person_text .md_tel_btn a {
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    padding: 8px 0 10px;
  }
}
.md_doctor_list_item_person_text .md_tel_btn a::before {
  background: url(../img/icn_tel.svg) center/contain no-repeat;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
@media (max-width: 767px) {
  .md_doctor_list_item_person_text .md_tel_btn a::before {
    width: 15px;
    height: 15px;
  }
}
.md_doctor_list_item_person_text .md_tel_btn a::after {
  border: 1px solid #111;
  border-radius: 100px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .md_doctor_list_item_person_text .md_tel_btn a::after {
    top: -2px;
  }
}
.md_doctor_list_item_person_text .md_tel_btn a:hover {
  opacity: 0.6;
}
.md_doctor_list_item_person_text > span {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 10px 0 0 0;
}
@media (max-width: 767px) {
  .md_doctor_list_item_person_text > span {
    font-size: 1.1rem;
    margin: 5px 0 0 0;
  }
}

/*------------------------------------------------

		howtopay

------------------------------------------------*/
.md_howtopay {
  padding: 90px 12%;
}
@media (max-width: 767px) {
  .md_howtopay {
    padding: 45px 12%;
  }
}
.md_howtopay_inner {
  max-width: 500px;
  margin: 0 auto;
}
.md_howtopay_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_howtopay_ttl img {
    zoom: 0.5;
  }
}
.md_howtopay_list {
  margin-top: 20px;
}
.md_howtopay_list_item {
  margin-top: 15px;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .md_howtopay_list_item {
    margin-top: 10px;
    padding-left: 10px;
  }
}
.md_howtopay_list_item::before {
  background: #f3290e;
  border-radius: 50%;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0.5em;
  left: 0;
}
@media (max-width: 767px) {
  .md_howtopay_list_item::before {
    width: 4px;
    height: 4px;
  }
}
.md_howtopay_list_item h3 {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .md_howtopay_list_item h3 {
    font-size: 1.1rem;
  }
}
.md_howtopay_list_item p {
  font-size: 1.3rem;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .md_howtopay_list_item p {
    font-size: 1rem;
  }
}
.md_howtopay_list_item p img {
  zoom: 0.5;
}

/*------------------------------------------------

		faq

------------------------------------------------*/
.md_faq {
  background: #fff1e8;
  padding: 90px 12%;
}
@media (max-width: 767px) {
  .md_faq {
    padding: 60px 12%;
  }
}
.md_faq_inner {
  max-width: 750px;
  margin: 0 auto;
}
.md_faq_ttl {
  text-align: center;
}
.md_faq_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_faq_ttl img {
    zoom: 0.5;
  }
}
.md_faq_list {
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
  margin-top: 50px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .md_faq_list {
    margin-top: 40px;
    padding-bottom: 22.5px;
  }
}
.md_faq_list_item:not(:first-of-type) {
  border-top: 1px dashed #111;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .md_faq_list_item:not(:first-of-type) {
    margin-top: 22.5px;
  }
}
.md_faq_list_item dt {
  background: url(../img/icn_arrow_black.svg) top 40px right/18px auto no-repeat;
  padding: 40px 60px 0;
  position: relative;
}
@media (max-width: 767px) {
  .md_faq_list_item dt {
    background-position: top 30px right;
    background-size: 13.5px auto;
    padding: 22.5px 40px 0;
  }
}
.md_faq_list_item dt::before {
  border: 1px solid #111;
  border-radius: 50%;
  content: "Q";
  font-size: 1.8rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  left: 0;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .md_faq_list_item dt::before {
    font-size: 1.4rem;
    width: 25px;
    height: 25px;
    top: 22.5px;
  }
}
.md_faq_list_item dd {
  display: none;
  font-size: 1.4rem;
  line-height: 2;
  padding: 20px 0 0 60px;
  text-align: justify;
}
@media (max-width: 767px) {
  .md_faq_list_item dd {
    font-size: 1.3rem;
    padding: 15px 0 0 22.5px;
  }
}
.md_faq_list_item dd p{
  margin-top: 10px;
}
@media (max-width: 767px) {
.md_faq_list_item dd p{
  margin-top: 7.5px;
}
}
.homeday_hiddenArea {
  width: 100%;
}

.homeday_hiddenArea .button,
.homeday_hiddenArea .button2,
.homeday_hiddenArea .button3 {
  padding: 10px 0;
  position: relative;
  display: inline-block;
  margin-left: 25px;
}

.homeday_hiddenArea .button:hover,
.homeday_hiddenArea .button2:hover,
.homeday_hiddenArea .button3:hover {
  cursor: pointer;
  opacity: 0.8;
}

.homeday_hiddenArea .button::before,
.homeday_hiddenArea .button2::before,
.homeday_hiddenArea .button3::before {
  background-color: #b4e3c1;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  left: -25px;
  top: 12px;
}

.homeday_hiddenArea .button::after,
.homeday_hiddenArea .button2::after,
.homeday_hiddenArea .button3::after {
  content: "+";
  position: absolute;
  font-size: 14px;
  color: #fff;
  left: -19px;
  top: 9px;
}

.homeday_hiddenArea select {
  margin-left: 0;
}

.homeday_hiddenArea .hiddenContents {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.homeday_hiddenArea .hiddenContents {
  margin-bottom: 10px;
  width: 100%;
}

.homeday_hiddenArea .hiddenContents div {
  position: relative;
}

.homeday_hiddenArea .hiddenContents div + div {
  margin-top: 10px;
}

.homeday_hiddenArea .hiddenContents div::after {
  background: url(../img/icn_arrow_select.svg) center center/20px no-repeat;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 1;
}

@media (max-width: 767px) {
  .homeday_hiddenArea .hiddenContents select {
    width: 100%;
  }
}
.homeday_hiddenArea .hiddenContents > div {
  opacity: 1;
}

.homeday_hiddenArea .hiddenContents > div.is-hidden {
  opacity: 0;
  display: none;
}

.u-small {
  font-size: 0.875em;
}

/*------------------------------------------------

		md_tel

------------------------------------------------*/
#md_tel {
  background: #fff;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding: 25px 5%;
  position: relative;
}
#md_tel h2 {
  border-bottom: 1px dashed #111;
  color: #111;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 5%;
  text-align: center;
}
#md_tel ul {
  text-align: center;
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#md_tel ul li {
  width: 48%;
  margin-top: 15px;
}
#md_tel ul li h3 {
  font-weight: bold;
  margin-bottom: 5px;
}
#md_tel ul li span {
  font-size: 1.3rem;
  display: block;
  line-height: 1.4;
  margin: 0 0 5px;
}
@media (max-width: 767px) {
  #md_tel ul li span {
    font-size: 1.1rem;
    margin: 0 0 2.5px;
  }
}
#md_tel ul li p {
  background: #b4e3c1;
  box-shadow: 0px 5px 10px 0px rgba(153, 153, 153, 0.15);
  border-radius: 50px;
}
#md_tel ul li p a {
  background: url(../img/icn_tel.svg) 16px center/17px 14px no-repeat;
  border-bottom: none;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 9px 0 10px 18%;
}
@media (max-width: 349px) {
  #md_tel ul li p a {
    background-position: 12px center;
    padding: 9px 0 10px 15%;
  }
}
#md_tel ul + p {
  font-size: 1.2rem;
  margin-top: 15px;
  text-align: center;
}
#md_tel .md_close {
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -35px;
  right: 0;
  text-indent: -9999px;
}
#md_tel .md_close::before, #md_tel .md_close::after {
  background: #fff;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  top: 50%;
}
#md_tel .md_close::before {
  transform: rotate(-45deg);
}
#md_tel .md_close::after {
  transform: rotate(45deg);
}

/*------------------------------------------------

		form

------------------------------------------------*/
.md_form {
  padding: 90px 12%;
}
@media (max-width: 767px) {
  .md_form {
    padding: 50px 0 40px;
  }
}
.md_form_ttl {
  margin-bottom: 40px;
  text-align: center;
}
.md_form_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_form_ttl img {
    zoom: 0.5;
  }
}

.md_form_ttl h2 + p {
	display: inline-block;
    font-weight: 700;
    margin: 30px 0 0;
    font-size: 1.2em;
    background: #fff1e8;
    font-weight: 500;
    padding: 10px;
}
@media (max-width: 767px) {
  .md_form_ttl h2 + p {
      margin: 30px 0 0;
      padding: 5px;
  }
}
.md_form_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.md_form_step ol {
  margin-top: 30px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.md_form_step ol li {
  line-height: 1.4;
  width: 30%;
  text-align: center;
  position: relative;
}
.md_form_step ol li.is_current {
  font-weight: 700;
}
.md_form_step ol li:not(:first-of-type)::after {
  background: url(../img/icn_arrow.svg) center center/24px 24px no-repeat;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  position: absolute;
  top: 50%;
  left: -12px;
}
.md_form dl {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.md_form dl dt {
  background: #fff1e8;
  font-size: 1.35rem;
  font-weight: 900;
  width: 100%;
  margin-top: 20px;
  padding: 10px 8%;
}
.md_form dl dt > div + p {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.md_form dl dt span {
  background: #b4e3c1;
  border: 1px solid #b4e3c1;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-left: 10px;
  padding: 0 5px;
}
.md_form dl dt br {
  display: none;
}
.md_form dl dt .is_message {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 5px;
}
.md_form dl dd {
  font-size: 1.4rem;
  width: 100%;
  margin: 15px auto 0;
  padding: 0 8%;
  text-align: justify;
}
.md_form dl dd input[type=text],
.md_form dl dd input[type=tel],
.md_form dl dd input[type=email],
.md_form dl dd select,.md_form dl dd input[type=number],
.md_form dl dd > textarea {
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 15px;
}
.md_form dl dd select option.is_disabled {
  background: #f3f3f3;
  color: #333;
}
.md_form dl dd > textarea {
  display: block;
  min-height: 150px;
}
.md_form dl dd > div {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.md_form dl dd.md_name > div > div {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.md_form dl dd.md_name > div > div + div {
  margin-top: 15px;
}

.md_form dl dd.md_name > div > div > p {
  width: 30px;
}

.md_form dl dd.md_name input[type=text] {
  width: calc(100% - 40px);
}

.md_form dl dd #age {
  width: 140px;
  margin-right: 10px;
}
@media (max-width: 750px) {
  .md_form dl dd #age {
    width: 70px;
  }
}
.md_form dl dd .md_select_wrap + p:not(.md_hopeday_ttl) {
  margin-left: 10px;
}

.md_form dl dd #age1 {
  width: 70px;
  margin-right: 5px;
}

.md_form dl dd #age2,
.md_form dl dd #age3 {
  width: 60px;
  margin: 0 5px;
}

.md_form dl dd > div p {
  margin-top: 12px;
}

.md_form dl dd > div p + p {
  margin-top: 5px;
}

.md_form dl dd p.is_attention {
  font-size: 1.2rem;
  width: 100%;
  padding-left: 1em;
  text-indent: -1em;
}

.md_form dl dd .md_tokyo_attention:empty + p.is_attention {
  margin-top: 0;
}

.md_form dl dd p.is_link a {
  border-bottom: 1px solid #333;
}

.md_form dl dd p.is_link a:hover {
  border-bottom: none;
}

.md_form dl dd .md_tokyo_attention:not(:empty) {
  background: #b4e3c1;
  padding: 15px 5%;
}

.md_form dl dd .md_tokyo_attention p {
  margin-top: 0;
}

.md_form dl dd .md_hopeday_ttl:not(:first-of-type) {
  margin-top: 15px;
}

.md_form dl dd .md_hopeday {
  justify-content: space-between;
  margin-bottom: 10px;
}

.md_form dl dd .md_hopeday > div {
  width: 75%;
}

.md_form dl dd .md_hopeday a {
  width: 10%;
  margin-top: 5px;
}

.md_form dl dd.is_repeat_yes div + p {
  margin: 15px 0;
}

.md_form dl dd ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 5px;
}

.md_form dl dd ul li {
  width: 100%;
  position: relative;
}

.md_form dl dd ul li + li {
  margin-top: 5px;
}

.md_form dl dd ul li > input {
  display: none;
}

.md_form dl dd ul li input + label::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  vertical-align: middle;
}

.md_form dl dd ul li input[type=radio] + label::before {
  border-radius: 50%;
}

.md_form dd ul li input[type=radio]:checked + label::before {
  background: #ffe4d1;
}

.md_form dl dd ul li input[type=checkbox]:checked + label::after {
  border-bottom: 2px solid #ffe4d1;
  border-left: 2px solid #ffe4d1;
  content: "";
  display: inline-block;
  width: 10px;
  height: 5px;
  vertical-align: middle;
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  left: 5px;
}

.md_form dl dd ul li .md_other {
  margin-top: 5px;
  padding-left: 2em;
}

.md_form input[type=submit] {
  background: #b4e3c1;
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  width: 60%;
  margin: 20px auto 0;
  padding: 15px 5%;
}

.err,
.err + .flatpickr-input {
  background: #ffe5e5 !important;
}

span.err {
  display: inline-block;
  padding: 10px;
}

.formErrorMsg {
  line-height: 1.2;
}

.md_name .formErrorMsg {
  padding-left: 40px;
}

.errMsg:not(:empty) {
  color: #f3290e;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
}

.formErrorClose {
  display: none;
}

@media (min-width: 768px) {
  .md_form {
    padding: 100px 0 80px;
  }

  .md_form .md_step ol {
    margin-top: 60px;
  }

  .md_form .md_step ol li br {
    display: none;
  }

  .md_form dl {
    border-bottom: 1px solid #111;
    margin-top: 40px;
  }

  .md_form dl dt {
    border-top: 1px solid #111;
    width: 35%;
    margin-top: 0;
    padding: 20px;
  }

  .md_form dl dt br {
    display: block;
  }

  .md_form dl dt span {
    font-size: 1.2rem;
    margin-left: 15px;
  }

  .md_form dl dt.is_repeat_yes span {
    margin-top: 5px;
    margin-left: 0;
  }

  .md_form dl dt > div {
    align-items: center;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 100%;
  }

  .md_form dl dt p.is_message {
    font-size: 1.4rem;
    margin-top: 10px;
  }

  .md_form dl dd {
    border-top: 1px solid #111;
    width: 65%;
    margin-top: 0;
    padding: 20px 30px;
  }

  .md_form dl dd > div p + p {
    margin-top: 3px;
  }

  .md_form dl dd input[type=text],
.md_form dl dd input[type=tel],
.md_form dl dd input[type=email],
.md_form dl dd select,.md_form dl dd input[type=number],
.md_form dl dd > textarea {
    padding: 15px 20px;
  }

  .md_form dl dd > textarea {
    min-height: 250px;
  }

  .md_form dl dd.md_name > div {
    justify-content: space-between;
  }

  .md_form dl dd.md_name > div > div {
    width: 48%;
  }

  .md_form dl dd.md_name > div > div + div {
    margin-top: 0;
  }

  .md_form dl dd.md_name > div > div > p {
    width: 50px;
    text-align: center;
  }

  .md_form dl dd.md_name input[type=text] {
    width: calc(100% - 60px);
  }

  .md_form dl dd #age1 {
    width: 140px;
    margin-right: 10px;
  }


  .md_form dl dd #age2,
.md_form dl dd #age3 {
    width: 120px;
    margin: 0 10px;
  }

  .md_form dl dd .md_hopeday_ttl:not(:first-of-type) {
    margin-top: 20px;
  }

  .md_form dl dd .md_hopeday {
    margin-bottom: 20px;
  }

  .md_form dl dd .md_hopeday > div {
    width: 85%;
  }

  .md_form dl dd .md_hopeday a {
    width: 5%;
    margin-top: 10px;
  }

  .md_form dl dd ul {
    margin: -5px auto;
  }

  .md_form dl dd ul li {
    width: auto;
    margin: 5px 20px 5px 0;
  }

  .md_form dl dd ul li + li {
    margin-top: 5px;
  }

  .md_form input[type=submit] {
    font-size: 1.8rem;
    margin: 40px auto 0;
    padding: 25px 5%;
  }

  .md_name .formErrorMsg {
    padding-left: 60px;
  }

  .errMsg:not(:empty) {
    font-size: 1.2rem;
  }

  span.err {
    padding: 20px;
  }
}
.md_confirm {
  font-weight: bold;
  margin: 40px 5% 0;
}

.md_form .md_btn_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  justify-content: center;
}

.md_form .md_btn_list .is_return {
  background: #fff1e8;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  width: 60%;
  margin: 20px auto 0;
  padding: 15px 5%;
  text-align: center;
}

@media (min-width: 768px) {
  .md_confirm {
    margin: 60px auto 0;
    text-align: center;
  }

  .md_form .md_btn_list {
    flex-direction: row;
  }

  .md_form .md_btn_list .is_return {
    font-size: 1.8rem;
    width: 40%;
    margin: 40px 0 0;
    padding: 25px 5%;
  }

  .md_form .md_btn_list input[type=submit] {
    width: 40%;
    margin: 40px 0 0 5%;
  }
}
.md_done {
  margin: 40px 5% 0;
}
@media (max-width: 767px) {
  .md_done {
    margin: 60px auto 0;
    text-align: center;
  }
}

.md_affiliate {
  font-size: 1.2rem;
  color: #8a8a8a;
  background: #ddd;
  padding: 20px;
  width: 84%;
  border-radius: 10px;
  margin: 30px auto 0;
  max-width: 560px;
}
@media (max-width: 767px) {
  .md_affiliate {
    margin: 20px auto 0;
  }
}
/*2022/03/28*/
.reserve-annai{
	border: solid 1px;
	margin: 20px auto 0;
	width: 90%;
	padding: 1.5em 2em 2em;
}
.reserve-annai_title{
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
	margin-bottom: 0.8em;
}
.reserve-annai ul li {
  text-indent: -0.6em;
  padding-left: 0.6em;
}
.reserve-annai .t-small{
    margin-top: 0.75em;
    font-size: 0.9em;	
}
@media (max-width: 767px) {
	.reserve-annai{
		padding: 1.5em 1em 2em;
	}
	.reserve-annai_title{
		font-size: 1.6rem;
	}
	.reserve-annai ul li {
		font-size: 1.3rem;
	}
	.reserve-annai .t-small{
		font-size: 1.0rem;
	}
}


.l_important {
	margin: 30px auto 0;
	padding: 0 5%;
}
.l_important .md_important {
	max-width: 1150px;
    margin: 0 auto;
    border: 5px solid #02999f;
}
.l_important .md_important .md_ttl_important {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    background: #02999f;
    color: #FFF;
    padding-bottom: 7px;
    line-height: 1.75;
}
.l_important .md_important .md_important_text {
	padding: 20px;
    font-size: 16px;
	width: fit-content;
    margin: 0 auto;
}
.l_important .md_important .md_important_text strong {
    color: #02999f;
}
.l_important .md_important .md_important_text p:last-child {
	margin: 20px 0 0;
    font-size: 14px;
}
.l_important .md_important .md_important_text p:last-child span{
	background: #ffdb2c;
	padding: 3px;
}
@media (max-width: 736px) { 
	.l_important {
		margin: 20px auto 20px;
	}
	.l_important .md_important {
		border: 3px solid #02999f;
	}
	.l_important .md_important .md_ttl_important {
		font-size: 17px;
		padding-top: 3px;
    padding-bottom: 3px;
	}
	.l_important .md_important .md_important_text {
		font-size: 14px;
		padding: 15px;
	}
	/*.l_important .md_important .md_important_text p br {
		display: none;
	}*/
	.l_important .md_important .md_important_text p:last-child {
		font-size: 12px;
		margin-top: 10px;
	}
}

.tel_ginza_comment {
  background: #f4f4f4;
  margin-top: 1em;
  padding: 1em;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_ginza_comment strong {
  color: #5fa271;
  display: block;
  font-weight: 600;
}

.bnr {
  padding: 0 12% 0;
}
.bnr_image {
  max-width: 750px;
  margin: 0 auto;
}
.bnr_image a {
  display: block;
  width: 100%;
  transition: all 0.5s;
}
.bnr_image a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) { 
  .bnr {
    padding: 0 4% 0;
  }
}

/*------------------------------------------------

		intrasure

------------------------------------------------*/
.md_intrasure {
  background: #ffe4d1;
  padding: 80px 0 90px;
}
@media (max-width: 767px) {
  .md_intrasure {
    padding: 20px 0 50px;
  }
}
.md_intrasure_inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.md_intrasure_ttl {
  margin-bottom: 60px;
  text-align: center;
  margin-left: -100px;
}
@media (max-width: 767px) {
  .md_intrasure_ttl {
    margin-bottom: 45px;
    margin-left: -55px;
  }
}
.md_intrasure_ttl img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_intrasure_ttl img {
    zoom: 0.5;
  }
}
.md_intrasure_text {
  background: #fff;
  border: 1px solid #111;
  border-radius: 15px;
  width: 85%;
  max-width: 300px;
  margin: 0 auto;
  padding: 3px 10px;
  text-align: center;
  position: relative;
  top: -30px;
}
@media (max-width: 767px) {
  .md_intrasure_text {
    border-radius: 10px;
 	max-width: 240px;
    top: -20px;
  }
}
.md_intrasure_text img {
  zoom: 0.6;
}
@media (max-width: 559px) {
  .md_intrasure_text img {
    zoom: 0.5;
  }
}
.md_intrasure_image {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .md_intrasure_image {
    margin-top: 25px;
  }
}
.md_intrasure_fukidashi {
  width: 84%;
  margin: 0 auto;
}
.md_intrasure_fukidashi_item {
  background: #FFF;
  border-radius: 20px;
  display: flex;
  padding: 40px 40px 0 40px;
  max-width: 550px;
  margin: 60px auto 0;
}
.md_intrasure_fukidashi_item p:first-child {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .md_intrasure_fukidashi_item {
    padding: 20px 8% 0 8%;
    margin: 30px -10% auto 0;
    border-radius: 20px 0 0 20px;
  }
}
@media (max-width: 767px) {
	.md_intrasure_fukidashi_item p:first-child {
	padding-top: 15px;
	}
}
.md_intrasure_fukidashi_item + .md_intrasure_fukidashi_item {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .md_intrasure_fukidashi_item + .md_intrasure_fukidashi_item {
    padding: 20px 8% 0 8%;
    margin: 30px 0 auto -10%;
    border-radius: 0 20px 20px 0;
  }
}
.md_intrasure_fukidashi_btn_wrapper {
  max-width: 750px;
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  .md_intrasure_fukidashi_btn_wrapper {
    margin: 30px auto 0;
  }
}
.md_intrasure_fukidashi_btn + .md_intrasure_fukidashi_btn {
  margin-top: 20px
}
.md_intrasure_fukidashi_btn {
  max-width: 375px;
  margin: 30px auto 0;
}
.md_intrasure_fukidashi_btn + dd {
  margin: 30px auto 0;
  background: #FFF;
  display: none;
}
.md_intrasure_fukidashi_btn + dd table {
  width: 100%;
}
.md_intrasure_fukidashi_btn + dd th, 
.md_intrasure_fukidashi_btn + dd td {
  width: 26%;
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  .md_intrasure_fukidashi_btn + dd th, 
  .md_intrasure_fukidashi_btn + dd td {
    font-size: 12px;
    letter-spacing: 0;
    padding: 5px 3px;
  }
}
.md_intrasure_fukidashi_btn + dd th {
  background: #4c4c4c;
  color: #FFF;
}
.md_intrasure_fukidashi_btn + dd th.time, 
.md_intrasure_fukidashi_btn + dd td.time {
  width: 17%;
}
.md_intrasure_fukidashi_btn + dd th.treatmentPriceTable__num {
  width: 17%;
}
.md_intrasure_fukidashi_btn + dd td.treatmentPriceTable__num {
  background: #fff1e8;
  width: 17%;
}
.md_intrasure_fukidashi_btn + dd td.ttl {
	width: 40%;
}

.md_intrasure_fukidashi_btn p {
  background: #4c4c4c;
  border-radius: 100px;
  color: #FFF;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  padding: 5px 0px;
  transition: all 0.5s;
  cursor: pointer;
}
.md_intrasure_fukidashi_btn p:hover {
  opacity: 0.5;
}
.md_intrasure_fukidashi_btn.is_white p {
  background: #FFF;
  border: 1px solid #4c4c4c;;
  color: #000;
  padding: 7px 0px;
}
.md_intrasure_fukidashi_btn p img {
  position: absolute;
  left: 30px;
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_intrasure_fukidashi_btn p img {
    left: 25px;
    zoom: 0.5;
  }
}
.md_intrasure_fukidashi_btn.is_white p img {
  left: 20px;
}
@media (max-width: 767px) {
  .md_intrasure_fukidashi_btn.is_white p img {
    left: 15px;
  }
}
/*------------------------------------------------

		campaign

------------------------------------------------*/
.md_campaign {
  background: #B4E3C1;
  padding: 90px 0 0;
}
@media (max-width: 767px) {
  .md_campaign {
    padding: 60px 0 0;
  }
}
.md_campaign img {
  zoom: 0.75;
}
@media (max-width: 767px) {
  .md_campaign img {
    zoom: 0.5;
  }
}
.md_campaign_ttl {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .md_campaign_ttl {
    margin-bottom: 40px;
  }
}
.md_campaign_content {
  background: #B4E3C1;
  padding: 0 12% 60px;
}
@media (max-width: 767px) {
  .md_campaign_content {
    background: #B4E3C1;
    background-position: center center;
    background-size: cover;
    padding: 0 8% 25px;
  }
}
.md_campaign_list_item {
  align-items: center;
  background: rgba(255, 255, 255, 0.5) url(../img/icn_campaign_megaphone.svg) center left 10px/20px auto no-repeat;
  border: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
  padding: 15px 20px 15px 50px;
}
@media (max-width: 767px) {
  .md_campaign_list_item {
    background-size: 15px auto;
    font-size: 1.3rem;
    padding: 8px 15px 8px 35px;
  }
}
.md_campaign_list_item:not(:first-of-type) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .md_campaign_list_item:not(:first-of-type) {
    margin-top: 15px;
  }
}
.md_campaign_list_item strong {
  font-size: 1.8rem;
  display: block;
}
@media (max-width: 767px) {
  .md_campaign_list_item strong {
    font-size: 1.3rem;
  }
}
.md_campaign_list_item strong:nth-child(2) {
  color: #f3290e;
  font-size: 1.8rem;
  display: inline;
}
@media (max-width: 767px) {
  .md_campaign_list_item strong:nth-child(2) {
    font-size: 1.3rem;
  }
}
.md_campaign_list_item span {
  font-size: 1.1rem;
  display: block;
}