@charset "utf-8";
/*
///////////////////////////////////////////////////////////////////////////////////
//
//  レイアウトCSS設定
//
///////////////////////////////////////////////////////////////////////////////////
/*
/* [01.KV]
/* [02.CONTENTS]
/*
///////////////////////////////////////////////////////////////////////////////////
/*
/* [01.KV]
--------------------------------------------------------------------------*/
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
#kv-wrap {
	width: 100%;
	height: auto;
	background: url(../images/layouts/main-bg-sp.webp) no-repeat center top;
	background-size: cover;
	overflow: hidden;
	position: relative;
	margin-top: 68px;
}
#kv-wrap:before {
	content: "";
	position: absolute;
	top: 0;
	background-color: rgb(23, 43, 39, 0.2);
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 2;
}
#kv-wrap .inner {
	width: 100%;
	max-width: 1240px;
	padding: 30px 20px 30px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
#kv-wrap .main-txt {
	color: #fff;
	font-weight: 900;
	padding-bottom: 160px;
	opacity: 0;
	animation: fadeUpIn 3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
	animation-delay: 0.2s;
}
@keyframes fadeUpIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
#kv-wrap .main-txt .for-txt {
	font-size: 14px;
	line-height: 160%;
	margin-bottom: 5px;
}
#kv-wrap .main-txt .catch {
	font-size: 32px;
	line-height: 120%;
}
/* [English]----------------------------------*/
#kv-wrap .main-txt.lang-en .for-txt,
#kv-wrap .main-txt.lang-en .catch {
	line-height: 120%;
}
#kv-wrap .main-txt.lang-en .for-txt {
	margin-bottom: 10px;
}
#kv-wrap .main-txt.lang-en .catch {
	font-size: 24px;
}
/* [インドネシア]----------------------------------*/
#kv-wrap .main-txt.lang-id .for-txt,
#kv-wrap .main-txt.lang-id .catch {
	line-height: 130%;
}
#kv-wrap .main-txt.lang-id .for-txt {
	margin-bottom: 10px;
}
#kv-wrap .main-txt.lang-id .catch {
	font-size: 22px;
}
/* [ミャンマー]----------------------------------*/
#kv-wrap .main-txt.lang-my .for-txt,
#kv-wrap .main-txt.lang-my .catch {
	line-height: 1.6;
}
#kv-wrap .main-txt.lang-my .for-txt {
	margin-bottom: 10px;
}
#kv-wrap .main-txt.lang-my .catch {
	font-size: 20px;
}
.main-cv-box {
	text-align: center;
}
.main-cv-box .dps {
	font-size: 13px;
	line-height: 160%;
	font-weight: bold;
	margin-bottom: 10px;
	color: #fff;
}
.main-cv-box.lang-en .dps,
.main-cv-box.lang-id .dps,
.main-cv-box.lang-my .dps {
	font-size: 12px;
}
.all-lang-info {
	position: relative;
	padding: 60px 0 0 0;
}
.btn-comment {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.btn-comment li {
	background: #fff;
	text-align: center;
	font-weight: 800;
	font-size: 16px;
	color: #F27810;
	border: 1px solid #F27810;
	border-radius: 5px;
	padding: 10px 10px;
	line-height: 100%;
	margin-right: 10px;
	position: relative;
}
.btn-comment li:nth-child(3n),
.btn-comment li:last-child {
	margin-right: 0;
}
.btn-comment li:after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 15px solid #F27810;
	border-bottom: 0;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
@media (min-width:580px) {
	#kv-wrap {
		background: url(../images/layouts/main-bg-pc.webp) no-repeat center top;
		background-size: cover;
		margin-top: 68px;
	}
	#kv-wrap .inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		width: 100%;
		height: auto;
		padding: 40px 20px;
	}
	#kv-wrap .inner .conts-wrap {
		width: 50%;
	}
	#kv-wrap .main-txt {
		padding-bottom: 20px;
	}
	#kv-wrap .main-txt .catch {
		font-size: 26px;
	}
	#kv-wrap .cv-btn {
		margin: 0;
	}
	.main-cv-box .dps {
		font-size: 10px;
		text-align: left;
	}
}
@media (min-width:768px) {
	#kv-wrap {
		background: url(../images/layouts/main-bg-pc.webp) no-repeat center top;
		background-size: cover;
		margin-top: 68px;
	}
	#kv-wrap .main-txt .catch {
		font-size: 32px;
	}
	.main-cv-box .all-lang-info {
		max-width: 380px;
	}
}
@media (min-width:1020px) {
	#kv-wrap {
		background: url(../images/layouts/main-bg-pc.png) no-repeat center top;
		background-size: cover;
		margin-top: 76px;
	}
	#kv-wrap .inner {
		padding: 90px 20px 90px;
	}
	#kv-wrap .main-txt .for-txt {
		font-size: 26px;
		margin-bottom: 10px;
	}
	#kv-wrap .main-txt .catch {
		font-size: 48px;
	}
	/* [English]----------------------------------*/
	#kv-wrap .main-txt.lang-en .for-txt {
		font-size: 16px;
	}
	#kv-wrap .main-txt.lang-en .catch {
		font-size: 36px;
	}
	/* [インドネシア]----------------------------------*/
	#kv-wrap .main-txt.lang-id .for-txt {
		font-size: 16px;
	}
	#kv-wrap .main-txt.lang-id .catch {
		font-size: 36px;
	}
	/* [ミャンマー]----------------------------------*/
	#kv-wrap .main-txt.lang-my .for-txt {
		font-size: 16px;
	}
	#kv-wrap .main-txt.lang-my .catch {
		font-size: 26px;
	}
	.main-cv-box .dps {
		font-size: 18px;
	}
}
/* [02.CONTENT]
--------------------------------------------------------------------------*/
#charm {
	width: 100%;
	height: auto;
	background-image: linear-gradient(180deg, rgba(255, 254, 240, 1), rgba(242, 255, 253, 1));
	position: relative;
}
#charm .inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 30px 20px 20px;
}
.brd-ttl {
	font-size: 24px;
	font-weight: 900;
	line-height: 1.6;
	color: #009A7D;
	padding-bottom: 15px;
	margin-bottom: 20px;
	position: relative;
	text-align: center;
}
.brd-ttl:before {
	position: absolute;
	content: "";
	width: 30px;
	height: 2px;
	background-color: #009A7D;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.charm-li {
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}
.charm-li li {
	background: #fff;
	border: 1px solid #009A7D;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 10px;
}
.charm-li li .img-box {
	width: 100%;
	max-width: 120px;
	margin: 0 auto 10px;
}
.charm-li li .img-box img {
	width: 100%;
	height: auto;
}
.charm-li li .sub-ttl {
	font-size: 16px;
	font-weight: 900;
	line-height: 1.6;
	position: relative;
	padding-left: 30px;
	margin-bottom: 8px;
}
.charm-li li .sub-ttl:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images/layouts/check-icon.webp) no-repeat;
	top: 3px;
	left: 0;
}
.charm-li li .txt-box {
	font-size: 15px;
	line-height: 1.6;
}
@media (min-width:768px) {
	.charm-li {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		height: auto;
	}
	.charm-li li {
		width: 32%;
		height: auto;
		margin-right: 2%;
	}
	.charm-li li:last-child,
	.charm-li li:nth-child(3n) {
		margin-right: 0;
	}
}
@media (min-width:1020px) {
	#charm .inner {
		padding: 60px 20px 20px;
	}
	.brd-ttl {
		font-size: 42px;
		margin-bottom: 40px;
	}
	.charm-li li {
		padding: 30px;
	}
	.charm-li li .img-box {
		margin: 0 auto 15px;
	}
	.charm-li li .sub-ttl {
		font-size: 18px;
	}
	.charm-li li .txt-box {
		font-size: 16px;
	}
}
.achievements {
	background: #fff;
	width: 100%;
	max-width: 640px;
	padding: 20px;
	margin: 0 auto;
	border-radius: 10px;
}
.achievements .img-box {
	position: relative;
	width: 150px;
	height: auto;
	margin: 0 auto 10px;
}
.achievements .img-box img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	overflow: hidden;
}
.achievements .img-box .icon {
	position: absolute;
	width: 38px;
	height: auto;
	top: -10px;
	left: -10px;
}
.achievements .txt-box {
	text-align: center;
}
.achievements .ttl {
	font-size: 18px;
	line-height: 1.6;
	font-weight: 900;
	color: #009A7D;
}
.achievements .hosoku {
	font-size: 12px;
	line-height: 1.6;
}
@media (min-width:768px) {
	.achievements {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.achievements .img-box {
		width: 18%;
		margin: 0;
	}
	.achievements .txt-box {
		width: 80%;
		text-align: left;
	}
	.achievements .ttl {
		font-size: 20px;
	}
}
#recruit {
	width: 100%;
	height: auto;
}
#recruit .inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 30px 20px 40px;
}
/* [もっと見る]
--------------------------------------------------------------------------*/
.more-btn-wrap {
	position: relative;
}
.more-wrap-btn {
	z-index: 2;
	position: absolute;
	right: 0;
	bottom: -50px;
	left: 0;
	width: 160px;
	height: 38px;
	margin: auto;
	border-radius: 8px;
	background: #009A7D;
	color: #fff;
	font-size: 12px;
	line-height: 38px;
	text-align: center;
}
.more-wrap-btn::before {
	content: "MORE"
}
.more-list-box {
	position: relative;
	overflow: hidden;
	height: 460px; /*隠した状態の高さ*/
	margin-bottom: 80px;
}
.more-list-box::before {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px; /*グラデーションで隠す高さ*/
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #FFF 100%);
	background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #FFF 100%);
	content: "";
	z-index: 1;
}
.more-trigger {
	display: none; /*チェックボックスは常に非表示*/
}
.more-trigger:checked ~ .more-wrap-btn::before {
	content: "CLOSE" /*チェックされていたら、文言を変更する*/
}
.more-trigger:checked ~ .more-list-box {
	height: auto; /*チェックされていたら、高さを戻す*/
}
.more-trigger:checked ~ .more-list-box::before {
	display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}
/* [もっと見る end]
--------------------------------------------------------------------------*/
.guidelines {
	width: 100%;
	max-width: 940px;
	height: auto;
	border-top: 1px solid #3C3C3C;
	border-left: 1px solid #3C3C3C;
	margin: 0 auto;
	line-height: 1.6;
}
.guidelines dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	height: auto;
}
.guidelines dl dt {
	width: 20%;
	background: #f8f8f8;
	border-right: 1px solid #3C3C3C;
	border-bottom: 1px solid #3C3C3C;
	padding: 5px;
	display: flex;
	align-items: center;
}
.guidelines dl dd {
	width: 80%;
	border-right: 1px solid #3C3C3C;
	border-bottom: 1px solid #3C3C3C;
	padding: 5px;
}
.disc-li {
	padding-left: 20px;
}
.disc-li li {
	list-style: disc;
}
@media (min-width:768px) {
	#recruit .inner {
		padding: 50px 20px 60px;
	}
	.guidelines dl dt {
		width: 25.5%;
		padding: 10px 15px;
	}
	.guidelines dl dd {
		width: 74.5%;
		padding: 10px 15px;
	}
}
@media (min-width:1020px) {
	.more-wrap-btn {
		display: none;
	}
	.more-list-box {
		height: auto;
		margin-bottom: 40px;
	}
	.more-list-box::before {
		content: none;
	}
	.guidelines {
		height: auto;
	}
}
.cv-box {
	text-align: center;
}
.cv-box .dps {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
}
.cv-box.lang-en .dps,
.cv-box.lang-id .dps,
.cv-box.lang-my .dps {
	font-size: 12px;
	line-height: 1.6;
}
@media (min-width:768px) {
	.cv-box .dps {
		font-size: 15px;
	}
}
@media (min-width:1020px) {
	.cv-box .dps {
		font-size: 18px;
	}
}
#whats-rehope {
	width: 100%;
	height: auto;
	background-image: linear-gradient(180deg, rgba(242, 255, 253, 1),rgba(255, 254, 240, 1));
	position: relative;
	padding-bottom: 40px;
}
#whats-rehope .whats-rehope-conts {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 30px 20px 0;
}
.rehope-info-ttl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}
.rehope-info-ttl .img-box {
	width: 23%;
	padding-right: 3%;
}
.rehope-info-ttl .img-box img {
	width: 100%;
	height: auto;
}
.rehope-info-ttl .ttl {
	width: 77%;
	font-size: 22px;
	line-height: 1.6;
	font-weight: 900;
	color: #009A7D;
}
.job-info-main {
	width: 100%;
	margin-bottom: 25px;
	line-height: 1.6;
}
.job-info-main .img-box {
	margin-bottom: 20px;
}
.job-info-main .img-box img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	overflow: hidden;
}
.day-ttl {
	position: relative;
	line-height: 1.6;
	font-size: 20px;
	font-weight: 900;
	color: #009A7D;
	padding-bottom: 10px;
	border-bottom: 1px solid #009A7D;
	padding-left: 30px;
	margin-bottom: 20px;
}
.day-ttl:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images/layouts/time-icon.svg) no-repeat;
	top: 8px;
	left: 0;
}
.schedule-li {
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}
.schedule-li li {
	padding: 20px;
	background: #fff;
	border-radius: 6px;
	border: 1px solid #BAAC9B;
	position: relative;
	margin-bottom: 23px;
	line-height: 1.6;
}
.schedule-li li:last-child:before  {
	content: none;
}
.schedule-li li:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	width: 28px;
	height: 14px;
	background-color: #BAAC9B;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	left: 0;
	right: 0;
	bottom: -14px;
	margin: 0 auto;
}
.schedule-li li .ttl-box {
	padding-bottom: 10px;
	border-bottom: 1px dotted #ccc;
	margin-bottom: 10px;
}
.schedule-li li .ttl-box .time {
	font-size: 16px;
	color: #CA003D;
	font-weight: 900;
	position: relative;
	padding-left: 20px;
}
.schedule-li li .ttl-box .time:before {
	position: absolute;
	content: "";
	width: 10px;
	height: 5px;
	border-left: 3px solid #CA003D;
	border-bottom: 3px solid #CA003D;
	transform: rotate(-45deg);
	left: 0;
	top: 8px;
}
.schedule-li li .ttl-box .ttl {
	font-size: 18px;
	font-weight: 900;
}
.schedule-li li .dsp-box .bttm {
	margin-bottom: 10px;
}
.disc-p p {
	position: relative;
	padding-left: 10px;
	margin-bottom: 5px;
	font-size: 15px;
	line-height: 1.4;
}
.disc-p p:before {
	position: absolute;
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 2px;
	background: #3C3C3C;
	left: 0;
	top: 12px;
}
.disc-p p:last-child {
	margin-bottom: 0;
}
@media (min-width:768px) {
	#whats-rehope {
		padding-bottom: 60px;
	}
	#whats-rehope .whats-rehope-conts {
		padding: 60px 20px 0;
	}
	.rehope-info-ttl .img-box {
		width: 15%;
	}
	.rehope-info-ttl .ttl {
		width: 82%;
		font-size: 36px;
	}
	.job-info-main {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
	}
	.job-info-main .img-box {
		width: 50%;
		margin-bottom: 0;
	}
	.job-info-main .txt-box {
		width: 45%;
	}
}
@media (min-width:1020px) {
	.rehope-info-ttl .ttl {
		font-size: 44px;
	}
	.schedule-li li {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		padding: 20px 30px;
	}
	.schedule-li li .ttl-box {
		width: 35%;
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.schedule-li li .dsp-box {
		width: 60%;
	}
	.schedule-li li .ttl-box .time {
		font-size: 20px;
	}
	.schedule-li li .ttl-box .ttl {
		font-size: 22px;
	}
	.schedule-li li .ttl-box .time:before {
		top: 12px;
	}
}
.working-style {
	margin-bottom: 20px;
}
.working-style .ttl-box {
	width: 100%;
	max-width: 980px;
	padding: 0 20px;
	margin: 0 auto 20px;
	text-align: center;
}
.working-style .ttl-box .ttl {
	font-size: 20px;
	line-height: 1.6;
	font-weight: 900;
	color: #009A7D;
	margin-bottom: 10px;
}
/* Swiper */
.swiper.working-style-slide {
	position: relative;
	padding-bottom: 40px;
}
/* 中央スライドの左右に矢印を置くためのレイアウト設定例 */
.working-style-slide .swiper-button-prev,
.working-style-slide .swiper-button-next {
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
/* 必要に応じて left / right の位置をpxや%で調整してください */
/* 非アクティブスライドを少し薄くする場合 */
.working-style-slide .swiper-slide {
	opacity: 0.4;
	transition: opacity 0.3s;
}
/* アクティブスライドはくっきり表示 */
.working-style-slide .swiper-slide-active {
	opacity: 1;
}
.working-style .swiper-button-prev:after,
.working-style .swiper-rtl .swiper-button-next:after {
	content: none;
}
.working-style .swiper-button-next:after,
.working-style .swiper-rtl .swiper-button-prev:after {
	content: none;
}
.working-style-slide .swiper-button-prev,
.working-style-slide .swiper-button-next {
	width: 40px;
	height: 40px;
}
.working-style-slide .swiper-button-prev img,
.working-style-slide .swiper-button-next img {
	width: 100%;
	height: auto;
} 
.working-style-slide .swiper-button-prev,
.working-style-slide .swiper-rtl .swiper-button-next {
	left: calc(50% - 35% - 20px);
}
.working-style-slide .swiper-button-next,
.working-style-slide .swiper-rtl .swiper-button-prev {
	right: calc(50% - 35% - 20px);
}
.working-style-li li .img-box {
	margin-bottom: 10px;
	height: auto;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
}
.working-style-li li .img-box img {
	width: auto;
	height: auto;
	max-height: 270px;
	vertical-align: middle;
}
.working-style-li li {
	font-size: 14px;
	line-height: 1.6;
	font-weight: 400;
}
.working-style-slide {
	padding-bottom: 40px;
}
.working-style-slide .swiper-pagination-bullet {
	background: #009A7D;
	width: 12px;
	height: 12px;
}
/* Swiper End*/
.cv-inner {
	width: 100%;
	max-width: 980px;
	padding: 0 20px;
	margin: 0 auto;
}
@media (min-width:768px) {
	.working-style .ttl-box .ttl {
		font-size: 24px;
	}
	.working-style-slide .swiper-button-prev,
	.working-style-slide .swiper-rtl .swiper-button-next {
		left: calc(50% - 22% - 20px);
	}
	.working-style-slide .swiper-button-next,
	.working-style-slide .swiper-rtl .swiper-button-prev {
		right: calc(50% - 22% - 20px);
	}
	.working-style-li li .img-box img {
		max-height: 220px;
	}
}
@media (min-width:1020px) {
	.working-style .ttl-box .ttl {
		font-size: 28px;
	}
	.working-style {
		padding: 0 40px;
	}
	.working-style-slide .swiper-button-prev,
	.working-style-slide .swiper-rtl .swiper-button-next {
		left: calc(50% - 16% - 20px);
	}
	.working-style-slide .swiper-button-next,
	.working-style-slide .swiper-rtl .swiper-button-prev {
		right: calc(50% - 16% - 20px);
	}
	.working-style-li li .img-box img {
		max-height: 220px;
	}
}
@media (min-width:1380px) {
	.working-style-li li .img-box img {
		max-height: 272px;
	}
}
@media (min-width:1480px) {
	.working-style-li li .img-box img {
		max-height: 290px;
	}
}
@media (min-width:1580px) {
	.working-style-li li .img-box img {
		max-height: 350px;
	}
}
#staff-interview {
	width: 100%;
	height: auto;
	background-image: linear-gradient(180deg, rgba(255, 254, 240, 1), rgba(242, 255, 253, 1));
	position: relative;
}
#staff-interview .inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}
.staff-voice {
	width: 100%;
	margin-bottom: 40px;
}
.staff-voice li {
	width: 100%;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	line-height: 1.6;
	margin-bottom: 10px;
}
.staff-voice li .ttl-box {
	background: #009A7D;
	color: #fff;
	text-align: center;
	font-size: 18px;
	padding: 10px;
	font-weight: 600;
}
.staff-voice li .wrap {
	padding: 20px;
}
.staff-voice li .img-box {
	width: 40%;
	margin: 0 auto 5px;
}
.staff-voice li img {
	width: 100%;
	height: auto;
}
.staff-voice li .name-box {
	margin-bottom: 10px;
}
.staff-voice li .name {
	font-weight: 600;
	margin-bottom: 3px;
	text-align: center;
}
.staff-voice li .country {
	text-align: center;
	font-size: 12px;
}
.staff-voice li .comment-box .ttl {
	font-size: 18px;
	font-weight: 800;
	color: #009A7D;
	margin-bottom: 6px;
}
@media (min-width:768px) {
	.staff-voice {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.staff-voice li {
		width: 32%;
		margin-right: 2%;
		margin-bottom: 0;
	}
	.staff-voice li:last-child,
	.staff-voice li:nth-child(3n) {
		margin-right: 0;
	}
	.staff-voice li .comment-box .ttl {
		font-size: 16px;
	}
}
@media (min-width:1020px) {
	#staff-interview .inner {
		padding: 60px 20px 60px
	}
	.staff-voice li .wrap {
		padding: 30px;
	}
	.staff-voice li .img-box {
		width: 43%;
	}
}
.manager-comment {
	margin-bottom: 30px;
}
.manager-comment .ttl {
	text-align: center;
	font-size: 20px;
	font-weight: 900;
	color: #009A7D;
	line-height: 1.6;
	margin-bottom: 20px;
}
.manager-box {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	line-height: 1.6;
}
.manager-box .img-box {
	width: 40%;
	margin: 0 auto 10px;
}
.manager-box img {
	width: 100%;
	height: auto;
}
.manager-box .name {
	margin-bottom: 3px;
	text-align: center;
	font-weight: 600;
}
.manager-box .sub-ttl {
	font-size: 18px;
	font-weight: 900;
	margin-bottom: 6px;
	color: #009A7D;
}
@media (min-width:768px) {
	.manager-comment .ttl {
		font-size: 24px;
	}
	.manager-box {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		height: auto;
		padding: 30px;
	}
	.manager-box .img-box {
		width: 15%;
		margin: 0;
	}
	.manager-box .txt-box {
		width: 82%;
	}
	.manager-box .name {
		text-align: left;
	}
	.manager-comment {
		margin-bottom: 40px;
	}
}
@media (min-width:1020px) {
	.manager-comment .ttl {
		font-size: 28px;
	}
	.manager-box {
		padding: 40px;
	}
	.manager-box .img-box {
		width: 12.5%;
	}
	.manager-box .txt-box {
		width: 86%;
	}
	.manager-box .name {
		font-size: 15px;
	}
	.manager-box .sub-ttl {
		font-size: 20px;
	}
}
.contact-ttl-wrap {
	width: 100%;
	max-width: 980px;
	padding: 20px 20px 20px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.6;
}
.contact-ttl-wrap .sub-ttl {
	color: #009A7D;
	font-size: 22px;
	font-weight: 900;
	margin-bottom: 5px;
}
.contact-ttl-wrap .hosoku {
	color: #CA003D;
	font-size: 15px;
}
.contact-inner {
	width: 100%;
	max-width: 980px;
	padding: 0px 20px 60px;
	margin: 0 auto;
	line-height: 1.6;
}
@media (min-width:1020px) {
	.contact-ttl-wrap .sub-ttl {
		font-size: 28px;
	}
}

/* Retina-specific styles. */
@media print,
(-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
}
@media print {
}

/* Edge */
_:host-context(x)::-ms-clear,


/* IE */
_:-ms-lang(x), 
.logo {
	transition:transform 0.8s;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
}
