@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Questrial&display=swap');
/* CSS Document */
/* 基本設定 */
html,body {
	height: 100vh;
	font-family: 'Noto Sans JP', sans-serif;
	scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: #cdcdcd;
  transition: color 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: #856919;
}
a:hover img{
  opacity:0.8;
  filter:alpha(opacity=80);
  -ms-filter: “alpha( opacity=80 )”;
  transform: scale(0.9,0.9);
  transition: 0.6s;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2em;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
.text_harf {
	font-size: 0.7em;
}
/* cta */
#ctabtn01 img {
	position: fixed;
	right: 0px;
	z-index: 100;
}
#ctabtn02 img {
	position: fixed;
	right: 0px;
	z-index: 100;
}
/* main */
header {
	padding-top:4.5rem;
}
.vsl {
	position: relative;
}
.vsl h1 {
	color: #4F453D;
	font-family: 'Questrial', sans-serif;
	line-height: 1.2;
	padding: 0px;
	margin: 0px;
	position: absolute;
	bottom: 1.3em;
}
.vsl h3 {
	color: #4F453D;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	line-height: 1em;
	padding: 0px;
	margin: 0px;
	position: absolute;
	bottom: 1em;
}
.white_box {
	background: rgba(255,255,255,0.70)
}
.btn-mimosa {
	background: #AB9B6A;
	border-radius: 1px;
	color: #FFFFFF;
}
.btn-mimosa:hover {
	background: #856919;
}
.btn_cta {
	background: linear-gradient(#78624C 49%, #FFFFFF 49%, #FFFFFF 51%, #78624C 51%);
	border-radius: 10px;
	color: #FFFFFF;
	width: 100%;
	line-height: 2em;
	margin: 1em 0 3em 0;
}
.btn_cta span {
	background-color: #78624C;
	padding-left: 20px;
	padding-right: 20px;
}
.btn_cta:hover {
	background: linear-gradient(#9C7657 49%, #FFFFFF 49%, #FFFFFF 51%, #9C7657 51%);
	color: #FFFFFF;
}
.btn_cta:hover span {
	background-color: #9C7657;
	padding-left: 20px;
	padding-right: 20px;
}
.bg_menu {
	background-color: rgba(255,255,255,0.80)
}
.bg_white {
	background-color: #FFF;
}
.bg_brown {
	background-color: #E2D5B1; 
}
.bg_gray {
	background-color: #eeeeee;
	padding-top: 2em;
	padding-bottom: 2em;
	margin-top: 2em;
}
.policy ol {
	padding: 0px;
}
.policy ol li {
	margin-bottom: 1em;
}
.policy ol li::marker {
	color: #4F453D;
	font-size: 1.5em;
	font-family: "Times New Roman", Times, "serif";
}
.radius img {
	border-radius: 50%;
	margin-bottom: 20px;
}
.beginners {
	border: none;
	margin: 0px 0px 10px 0px;
	text-align: center
}
.ttlbg01 {
	background-image: url("../images/ttlbg01.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.ttlbg02 {
	background-image: url("../images/ttlbg02.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.ttlbg03 {
	background-image: url("../images/ttlbg03.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
/* menu */
#navicon {
  display: block;
  position: fixed;
  top: 10px;
	right: 30px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
/* メニューボタン */
#navicon input {
  display: block;
  width: 50px;
  height: 32px;
  position: absolute;
  top: 5px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

#navicon span {
  display: block;
  width: 33px;
  height: 4px;
  top: 10px;
  left: 10px;
  margin-bottom: 5px;
  position: relative;
  background: #bbb;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s ease-in-out, background 0.5s ease, opacity 0.55s ease;
}

.drawer {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 110%;
  height: 100%;
  margin: -40px 0px 0px -100%;
	padding: 50px 10px 0px 40px;
  background: #000000;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.drawer h5 {
	color: #ffffff;
	border-bottom: solid 1px #ffffff;
	text-indent: 1em;
}

.drawer li {
  transform: translate(0, 100%);
  transition: transform 1s ease-in-out;
  list-style-type: none;
  padding: 3px 0px;
}

#navicon input:checked ~ .drawer {
  opacity: 0.8;
  visibility: visible;
}

#navicon input:checked ~ .drawer li {
  transform: translate(0, 0);
}

#navicon input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #cdcdcd;
}

#navicon input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#navicon input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

#navicon span:first-child,
#navicon span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
/* footer */
footer {
	color: #FFFFFF;
	background: #4F453D;
	padding-top: 50px;
	font-family: 'Noto Sans JP', sans-serif;
}
footer h1 img {
	width: 60%;
	line-height: 1em;
	padding: 0px;
}
footer h4 {
	border-bottom: solid 1px;
}
footer a {
	text-decoration: none;
	color: #FFFFFF;
}
footer a:hover {
	color: #D4C4B3;
}
.copyright {
	font-size: 0.8rem;
	text-align: center;
	line-height: 3rem;
}
/* top page */
.top_vsl {
	background: url("../images/top_bg01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom: 2em;
}
.introduction {
	background: url("../images/top_bg02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.introduction h2 {
	text-align: center;
	line-height: 2em;
}
.introduction h2 span {
	background: #FFFFFF;
	padding: 0 0.5em;
}
.introduction p {
	line-height: 2em;
	text-align: center;
	padding: 3em;
}
.top_menu .btn {
	margin-top: 3em;
}
.news {
	padding-top: 3em;
	padding-bottom: 3em;
}
.news dl {
	padding: 1em 0;
}
.news dd {
	color: #78624C;
}
/* 2nd page */
.recommend {
	padding-left: 2em;
	padding-top: 2em;
	padding-bottom: 2em;
}
.recommend ul {
	color: #78624C;
	padding-left: 0px;
}
.recommend li {
	list-style: none;
}
.recommend li:before {
	content: '☑ ';
}
.treatment {
	background-color: rgba(150,150,150,0.10);
	padding-top: 2em;
	padding-bottom: 2em;
}
.treatment dl, .price dl {
  display: flex;
  flex-wrap: wrap;
}
.treatment dt {
	color: #4F453D;
	text-align: center;
	border: none;
	width: 28%;
	padding: 10px;
	margin-bottom: 0.8em;
}
.treatment dd {
	width: 70%;
	padding: 10px 15px;
	margin-bottom: 0.8em;
	margin-left: 2%;
}
.price dd {
	padding: 10px 15px;
	margin-bottom: 0.8em;
}
.treatment dt, .treatment dd {
	background-color: rgba(255,255,255,0.80);
}
.price_width_68 {
	width: 70%;
	margin-left: 2%;
}
.price_width_100 {
	width: 100%;
}
.price_width_22 {
	width: 22%;
	margin-left: 2%;
}
.price_width_34 {
	width: 34%;
	margin-left: 2%;
}
.price {
	background: #F2F2F2;
	z-index: 1;
	margin-top: 2em;
	margin-bottom: 2em;
}
.price dl {
	margin-top: -1.2em;
	margin-bottom: -2em;
}
.price dt, .price dd {
	border: solid 1px #E2D5B1;
	text-align: center;
	display: flex;
	flex-direction: column;
  justify-content: center;
  align-items: center;
}
.price dt {
	width: 28%;
	padding: 10px;
	margin-bottom: 0.8em;
}
.pres dd {
  display: block;
}
.pres dd strong{
  font-size: 120%;
  font-weight: 500;
  color: red;
}
.pres dd span{
  position: relative;
  white-space: nowrap;
  font-size: 70%;
  top: -2px;
}
.pres dl.ofSet dd .dd576{
  display: none;
}
/* man_top page */
.man_box {
	padding-top: 2em;
	padding-bottom: 2em;
}
.man_box h3 {
	text-align: center;
	border-bottom: solid 1px #4F453D;
	color: #4F453D;
	line-height: 1em;
	margin-top: 2em;
	margin-bottom: 2em;
	padding: 10px;
}
.man_bg1 {
	background: url("../images/manstop_bg01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.man_bg1_top {
	background-color: #FAFAFA;
}
.man_bg1 h2, .man_box h2, .man_bg1_top h2 {
	color: #4F453D;
	text-align: center;
}
.man_bg1 p, .man_bg1_top p {
	text-align: center;
}
.man_bg2 {
	background: url("../images/2nd_top_bg1.png") #C9B8A7;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 250px;
}
.man_bg3 {
	background: url("../images/2nd_top_bg2.png");
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 400px;
	padding-top: 2em;
	padding-bottom: 2em;
}
.man_bg2 h2 {
	text-align: center;
}
.man_bg2 img {
	margin-bottom: 2em;
}
.man_doctor1 {
	background: url("../images/mantop_bg01a.jpg");
	background-repeat: no-repeat;
	background-size: 480px;
	background-position: top left;
}
.man_doctor2 {
	background: url("../images/mantop_bg01b.jpg");
	background-repeat: no-repeat;
	background-size: 460px;
	background-position: bottom right;
	padding-top: 2em;
	padding-bottom: 2em;
} 
.man_doctor h2, .man_campaign h2 {
	text-align: center;
	color: #736357;
}
.man_campaign {
	padding-top: 2em;
	padding-bottom: 2em;
}
.man_campaign img {
	margin-bottom: 2em;
}

#man_top_item h4 {
	background-color: #A19285;
	padding-left: 1em;
	color: #FFFFFF;
	padding-right: 10px;
	line-height: 1.6em;
	margin-bottom: 1em;
}

#man_top_item button {
	border-radius: 30px;
	background-color: rgba(255,255,255,0.80);
	margin-bottom: 10px;
	text-align: left;
	text-indent: 0.9em;
	background-image: url("../images/man_btn_point.svg");
	background-repeat: no-repeat;
	background-position: left;
}
/* woman_top page */
.woman_box {
	padding-top: 5em;
	padding-bottom: 5em;
}
.woman_box h3 {
	text-align: center;
	border-bottom: solid 1px #4F453D;
	color: #4F453D;
	line-height: 1em;
	margin-top: 2em;
	margin-bottom: 2em;
	padding: 10px;
}
.woman_bg1 {
	background: url("../images/womantop_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.woman_bg1_top {
	background-color: #FAFAFA;
}
.woman_bg1 h2, .woman_box h2, .woman_bg1_top h2 {
	color: #4F453D;
	text-align: center;
}
.woman_bg1 p, .woman_bg1_top p {
	text-align: center;
}
.woman_bg2 {
	background: url("../images/2nd_top_bg1.png") #E6D9B5;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 250px;
}
.woman_bg3 {
	background: url("../images/2nd_top_bg2.png");
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 500px;
	padding-top: 2em;
	padding-bottom: 2em;
}
.woman_bg4 {
	background-color: #E6D9B5;
	padding-top: 2em;
	padding-bottom: 2em;
}
.woman_bg2 h2 {
	text-align: center;
}
.woman_bg2 img {
	margin-bottom: 2em;
}
.woman_bg4 h2 {
	text-align: center;
}
.woman_bg4 h3 {
	color: #4F453D;
	border-bottom: solid 1px #4F453D;
}
.woman_doctor1 {
	background: url("../images/womantop_bg01a.jpg");
	background-repeat: no-repeat;
	background-size: 480px;
	background-position: top left;
}
.woman_doctor2 {
	background: url("../images/womantop_bg01b.jpg");
	background-repeat: no-repeat;
	background-size: 460px;
	background-position: bottom right;
	padding-top: 2em;
	padding-bottom: 2em;
}
.woman_doctor h2, .man_campaign h2 {
	text-align: center;
	color: #9C8750;
}
.woman_campaign {
	padding-top: 2em;
	padding-bottom: 2em;
}
.woman_campaign img {
	margin-bottom: 2em;
}
#woman_top_item h4 {
	background-color: #CEB87C;
	color: #111;
	padding-left: 1em;
	padding-right: 10px;
	line-height: 1.6em;
	margin-bottom: 1em;
}
#woman_top_item button {
	border-radius: 30px;
	background-color: rgba(255,255,255,0.80);
	margin-bottom: 10px;
	text-align: left;
	text-indent: 0.9em;
	background-image: url("../images/woman_btn_point.svg");
	background-repeat: no-repeat;
	background-position: left;
}
.nobutton {
	border-radius: 30px;
	background-color: rgba(190,190,190,0.80);
	margin-bottom: 9px;
	text-align: left;
	text-indent: 1.5em;
	line-height: 2.2em;
	background-image: url("../images/btn_nopoint.svg");
	background-repeat: no-repeat;
	background-position: left;
}

/* レスポンシブ画像 */
#vsl01 {
	background: url("../images/woman_about_us_vsl.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#vsl02 {
	background: url("../images/beginner_img01vsl.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#vsl03 {
	background: url("../images/price_img01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl04 {
	background: url("../images/toning_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl04 {
	background: url("../images/toning_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl05 {
	background: url("../images/spot_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl05 {
	background: url("../images/spot_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl06 {
	background: url("../images/hifu_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl06 {
	background: url("../images/hifu_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl07 {
	background: url("../images/photo_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl07 {
	background: url("../images/photo_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl08 {
	background: url("../images/derma_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl08 {
	background: url("../images/derma_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl09 {
	background: url("../images/needle_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl09 {
	background: url("../images/needle_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl10 {
	background: url("../images/thermagen_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl10 {
	background: url("../images/thermagen_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl11 {
	background: url("../images/peeling_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl11 {
	background: url("../images/peeling_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl12 {
	background: url("../images/electroporation_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#man_vsl12 {
	background: url("../images/electroporation_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl13 {
	background: url("../images/botox_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	height: 100%;
}
#man_vsl13 {
	background: url("../images/botox_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl14 {
	background: url("../images/hyaluronic_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	height: 100%;
}
#man_vsl14 {
	background: url("../images/hyaluronic_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl15 {
	background: url("../images/removal_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	height: 100%;
}
#man_vsl15 {
	background: url("../images/removal_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#vsl16 {
	background: url("../images/aga_img01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl17 {
	background: url("../images/tattoo_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	height: 100%;
}
#man_vsl17 {
	background: url("../images/tattoo_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100%;
}
#woman_vsl18 {
	background: url("../images/stem_img01woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	height: 100%;
}
#man_vsl18 {
	background: url("../images/stem_img01man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	height: 100%;
}
#woman_bgimg01 {
	background: url("../images/toning_img02woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#woman_bgimg01b {
  padding: 0 0 2em 1em !important;
  margin: 0 !important;
}
#woman_bgimg01b img {
  width: 100%;
  height: auto;
}
.ctm_box {
  padding-top: 0 !important;
}
@media screen and (max-width: 599px) { 
  #woman_bgimg01b {
    width: 96% !important;
  }
  .ctm_box {
    width: 96% !important;
  }
}
#man_bgimg01 {
	background: url("../images/toning_img02man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#woman_bgimg02 {
	background: url("../images/hifu_img02woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#man_bgimg02 {
	background: url("../images/hifu_img02man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#woman_bgimg03 {
	background: url("../images/derma_img02woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#man_bgimg03 {
	background: url("../images/derma_img02man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#man_bgimg04 {
	background: url("../images/thermagen_img02man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#bgimg05 {
	background: url("../images/peeling_img02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#bgimg06 {
	background: url("../images/peeling_img03.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#man_bgimg07 {
	background: url("../images/electroporation_img02man.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#woman_bgimg08 {
	background: url("../images/botox_img02woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#man_bgimg08 {
	background: url("../images/botox_img02man.jpg");
	background-size: cover;
	background-position: right;
}
#man_bgimg09 {
	background: url("../images/hyaluronic_img02man.jpg");
	background-size: cover;
	background-position: center;
}
#woman_bgimg10 {
	background: url("../images/removal_img02woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#man_bgimg10 {
	background: url("../images/removal_img02man.jpg");
	background-size: cover;
	background-position: center;
}
#bgimg11 {
	background: url("../images/tattoo_img02.jpg");
	background-size: cover;
	background-position: center;
}
#woman_bgimg12 {
	background: url("../images/stem_img02woman.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#man_bgimg12 {
	background: url("../images/stem_img02man.jpg");
	background-size: cover;
	background-position: center;
}
/* レスポンシブ画像 */

/* 極小デバイス（575.98px 以下）*/
@media (max-width: 575.98px) {
	p, li, dl, table, form, legend, .btn, .drawer li {
		font-size: 14px;
	}
	h1 {
		font-size: 1.6rem;
	}
	h2 {
		font-size: 1.3rem;
	}
	h3 {
		font-size: 1.2rem;
	}
  h4 {
    font-size: 1rem;
  }
	h5 {
    font-size: 1rem;
  }
	#ctabtn01 img {
		width: 40px;
		bottom: 75px;
	}
	#ctabtn02 img {
		width: 40px;
		bottom: 20px;
	}
	.pc-br {
		display: none;
	}
	.nobutton {
		font-size: 14px;
		padding: 2px;
	}
	.introduction {
		padding-top: 4.5em;
		padding-bottom: 6em;
	}
	.top_menu {
		margin-top: -4.5em;
		padding-bottom: 1em;
	}
	.vsl {
		height: 250px;
	}
  .vsl.price h1 {
    bottom: 45%;
  }
	.beginners {
		padding: 20px 0px;
	}
	.policy ol{
		padding-left: 20px;
	}
	.btn_cta {
		background: linear-gradient(#78624C 49%, #FFFFFF 49%, #FFFFFF 52%, #78624C 52%);
	}
	.btn_cta:hover {
		background: linear-gradient(#9C7657 49%, #FFFFFF 49%, #FFFFFF 52%, #9C7657 52%);
	}
	.navbar-brand img {
		height: 30px;
	}
	.man_bg2, .woman_bg2 {
		background-size: 150px;
	}
	.man_bg3, .woman_bg3 {
		background-size: 250px;
	}
	.man_doctor1,.woman_doctor1 {
		background-size: 200px;
	}
	.man_doctor2,.woman_doctor2 {
		background-size: 220px;
	}
	#woman_top_item h4, #man_top_item h4 {
		font-size: 14px;
	}
	#woman_top_item button, #man_top_item button {
		font-size: 14px;
	}
	.woman_box {
		padding-top: 2em;
		padding-bottom: 2em;
	}
  .pres dl.ofSet dd {
    text-align: center;
    padding: 10px 0;
  }
  .pres dl.ofSet dd .dd576{
    display: block;
  }
}
/* 小デバイス（576px 以上）*/
@media (min-width: 576px) and (max-width: 767.98px) {
	p, li, dl, table, form, legend, .btn, .drawer li {
		font-size: 14px;
	}
	h1 {
		font-size: 1.9rem;
	}
	h2 {
		font-size: 1.5rem;
	}
	h3 {
		font-size: 1.3rem;
	}
  h4 {
    font-size: 1.1rem;
  }
	h5 {
    font-size: 1.1rem;
  }
	#ctabtn01 img {
		width: 40px;
		bottom: 75px;
	}
	#ctabtn02 img {
		width: 40px;
		bottom: 20px;
	}
	.pc-br {
		display: none;
	}
	.nobutton {
		font-size: 16px;
		padding: 2px;
	}
	.introduction {
		padding-top: 5em;
		padding-bottom: 7em;
	}
	.top_menu {
		margin-top: -4.5em;
		padding-bottom: 1em;
	}
	.vsl {
		height: 300px;
	}
	.beginners {
		padding: 30px 0px;
	}
	.policy ol{
		padding-left: 20px;
	}
	.btn_cta {
		background: linear-gradient(#78624C 49%, #FFFFFF 49%, #FFFFFF 52%, #78624C 52%);
	}
	.btn_cta:hover {
		background: linear-gradient(#9C7657 49%, #FFFFFF 49%, #FFFFFF 52%, #9C7657 52%);
	}
	.navbar-brand img {
		height: 35px;
	}
	.top_menu #leftbtn {
		padding-right: 10px;
	}
	.top_menu #rightbtn {
		padding-left: 10px;
	}
	.man_bg2, .woman_bg2 {
		background-size: 200px;
	}
	.man_bg3, .woman_bg3 {
		background-size: 300px;
	}
	.woman_bg3 img ,.man_bg3 img {
		margin-top: 1em;
		margin-bottom: 1em;
	}
	.man_doctor1,.woman_doctor1 {
		background-size: 230px;
	}
	.man_doctor2,.woman_doctor2 {
		background-size: 250px;
	}
	#woman_top_item h4, #man_top_item h4 {
		font-size: 16px;
	}
	#woman_top_item button, #man_top_item button {
		font-size: 16px;
	}
	.woman_box {
		padding-top: 2em;
		padding-bottom: 2em;
	}
}
/* 中デバイス（768px 以上）*/
@media (min-width: 768px) and (max-width: 991.98px) {
	p, li, dl, table, form, legend, .btn, .drawer li {
		font-size: 16px;
	}
	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.9rem;
	}
	h3 {
		font-size: 1.6rem;
	}
  h4 {
    font-size: 1.3rem;
  }
	h5 {
    font-size: 1.3rem;
  }
	#ctabtn01 img {
		width: 50px;
		bottom: 105px;
	}
	#ctabtn02 img {
		width: 50px;
		bottom: 40px;
	}
	.sp-br {
		display: none;
	}
	.nobutton {
		font-size: 18px;
		padding: 2px;
	}
	.introduction {
		padding-top: 5em;
		padding-bottom: 8em;
	}
	.top_menu {
		margin-top: -4em;
		padding-bottom: 2em;
	}
	.vsl {
		height: 400px;
	}
	.beginners {
		padding: 40px 0px;
	}
	.policy ol{
		padding-left: 20px;
	}
	.btn_cta {
		background: linear-gradient(#78624C 49%, #FFFFFF 49%, #FFFFFF 52%, #78624C 52%);
	}
	.btn_cta:hover {
		background: linear-gradient(#9C7657 49%, #FFFFFF 49%, #FFFFFF 52%, #9C7657 52%);
	}
	.navbar-brand img {
		height: 40px;
	}
	.top_menu #leftbtn {
		padding-right: 20px;
	}
	.top_menu #rightbtn {
		padding-left: 20px;
	}
	.man_bg2, .woman_bg2 {
		background-size: 200px;
	}
	.man_bg3, .woman_bg3 {
		background-size: 300px;
	}
	.woman_bg3 img ,.man_bg3 img {
		margin-top: 1em;
		margin-bottom: 1em;
	}
	.man_doctor1,.woman_doctor1 {
		background-size: 270px;
	}
	.man_doctor2,.woman_doctor2 {
		background-size: 320px;
	}
	#woman_top_item h4, #man_top_item h4 {
		font-size: 20px;
	}
	#woman_top_item button, #man_top_item button {
		font-size: 18px;
	}
	.woman_box {
		padding-top: 3em;
		padding-bottom: 3em;
	}
}
/* 大デバイス（922px 以上）*/
@media (min-width: 992px) and (max-width: 1199.98px) {
	p, li, dl, table, form, legend, .btn, .drawer li {
		font-size: 18px;
	}
	h1 {
		font-size: 2.6rem;
	}
	h2 {
		font-size: 2.2rem;
	}
	h3 {
		font-size: 1.8rem;
	}
  h4 {
    font-size: 1.4rem;
  }
	h5 {
    font-size: 1.4rem;
  }
	#ctabtn01 img {
		width: 50px;
		bottom: 105px;
	}
	#ctabtn02 img {
		width: 50px;
		bottom: 40px;
	}
	.sp-br {
		display: none;
	}
	.nobutton {
		font-size: 18px;
		padding: 1px;
	}
	.introduction {
		padding-top: 5em;
		padding-bottom: 8em;
	}
	.top_menu {
		margin-top: -4em;
		padding-bottom: 3em;
	}
	.vsl {
		height: 450px;
	}
	.beginners {
		padding: 50px 0px;
	}
	.policy ol{
		padding-left: 30px;
	}
	.btn_cta {
		background: linear-gradient(#78624C 49%, #FFFFFF 49%, #FFFFFF 52%, #78624C 52%);
	}
	.btn_cta:hover {
		background: linear-gradient(#9C7657 49%, #FFFFFF 49%, #FFFFFF 52%, #9C7657 52%);
	}
	.navbar-brand img {
		height: 40px;
	}
	.top_menu #leftbtn {
		padding-right: 30px;
	}
	.top_menu #rightbtn {
		padding-left: 30px;
	}
	.woman_bg3 img ,.man_bg3 img {
		margin-top: 2em;
		margin-bottom: 2em;
	}
	#woman_top_item h4, #man_top_item h4 {
		font-size: 20px;
	}
	#woman_top_item button, #man_top_item button {
		font-size: 18px;
	}
}
/* 特大デバイス（1200x 以上）*/
@media (min-width: 1200px) and (max-width: 1399.98px) {
	p, li, dl, table, form, legend, .btn, .drawer li {
		font-size: 24px;
	}
	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2.5rem;
	}
	h3 {
		font-size: 2rem;
	}
  h4 {
    font-size: 1.5rem;
  }
	h5 {
    font-size: 1.5rem;
  }
	#ctabtn01 img {
		width: 50px;
		bottom: 105px;
	}
	#ctabtn02 img {
		width: 50px;
		bottom: 40px;
	}
	.sp-br {
		display: none;
	}
	.nobutton {
		font-size: 20px;
	}
	.introduction {
		padding-top: 6em;
		padding-bottom: 10em;
	}
	.top_menu {
		margin-top: -6em;
		padding-bottom: 3em;
	}
	.vsl {
		height: 500px;
	}
	.beginners {
		padding: 60px 0px;
	}
	.policy ol{
		padding-left: 35px;
	}
	.navbar-brand img {
		height: 40px;
	}
	.top_menu #leftbtn {
		padding-right: 40px;
	}
	.top_menu #rightbtn {
		padding-left: 40px;
	}
	.woman_bg3 img ,.man_bg3 img {
		margin-top: 3em;
		margin-bottom: 2em;
	}
	#woman_top_item button, #man_top_item button {
		font-size: 20px;
	}
}
/* 最大デバイス（1400px 以上）*/
@media (min-width: 1400px) {
	p, li, dl, table, form, legend, .btn, .drawer li {
		font-size: 26px;
	}
	h1 {
		font-size: 3.4rem;
	}
	h2 {
		font-size: 2.8rem;
	}
	h3 {
		font-size: 2.2rem;
	}
  h4 {
    font-size: 1.6rem;
  }
	h5 {
    font-size: 1.6rem;
  }
	#ctabtn01 img {
		width: 50px;
		bottom: 105px;
	}
	#ctabtn02 img {
		width: 50px;
		bottom: 40px;
	}
	.sp-br {
		display: none;
	}
	.nobutton {
		font-size: 22px;
	}
	.introduction {
		padding-top: 6em;
		padding-bottom: 10em;
	}
	.top_menu {
		margin-top: -6em;
		padding-bottom: 3em;
	}
	.vsl {
		height: 550px;
	}
	.beginners {
		padding: 70px 0px;
	}
	.policy ol{
		padding-left: 40px;
	}
	.navbar-brand img {
		height: 40px;
	}
	.top_menu #leftbtn {
		padding-right: 50px;
	}
	.top_menu #rightbtn {
		padding-left: 50px;
	}
	.woman_bg3 img ,.man_bg3 img {
		margin-top: 3em;
		margin-bottom: 2em;
	}
	#woman_top_item button, #man_top_item button {
		font-size: 22px;
	}
}