@charset "utf-8";

/* **************************************************
	base
************************************************** */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}
body {
    width: 100%;
    height: 100%;
    color: #4d4d4d;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", serif;
    word-break: break-all;
    -webkit-text-size-adjust: 100%;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
table {
	width: 100%;
}
input,
button,
select,
textarea {
    border: none;
    cursor: pointer;
    appearance: none !important;
    -webkit-appearance: none !important;
    border-radius: 0; /* macOS/iOSのSafariで角丸になるのを修正 */
    line-height: normal; /* macOS/iOSのSafariでplaceholderが上にずれるのを修正 */
}
a {
	color: #4d4d4d;
}
a:hover,
a img:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
button:hover,
.hover_effect:hover {
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;
	opacity: 0.9;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
    text-decoration: none
}
strong {
	font-weight: bold;	
}
em {
	font-style: italic;
}
hr {
	border-top: 1px solid #aaa;
}

@media screen and (min-width: 768px) {

	body {
		font-size: 1.6rem;
	}

}

/* 特定画面幅（タブレット想定）のときは画面幅1240pxとして出力 */
@media (min-width: 768px) and (max-width: 999.9px) {
	body {
		min-width: 1240px;
	}
}

/* **************************************************
	common
************************************************** */

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.clearfix {
    min-height: 1px;
}
* html .clearfix {
    height: 1px;/*\*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}

@media screen and (min-width: 768px) {

	.tate {
		writing-mode: vertical-rl;
		-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		text-orientation: upright;
	}

}

/* **************************************************
	メインページ
************************************************** */

/* ----------------------------------------
	ヘッダー
---------------------------------------- */
.header {
	display: flex;
	justify-content: center;
	align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: #fff;
    z-index: 999;
}
.header .nz_logo {
	position: absolute;
	top: 0;
	left: 0;
	height: 45px;
	line-height: 45px;
	padding-left: 15px;
	font-size: 0.65rem;
	font-weight: bold;
}
.header .nz_logo a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #4d4d4d;
}
.header .nz_logo img {
	width: 45px;
	vertical-align: middle;
	padding-right: 5px;
}
.header .header_logo img {
    width: 115px;
}
.privacy_policy_link {
	display: none;
}

@media screen and (min-width: 768px) {

	.header {
		display: block;
		position: relative;
		/* position: fixed;
		top: 0;
		left: 0; */
		height: 170px;
		padding-top: 45px;
		background-color: #fff;
	}
	.header .nz_logo {
		top: 28px;
		left: calc(50% - 580px);
		height: auto;
		line-height: normal;
		padding-left: 0;
		font-size: 1.8rem;
	}
	.header .nz_logo img {
		width: 138px;
		padding-right: 18px;
	}
	.header .header_logo {
		text-align: center;
	}
	.header .header_logo img {
		width: 230px;
	}
	.privacy_policy_link {
		display: block;
		position: relative;
		top: -100px;
		width: 960px;
		margin: 0 auto;
		text-align: right;
	}

}

/* ----------------------------------------
	SPメニュー開閉ボタン
---------------------------------------- */

.toggle {
    position: fixed;
    top: 0;
    right: 0;
    width: 70px;
    height: 45px;
}
.menu_trigger, .menu_trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    vertical-align: bottom;
}
.menu_trigger {
    position: relative;
    width: 70px;
    height: 45px;
	background-color: #fff;
    cursor: pointer;
}
.menu_trigger span {
    position: absolute;
}
.menu_trigger span:nth-of-type(1),
.menu_trigger span:nth-of-type(2),
.menu_trigger span:nth-of-type(3) {
	left: 20px;
	width: 30px;
	height: 3px;
	background-color: #4D4D4D;
	border-radius: 1px;
}
.menu_trigger span:nth-of-type(1) {
    top: 15px;
}
.menu_trigger span:nth-of-type(2) {
    top: 22px;
}
.menu_trigger span:nth-of-type(3) {
    top: 29px;
}

/* メニュークリック時のエフェクト */
.menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}
.menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}

@media screen and (min-width: 768px) {

	.toggle {
		display: none;
	}

}

/* ----------------------------------------
	メインメニュー
---------------------------------------- */

.menu_pc {
	display: none;
}

/* グロナビを開いている間背景を固定するクラス */
.bg_fixed {
	overflow: hidden;
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
}

/* グロナビ全体 */
.g_nav {
	display: none;
	position: fixed;
	top: 45px;
	bottom: 0;
	width: 100%;
    padding-bottom: 30px;
	overflow-y: auto;
	z-index: 100;
    background-color: #fff;
}

/* メニューリスト */
.g_nav > ul {
	padding: 0 15px;
	border-top: solid 1px #ffc6b4;
}
.g_nav > ul > li {
	position: relative;
	border-bottom: solid 1px #ffc6b4;
}
.g_nav > ul > li > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 16px 0;
    color: #F15A24;
    font-size: 1.4rem;
    text-decoration: none;
}
.g_nav > ul > li a::before {
	position: absolute;
	right: 0;
	top: 18px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 1.2rem;
	content: "\f054";
	color: #ffc6b4;
}

@media screen and (min-width: 768px) {

	.g_nav {
		display: none;
	}
	.menu_pc {
		display: block;
		text-align: center;
	}
	.menu_pc ul {
		padding-top: 40px;
	}
	.menu_pc ul li {
		display: inline-block;
		border-right: solid 2px #F15A24;
		font-size: 1.8rem;
	}
	.menu_pc ul li a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 10px 28px;
	}
	.menu_pc ul li.menu_pc_inquiry {
		width: 200px;
		height: 48px;
		margin-left: 10px;
		background-color: #F15A24;
		border-right: none;
		border-radius: 24px;
		font-size: 1.5rem;
	}
	.menu_pc ul li.menu_pc_inquiry a {
		padding: 0;
		color: #fff;
		line-height: 48px;
	}

}

/* ----------------------------------------
	コンテンツ共通
---------------------------------------- */
.contents {
	margin-top: 45px;
	/* background: url(img/bg_bridge.png) no-repeat top 290px center / contain fixed;
	background: url(img/bg_gradation_.png) repeat-x top center / auto fixed; */
	background-image: url(img/bg_bridge.png), url(img/bg_gradation.png);
	background-repeat: no-repeat, repeat-x;
	background-position: top 290px center, top center;
	background-size: contain, auto;
	background-attachment: fixed, fixed;
}
.overlap_bg {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px 12px;
}
.hl_center,
.hl_left {
	width: 80%;
	margin: 0 auto 10px;
	padding-bottom: 8px;
	border-bottom: solid 2px #F15A24;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
}
.main_txt {
	font-size: 1.5rem;
	line-height: 1.6;
}
.main_txt + .main_txt {
	margin-top: 18px;
}
.btn_contact {
	width: 127px;
	height: 30px;
	border-radius: 15px;
	background-color: #F15A24;
	text-align: center;
}
.btn_contact a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 1.0rem;
	line-height: 30px;
}

@media screen and (min-width: 768px) {

	.contents {
		margin-top: 0;
		background-image: url(img/bg_bridge_pc.png), url(img/contents_bg_pc.png);
		background-repeat: no-repeat, no-repeat;
		background-position: top 495px center, top center;
		background-size: contain, auto;
		background-attachment: fixed, fixed;
	}
	.overlap_bg {
		padding: 50px 52px 40px;
	}

	.hl_center {
		width: 100%;
		margin: 0 auto 20px;
		padding-bottom: 28px;
		border-bottom: solid 4px #F15A24;
		text-align: center;
		font-size: 3.0rem;
	}

	.hl_left {
		width: 100%;
		margin: 0 auto 20px;
		padding-bottom: 28px;
		border-bottom: solid 4px #F15A24;
		text-align: left;
		font-size: 3.0rem;
	}
	.main_txt {
		font-size: 1.7rem;
		line-height: 2.0;
	}
	.main_txt + .main_txt {
		margin-top: 30px;
	}
	
}

/* ----------------------------------------
	理念
---------------------------------------- */
.top_inquiry {
	padding: 15px 0 45px;
}
.top_inquiry > .btn_contact {
	margin-left: auto;
	margin-right: 20px;
}
.company_name_jp {
	display: block;
	width: 72px;
	margin: 0 auto 10px;
}
.company_name_en {
	display: block;
	width: 204px;
	margin: 0 auto;
}
.philosophy {
	padding: 50px 0 110px;
	text-align: center;
	color: #F15A24;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.7;
}

@media screen and (min-width: 768px) {

	.top_inquiry {
		display: none;
	}
	.philosophy_section {
		padding-top: 70px;
	}
	.company_name_jp {
		width: 228px;
		margin: 0 auto 32px;
	}
	.company_name_en {
		width: 642px;
	}
	.philosophy {
		padding: 45px 0 250px;
		font-size: 3.8rem;
	}

}

/* ----------------------------------------
	介護の明日へ
---------------------------------------- */
.sec01 {
	position: relative;
}
.sec01_bg_img {
	width: 71%;
	margin: 0 0 0 auto;
}
.sec01_txt {
	position: absolute;
	top: 25px;
	left: 5%;
	width: 90%;
}

@media screen and (min-width: 768px) {

	.sec01_bg_img {
		width: 100%;
		margin: 0;
		text-align: center;
	}
	.sec01_txt {
		position: absolute;
		top: 40px;
		left: 50%;
		transform: translate(-20%, 0);
		width: 565px;
	}
	
}

/* ----------------------------------------
	ニュース・お知らせ
---------------------------------------- */
.sec02 {
	padding: 30px 20px;
}
.news_list {
	width: 90%;
	margin: 0 auto;
}
.news_list li {
	padding-top: 10px;
	font-size: 1.5rem;
	line-height: 1.6;
}
.news_list li + li {
	padding-top: 20px;
}
.news_date {
	font-weight: bold;
}
.news_txt a {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {

	.sec02 {
		width: 924px;
		margin: 0 auto;
		padding: 100px 0;
	}
	.sec02_txt {
		padding-bottom: 50px;
	}
	.news_list {
		width: 100%;
	}
	.news_list li {
		padding-top: 20px;
		font-size: 1.7rem;
		line-height: 1.8;
	}
	.news_list li + li {
		padding-top: 30px;
	}
	.news_date {
		padding-bottom: 3px;
	}
}

/* ----------------------------------------
	代表者挨拶
---------------------------------------- */
.sec03 {
	position: relative;
	padding-bottom: 280px;
	z-index: 1;
}
.sec03_bg_img {
	width: 62%;
	margin: 0 auto 0 0;
}
.sec03_txt {
	position: absolute;
	top: 150px;
	left: 5%;
	width: 90%;
}

@media screen and (min-width: 768px) {

	.sec03 {
		width: 960px;
		margin: 0 auto;
		position: relative;
		padding-bottom: 205px;
		z-index: 1;
	}
	.sec03_bg_img {
		width: 401px;
		margin: 0 auto 0 0;
	}
	.sec03_txt {
		position: absolute;
		top: 48px;
		left: 305px;
		width: 608px;
	}

}

/* ----------------------------------------
	事業紹介
---------------------------------------- */
.sec04 {
	position: relative;
}
.sec04_txt {
	position: absolute;
	bottom: -110px;
	left: 5%;
	width: 90%;
}

@media screen and (min-width: 768px) {

	.sec04 {
		width: 960px;
		margin: 0 auto;
		position: relative;
	}
	.sec04_bg_img {
		width: 540px;
		margin: 0 0 0 auto;
	}
	.sec04_txt {
		position: absolute;
		bottom: 15px;
		left: 0;
		width: 563px;
	}

}

/* ----------------------------------------
	施設一覧
---------------------------------------- */
.sec05 {
	padding: 130px 30px 20px;
}
.facility_list {
}
.facility_list li {
	background-color: #FFF6E6;
	margin-bottom: 15px;
	padding: 15px;
}
.facility_list li.ex {
	background-color: transparent;
	margin-bottom: 0px;
	padding: 15px;
}
.facility_name {
	padding-bottom: 10px;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}
.facility_img {
	width: 78%;
	margin: 0 auto 5px;
}
.facility_txt {
	font-size: 1.4rem;
	line-height: 1.5;
}
.facility_more {
	position: relative;
	text-align: right;
	padding-right: 10px;
}
.facility_more > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 5px 10px 0 0;
    color: #F15A24;
    font-size: 1.3rem;
    text-decoration: underline;
}
.facility_more a::after {
	position: absolute;
	right: 8px;
	top: 6px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 1.4rem;
	content: "\f103";
	color: #F15A24;
}
.facility_list li.ex > .btn_contact {
	margin: 25px auto 0;
}

@media screen and (min-width: 768px) {

	.sec05 {
		width: 960px;
		margin: 0 auto;
		padding: 65px 0 75px;
	}
	.facility_list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.facility_list li {
		width: 49.3%;
		background-color: #FFF6E6;
		margin-bottom: 35px;
		padding: 30px 25px;
	}
	.facility_list li.ex {
		background-color: transparent;
		margin-bottom: 35px;
		padding: 30px 25px;
	}
	.facility_name {
		padding-bottom: 15px;
		font-size: 2.0rem;
		text-align: center;
	}
	.facility_img {
		width: 100%;
		margin: 0 auto 15px;
		text-align: center;
	}
	.facility_txt {
		padding: 0 15px;
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.facility_more {
		position: relative;
		text-align: right;
		padding-right: 10px;
	}
	.facility_more > a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 25px 20px 0 0;
		color: #F15A24;
		font-size: 1.6rem;
		text-decoration: underline;
	}
	.facility_more a::after {
		position: absolute;
		right: 15px;
		top: 26px;
		font-family: "Font Awesome 5 Free";
		font-weight: 700;
		font-size: 1.7rem;
		content: "\f103";
		color: #F15A24;
	}
	.facility_list li.ex > .facility_txt {
		padding-top: 80px;
		line-height: 2.0;
	}
	.facility_list li.ex > .btn_contact {
		width: 340px;
		height: 78px;
		border-radius: 39px;
	}
	.facility_list li.ex > .btn_contact a {
		line-height: 78px;
		font-size: 2.6rem;
	}

}

/* ----------------------------------------
	採用情報＆お問い合わせ（PC）
---------------------------------------- */

.rec_bg_img {
	display: none;
}

@media screen and (min-width: 768px) {

	.rec {
		width: 960px;
		margin: 0 auto;
		position: relative;
		/* background: url(img/sec06_bg_pc.png) no-repeat top right; */
	}
	.rec_bg_img {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
	}

}

/* ----------------------------------------
	採用情報
---------------------------------------- */
.sec06 {
	margin-bottom: -125px;
}
.sec06_bg_img {
	width: 67%;
	margin: 0 auto 0 0;
}
.sec06_txt {
	position: relative;
	top: -125px;
	left: 5%;
	width: 90%;
}

@media screen and (min-width: 768px) {

	.sec06 {
		position: relative;
		width: 615px;
		/* background: url(img/sec06_bg_pc.png) no-repeat top left; */
		margin-bottom: 0;
		padding-top: 65px;
	}
	.sec06_bg_img {
		display: none;
	}
	.sec06_txt {
		position: relative;
		top: 0;
		left: 10px;
		width: 92%;
	}

}

/* ----------------------------------------
	お問い合わせ
---------------------------------------- */
.sec_inquiry {
	padding-bottom: 10px;
	text-align: center;
	color: #F15A24;;
}
.sec_inquiry .tel {
	padding: 25px 0 10px;
	font-size: 1.5rem;
}
.btn_tel {
	width: 190px;
	height: 44px;
	margin: 0 auto;
	padding-left: 20px;
	background-color: #fff;
	border: solid 2px #F15A24;
	border-radius: 22px;
	text-align: center;
}
.btn_tel a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #F15A24;
	font-size: 1.8rem;
	line-height: 40px;
}
.btn_tel a::before {
	position: absolute;
	left: 0px;
	top: calc(50% - 5px);
	content: "";
	display: block;
	width: 17px;
	height: 13px;
	background: url(img/icon_phone.png) no-repeat center center / 17px;
}
.sec_inquiry .time {
	padding: 5px 0 23px;
	font-size: 1.1rem;
}
.btn_form {
	width: 190px;
	height: 44px;
	margin: 0 auto;
	background-color: #F15A24;
	border-radius: 22px;
	text-align: center;
}
.btn_form a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 1.5rem;
	line-height: 44px;
}

@media screen and (min-width: 768px) {

	.sec_inquiry {
		position: absolute;
		bottom: 0;
		right: 0;
		padding-bottom: 50px;
	}
	.sec_inquiry .tel {
		padding: 0 0 20px 0;
		font-size: 2.7rem;
	}
	.btn_tel {
		width: 340px;
		height: 70px;
		margin: 0 auto;
		padding-left: 20px;
		background-color: #fff;
		border: solid 4px #F15A24;
		border-radius: 39px;
		text-align: center;
	}
	.btn_tel a {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		color: #F15A24;
		font-size: 2.7rem;
		line-height: 60px;
	}
	.btn_tel a::before {
		position: absolute;
		left: 25px;
		top: calc(50% - 12px);
		content: "";
		display: block;
		width: 34px;
		height: 26px;
		background: url(img/icon_phone.png) no-repeat center center / 34px;
	}
	.sec_inquiry .time {
		padding: 10px 0 50px;
		font-size: 1.6rem;
	}
	.btn_form {
		width: 340px;
		height: 78px;
		margin: 0 auto;
		background-color: #F15A24;
		border-radius: 39px;
		text-align: center;
	}
	.btn_form a {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		color: #fff;
		font-size: 2.4rem;
		line-height: 78px;
	}

}

/* ----------------------------------------
	会社概要
---------------------------------------- */
.sec_company_info {
	padding: 30px;
}
.company_info {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
}
.company_info dt {
	width: 25%;
	font-size: 1.5rem;
	line-height: 1.6;
}
.company_info dd {
	width: 75%;
	font-size: 1.5rem;
	line-height: 1.6;
	display: inline-block;
}

@media screen and (min-width: 768px) {

	.sec_company_info {
		width: 392px;
		margin: 0 auto;
		padding: 125px 0 170px;
	}
	.company_info {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		margin: 0 auto;
	}
	.company_info dt {
		width: 20%;
		font-size: 1.7rem;
		line-height: 1.8;
	}
	.company_info dd {
		width: 80%;
		font-size: 1.7rem;
		line-height: 1.8;
		display: inline-block;
	}

}

/* ----------------------------------------
	フッター
---------------------------------------- */
.f_content {
	position: relative;
	padding-bottom: 15px;
	text-align: center;
}
.f_logo {
	width: 115px;
	margin: 0 auto;
}
.f_privacy {
	position: absolute;
	right: 15px;
	bottom: 17px;
	font-size: 1.0rem;
}

@media screen and (min-width: 768px) {

	.f_content {
		width: 960px;
		margin: 0 auto;
		position: relative;
		padding-bottom: 15px;
		text-align: center;
	}
	.f_logo {
		width: 230px;
		margin: 0 auto;
	}
	.f_privacy {
		position: absolute;
		right: 120px;
		bottom: 20px;
		font-size: 1.6rem;
	}

	footer .menu_pc ul {
		padding-top: 30px;
		padding-bottom: 40px;
	}


}


/* **************************************************
	プライバシーポリシー
************************************************** */
.privacy_contents {
	margin-top: 45px;
	padding: 30px 20px 50px 20px;
}
.privacy_contents h1 {
	font-size: 2.2rem;
	padding-bottom: 10px;
	font-weight: bold;
}
.privacy_contents h2 {
	font-size: 1.6rem;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
}
.privacy_contents p {
	font-size: 1.2rem;
	line-height: 1.6;
	padding-bottom: 10px;
}
.privacy_contents ul {
	padding-bottom: 10px;
}
.privacy_contents ul li {
	font-size: 1.2rem;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {

	.privacy_contents {
		width: 960px;
		margin: 0 auto;
		padding: 50px 0 100px;
	}
	.privacy_contents h1 {
		font-size: 3.4rem;
		padding-bottom: 15px;
		font-weight: bold;
	}
	.privacy_contents h2 {
		font-size: 2.4rem;
		padding-top: 20px;
		padding-bottom: 15px;
		font-weight: bold;
	}

	.privacy_contents p {
		font-size: 1.7rem;
		line-height: 2.0;
		padding-bottom: 15px;
	}
	.privacy_contents ul {
		padding-bottom: 15px;
	}
	.privacy_contents ul li {
		font-size: 1.7rem;
		line-height: 2.0;
	}

}







