﻿/*-----------------------------------------------------	*/
/*	for all						*/
/*-----------------------------------------------------	*/

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
	text-align: center;
}
.loadingBar {
	width: 0;
	height: 3px;
	background-color:#d7225d;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
	position: fixed;
	top: 0;
	left: 0;
	transition: all 0.2s linear 0s;
	z-index:10000;
}
#loading p {
	color:#ea3670;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
	background:url(/images/clinic_logo.png);
	background-size:100px;
	position:relative;
}
.spinner div {
	position:absolute;
	left:0;
	top:0;
	width: 100px;
  height: 100px;
	z-index:-1;
	background-color: #d7225d;
	border-radius: 100%;
  animation: sk-scaleout 1.5s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(2.0);
    opacity: 0;
  }
}

/* ------ General Settings ------ */

html {font-size: 1vw;}
body {
	/*font-size: calc(70% + 0.5vw);*/
	line-height:1.8;
	letter-spacing:0.05em;
}
#wrapper {
	width:100%;
	/*max-width:1920px;*/
	min-width:1200px;
	margin:0 auto;
	overflow:hidden;
	font-size: 1.128em;
}
@media screen and (min-width: 1600px) {
	html,
	#wrapper {font-size: 18px;}
}
@media screen and (max-width: 1200px) {
	html,
	#wrapper {font-size: 13.5px;}
}

a { transition: 0.3s; }

/* ------ Header ------ */
#header_section,
#header,
.header_inner {
	transition: all 0.5s ease
}
#header {
	width: 100%;
	border-top:3px #d7225d solid;
}
.header_inner {
	max-width:1600px;
	min-width:1200px;
	margin: 0 auto;
	padding:1.5em 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	width: 25%;
	margin:0 auto;
	position:relative;
	z-index: 999;
}
.logo a {
	display: block;
}

#pan {
	width:100%;
	background-color:#fff;
}
.pan_box {
	width:100%;
	margin:0 auto;
	max-width:1600px;
	min-width:1200px;
	padding:0 5%;
}
.pan_box p {
	padding:1em 50px;
	font-size:0.9em;
	line-height:1.1;
}
.pan_box a {
	margin-right:12px;
	padding-right:15px;
	color:#ec4d81;
	position:relative;
}
.pan_box a:before{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #555;
  border-right: solid 1px #555;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}

/* ------ Contents ------ */

#mv_block {
	position:relative;
	text-align:center;
	display: flex;
	align-items: center;
}
#mv_block .mv_img {
	width:100%;
	text-align:center;
	/*filter: contrast(75%);*/
}
#mv_block .mv_ttl {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	z-index:2;
	display: flex;
	align-items: center;
}
#mv_block .mv_ttl_inner {
	width:100%;
	margin:0 auto;
	max-width:1600px;
	min-width:1200px;
}
#mv_block .mv_ttl_inner h1 {
	font-size:2em;
	font-weight:500;
	color:#fff;
	padding-top:0.5em;
}
@media screen and (min-width: 1600px) {
	#mv_block {
		height:270px;
	}
	#mv_block .mv_img img {
		width:100%;
		height:270px;
		object-fit: cover;
	}
}

#contents_body {
	width:100%;
}
.contents {
	margin: 0 auto;
	padding:30px 0 0;
}
.section_bg {
  margin-bottom: 3.5em;
	background-color:#fff4f8;
}
.block {
  max-width: 1200px;
  margin: 0 auto;
  padding:0 0 3em;
}
.box_wh {
	padding: 3.5em 2.5em 0;
	border-radius:10px;
	background-color:#fff;
}
.box_pk {
	padding: 3.5em 2.5em 0;
	border-radius:10px;
	background-color:#fff4f8;
}
.telbox_pk {
	width:80%;
	margin:0 auto;
	padding:3% 0 2.5%;
	text-align:center;
	border-radius:10px;
	background-color:#fff4f8;
}
.telbox_pk .tel {
	width:18em;
	margin:0 auto 1em;
}

.section .ttl_lv2 {
  margin-bottom: -2.0em;
  padding: 0 3em 0 6em;
}
.section_bg .ttl_bg {
  margin-bottom: 1.5em;
	background: linear-gradient(to bottom, #fff 0%,#fff 50%,#fff4f8 50%,#fff4f8 100%);
}
.section_bg .ttl_lv2 {
  max-width: 1200px;
  margin: 0 auto;
	padding: 0 3em 0 6em;
}
.ttl_lv2 h2 {
  position: relative;
}
.ttl_lv2 h2::before {
  content: "";
  display: block;
  vertical-align: middle;
  width: 1.3em;
  height: 1.3em;
  border-radius: 1em;
  background: url("/reservation/images/icon_ttl.svg") no-repeat center center;
  background-size: 1em;
  background-color: #f06c96;
  position: absolute;
  top: 0.2em;
  left: -1.5em;
}
.section3 .ttl_lv2 h2::before {
  top: 0em;
}
.section6 .ttl_lv2 h2::before {
  display: none;
}
.section6 .ttl_lv2 {
  padding: 0;
}
h2 {
	font-size:2.1em;
	font-weight:500;
	color:#ea3670;
}
h3 {
	font-size:1.6em;
	padding-bottom:0.5em;
}
h3 img {
	width: 1em;
  margin-left: 0.5em;
  vertical-align: middle;
}
h3 img.icon_re {
  width: 1.2em;
}
h3.ttl_lv3 {
	color:#ea3670;
}
h4 {
	font-size:1.2em;
	padding-bottom:0.8em;
}

.col_set {
	display: flex;
	flex-wrap: wrap;
	padding:0 2.5% 3%;
}
.col_set.rev {
	flex-direction: row-reverse;
}
.col_set.in1 {
	padding:0 5% 3%;
}
.col_set.in2 {
	padding:0 10% 3%;
}
.col_set .col100 {
	width:100%;
	padding:0 2.5% 3%;
}
.col_set .col50 {
	width:50%;
	padding:0 2.5% 3%;
}
.col_set .col25 {
	width:25%;
	padding:0 2.5% 3%;
}

.column-block {
	padding:0 8px 15px;
}
.in_box {
	padding-top:3%;
}
.line-box {
	margin:0 30px;
	padding:20px 0;
	border:3px #DDD dashed;
}
.center_box {
	display:inline-block;
}
ul.list_circle li {
	position:relative;
	padding-left:1em;
}
ul.list_circle li:before {
	position:absolute;
	content:"●";
	color:#999;
	left:0;
	top:0;
}
ul.list_circle ol li {
	list-style: decimal;
}
ul.list_circle ol li:before {
	display: none;
}

.use {
  display: flex;
  align-items: center;
  font-size: 1.5em;
}
.use p {
  margin-right: 1em;
}
.icon_sp,
.icon_pc {
  display: flex;
  align-items: center;
  height: 3em;
  padding:0 1.5em;
  border-radius: 10px;
  background-color: #fff;
}
.use .icon_sp img {
	width: 0.9em;
  margin-left: 0.5em;
  vertical-align: middle;
}
.use .icon_pc img {
	width: 2.0em;
  margin-left: 0.5em;
  vertical-align: middle;
}

.section2 h3 {
  margin-bottom: 0.6em;
  padding-bottom: 0.3em;
  border-bottom: 3px #f06c96 solid;
}
.case {
  display: flex;
  justify-content: space-between;
}
.case_box {
  width: 48%;
  padding:1em 2em;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
}

.section3 .ttl_lv2 {
  margin-bottom: -4.0em;
}
.section3 .ttl_lv2 h2 {
  line-height: 1.3em;
}
.section3 .box_pk {
  padding-top: 6em;
}
.entry {
  display: flex;
  justify-content: space-between;
}
.entry_box {
  width: 48%;
}
.entry_box {
  width: 48%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.entry_box .img {
  width: 30%;
}
.entry_box .txt {
  width: 70%;
  padding-left: 0.6em;
}
.url {
  padding: 0.5em;
  text-align: center;
  font-size: 1.4em;
  border-radius: 10px;
  background-color: #fff;
}
.url a {
  color: #e0527f;
}

.box_wh h3 {
  text-align: center;
}
.flow {
  display: flex;
  justify-content: space-between;
  flex-flow:wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: number 0;
}
.flow li {
  width: 23%;
  margin: 0 0 1em;
  padding: 0 0.5em 1em;
  background-color: #fdf7e1;
  box-sizing: border-box;
}
.flow li:before {
  counter-increment: number 1;
  content: counter(number) " ";
  display: block;
  width: 2.0em;
  margin: 0 auto;
  padding: 0em 1em;
  text-align: center;
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  background-color: #f06c96;
}
.flow li .img {
  padding-top: 1em;
  text-align: center;
}
.flow li .txt {
  padding: 1em 0.5em 0;
  line-height: 1.5em;
}
.flow li .txt b {
  padding: 1em 0.3em 0;
  font-size: 0.95em;
  color: #e0527f;
}

.section6 .ttl_lv2 {
  margin-bottom: 1em;
  text-align: center;
}

.btn {
	width: 250px;
	height: 50px;
	margin: 20px auto 0;
	padding: 5px;
}
.btn a {
	display: block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(to right, rgba(254,95,146,1) 0, rgba(255,131,171,1) 100%);
	transition:all .4s;
}
.btn a:hover {
	color: #fff;
	text-decoration: none;
	background: linear-gradient(to right, rgba(255,131,171,1) 0%,rgba(254,95,146,1) 100%);
	background-position:250px 0;
	box-shadow:5px 5px 20px rgba(185,43,89,0.3);
}

/* よくある質問 */
.faq_box {}
.shadeGroup{
	padding-bottom:0px;
	margin-bottom:15px;
	border-radius:10px;
	background-color:#fff;
	transition:all .3s;
}
.section_bg .shadeGroup{
	background-color:#fff;
}
.shadeGroup.shadeClose{
	box-shadow:5px 5px 15px rgba(185,43,89,0.2);
}
h4.shadeBtn {
	padding-bottom:0;
	font-weight:normal;
}
.shadeContents{
	padding:5px 15px 25px 80px;
	background:url(/images/icon_a.svg) no-repeat 25px 0px;
	background-size:40px;
}
.shadeOpen .shadeBtn,
.shadeClose .shadeBtn,
.shadeOpen .shadeContents,
.shadeClose .shadeContents{
	
}
.shadeOpen .shadeBtn,
.shadeClose .shadeBtn {
	cursor:pointer;
	background:url(/images/icon_q.svg) no-repeat 25px 20px;
	background-size:40px;
}
.shadeOpen .shadeBtn a,
.shadeClose .shadeBtn a {
	padding:25px 110px 25px 90px;
	display:block;
}
.shadeOpen .shadeBtn a {
	background:url(/images/icon_op.svg) no-repeat right 25px center;
	background-size:40px;
}
.shadeClose .shadeBtn a {
	background:url(/images/icon_cl.svg) no-repeat right 25px center;
	background-size:40px;
}

/* ------ Footer ------ */
footer {
	width: 100%;
	padding:20px 5%;
	background-color:#ff719f;
	position:relative;
	color:#FFF;
}
.footer_inner {
	width:100%;
	margin:0 auto;
	max-width:1600px;
	min-width:1200px;
	padding:10px 0;
	font-size:0.9em;
	display: flex;
	justify-content: center;
}
.footer_inner .box1 {
	margin-right:auto;
}
.footer_logo {
	margin-bottom:8px;
	font-size:1.3em;
	font-weight:500;
}

.copyright {
	text-align: right;
	color: #FFC1DB;
	font-size:0.8em;
}

#pageTop {
	position: fixed;
	right: 0px;
	bottom:100px;
	margin: 0;
	z-index:98;
}
#pageTop p {
	transition: all 0.3s;
	transform:rotate(45deg);
	transform-origin:right bottom;
}
#pageTop p.on {
	transform:rotate(0deg);
}
#pageTop img {
	width:124px;
}

.sp, .tb {
	display:none;
}
.no_pc {
	display:none !important;
}

.grad-trigger,
.grad-btn {
	display:none;
}


/* アニメーション設定 */
.arrowWrap {
  position: absolute;
	left: 3.5%;
  bottom: 0;
  height: 125px
}
.arrowInner p {
  font-size: 12px;
	color: #ea3670;
  text-align: end;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.arrow {
  width: 1px;
  height: 60px;
  margin: 20px auto 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.arrow::before {
  content: '';
  width: 3px;
  height: 60px;
  margin: 50px auto 0;
  background-color: #ea3670;
  position: absolute;
  top: -110px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
	/*
  70% {
    -webkit-transform: translate3d(-50%, 80px, 0);
    transform: translate3d(-50%, 80px, 0);
  }
	*/
  100% {
    -webkit-transform: translate3d(-50%, 120px, 0);
    transform: translate3d(-50%, 120px, 0);
  }
}

pc_center {
	text-align:center;
}