@charset "utf-8";

/* 基本 */

:root {
	--v-space: clamp(90px, 9vw, 120px);
}


body {
    margin: 0;
    background-color: #ffffff;/* （ページの背景色をグレー→白） */
	color: #222222;
	font-family: sans-serif;
}


img {
	display: block;
	max-width: 100%;
	height: auto;
}


h1, h2, h3, h4, h5, h6, p, ul, figure {
	margin: 0;
	padding: 0;
	list-style: none;
}


p{
	line-height: 1.8;
}


a {
	color: inherit;
	text-decoration: none;
}


a:hover {
	filter: brightness(90%) contrast(120%);
}


li a:hover {
	color: #e8b368;
}






/* 横幅と左右の余白 */
.w-container {
	width: min(92%, 1166px);
	margin: auto;
	position: relative;
}


.w2-container {
	width: min(92%, 720px);
	margin: auto;
	position: relative;
}






/* 　文字装飾　 */



.akamoji {
	color: #b72661;
}

.futomoji {
	font-weight: bold;
}

.news {
	text-decoration: none;
	list-style-image: url(src/listmark.png);
	padding-left: 15px;
}


.news li {
	margin-bottom: 10px;
}

.short-katudo li {
	list-style: none;
}

.ryouikudayori li {
	list-style: none;
}


.hojin-enkaku {
	padding-bottom: 30px;
}


.hojin-enkaku ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
}

.hojin-enkaku li {
	text-align: left;
}

.hojin-enkaku th {
	font-weight: normal;
	width: 150px;
	vertical-align: top;
}

.hojin-enkaku td {
	width: auto;
	vertical-align: top;
	padding-left: 10px;
}






.hojin-jigyou {
	padding: 0;
	margin: 0;
}

.hojin-jigyou ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
}

.hojin-jigyou  li {
	text-align: left;
}
.hojin-jigyou th {
	font-weight: normal;
	width: 100px;
	vertical-align: top;
	text-align: left;
	padding-bottom: 20px;
	padding-left: 10px;
}

.hojin-jigyou td {
	width: auto;
	vertical-align: top;
	padding-left: 10px;
	text-align: left;
	padding-bottom: 20px;
}


.hojin-jiyou {
	padding-bottom: 30px;
}



.hojin-jyouhou ul {
	list-style: none;
	list-style-image: url(src/b77.gif);
	padding: 0 0 0 10px;

}

.hojin-jyouhou li {
	padding-bottom: 10px;
	padding-left: 10px;

}


.hojin-enkaku, .hojin-jigyou, .hojin-rinen {
	font-size: clamp(10px, 4vw, 17px);
}








.contact {
	margin-top: 30px;
	margin-bottom: 20px;
}

.q-l {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	gap: 20px;
	margin-top: 20px;
}

@media (min-width:768px)  {
	.q-gairai {
		grid-template-columns: auto auto;
		grid-auto-rows: auto auto;
		gap: 20px;
	}
}





.youkou {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 10px;
	font-size: clamp(10px, 4vw, 15px);
	min-height: 0vw;
}


.box-indent-1 {
	padding-left: 15px;
	word-wrap: break-all;
} 




.access li {
	list-style: none;
	list-style-image: url(src/b77.gif);
	padding: 0 0 15px 10px;
}

.ib {
	display: inline-block;
}


.ac-aida {
	padding-top: 20px;
}


.service-yohaku {
	margin-top: 60px;
	background-color: #ffffff;
}




.short-riyou th {
	font-weight: normal;
	width: 70px;
	vertical-align: top;
	text-align: left;
	padding-bottom: 20px;
	padding-left: 5px;
}

.short-riyou td {
	width: auto;
	vertical-align: top;
	padding-left: 5px;
	text-align: left;
	padding-bottom: 20px;
}











/* ヘッダー */
.header {
	height: 112px;
    background-color: #ffffff;
	position: sticky;
	top: 0;
	z-index: 10;
}


.header-container {
	display:flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}







/* ナビゲーションボタン */

.navbtn {
	padding: 0%;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #aaaaaa;
	font-size :30px; 
}

.open .navbtn {
	z-index: 110;
	color: #FFFFFF;
}

.navbtn .fa-bars {
	display: revert;
}

.open .navbtn .fa-bars {
	display: none;
}

.navbtn .fa-times {
	display: none;
}

.open .navbtn .fa-times {
	display: revert;
}

@media (min-width: 768px) {
	.navbtn {
		display: none;
	}
}










/* 　ナビゲーションメニュー（モバイル） */

@media (max-width: 768px) {
	.nav {
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
		background-color: #4e483ae6;
		transition: transform 0.3s;
	}
	
	.open .nav {
		transform: translate(-100%,0);
	} 
	
	.open body {
		position: fixed; /* 不要なスクロールの発生を防ぐ */
		overflow: hidden;
	}                 
	

	.nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		gap: 40px;
		color: #FFFFFF;
	}
}


/* 　ナビゲーションメニュー（ＰＣ） */

@media (min-width: 768px) {
	.nav ul {
		display: flex;
		gap: 40px;
		color: #707070;
	}
}









/* ヒーロー */

.hero {
	height: 650px;
	background-image: url(src/index_top.jpg);
	background-position: center;
	background-size: cover;
}


.hero-container {
	display: grid;
	justify-items: center;
	align-content: flex-start;
	height: 100%;
}


.hero h1 {
	margin-top: 150px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color: #eeeeee;
    font-size: clamp(50px, 10vw, 70px);
	min-height: 0vw;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}










/* 　ボタン　 */

.btn {
	display: block;
	width: 260px;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 4px;
	background-color: #e8b368;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	text-shadow: 0 0 6px #00000052;
	margin-bottom: 30px;
}







/* 　画像とテキスト　 */

.imgtext {
	padding: var(--v-space) 0;
	background-color: #ffffff;
}


.imgtext + .imgtext {
	padding-top: 0;
}


.imgtext-container {
	display: flex;
	flex-direction: column;
	gap: clamp(45px, 6vw, 80px);
}


/* .imgtext-container.reverse {
    flex-direction: column-reverse;
} 　　　縦並びを逆にする場合　*/



@media (min-width: 768px) {
	.imgtext-container {
		flex-direction: row;
		align-items: center;
	}

    .imgtext-container.reverse {
        flex-direction: row-reverse;  /* 横並びを逆にする場合 */
    }

    .imgtext-container > .text {
	    flex: 1;
	    min-width: 17em;
    }

    .imgtext-container > .img {
	    flex: 2;
    }
}








/* 　タイトルとサブタイトル（赤色の短い線で装飾） */

.heading-decoration {
	font-size: clamp(30px, 3vw, 40px);
	min-height: 0vw;
	font-weight: 400;
}


.heading-decoration::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 1px #b72661;
	margin-top: 0.6em;
}


.heading-decoration + p {
	margin-top: 1em;
	margin-bottom: 2em;
	color: #707070;
	font-size: 18px;
}







/* 　記事一覧　 */

.posts {
	padding: var(--v-space) 0;
	background-color: #f3f1ed;
}


.posts-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 25px;
}


@media (min-width: 768px) {
	.posts-container {
		grid-template-columns: repeat(4, 1fr);
	}
}


.posts-container-2 {/* リハビリ説明用 */
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 32px 25px;
}


@media (min-width: 768px) {/* リハビリ説明用 */
	.posts-container-2 {
		grid-template-columns: repeat(3, 1fr);
	}
}
















/* 　記事一覧の記事　 */

.post a {
	display: block;
}


.post h3 {
	margin: 1em 0 0.5em;
	font-size: clamp(20px, 3vw, 22px);
	min-height: 0vw;
}


.post p {
	max-width: 20em;
	/* font-size: clamp(10px, 1.6vw, 14px); */
	min-height: 0vw;
}


.post img {
	 aspect-ratio: 3 / 2;
	 object-fit: cover;
	 width: 100%;
}

@supports not (aspect-ratio: 3 / 2) {
	.post img {
		height: 180px;		
	}
}
















/* 　パーツの見出し　 */

.heading {
	position: absolute;
	top: calc((var(--v-space) + 0.6em)*-1);
	font-family: "Open Sans",sans-serif;
	font-size: clamp(30px, 3vw, 40px);
	min-height: 0vw;
	font-weight: 300;
}


.heading span {
	display: block;
	color: #666666;
	font-size: 18px;
}



.heading-reha {/* リハビリ用 */
	position: absolute;
	top: calc((var(--v-space) + 0.6em)*-1);
	font-family: "Open Sans",sans-serif;
	font-size: clamp(30px, 5.2vw, 40px);
	min-height: 0vw;
	font-weight: 300;
}


.heading-reha span {/* リハビリ用 */
	display: block;
	color: #666666;
	font-size: 18px;
}





















/* 　求人　 */

.recruitment {
	padding: var(--v-space) 0;
	/* background-color: #edb8ed;
	background-color: #b72661; */
	background-color: #f5adbe;
} 

.recruitment-container {
	display: grid;
	gap: 27px;
}

@media (min-width : 768px) {
	.recruitment-container {
		grid-template-columns: repeat(4, 1fr);
	}
}




/* 　求人　＜カード＞　 */

.recruit {
	display:flex;
	flex-direction: column; 
	padding: 60px 27px;
	border-radius: 20px;
	background-color: #FFFFFF;
}

.recruit h3 {
	margin-bottom: 38px;
	font-family: "Open Sans",sans-serif;
	font-size: 30px;
	font-weight: 400;
	text-align: center;
}

.recruit .desc {
	margin-bottom: 38px;
}

.recruit .price {
	margin-top: auto;
	margin-bottom: 22px;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}

.recruit .btn {
	width: auto;
}











/* 　フッター　 */

.footer {
	padding: 70px 0;
	background-color: #FFFFFF;
	color: #707070;
	font-size: 13px;
}


.footer-container {
	display: grid;
	gap: 50px;
	justify-items: center;
}


@media (min-width: 768px) {
	.footer-container {
		grid-template-columns: auto auto;
		grid-template-rows: auto auto auto;
		gap: 20px;
	}


    .footer-container > .footer-site {
	    margin-bottom: 20px;
    } 


    .footer-container > *:not(.footer-sns) {
	    justify-self: start;
    }


    .footer-container > .footer-sns {
    	grid-column: 2;
	    grid-row: 1 / 4;
	    justify-self: end;
	    align-self: center;
	}
}







/* 　フッター　：ＳＮＳメニュー　使用しないが後の為、残しておく */

/* .footer-sns {
	display: flex;
	gap: 24px;
    font-size: 24px;
}


.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	background-color: #cccccc;
	color: #ffffff;
	clip-path: circle(50%);
}


@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
} */





/* 　フッター　：テキストメニュー　 */

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}





/* 　記事　 */

.entry {
	padding-bottom: var(--v-space);
	background-color: #ffffff;
}


.entry-img img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	margin-bottom: calc(var(--v-space) * 2 / 3);
}




.entry .w-container {
	max-width: 720px;
}


.entry .heading-decoration {
	font-size: clamp(30px, 6.25vw, 48px);
}


.entry-container {
	font-size: clamp(16px 2.4vw,18px);
}


.entry-container :where(h1, h2, h3, h4, h5, h6, p, figure, ul) {
	margin-top: revert;
	margin-bottom: revert;
	padding: revert;
	list-style: revert;
}


.entry-container p {
	margin: 1.8em 0;
}


.entry-container > :first-child {
	margin-top: 0;
}


.entry-container > :last-child {
	margin-bottom: 0;
}

/* .entry-container h2 {
    margin-top: 80px;
} */





/* 　グーグルマップ　レスポンシブ　 */

.google_map {
	position:relative;
	width:100%;
	height:0;
	padding-top:75%;
}

.google_map iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}



/* 　表示・非表示　jquery　 */


.b-1,.b-2,.b-3,.b-4,.b-5,.b-6,.b-7,.b-8,.b-9,.b-10,.b-12,.b-13 {
    display: inline-block;
    background: #b6beff;
    padding: 5px 10px;
    cursor: pointer;
}
.a-1,.a-2,.a-3,.a-4,.a-5,.a-6,.a-7,.a-8,.a-9,.a-10,.a-11,.a-12,.a-13 {
	display:none;
    background: #e6e6e6;
    height: 100%;
}
.n-1,.n-2,.n-3,.n-4,.n-5,.n-6,.n-7,.n-8,.n-9,.n-10,.n-11,.n-12,.n-13 {
    display: block;
}






