@charset "utf-8";

body {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #333;
}

html {scroll-behavior: smooth;}

img {
    max-width: 100%;
    height: auto;/*高さ自動*/
}

a {
    display: block;
    text-decoration-line: none;
	color: inherit;
}

a:hover,a img:hover {
    color: #E697B9;
    opacity: 0.8;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

li {text-decoration: none;}

input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

h1, h2, h3, h4, h5, h6, p, a, table {
	transform: rotate(0.03deg);
}

h2 {font-size: clamp(36px,10vw,40px);}

h4 {
	font-size: clamp(24px,6vw,28px);
	margin-bottom: .5rem;
	margin-top: clamp(1rem,3vw,1.8rem);
}

p{margin: 0;}

section {
	padding: clamp(3rem,6.5vw,5rem) 1rem;
}



/*ヘッダー
-------------------------------------*/
header {
	background-color: #fff;
	text-align: center;
	height: 120px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-x: clip;
	z-index: 5;
}

header h1 {
	position: absolute;
	left: 2%;
	top: 50%;
	transform: translateY(-80%);
	max-width: 200px;
	width: 100%;
}

header .head-contact {
	position: absolute;
	right: -2%;
	top: -50%;
	color: #fff;
	background-color: #E697B9;
	padding: 3rem;
	border-radius: 50%;
	height: clamp(100px,11vw,130px);
	width: clamp(100px,11vw,130px);
	z-index: 4;
}

header .head-contact a {margin-top: 3.5rem;}

header .head-contact a:hover {
	color: #fff;
	opacity: 1;
	transform: scale(1.1);
}

header .head-contact a img:hover {opacity: 1;}

header .head-contact img {
	display: block;
	max-width: clamp(30px,3vw,40px);
	margin: 0 auto 0.5rem;
}

/*ナビゲーションを横並びに*/
nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

nav li p {
	margin: 0;
}

/*2階層目以降は横並びにしない*/
nav ul ul {display: block;}

/*ナビゲーションのリンク設定*/
nav ul li a {
	padding: 2rem 1rem;
}

nav ul li a:hover {color: #E697B9;}

/*==2階層目以降の画像設定*/
nav ul li.has-child img {
	max-width: 100%;
	vertical-align: bottom;
	margin-bottom: 1rem;
	width: 100%;
}

/*== 2層目の設定 */
nav li.has-child ul {
	position: absolute;
	left: 50%;
    transform: translateX(-50%);
	top: 100px;
	z-index: 4;
	display: none;
	justify-content: center;
	align-items: baseline;
	background-color: #F6C4B6;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	padding: 2rem;
}

nav li.has-child ul li {
	flex-basis: calc(100% / 8);
}

nav li.has-child ul li a {
	padding: 0.5rem;
}

/*hoverしたら画像拡大*/
nav ul li.has-child img:hover {
	transform: scale(1.2);
	opacity: 1;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul {
	visibility: visible;
	opacity: 1;
	display: flex;
}

nav li.has-child ul li a:hover {
	color: inherit;
}

/*ハンバーガーボタン*/
.openbtn {display: none;}

@media screen and (min-width:2000px) {
	header {
		max-width: 2000px;
		margin-left: auto;
		margin-right: auto;
	}
	
	header h1 {
		position: initial;
		margin-right: 21rem;
		transform: none;
	}
	
	#nav-area {margin-right: 33.5rem;}
	
	header .head-contact {right: 0;}
}


@media screen and (max-width:1400px) {
	header {
		flex-direction: column;
		padding-bottom: 4rem;
	}
	
	header h1 {
		position: inherit;
		transform: none;
		margin: 6rem auto 0;
		top: auto;
	}
	
	header .head-contact {
		right: -5%;
		top: -20%;
		padding: clamp(0.8rem,3.5vw,3rem);
		
	}
	
	header .head-contact a {
		margin-top: clamp(1.5rem,3.5vw,3rem);
		margin-right: 3rem;
		font-size: 13px;
	}
	
	nav li.has-child ul {
		top: 180px;
	}
	
	nav li.has-child ul {
		flex-wrap: wrap;
	}
	
	nav li.has-child ul li {
		flex-basis: calc(100% / 4);
		padding: 0 1rem;
	}
}

@media screen and (min-width:1025px) {
	.animated {
		-webkit-animation-duration: .3s;
		animation-duration: .3s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
	}


	.fadeIn {
		-webkit-animation-name: fadeIn;
		animation-name: fadeIn;
	}
}

	@-webkit-keyframes fadeIn {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
}

	@keyframes fadeIn {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}


@media screen and (max-width:1024px) {
	header {
		display: block;
		padding-top: 2rem;
		padding-bottom: 0;
	}
	
	header h1 {
		position: initial;
		transform: none;
		margin: 0 auto;
	}
		
	header .head-contact {display: none;}
	
	#nav-area {display: none;}
	
	nav ul {
		display: block;
		background-color: #F6C4B6;
		margin-top: 1rem;
	}
	
	nav li {
		border-bottom: 2px solid #fff;
	}
	
	nav li.has-child p {position: relative;}
	
	nav li.has-child p::before {
		content: '';
		position: absolute;
		right: 2%;
		top: 10%;
		width: 9px;
		height: 9px;
		border-top: 2px solid #000;
		border-right: 2px solid #000;
		transform: rotate(135deg);
	}
	
	nav li.has-child.active > a::before {
		transform: rotate(-45deg);
	}
		
	nav li.has-child ul {
		position: relative;
		left: 0;
		transform: none;
		top: 0;
		width: 100%;
		visibility: visible;
		opacity: 1;
		display: none;
		background-color: #fff;
		padding: 0;
	}
	
	nav li.has-child:hover > ul {
		display: none;
	}
	
	nav li.has-child ul li {
	   display: inline-block;
    　　text-align: center;
    　　padding: 15px;
		width: 40%;
	}
	
	nav li.has-child ul li img {
		margin-bottom: 0;
	}
	
	nav li.has-child ul li div {
		margin-left: 0;
	}
	
	nav ul li.has-child img:hover {transform: none;}
	
	/*nav li.has-child ul li {
		text-align: left;
		padding: clamp(.5rem,2vw,1rem) 2rem;
		flex-basis: 40%;
	}*/
	
	/*nav li.has-child ul li a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}*/
	
	/*nav li.has-child ul li img {
		width: 30%;
		margin-bottom: 0;
	}*/
	
	/*nav li.has-child ul li div {
		margin-left: 2rem;
	}*/
	
	/*ハンバーガーボタン*/
	.openbtn {
		display: block;
		width: 50px;
		height: 50px;
		cursor: pointer;
		position: absolute;
		top: 10%;
		right: 2%;
	}
	
	.openbtn span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		right: 14px;
		height: 3px;
		width: 45%;
		border-radius: 5px;
		background-color: #E697B9;
		margin: 5px auto;
	}
	
	.openbtn span:nth-of-type(1) {
		top: 15px;
	}
	
	.openbtn span:nth-of-type(2) {
		top: 23px;
	}
	
	.openbtn span:nth-of-type(3) {
		top: 31px;
	}
	
/*activeクラスが付与されると線が×になる*/

	.openbtn.active2 span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}

	.openbtn.active2 span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn.active2 span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
	
}

@media screen and (max-width:768px) {
	nav li.has-child ul li {
		max-width: 560px;
		margin: 0 auto;
	}
}



/*コンテンツ
-------------------------------------*/
/* トップページ */

 /* メイン画像 */
.top-main-ttl {
	align-items: center;
	max-width: 1920px;
    padding: 0 clamp(0.5rem,3vw,2rem);
	overflow-x: clip;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}

.top-main-ttl .main-ttl {
	position: relative;
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	flex-basis: 16%;
	font-size: 24px;
    line-height: 1.5em;
	padding: 0 2rem;
	width: 16%;
}

.top-main-ttl .main-ttl > div {
	padding-right: 3em;
}

.top-main-ttl .main-ttl p {
	text-indent: -2em;
	margin: 0 auto;
	font-weight: 500;
}

.top-main-ttl .main-ttl p:first-of-type {
	padding-top: 2em;
}

.top-main-ttl .main-ttl p:nth-of-type(2) {
	padding-top: 4em;
}

.top-main-ttl .main-ttl p:nth-of-type(3) {
	padding-top: 6em;
}

.top-main-ttl .main-ttl::before {
	content: "";
	background-image: url("../images/top/top_ttl_back01.png");
	background-repeat: no-repeat;
	width: 100%;
	height: 220px;
	position: absolute;
	top: -45%;
	right: -6%;
	max-width: 220px;
	z-index: -1;
}

.top-main-ttl .main-ttl::after {
	content: "";
	background-image: url("../images/top/top_ttl_back02.png");
	background-repeat: no-repeat;
	width: 100%;
	height: 208px;
	position: absolute;
	bottom: -34%;
	left: 10%;
	max-width: 170px;
	z-index: -1;
}


.top-main-ttl .main-img {
	flex-basis: 80%;
	width: 80%;
}

/*==================================================
スライダーのためのcss
===================================*/

.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 39.344vw;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	max-height:755.4048px;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../images/top/slide1.jpg);
}

.slider-item02 {
    background:url(../images/top/slide2.jpg);
}

.slider-item03 {
    background:url(../images/top/slide3.jpg);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:39.344vw;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
    border-radius: 20px;
	max-height:755.4048px;
}

 /* 1つ目エリア */
.top-area01 {
	background-image: url("../images/top/top_area01_bg.jpg");
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	padding-left: 0;
    padding-right: 0;
	padding-top: clamp(4rem,10.5vw,10rem);
}

.top-area01 div.flex-box {
	position: relative;
	overflow-x: clip;
	padding: 0 2rem;
	align-items: center;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}

.top-area01 div.flex-box > div:first-of-type {
	flex-basis: 40%;
	text-align: center;
}

.top-area01 div.flex-box > div:first-of-type img {
	position: relative;
	left: -6%;
	top: -15%;
	/* width: 100%; */
	max-width: 100%;
}

.heart-back {
	background-color: #fff;
	text-align: center;
	z-index: 1;
	margin-left: 10%;
}

.heart-back > div {
	background-image: url("../images/top/heart_mark1.svg"),url("../images/top/heart_mark2.svg"),url("../images/top/heart_mark3.svg"),url("../images/top/heart_mark4.svg");
	background-repeat: no-repeat;
	background-size: 42px;
	background-position: left top,right top,left bottom,right bottom;
	padding: clamp(1.8rem,4.2vw,3.3rem);
	margin: -.3rem;
}

.heart-back h3 {
	font-size: clamp(24px,5vw,30px);
}

.heart-back p,.top-area02 p,.pink-bg p,footer p {
    line-height: 1.3rem;
}

.heart-back p.center {text-align: center;}

.link-pink-btn {
	max-width: 200px;
	padding: 1rem;
	background-color: #F77C8B;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	position: relative;
	font-weight: 600;
    font-size: 1.1rem;
}

.link-pink-btn::before,.link-pink-btn::after {
	content: "";
	position: absolute;
	max-width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.link-pink-btn::before {
	width: 20px;
	height: 20px;
	border: #fff solid 1px;
	border-radius: 50%;
	right: 8%;
}

.link-pink-btn::after {
	width: 8px;
	height: 9px;
	background-color: #fff;
	clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
	right: 10.5%;
}

.link-pink-btn:hover {
	color: #fff;
	opacity: 1;
}

.link-pink-btn:hover::before {
	background-color: #fff;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.link-pink-btn:hover::after {
	background-color: #F77C8B;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;

}


 /* お知らせエリア */
.news-area {
	text-align: center;
}



 /* 2つ目エリア */
.top-area02::before {
	content: "";
	background-image: url("../images/top/top_area02_bg_top.png");
	background-repeat: no-repeat;
	background-position: center -1px;
	background-size: 100%;
	display: block;
	width: 100%;
	height: 10vh;
	position: absolute;
}

.top-area02 {
	background-image: url("../images/top/top_area02_bg_re.jpg");
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100%;
	position: relative;
	padding: 0;
}

.top-area02 .box1000 {
	padding: clamp(3rem,6.5vw,5rem) 0;
}

.top-area02 .flex-box,.pink-bg .flex-box:not(.heart-back-area-img) {
	/*flex-wrap: wrap;*/
	padding: clamp(.5rem,4vw,2rem);
	margin-top: clamp(3rem,6.5vw,5rem);
}

/* .top-area02 .flex-box {flex-wrap: wrap;} */

.top-area02 .flex-box > div,.pink-bg .flex-box:not(.heart-back-area-img) > div {
	flex-basis: 38%;
	background-color: #fff;
	border-top: #F77C8B solid 16px;
	border-bottom: #F77C8B solid 16px;
	padding: 2rem clamp(.5rem,4vw,2rem);
	min-height: 280px;
	position: relative;
	margin: 5rem 1rem;
}

.top-area02 .flex-box > div {flex-basis: 37%;}

.top-area02 .flex-box > div img,.pink-bg .flex-box:not(.heart-back-area-img) > div img:not([class]) {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -160px;
}



 /* 3つ目エリア */

.top-area03 {
	overflow-x: clip;
	padding: clamp(3rem,6.5vw,5rem) 1rem;
}

.top-area03 article{
	position: relative;
}

.top-area03 h3{
	margin: 0;
	color: #fff;
	font-size: clamp(32px,4vw,46px);
}

.top-area03-h3{
	padding: 2rem;
	/* width: 80%; */
	position: relative;
	top: -4em;
}

.top-area03 h3 span::before {
	content: '';
	border-left: #fff solid 6px;
	border-radius: 10px;
	margin-right: 3rem;
}

.top-area03 h3 span {
	font-size: clamp(26px,2vw,30px);
    padding: 0 3rem;
	vertical-align: middle;
	letter-spacing: normal;
}

.top-area03 article:nth-of-type(odd) .top-area03-h3{
	margin-left: calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
	margin-right: 10%;
	text-align: right;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.top-area03 article:nth-of-type(even) .top-area03-h3{
	margin-right: calc(50% - 50vw);
	padding-right: calc(50vw - 50%);
	margin-left: 10%;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.kaigo-ttl-back {
	background-color: #E697B9;
}

.jutaku-ttl-back {
	background-color: #F78BA0;
}

.share-ttl-back {
	background-color: #F7637F;
}


/* 

.top-area03 h3 {
	position: absolute;
	color: #fff;
	font-size: clamp(32px,4vw,46px);
    padding: 2rem;
	top: -120px;
	width: 100vw;
	width: 70%;
	letter-spacing: 0.15em;
    z-index: 1;
}

.top-area03 article:nth-of-type(odd) h3 {
	border-radius: 0 20px 20px 0;
	left: -20%;
	left: 0;
	text-align: right;
}

.top-area03 article:nth-of-type(even) h3 {
	border-radius: 20px 0 0 20px;
	right: -25%;
	right: 0;
	padding-left: 4rem;
}

.kaigo-box .ttl-back{
	background-color: #E697B9;
	width: 100%;
}
 */

.top-area03 article {
	position: relative;
	max-width: 1000px;
	border-radius: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10rem;
	padding: 0 clamp(1rem,5vw,4rem) 5rem;
    box-sizing: border-box;
	font-weight: 500;
}

.top-area03 article:last-of-type {
	margin-bottom: clamp(2rem,8vw,7rem);
}

.top-area03 .kaigo-box {
	border: #E697B9 solid 10px;
}

.top-area03 .jutaku-box {
	border: #F78BA0 solid 10px;
}

.top-area03 .share-box {
	border: #F7637F solid 10px;
}

.top-area03 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0 clamp(0rem,5vw,4rem);
}

.top-area03 li {
	margin-right: 3rem;
	margin-bottom: 2rem;
	font-size: clamp(18px,2vw,26px);
	text-indent: -2.8em;
    padding-left: 2.8em;
}

.top-area03 li img {
	width: clamp(40px,7vw,70px);
	max-width: 100%;
	margin-right: 1rem;
	vertical-align: middle;
}

.top-area03 li span {
	vertical-align: middle;
}

.dot-border {
	border-bottom: #333 dotted 6px;
	margin: 1.5rem 0;
}

.top-area03 .kaigo-box .dot-border {
	border-bottom-color: #E697B9;
}

.top-area03 .jutaku-box .dot-border {
	border-bottom-color: #F78BA0;
}

.top-area03 .share-box .dot-border {
	border-bottom-color: #F7637F;
}

.top-area03 .flex-box > div {
	flex-basis: 48%;
	padding: 2rem clamp(0rem,2.5vw,2rem) 0;
}

.top-area03 h4 span {
	display: block;
    font-size: clamp(18px,2vw,22px);
}

.tel-link {
	display: flex;
	justify-content: center;
	align-items: center;
    font-weight: 700;
    font-size: clamp(20px,2vw,24px);
}

.tel-link img {
	max-width: 100%;
	width: 40px;
	margin-right: .5rem;
}


/* 施設紹介 */

.faci-top-area {padding-top: clamp(0rem,3.5vw,3rem);}

h2.faci-ttl,h2.sub-top-ttl {
	position: relative;
	overflow-x: clip;
	font-size: clamp(42px,4vw,56px);
	text-align: center;
}

h2.faci-ttl span,h2.sub-top-ttl span {
	display: block;
    margin-bottom: clamp(0.5rem,2vw,1rem);
	font-size: clamp(22px,2vw,26px);
}

h2.faci-ttl img {
	max-width: clamp(180px,14vw,210px);
	vertical-align: bottom;
}

h2.faci-ttl img.logo-taiyo {
	max-width: clamp(280px,29vw,350px);
}

h2.faci-ttl::before,h2.faci-ttl::after {
	content: "";
	background-repeat: no-repeat;
	width: 100%;
	position: absolute;
	z-index: -1;
}

h2.faci-ttl::before {
	background-image: url("../images/facility/top_ttl_back02.png");
	height: 176px;
	max-width: 208px;
	left: 30%;
	top: -75%;	
}

h2.faci-ttl::after {
	background-image: url("../images/facility/top_ttl_back01.png");
	height: 220px;
	max-width: 215px;
	right: 30%;
	bottom: -75%;	
}

/* 上のスライドここから */
.faci-top-slide-box {
	max-width: 1200px;
	margin: 3rem auto;
}

.faci-slider {
	position: relative;
	margin-bottom: .5rem;
}

.faci-slider::before,.faci-slider::after {
	content: "";
	width: 100%;
	background-color: #F77C8B;
	position: absolute;
	left: 0;
}

.faci-slider::before {
	height: clamp(10px,2vw,18px);
	top: 0;
	z-index: 1;
}

.faci-slider::after {
	height: clamp(30px,4vw,46px);
	bottom: 0;
}

/*.faci-slider p {
	font-size: clamp(22px,2vw,26px);
	font-weight: 500;
	color: #fff;
	position: absolute;
	bottom: 1%;
	left: 50%;
} */

.thumbnail-img {
	transition: all .3s 0s ease;
	position: relative;
}

.thumbnail-img::after {
	content: "";
	background-color: rgba(35,24,21,0.5);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
    left: 0;
    top: 0;
}

.slick-current .thumbnail-img::after {
	opacity: 0;
}

.slick-prev,.slick-next {
	position: absolute;
	z-index: 2;
	cursor: pointer;
	outline: none;
	/*background-color: #fff;*/
	height: clamp(40px,8vw,106px);
	width: clamp(21px,4vw,55px);
	background-repeat: no-repeat;
	top: clamp(36%,18vw,43%);
}

.slick-prev {
	left: 0%;
	/*clip-path: polygon(50% 0, 0 50%, 50% 100%, 57% 100%, 7% 50%, 57% 0);*/
	background-image: url("../images/facility/arrow-pinkL.svg");
}

.slick-next {
	right: 0%;
	/*clip-path: polygon(43% 0, 93% 50%, 43% 100%, 50% 100%, 100% 50%, 50% 0);*/
	background-image: url("../images/facility/arrow-pinkR.svg");
}

.faci-thumbnail .slick-slide {padding: 3px;}

.faci-thumbnail .slick-list{padding: 0!important;}

.slick-slide img {
	margin-left: auto;
	margin-right: auto;
}

/* 上のスライドここまで */

.vacancy-info-box {
	max-width: 750px;
	background-image: url("../images/facility/facility-ttl-bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	margin-left: auto;
	margin-right: auto;
	border-radius: 20px;
}

.vacancy-info-box .flex-box > div:first-of-type {
	flex-basis: 56%;
	padding: 1rem 2rem;
}

.vacancy-info-box .flex-box > div:first-of-type img {
	max-width: 230px;
}

.vacancy-info-box p {
	font-weight: 500;
	font-size: clamp(19px,2vw,26px);
    margin: .5rem;
}

.vacancy-info-box p:not(.va-info-ttl) {
	white-space: nowrap;
}

.va-info-fl {
	align-items: center;
	justify-content: space-between;
}

p.va-info-ttl {
	background-color: #F77C8B;
	border-radius: 20px;
	color: #fff;
	padding: 1rem 1rem;
	font-size: clamp(16px,2vw,18px);
	min-width: 50%;
	text-align: center;
}

.vacancy-info-box .flex-box > div:last-of-type {
	flex-basis: 40%;
	padding: 0rem 1rem;
	display: flex;
    align-items: flex-end;
	justify-content: center;
}

.pink-bg {
	background-image: url(../images/top/top_area02_bg_re.jpg);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100%;
	padding: clamp(3rem,6.5vw,5rem) 0;
	position: relative;
}

.pink-bg .flex-box > div {
	text-align: center;
}

.pink-bg p {text-align: left;}

h2.pink-bg-ttl {
	max-width: 1200px;
	min-height: 120px;
	text-align: center;
	background-image: url("../images/facility/facility-ttl-bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 20px;
	margin-bottom: clamp(4rem,5.5vw,8rem);
	margin-left: auto;
	margin-right: auto;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: clamp(26px,7vw,40px);
    padding: 0.3rem 1rem;
}

.blue-border-ttl {
	display: inline-block;
	border: 2px solid #3E487D;
	border-radius: 100px;
	padding: 1rem clamp(5rem,10.5vw,10rem);
	font-size: clamp(23px,3vw,28px);
	margin-bottom: clamp(2rem,3vw,4rem);
}

.blue-border-ttl span {
	display: block;
	font-size: clamp(16px,2vw,18px);
}

.blue-border-ttl .flex-box > div:first-of-type img {
	width: clamp(36px,5vw,45px);
    max-width: 100%;
    margin-right: 1rem;
    vertical-align: middle;
} 

.blue-border-ttl .flex-box {
	align-items: center;
}


.blue-tbl {
	width: 100%;
	/*max-width: 690px;*/
}

.blue-tbl th,.blue-tbl td {
	padding: 1rem .5rem;
}

.blue-tbl th {
	background-color: #3E487D;
	color: #fff;
	white-space: nowrap;
}

.blue-tbl td {
	background-color: #FFF4E1;
}

.blue-tbl .cell-short {padding: 1rem clamp(2.3rem,4vw,3rem);}

.floor-img {
	max-width: 690px;
	align-items: flex-end;
}

.flex-box.floor-img > div {
	padding: 1rem;
}


.blue-tbl .cell-bg-pink {
	background-color: #F77C8B;
	color: #fff;
}

.blue-tbl.tbl-cell7 th,.blue-tbl.tbl-cell7 td {
	padding: 1rem 2rem;
}

.blue-tbl.tbl1000 {max-width: 1000px;}

/* 間取りスライドの中身ここから */
.floor-slider .flex-box > div {
	padding: 1rem;
}

.floor-slide-box {
	max-width: 1200px;
	margin: 1rem auto clamp(3rem,7.5vw,6rem);	
	position: relative;
}

.floor-slider {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.floor-slider .pink-sub-ttl {border-radius: 100px;}

.floor-slider img.sp-view,.floor-slider .pink-sub-ttl {display: none;}

.floor-slick-prev,.floor-slick-next {
	position: absolute;
	z-index: 2;
	cursor: pointer;
	outline: none;
	height: clamp(61px,8vw,106px);
	width: clamp(32px,4vw,55px);
	top: 41%;
}

.floor-slick-prev {
	left: -7%;
	background-image: url("../images/facility/arrow-blueL.svg");
}

.floor-slick-next {
	right: -7%;
	background-image: url("../images/facility/arrow-blueR.svg");
}
/* 間取りスライドの中身ここまで */


/*アコーディオン全体*/
.blue-accordion-area {
	max-width: 1200px;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}

.blue-accordion-area li {
	margin: 1rem 0;
}

.blue-accordion-area section {
	border: 1px solid #3E487D;
	padding: 0;
}

/*アコーディオンタイトル*/
.acc-title {
	position: relative;
	cursor: pointer;
	background-color: #3E487D;
	padding: 2rem;
	transition: all .5s ease;
	color: #fff;
	margin-top: 0;
	margin-bottom: 0;
	font-size: clamp(20px,2vw,24px);
}

/*アイコンの＋と-*/
.blue-accordion-area .acc-title span {
	position: absolute;
	background-color: #fff;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	right: 2%;
	top: 50%;
	transform: translateY(-50%);
}

.blue-accordion-area .acc-title span::before,.blue-accordion-area .acc-title span::after {
	content: "";
	position: absolute;
	width: 28px;
	height: 5px;
	background-color: #3E487D;
	right: 2%;
}

.blue-accordion-area .acc-title span::before {
	width: 28px;
	height: 5px;
	right: 13%;
	top: 42%;	
}

.blue-accordion-area .acc-title span::after {
	width: 5px;
	height: 28px;
	right: 42%;
	top: 10%;
	transition: all .3s ease;
}

/*　closeというクラスがついたら形状変化　*/
.blue-accordion-area .acc-title.close span::after {
	transform: rotate(90deg);
}

/*アコーディオンで現れるエリア*/
.acc-box {
	display: none;
	padding: 2rem;
	text-align: left;
}

.acc-box h4,.exp-txt-area h4 {
	font-size: clamp(18px,2vw,20px);
}

.map-ttl{font-size: clamp(16px,2vw,20px);}

.acc-box h4::after,.exp-txt-area h4::after,.map-ttl::after {
	content: "";
	display: block;
	border-bottom: 1px solid #333;
	padding-top: .5rem;
}

.pink-font {color: #E61673;}

.black-txt-box {
	background-color: #333;
	color: #fff;
	padding: .5rem 1rem;
}

.health-check {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: clamp(13px,2vw,16px);
}

.health-check li {
	flex-basis: calc(100% / 3.1);
	display: flex;
	padding: clamp(.4rem,2vw,1rem) clamp(.1rem,2vw,1rem);
	justify-content: space-between;
	align-items: center;
	border: 4px solid #F77C8B;
	border-radius: 10px;
	margin: clamp(.1rem,2vw,.3rem);
	box-sizing: border-box;
}

.health-check li > p:last-of-type {
	color: #F77C8B;
	min-width: 4em;
}

.health-check li.check-gray {
	border: none;
	background-color: #DBDCDC;
}

.health-check li.check-gray > p {
	color: #777;
}

.health-check li > p.black-font {
	color: #333;
}

.health-check li > p span {font-size: clamp(8px,2vw,13px);}

.flex-box.map-fl {align-items: center;}

.flex-box.map-fl > div {
	padding: 1rem;
}

.flex-box.map-fl > div:first-of-type {
	flex-basis: 25%;
}

.flex-box.map-fl > div:last-of-type {
	flex-basis: 70%;
	text-align: left;
}

.map-fl table th,.map-fl table td {
	padding: .2rem .5rem;
}

.access-fl > div {
	padding: 1rem;
}

.access-fl > div:first-of-type {
	flex-basis: 40%;
}

.access-fl > div .logo-img {
	max-width: 140px;
	margin-bottom: .5rem;
}

.access-fl > div .logo-img.logo-taiyo {
	max-width: 300px;
}

.access-fl > div h4 span {
	font-size: clamp(20px,2vw,22px);
}

.map-area {
    width: 100%;
    height: 300px;
}

.map-area iframe {
    width: 100%;
    height: 100%;
}

h3.pink-sub-ttl {
	display: inline-block;
	background-color: #F77C8B;
	color: #fff;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem 3rem;
}

.access-fl2 {
	flex-wrap: wrap;
	justify-content: flex-start;
}

.access-fl2 > div {
	flex-basis: 48%;
	align-items: center;
}

.access-fl2 .access-fl > div:last-of-type {
	flex-basis: 48%;
}

.access-fl2 > div p {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.equ-tbl {
	width: 100%;
	max-width: 900px;
	text-align: left;
	border-spacing: 0;
}

.equ-tbl th,.equ-tbl td {
	padding: 1rem;
}

.equ-tbl th {
	background-color: #3E487D;
	color: #fff;
	border-bottom: 1px solid #fff;
}

.equ-tbl tr:last-of-type th {
	border: none;
}

.equ-tbl td {
	border: 1px solid #3E487D;
}

.equ-tbl tr:not(:last-of-type) td {
	border-bottom: none;
}



/* QA */
h2.sub-top-ttl span.sub-big-font {
	display: inline-block;
	font-size: clamp(60px,7vw,90px);
	margin: 0 .5rem;
}

.mov-tel-box {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.mov-tel-box a {
	background-color: #F77C8B;
	border-radius: 120px;
	color: #fff;
	font-weight: 500;
	font-size: clamp(20px,6vw,28px);
	text-align: center;
	padding: 1rem;
}

.mov-tel-box .flex-box {
	align-items: center;
	font-size: clamp(30px,4vw,46px);
	font-weight: 700;
}

.mov-tel-box .flex-box > div img {
	max-width: 100%;
	width: clamp(40px,4vw,52px);
	margin-right: .5rem;
}

.pink-link-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.pink-link-btn li {
	padding: 1rem;
	margin: .5rem;
	background-color: #F77C8B;
	border-radius: 120px;
	color: #fff;
	position: relative;
	font-weight: 500;
	width: 280px;
	box-sizing: border-box;
	flex-basis: calc(100% / 4.5);
}

.pink-link-btn li::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background-color: #fff;
	clip-path: polygon(50% 90%,0 15%,100% 15%);
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.yellow-bg {
	background-color: #FFF4E1;
	padding: clamp(6rem,10.5vw,10rem) 0;
}

/* QAアコーディオン */
.qa-accordion-area {
	max-width: 1000px;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}

.qa-accordion-area li {
	margin: 1rem 0;
}

.qa-accordion-area section {padding: 0;}

.qa-accordion-area .acc-title {
	border-radius: 10px;
	text-align: left;
}

.qa-accordion-area .acc-title div {
	padding-left: 2em;
	padding-right: 2em;
}

.qa-accordion-area .acc-title::before,.qa-accordion-area .acc-box::before {
	position: absolute;
	left: 3%;
	font-size: clamp(36px,4vw,46px);
}

.qa-accordion-area .acc-title::before {
	content: "Q";
	top: 50%;
	transform: translateY(-50%);
}

.qa-accordion-area .acc-box::before {
	content: "A";
	top: 15%;
    font-weight: 600;
}

.qa-accordion-area .acc-title::after {
	content: "";
	position: absolute;
	right: 5%;
    top: 40%;
	width: 25px;
	height: 25px;
	background-color: #fff;
	clip-path: polygon(85% 35%,100% 35%,50% 90%,0 35%,15% 35%,50% 75%);
	transition: all .3s ease;
}

.qa-accordion-area .acc-box {
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	position: relative;
}

.qa-accordion-area .acc-box p {
	padding-left: 2em;
}


.qa-accordion-area .acc-title.close {
	border-radius: 10px 10px 0 0;	
}

.qa-accordion-area .acc-title.close::after {
	transform: rotate(180deg);
}


/* 保険外サービス */
.pink-bg.service-bg {
	content: "";
	background-image: url("../images/service/service-top-img01.png"),url("../images/service/service-top-img02.png"),url("../images/top/top_area02_bg_re.jpg");
	background-repeat: no-repeat,no-repeat,repeat-y;
	background-position: left 2% top 5%,right 2% bottom 5%,center top;
	background-size: 30%,30%,100%;
}

.service-bg .heart-back > div {padding: 2.5rem;}

.service-bg h2.sub-top-ttl {font-size: clamp(32px,4vw,56px);}

.flex-box .con2 {
	padding: 1rem;
}

.flex-box.service-list {
	flex-wrap: wrap;
}

.flex-box.service-list li {
	flex-basis: calc(100% / 3.1);
	padding: 1rem;
	border: 4px solid #F77C8B;
    border-radius: 10px;
    margin: .3rem;
    box-sizing: border-box;
	text-align: left;
	min-height: 280px;
}

.service-list li .flex-box {
	align-items: center;
	text-align: center;
}

.service-list li .flex-box > div {
	padding: .5rem;
}

.service-list li .pink-sub-ttl {
	border-radius: 100px;
	padding: .5rem 3rem;
}

.service-list li .flex-box p {
	font-weight: 500;
	font-size: clamp(16px,2vw,18px);
}

.service-list li .flex-box img {max-width: 70%;}

.service-list .dot-border {border-bottom-color: #F7637F;}

.mov-tel-box2 {
	padding: clamp(.5rem,2vw,1rem) .3rem;
	flex-basis: 48%;
}

.mov-tel-box2 a {
	background-color: #F77C8B;
	border-radius: 120px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	padding: 1rem .3rem;
}

.mov-tel-box2 .flex-box {
	align-items: center;
}

.mov-tel-box2 .flex-box > div img {
	max-width: 100%;
	width: clamp(48px,4vw,64px);
	margin-right: .5rem;
}

.mov-tel-box2 .flex-box > div p {
	font-size: clamp(12px,2vw,14px);
}

.mov-tel-box2 .flex-box > div h3 {
	font-size: clamp(24px,4vw,36px);
    margin: 0;
}

.mov-tel-box2.contact-link-btn .flex-box > div h3 {
	font-size: clamp(18px,4vw,24px);
}

.blue-tbl .cell-bg-salmon-pink {
	background-color: #FBE2E4;
}

@media screen and (max-width:1700px) {
	.top-area01 div.flex-box > div:first-of-type img{
		position: absolute;
		left: -6%;
		top: -30%;
		max-width: 50%;
	}

	.heart-back{
		margin-left: 0;
	}
}


@media screen and (max-width:1400px) {
	/* トップページ */

	 /* メイン画像 */
	.top-main-ttl {flex-direction: column-reverse;}
	
	.top-main-ttl .main-ttl {
		writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		padding-bottom: clamp(1rem,6vw,5rem);
		width: auto;
	}
	
	.top-main-ttl .main-ttl > div {
		padding-right: 0;
		text-align: center;
	}
	
	.top-main-ttl .main-ttl p {
		text-indent: inherit;
		font-size: clamp(22px,6vw,28px);
		line-height: 1.5em;
	}
	
	.top-main-ttl .main-ttl p:nth-of-type(2),.top-main-ttl .main-ttl p:nth-of-type(3) {
		padding: 0;
	}
	
	.top-main-ttl .main-ttl::before {
		top: -25%;
		right: -30%;
	}
	
	.top-main-ttl .main-ttl::after {
		bottom: -5%;
		left: -20%;
	}
	
	.top-main-ttl .main-img{
		width: 100%;
	}
	
	.slider{
		height: 49vw;
	}

	.slider-item{
		height: 49vw;
	}

	
}

@media screen and (max-width:1200px) {
	/* トップページ */
	
	 /* 1つ目エリア */
	.top-area01 div.flex-box {
		flex-direction: column-reverse;
	}
	
	.top-area01 div.flex-box > div:first-of-type {
		margin-top: 5rem;
	}
	
	.top-area01 div.flex-box > div:first-of-type img {
		position: inherit;
		max-width: 60%;
	}
	
	.heart-back {
		margin-left: auto;
		margin-right: auto;
	}
	
	/* 施設紹介 */
	h2.faci-ttl::before {
		left: 25%;
	}
	
	h2.faci-ttl::after {
		right: 23%;
	}
	
	.floor-slick-prev {left: -2%;}
	
	.floor-slick-next {right: -2%;}
	
	table.blue-tbl.tbl-cell7 tr.pc-view {
		display: none;
	}
	table.blue-tbl.tbl-cell7 tr.sp-view {
		display: table-row;
	}
	
	/* QA */
	.pink-link-btn li {
		flex-basis: calc(100% / 3);
	}
	
	/* 保険外サービス */
	.pink-bg.service-bg {
		background-image: url(../images/top/top_area02_bg_re.jpg);
		background-repeat: repeat-y;
		background-position: center top;
		background-size: 100%;
	}
	
	.flex-box.service-list li {flex-basis: 48%;}
	
}


@media screen and (max-width:768px) {
	/* トップページ */
	
	 /* 1つ目エリア */
	.top-area01 div.flex-box > div:first-of-type img {
		max-width: 90%;
	}
	
	 /* 2つ目エリア */
	.top-area02 .flex-box {flex-wrap: wrap;}

	.top-area02 .flex-box,.pink-bg .flex-box {
		padding: 0;
	}
	
	/*.top-area02 .flex-box > div,.pink-bg .flex-box:not(.heart-back-area-img) > div {
		min-height: 360px;
	}*/

	 /* 3つ目エリア */
	.top-area03 article {
		margin-top: clamp(3rem,6.5vw,5rem);
	}


	.top-area03 article .top-area03-h3{
		margin: 0;
		position: absolute;
		width: calc(100% - 13px);
		left: 50%;
		transform: translateX(-50%);
		top: -3px;
	}

	.top-area03 article:nth-of-type(odd) .top-area03-h3{
		margin: 0;
		padding-left: 0;
		border-radius: 20px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.top-area03 article:nth-of-type(even) .top-area03-h3{
		margin: 0;
		padding-right: 0;
		border-radius: 20px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}



	.top-area03 article:nth-of-type(odd) h3,.top-area03 article:nth-of-type(even) h3 {
		top: -38px;
		left: 50%;
		/* transform: translateX(-50%); */
		text-align: center;
		/* border-radius: 5px 5px 0 0; */
		width: 101%;
		box-sizing: border-box;
		padding-left: 2rem;
	}

	.top-area03 article:nth-of-type(even) h3{
		padding-left: 0;
		padding-right: 2rem;
	}
	
	.top-area03 h3 span {
		display: block;
		padding: 1rem 0 0;
	}
	
	.top-area03 h3 span::before {display: none;}
	
	.top-area03 ul {
		/* padding-top: clamp(6rem,17vw,7rem); */
		padding-top: clamp(12rem,17vw,7rem);
		flex-direction: column;
	}
	
	.top-area03 li {
		margin-right: 0;
	}
	
	/* 施設紹介 */
	h2.faci-ttl::before {
		left: 10%;
	}
	
	h2.faci-ttl::after {
		right: 9%;
	}

	.vacancy-info-box>.flex-box{
		flex-direction: column;
	}

	.va-info-fl{
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.vacancy-info-box .flex-box > div:first-of-type {
		text-align: center;
		padding: 1rem;
	}

	.vacancy-info-box .flex-box > div:last-of-type img {
		width: 60%;
		max-width: 250px;
	}
	
	/* スライド */
	.faci-thumbnail {display: none!important;}
	
	.blue-tbl th, .blue-tbl td {
		/*display: block;*/
		text-align: center;
	}
	
	.blue-tbl th {white-space: normal;}
	
	.floor-slider .blue-tbl :is(th,td) {
		padding: .5rem;
	}
	
	.floor-slider img.pc-view {display: none;}
	.floor-slider img.sp-view {
		display: block;
	}
	
	.floor-slider .flex-box {
		flex-direction: column-reverse;
	}
	
	.floor-slider .flex-box p {
		max-width: 690px;
		margin-left: auto;
		margin-right: auto;
		font-size: clamp(12px,2vw,16px);
	}
		
	/*.floor-slick-prev, .floor-slick-next {
		top: auto;
		bottom: -9%;
	}*/
	
	.floor-slick-prev, .floor-slick-next {
		/*bottom: -6%;*/
		top: 3.5%;
	}
	
	.floor-slider .pink-sub-ttl {display: inline-block;}
	
	.floor-small-img {
		max-width: 40%;
		min-width: 220px;
	}
	
	.floor-small-img2 {
		max-width: 60%;
		min-width: 260px;
	}
	
	.acc-title span {right: 5%;}
	
	/*.health-check {
		flex-direction: column;
		max-width: 560px;
	}*/
	
	.health-check li {
		flex-basis: 46%;
	}
	
	.map-fl table th, .map-fl table td {
		/*display: block;*/
		font-size: clamp(12.4px,2vw,16px);
	}
	
	.equ-tbl th,.equ-tbl td {
		display: block;
		border: 1px solid #3E487D;
	}
	
	/* QA */
	.pink-link-btn {flex-direction: column;}
	
	/* 保険外サービス */
	.flex-box.service-list {justify-content: space-between;}
	
	
	.sp-tbl {display: table;}
	
	.sp-tbl :is(th,td) {
		display: table-cell;
	}

	
}

@media screen and (max-width:560px) {
	/* トップページ */
	/* 2つ目エリア */
	.top-area02 .flex-box, .pink-bg .flex-box:not(.heart-back-area-img) {
		padding: 0;
	}
	
	/* 3つ目エリア */
	.top-area03 .flex-box > div:not(:last-of-type) {
		padding-bottom: 3rem;
	}
	
	.top-area03 li {
		margin-right: 0;
	}
	
	
	/* 施設紹介 */
	h2.faci-ttl::before {
		left: -4%;
	}
	
	h2.faci-ttl::after{
		right: 0%;
	}
	
	
	
	
	
	.va-info-fl {flex-direction: row;}
	
	p.va-info-ttl {padding: 1rem;}
	
	.feat-img {
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.blue-border-ttl {padding: 1rem clamp(2rem,16vw,5rem);}
	
	.blue-border-ttl .flex-box > div:first-of-type img {
		margin-right: 0;
		margin-bottom: .4rem;
	}
		
	.flex-box.map-fl > div:last-of-type {
		max-width: 100%;
		width: 480px;
		padding-top: 0;
		padding-bottom: 2rem;
	}
	
	.health-check {font-size: 12.7px;}
	
	.health-check li {
		padding: .4rem .1rem;
		margin: .1rem;
		border-width: 2px;
		text-align: left;
		flex-basis: auto;
		width: 48%;
	}
	
	.access-fl > div {text-align: center;}
	
	.access-fl2 > div {
		flex-direction: row;
    font-size: clamp(14px,2vw,16px);
	}
	
	.access-fl2 .access-fl > div:last-of-type {
		max-width: 560px;
		width: 100%;
		padding: 0 clamp(0rem,2vw,2rem) clamp(0rem,2vw,2rem);
		box-sizing: border-box;
	}
	
	/* QA */
	.mov-tel-box .flex-box {flex-direction: initial;}
	
	.qa-accordion-area .acc-title::before, .qa-accordion-area .acc-box::before {left: 6%;}
	
	/* 保険外サービス */
	.service-list li .flex-box,.mov-tel-box2 .flex-box {flex-direction: row;}
	
	.flex-box.service-list {flex-direction: column;}
	
	.mov-tel-fl {flex-direction: column;}
	
	.blue-tbl.service-tbl :is(th,td) {
    display: block;
}
	
	
}

@media screen and (max-width:480px) {
	/* 保険外サービス */
	.service-list li .flex-box img {max-width: 100%;}
	
	
	
	
}


/*フッター
-------------------------------------*/
footer::before {
	content: "";
	background-image: url("../images/top/top_area02_bg_top.png");
	background-repeat: no-repeat;
	background-position: center -1px;
	background-size: 100%;
	display: block;
	width: 100%;
	height: 10vh;
	position: absolute;
}


footer {
	background-image: url("../images/top/top_area02_bg_re.jpg");
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100%;
	position: relative;
}

footer p {
	margin-top: 1em;
	margin-bottom: 1em;
}

footer .ft-logo {
	max-width: 100%;
	width: 250px;
}

footer ul {
	justify-content: center;
	flex-wrap: wrap;
}

footer ul.pc-view {
	display: flex;
}

footer li {
	flex-basis: calc(100% / 7);
	position: relative;
	padding: 1rem 0;
}

footer li a {display: inline-block;}

/*footer li:not(:first-of-type)::after {
	content: "";
	display: block;
	background-color: #fff;
	width: 2px;
	height: 25px;
	border-radius: 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}*/

.ft-form-btn,.ft-tel-btn {
	flex-basis: 48%;
	padding: 1rem;
}

.ft-form-btn img,.ft-tel-btn img {
	max-width: 100%;
	width: 32px;
	margin-right: 0.5rem;
}

.ft-form-btn a {
	background-color: #F77C8B;
	border-radius: 120px;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	display: flex;
	justify-content: center;
}

.ft-tel-btn a {
	background-color: #fff;
	border-radius: 120px;
	font-weight: 700;
	font-size: 20px;
	display: flex;
	justify-content: center;
}

.copyright {
	font-size: 12px;
	margin-bottom: 0;
}

@media screen and (max-width:768px) {	
	footer .box1000 {
		padding: 0 1rem;
	}
	
	footer ul {justify-content: flex-start;}
	
	footer ul.pc-view {display: none;}
	footer ul.sp-view {display: flex;}
		
	footer li {
		flex-basis: 48%;
	}
	
	footer li:not(:first-of-type)::after {
		display: none;
	}
}


/* ページトップへ戻るボタン */
#page-top {
	position: fixed;
	right: 15px;
	bottom: 20px;
	z-index: 5000;
}

#page-top a {
	display: block;
	width: 50px;
	font-weight: bold;
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 15px 5px;
}

