@charset "utf-8";
@import url("wp-native-style.css");

/*-------------------------------------------------

base

-------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
}
html {
	overflow-y: scroll;/* filter:expression(document.execCommand("BackgroundImageCache",false, true));*/
}
body {
	color: #222222;
	font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
	line-height: 1.8;
	letter-spacing:0.05em;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	background:#EFEFEF;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}
table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
ul li {
	list-style-type: none;
}
ul.list_note > li,
ul.list_circle > li,
ul.list_check > li {
	position: relative;
	padding-left:1.5em;
}
ul.list_note > li:before,
ul.list_circle > li:before,
ul.list_check > li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "※";
	color:#EE7000;
}
ul.list_circle > li:before {
	content: "\e061";
	font-family: Material Icons;
}
ul.list_check > li:before {
	content: "\e834";
	font-family: Material Icons;
}
ol {
	counter-reset: item;
	list-style-type: none;
}
ol li {
	text-indent: -1.3em;
	margin-left: 1.3em;
}
ol li:before {
	counter-increment: item;
	content: counter(item)'.';
	font-weight: bold;
	padding-right: 0.5em;
}
button{
	color: #222222;
}
.indent {
	text-indent: 1em !important;
}
.sup, .super {
	font-size: 0.5em;
	vertical-align: super;
	margin: 0 !important;
}
.big {
	font-size: 2em !important;
	line-height: 1.4;
}
.small {
	font-size: 0.8em !important;
	line-height: 1.4;
}
.small .super {
	vertical-align: top;
}
.bold {
	font-weight: bold !important;
}
.highlight {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(238, 112, 0, 0.3) 60%);
}
.outline {
  color: black;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}
.radius{
	border-radius:0.5rem;
}
.clear {
	clear: both !important;
}
.center {
	text-align: center !important;
}
.right {
	text-align: right !important;
}
input, select, textarea, button {
	font-family: 'Noto Sans', sans-serif;
	font-size: 16px;
	line-height: 1.8;
	padding: 0.5em;
	border: 1px solid #E0DDD3;
	box-sizing: border-box;
}
input[type="submit"] {
	-webkit-appearance: none;
}
input[type="radio"], input[type="checkbox"] {
	-webkit-transform: scale(1);
	transform: scale(1);
}
textarea {
	resize: vertical;
	width: 100%;
}
.mb_n {
	margin-bottom: 0 !important;
}
.mb_xs {
	margin-bottom: 0.5em !important;
}
.mb_s {
	margin-bottom: 1em !important;
}
.mt_s {
	margin-top: 1em !important;
}
.mb_m {
	margin-bottom: 3em !important;
}
.mt_m {
	margin-top: 3em !important;
}
.mb_l {
	margin-bottom: 6em !important;
}
.ptb_s {
	padding-top: 1em !important;
	padding-bottom: 1em !important;
}
.ptb_m {
	padding-top: 3em !important;
	padding-bottom: 3em !important;
}
.ptb_l {
	padding-top: 6em !important;
	padding-bottom: 6em !important;
}
.w_xs {
	width: 10% !important;
}
.w_s {
	width: 30% !important;
}
.w_xm {
	width: 50% !important;
}
.w_m {
	width: 70% !important;
}
.w_l {
	width: 100% !important;
}
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
.white {
	color: #FFFFFF !important;
}
.blue {
	color: #0060B3 !important;
}
.orange {
	color: #EE7000 !important;
}
.bg_white{
	background-color: #FFFFFF !important;
}
.bg_black{
	background-color: #222222 !important;
}
.bg_blue{
	background-color: #0060B3 !important;
}
.scroll{
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.scroll table {
	min-width: 800px;
}
@media screen and (max-width:720px) {
body {
	font-size: 16px;
}
input, select, textarea, button {
	font-size: 16px;
}
input, select, textarea {
	max-width: 100%;
}
.mb_xs {
	margin-bottom: 0.5em !important;
}
.mb_s {
	margin-bottom: 1em !important;
}
.mt_s {
	margin-top: 1em !important;
}
.mb_m {
	margin-bottom: 2em !important;
}
.mt_m {
	margin-top: 2em !important;
}
.mb_l {
	margin-bottom: 4em !important;
}
.ptb_m {
	padding-top: 2em !important;
	padding-bottom: 2em !important;
}
.ptb_l {
	padding-top: 4em !important;
	padding-bottom: 4em !important;
}
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
}
/*-------------------------------------------------

animation

-------------------------------------------------*/
@keyframes right_to_left {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.anim_left {
	animation-name: right_to_left;
	animation-duration: 2s;
}
@keyframes left_to_right {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.anim_right {
	animation-name: left_to_right;
	animation-duration: 2s;
}
@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim_up {
	animation-name: bottom_to_top;
	animation-duration: 2s;
}
@keyframes top_to_bottom {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim_down {
	animation-name: top_to_bottom;
	animation-duration: 2s;
}
/*-------------------------------------------------

link

-------------------------------------------------*/
a {
	color: #EE7000;
	text-decoration: none;
}
.btn_orange{
	position:relative;
	display: block;
	width:70%;
	color: #FFFFFF;
	font-size:2rem;
	font-weight:bold;
	line-height:1.4;
	text-align:center;
	padding: 1.2em;
	margin:0 auto;
	border:2px solid #EE7000;
	border-radius: 10em;
	background: #EE7000;
	transition: ease .5s;
}
.btn_orange:hover {
	color: #EE7000;
	background: #FFFFFF;
}
.btn_orange:after{
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	content: "\e037";
  font-family: 'Material Icons';
}
.btn_common{
	position:relative;
	display: inline-block;
	color: #FFFFFF;
	font-weight:bold;
	line-height:1.4;
	padding: 0.8em 3em 0.8em 2em;
	border:1px solid #EE7000;
  border-radius: 0.5em;
	background: #EE7000;
	transition: ease .5s;
}
.btn_common:hover {
	color: #EE7000;
	background: #FFFFFF;
}
.btn_common:after{
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	content: "\e037";
  font-family: 'Material Icons';
}
@media screen and (max-width:720px) {
.btn_orange{
	width:80%;
	font-size:1.2rem;
}
}
/*-------------------------------------------------

header

-------------------------------------------------*/
header{
	position: fixed;
	top:0;
	left:0;
	height:100px;
	width:100%;
	min-width:1400px;
	background: #222222;
	z-index:999;
}
.logo {
	position: absolute;
	top: 50%;
	left: 2rem;
	transform: translateY(-50%);
	width:calc(100% - 2rem);
}
.logoa img {
	display:block;
	width:400px;
}
@media screen and (max-width:720px) {
header{
	height:70px;
	min-width:auto;
}
.logo {
	left: 1rem;
	width:calc(100% - 1rem);
}
.logo img {
	width:60%;
}
}
/*-------------------------------------------------

menu

-------------------------------------------------*/
.menu {
	display:none;
}
@media screen and (max-width:720px) {
.menu {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
	display: inline-block;
	vertical-align: middle;
	padding: 0.5em 0.8em;
	border-radius:0.5em;
	background: #EE7000;
	cursor: pointer;
	transition: ease .5s;
	z-index: 999999;
}
.menu .menu_bar {
	position: relative;
	width: 30px;
	height: 24px;
}
.menu .menu_bar span {
	position: absolute;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 2px;
	box-sizing: border-box;
	background: #FFFFFF;
	transition: ease .5s;
}
.menu .menu_bar span:nth-of-type(1) {
	top: 4px;
}
.menu.active .menu_bar span:nth-of-type(1) {
	transform: translateY(6px) rotate(-45deg);
}
.menu .menu_bar span:nth-of-type(2) {
	top: 12px;
}
.menu.active .menu_bar span:nth-of-type(2) {
	opacity: 0;
}
.menu .menu_bar span:nth-of-type(3) {
	top: 20px;
}
.menu.active .menu_bar span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}
.menu p {
	color: #FFFFFF;
	font-size:0.5em;
	font-weight:bold;
	text-align:center;
}
}
/*-------------------------------------------------

nav

-------------------------------------------------*/
nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
	width:60%;
}
nav ul.list_nav li{
	display: inline-block;
}
nav ul.list_nav li a{
	display: block;
	color:#FFFFFF;
	padding:0 0.5em;
	cursor:pointer;
}
@media screen and (max-width:720px) {
nav {
	position: fixed;
	top: 0;
	transform: none;
	right: auto;
	left: 0;
	display:none;
	height: calc(100vh - 12em);
	width: calc(100% - 2em * 2);
	padding:2em 2em 10em 2em;
	background: #222222;
	z-index: 9999;
	overflow-y: scroll;
	transition: ease .5s;
}
nav.open {
	display:block;
	opacity: 1;
}
nav ul.list_nav {
	text-align:center;
	margin-bottom:2em;
}
nav ul.list_nav li{
	display: block;
}
nav ul.list_nav li a{
	padding:0.5em;
}
}
/*-------------------------------------------------

mainvisual

-------------------------------------------------*/
.area_mv {
	display:block;
	min-width:1400px;
	margin-top:100px;
	z-index:9;
}
.area_mv figure img{
	width:100%;
}
@media screen and (max-width:720px) {
.area_mv {
	min-width:auto;
	margin-top:70px;
}
}
/*-------------------------------------------------
common

-------------------------------------------------*/
main{
	position:relative;
	min-width:1400px;
}
.wrap{
	width:1200px;
	margin:0 auto;
}
h1{
	font-size:1.6rem;
	line-height:1.4;
}
h2{
	font-size:4rem;
	line-height:1.4;
}
h3{
	font-size:2rem;
	line-height:1.4;
}
h4{
	font-size:1.2rem;
	line-height:1.4;
}
h5{
	font-size:1rem;
	line-height:1.4;
}
.box_color{
	padding:3rem;
	border-radius:2rem;
	background:#FFFFFF;
}
.area_cv {
  animation: zoom 3s ease-in-out infinite;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.area_imgTxt{
	display:flex;
	justify-content:center;
	gap:2rem;
}
.area_imgTxt .area_left{
	width: calc((100% - 2rem) * 0.4);
}
.area_imgTxt .area_right{
	width: calc((100% - 2rem) * 0.6);
}
@media screen and (max-width:720px) {
main{
	min-width:auto;
}
.wrap{
	width:96%;
}
h1{
	font-size:1.1rem;
}
h2{
	font-size:1.6rem;
}
h3{
	font-size:1.1rem;
}
h4{
	font-size:1rem;
}
.box_color{
	padding:2rem;
}
.area_cv h3{
	font-size:1rem;
}
.area_imgTxt{
	display:block;
}
.area_imgTxt .area_left,
.area_imgTxt .area_right{
	width:auto;
}
}
/*-------------------------------------------------

item

-------------------------------------------------*/
.area_item{
	margin-top:-16rem;
}
@media screen and (max-width:720px) {
}
/*-------------------------------------------------

problems

-------------------------------------------------*/
.area_problems{
	background-image:url('https://mishimaekimaeclinic.com/wp-content/uploads/sites/6/bg_problems_pc.png');
	background-size:cover;
	background-position:center bottom;
	background-repeat:no-repeat;
}
.box_problems{
	width:50%;
	padding:3rem;
	margin-left:auto;
	border-radius:2rem;
	background-color: rgba(255, 255, 255, 0.7);
}
.box_problems ul{
	font-size:1.6em;
}
@media screen and (max-width:720px) {
.area_problems{
	padding-bottom:20rem !important;
	background-image:url('https://mishimaekimaeclinic.com/wp-content/uploads/sites/6/bg_problems_sp.png');
}
.box_problems{
	width:auto;
	padding:2rem;
}
.box_problems ul{
	font-size:1.1em;
}
}
/*-------------------------------------------------

thought

-------------------------------------------------*/
@media screen and (max-width:720px) {
.area_thought .area_imgTxt .area_left figure img{
	width:40%;
}
}
/*-------------------------------------------------

gentlemaxpro

-------------------------------------------------*/
.area_gentlemaxpro .wrap{
	position:relative;
}
.img_gentlemaxpro{
	position:absolute;
	top:0;
	right:0;
}
.img_gentlemaxpro img{
	width:220px;
}
.txt_left{
	padding-right:30%;
}
.list_gentlemaxpro{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:2rem;
	counter-reset: number;
}
.list_gentlemaxpro > li{
	padding:3rem;
	border-radius:2rem;
	background:#FFFFFF;
}
.list_gentlemaxpro > li h3 {
	position:relative;
	padding-left:5rem;
}
.list_gentlemaxpro > li h3:before {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:0;
	counter-increment: number;
	content: counter(number, decimal-leading-zero);
	color: #EE7000;
	font-size:3rem;
	margin-right: 1rem;
}
@media screen and (max-width:720px) {
.area_gentlemaxpro h2{
	text-align:center !important;
}
.img_gentlemaxpro{
	position:static;
	text-align:center;
	margin-bottom:2em;
}
.img_gentlemaxpro img{
	width:40%;
}
.txt_left{
	padding-right:0;
}
.list_gentlemaxpro > li{
	padding:2rem;
}
.list_gentlemaxpro > li h3 {
	padding-left:4rem;
}
.list_gentlemaxpro > li h3:before {
	font-size:2rem;
}
}
/*-------------------------------------------------

feature

-------------------------------------------------*/
.list_feature{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:2rem;
}
.list_feature > li{
	width:calc((100% - 4rem) / 3);
	border-radius:2rem;
	background:#FFFFFF;
}
.list_feature > li > div{
	padding:2rem;
}
.list_feature > li > div figure img{
	width:40%;
}
.list_feature > li > div h3{
	font-size:1.8rem;
}
.free strong{
	color:#EE7000;
	font-size:6rem;
}
@media screen and (max-width:720px) {
.list_feature > li{
	width:100%;
}
.list_feature > li > div figure img{
	width:30%;
}
.free strong{
	font-size:4rem;
}
}
/*-------------------------------------------------

reasons

-------------------------------------------------*/
.list_reasons{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:2rem;
	counter-reset: number;
}
.list_reasons > li h3{
	position:relative;
	color:#FFFFFF;
	padding:1rem 1rem 1rem 6rem;
	background:#222222;
}
.list_reasons > li h3:before {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:1rem;
	counter-increment: number;
	content: counter(number, decimal-leading-zero);
	color: #EE7000;
	font-size:3rem;
	margin-right: 1rem;
}
@media screen and (max-width:720px) {
.list_reasons > li h3{
	padding-left:5rem;
}
.list_reasons > li h3:before {
	font-size:2rem;
}
}
/*-------------------------------------------------

difference

-------------------------------------------------*/
.list_difference{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:2rem;
	counter-reset: number;
}
.list_difference > li{
	width:calc((100% - 2rem) / 2);
	border-radius:2rem;
	background:#FFFFFF;
}
.list_difference > li > div{
	padding:3rem;
}
.list_difference > li > div h3 {
	position:relative;
	font-size:1.4rem;
	padding-left:5rem;
}
.list_difference > li > div h3:before {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:0;
	counter-increment: number;
	content: counter(number, decimal-leading-zero);
	color: #EE7000;
	font-size:3rem;
	margin-right: 1rem;
}
.list_difference > li > div h4 {
	font-size:1.8rem;
}
.table_comparison th{
	width:calc(100% / 3);
	color:#FFFFFF;
	font-size:1.4rem;
	padding:1em;
	border:1px solid #FFFFFF;
	background:#0060B3;
}
.table_comparison td{
	font-size:1.4rem;
	font-weight:bold;
	padding:1em;
	border:1px solid #0060B3;
	background:#FFFFFF;
}
.table_comparison tr td:first-child{
	text-align:center;
	background:#E0EFFD;
}
@media screen and (max-width:720px) {
.list_difference > li{
	width:100%;
}
.list_difference > li > div{
	padding:2rem;
}
.list_difference > li > div h3 {
	font-size:1.1rem;
	padding-left:4rem;
}
.list_difference > li > div h3:before {
	font-size:2rem;
}
.list_difference > li > div h4 {
	font-size:1.4rem;
}
.table_comparison th{
	font-size:1.1rem;
}
.table_comparison td{
	font-size:1.1rem;
}
}
/*-------------------------------------------------

price

-------------------------------------------------*/
.tab_menu {
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
	margin-bottom: 2rem;
	-webkit-overflow-scrolling: touch;
}
.tab_btn {
	flex: 1;
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
	padding: 1rem;
	border:1px solid #222222;
	border-bottom: 3px solid transparent;
	border-radius: 1rem 1rem 0 0;
	background:#EFEFEF;
	cursor: pointer;
	transition: all 0.3s ease;
}
.tab_btn:hover {
	color: #FFFFFF;
	background:#222222;
}
.tab_btn.active {
	color: #FFFFFF;
	background:#222222;
}
.tab_content {
	display: none;
	animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
      from { opacity: 0; transform: translateY(1rem); }
      to { opacity: 1; transform: translateY(0); }
}
.tab_content.active {
	display: block;
}
.table_price{
	width: 100%;
	border-collapse: collapse;
}
.table_price th{
	color:#FFFFFF;
	font-size:1.4rem;
	padding:1em;
	border:1px solid #FFFFFF;
	background:#222222;
	white-space: nowrap;
}
.table_price td{
	font-size:1.4rem;
	font-weight:bold;
	text-align:center;
	padding:1em;
	border:1px solid #222222;
	background:#FFFFFF;
	white-space: nowrap;
}
.table_price tr td:first-child{
	text-align:left;
	background:#E0EFFD;
}
@media screen and (max-width:720px) {
.table_price th{
	font-size:1.1rem;
}
.table_price tr td:first-child {
	width: auto;
}
.table_price td{
	font-size:1.1rem;
}
}
/*-------------------------------------------------

flow

-------------------------------------------------*/
.list_flow{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:2rem;
	counter-reset: number;
}
.list_flow > li{
	position: relative;
	width:calc((100% - 2rem) / 2);
	border-radius:2rem;
	background:#FFFFFF;
}
.list_flow > li:not(:last-child)::after {
  content: "▶";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
	color: #EE7000;
	font-size:3rem;
}
.list_flow > li > div{
	padding:3rem;
}
.list_flow > li > div h3 {
	position:relative;
	padding-left:5rem;
}
.list_flow > li > div h3:before {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:0;
	counter-increment: number;
	content: counter(number, decimal-leading-zero);
	color: #EE7000;
	font-size:3rem;
	margin-right: 1rem;
}
@media screen and (max-width:720px) {
.list_flow > li{
	width:100%;
}
.list_flow > li:not(:last-child)::after {
	content: "▼";
	right: 50%;
	transform: translateX(50%);
	top: auto;
	bottom: -3rem;
}
.list_flow > li > div{
	padding:2rem;
}
.list_flow > li > div h3 {
	padding-left:4rem;
}
.list_flow > li > div h3:before {
	font-size:2rem;
}
}
/*-------------------------------------------------

faq

-------------------------------------------------*/
.list_faq{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:2rem;
}
.list_faq > li h4{
	position:relative;
	color:#FFFFFF;
	padding:1rem 1rem 1rem 5rem;
	background: #222222;
}
.list_faq > li h4 span{
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:1rem;
	display:inline-block;
	padding:0.2em 0.5em;
	margin-right:1em;
	border-radius:0.5rem;
	background:#EE7000;
}
.list_faq > li .area_a{
	position:relative;
	padding-left:5em;
	margin-top:2em;
}
.list_faq > li .area_a span{
	position:absolute;
	top:1rem;
	transform: translateY(-50%);
	left:1rem;
	display:inline-block;
	color:#FFFFFF;
	line-height:1.4;
	padding:0.2em 0.5em;
	margin-right:1em;
	border-radius:0.5rem;
	background:#222222;
}
@media screen and (max-width:720px) {
}
/*-------------------------------------------------

footer

-------------------------------------------------*/
footer {
	min-width:1400px;
	padding-top:3em;
	padding-bottom:8em;
	background:#222222;
}
@media screen and (max-width:720px) {
footer {
	min-width:auto;
	padding-top:2em;
}
footer figure{
	width:60%;
	margin:0 auto;
}
}
/*-------------------------------------------------

fix_bottom

-------------------------------------------------*/
.fix_bottom{
	position:fixed;
	bottom:2rem;
	left:0;
	width:100%;
}
.fix_bottom ul{
	display: flex;
	gap:2rem;
}
.fix_bottom ul > li{
	display: block;
	width:calc((100% - 2rem) / 2);
}
.fix_bottom ul > li a{
	position:relative;
	display: block;
	color: #FFFFFF;
  font-size: 1.4em;
	font-weight:bold;
	line-height:1.4;
	text-align:center;
	padding: 0.8em 1em;
  border-radius: 0.5em;
	border:1px solid #EE7000;
	background: #EE7000;
	transition: ease .5s;
}
.fix_bottom ul > li a:hover {
	color: #EE7000;
	background: #FFFFFF;
}
.fix_bottom ul > li a:after{
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	content: "\e037";
  font-family: 'Material Icons';
}
@media screen and (max-width:720px) {
.fix_bottom{
	bottom:1rem;
}
.fix_bottom ul{
	gap:1rem;
}
.fix_bottom ul > li{
	width:calc((100% - 1rem) / 2);
}
.fix_bottom ul > li a{
	font-size:0.8rem;
}
}