/* ===============
共通カスタマイズ
=============== */

/* テキスト色 */
body {
	color: #5d3c26;
}
/* Googleフォント */
.quicksand {
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.zen-maru-gothic-regular {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-style: normal;
}

/* 各ページタイトル */
.c-entry__title {
	font-family: "Zen Maru Gothic", serif;
}
/* セクション英字タイトル装飾 */
.section_title {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: "Quicksand", sans-serif;
}

.section_title::after {
	content: "";
	display: block;
	width: 100px;
	height: 15px;
	background: url("/wp-content/uploads/2024/08/line.png") no-repeat;
	background-size: contain;
}

/* リンクの下線なし */
.link-deco a {
	text-decoration: none;
}
/* スライダードット */
.spider__dots:not([data-thumbnails="true"]) .spider__dot {
	background-color: #c3ab97;
}

.spider__dots:not([data-thumbnails="true"]) .spider__dot[aria-current="true"] {
	background-color: #f28501;
}

/* ===============ボタン=============== */
/* 共通ボタンスタイル */
.btn_container .custom-button {
	border-radius: 35px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
	width: 100%;
	max-width: 320px;
	height: 70px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	font-family: "Zen Maru Gothic", serif;
}
/* 白背景矢印ボタン */
.btn_container .custom-button__wh {
	position: relative;
	background-color: #fff;
	color: #f28501;
	border: 1px solid #f28501;
}

.custom-button__wh .arrow {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url("/wp-content/uploads/2024/08/arrowarrow.png");
	background-size: cover;
	background-repeat: no-repeat;
}

.custom-button__wh:hover {
	background-color: #f28501;
	color: #fff;
}

.custom-button__wh:hover .arrow {
	background-image: url("/wp-content/uploads/2024/08/arrowarrow_wh.png");
}
/* 白背景矢印ボタン （中央寄せ用）*/
.btn_container-center {
	text-align: center;
}

/* -----ヘッダーボタン------ */
.header-btn_container.btn_container {
	display: flex;
	height: 50px;
}
.header-btn_container.btn_container .header-custom-button,
.header-btn_container.btn_container .header-custom-button-taxi {
	height: 50px;
}
/* オレンジ背景お問い合わせボタン */
.header-custom-button {
	position: relative;
	background-color: #f28501;
	color: #fff;
	border: 1px solid #fff;
}
.header-custom-button:hover {
	position: relative;
	background-color: #fff;
	color: #f28501;
	border: 1px solid #f28501;
}
.header-custom-button::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/icon_mail_whmail_icon_wh.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s;
}

.header-custom-button:hover::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/icon_mail_orangemail_icon_or.png");
	background-size: contain;
	background-repeat: no-repeat;
}
/* 茶背景タクシーボタン */
.header-custom-button-taxi {
	position: relative;
	background-color: #805a41;
	color: #fff;
	border: 1px solid #fff;
	margin: 0 19.2px;
}

.header-custom-button-taxi:hover {
	position: relative;
	background-color: #fff;
	color: #805a41;
	border: 1px solid #805a41;
}

.header-custom-button-taxi::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/icon_taxi_whtaxi_icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s;
}
.header-custom-button-taxi:hover::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/Grouptaxi-icon-br.png");
	background-size: contain;
	background-repeat: no-repeat;
}
/* -----フッターボタン----- */
.footer-custom-button,
.footer-custom-button-taxi {
	position: relative;
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
}
.footer-custom-button:hover,
.footer-custom-button-taxi:hover {
	position: relative;
	background-color: #fff;
	color: #805a41;
	border: 1px solid #805a41;
}
/* フッターお問い合わせアイコン */
.footer-custom-button::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/icon_mail_whmail_icon_wh.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s;
}

.footer-custom-button:hover::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/icon_mail_whmail_icon_br.png");
	background-size: contain;
	background-repeat: no-repeat;
}
/* フッタータクシーアイコン */
.footer-custom-button-taxi::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/icon_taxi_whtaxi_icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s;
}
.footer-custom-button-taxi:hover::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/Grouptaxi-icon-br.png");
	background-size: contain;
	background-repeat: no-repeat;
}

/* サービスセクションボタン */
@media screen and (max-width: 639px) {
	.service-custom-button {
		max-width: 320px;
	}
}

/* cta-contactボタン */
.cta-contact .btn_container .custom-button {
	width: 100%;
	max-width: 300px;
	height: 70px;
}
.custom-button__br {
	background-color: #805a41;
	color: #fff;
	border: 1px solid #805a41;
}

.custom-button__br:hover {
	background-color: #fff;
	color: #805a41;
}
.custom-button__or {
	background-color: #f28501;
	color: #fff;
	border: 1px solid #f28501;
}

.custom-button__or:hover {
	background-color: #fff;
	color: #f28501;
}

/* リクルートコンタクトボタン */
.recruit-custom-button {
	position: relative;
	background-color: #fff;
	color: #f28501;
	border: 1px solid #f28501;
}
.recruit-custom-button:hover {
	position: relative;
	background-color: #f28501;
	color: #fff;
	border: 1px solid #fff;
}

.recruit-custom-button::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/icon_mail_orangemail_icon_or.png");
	background-size: contain;
	background-repeat: no-repeat;
	transition: background-image 0.3s;
}
.recruit-custom-button:hover::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background-image: url("/wp-content/uploads/2024/08/icon_mail_whmail_icon_wh.png");
	background-size: contain;
	background-repeat: no-repeat;
}

/* ===============
ヘッダー
=============== */
.l-header,
.l-header .l-1row-header .c-fluid-container {
	background-color: #fdf8f2;
	box-shadow: none;
}
.p-global-nav .c-navbar__item > a {
	font-size: 15px;
	font-family: "Zen Maru Gothic", serif;
	flex-direction: row;
}
.c-row__col.c-row__col--fit.u-invisible-md-down {
	padding: 0;
}

/* ===============
フッター
=============== */
footer.l-footer,
.c-copyright {
	background-color: #805a41;
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
	font-size: 15px;
}

/* ページトップ画像 */
.c-page-top a {
	background: url("/wp-content/uploads/2024/08/pagetoppage_top.png") no-repeat;
	background-size: contain;
}
.c-page-top {
	background-color: transparent;
	height: 160px;
	width: 160px;
}
svg.svg-inline--fa.fa-chevron-up {
	display: none;
}
/* PCメニュー調整 */
@media (min-width: 640px) {
	.sp-footer-privacy {
		display: none;
	}
}
@media screen and (max-width: 639px) {
	/* スマホページトップ画像 */
	.c-page-top {
		background-color: transparent;
		height: 80px;
		width: 100px;
	}
	/* スマホメニュー調整 */
	.l-footer-widget-area__item {
		margin-bottom: 0;
		text-align: center;
	}

	.l-footer .c-row > div:nth-of-type(2) {
		margin-bottom: 9.6px;
	}

	.pc-footer-privacy {
		display: none;
	}
}

/* ===============
トップページ
=============== */
/* ===============fvセクション=============== */
/* スマホ時調整 */
.fv {
	position: relative;
}
.fv-txt {
	position: absolute;
	bottom: -80px;
	right: -50px;
	margin: 0;
	z-index: 1;
}

/* ===============Aboutセクション=============== */
/* 3XLで設定した文字サイズがSPでは大きすぎるので画面サイズによって可変させる */
.page-id-361 .has-sm-3-xl-font-size {
	font-size: clamp(1.5rem, 4vw, 2rem) !important;
}
/* PC、タブレット縦書き */
@media (min-width: 782px) {
	.about .about__subtitle {
		writing-mode: vertical-rl;
	}
	.about .about__subtitle .about__subtitle_txt {
		margin: 0;
	}
	p.about_title {
		margin-left: 1rem;
	}
}
@media (max-width: 781px) {
	p.about_title {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}
/* サブタイトルの余白 */
p.about_title {
	margin-bottom: 1rem;
}

/* ===============Featureセクション=============== */
/* ボックス装飾 */

.feature__box .smb-items__item {
	border-radius: 12px;
}

/* 背景色角丸 */
.feature .smb-section__background {
	border-radius: 20px 0 0 20px;
	background-image: url("/wp-content/uploads/2024/08/LOCOPROlocopro.png");
	background-repeat: no-repeat;
	background-position: 60% bottom;
	background-size: contain;
}

/* 画面幅が970px以上の時のタイトル位置調整(検証ツールを見ながらいい感じになるように調整をした)  */
@media (min-width: 970px) {
	.wp-block-group.feature_title {
		margin-left: 100px;
	}
}
@media (min-width: 640px) {
	/* ボックスの調整 */
	.feature__box .smb-items__item {
		min-height: 420px;
	}
	.feature__box.feature__box1 {
		margin-top: -50px;
	}
	.feature .feature__content {
		margin-top: 50px;
	}
	.feature .smb-section__background {
		background-size: 55%;
	}
}
/* 背景色の調整(検証ツールを見ながらいい感じになるように調整をした) */
@media (min-width: 782px) and (max-width: 1671px) {
	.feature .smb-section__background {
		--smb-section--background-transform: translate(
			calc((100vw - 1440px) / (1920 - 1440) * (15 - 3) + 3%),
			0%
		);
	}
}

@media (min-width: 1670px) {
	.feature .smb-section__background {
		--smb-section--background-transform: translate(15%, 0%);
	}
}

/* ===============serviseセクション=============== */
/* タイトル */
.service p.service__title {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: "Quicksand", sans-serif;
	padding-left: 55px;
}

.service p.service__title::before {
	content: "";
	display: block;
	width: 50px;
	height: 10px;
	background: url("/wp-content/uploads/2024/08/Line-196.png") no-repeat;

	background-size: contain;
	position: absolute;
	top: 45%;
	left: 0;
}
/* 余白調整 */
.service__content .smb-section__inner .c-container {
	padding: 0;
}
/* テキスト背景角丸 */
.service__content .smb-section-break-the-grid__content {
	border-radius: 12px;
}

/* 介護タクシー案内タイトル下余白調整 */
.service h4.service__taxi-title {
	margin-bottom: 5px;
}

/* 介護タクシーアイコン */
h4.service__taxi-title img {
	margin-right: 5px;
	padding-bottom: 2px;
}

/* ===============sliderセクション=============== */

/* 背景色角丸 */
.slider .smb-section__background {
	border-radius: 20px;
}

/* ===============newsセクション=============== */
.news .c-entry-summary__meta {
	color: #f28501;
	font-weight: normal;
	font-family: "Quicksand", sans-serif;
	justify-content: flex-start;
}
/* ===============cta-contactセクション=============== */
.cta-contact__line-container {
	border-top: 1px solid #805a41;
	padding-top: 28.8px;
}
/* コンテンツの最大幅指定 */
.cta_box_inner {
	max-width: 1280px;
}
/* 下に下げてリクルートセクションと重ねる */
.cta-contact {
	z-index: 99;
	position: relative;
	top: 50px;
}
@media screen and (max-width: 639px) {
	.cta-contact .c-container {
		padding: 0;
	}
}
/* ===============recruit-contactセクション=============== */

/* ===============
お知らせ一覧ページ
=============== */
.blog .l-container,
.archive .l-container {
	background-color: #fdf8f2;
}
.blog section.c-entry-summary,
.archive section.c-entry-summary {
	background-color: #fff;
}
/* ===============
個別投稿ページ
=============== */
.single-post .c-fluid-container {
	background-color: #fff;
}
/* ウィジット */
.c-widget .wp-block-group > h2 {
	color: #f28501;
	font-family: "Quicksand", sans-serif;
	justify-content: flex-start;
	margin-bottom: 5px;
}
.c-widget .wp-block-group > h2::before,
.c-widget .wp-block-group > h2::after {
	display: none;
}
.c-widget ul.wp-block-latest-posts__list.wp-block-latest-posts,
.c-widget ul.wp-block-archives-list.wp-block-archives,
.c-widget ul.wp-block-categories-list.wp-block-categories {
	margin-top: 0;
}

/* ===========
ドロワーメニュー
 =============*/

/* 背景色 */
.c-drawer__inner {
	background-color: #fff;
}
.c-drawer__inner ul {
	color: #5d3c26;
	font-size: 1rem;

	font-family: "Zen Maru Gothic", serif;
}
/* 各メニューに矢印 */
.c-drawer__item {
	padding-left: 2rem;
}
.c-drawer__item::before {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	left: 0;
	width: 7px;
	height: 7px;
	border-top: solid 1px #ffa33a;
	border-right: solid 1px #ffa33a;
	transform: rotate(45deg);
}
/* ロゴサイズ、位置 */
.c-hsm-message-box.c-hsm-message-box_invert.p-hsm-drawer.c-blinking {
	max-width: 70%;
	margin-bottom: 1rem;
}
img.drower-logo.drower-logo2 {
	margin-top: 0.5rem;
}

/* 高さ調整 */
[id="drawer-nav"].c-drawer--overall .c-drawer__inner {
	height: 100%;
}
/* メニューの上幅 */
[id="drawer-nav"].c-drawer--overall {
	padding-top: 50px;
}

/* ロゴ上余白 */
img.drower-logo {
	margin-top: 5rem;
}
/* ロゴ縦幅 */
img.drower-logo {
	height: 4rem;
}

/* ===========
固定フッター
 =============*/
/* 共通スマホフッター */
.p-footer-sticky-nav .c-navbar__item > a {
	padding: 0.8rem;
	color: #fff;
	font-size: 1rem;
	border-radius: 15px;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 600;
}
.p-footer-sticky-nav {
	box-shadow: none;
	padding-bottom: 0.2rem;
	background: transparent;
}
/* お問い合わせ */
.p-footer-sticky-nav .c-navbar__item.menu_contact > a {
	background-color: #f28501;
}

/* お問い合わせアイコン表示 */
.p-footer-sticky-nav .c-navbar__item.menu_contact > a::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 23px;
	background-image: url("/wp-content/uploads/2024/08/icon_mail_whmail_icon_wh.png");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 8px;
}

/* タクシー */
.p-footer-sticky-nav .c-navbar__item.menu_taxi > a {
	background-color: #805a41;
}
/* タクシーアイコン表示 */
.p-footer-sticky-nav .c-navbar__item.menu_taxi > a::before {
	content: "";
	display: inline-block;
	width: 20px; /* 望む幅 */
	height: 23px; /* 望む高さ */
	background-image: url("/wp-content/uploads/2024/08/icon_taxi_whtaxi_icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 8px;
}
