/*================================================================
Chrome/Firefox/Edge/Safariなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/

/* アウトラインチェッカー */

/*
* {
  outline: 2px solid blue;
}
*/

*,
::before,
::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

ol,
ul {
	list-style: none;
	list-style-type: none;
}

img {
	height: auto;
	vertical-align: middle;
}

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

button {
	background-color: transparent;
	border: none;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.visually-hidden { /* 要素サイズを変更しうるプロパティのリセット */
	border: 0;
	height: 1px; /* オーバーフローしているコンテンツを隠す */
	overflow: hidden;
	padding: 0; /* コンテンツの流れから切り離す */
	position: absolute; /* 誤ったコードに対処するための回避策 */
	white-space: nowrap; /* 可能な限り文字サイズを小さくするための処理
   * (スクリーンリーダー中には height と width が 0 のものを無視するため)
   */
	width: 1px; /* 要素のどの部分が表示されるかを定義するもの */ /* 古いブラウザでは使用できない */
	clip: rect(0 0 0 0); /* 最近のブラウザ用
   * コンテンツを非表示にする設定  */
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%); /* 今現在なぜ-1pxがここで設定されるかは分かっていないそうです。
   * それに加えていくつか問題もあるそうです 
   * (参考: https://github.com/h5bp/html5-boilerplate/issues/1985)
   */
	margin: -1px;
}

html {
	font-size: 18px;
	scroll-behavior: smooth; /* フォントサイズ16px指定のものを11pxより小さくしない */
}

.spbr {
	display: none;
}

body {
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-weight: 500;
}

.spbr {
	display: none;
}

.tabbr {
	display: none;
}

.pcbr {
	display: block;
}

.l-header {
	height: 196px;
	position: fixed;
	width: 100%;
	z-index: 20;
}

.l-inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 60px;
}

.l-header__inner {
	max-width: 100%;
	padding: 0;
}

.l-footer {
	background: #d6deea;
	display: block;
}

.l-footer__inner {
	max-width: 100%;
}

.l-ph {
	padding-top: 190px;
}

.l-top__ph-inner {
	padding: 0 10px;
	width: 100%;
}

.l-top__map-inner {
	background: linear-gradient(180deg, #D6DEEA 0%, #FFF 100%);
	max-width: 100%;
	padding-top: 28px;
	width: 100%;
}

.l-support {
	padding-top: 190px;
}

.l-recruit {
	padding-top: 190px;
}

.c-title__text {
	align-items: center;
	background: linear-gradient(90deg, #86bc36 0%, #d6deea 45.5%);
	border: 1px solid #d6deea;
	color: #333;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	justify-content: center; /* 51px */
	letter-spacing: 2.72px;
	line-height: 150%;
	padding: 12px 47px;
	width: -moz-fit-content;
	width: fit-content;
}

.c-title__text.-chou {
	background: linear-gradient(90deg, rgba(143, 8, 15, 0.5) 0%, #D6DEEA 45.5%);
	border: 1px solid #D6DEEA;
}

.c-title__text.-zai {
	background: linear-gradient(90deg, rgba(40, 49, 131, 0.53) 0%, #D6DEEA 45.5%);
	border: 1px solid #D6DEEA;
}

.c-title__text.-sup {
	background: rgba(214, 222, 234, 0.6);
}

.c-page__title {
	display: none;
}

.c-button__pdf {
	align-items: center;
	background: #94B36B;
	border-radius: 15px;
	box-shadow: 4px 4px 4px 0 #333;
	color: #fff;
	display: flex;
	flex-shrink: 0;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 700;
	gap: 10px;
	height: 100px;
	justify-content: center;
	letter-spacing: 3.5px;
	line-height: 1.5;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	transition: all 0.5s ease;
	width: 220px;
}

.c-button__pdf:hover {
	box-shadow: none;
	box-shadow: 0 0 0 0 transparent;
	transform: translate(4px, 4px);
}

.c-button__pdf.-sup {
	background: #AF4D56;
}

.c-button__wrap {
	display: flex;
	margin-bottom: 50px;
	margin-top: 115px;
	-moz-column-gap: 172px;
	column-gap: 172px;
	justify-content: center;
}

.p-header__logo {
	height: 69px;
	width: 403px;
}

.p-header__logo img {
	display: block;
	height: auto;
	width: 100%;
}

.p-header__logo.-sp {
	display: none;
	height: 35px;
	width: 200px;
}

.p-header__logo-top {
	color: #283183;
	font-family: "Noto Sans JP", serif;
	font-size: 24px;
	font-weight: 700;
}

.p-header__logo-wrap {
	display: flex;
	flex-direction: column;
}

.p-header__tel-article {
	align-items: flex-start;
	color: #333;
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	justify-content: center;
}

.p-header__tel-wrap {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	-moz-column-gap: 17px;
	column-gap: 17px;
}

.p-header__tel-name {
	color: #86bc36;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 28px;
	font-weight: 700;
	justify-content: flex-start;
}

.p-header__tel-num {
	color: #86bc36;
	display: flex;
	flex-direction: column;
	font-family: "Roboto", serif;
	font-size: 30px;
	font-weight: 600;
	height: 40px;
	justify-content: center;
	letter-spacing: 0.1px;
	padding-left: 50px;
	position: relative;
}

.p-header__tel-num::before {
	background-image: url("../img/tel.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 32px;
	left: 6px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
}

.p-header__tel {
	align-items: flex-start;
	display: flex;
	-moz-column-gap: 23px;
	column-gap: 23px;
	margin-top: 0;
}

.p-header__tels {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	margin-top: 0;
	row-gap: 0;
}

.p-header__wrap {
	align-items: center;
	background-color: #fff;
	display: flex;
	flex-direction: row;
	height: 140px;
	justify-content: space-between;
	padding: 15px 60px;
	width: 100%;
}

.p-header__nav {
	align-items: center;
	display: flex;
	height: 46px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1440px;
	width: 100%;
}

.p-header__nav-item {
	align-items: center;
	color: #333;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	gap: 10px;
	height: 46px;
	justify-content: center;
	line-height: normal;
}

.p-header__nav-item:hover .p-header__nav-link {
	background-color: #86bc36;
	color: #fff;
}

.p-header__nav-item.current a {
	background-color: #86bc36;
	color: #fff;
}

.p-header__nav-link {
	background-color: #d6deea;
	color: #333;
	padding: 0 10px;
	transition: background-color 1s, color 0.3s;
}

.p-header__nav-wrap {
	align-items: center;
	background: #d6deea;
	border: 1px solid #d6deea;
	display: flex;
	height: 50px;
	padding: 2px 121px;
}

.p-top__comment-text {
	color: #283183;
	font-family: "Noto Sans JP", serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 3.6px;
	line-height: 150%;
}

.p-top__comment-wrap {
	align-items: center;
	background: #fff;
	background: #fff;
	border-radius: 20px;
	bottom: 7%;
	display: flex;
	justify-content: center;
	left: 110px;
	padding: 12px 16px;
	position: absolute;
	z-index: 2;
}

.p-top__ph-concept-text {
	align-items: center;
	background: #fff;
	border: 1px solid #d6deea;
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
	padding: 20px;
}

.p-top__ph-concept-text.-l {
	background: transparent;
	border: none;
}

.p-top__ph-concept-wrap {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 60px 152px 50px;
}

.p-top__ph-wrap {
	align-items: center;
	background: linear-gradient(180deg, #d6deea 0%, #fff 100%);
	display: flex;
	flex-direction: column;
	height: auto;
}

.p-top__ph-cal-img {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 20px 0px;
}

.p-top__ph-cal-img.-sp {
	display: none;
}

.p-top__ph-cal-wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5px 10px;
}

.p-top__ph-cal-wrap.-l {
	width: 720px;
	align-items: flex-start;
}

.p-top__ph-shop-title-text {
	align-items: center;
	background: linear-gradient(90deg, #86bc36 0%, #d6deea 45.5%);
	border: 1px solid #d6deea;
	color: #333;
	display: flex;
	font-family: "Noto Sans JP";
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 2.72px;
	line-height: 150%; /* 51px */
	padding: 12px 47px;
	width: -moz-fit-content;
	width: fit-content;
}

.p-top__ph-shop-title-wrap {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 150px 50px;
	width: 100%;
}

.p-top__ph-shop-wrap.-n2 {
	margin-top: 78px;
}

.p-top__ph-shop-tel {
	color: #333;
	font-family: "Roboto", serif;
	font-size: 26px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1.4px;
	line-height: normal;
	width: -moz-fit-content;
	width: fit-content;
}

.p-top__ph-shop-telfax-wrap {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 11px;
	justify-content: center;
	padding: 30px 340px 74px;
	width: 100%;
}

.p-top__ph-shop-telfax-wrap.-chou {
	padding-bottom: 62px;
}

.p-top__ph-news {
	background: linear-gradient(180deg, #d6deea 0%, #fff 100%);
}

.p-top__ph-news-item {
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
}

.p-top__ph-news-items {
	display: flex;
	flex-direction: column;
	row-gap: 39px;
}

.p-top__ph-news-title {
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}

.p-top__ph-news-wrap {
	padding: 30px 160px 20px;
	width: 100%;
}

.p-top__ph-map-wrap {
	display: flex;
	justify-content: center;
	padding: 32px 100px 50px;
}

.p-footer__info-address {
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.p-footer__info-telfax {
	color: #333;
	font-family: "Roboto", serif;
	font-size: 26px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.p-footer__info-wrap {
	display: flex;
	flex-direction: column;
	row-gap: 11px;
}

.p-footer__left-wrap {
	display: flex;
	flex-direction: column;
	row-gap: 23px;
}

.p-footer__logo-img {
	width: 365px;
}

.p-footer__title {
	color: #283183;
	font-family: "Noto Sans JP", serif;
	font-size: 35px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

.p-footer__wrap {
	display: flex;
	height: auto;
	justify-content: space-between;
	padding: 35px 0;
}

.p-ph__card {
	background: linear-gradient(180deg, #d6deea 0%, #fff 78.5%);
	border: 1px solid rgba(214, 222, 234, 0.2);
	display: flex;
	flex-direction: column;
	height: auto;
	padding: 16px 18px;
	row-gap: 17px;
	width: calc((100% - 140px) / 3);
}

.p-ph__card-number {
	color: #333;
	font-family: Roboto;
	font-size: 62px;
	font-weight: 400;
	text-align: center;
}

.p-ph__card-text {
	color: #333;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	height: auto;
	line-height: 200%;
}

.p-ph__cards {
	display: flex;
	padding: 0;
	-moz-column-gap: 70px;
	column-gap: 70px;
	justify-content: center;
}

.p-ph__img-wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 10px;
}

.p-ph__shop-img {
	width: 100%;
}

.p-ph__shop-img.-sp {
	display: none;
}

.p-ph__wrap {
	display: flex;
	flex-direction: column;
	padding: 70px 100px 0 100px;
	row-gap: 66px;
}

.p-menu__close-btn {
	align-items: center;
	background: #86bc36;
	border-radius: 15px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 500;
	justify-content: center;
	letter-spacing: 5.06px;
	line-height: 1.5;
	padding: 10px 30px;
	transition: background-color 0.1s;
}

.p-menu__close-btn:hover {
	background: #fff;
	color: #86bc36;
}

.p-menu__close-icon {
	background: transparent url("../img/close.svg") no-repeat center center/40px 40px;
	border-radius: 50%;
	cursor: pointer;
	height: 52px;
	margin-left: auto;
	margin-right: 0;
	transition: background-color 0.3s;
	width: 52px;
}

.p-menu__close-icon:hover {
	background-color: #fff;
}

.p-menu__nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: auto;
	justify-content: space-between;
	row-gap: 6px;
	width: 100%;
}

.p-menu__nav-wrap {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 8px 0px 12px 0px;
	width: 100%;
}

.p-menu__nav-item {
	align-items: center;
	background: #f5f5f5;
	border-radius: 5px;
	color: #86bc36;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	height: 60px;
	justify-content: center;
	margin: 6px 10px;
	padding: 10px;
	transition: background-color 0.3s;
	width: 100%;
}

.p-menu__nav-item:hover .p-menu__nav-link {
	background-color: #86bc36;
	color: #fff;
}

.p-menu__nav-item.current a {
	background-color: #86bc36;
	color: #fff;
}

.p-menu__overlay {
	background-color: rgba(0, 0, 0, 0.4);
	height: 100vh;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	width: 100%;
	z-index: 30;
}

.menu-bg.is-active {
	display: block;
	transform: translateX(0);
	transition: transform 0.3s ease-in;
}

.p-menu__wrap {
	align-items: center;
	background: #d6deea;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	height: 100vh;
	margin-left: auto;
	margin-right: 0;
	max-width: 375px;
	padding: 0px 10px 40px 10px;
	row-gap: 4px;
	width: 100%;
}

.p-burger__btn {
	background-image: url(../img/burger.svg);
	cursor: pointer;
	height: 40px;
	width: 40px;
}

.p-menu__line {
	background: #86bc36;
	border-radius: 5px;
	height: 5px;
	width: 310px;
}

.p-menu__nav-link {
	padding: 0 10px;
}

.p-top__fv {
	padding-top: 190px;
	position: relative;
	z-index: 1;
}

.p-top__fv-img {
	display: block;
	height: auto;
	width: 100%;
	-o-object-fit: cover;
	background-color: #d6deea;
	object-fit: cover;
}

.p-top__fv-img.-sp {
	display: none;
}

.p-menu__logo-wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
	row-gap: 6px;
}

.p-menu__header {
	display: none;
}

.p-menu__logo-icon {
	background: #000 url("../img/ph.svg") no-repeat center center/40px 40px;
	border-radius: 50%;
	height: 40px;
	width: 40px;
}

.p-menu__tel-article {
	display: none;
}

.p-menu__header-wrap {
	display: none;
}

.c-page__title {
	display: none;
}

.p-menu__header-container {
	background: #d6deea;
}

.p-top__fv-wave-img {
	display: none;
}

.p-top__fv-wave-wrap {
	display: none;
}

.p-cal__container {
	display: grid;
	gap: 8px;
	grid-template-columns: 246px repeat(6, 71px);
	grid-template-rows: repeat(4, 71px);
	margin: 20px 0;
}

.p-cal__container.-zaitaku {
	grid-template-rows: repeat(2, 71px);
	margin-top: 62px;
}

.p-cal__container.-zaitaku .p-cal__item.-title,
.p-cal__container.-zaitaku .p-cal__item.-wk {
	background: rgba(40, 49, 131, 0.4);
	border: 1px solid rgba(40, 49, 131, 0.4);
	color: #fff;
}

.p-cal__container.-zaitaku .p-cal__item.-time,
.p-cal__container.-zaitaku .p-cal__item.-work,
.p-cal__container.-zaitaku .p-cal__item.-off {
	background: #fff;
	border: 1px solid rgba(40, 49, 131, 0.4);
	color: rgba(40, 49, 131, 0.4);
}

.p-cal__container.-zaitaku .p-cal__item.-work::before {
	background-color: rgba(40, 49, 131, 0.4);
}

.p-cal__container.-zaitaku .p-cal__item.-off::before {
	background-color: rgba(40, 49, 131, 0.4);
}

.p-cal__container.-kaigo {
	grid-template-rows: repeat(2, 71px);
	margin-top: 0;
}

.p-cal__container.-kaigo .p-cal__item.-title,
.p-cal__container.-kaigo .p-cal__item.-wk {
	background: rgba(143, 1, 15, 0.7);
	border: 1px solid rgba(143, 1, 15, 0.7);
	color: #fff;
}

.p-cal__container.-kaigo .p-cal__item.-time,
.p-cal__container.-kaigo .p-cal__item.-work,
.p-cal__container.-kaigo .p-cal__item.-off {
	background: #fff;
	border: 1px solid rgba(143, 1, 15, 0.7);
	color: rgba(143, 1, 15, 0.7);
}

.p-cal__container.-kaigo .p-cal__item.-work::before {
	background-color: rgba(143, 1, 15, 0.7);
}

.p-cal__container.-kaigo .p-cal__item.-off::before {
	background-color: rgba(143, 1, 15, 0.7);
}

.p-cal__item {
	align-items: center;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 34px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 2.72px;
	line-height: 1.5;
}

.p-cal__item.-title,
.p-cal__item.-wk {
	background: #568f01;
	border: 1px solid #568f01;
	color: #fff;
}

.p-cal__item.-time,
.p-cal__item.-work,
.p-cal__item.-off {
	background: #fff;
	border: 1px solid #568f01;
	color: #568f01;
	font-family: "Roboto", serif;
}

.p-cal__item.-work {
	position: relative;
}

.p-cal__item.-work::before {
	background-color: #568f01;
	border-radius: 50%;
	content: "";
	height: 39px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 39px;
}

.p-cal__item.-off {
	position: relative;
}

.p-cal__item.-off::before {
	background-color: #568f01;
	border-radius: 2px;
	content: "";
	height: 5px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-47deg);
	width: 68px;
}

.p-header__addrr {
	color: #283183;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1.76px;
	margin-top: -6px;
}

.p-header__frame-right {
	display: flex;
	flex-direction: column;
	row-gap: 6px;
}

.p-zai__content-text {
	color: #333;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1.76px;
	line-height: 1.5;
	margin-top: 30px;
}

.p-zai__wrap {
	display: flex;
	margin-top: 123px;
	padding-right: 100px;
	-moz-column-gap: 48px;
	column-gap: 48px;
}

.p-support__content-text {
	color: #333;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1.76px;
	line-height: 1.5;
}

.p-support__content-wrap {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 0;
	row-gap: 30px;
}

.p-support__wrap {
	display: flex;
	-moz-column-gap: 48px;
	align-items: flex-start;
	column-gap: 48px;
	justify-content: flex-end;
	margin-top: 120px;
	padding-bottom: 20px;
	padding-left: 100px;
	padding-right: 0;
}

.p-support__wrap.-n2 {
	padding-left: 0;
	padding-right: 100px;
}

.p-support__wrap.-n3 {
	padding-left: 100px;
	padding-right: 100px;
}

.p-support__title-top {
	margin-top: 60px;
}

.p-recruit__content-text {
	color: #333;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 2.24px;
	line-height: 1.5;
}

.p-recruit__content-wrap {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-bottom: 60px;
	padding-top: 0;
	row-gap: 30px;
}

.p-recruit__img {
	display: block;
}

.p-recruit__img-wrap {
	display: flex;
	justify-content: flex-end;
	padding-bottom: 30px;
}

.p-recruit__wrap {
	padding: 80px 100px 50px;
}

@media (max-width: 1250px) {

.p-header__tel-wrap {
	flex-direction: column;
	row-gap: 0;
}

}

@media (max-width: 1149px) {
.p-top__ph-cal-wrap.-l {
	width: fit-content;
}

.spbr {
	display: block;
}

.spbr {
	display: block;
}

.tabbr {
	display: none;
}

.l-header {
	height: auto;
	position: relative;
}

.l-inner {
	padding: 0 10px;
}

.l-footer__inner {
	padding: 0 10px;
}

.l-ph {
	padding-top: 20px;
}

.l-support {
	padding-top: 20px;
}

.l-recruit {
	padding-top: 20px;
}

.c-title__text {
	flex-direction: column;
	font-size: 28px;
	letter-spacing: 1.4px;
	margin-top: 8px;
	padding: 10px 10px;
	text-align: center;
	width: 100%;
}

.c-title__text.-chou {
	margin-top: 8px;
	padding: 10px 10px;
}

.c-title__text.-zai {
	margin-top: 8px;
	padding: 10px 10px;
}

.c-title__text.-sup {
	padding: 10px 10px;
	width: 100%;
}

.c-page__title {
	align-items: center;
	background: #f5f5f5;
	color: #86bc36;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	height: 60px;
	justify-content: center;
}

.c-button__wrap {
	align-items: center;
	flex-direction: column;
	margin-top: 60px;
	row-gap: 20px;
}

.p-header__logo {
	display: none;
}

.p-header__logo.-sp {
	display: block;
}

.p-header__logo-top {
	font-size: 19px;
}

.p-header__logo-wrap {
	align-items: center;
	width: 100%;
}

.p-header__tel-article {
	font-size: 22px;
	justify-content: center;
	margin-top: 6px;
	text-align: center;
}

.p-header__tel-name {
	font-size: 18px;
}

.p-header__tel-num::before {
	height: 25px;
	left: 0;
	width: 25px;
}

.p-header__tel-num {
	font-size: 24px;
	font-weight: 600;
	padding-left: 30px;
}

.p-header__wrap {
	flex-direction: column;
	height: auto;
	padding-bottom: 10px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 72px;
}

.p-header__nav-wrap {
	display: none;
}

.p-top__comment-text {
	font-size: 28px;
}

.p-top__comment-wrap {
	background: rgba(255, 255, 255, 0.65);
	bottom: 98px;
	left: 50%;
	max-width: 535px;
	padding: 5px 12px;
	transform: translateX(-50%);
	width: calc(100% - 20px);
}

.p-top__ph-concept-text {
	background-color: transparent;
	border: none;
	padding: 0;
}

.p-top__ph-concept-wrap {
	background: linear-gradient(180deg, #d6deea 0%, #fff 100%);
	padding: 20px 6px 60px;
}

.p-top__ph-cal-img.-pc {
	display: none;
}

.p-top__ph-cal-img.-sp {
	display: flex;
	max-width: 500px;
	width: 100%;
}

.p-top__ph-cal-wrap {
	padding: 20px 10px;
}

.p-top__ph-shop-title-wrap {
	align-items: center;
	padding: 60px 0 40px;
}

.p-top__ph-shop-wrap.-n2 {
	margin-top: 0;
}

.p-top__ph-shop-telfax-wrap {
	padding: 20px 10px;
}

.p-top__ph-news {
	background: #fff;
}

.p-top__ph-news-wrap {
	padding: 30px 0 20px;
}

.p-top__ph-map-wrap {
	padding: 50px 30px;
}

.p-top__ph-map-wrap iframe {
	height: 240px;
	width: 100%;
}

.p-footer__title {
	text-align: left;
	width: 100%;
}

.p-footer__wrap {
	align-items: center;
	flex-direction: column;
	height: auto;
	padding: 30px 0;
	row-gap: 15px;
}

.p-ph__card {
	width: 100%;
}

.p-ph__card-number {
	font-size: 48px;
	padding-left: 20px;
	text-align: left;
}

.p-ph__cards {
	flex-direction: column;
	row-gap: 8px;
}

.p-ph__shop-img {
	display: none;
}

.p-ph__shop-img.-sp {
	display: block;
	height: 572px;
	width: 375px;
}

.p-ph__wrap {
	padding: 0;
}

.p-top__fv {
	padding-top: 0;
}

.p-top__fv-img {
	display: none;
}

.p-top__fv-img.-sp {
	display: block;
	height: 480px;
	width: 100%;
}

.p-menu__header {
	display: flex;
	flex-direction: column;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 25;
}

.p-menu__tel-article {
	display: block;
}

.p-menu__header-wrap {
	align-items: center;
	background: rgba(214, 222, 234, 0.7);
	display: flex;
	height: 60px;
	justify-content: space-between;
	left: 0;
	padding: 10px 10px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 20;
}

.c-page__title {
	align-items: center;
	background: #f5f5f5;
	color: #86bc36;
	display: flex;
	font-family: "Noto Sans JP", serif;
	font-size: 22px;
	font-weight: 400;
	height: 60px;
	justify-content: center;
}

.p-top__fv-wave-img {
	display: block;
	height: 100%;
	height: auto;
	width: 100%;
	-o-object-fit: fill;
	object-fit: fill;
	-o-object-position: bottom;
	object-position: bottom;
}

.p-top__fv-wave-wrap {
	background-color: transparent;
	display: block;
	margin-top: -7.5vw;
	width: 100%;
}

.p-cal__container {
	gap: 0;
	grid-template-columns: 150px repeat(6, 34px);
	grid-template-rows: repeat(4, 59px);
	margin: 0;
}

.p-cal__container.-zaitaku {
	grid-template-rows: repeat(2, 59px);
}

.p-cal__container.-kaigo {
	grid-template-rows: repeat(2, 59px);
}

.p-cal__item {
	font-size: 24px;
	letter-spacing: 1.92px;
}

.p-cal__item.-title,
.p-cal__item.-wk {
	font-size: 22px;
	letter-spacing: 1.76px;
}

.p-cal__item.-time,
.p-cal__item.-work,
.p-cal__item.-off {
	font-size: 22px;
}

.p-cal__item.-work::before {
	height: 20px;
	width: 20px;
}

.p-cal__item.-off::before {
	height: 5px;
	width: 24px;
}

.p-header__addrr {
	font-size: 18px;
	margin-top: 2px;
}

.p-zai__content-text {
	padding: 0 10px;
}

.p-zai__img-wrap {
	display: flex;
	justify-content: center;
	padding-top: 20px;
}

.p-zai__wrap {
	flex-direction: column-reverse;
	margin-top: 0;
	padding-right: 0;
}

.p-support__content-wrap {
	align-items: center;
	width: 100%;
}

.p-support__img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}

.p-support__img-wrap {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-support__wrap {
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin-top: 40px;
	padding-left: 0;
	padding-right: 0;
	row-gap: 30px;
}

.p-support__wrap.-n2 {
	flex-direction: column-reverse;
	padding-left: 0;
	padding-right: 0;
}

.p-support__wrap.-n3 {
	padding-left: 0;
	padding-right: 0;
}

.p-support__title-top {
	margin-top: 0;
}

.p-recruit__content-text {
	font-size: 24px;
}

.p-recruit__content-wrap {
	align-items: center;
	width: 100%;
}

.p-recruit__img {
	width: 100%;
}

.p-recruit__img-wrap {
	justify-content: center;
}

.p-recruit__wrap {
	padding: 40px 6px 50px;
}

}

@media (max-width: 1000px) {

.tabbr {
	display: block;
}

.pcbr {
	display: none;
}

}

