@charset "utf-8";
/*----------------------------------
	body
-----------------------------------*/
html{
	overflow-x: hidden;
}
body{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #545454;
}
figure{
	margin: 0;
}
.center {
	text-align: center;
}
.block {
	min-width: 1000px;
	max-width: 1200px;
	margin: 0 auto;
}
#container {
	padding-top: 150px;
}
/*----------------------------------
	br 
-----------------------------------*/
.tablet-block {
	display: none;
}
.sp-block {
	display: none;
}
.br-tablet {
	display: none;
}
/*----------------------------------
	a link button
-----------------------------------*/
a{
	color: #545454;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-malformation {
  font-size: 2rem;
  padding: 3rem 4rem;
  color: #fff;
  border-radius: 100% 80px / 80px 100%;
  background-color: #eb6877;
}
a.btn-malformation:hover {
  color: #fff;
  border-radius: 60% 80% / 100% 80%;
}
a.btn-c {
  font-size: 1.8rem;
  position: relative;
  padding: 1.5rem 2rem 1.5rem 2rem;
  color: #fff;
  border-radius: 100vh;
  background: #eb6877;
  width: 100%;
}
a.btn-c:hover {
  color: #fff;
  background: #ee7f8b;
}
/*----------------------------------
	header
-----------------------------------*/
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	z-index: 1000000000;
}
header .header-inner {
	width: 1100px;
	height: 100px;
	margin: 0 auto;
	padding-right: 5.0rem;
	display: flex;
	justify-content: space-between;
    align-items: center;
}
header .header-inner h1{
	width: 500px;
}
.tel-no {
	line-height: 1;
}
.telInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.telInfo dt{
	letter-spacing: 0.2rem;
	margin-right: 0.5rem;
}
.telInfo dd{
	font-size: 3.0rem;
}
.telInfo dd a{
	color: #545454;
	font-weight: 700;
}
.timeInfo {
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    margin-left: 0.75rem;
}
/*----------------------------------
	footer
-----------------------------------*/
footer{
	border-top: 1px solid #FFC9D2;
	padding: 5.0rem 0;
}
.footer-inner01 {
	width: 1000px;
	margin: 0 auto 5.0rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-L {
	width: 60%;
}
.footer-L h2{
	width: 450px;
}
.footer-inner02 {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footer-inner02 .footer-L ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-inner02 .footer-L ul li{
	width: 45%;
}
.footer-btn {
	margin-bottom: 2.0rem;
	text-align: center;
}
.footer-btn span{
	font-size: 1.4rem;
	display: block;
}
.footer-sign {
	font-size: 1.2rem;
}
/*----------------------------------
	nav
-----------------------------------*/
.menubtn{
	position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
	top: 15px;
	right: 20px;
	cursor: pointer;
	width: 80px;
	height: 65px;
	z-index: 1000000001;
	background: #eb6877;
}
/*ボタン内側*/
.menubtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
}
.menubtn span:nth-of-type(1),
.menubtn span:nth-of-type(3) {
    height: 2px;
	background: #fff;
    width: 60px;
    left: 10px;
}
.menubtn span:nth-of-type(1) {
    top:13px; 
}
.menubtn span:nth-of-type(2) {
    top:19px;
    left:15px;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: #fff;
}
.menubtn span:nth-of-type(3) {
    top: 50px;
}
/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.menubtn.active span:nth-of-type(1) {
    top: 25px;
    left: 10px;
    transform: translateY(6px) rotate(-45deg);
    width: 60px;
}
.menubtn.active span:nth-of-type(2) {
  opacity: 0;
}
.menubtn.active span:nth-of-type(3){
    top: 37px;
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 60px;
}
#nav-content {
    z-index: 900;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    color: #fff;
    position: fixed;
    top: 100px;
    right: 0;
    transform: translateX(100%);
    transition:  transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    justify-content: flex-start;
    padding: 5.0rem 10.0rem;
}
#nav-content .nav-img {
	width: 45%;
	height: 85%;
	background: url("/common/images/pht/pht_navimg.jpg") no-repeat center center;
	background-size: cover;
	margin-right: 10%;
}
#nav-content nav{
    width: 45%;
}
#nav-content nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 5.0rem;
    margin-left: 20px;
}
#nav-content ul li{
	width: 45%;
	font-weight: 300;
	font-size: 2.4rem;
}
#nav-content a {
	position: relative;
    display: block;
    color: #545454;
    text-decoration: none;
    padding: 1.0rem 0;
    transition: opacity .6s ease;
}
#nav-content ul li a::after {
    position: absolute;
    left: -20px;
    content: '';
    width: 10px;
    height: 1px;
    background: #000;
    bottom: 50%;
	transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}
#nav-content a:hover {
    opacity: 0.6;
}
#nav-content a.btn-c {
    font-size: 1.8rem;
    position: relative;
    padding: 1.5rem 2rem 1.5rem 2rem;
    color: #fff;
    border-radius: 100vh;
    background: #eb6877;
    width: 100%;
}
#nav-content a.btn-c:hover {
  color: #fff;
  background: #ee7f8b;
}
#nav-content a.btn-c span{
	display: block;
	font-size: 1.4rem;
}
.is-open {
    overflow: hidden;
}
.is-open #toggle-box > span {
    background: #fff;
}
.is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
}
.is-open #toggle-box > span:nth-child(2) {
    width: 0;
}
.is-open #toggle-box > span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg) translatey(-50%);
}
.is-open #nav-content {
    z-index: 999;
    transform: translateX(0);
}
/*----------------------------------
	title
-----------------------------------*/
.index-ttl {
	font-size: 4.0rem;
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.2rem;
	margin-bottom: 5.0rem;
}
.index-ttl span.sitettl{
	font-size: 2.1rem;
	display: block;
	margin-bottom: 0.5rem;
}
/*----------------------------------
	index
-----------------------------------*/
#keyv {
	position: relative;
	margin: 100px 0 10.0rem;
	height: 70vh;
}
#keyv ul li.keyv01 {
	background: url("/common/images/keyv/keyv01.jpg") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 70vh;
}
#keyv ul li.keyv02 {
	background: url("/common/images/keyv/keyv02.jpg") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 70vh;
}
#keyv ul li.keyv03 {
	background: url("/common/images/keyv/keyv03.jpg") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 70vh;
}
#keyv ul li.keyv04 {
	background: url("/common/images/keyv/keyv04.jpg") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 70vh;
}
.keyv-txt {
	position: absolute;
	bottom: 50px;
	left: 100px;
	font-size: 4.0rem;
}
.keyv-txt h2{
	font-weight: 300;
}
.keyv-txt h2 span{
	color: #F58E7D;
	display: inline-block;
	background: #fff;
	line-height: 1;
	padding: 1.0rem 2.0rem;
	letter-spacing: 0.2rem;
}
.keyv-txt h2 span.col01 {
	margin-bottom: 2.0rem;
}
.keyv-txt h2 span.col02 {
	font-size: 5.0rem;
}
/*	about  */
#index-about {
	background: #f9f9f9;
	padding: 5.0rem;
	margin: 0 5.0rem 10.0rem;
}
.index-about-list {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5.0rem;
}
.index-about-list li{
	width: 30%;
}
.index-about-list li h3{
	font-size: 1.8rem;
	font-weight: 400;
}
.index-img {
	background: url("/common/images/pht/pht_index.jpg") no-repeat top 20% left;
	background-size: cover;
	width: 100%;
	height: 500px;
	margin-bottom: 10.0rem;
}
/*	therapy  */
#index-therapy {
	margin-bottom: 10.0rem;
}
.index-therapy-list {
	width: 1000px;
	margin: 0 auto 5.0rem;
	display: flex;
	justify-content: space-between;
}
.index-therapy-list li{
	position: relative;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	text-align: center;
	color: #fff;
}
.index-therapy-list li:first-child{
	background: #7bc890;
	border: 10px solid #4db56a;
}
.index-therapy-list li:nth-child(2){
	background: #FFC680;
	border: 10px solid #FF8C00;
}
.index-therapy-list li:nth-child(3){
	background: #99CCFF;
	border: 10px solid #1E90FF;
}
.index-therapy-list li .index-therapy-list-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250px;
	transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.index-therapy-list li .index-therapy-list-inner h3{
	font-size: 3.5rem;
	font-weight: 400;
}
/*	blog  */
#index-blog {
	background: #f9f9f9;
	padding: 5.0rem;
	margin-bottom: 10.0rem;
}
.index-blog-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.index-blog-list li{
	width: 22%;
	margin-bottom: 5.0rem;
	text-align: center;
}
.index-blog-list li .blog-img {
	margin-bottom: 2.0rem;
}
.index-blog-list li .blog-img img{
	width: 250px;
	height: 250px;
	object-fit: cover;
}
.index-blog-list li h3 span.date {
	display: block;
	font-size: 1.4rem;
}
/*	topics  */
#index-topics {
	margin: 0 5.0rem 10.0rem;
}
.index-topics-list {
	width: 600px;
	margin: 0 auto 5.0rem;
}
.index-topics-list li{
	margin-bottom: 2.0rem;
	padding: 0 2.0rem 2.0rem;
	border-bottom: 1px solid #eee;
}
.index-topics-list li h3{
	font-weight: 300;
}
.index-topics-list li h3 span.date {
	padding: 0 2.0rem 0 0;
	display: inline-block;
}
/*----------------------------------
	page
-----------------------------------*/
/*--   common  --*/
.page-section {
	margin-bottom: 20.0rem;
    padding-top: 180px;
    margin-top:-180px;
}
.page-header {
	padding: 5.0rem;
}
.page-ttl{
	position: relative;
	text-align: center;
	font-size: 4.0rem;
	font-weight: 300;
	margin-bottom: 5.0rem;
}
.page-ttl:before{
	content: "";
	position: absolute;
	top: -90px;
	left: 50%;
	transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
	width: 150px;
	height: 110px;
	background: url("/common/images/icon/icon_rainbow.svg") no-repeat center center;
	background-size: contain;
}
.page-subttl{
	font-size: 2.5rem;
	font-weight: 300;
	text-align: center;
	margin-bottom: 5.0rem;
}
.page-subttl span{
	border-top: 2px solid #FFC9D2;
	border-bottom: 2px solid #FFC9D2;
	padding: 0.5rem;
	display: inline-block;
}
.page-txt {
	font-size: 1.8rem;
}
.flex-box {
	display: flex;
	justify-content: space-between;
}
.text-center {
	text-align: center;
}
/*--   philosophy  --*/
.philosophy-img01 {
	background: url("/common/images/keyv/keyv01.jpg") no-repeat center top 30%;
	background-size: cover;
	width: 100%;
	height: 350px;
	margin-bottom: 5.0rem;
}
.philosophy-img02 {
	background: url("/common/images/keyv/keyv02.jpg") no-repeat center top 30%;
	background-size: cover;
	width: 100%;
	height: 350px;
	margin-bottom: 5.0rem;
}
.philosophy-img03 {
	background: url("/common/images/pht/pht_philosophy.jpg") no-repeat center top 30%;
	background-size: cover;
	width: 100%;
	height: 400px;
	margin-bottom: 5.0rem;
}
#philosophy01 ul{
	list-style: outside disc;
	color: #eb6877;
	border: 1px solid #eb6877;
	width: 600px;
	padding: 3.0rem 5.0rem;
	margin: 0 auto;
}
/*--   therapy  --*/
.anchor-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 5.0rem;
}
.anchor-list li{
	text-align: left;
	margin-bottom: 2.0rem;
	font-size: 1.8rem;
	width: 32%;
}
.anchor-list li a{
	position: relative;
	display: block;
	background: #FFC9D2;
	color: #fff;
	border: 2px solid #FFC9D2;
	width: 100%;
	height: 100%;
	padding: 2.0rem 3.0rem;
	transition: .3s;
}
.anchor-list li a:hover{
	background: #fff;
	color: #FFC9D2;
}
.dli-chevron-down {
	position: absolute;
	top: 45%;
	right: 20px;
	color: #fff;
	width: 1em;
	height: 1em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-50%) rotate(135deg);
}
.anchor-list li a:hover .dli-chevron-down {
	color: #FFC9D2;
}
.therapy-img {
	margin-bottom: 15.0rem;
}
.block01 .left-therapy01 {
	width: 320px;
}
.block01 .right-therapy01 {
    width: calc(94% - 310px);
}
.block01 .right-therapy01 img{
    max-width: initial;
    width: auto;
}
.block02 .left-therapy01 {
    width: calc(94% - 310px);
}
.block02 .right-therapy01 {
	width: 320px;
}
.nursing-list {
	width: 80%;
	margin: 0 auto 3.0rem;
	padding: 5.0rem;
	background: #fffbfc;
}
.nursing-list li{
	border-bottom: 1px solid #FFC9D2;
	padding-bottom: 2.5rem;
	margin-bottom: 3.0rem;
}
.nursing-list li:first-child{
	border-top: 1px solid #FFC9D2;
	padding-top: 3.0rem;
}
.nursing-list li:last-child{
	margin-bottom: 0;
}
.nursing-list li h3{
	font-size: 2.0rem;
	font-weight: 400;
	border-left: 3px solid #FFC9D2;
	padding-left: 1.0rem;
	margin-bottom: 1.0rem;
}
.nursing-page-txt {
	width: 80%;
	margin: 0 auto;
	font-size: 1.8rem;
}
#therapy03 .text-center {
	margin-bottom: 10.0rem;
	font-size: 2.4rem;
	line-height: 2.0;
}
#therapy03 .page-txt {
	width: 80%;
	margin: 0 auto;
}
.program-list {
	background: #fffbfc;
	padding: 5.0rem;
}
.program-list li{
	align-items: center;
	margin-bottom: 5.0rem;
}
.program-l {
	width: 45%;
}
.program-list .program-l h3{
	font-size: 3.0rem;
	font-weight: 300;
	margin-bottom: 1.0rem;
}
.program-list .program-r h3{
	font-size: 3.0rem;
	font-weight: 300;
	margin-bottom: 1.0rem;
}
figure.program-r {
    width: 50%;
}
figure.program-r  img {
    width: 680px;
}
.program-list li:nth-child(even){
	flex-flow: row-reverse;
}
.program-list li:nth-child(even) figure.program-r img {
    max-width: 680px;
    float: right;
}
#therapy05 article{
	position: relative;
	width: 100%;
	height: 100%;
	background: url("/common/images/pht/pht_therapy09.jpg") no-repeat center center;
	background-size: cover;
}
#therapy05 article:before{
	content: "";
	position: absolute;
	z-index: 2;
	width: 100%;
	height:100%;
	top: 0;
	left: 0;
	background-color: white;
	opacity: 0.8;
}
.w-80 {
	position: relative;
	margin: 0 auto;
	width: 800px;
	padding: 5.0rem 0;
	z-index: 3;
}
.individual-list {
	background: #fffbfc;
	padding: 5.0rem;
}
.individual-list li{
	margin-bottom: 3.0rem;
}
.individual-list li h3{
	font-size: 2.4rem;
	margin-bottom: 1.0rem;
}
/*--   flow  --*/
.flow-chart li{
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 10.0rem;
}
.flow-chart li:after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	bottom: -70px;
	left: 50%;
	transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
	border-left: 80px solid transparent;
	border-right: 80px solid transparent;
	border-top: 40px solid #fd7e00;
}
.flow-chart li:last-child {
	margin-bottom: 0;
}
.flow-chart li:last-child:after {
	display: none;
}
.group-a, .group-b, .group-c {
	width: 12%;
	text-align: center;
	font-size: 2.2rem;
	padding: 2.0rem 0;
}
.group-a {
	background: #71c5e8;
}
.group-b {
	background: #4db56a;
}
.group-c {
	background: #fff3b8;
}
.flow-txt {
	width: 64%;
	font-size: 2.2rem;
	padding: 2.0rem 3.0rem;
	border: 5px solid #eb6877;
}
.flow-txt h3{
	color: #eb6877;
	font-weight: 100;
	line-height: 1.4;
}
.flow-txt h3 span{
	font-size: 1.2rem;
}
.flow-txt .page-txt {
	font-size: 1.6rem;
}
/*--   use  --*/
.stepbar {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #eb6877;
}

.stepbar .stepbarwrap .triangle {
  content: "";
  display: block;
  width: 0;
  border: solid 1em transparent;
  border-top-color: #eb6877;
  margin: 0 auto;
}

.stepbar .stepbarwrap .steptitle span {
  display: block;
  font-weight: bold;
  font-size: 2.0rem;
  margin: 1em auto;
}

.stepbar .stepbarwrap .title {
  font-size: 3.0rem;
  font-weight: bold;
  color: #eb6877;
}

.stepbar .stepbarwrap .txt {
  width: 90%;
  display: block;
  margin: 2em auto;
  font-size: 0.9em;
}
.stepbar:first-of-type .triangle:first-of-type {
  display: none;
}

.stepbar:last-of-type .stepbarwrap:last-of-type {
  border-bottom: 1px solid #eb6877;
}

@media screen and (max-width: 960px) {
  .stepbar {
    width: 90%;
  }
}
.use-img {
	background: url("/common/images/pht/pht_use.jpg") no-repeat center center;
	width: 100%;
	height: 420px;
}
/*--   faq  --*/
#faq article{
	background: #f9f9f9;
	padding: 5.0rem 0;
}
.qa-007 {
    width: 80%;
    margin: 0 auto 3.0rem;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}
.qa-007 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 2.0rem 5.0rem;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}
.qa-007 summary::before,
.qa-007 p::before {
    position: absolute;
    left: 2.0rem;
    font-weight: 600;
    font-size: 1.3em;
}
.qa-007 summary::before {
    color: #75bbff;
    content: "Q";
}
.qa-007 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-007[open] summary::after {
    transform: rotate(225deg);
}
.qa-007 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}
.qa-007[open] p {
    transform: none;
    opacity: 1;
}
.qa-007 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}
/*--   classroom  --*/
.classroom-img {
	background: url("/common/images/keyv/keyv03.jpg") no-repeat center center;
	width: 80%;
	height: 420px;
	margin: 0 auto 5.0rem;
}
#classroom .flex-box{
	width: 80%;
	margin: 0 auto;
}
.access-l {
	width: 35%;
}
.access-l li{
	margin-bottom: 2.0rem;
}
.access-r {
	width: 60%;
}
/*--   blog  --*/
#single-container, .category-list {
	width: 1000px;
	margin: 0 auto;
	padding: 5.0rem 0;
}
.cat-list li a{
	background: #eb6877;
	color: #fff;
	padding: 0.5rem 1.0rem;
}
.single-date-box {
	display: flex;
	justify-content: space-between;
	padding-bottom: 1.0rem;
}
.single-section-ttl {
	font-size: 3.5rem;
	padding: 3.0rem;
	border-bottom: 1px solid #000;
	border-top: 1px solid #000;
}
.single-content {
	padding: 5.0rem 0;
}
.thumimg {
	width: 50%;
	margin:0 auto 3.0rem;
}
.single-content p{
	display: block;
	margin-bottom: 2.0rem;
	word-wrap: break-word;
}
.single-content a{
	color: #eb6877;
}
#container.category-list {
	padding: 20.0rem 0;
}
.category-post-list {
	border-top: 1px solid #000;
}
.category-post-list li{
	position: relative;
	padding: 3.0rem 0;
	border-bottom: 1px solid #000;
}
.category-post-list li a{
	transition: .3s;
}
.category-post-list li a:hover{
	opacity: 0.5;
}
.arrow_r {
  position: relative;
  display: block;
  color: #333;
  text-decoration: none;
}
.arrow_r:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 2px #eb6877;
  border-right: solid 2px #eb6877;
  position: absolute;
  top: 50%;
  right: 2.0rem;
  margin-top: -4px;
  transform: rotate(45deg);
}
.category-post-list li h2{
	font-size: 2.1rem;
}
/*--   contact  --*/
.contact-form {
	background: #f9f9f9;
	padding: 10.0rem;
	margin: 0 0 5.0rem;
}
.contact-form li{
	padding: 5.0rem 0;
}
.contact-form li:first-child{
	padding-top: 0;
}
.contact-form li:last-child{
	padding-bottom: 0;
}
.contact-form li h4{
	margin-bottom: 2.0rem;
}
.contact-form li h4 span.required {
	font-size: 1.4rem;
	color: #fff;
	background: #ec6d81;
	padding: 0 1.0rem;
	margin-right: 1.0rem;
	display: inline-block;
}
.contact-form li input, .contact-form li textarea{
	padding: 1.0rem;
	background: #fff;
	display: block;
	width: 100%;
	border-radius: 10px;
}
.contact-privacy {
    border: 1px solid #707070;
    padding: 30px 50px;
    margin-bottom: 50px;
    overflow: auto;
    height: 300px;
    z-index: 10;
}
.contact-txt02 {
	margin-bottom: 3.0rem;
}
.btn-submit {
	background: #ec6d81;
	padding: 1.5rem 0;
	width: 250px;
	display: block;
	margin: 0 auto;
	color: #fff;
	font-size: 2.0rem;
	letter-spacing: 0.4rem;
	border: 3px solid #ec6d81;
	cursor: pointer;
	transition: .3s;
	border-radius: 10px;
}
.btn-submit:hover {
	background: #fff;
	color: #ec6d81;
}
.thanks-ttl {
	text-align: center;
	margin-bottom: 3.0rem;
	font-size: 2.5rem;
}