@charset "UTF-8";
/* title
------------------------------------------------*/
#title {
	display: block;
	position: relative;
	background: none;
	height: calc(100vh - 90px);
	text-align: left;
}
#title .img {
	position: absolute;
	top: 0;
	right: 0;
	background-size: cover;
	width: 75%;
	height: calc(100vh - 90px);
	margin: 0;
}
#title .txt {
	position: absolute;
	bottom: 140px;
	left: 100px;
	margin: 0;
}
#title ul {
	display: flex;
	position: absolute;
	bottom: 150px;
	right: 20px;
}
#title ul li {
	width: calc(100% / 3);
}
#title ul li img {
	max-width: 100%;
	height: auto;
}
.scrolldown {
	position: absolute;
	left: 30px;
	bottom: 100px;
	height: 50px;
}
.scrolldown span {
	position: absolute;
	right: -33px;
  top: -50px;
	transform: rotate(-90deg);
	letter-spacing: 0.18em;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #888;
}
.scrolldown:after {
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background: #888;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}
@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}
	30% {
		height: 30px;
		opacity: 1;
	}
	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}
@media screen and (max-width:767px) {
	#title {
		height: calc(100vh - 170px);
	}
	#title .img {
		width: 100%;
		height: calc(100vh - 350px);
	}
	#title .txt {
		bottom: 65px;
		left: auto;
		right: 20px;
	}
	#title ul {
		width: 100%;
		right: auto;
		bottom: 180px;
	}
	.scrolldown {
		bottom: 30px;
	}
}

/* tickerarea
------------------------------------------------*/
#tickerarea {
	padding: 10px 0;
	background: #F5F5F5;
}
#tickerarea .inner {
	display: flex;
	align-items: center;
}
#tickerarea .headline {
	margin: 0 20px 0 0;
	font-size: 16px;
	font-weight: 500;
	color: #888;
}
#tickerarea .ticker {
	position: relative;
	box-sizing: content-box;
	width: calc(100% - 160px);
	padding: 10px;
	overflow: hidden;
	text-align: left;
}
#tickerarea .ticker ul {
	position: relative;
	width: 100%;
	margin: auto;
}
#tickerarea .ticker ul li {
	display: none;
	width: 100%;
}
#tickerarea .ticker ul a {
	position: relative;
	display: block;
	font-weight: 500;
	color: #09321D;
}
#tickerarea .ticker ul a:before,
#tickerarea .ticker ul a:after {
	content: "";
	position: absolute;
	top: 50%;
}
#tickerarea .ticker ul a:before {
	right: 0;
	width: 24px;
	height: 24px;
	border: 1px solid #09321D;
	border-radius: 50%;
	transform: translate(0, -50%);
}
#tickerarea .ticker ul a:after {
	right: 11px;
	width: 5px;
	height: 5px;
	border-left: solid 1px #09321D;
	border-top: solid 1px #09321D;
	transform: translate(0, -50%) rotate(135deg);
}
#tickerarea .ticker ul a:hover {
	opacity: 0.8;
}
#tickerarea .ticker ul span {
	padding: 0 0 0 10px;
	font-size: 14px;
	font-weight: normal;
	color: #333;
}
@media screen and (max-width:767px) {
	#tickerarea .inner {
		display: block;
	}
	#tickerarea .headline {
		margin: 10px 0 0;
	}
	#tickerarea .ticker {
		width: 100%;
		padding: 10px 0;
	}
	#tickerarea .ticker ul a:before {
		width: 18px;
		height: 18px;
	}
	#tickerarea .ticker ul a:after {
		right: 8px;
	}
	#tickerarea .ticker li {
		min-height: 50px;
	}
}
/* main common
------------------------------------------------*/
#main img {
	max-width: 100%;
	height: auto;
}
#main .nobg {
	margin: 80px auto;
}
#main .bgcolor {
	padding: 80px 0;
}
#main .bgcolor.FFF9F0 {
	background: #FFF9F0;
}
#main .bgcolor.F5F5F5 {
	background: #F5F5F5;
}
#main .morebtn.center a {
	width: 160px;
	margin: 60px auto 0;
	padding: 0 10px 0 0;
}
@media screen and (max-width:767px) {
	#main .morebtn.center a {
		margin: 40px auto 0;
	}
	#main .nobg {
		margin: 60px auto;
	}
	#main .bgcolor {
		padding: 60px 0;
	}
}
@media screen and (max-width:480px) {
	#main .nobg {
		margin: 50px auto;
	}
	#main .bgcolor {
		padding: 50px 0;
	}
}
/* freearea
------------------------------------------------*/
#freearea {}
/* aboutarea
------------------------------------------------*/
#aboutarea h2 {
	position: relative;
	margin: 0 0 1.36em;
	padding-bottom: calc(30px + 0.68em);
	letter-spacing: 0.1em;
	text-align: center;
	font-size: 30px;
	font-weight: 500;
}
#aboutarea h2:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 30px;
	background: #ccc;
	margin: 0 0 0 -1px;
}
#aboutarea .flex.row-reverse {
	flex-direction: row-reverse;
}
#aboutarea .flex + .flex {
	margin: 100px 0 0;
}
#aboutarea .flex .box {
	width: 48%;
}
#aboutarea .flex .box h3 {
	margin: 0 0 1em;
	letter-spacing: 0.03em;
	font-size: 24px;
	font-weight: 500;
}
#aboutarea .flex .box p {
	margin: 0 0 10px;
}
#aboutarea .flex .box .morebtn {
	margin: 40px 0 0;
	text-align: right;
}
#aboutarea .flex .box .morebtn a {
	display: inline-block;
	padding: 0 40px 0 30px;
}
@media screen and (max-width:767px) {
	#aboutarea h2 {
		font-size: 26px;
	}
	#aboutarea .flex.row-reverse {
		flex-direction: reverse;
	}
	#aboutarea .flex + .flex {
		margin: 60px 0 0;
	}
	#aboutarea .flex .box {
		width: 100%;
	}
	#aboutarea .flex .box h3 {
		margin: 1em 0;
		letter-spacing: 0.01em;
		font-size: 20px;
	}
}
@media screen and (max-width:480px) {
	#aboutarea h2 {
		font-size: 24px;
	}
	#aboutarea .flex + .flex {
		margin: 40px 0 0;
	}
	#aboutarea .flex .box h3 {
		font-size: 18px;
	}
	#aboutarea .flex .box .morebtn {
		text-align: center;
	}
}
/* h2
------------------------------------------------*/
#voicearea h2,
#newsarea h2,
#targetarea h2,
#instaarea h2,
#checkarea h2,
#calendararea h2 {
	margin: 0 0 30px;
	letter-spacing: 0.1em;
	text-align: center;
	font-size: 30px;
	font-weight: 500;
}
#targetarea h2 {
	margin: 0;
}
#voicearea h2 + p,
#checkarea h2 +p {
	margin: 0;
	text-align: center;
}
#newsarea .flex .box {
	margin: 0;
}
@media screen and (max-width:767px) {
	#voicearea h2,
	#newsarea h2,
	#targetarea h2,
	#instaarea h2,
	#checkarea h2,
	#calendararea h2 {
		margin: 0 0 20px;
		letter-spacing: 0.06em;
		font-size: 26px;
	}
	#targetarea h2 {
		margin: 0;
	}
	#newsarea .postlist .box {
		width: 100%;
		margin: 20px 0 0;
	}
	#newsarea .flex .box:first-child {
		margin: 0;
	}
	#newsarea .postlist .box a:after {
		content: "";
		display: block;
		clear: both;
	}
	#newsarea .postlist .box img {
		float: left;
		width: 130px;
		margin: 0 20px 0 0;
	}
	#newsarea .postlist .box p {
		margin-top: 0;
	}
}
@media screen and (max-width:480px) {
	#voicearea h2,
	#newsarea h2,
	#targetarea h2,
	#instaarea h2,
	#checkarea h2 {
		letter-spacing: 0.04em;
		font-size: 24px;
	}
	#voicearea h2 + p,
	#checkarea h2 + p {
		text-align: left;
	}
}
/* targetarea
------------------------------------------------*/
#targetarea .flex {
	margin: 0 0 50px;
}
#targetarea .flex .box {
	position: relative;
	width: 49%;
	background: #fff;
	border: 2px solid;
	border-radius: 10px;
	margin: 50px 0 0;
	padding: 50px 30px 20px;
}
#targetarea .flex .box.rehab {
	border-color: #2E6A4B;
}
#targetarea .flex .box.work {
	border-color: #305372;
}
#targetarea .flex .box.family {
	border-color: #843A4E;
}
#targetarea .flex .box.enjoy {
	border-color: #A0793D;
}
#targetarea .flex .box h3 {
	margin: 0 0 10px;
	text-align: center;
	letter-spacing: 0.03em;
	font-size: 20px;
	font-weight: 700;
}
#targetarea .flex .box h3 img {
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translate(-50%, 0);
}
#targetarea .flex .box li {
	position: relative;
	border-bottom: 1px dashed #888;
	padding: 10px 0 10px 25px;
	font-size: 16px;
}
#targetarea .flex .box li:last-child {
	border: 0;
}
#targetarea .flex .box li:before,
#targetarea .flex .box li:after {
  content: '';
  display: block;
  position: absolute;
}
#targetarea .flex .box li:before {
  top: 15px;
  left: 0;
	background: #FFCE80;
	width: 18px;
	height: 18px;
}
#targetarea .flex .box li:after {
  top: 20px;
  left: 5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #936213;
  border-bottom: 2px solid #936213;
  transform: rotate(-45deg);
}
@media screen and (max-width:767px) {
	#targetarea .flex .box {
		width: 100%;
		padding: 40px 20px 10px;
	}
	#targetarea .flex .box h3 {
		letter-spacing: 0.01em;
		font-size: 18px;
	}
	#targetarea .flex .box li {
		font-size: 15px;
	}
}
/* checkarea
------------------------------------------------*/
#checkarea .flex {
	margin: 40px 0 0;
}
#checkarea .flex .box {
	width: 19%;
	background: #fff;
	border: 1px solid #8DA398;
	border-radius: 10px;
	font-size: 14px;
}
#checkarea .flex .box a {
	position: relative;
	display: block;
	height: 100%;
	padding: 20px 10px;
}
#checkarea .flex .box a:before,
#checkarea .flex .box a:after {
	content: "";
	position: absolute;
}
#checkarea .flex .box a:before {
	right: 20px;
	bottom: 20px;
	width: 24px;
	height: 24px;
	background: #09321D;
	border-radius: 50%;
}
#checkarea .flex .box a:after {
	right: 30px;
	bottom: 30px;
	width: 5px;
	height: 5px;
	border-left: solid 1px #fff;
	border-top: solid 1px #fff;
	transform: rotate(135deg);
}
#checkarea .flex .box a:hover {
	background: #FFF9F0;
	border-radius: 10px;
}
#checkarea .flex .box img {
	display: block;
	margin: 0 auto;
}
#checkarea .flex .box h3 {
	margin: 10px 0;
	text-align: center;
	line-height: 1.5;
	font-size: 16px;
	font-weight: 500;
}
#checkarea .flex .box p {
	margin-top: 0;
	text-align: center;
}
@media screen and (max-width:767px) {
	#checkarea .flex {
		margin: 20px 0 0;
	}
	#checkarea .flex .box {
		width: 48%;
		margin: 20px 0 0;
		font-size: 13px;
	}
	#checkarea .flex .box h3 {
		margin: 0;
		font-size: 16px;
	}
	#checkarea .flex .box a:before {
		right: 10px;
		bottom: 10px;
		width: 18px;
		height: 18px;
	}
	#checkarea .flex .box a:after {
		right: 17px;
		bottom: 16px;
	}
}
@media screen and (max-width:480px) {
	#checkarea .flex .box img {
		width: 70%;
	}
}
/* hotpepper-blog
------------------------------------------------*/
.hotpepper-blog {
	margin-top: 60px;
}
.hotpepper-blog a {
	background: #FFF4F8;
	border: solid 1px #9F1547;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hotpepper-blog img,
.hotpepper-blog .text {
	width: 50%;
	height: auto;
}
.hotpepper-blog .text {
	text-align: center;
}
.hotpepper-blog .text p:first-child {
	margin: 0 0 0.5em;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 32px;
}
.hotpepper-blog .text p:first-child span {
	display: block;
	letter-spacing: 0;
	font-size: 1.1em;
	color: #9F1547;
}
.hotpepper-blog .text .morebtn span {
	background: #9F1547;
    width: 170px;
}
@media screen and (max-width:767px) {
	.hotpepper-blog a {
		flex-direction: column;
	}
	.hotpepper-blog img,
	.hotpepper-blog .text {
		width: 100%;
	}
	.hotpepper-blog .text {
		padding: 30px 10px;
	}
	.hotpepper-blog .text p:first-child {
		font-size: 23px;
	}
}
/* topbnrarea
------------------------------------------------*/
#topbnrarea {
	padding: 20px 0;
}
#topbnrarea a:hover {
	opacity: 0.8;
}
@media screen and (max-width:767px) {
	#topbnrarea {
		padding: 20px;
	}
}