@charset "utf-8";

/* base
-------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol {
	list-style-type: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	height: auto;
}
img[src*=".svg"] {
	width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}

/* --------------------------------------------------------
	フォントと背景
-------------------------------------------------------- */
:root {
	--header-height: 0px;
	--announcement-height: 0px;
}
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	font-family: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
	color: #000;
	font-size: 1.6em;
	font-weight: 500;
	background: #fff;
	letter-spacing: .05em;
	line-height: 1.75;
	padding-top: var(--header-height);
}
@media screen and (max-width: 768px) {
	body { font-size: min(3.7333vw, 1.4em); }
}

/* フォント */
.ff_YakuHan { font-family: YakuHanJP, sans-serif; }
.ff_YuMin {
	font-family: "Zen Old Mincho", serif;
}
.bold { font-weight: 700; }
.heavy { font-weight: 900; }
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }
@media screen and (max-width: 768px) {
}

/* 文字色 */
/* 文字サイズ */
@media screen and (max-width: 768px) {
}
/* マーカー */

/* 背景 */
.c-pattern01 {
	background-image: url(../img/cmn/pattern01.jpg);
	background-repeat: repeat;
}
@media screen and (max-width: 768px) {
.c-pattern01 {
	background-image: url(../img/cmn/pattern01_sp.jpg);
}
}


/* --------------------------------------------------------
	リンク
-------------------------------------------------------- */
a {
	color: inherit;
	transition: .5s;
}
a:hover { opacity: 0.5; }
::-moz-selection {
	color: #fff;
	background: #00327a;
}
::selection {
	color: #fff;
	background: #00327a;
}


/* テキストリンク
-------------------------------------------------------- */
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
a.underline:hover {
	text-decoration-color: transparent;
	opacity: 1;
}


/* アンカーリンク
-------------------------------------------------------- */
.anchor {
	margin-top: max(-10.0525vw, -134px);
	padding-top: min(10.0525vw, 134px);
}
@media screen and (max-width: 768px) {
.anchor {
	margin-top: max(-16vw, -60px);
	padding-top: min(16vw, 60px);
}
}



/* --------------------------------------------------------
	共通
-------------------------------------------------------- */
.inner {
	max-width: 1200px;
	width: 94.6666%;
	margin: auto;
}
.inner.mw1000 {
	max-width: 1000px;
}
.inner.mw960 {
	max-width: 960px;
}

@media screen and (max-width: 768px) {
.inner.is-wide {
	width: 100%;
}
.inner.is-large {
	width: 94.6666%;
}
}

/* iframe */
.iframe { position: relative; }
.iframe.youtube { padding-top: 56.25%; }
.iframe iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


/* flex */
.flex {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.nowrap { flex-wrap: nowrap; }
.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.fd_rr {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.ai_fs {
	-webkit-box-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	align-items: center;
}
.jc_fs {
	-webkit-box-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.jc_sa {
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}
.overflow_hidden {
	overflow: hidden;
}


/* --------------------------------------------------------
	アニメーション
-------------------------------------------------------- */
/* ローディング
-------------------------------------------------------- */
#loading {
	width: 100%;
	height: 100dvh;
	background: #f2f2f2;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 500;
}
#loading.is-loaded {
	opacity: 0;
	visibility: hidden;
}
.loading_logo {
	max-width: 306px;
	width: 80%;
}

.trigger {
	opacity: 0;
}
/* 下から上へ */
.animation.animation01 {
	animation: fadeup .8s ease forwards;
}
@keyframes fadeup{
	from {
		opacity: 0;
		transform: translateY(2em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 左から右へ */
.animation.animation02 {
	animation: faderight .8s ease forwards;
}
@keyframes faderight{
	from {
		opacity: 0;
		transform: translateX(-2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* 右から左へ */
.animation.animation03 {
	animation: fadeleft .8s ease forwards;
}
/* 左から右へ */
.animation.animation04 {
	animation: textClip 1s ease forwards;
}
@keyframes fadeleft{
	from {
		opacity: 0;
		transform: translateX(2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* 下から上へ流れる */
@keyframes slideUp {
	0% { transform: translateY(0); }
	100% { 	transform: translateY(-100%); }
}
/* 上から下へ流れる */
@keyframes slideDown {
	0% { transform: translateY(-100%); }
	100% { transform: translateY(0); }
}
/* 右から左へ流れる */
@keyframes slideLeft {
	0% { transform:translateX(0); }
	100% { transform:translateX(-100%); }
}
/* 左から右へ流れる */
@keyframes slideRight {
	0% { transform:translateX(-100%); }
	100% { transform:translateX(0); }
}

.c-ticker,
.c-ticker .c-ticker_track {
	display: -webkit-box;
	display: flex;
}
.c-ticker {
	color: #fafafa;
	font-size: 7.2rem;
	font-style: italic;
	line-height: 1.4;
	white-space: nowrap;
	opacity: .3;
	overflow: hidden;
}
.c-ticker.is-bl {
	color: #00b6ec;
}
.c-ticker.is-left .c-ticker_track {
	animation: slideLeft 80s linear infinite;
}
.c-ticker.is-right .c-ticker_track {
	animation: slideRight 80s linear infinite;
}
@media screen and (max-width: 768px) {
.c-ticker {
	font-size: min(9.6vw, 3.6rem);
}
}

/* ズームアップ */
@keyframes zoomUp {
	0% { transform: scale(1); }
	100% { transform: scale(1.15); }
}

/* 左から表示 */
@keyframes textClip {
	0%{ clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); }
	100%{ clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
}


/* --------------------------------------------------------
	ボタン
-------------------------------------------------------- */
.c-btn01 {
	color: #7fab2a;
	font-size: 1.8rem;
	font-weight: 700;
	max-width: 390px;
	width: 100%;
	background: #fff;
	border: solid 1px #7fab2a;
	border-radius: 25px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 10px;
	position: relative;
}
.c-btn01::after {
	content: "";
	width: 24px;
	height: 22px;
	background-image: url(../img/cmn/arrow_r_mi.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 11px);
	right: 16px;
}
/* オレンジ */
.c-btn01.m-or {
	color: #f19149;
	border-color: #f19149;
}
.c-btn01.m-or::after {
	background-image: url(../img/cmn/arrow_r_or.svg);
}
.c-btn01.m-or.m-fill {
	color: #fff;
	background: #f19149;
}
.c-btn01.m-or.m-fill::after {
	background-image: url(../img/cmn/arrow_r_wh.svg);
}

/* ピンク */
.c-btn01.m-pk {
	color: #eb6877;
	border-color: #eb6877;
}
.c-btn01.m-pk::after {
	background-image: url(../img/cmn/arrow_r_pk.svg);
}
@media screen and (max-width: 768px) {
.c-btn01 {
	font-size: min(3.7333vw, 1.4rem);
	max-width: min(80vw, 300px);
	padding: min(3.2vw, 12px);
}
.c-btn01::after {
	width: min(4.8vw, 18px);
	height: min(4.2666vw, 16px);
	top: calc(50% - min(2.1333vw, 8px));
	right: min(3.2vw, 12px);
}
}

/* --------------------------------------------------------
	見出し
-------------------------------------------------------- */
/* 緑下線
-------------------------------------------------------- */
.c-title01 {
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 48px;
}
.c-title01::after {
	content: "";
	width: min(16vw, 60px);
	height: min(.8vw, 3px);
	background: #7fab2a;
	display: block;
	margin: 2px 0 0;
}
@media screen and (max-width: 768px) {
.c-title01 {
	font-size: min(5.3333vw, 2rem);
	margin: 0 0 min(6.4vw, 24px);
}
.c-title01::after {
	margin: min(1.8666vw, 7px) 0 0;
}
}

/* 文字緑下線グレー
-------------------------------------------------------- */
.c-title02 {
	color: #7fab2a;
	font-size: 3rem;
	font-weight: 700;
	border-bottom: solid 1px #c9c9c9;
	margin: 0 0 40px;
	padding: 0 0 8px;
}
@media screen and (max-width: 768px) {
.c-title02 {
	font-size: min(5.3333vw, 2rem);
	margin: 0 0 min(8vw, 30px);
	padding: 0 0 min(1.6vw, 6px);
}
}


/* --------------------------------------------------------
	リスト
-------------------------------------------------------- */
.c-note__list01 > li {
	padding: 0 0 0 24px;
	position: relative;
}
.c-note__list01 > li:not(:last-child) {
	margin: 0 0 6px;
}
.c-note__list01 > li::before {
	content: "";
	width: 5px;
	height: 5px;
	background: #59493f;
	border-radius: 50%;
	position: absolute;
	top: 11px;
	left: 0;
}
@media screen and (max-width: 768px) {
.c-note__list01 > li {
	padding: 0 0 0 min(4.8vw, 18px);
}
.c-note__list01 > li:not(:last-child) {
	margin: 0 0 min(1.3333vw, 5px);
}
.c-note__list01 > li::before {
	width: min(1.0666vw, 4px);
	height: min(1.0666vw, 4px);
	top: min(2.6666vw, 10px);
}
}


/* --------------------------------------------------------
	表
-------------------------------------------------------- */
.c-tbl01 th,
.c-tbl01 td {
	padding: 10px 0;
}
.c-tbl01 th {
	width: 220px;
}
@media screen and (max-width: 768px) {
.c-tbl01 th,
.c-tbl01 td {
	width: 100%;
	display: block;
}
.c-tbl01 th {
	padding: min(2.6666vw, 10px) 0 0;
}
.c-tbl01 td {
	padding: min(2.6666vw, 10px) 0 min(5.3333vw, 20px);
}
.c-tbl01 tr:nth-child(1) th { padding-top: 0; }
.c-tbl01 tr:last-child td { padding-bottom: 0; }
}


/* --------------------------------------------------------
	タブ切替
-------------------------------------------------------- */
.c-tab_btns {
	background: #0078cf;
	border-radius: 4px;
}
.c-tab_btns .c-tab_btn {
	color: #fff;
	width: 100%;
	background: none;
	display: block;
	padding: 0;
	position: relative;
	transition: .5s;
}
.c-tab_btns .c-tab_btn span {
	display: block;
	position: relative;
}
.c-tab_btns .c-tab_btn > span::before {
	content: "";
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 4px;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 0;
}
.c-tab_btns .c-tab_btn > span span {
	z-index: 1;
}
.c-tab_btns .c-tab_btn:hover,
.c-tab_btns .c-tab_btn.is-active {
	color: #0078cf;
}
.c-tab_btns .c-tab_btn:hover > span::before,
.c-tab_btns .c-tab_btn.is-active > span::before {
	opacity: 1;
}
.c-tab_contents .c-tab_content {
	display: none;
}
.c-tab_contents .c-tab_content.is-show {
	display: block;
}

/* 縦 */
.c-tabs.is-line .c-tab_btns {
	max-width: 220px;
	width: 100%;
	padding: 5px;
	margin: 0 0 48px;
}
.c-tabs.is-line .c-tab_btns .c-tab_btn > span {
	padding: 5px;
}

/* 横 */
.c-tabs.is-grid .c-tab_btns {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 40px;
	padding: 8px;
}
.c-tabs.is-grid .c-tab_btns .c-tab_btn > span {
	padding: 15px 8px 17px;
}
.c-tabs.is-grid.is-2col .c-tab_btns .c-tab_btn {
	width: calc(50% - 4px);
	margin-top: 8px;
	margin-right: 8px;
}
.c-tabs.is-grid.is-3col .c-tab_btns .c-tab_btn {
	width: 32.44444%;
	margin-top: 1.33333%;
	margin-right: 1.33333%;
}

@media screen and (min-width: 1025px) {
.c-tabs.is-line .c-tab_btns .c-tab_btn:not(:last-child) {
	margin: 0 0 5px;
}
}
@media screen and (max-width: 1024px) {
.c-tab_btns {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.c-tabs.is-line .c-tab_btns {
	max-width: min(86.6666vw, 650px);
	margin: 0;
	padding: 5px;
}
.c-tabs.is-line .c-tab_btns .c-tab_btn {
	width: calc(50% - 2.5px);
	margin-top: 5px;
	margin-right: 5px;
	padding: 0;
}
.c-tabs.is-line .c-tab_btns .c-tab_btn:nth-child(-n + 2) {
	margin-top: 0;
}
.c-tabs.is-line .c-tab_btns .c-tab_btn:nth-child(2n) {
	margin-right: 0;
}
.c-tabs.is-line .c-tab_contents {
	background: #00B6EC;
	background: linear-gradient(45deg, rgba(0, 182, 236, 1) 0%, rgba(0, 120, 207, 1) 100%);
	padding: 40px 6.6667%;
}
}
@media screen and (min-width: 769px) {
.c-tabs.is-grid.is-2col .c-tab_btns .c-tab_btn:nth-child(-n + 2) {
	margin-top: 0;
}
.c-tabs.is-grid.is-2col .c-tab_btns .c-tab_btn:nth-child(2n) {
	margin-right: 0;
}
.c-tabs.is-grid.is-3col .c-tab_btns .c-tab_btn:nth-child(-n + 3) {
	margin-top: 0;
}
.c-tabs.is-grid.is-3col .c-tab_btns .c-tab_btn:nth-child(3n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.c-tabs.is-grid .c-tab_btns {
	padding: 5px;
}
.c-tabs.is-grid.is-2col .c-tab_btns .c-tab_btn,
.c-tabs.is-grid.is-3col .c-tab_btns .c-tab_btn {
	width: calc(50% - 2.5px);
	margin-top: 5px;
	margin-right: 5px;
}
.c-tabs.is-grid .c-tab_btns .c-tab_btn > span {
	padding: 5px;
}
.c-tabs.is-grid.is-2col .c-tab_btns .c-tab_btn:nth-child(-n + 2),
.c-tabs.is-grid.is-3col .c-tab_btns .c-tab_btn:nth-child(-n + 2) {
	margin-top: 0;
}
.c-tabs.is-grid.is-2col .c-tab_btns .c-tab_btn:nth-child(2n),
.c-tabs.is-grid.is-3col .c-tab_btns .c-tab_btn:nth-child(2n) {
	margin-right: 0;
}
}


/* --------------------------------------------------------
	余白
-------------------------------------------------------- */
.u-mt48 { margin-top: 48px; }
@media screen and (max-width: 768px) {
.u-mt32_sp { margin-top: min(8.5333vw, 32px); }
}

/* --------------------------------------------------------
	PC SP切替
-------------------------------------------------------- */
.is-sp { display: none; }
@media screen and (max-width: 768px) {
	.is-pc { display: none; }
	.is-sp { display: block; }
}


/* --------------------------------------------------------
	ヘッダー
-------------------------------------------------------- */
header {
	width: 100%;
	background: #fff;
	padding: 0 0 0 min(1.2vw, 16px);
	position: -webkit-sticky;
	position: fixed;
	top: 0;
	z-index: 100;
}
.hdr-main {
	display: -webkit-box;
	display: flex;
	position: relative;
	z-index: 1;
}
.hdr-logo {
	font-size: min(2vw, 2.4rem);
	font-weight: 700;
}
.hdr-logo > a {
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
/* .hdr-logo > a::before {
	content: "";
	width: min(4.7261vw, 63px);
	height: min(3.9759vw, 53px);
	background: url(../img/cmn/logo.jpg) no-repeat;
	background-size: contain;
	margin: 0 min(.225vw, 3px) 0 0;
} */
.hdr-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: end;
	align-items: flex-end;
	flex: 1 1 auto;
}
.hdr-links {
	display: -webkit-box;
	display: flex;
}
.hdr-link {
	color: #fff;
	font-weight: 700;
	background: #7fab2a;
	border-radius: 0 0 0 30px;
	position: relative;
}
.hdr-link:hover {
	opacity: 1;
}
.hdr-link__tel {
	z-index: 0;
}
.hdr-link__tel:hover {
	background: #99bc55;
}
.hdr-link__tel span::before {
	content: "代表：0743-55-0437";
}
.hdr-link__support {
	background: #eb6877;
	margin: 0 0 0 max(-2.1vw, -28px);
	z-index: 1;
}
.hdr-link__support:hover {
	background: #ef8692;
}
.hdr-menu {
	display: -webkit-box;
	display: flex;
	margin: min(1.7254vw, 23px) 0 0;
	padding: 0 min(2.7vw, 36px) 0 0;
}
.hdr-menu > li {
	position: relative;
}
.hdr-menu > li.has-child > span {
	display: inline-block;
	cursor: pointer;
}
.hdr-menu > li.has-child > a::after
,.hdr-menu > li.has-child > span::after {
	content: "";
	width: min(1.2vw, 16px);
	height: min(.75vw, 10px);
	background: url(../img/cmn/arrow_b_mi.svg) no-repeat;
	background-size: contain;
	display: block;
	margin-inline: auto;
	margin-top: min(.3vw, 4px);
}
.hdr-menu > li:not(:last-child) {
	margin-right: min(3vw, 40px);
}
.hdr-menu__child {
	opacity: 0;
	visibility: hidden;
	padding: min(.45vw, 6px) 0 0;
	position: absolute;
	top: 100%;
	left: 0;
	transition: .5s;
}
.hdr-menu > li.has-child.m-center .hdr-menu__child {
	left: 50%;
	transform: translateX(-50%);
}
.hdr-menu__child-list {
	background: rgba(127, 171, 42, .9);
}
.hdr-menu__child-list > li:not(:last-child) {
	border-bottom: solid 1px #fff;
	margin: 0 0 min(.15vw, 2px);
}
.hdr-menu__child-list > li > a {
	color: #fff;
	display: block;
	white-space: nowrap;
	padding: min(.9vw, 12px) min(4.8vw, 64px) min(.9vw, 12px) min(1.2vw, 16px);
	position: relative;
}
.hdr-menu__child-list > li > a::after {
    content: "";
    width: min(.45vw, 6px);
    height: min(.75vw, 10px);
    background: url(../img/cmn/arrow_r_wh.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - min(.375vw, 5px));
    right: min(1.125vw, 15px);
}

.hdr-menu > li.has-child:hover > .hdr-menu__child {
	opacity: 1;
	visibility: inherit;
}
.hamb {
	width: min(14.6666vw, 55px);
	height: min(13.3333vw, 50px);
	background: #545251;
	border-radius: 0 0 0 min(4vw, 15px);
	display: none;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	cursor: pointer;
	margin: 0 0 0 max(-3.7333vw, -14px);
	position: relative;
	transition: .5s;
	z-index: 1;
}
.hamb:hover {
	background: #767574;
}
.hamb__icon {
	width: min(6.6666vw, 25px);
	height: min(5.3333vw, 20px);
	position: relative;
}
.hamb__icon span {
	width: 100%;
	height: 1px;
	background: #fff;
	display: block;
	position: absolute;
	left: 0;
	transition: .5s;
}
.hamb__icon span:nth-child(1) {
	top: 0;
}
.hamb__icon span:nth-child(2) {
	top: 50%;
}
.hamb__icon span:nth-child(3) {
	top: 100%;
}
.drawer {
	font-size: min(3.4666vw, 1.3rem);
	width: 100%;
	height: 100dvh;
	background: #fff;
	opacity: 0;
	overflow: auto;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	padding: min(16vw, 60px) 0 0;
	transition: .5s;
	z-index: 0;
}
.drawer-menu {
	border-top: solid 1px #d2d2d2;
}
.drawer-menu > li > a,
.drawer-menu > li > span {
	display: block;
	cursor: pointer;
	padding: min(4.2666vw, 16px) min(5.3333vw, 20px);
	position: relative;
}
.drawer-menu > li > a::after,
.drawer-menu > li > span::after {
	content: "";
	width: min(1.6vw, 6px);
	height: min(2.6666vw, 10px);
	background: url(../img/cmn/arrow_r_mi02.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: min(5.8666vw, 22px);
	right: min(4vw, 15px);
}
.drawer-menu > li > a.js-acc::before,
.drawer-menu > li > a.js-acc::after,
.drawer-menu > li > span.js-acc::before,
.drawer-menu > li > span.js-acc::after {
	content: "";
	width: min(2.6666vw, 10px);
	height: 1px;
	background: #7fab2a;
	position: absolute;
	top: min(6.9333vw, 26px);
	right: min(4vw, 15px);
	transition: .5s;
}
.drawer-menu > li > a.js-acc::after,
.drawer-menu > li > span.js-acc::after {
	transform: rotate(90deg);
}
.drawer-menu > li > a.js-acc.is-acc-open::after,
.drawer-menu > li > span.js-acc.is-acc-open::after {
	transform: rotate(0);
}
.drawer-menu > li:not(:last-child) {
	border-bottom: solid 1px #d2d2d2;
}
.drawer-menu__child {
	display: none;
	padding: 0 min(5.3333vw, 20px) min(5.3333vw, 20px);
}
.drawer-menu__child > li:not(:last-child) {
	margin: 0 0 min(3.2vw, 12px);
}
.drawer-menu__child > li > a {
	display: inline-block;
	padding: 0 0 0 min(4.2666vw, 16px);
	position: relative;
}
.drawer-menu__child > li > a::before {
	content: "";
	width: min(1.0666vw, 4px);
	height: 1px;
	background: #7fab2a;
	position: absolute;
	top: min(2.6666vw, 10px);
	left: 0;
}
.drawer-close {
	color: #fff;
	width: 100%;
	background: #7fab2a;
	display: block;
	padding: min(3.7333vw, 14px);
}
.drawer-close span {
	display: inline-block;
	padding: 0 0 0 min(9.8666vw, 37px);
	position: relative;
}
.drawer-close span::before {
	content: "";
	width: min(3.2vw, 12px);
	height: min(3.2vw, 12px);
	background: url(../img/cmn/icon_close_wh.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: min(1.3333vw, 5px);
	left: 0;
}
.is-hamb-open .hamb__icon span:nth-child(1),
.is-hamb-open .hamb__icon span:nth-child(3) {
	top: min(2.6666vw, 10px);
}
.is-hamb-open .hamb__icon span:nth-child(1) {
	transform: rotate(45deg);
}
.is-hamb-open .hamb__icon span:nth-child(2) {
	transform: scaleX(0);
}
.is-hamb-open .hamb__icon span:nth-child(3) {
	transform: rotate(-45deg);
}
.is-hamb-open .drawer {
	opacity: 1;
	visibility: inherit;
}

@media screen and (min-width: 1025px) {
.hdr-nav {
	font-size: min(1.2vw, 1.6rem);
	padding: 0 0 min(2vw, 27px);
}
.hdr-links .hdr-link {
	font-size: min(1.35vw, 1.8rem);
	padding: min(.375vw, 5px) min(3.2225vw, 43px) min(.375vw, 5px) min(2.85vw, 38px);
}
.hdr-link {
	pointer-events: none;
}
.hdr-link__tel {
	padding: min(.375vw, 5px) min(4.5vw, 60px) min(.375vw, 5px) min(3.375vw, 45px);
}
.is-scroll header {
	height: min(16vw, 60px);
	background: none;
	padding: 0;
}
.is-scroll .hdr-main {
	height: min(13.3333vw, 50px);
	background: #fff;
	padding: 0 0 0 min(1.3333vw, 5px);
}
.is-scroll .hdr-logo {
	font-size: min(3.7333vw, 1.4rem);
	font-weight: 700;
}
/* .is-scroll .hdr-logo > a::before {
	width: min(10.6666vw, 40px);
	height: min(9.0666vw, 34px);
	margin: 0;
} */
.is-scroll .hdr-nav {
	padding: 0;
}
.is-scroll .hdr-links {
	height: 100%;
	background: none;
	padding: 0;
}
.is-scroll .hdr-link {
	font-size: min(3.2vw, 1.2rem);
	width: min(20vw, 75px);
	border-radius: 0 0 0 min(4vw, 15px);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	line-height: 1.25;
	text-align: center;
	padding: 0 min(2.6666vw, 10px) 0 0;
	transition: none;
	position: relative;
	z-index: 0;
}
.is-scroll .hdr-link__tel {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.is-scroll .hdr-link__tel::before {
	content: "";
	width: min(4vw, 15px);
	height: min(4vw, 15px);
	background: url(../img/cmn/icon_tel_wh.svg) no-repeat;
	background-size: contain;
	margin: 0 0 min(.2666vw, 1px);
}
.is-scroll .hdr-link__tel span::before {
	content: "代表";
}
.is-scroll .hdr-link__support {
	margin: 0 0 0 max(-3.7333vw, -14px);
}
.is-scroll .hdr-link__support span { display: none; }
.is-scroll .hdr-link__support .is-sp { display: block; }
.is-scroll .hamb {
	display: -webkit-box;
	display: flex;
}
.is-scroll .hdr-menu { display: none; }
}
@media screen and (max-width: 1024px) {
.hdr-menu { display: none; }
header {
	height: min(16vw, 60px);
	background: none;
	padding: 0 0 0 min(2.6666vw, 10px);
}
.hdr-main {
	height: min(13.3333vw, 50px);
	background: #fff;
}
.hdr-logo {
	font-size: min(4.8vw, 1.8rem);
	font-weight: 700;
}
/* .hdr-logo > a::before {
	width: min(10.6666vw, 40px);
	height: min(9.0666vw, 34px);
	margin: 0;
} */
.hdr-links {
	height: 100%;
	background: none;
	padding: 0;
}
.hdr-link {
	font-size: min(3.2vw, 1.2rem);
	width: min(20vw, 75px);
	border-radius: 0 0 0 min(4vw, 15px);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	line-height: 1.25;
	text-align: center;
	padding: 0 min(2.6666vw, 10px) 0 0;
	position: relative;
	z-index: 0;
}
.hdr-link__tel {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.hdr-link__tel::before {
	content: "";
	width: min(4vw, 15px);
	height: min(4vw, 15px);
	background: url(../img/cmn/icon_tel_wh.svg) no-repeat;
	background-size: contain;
	margin: 0 0 min(.2666vw, 1px);
}
.hdr-link__tel span::before {
	content: "代表";
}
.hdr-link__support {
	margin: 0 0 0 max(-3.7333vw, -14px);
}
.hdr-link__support span { display: none; }
.hdr-link__support .is-sp { display: block; }
.hamb {
	display: -webkit-box;
	display: flex;
}
}
@media screen and (max-width: 768px) {
}

/* --------------------------------------------------------
	フッター
-------------------------------------------------------- */
/* お問い合わせ
-------------------------------------------------------- */
.ftr-contact__body {
	background: #7fab2a;
	padding: 0 0 min(4.6vw, 48px);
	margin-top: calc(100vw * (-48 / 1600));
}
.ftr-contact__title {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 24px;
}
.ftr-contact__list {
	max-width: 758px;
	width: 100%;
	margin-inline: auto;
}
.ftr-contact__list > li {
	width: 49%;
}
.ftr-contact__list > li:not(:last-child) {
	margin: 0 2% 0 0;
}
.ftr-contact__list > li > a > span,
.ftr-contact__list > li > a > span > span {
	height: 100%;
	border-radius: 100px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.ftr-contact__list > li > a > span {
	border: solid 2px #eb6877;
	position: relative;
}
.ftr-contact__list > li > a > span > span {
	color: #fff;
	width: 100%;
	background: #eb6877;
	border: solid 3px #fff;
	-webkit-box-pack: start;
	justify-content: flex-start;
	line-height: 1;
	padding: 15px 10px 11px 96px;
	position: relative;
}
.ftr-contact__list > li.m-mail > a > span {
	border-color: #f19149;
}
.ftr-contact__list > li.m-mail > a > span > span {
	background: #f19149;
}
.ftr-contact__list-item > a > span > span::before {
	content: "";
	width: 60px;
	height: 60px;
	background-color: #fff;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	line-height: 1.2;
	text-align: center;
	white-space: pre;
	position: absolute;
	top: calc(50% - 30px);
	left: 10px;
}
.ftr-contact__list-item.m-support > a > span > span::before {
	content: "安心\Aクラブ";
	color: #eb6877;
	font-weight: 700;
}
.ftr-contact__list-item.m-mail > a > span > span::before {
	background-image: url(../img/cmn/icon_mail_or.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px auto;
}
.ftr-contact__list > li > a > span > span > span {
	width: fit-content;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.ftr-contact__item-num,
.ftr-contact__item-text {
	font-weight: 700;
}
.ftr-contact__item-num {
	font-size: 3rem;
}
.ftr-contact__item-text {
	font-size: 2rem;
}
.ftr-contact__item-hours {
	margin: 8px 0 0;
}
@media screen and (min-width: 1025px) {
.ftr-contact__list-item.m-support > a {
	pointer-events: none;
}
}
@media screen and (max-width: 768px) {
.ftr-contact__body {
	padding: min(.8vw, 3px) 0 min(6.6666vw, 25px);
}
.ftr-contact__title {
	font-size: min(4vw, 1.5rem);
	margin: 0 0 min(5.3333vw, 20px);
}
.ftr-contact__list > li {
	width: 100%;
}
.ftr-contact__list > li:not(:last-child) {
	margin: 0 0 min(2.6666vw, 10px);
}
.ftr-contact__list > li > a > span {
	border-width: 1px;
}
.ftr-contact__list > li > a > span > span {
	border-width: 2px;
	padding: min(2.6666vw, 10px);
}
.ftr-contact__list-item > a > span > span::before {
	width: min(10.1333vw, 38px);
	height: min(10.1333vw, 38px);
	top: calc(50% - min(5.0666vw, 19px));
	left: min(2.1333vw, 8px);
}
.ftr-contact__list-item.m-support > a > span > span::before {
	font-size: min(2.6666vw, 1rem);
}
.ftr-contact__list-item.m-mail > a > span > span::before {
	background-size: min(4.2666vw, 16px) auto;
}
.ftr-contact__list > li > a > span > span > span {
	width: 100%;
}
.ftr-contact__item-num {
	font-size: min(4.8vw, 1.8rem);
}
.ftr-contact__item-text {
	font-size: min(4vw, 1.5rem);
}
.ftr-contact__item-hours {
	font-size: min(3.2vw, 1.2rem);
	margin: min(1.0666vw, 4px) 0 0;
}
}

/* 営業所
-------------------------------------------------------- */
.ftr-office {
	background: #eff1ec;
	padding: 48px 0;
}
.ftr-office__list {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.ftr-office__list > li {
	width: 33.3333%;
	position: relative;
}
.ftr-office__list > li:not(:last-child)::after {
	content: "";
	width: 1px;
	height: calc(100% - 10px);
	background: #59493f;
	position: absolute;
	top: 5px;
	right: 0;
}
.ftr-office__list > li > a {
	color: #59493f;
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	text-align: center;
	padding: 0 20px;
}
.ftr-office__item-title {
	font-size: 2.4rem;
	font-weight: 700;
}
.ftr-office__item-address {
	margin: 8px 0 12px;
}
.ftr-office__item-btn {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin-top: auto;
}
.ftr-office__item-btn div {
	color: #fff;
	max-width: 260px;
	width: 100%;
	background: #59493f;
	border-radius: 17px;
	padding: 3px;
	position: relative;
}
.ftr-office__item-btn div::before {
	content: "";
	width: 17px;
	height: 18px;
	background: url(../img/cmn/icon_tel_wh.svg) no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: calc(50% - 9px);
	left: 14px;
}
@media screen and (min-width: 1025px) {
.ftr-office__list > li > a {
	pointer-events: none;
}
}
@media screen and (max-width: 768px) {
.ftr-office {
	padding: min(5.3333vw, 20px) 0;
}
.ftr-office__list > li {
	width: 100%;
}
.ftr-office__list > li:not(:last-child)::after {
	width: 100%;
	height: 1px;
	top: inherit;
	bottom: 0;
}
.ftr-office__list > li > a {
	-webkit-box-align: start;
	align-items: flex-start;
	padding: min(4.8vw, 18px) 0;
}
.ftr-office__item-title {
	font-size: min(4vw, 1.5rem);
}
.ftr-office__item-address {
	font-size: min(3.2vw, 1.2rem);
	margin: 0;
}
.ftr-office__item-btn {
	width: min(10.6666vw, 40px);
	height: min(10.6666vw, 40px);
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: calc(50% - min(5.3333vw, 20px));
	right: 0;
}
.ftr-office__item-btn div {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 0;
}
.ftr-office__item-btn div span {
	display: none;
}
.ftr-office__item-btn div::before {
	width: min(4vw, 15px);
	height: min(4.2666vw, 16px);
	position: static;
}
}

/* バナー
-------------------------------------------------------- */
.ftr-bnr {
	background: #fff;
	padding: 30px 5.3333%;
}
.ftr-bnr__list {
	max-width: 918px;
	margin-inline: auto;
}
.ftr-bnr__list > li {
	width: 23%;
	margin-top: min(2.6666vw, 10px);
	margin-right: 2.6666%;
}
@media screen and (min-width: 769px) {
.ftr-bnr__list > li:nth-child(-n + 4) {
	margin-top: 0;
}
.ftr-bnr__list > li:nth-child(4n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.ftr-bnr {
	padding: min(5.3333vw, 20px) 5.3333%;
}
.ftr-bnr__list > li {
	width: 47%;
	text-align: center;
	margin-right: 6%;
}
.ftr-bnr__list > li:nth-child(-n + 2) {
	margin-top: 0;
}
.ftr-bnr__list > li:nth-child(2n) {
	margin-right: 0;
}
}

.ftr-btm {
	background: #fff;
	border-top: solid 1px #bfbfbf;
	text-align: center;
	padding: 6px;
	position: relative;
}
.ftr-link > li > a {
	color: #7d7d7d;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.ftr-link > li > a:hover {
	text-decoration-color: transparent;
	opacity: 1;
}
#copyright { font-size: 1.4rem; }
@media screen and (min-width: 1025px) {
.ftr-link {
	position: absolute;
	top: 50%;
	right: 2.6666%;
	transform: translateY(-50%);
}
}
@media screen and (max-width: 1024px) {
.ftr-btm {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	padding: min(2.1333vw, 8px);
}
.ftr-link {
	margin: 0 0 min(.8vw, 3px);
}
}
@media screen and (max-width: 768px) {
.ftr-link > li > a {
	font-size: min(3.2vw, 1.2rem);
}
#copyright { font-size: min(2.6666vw, 1rem); }
}

/* --------------------------------------------------------
	固定ボタン
-------------------------------------------------------- */
.fixed-btn {
	width: 100%;
	background: #7fab2a;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	position: -webkit-sticky;
	position: fixed;
	bottom: 0;
	left: 0;
	transition: .5s;
	z-index: 50;
}
.is-scroll .fixed-btn {
	opacity: 1;
	visibility: inherit;
}
.is-scroll.is-hidden .fixed-btn {
	opacity: 0;
	visibility: hidden;
}
.fixed-btn .inner {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.fixed-btn__head {
	color: #fff;
	flex-shrink: 0;
	letter-spacing: 0;
}
.fixed-btn__title {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
}
@media screen and (min-width: 1025px) {
.fixed-btn__head {
	margin: 0 72px 0 0;
}
.fixed-btn__text { display: none; }
}
@media screen and (max-width: 1024px) {
.fixed-btn__title {
	font-size: min(4vw, 1.5rem);
}
.fixed-btn__title .is-pc { display: none; }
.fixed-btn__text { font-size: min(3.2vw, 1.2rem); }
.fixed-btn .p-product-contact__list {
	flex: 1 1 auto;
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.fixed-btn .p-product-contact__list > li {
	width: min(12.2666vw, 46px);
	height: min(12.2666vw, 46px);
}
.fixed-btn .p-product-contact__list > li:not(:last-child) {
    margin: 0 min(1.3333vw, 5px) 0 0;
}
.fixed-btn .p-product-contact__list > li > a > span > span {
	height: 100%;
	border-width: 1px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	padding: 0;
}
.fixed-btn .p-product-contact__list-item > a > span > span::before {
	position: static;
}
.p-product-contact__list-item.m-tel > a > span > span::before,
.p-product-contact__list-item.m-mail > a > span > span::before {
    width: min(4.2666vw, 16px);
}
.p-product-contact__list-item.m-tel > a > span > span::before {
    height: min(4.5333vw, 17px);
}
.p-product-contact__list-item.m-mail > a > span > span::before {
    height: min(3.4666vw, 13px);
}
.fixed-btn .p-product-contact__list > li > a > span > span > span {
	display: none;
}
}


/* --------------------------------------------------------
	トップページ
-------------------------------------------------------- */
/* メインビジュアル
-------------------------------------------------------- */
#t-mv {
	overflow: hidden;
	margin: 0 0 10px;
}
#t-mv .inner {
	position: relative;
}
.t-mv__swiper {
	max-width: 850px;
	width: 90%;
	margin: auto;
}
.swiper.t-mv__list {
	overflow: visible;
	position: static;
}
.swiper.t-mv__list .swiper-button-next,
.swiper.t-mv__list .swiper-button-prev {
	width: 50px;
	height: 50px;
	background: #fff;
	border: solid 1px #b5b5b5;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.swiper.t-mv__list .swiper-button-next {
	right: 0;
}
.swiper.t-mv__list .swiper-button-prev {
	left: 0;
}
.swiper.t-mv__list .swiper-button-next::after,
.swiper.t-mv__list .swiper-button-prev::after {
	content: "";
	width: 24px;
	height: 22px;
	background: url(../img/cmn/arrow_r_gy.svg);
}
.swiper.t-mv__list .swiper-button-prev::after {
	transform: scale(-1, 1);
}
.swiper.t-mv__list .swiper-pagination {
	font-size: 0;
	margin: min(2.6666vw, 10px) 0 0;
	position: static;
}
.swiper.t-mv__list .swiper-pagination-bullet {
	width: min(2.1333vw, 8px);
	height: min(2.1333vw, 8px);
	background: #7fab2a;
	opacity: .2;
	margin: 0 min(1.6vw, 6px);
}
.swiper.t-mv__list .swiper-pagination-bullet-active {
	opacity: 1;
}
@media screen and (min-width: 769px) {
.swiper.t-mv__list .swiper-pagination {
	display: none;
}
}
@media screen and (max-width: 768px) {
#t-mv .inner,
.t-mv__swiper {
	width: 100%;
}
.swiper.t-mv__list .swiper-button-next,
.swiper.t-mv__list .swiper-button-prev {
	display: none;
}
}

/* 奈良日化サービスの事業について 
-------------------------------------------------------- */
#t-about {
	padding: 90px 0 100px;
}
.t-about__head {
	text-align: center;
	margin: 0 0 min(18.6666vw, 70px);
}
.t-about__head .c-title01 {
	margin: 0 0 min(6.4vw, 24px);
}
.t-about__text {
	line-height: 2.25;
}
.t-about__list {
	max-width: 1100px;
	width: 100%;
	margin: auto;
}
.t-about__list > li {
	width: 45%;
}
.t-about__list > li:not(:last-child) {
	margin: 0 10% 0 0;
}
.t-about__list > li > a {
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.t-about__item-img > div {
	border-radius: 35px;
}
.t-about__item-img {
	margin: 0 0 27px;
	position: relative;
}
.t-about__item-img::before {
	content: "";
	width: min(7.5137vw, 86px);
    height: min(6.5517vw, 76px);
	background-image: url(../img/cmn/icon_home_mi.svg);
	background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: min(1.0344vw, 12px);
    bottom: max(-.862vw, -10px);
	z-index: 1;
}
.t-about__item-img > div {
	border: solid 4px #7fab2a;
	overflow: hidden;
	padding-top: 60%;
	position: relative;
}
.t-about__item-img > div img {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: 0;
	object-fit: cover;
	z-index: 0;
}
.t-about__item-content {
}
.t-about__item-title {
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0 0 12px;
	padding: 0 0 0 32px;
	position: relative;
}
.t-about__item-title::before {
	content: "";
	width: 20px;
	height: 18px;
	background-image: url(../img/cmn/icon_home_mi.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 12px;
	left: 0;
}
.t-about__item-text {
	margin: 0 0 min(8vw, 30px);
}
.t-about__item-btn {
	margin-top: auto;
}
.t-about__list-item02 .t-about__item-img > div {
	border-color: #f19149;
}
.t-about__list-item02 .t-about__item-img::before,
.t-about__list-item02 .t-about__item-title::before {
	background-image: url(../img/cmn/icon_home_or.svg);
}
@media screen and (max-width: 768px) {
#t-about {
	padding: min(14.9333vw, 56px) 0 min(21.8666, 82px);
}
#t-about .inner {
	width: 89.4666%;
}
.t-about__text {
	font-size: min(3.4666vw, 1.3rem);
	text-align: left;
}
.t-about__list > li {
	width: 100%;
}
.t-about__list > li > a {
	height: auto;
}
.t-about__list > li:not(:last-child) {
	margin: 0 0 min(14.9333vw, 56px);
}
.t-about__item-img,
.t-about__item-img > div {
	border-radius: 18px;
}
.t-about__item-img {
	border-width: 2px;
	margin: 0 0 min(5.3333vw, 20px);
}
.t-about__item-img::before {
	width: min(11.4666vw, 43px);
    height: min(10.1333vw, 38px);
    right: min(1.8666vw, 7px);
    bottom: max(-2.6666vw, -10px);
}
.t-about__item-title {
	font-size: min(4.5333vw, 1.7rem);
	margin: 0 0 min(2vw, 8px);
	padding: 0 0 0 min(6.6666vw, 25px);
}
.t-about__item-title::before {
	width: min(4vw, 15px);
	height: min(3.4666vw, 13px);
	top: min(2.1333vw, 8px);
	left: 0;
}
.t-about__item-text {
	font-size: min(3.4666vw, 1.3rem);
	line-height: 2;
}
}

/* 安心くらぶ会員
-------------------------------------------------------- */
#t-support {
	overflow: hidden;
	padding: 0 0 100px;
	position: relative;
	z-index: 0;
}
.t-support__bg {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}
#t-support .inner {
	position: relative;
	z-index: 1;
}
.t-support__roof {
	max-width: 1118px;
	margin-inline: auto;
}
.t-support__home {
	max-width: min(93.22vw, 1100px);
	margin-inline: auto;
	margin-top: max(-14.83vw, -175px);
	position: relative;
}
.t-support__home::before,
.t-support__home::after {
	content: "";
}
.t-support__home::before {
	width: 100%;
	background: rgba(255, 255, 255, .85);
	display: block;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	padding-top: 17.2727%;
}
.t-support__home::after {
    content: "";
    width: min(7.5137vw, 86px);
    height: min(6.5517vw, 76px);
    background-image: url(../img/cmn/icon_home_pk.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: min(1.0344vw, 12px);
    bottom: max(-.862vw, -10px);
    z-index: 1;
}
.t-support__home-in {
	background: rgba(255, 255, 255, .85);
	padding: 0 min(4vw, 48px) min(3vw, 36px) min(5.9322vw, 70px);
}
.t-support__home-in > div {
	position: relative;
}
.t-support__head {
	max-width: min(33vw, 390px);
	width: 100%;
	margin: 0 min(4.4915vw, 53px) 0 0;
	z-index: 0;
}
.t-support_welcome {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 0 0 min(3vw, 36px);
}
.t-support_welcome img {
	max-width: min(14.1525vw, 167px);
	width: 100%;
}
.t-support__title {
	color: #eb6877;
	font-size: min(2.8813vw, 3.4rem);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
.t-support__title span {
	font-size: min(3.7288vw, 4.4rem);
}
.t-support__text {
	text-align: center;
	margin: 14px 0 0;
}
.t-support__head .btn-wrap {
	margin: min(4.2372vw, 50px) 0 0;
}
.t-support__body {
	flex: 1 1 auto;
	z-index: 1;
}
.t-support__list {
	margin: max(-4.9152vw, -58px) 0 0;
}
.t-support__list > li {
	display: -webkit-box;
	display: flex;
	padding: min(1.101vw, 13px) 0;
}
.t-support__list > li:nth-child(1) {
	padding-top: 0;
}
.t-support__list > li:last-child {
	padding-bottom: 0;
}
.t-support__list > li:not(:last-child) {
	border-bottom: solid 2px #eb6877;
}
.t-support__item-img {
	width: min(18.644vw, 220px);
}
.t-support__item-content,
.t-support__item-title {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.t-support__item-content {
	width: calc(100% - min(18.644vw, 220px));
}
.t-support__item-title {
	font-weight: 700;
	text-align: center;
}
.t-support__item-title__sub {
	font-size: min(1.5254vw, 1.8rem);
	margin: 0 0 max(-.2542vw, -3px);
}
.t-support__item-title__main {
	color: #eb6877;
	font-size: min(2.0338vw, 2.4rem);
}
@media screen and (min-width: 769px) {
.t-support__text {
	font-size: min(1.5254vw, 1.8rem);
	text-align: center;
	margin: 14px 0 0;
}
.t-support__body .t-support__text,
.t-support__body .btn-wrap {
	display: none;
}
}
@media screen and (max-width: 768px) {
#t-support {
	padding: 0 0 min(16vw, 60px);
}
.t-support__bg {
	top: min(53.3333vw, 200px);
	bottom: inherit;
}
#t-support .inner {
	width: 100%;
}
.t-support__home {
    max-width: inherit;
	padding: 0 min(2.6666vw, 10px);
}
.t-support__home::after {
	width: min(11.4666vw, 43px);
	height: min(10.1333vw, 38px);
	right: min(4.5333vw, 17px);
	bottom: max(-2.6666vw, -10px);
}
.t-support__home-in {
	padding: 0;
}
.t-support__head {
	max-width: inherit;
	margin: 0 0 min(10.6666vw, 40px);
}
.t-support_welcome {
	margin: 0 0 min(4.2666vw, 16px);
}
.t-support_welcome img {
	max-width: min(44.4vw, 167px);
}
.t-support__title {
	font-size: min(6.4vw, 2.4rem);
}
.t-support__title span {
	font-size: min(8vw, 3rem);
}
.t-support__head .t-support__text,
.t-support__head .btn-wrap {
	display: none;
}
.t-support__list {
	margin: 0;
}
.t-support__list > li {
	padding: min(2.6666vw, 10px);
}
.t-support__list > li:nth-child(1) {
	padding-top: 0;
}
.t-support__list > li:not(:last-child) {
	border-width: 1px;
}
.t-support__item-img {
	width: min(44vw, 165px);
}
.t-support__item-content {
	width: calc(100% - min(44vw, 165px));
}
.t-support__item-title__sub {
	font-size: min(3.7333vw, 1.4rem);
	margin: 0 0 min(1.0666vw, 4px);
}
.t-support__item-title__main {
	font-size: min(5.3333vw, 2rem);
}
.t-support__body {
	padding: 0 0 min(12.2666vw, 46px);
}
.t-support__body .t-support__text {
	margin: min(7.4666vw, 28px) 0 0;
}
.t-support__body .btn-wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin: min(7.4666vw, 28px) 0 0;
}
}

/* おすすめ商材
-------------------------------------------------------- */
#t-product {
	padding: 120px 0;
	position: relative;
	z-index: 1;
}
#t-product::after {
	content: "";
	width: 322px;
	height: 178px;
	background: url(../img/top/product_flag.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: -38px;
	left: 0;
	z-index: 0;
}
#t-product .inner {
	position: relative;
	z-index: 1;
}
.t-product__list > li {
	width: 24%;
	height: 100%;
	background: #fff;
	border: solid 1px #bfbfbf;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	margin-top: min(5.3333vw, 20px);
	margin-right: 1.3333%;
	position: relative;
}
.t-product__list > li.is-recommend::before {
	content: "おすすめ";
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	width: 79px;
	height: 79px;
	background: url(../img/cmn/icon_recommend_pk.svg) no-repeat;
	background-size: contain;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	position: absolute;
	top: -20px;
	left: -14px;
	z-index: 1;
}
.t-product__list > li > a,
.t-product__item-content {
}
.t-product__list > li > a {
	border: solid 1px #bfbfbf;
	position: relative;
	z-index: 0;
}
.t-product__item-content {
	padding: 24px 24px 10px;	
}
.t-product__item-img {
	max-width: 180px;
	width: 100%;
	margin-inline: auto;
	margin-bottom: 24px;
}
.t-product__item-img > div {
	background-color: #ccc;
	overflow: hidden;
	padding-top: 126.8%;
	position: relative;
}
.t-product__item-img > div img {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: 0;
	object-fit: cover;
}
.t-product__item-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 10px;
}
.t-product__item-info > li:not(:last-child) {
	margin: 0 0 min(.2666vw, 1px);
}
.t-product__item-price {
	border-top: solid 1px #bfbfbf;
	padding: 12px 16px 8px;
}
.t-product__item-price__regular {
	color: #a0a0a0;
	font-size: 1.4rem;
	text-decoration: line-through;
	margin: 0 0 max(-.5333vw, -2px);
}
.t-product__item-price__sale {
	color: #ff0000;
	font-weight: 700;
}
.t-product__item-price__sale > span {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.t-product__item-price__sale > span > span {
	margin: -8px 0 0;
}
.t-product__item-price__sale > span > span > span {
	font-size: 2rem;
}
#t-product .btn-wrap {
	margin: min(8vw, 30px) 0 0;
}
@media screen and (min-width: 1025px) {
.t-product__list > li:nth-child(-n + 4) {
	margin-top: 0;
}
.t-product__list > li:nth-child(4n) {
	margin-right: 0;
}
}
@media screen and (max-width: 1024px) {
#t-product::after {
	width: min(42.6666vw, 160px);
	height: min(23.7333vw, 89px);
	top: max(-4vw, -15px);
	right: 6%;
	left: inherit;
}
.t-product__list > li {
	width: 49%;
	margin-right: 2%;
}
.t-product__list > li:nth-child(-n + 2) {
	margin-top: 0;
}
.t-product__list > li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
#t-product {
	padding: min(20vw, 75px) 0;
}
#t-product .c-title01 {
	margin: 0 0 min(9.6vw, 36px);
}
.t-product__list > li.is-recommend::before {
	font-size: min(2.9333vw, 1.1rem);
	width: min(16vw, 60px);
	height: min(16vw, 60px);
	top: max(-3.2vw, -12px);
	left: max(-2.9333vw, -11px);
}
.t-product__item-content {
	padding: min(4.2666vw, 16px) min(2.6666vw, 10px) min(2.6666vw, 10px);	
}
.t-product__item-img {
	max-width: min(24vw, 90px);
	margin-bottom: min(6.4vw, 24px);
}
.t-product__item-title {
	font-size: min(3.7333vw, 1.4rem);
	margin: 0 0 min(2.6666vw, 10px);
}
.t-product__item-info > li:not(:last-child) {
	margin: 0 0 min(2.1333vw, 8px);
}
.t-product__item-price {
	padding: min(2.6666vw, 10px) min(2.6666vw, 10px) min(2.1333vw, 8px);
}
.t-product__item-price__regular,
.t-product__item-price__sale {
	font-size: min(3.2vw, 1.2rem);
}
.t-product__item-price__sale > span > span {
	margin: max(-1.6vw, -6px) 0 0;
}
.t-product__item-price__sale > span > span > span {
	font-size: min(4.8vw, 1.8rem);
}
}

/* 動画
-------------------------------------------------------- */
#t-movie {
	padding: 100px 0;
	position: relative;
}
.t-movie__bg {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}
#t-movie .inner {
	position: relative;
	z-index: 1;
}
.t-movie__title {
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 8px;
}
.t-movie__title > span > span {
	color: #f19149;
}
.t-movie__youtube {
	max-width: 1020px;
	width: 100%;
	border: solid 1px #f19149;
	margin-inline: auto;
	padding: 10px;
}
.t-movie__youtube > div {
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
}
.t-movie__youtube > div > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (min-width: 1025px) {
.t-movie__title > span {
	display: inline-block;
	padding: 0 35px;
	position: relative;
}
.t-movie__title > span::before,
.t-movie__title > span::after {
	content: "";
	width: 27px;
	height: 36px;
	background: url(../img/cmn/bubble01_or.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 4px;
}
.t-movie__title > span::before {
	left: 0;
	transform: scale(-1, 1);
}
.t-movie__title > span::after {
	right: 0;
}
}
@media screen and (max-width: 1024px) {
.t-movie__title .is-sp {
	display: block;
}
.t-movie__title > span > span {
	display: inline-block;
	padding: 0 35px;
	position: relative;
}
.t-movie__title > span > span::before,
.t-movie__title > span > span::after {
	content: "";
	width: 27px;
	height: 36px;
	background: url(../img/cmn/bubble01_or.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 4px;
}
.t-movie__title > span > span::before {
	left: 0;
	transform: scale(-1, 1);
}
.t-movie__title > span > span::after {
	right: 0;
}
}
@media screen and (max-width: 768px) {
#t-movie {
	padding: min(13.3333vw, 50px) 0;
}
.t-movie__title {
	font-size: min(4.5333vw, 1.7rem);
	margin: 0 0 min(6.4vw, 24px);
}
.t-movie__title > span > span {
	padding: 0 min(5.3333vw, 20px);
}
.t-movie__title > span > span::before,
.t-movie__title > span > span::after {
	width: min(3.7333vw, 14px);
	height: min(4.8vw, 18px);
	top: min(1.6vw, 6px);
}
.t-movie__youtube {
	padding: min(1.333vw, 5px);
}
}


/* 採用情報
-------------------------------------------------------- */
#t-recruit {
	background: url(../img/top/recruit_bg.jpg?260622) no-repeat center center;
	background-size: cover;
	overflow: hidden;
	padding: min(9.375vw, 96px) 0;
}
.t-recruit__bg {
	width: 100%;
	background: rgba(255, 255, 255, .9);
	border-radius: 40px;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	padding: min(8vw, 82px) 0 min(5.8593vw, 60px);
	position: relative;
}
/* .t-recruit__bg::after {
	content: "";
	width: min(8.3984vw, 86px);
	height: min(7.4218vw, 76px);
	background: url(../img/cmn/icon_home_mi.svg) no-repeat;
	background-size: contain;
	position: absolute;
	right: max(-1.3671vw, -14px);
	bottom: max(-2.34375vw, -24px);
} */
.t-recruit__title {
	color: #f19149;
	font-size: min(3.5156vw, 3.6rem);
	font-weight: 700;
}
.t-recruit__text {
	font-size: min(2.9296vw, 3rem);
	font-weight: 700;
	margin: min(.09765vw, 1px) 0 0;
}
.t-recruit__btns {
	max-width: min(38vw, 390px);
	width: 100%;
	margin: min(4.9453vw, 45px) 0 0;
}
.t-recruit__btns > li:not(:last-child) {
	margin: 0 0 min(.78125vw, 8px);
}
@media screen and (min-width: 769px) {
.t-recruit__bg {
	max-width: min(46.875vw, 480px);
}
.t-recruit__btns .c-btn01 {
	font-size: min(1.7578vw, 1.8rem);
}
.t-recruit__btns .c-btn01::after {
	width: min(2.34375vw, 24px);
	height: min(2.1484vw, 22px);
	top: calc(50% - min(1.0742vw, 11px));
	right: min(1.5625vw, 16px);
}
}
@media screen and (max-width: 768px) {
#t-recruit {
	background: #eff1ec;
	padding: 0 0 min(13.3333vw, 50px);
	position: relative;
}
#t-recruit::before,
#t-recruit::after {
	content: "";
}
#t-recruit::before {
	background: url(../img/top/recruit_bg_sp.jpg?260622) no-repeat;
	background-size: contain;
	display: block;
	padding-top: 136.5333%;
	position: relative;
	z-index: 0;
}
#t-recruit::after {
	width: 100%;
	height: min(37.3333vw, 140px);
	background: #eff1ec;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
#t-recruit .inner {
	margin-top: -75%;
	position: relative;
	z-index: 2;
}
.t-recruit__bg {
	border-radius: 20px;
	padding: min(9.6vw, 36px) 0;
}
.t-recruit__bg::after {
	width: min(11.2vw, 42px);
	height: min(9.8666vw, 37px);
	right: 0;
	bottom: max(-3.2vw, -12px);
}
.t-recruit__title {
	font-size: min(6.1333vw, 2.8rem);
}
.t-recruit__text {
	font-size: min(5.3333vw, 2rem);
	margin: min(-.8vw, -3px) 0 0;
}
.t-recruit__btns {
	max-width: min(80vw, 300px);
	margin: min(3.7333vw, 14px) 0 0;
}
.t-recruit__btns > li:not(:last-child) {
	margin: 0 0 min(1.6vw, 6px);
}
}

/* お知らせと会社案内
-------------------------------------------------------- */
#t-information {
	padding: 100px 0 36px;
	position: relative;
}
#t-information > .inner {
	display: -webkit-box;
	display: flex;
}
#t-information > .inner > section {
	width: calc((100% - (16px + min(6vw, 80px))) / 2);
}
.t-information__line {
	width: 16px;
	background-image: url(../img/top/information_line.svg);
	background-repeat: repeat-y;
	background-size: 100% auto;
	margin: 0 min(6vw, 80px);
}
.t-news__list > li:not(:last-child) {
	margin: 0 0 20px;
}
.t-news__item-meta {
	color: #7fab2a;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	margin: 0 0 7px;
}
.t-news__item-category {
	margin: 0 0 0 20px;
}
.t-news__item-category span {
	min-width: 110px;
	border: solid 1px #7fab2a;
	border-radius: 15px;
	display: inline-block;
	line-height: 1.2;
	text-align: center;
	padding: min(.5333vw, 2px) min(1.0666vw, 4px);
}
#t-news .btn-wrap {
	margin: 56px 0 0;
}
#t-company::after {
	content: "";
	width: 313px;
	height: 171px;
	background: url(../img/top/information_flag.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: -68px;
	right: 0;
}
.t-company__list > li:not(:last-child) {
	margin: 0 0 min(8vw, 32px);
}
.t-company__list > li > a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
}
.t-company__item-img {
	width: 100px;
}
.t-company__item-img > div {
	border-radius: 50%;
	overflow: hidden;
	padding-top: 100%;
	position: relative;
}
.t-company__item-img > div img {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: 0;
	object-fit: cover;
}
.t-company__item-content {
	width: calc(100% - 100px);
	padding: 0 0 0 24px;
}
.t-company__item-title {
	color: #7fab2a;
	font-size: 2.4rem;
	font-weight: 700;
}
.t-company__item-text {
	margin: max(-.8vw, -3px) 0 0;
}
@media screen and (max-width: 1024px) {
#t-information > .inner {
	width: 100%;
	flex-wrap: wrap;
}
#t-information > .inner > section {
	width: 100%;
	padding: 0 2.6667%;
}
#t-information > .inner > section:not(:last-child) {
	margin: 0 0 min(19.7333vw, 74px);
}
#t-company {
	position: relative;
}
#t-company::after {
	width: min(41.7333vw, 157px);
	height: min(22.8vw, 86px);
	top: max(-4.8vw, -18px);
}
}
@media screen and (min-width: 769px) {
.t-news__list > li > a,
.t-company__list > li > a {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 768px) {
#t-information {
	padding: min(19.7333vw, 74px) 0 min(25.3333vw, 95px);
}
.t-news__item-meta {
	margin: 0 0 min(1.3333vw, 5px);
}
.t-news__item-category {
	margin: 0 0 0 min(4.2666vw, 16px);
}
.t-news__item-category span {
	min-width: min(22.1333vw, 83px);
}
#t-news .btn-wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	margin: min(10.6666vw, 40px) 0 0;
}
.t-company__item-img {
	width: min(20.2666vw, 76px);
}
.t-company__item-content {
	width: calc(100% - min(20.2666vw, 76px));
	padding: 0 0 0 min(4vw, 15px);
}
.t-company__item-title {
	font-size: min(4.5333vw, 1.7rem);
}
}

/* --------------------------------------------------------
	ページ系
-------------------------------------------------------- */
/* レイアウト
-------------------------------------------------------- */
.p-page-section {
	padding: 100px 0 100px;
}
.p-page-section.m-pt48 {
	padding-top: 48px;
}
@media screen and (max-width: 768px) {
.p-page-section {
	padding-top: calc(100vw * (100 / 750));
	padding-bottom: calc(100vw * (120 / 750));
}
.p-page-section.m-pt48 {
	padding-top: min(12vw, 45px);
}
}


/* パンくず
-------------------------------------------------------- */
#breadcrumb {
	padding: 14px 0 0;
}
#breadcrumb.m-page {
	background: #f9f4f4;
	padding: 10px 0;
}
.breadcrumb__list {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.breadcrumb__list > li {
	color: #a0a0a0;
	font-size: 1.4rem;
}
.breadcrumb__list > li:not(:last-child)::after {
	content: "\03e";
}
@media screen and (max-width: 768px) {
#breadcrumb {
	padding: min(2.6666vw, 10px) 0 0;
}
#breadcrumb.m-page {
	padding: min(2.6666vw, 10px) 0;
}
.breadcrumb__list > li {
	font-size: min(3.2vw, 1.2rem);
}
}


/* ページタイトル
-------------------------------------------------------- */
.p-lower-top {
	position: relative;
}
.p-lower-top__img {
	height: min(53.3333vw, 200px);
	position: relative;
	z-index: 0;
}
.p-lower-top__img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.p-lower-top__title {
	max-width: 900px;
	width: 86.6666%;
	background: #fff;
	text-align: center;
	margin-inline: auto;
	margin-top: -65px;
	position: relative;
	padding: 30px 8px 22px;
	z-index: 1;
}
.p-lower-top__title::before {
	content: "";
	width: min(26.6666vw, 100px);
	height: min(.8vw, 3px);
	background: #7fab2a;
	position: absolute;
	bottom: 0;
	left: calc(50% - 50px);
}
.p-lower-top__title-en {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.2;
}
.p-lower-top__title-ja {
	margin: 7px 0 0;
}
.p-lower-top #breadcrumb {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
@media screen and (max-width: 768px) {
.p-lower-top__title {
	padding: min(4.2666vw, 16px) min(2.1333vw, 8px) min(3.4666vw, 13px);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.p-lower-top__title-en {
	font-size: min(6.1333vw, 2.3rem);
}
.p-lower-top__title-ja {
	font-size: min(3.4666vw, 1.3rem);
	margin: max(-.2666vw, -1px) 0 0;
}
}

/* --------------------------------------------------------
	投稿系
-------------------------------------------------------- */
.c-post-nav {
	margin: 0 0 72px;
}
.c-post-nav__list {
	margin-top: max(-1.6vw, -6px);
	margin-right: max(-2.6666vw, -10px);
}
.c-post-nav__list > li {
	margin-top: min(1.6vw,6px);
	margin-right: min(2.6666vw, 10px);
}
.c-post-nav__list > li > a {
	color: #7fab2a;
	font-weight: 700;
	min-width: 90px;
	border-radius: 15px;
	display: inline-block;
	text-align: center;
	padding: 2px 16px;
}
.c-post-nav__list > li > a:hover,
.c-post-nav__list > li.is-active > a {
	color: #fff;
	background: #7fab2a;
}
.c-post-nav__list > li > a:hover {
	opacity: 1;
}
@media screen and (max-width: 768px) {
.c-post-nav {
	margin: 0 0 min(8vw, 30px);
}
.c-post-nav__list > li > a {
	min-width: min(20vw, 75px);
	padding: min(.5333vw, 2px) min(4.2666vw, 16px);
}
}

/* 投稿一覧
-------------------------------------------------------- */
.p-news__list > li {
	width: 48%;
	margin-top: 40px;
}
.p-news__list > li > a {
	height: 100%;
	background: #fff;
	box-shadow: 0px 10px 9px 1px rgba(45, 43, 34, 0.05);
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.p-news__item-img {
	overflow: hidden;
	padding-top: 50%;
	position: relative;
}
.p-news__item-img img {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: 0;
	object-fit: cover;
}
.p-news__item-content {
	height: 100%;
	background: #fff;
	border-bottom: solid 1px #7fab2a;
	padding: 24px 16px;
}
.p-news__meta {
	color: #7fab2a;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;v
	align-items: center;
	margin: 0 0 7px;
}
.p-news__category {
	margin: 0 0 0 15px;
}
.p-news__category span {
	min-width: 110px;
	background: #fff;
	border: solid 1px #7fab2a;
	border-radius: 15px;
	display: inline-block;
	line-height: 1.2;
	text-align: center;
	padding: 2px 4px;
}
@media screen and (min-width: 769px) {
.p-news__list > li {
	margin-right: 4%;
}
.p-news__list > li:nth-child(-n + 2) {
	margin-top: 0;
}
.p-news__list > li:nth-child(2n) {
	margin-right: 0;
}
.p-news__item-content {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 768px) {
.p-news__list > li {
	width: 100%;
	margin-top: min(5.3333vw, 20px);
}
.p-news__list > li:nth-child(1) {
	margin-top: 0;
}
.p-news__item-content {
	padding: min(6.4vw, 24px) min(3.2vw, 12px);
}
.p-news__meta {
	margin: 0 0 min(2.6666vw, 10px);
}
.p-news__category {
	margin: 0 0 0 min(5.3333vw, 20px);
}
.p-news__category span {
	font-size: min(3.2vw, 1.2rem);
	min-width: inherit;
	padding: min(1.0666vw, 4px) min(2.1333vw, 8px);
}
}

/* ページャー */
.c-pager {
	margin: 40px 0 0;
}
.wp-pagenavi {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.wp-pagenavi a:not(.previouspostslink):not(.nextpostslink),
.wp-pagenavi span {
	color: #7fab2a;
	font-size: 2.6rem;
	margin: 0 8px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	width: min(11.4666vw, 43px);
	height: min(11.4666vw, 43px);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	overflow: hidden;
	text-indent: -999999999999px;
	position: relative;
}
.wp-pagenavi .previouspostslink {
	margin: 0 32px 0 0;
}
.wp-pagenavi .nextpostslink {
	margin: 0 0 0 32px;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
	content: "";
	position: absolute;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	width: min(6.4vw, 24px);
	height: min(5.8666vw, 22px);
	background-image: url("../img/cmn/arrow_r_gy.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - min(2.9333vw, 11px));
	left: calc(50% - min(3.2vw, 12px));
	transition: .5s;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
	width: 100%;
	height: 100%;
	border: solid 1px #7fab2a;
	border-radius: 50%;
	opacity: 0;
	top: 0;
	left: 0;
	transition: .5s;
}
.wp-pagenavi .previouspostslink::before {
	transform: scale(-1, 1);
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
	opacity: 1;
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
	background-image: url("../img/cmn/arrow_r_mi.svg");
}
.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
	opacity: 1;
}
@media screen and (max-width: 768px) {
.c-pager {
	margin: min(5.3333vw, 20px) 0 0;
}
.wp-pagenavi a:not(.previouspostslink):not(.nextpostslink),
.wp-pagenavi span {
	font-size: min(4.8vw, 1.8rem);
}
.wp-pagenavi .previouspostslink {
	margin: 0 min(6.4vw, 24px) 0 0;
}
.wp-pagenavi .nextpostslink {
	margin: 0 0 0 min(6.4vw, 24px);
}
}

/* 投稿詳細
-------------------------------------------------------- */
.c-post-article__head {
	border-bottom: solid 1px #a0a0a0;
	margin: 0 0 35px;
	padding: 0 0 15px;
}
.c-post-article__head .p-news__category {
	margin: 0 0 0 10px;
}
.c-post-article__head .p-news__category span {
    min-width: inherit;
    padding: 3px 10px;
}
.c-post-article .p-news__title {
	font-size: 3rem;
	font-weight: 700;
}
.c-post-article__body {
	border-bottom: solid 1px #a0a0a0;
	padding: 0 0 100px;
}

@media screen and (max-width: 768px) {
.c-post-article__head {
	margin: 0 0 min(6.4vw, 24px);
	padding: 0 0 min(3.2vw, 12px);
}
.c-post-article__head .p-news__category {
	margin: 0 0 0 min(2.1333vw, 8px);
}
.c-post-article__head .p-news__category span {
    padding: min(1.0666vw, 4px) min(2.1333vw, 8px);
}
.c-post-article .p-news__title {
	font-size: min(4vw, 1.5rem);
}
.c-post-article__body {
	padding: 0 0 min(16vw, 60px);
}
}
/* 緑下線
-------------------------------------------------------- */
.c-post-article__body h1,
.c-post-article__body h2 {
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 48px;
}
.c-post-article__body h1::after,
.c-post-article__body h2::after {
	content: "";
	width: min(16vw, 60px);
	height: min(.8vw, 3px);
	background: #7fab2a;
	display: block;
	margin: 2px 0 0;
}
@media screen and (max-width: 768px) {
.c-post-article__body h1,
.c-post-article__body h2 {
	font-size: min(5.3333vw, 2rem);
	margin: 0 0 min(6.4vw, 24px);
}
.c-post-article__body h1::after,
.c-post-article__body h2::after {
	margin: min(1.8666vw, 7px) 0 0;
}
}

/* 文字緑下線グレー
-------------------------------------------------------- */
.c-post-article__body h3 {
	color: #7fab2a;
	font-size: 2.4rem;
	font-weight: 700;
	border-bottom: solid 1px #c9c9c9;
	margin: 0 0 40px;
	padding: 0 0 8px;
}
@media screen and (max-width: 768px) {
.c-post-article__body h3 {
	font-size: min(4.5333vw, 1.7rem);
	margin: 0 0 min(8vw, 30px);
	padding: 0 0 min(1.6vw, 6px);
}
}

/* 文字のみ
-------------------------------------------------------- */
.c-post-article__body h4,
.c-post-article__body h5,
.c-post-article__body h6 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 24px;
}
@media screen and (max-width: 768px) {
.c-post-article__body h4,
.c-post-article__body h5,
.c-post-article__body h6 {
	font-size: min(4vw, 1.5rem);
	margin: 0 0 min(4.8vw, 18px);
}
}

.c-post-article__body a {
	color: #7fab2a;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.c-post-article__body a:hover {
	opacity: 1;
	text-decoration-color: transparent;
}

.c-single-pager {
	font-size: 1.8rem;
	margin: 24px 0 0;
	position: relative;
}
.c-single-pager > a:hover {
	opacity: 1;
}
.c-single-pager__back {
	color: #7fab2a;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.c-single-pager__back:hover {
	text-decoration-color: transparent;
}
.c-single-pager__prev,
.c-single-pager__next {
	color: #a0a0a0;
	display: inline-block;
	position: absolute;
	top: 0;
}
.c-single-pager__prev {
	padding: 0 0 0 40px;
	left: 0;
}
.c-single-pager__next {
	padding: 0 40px 0 0;
	right: 0;
}
.c-single-pager__prev::before,
.c-single-pager__next::after {
	content: "";
	width: 24px;
	height: 22px;
	background-image: url(../img/cmn/arrow_r_gy.svg);
	position: absolute;
	top: 5px;
	transition: .5s;
}
.c-single-pager__prev::before {
	left: 0;
	transform: scale(-1, 1);
}
.c-single-pager__next::after {
	right: 0;
}
.c-single-pager__prev:hover,
.c-single-pager__next:hover {
	color: #7fab2a;
}
.c-single-pager__prev:hover::before,
.c-single-pager__next:hover::after {
	background-image: url(../img/cmn/arrow_r_mi.svg);
}
@media screen and (max-width: 768px) {
.c-single-pager {
	font-size: min(3.7333vw, 1.4rem);
	margin: min(4.2666vw, 16px) 0 0;
}
.c-single-pager__prev {
	padding: 0 0 0 min(8vw, 30px);
}
.c-single-pager__next {
	padding: 0 min(8vw, 30px) 0 0;
}
.c-single-pager__prev::before,
.c-single-pager__next::after {
	width: min(4.8vw, 18px);
	height: min(4.2666vw, 16px);
	top: calc(50% - min(2.1333vw, 8px));
}
}

/* --------------------------------------------------------
	おすすめ商材
-------------------------------------------------------- */
.p-product-categories > div:not(:last-child) {
	margin-bottom: 80px;
}
.p-product-categories .t-product__list {
	max-width: 1100px;
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
.p-product-categories > div:not(:last-child) {
	margin-bottom: min(16vw, 60px);
}
}

.p-product-contact {
	background: #eee;
	margin: 100px 0 0;
	padding: 48px 2.6667%;
}
.p-product-contact__title {
	color: #7fab2a;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 16px;
}
.p-product-contact__title span {
	display: inline-block;
	padding: 0 60px;
	position: relative;
}
.p-product-contact__title span::before,
.p-product-contact__title span::after {
	content: "";
	width: 26px;
	height: 43px;
	background: url(../img/cmn/bubble02_mi.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 21.5px);
}
.p-product-contact__title span::before {
	left: 0;
	transform: scale(-1, 1);
}
.p-product-contact__title span::after {
	right: 0;
}
.p-product-contact__list {
	max-width: 1030px;
	width: 100%;
	margin-inline: auto;
}
.p-product-contact__list > li {
	width: 49%;
}
.p-product-contact__list > li:not(:last-child) {
	margin: 0 2% 0 0;
}
.p-product-contact__list > li > a > span,
.p-product-contact__list > li > a > span > span {
	height: 100%;
	border-radius: 100px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.p-product-contact__list > li > a > span {
	border: solid 2px #7fab2a;
	position: relative;
}
.p-product-contact__list > li > a > span > span {
	color: #fff;
	width: 100%;
	background: #7fab2a;
	border: solid 3px #fff;
	line-height: 1;
	padding: 11px 10px;
	position: relative;
}
.p-product-contact__list > li.m-mail > a > span > span {
	color: #7fab2a;
	background: #fff;
}
.p-product-contact__list-item > a > span > span::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 24px;
}
.p-product-contact__list-item.m-tel > a > span > span::before {
	width: 24px;
	height: 25px;
	background-image: url(../img/cmn/icon_tel_wh.svg);
	top: calc(50% - 12.5px);
}
.p-product-contact__list-item.m-mail > a > span > span::before {
	width: 25px;
	height: 20px;
	background-image: url(../img/cmn/icon_mail_mi.svg);
	top: calc(50% - 10px);
}
.p-product-contact__list > li > a > span > span > span {
	width: fit-content;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.p-product-contact__item-num,
.p-product-contact__item-text {
	font-weight: 700;
}
.p-product-contact__item-num {
	font-size: 2.6rem;
}
.p-product-contact__item-text {
	font-size: 2rem;
}
.p-product-contact__item-hours {
	margin: 8px 0 0;
}
@media screen and (min-width: 1025px) {
.p-product-contact__list-item.m-tel > a {
	pointer-events: none;
}
}
@media screen and (max-width: 768px) {
.p-product-contact {
	margin: min(16vw, 60px) 0 0;
	padding: min(9.6vw, 36px) 2.6667%;
}
.p-product-contact__title {
	font-size: min(4vw, 1.5rem);
	margin: 0 0 min(3.2vw, 12px);
}
.p-product-contact__title span {
	padding: 0 min(10.6666vw, 45px);
}
.p-product-contact__title span::before,
.p-product-contact__title span::after {
	width: min(5.3333vw, 20px);
	height: min(8.8vw, 33px);
	top: calc(50% - min(4.4vw, 16.5px));
}
.p-product-contact__list > li {
	width: 100%;
}
.p-product-contact__list > li:not(:last-child) {
	margin: 0 0 min(2.6666vw, 10px);
}
.p-product-contact__list > li > a > span {
	border-width: 1px;
}
.p-product-contact__list > li > a > span > span {
	border-width: 2px;
	padding: min(2.6666vw, 10px);
}
.p-product-contact__list-item > a > span > span::before {
	left: min(4.8vw, 18px);
}
.p-product-contact__list-item.m-tel > a > span > span::before {
	width: min(4vw, 15px);
	height: min(4.2666vw, 16px);
	top: calc(50% - min(2.1333vw, 8px));
}
.p-product-contact__list-item.m-mail > a > span > span::before {
	width: min(4vw, 15px);
	height: min(3.2vw, 12px);
	top: calc(50% - min(1.6vw, 6px));
}
.p-product-contact__list > li > a > span > span > span {
	width: 100%;
}
.p-product-contact__item-num {
	font-size: min(4.8vw, 1.8rem);
}
.p-product-contact__item-text {
	font-size: min(4vw, 1.5rem);
}
.p-product-contact__item-hours {
	font-size: min(3.2vw, 1.2rem);
	margin: min(1.0666vw, 4px) 0 0;
}
}

.p-contact-tel__list > li {
	background: #fff;
	box-shadow: 0px 10px 9px 1px rgba(45, 43, 34, 0.05);
}
.p-contact-tel__list.m-inquiry {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.p-contact-tel__list.m-inquiry > li {
	width: 48%;
	margin-right: 4%;
}
.p-contact-tel__head,
.p-contact-form__head {
	color: #59493f;
	border-bottom: solid 1px #c9c9c9;
	text-align: center;
	padding: 15px 10px 10px;
}
.p-contact-tel__title,
.p-contact-form__title {
	font-size: 2.4rem;
	font-weight: 700;
}
.p-contact-tel__title > span,
.p-contact-form__title > p > span {
	display: inline-block;
	padding: 0 0 0 32px;
	position: relative;
}
.p-contact-tel__title > span::before,
.p-contact-form__title > p > span::before {
	content: "";
	width: 25px;
	height: 27px;
	background-image: url(../img/cmn/icon_tel_mi.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 8px;
	left: 0;
}
.p-contact-tel__item.m-support .p-contact-tel__title > span::before {
	background-image: url(../img/cmn/icon_tel_pk.svg);
}
.p-contact-form__title > p > span::before {
	content: "";
	width: 20px;
	height: 16px;
	background-image: url(../img/cmn/icon_mail_br.svg);
	top: 14px;
}
.p-contact-tel__body {
	padding: 24px 16px;
}
.p-contact-tel__nums > li:not(:last-child) {
	margin: 0 0 8px;
}
.p-contact-tel__nums > li > a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
.p-contact-tel__nums {
	color: #7fab2a;
	font-weight: 700;
	width: fit-content;
	margin: auto;
}
.p-contact-tel__label {
	min-width: 120px;
	border: solid 1px #7fab2a;
	border-radius: 5px;
	flex-shrink: 0;
	text-align: center;
}
.p-contact-tel__num {
	font-size: 3rem;
	line-height: 1.2;
	margin: 0 0 0 24px;
}
.p-contact-tel__text {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	margin: 15px 0 0;
}
.p-contact-tel__item.m-support .p-contact-tel__nums,
.p-contact-tel__item.m-support .p-contact-tel__text {
	color: #eb6877;
}
.p-contact-tel__item.m-support .p-contact-tel__label {
	border-color: #eb6877;
}
.p-contact-tel__list.m-entry .p-contact-tel__title > span::before {
	background-image: url(../img/cmn/icon_tel_or.svg);
}
.p-contact-tel__list.m-entry .p-contact-tel__body {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.p-contact-tel__list.m-entry .p-contact-tel__nums,
.p-contact-tel__list.m-entry .p-contact-tel__text {
	color: #f19149;
}
.p-contact-tel__list.m-entry .p-contact-tel__label {
	border-color: #f19149;
}
.p-contact-tel__list.m-entry .p-contact-tel__nums {
	margin: 0 62px 0 0;
}
@media screen and (min-width: 769px) {
.p-contact-tel__list.m-inquiry > li:nth-child(2n) {
	margin-right: 0;
}
.p-contact-tel__title {
	font-size: min(2.3437vw, 2.4rem);
}
.p-contact-tel__title > span {
	padding: 0 0 0 min(3.125vw, 32px);
}
.p-contact-tel__title > span::before {
	width: min(2.4414vw, 25px);
	height: min(2.6367vw, 27px);
	top: min(.7812vw, 8px);
}
.p-contact-tel__hours {
	font-size: min(1.5625vw, 1.6rem);
}
.p-contact-tel__body {
	padding: min(2.3437vw, 24px) min(1.5625vw, 16px);
}
.p-contact-tel__nums > li:not(:last-child) {
	margin: 0 0 min(.7812vw, 8px);
}
.p-contact-tel__label {
	font-size: min(1.5625vw, 1.6rem);
	min-width: min(11.718vw, 120px);
}
.p-contact-tel__num {
	font-size: min(2.929vw, 3rem);
	margin: 0 0 0 min(2.3437vw, 24px);
}
.p-contact-tel__text {
	font-size: min(1.7578vw, 1.8rem);
	margin: min(1.4648vw, 15px) 0 0;
}
.p-contact-tel__list.m-entry .p-contact-tel__nums {
	flex-shrink: 0;
	margin: 0 min(6.054vw, 62px) 0 0;
}
.c-note__list01 > li {
	font-size: min(1.5625vw, 1.6rem);
	padding: 0 0 0 min(2.3437vw, 24px);
}
.c-note__list01 > li:not(:last-child) {
	margin: 0 0 min(.5859vw, 6px);
}
.c-note__list01 > li::before {
	width: min(.4882vw, 5px);
	height: min(.4882vw, 5px);
	top: min(1.0742vw, 11px);
}
}
@media screen and (max-width: 768px) {
.p-contact-tel__list.m-inquiry > li {
	width: 100%;
	margin-top: min(5.3333vw, 20px);
	margin-right: 0;
}
.p-contact-tel__list.m-inquiry > li:nth-child(1) {
	margin-top: 0;
}
.p-contact-tel__head,
.p-contact-form__head {
	padding: min(4.8vw, 18px) min(2.6666vw, 10px) min(2.6666vw, 10px);
}
.p-contact-tel__title,
.p-contact-form__title {
	font-size: min(4.5333vw, 1.7rem);
}
.p-contact-tel__title > span,
.p-contact-form__title > p > span {
	padding: 0 0 0 min(5.3333vw, 20px);
}
.p-contact-tel__title > span::before {
	width: min(4vw, 15px);
	height: min(4.2666vw, 16px);
	top: min(1.8666vw, 7px);
}
.p-contact-form__title > p > span::before {
	width: min(4vw, 15px);
	height: min(3.2vw, 12px);
	top: min(2.4vw, 9px);
}

.p-contact-tel__body {
	padding: min(4.8vw, 18px);
}
.p-contact-tel__nums {
	margin: 0;
}
.p-contact-tel__nums > li:not(:last-child) {
	margin: 0 0 min(4.2666vw, 16px);
}
.p-contact-tel__nums > li > a {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: start;
	align-items: flex-start;
}
.p-contact-tel__label {
	min-width: min(24vw, 90px);
	margin: 0 0 min(2.1333vw, 8px);
}
.p-contact-tel__num {
	font-size: min(5.3333vw, 2rem);
	margin: 0;
}
.p-contact-tel__text {
	font-size: min(3.7333vw, 1.4rem);
	text-align: left;
	margin: min(2.6666vw, 10px) 0 0;
}
.p-contact-tel__list.m-entry .p-contact-tel__body {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: start;
	align-items: flex-start;
}
.p-contact-tel__list.m-entry .p-contact-tel__nums {
	margin: 0 0 min(2.6666vw, 10px);
}
}

.p-contact-form {
	margin: 30px 0 0;
}
.p-contact-form__head,
.p-contact-form__fields {
	background: #fff;
	box-shadow: 0px 10px 9px 1px rgba(45, 43, 34, 0.05);
}
.p-contact-form__title > span {
	padding: 0 0 0 30px;
}
.p-contact-form__title > span::before {
	width: 20px;
	height: 16px;
	background-image: url(../img/cmn/icon_mail_br.svg);
	top: 14px;
}
.p-contact-form__required {
	color: #eb6877;
}
.p-contact-form__fields {
	padding: 32px 30px 48px;
}
.p-contact-form__text {
	margin: 0 0 40px;
}
.p-contact-form__address > div:not(:last-child),
.p-contact-form__address > div > dt,
.p-contact-form__name > div > dt {
	margin: 0 0 4px;
}
.p-contact-form__address > div > dt,
.p-contact-form__name > div > dt {
	color: #494a50;
	font-size: 1.4rem;
}
.p-contact-form__name {
	display: -webkit-box;
	display: flex;
}
.p-contact-form__name > div {
	max-width: 240px;
	width: 100%;
}
.p-contact-form__name > div:not(:last-child) {
	margin: 0 20px 0 0;
}
.p-contact-form__note {
	color: #697073;
	font-size: 1.4rem;
	margin: 4px 0 0;
}
.p-contact-form__privacy-text {
	margin: 0 0 4px;
}
.p-contact-form__privacy a {
	color: #7fab2a;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.p-contact-form__privacy a:hover {
	text-decoration-color: transparent;
	opacity: 1;
}
.p-contact-form__submit {
	margin: 48px 0 0;
}
.p-contact-form__submit-text {
	margin: 0 0 24px;
}
.p-contact-form__submit-btn {
	max-width: 391px;
	width: 100%;
	background: #fff;
	border: solid 1px #7fab2a;
	border-radius: 25px;
	display: -webkit-box;
	display: flex;
	overflow: hidden;
	position: relative;
}
.p-contact-form__submit-btn > p,
.p-contact-form__submit-btn > p > input {
	width: 100%;
	background: none;
	display: -webkit-box;
	display: flex;
}
.p-contact-form__submit-btn > p {
	position: relative;
	z-index: 1;
}
.p-contact-form__submit-btn > p::before {
	content: "";
	width: 24px;
	height: 22px;
	background: url(../img/cmn/arrow_r_mi.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 11px);
	right: 20px;
}
.p-contact-form__submit-btn > p > input {
	color: #7fab2a;
	font-size: 1.8rem;
	font-weight: 700;
	padding: 8px;
}
.p-form_submit__btn > p > input:disabled {
	background: #ccc;
}
.wpcf7-spinner { display: none; }
.cf7-cf-turnstile {
	width: fit-content;
	margin: min(4.2666vw, 16px) auto 0 !important;
}

.p-contact-form__tbl ::placeholder { color: #b3b3b3; }
.p-contact-form__tbl ::-ms-input-placeholder { color: #b3b3b3; }
.p-contact-form__tbl :-ms-input-placeholder { color: #b3b3b3; }
.p-contact-form__tbl input[type="text"],
.p-contact-form__tbl input[type="email"],
.p-contact-form__tbl input[type="tel"],
.p-contact-form__tbl select,
.p-contact-form__tbl textarea {
	width: 100%;
	background-color: #eee;
	display: block;
	padding: 12px 18px;
}
.p-contact-form__tbl input.m-middle { max-width: 240px; }
.p-contact-form__tbl select {
	max-width: 260px;
	background-image: url("../img/cmn/arrow_b_bk.svg");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 11px auto;
}
.p-contact-form__tbl textarea {
	height: 186px;
}
.wpcf7-radio {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.wpcf7-radio .wpcf7-list-item {
	margin-top: 7px;
}
.wpcf7-radio .wpcf7-list-item.first {
	margin-top: 0;
}
.wpcf7-radio .wpcf7-list-item-label {
	display: inline-block;
	padding: 0 0 0 min(5.3333vw, 20px);
	position: relative;
}
.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item-label::after {
	content: "";
	border-radius: 50%;
	position: absolute;
}
.wpcf7-radio .wpcf7-list-item-label::before {
	width: 15px;
	height: 15px;
	background: #fff;
	border: solid 1px #ccc;
	top: min(1.8666vw, 7px);
	left: 0;
}
.wpcf7-radio .wpcf7-list-item-label::after {
	width: 11px;
	height: 11px;
	background: #eb6877;
	opacity: 0;
	top: min(2.4vw, 9px);
	left: min(.5333vw, 2px);
}
.wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: inline-block;
	padding: 0 0 0 32px;
	position: relative;
}
.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
	content: "";
	border-radius: 1px;
	position: absolute;
	left: 0;
	transition: .5s;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: solid 1px #999;
	top: 4px;
	z-index: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
	width: 18px;
	height: 17px;
	background-image: url("../img/cmn/icon_check_pk.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0;
	top: 5px;
    left: min(.2666vw, 1px);
	z-index: 1;
}
.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
	opacity: 1;
}
@media screen and (max-width: 768px) {
.p-contact-form {
	margin: min(6.4vw, 24px) 0 0;
}
.p-contact-form__title > span {
	padding: 0 0 0 min(6.4vw, 24px);
}
.p-contact-form__title > span::before {
	width: min(4vw, 15px);
	height: min(3.2vw, 12px);
	top: min(2.4vw, 9px);
}
.p-contact-form__fields {
	padding: min(6.4vw, 24px) min(4.8vw, 18px) min(9.6vw, 36px);
}
.p-contact-form__text {
	margin: 0 0 min(8vw, 30px);
}
.p-contact-form__address > div:not(:last-child) {
	margin: 0 0 min(2.1333vw, 8px);
}
.p-contact-form__address > div > dt,
.p-contact-form__name > div > dt {
	margin: 0 0 min(1.0666vw, 4px);
}
.p-contact-form__address > div > dt,
.p-contact-form__name > div > dt,
.p-contact-form__note {
	font-size: min(3.2vw, 1.2rem);
}
.p-contact-form__name > div {
    max-width: min(48vw, 180px);
}
.p-contact-form__name > div:not(:last-child) {
    margin: 0 min(4vw, 15px) 0 0;
}
.p-contact-form__note {
	margin: min(1.0666vw, 4px) 0 0;
}
.p-contact-form__privacy-text {
	margin: 0 0 min(1.0666vw, 4px);
}
.p-contact-form__submit {
	margin: min(9.6vw, 36px) 0 0;
}
.p-contact-form__submit-text {
	margin: 0 0 min(4.8vw, 18px);
}
.p-contact-form__submit-btn {
	max-width: min(78.1333vw, 293px);
}
.p-contact-form__submit-btn > p::before {
	width: min(4.8vw, 18px);
	height: min(4.2666vw, 16px);
	top: calc(50% - min(2.1333vw, 8px));
	right: min(3.2vw, 12px);
}
.p-contact-form__submit-btn > p > input {
	font-size: min(3.7333vw, 1.4rem);
	padding: min(3.2vw, 12px);
}

.p-contact-form__tbl input[type="text"],
.p-contact-form__tbl input[type="email"],
.p-contact-form__tbl input[type="tel"],
.p-contact-form__tbl select,
.p-contact-form__tbl textarea {
	padding: min(2.6666vw, 10px) min(3.7333vw, 14px);
}
.p-contact-form__tbl input.m-middle { max-width: min(48vw, 180px); }
.p-contact-form__tbl select {
	max-width: min(52vw, 195px);
	background-position: right min(3.2vw, 12px) center;
	background-size: min(2.1333vw, 8px) auto;
}
.p-contact-form__tbl textarea {
	height: min(37.333vw, 140px);
}
.wpcf7-radio .wpcf7-list-item {
	margin-top: min(1.3333vw, 5px);
}
.wpcf7-radio .wpcf7-list-item-label::before {
	width: min(3.2vw, 12px);
	height: min(3.2vw, 12px);
}
.wpcf7-radio .wpcf7-list-item-label::after {
	width: min(2.1333vw, 8px);
	height: min(2.1333vw, 8px);
}
.wpcf7-acceptance .wpcf7-list-item-label {
	padding: 0 0 0 min(6.4vw, 24px);
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
	width: min(4vw, 15px);
	height: min(4vw, 15px);
	top: min(1.3333vw,5px);
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
	width: min(3.7333vw, 14px);
	height: min(3.4666vw, 13px);
	top: min(1.6vw, 6px);
}
}

.p-contact-thanks {
	text-align: center;
	padding: 100px 0;
}
.p-contact-thanks__title {
	font-size: 3rem;
	font-weight: 700;
}
.p-contact-thanks__text {
	color: #697073;
	margin: 24px 0 0;
}
.p-contact-thanks__text a {
	color: #f19149;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.p-contact-thanks__text a:hover {
	text-decoration-color: transparent;
	opacity: 1;
}
@media screen and (min-width: 1025px) {
.p-contact-thanks__text a {
	pointer-events: none;
}
}
@media screen and (max-width: 768px) {
.p-contact-thanks {
	text-align: left;
	padding: min(16vw, 60px) 0;
}
.p-contact-thanks__title {
	font-size: min(5.3333vw, 2rem);
}
.p-contact-thanks__text {
	margin: min(4.8vw, 18px) 0 0;
}
}

/* --------------------------------------------------------
	共通
-------------------------------------------------------- */
.dib {
	display: inline-block;
}

.mt02 {
	margin-top: 2em;
}

.mt20 {
	margin-top: 20px;
}

.mt100 {
	margin-top: 10rem;
}

.mb60 {
	margin-bottom: 5rem;
}

.is-sp_1260 {
	display: none;
}

.c-tbl02 tr th {
	color: #7fab2a;
	font-weight: bold;
	padding-left: 1.8rem;
	padding-bottom: 1rem;
}

.c-tbl02 tr th {
	min-width: 20rem;
}

.c-tbl02 tr th,
.c-tbl02 tr td {
	border-top: 1px solid #c9c9c9;
	border-left: 1px solid #c9c9c9;
	padding: 1rem 1.8rem;
	line-height: 2;
	vertical-align: top;
}

.c-tbl02 tr th {
	background-color: #f2f6e9;
}

.c-tbl02 tr td {
	border-right: 1px solid #c9c9c9;
	background-color: #fff;
}

.c-tbl02,
.c-tbl03 {
	border-bottom: 1px solid #c9c9c9;
}

.c-tbl03 {
	border-right: 1px solid #c9c9c9;
}

.c-tbl03 th.top,
.c-tbl03 th.left02 {
	background-color: #7fab2a;
	color: #fff;
	padding: 1rem .8rem;
	font-weight: bold;
	border-left: 1px solid #fff;
	max-width: 340px;
}

.c-tbl03 th.left {
	background-color: #f2f6e9;
	color: #7fab2a;
	border-top: 1px solid #c9c9c9;
	border-left: 1px solid #c9c9c9;
	font-size: 1.8rem;
	font-weight: bold;
	width: 180px;
	text-align: center;
}
.c-tbl03 th.left02 {
	text-align: center;
}

.c-tbl03 td {
	background-color: #fff;
	padding: 2rem .8rem 1rem;
	vertical-align: top;
	border-left: 1px solid #c9c9c9;
	border-top: 1px solid #c9c9c9;
}

.fc_orange {
	color: #f19149;
}

.fc_pink {
	color: #eb6877;
}

.p-page-section.bg_white {
	background-color: #fff;
	padding-top: 10rem;
}

.check-mark {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	max-width: 930px;
	margin: 0 auto;
	gap: 1.9rem 0;
}

.check-mark li {
	position: relative;
	padding-left: 1.4em;
	font-size: 1.8rem;
	font-weight: bold;
}

.check-mark li::before {
	content: '';
	display: inline-block;
	width: min(2.8vw, 21px);
	height: min(2.8vw, 21px);
	background-image: url(../img/recruit/icon_check.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.c-title03 {
	margin-bottom: 1rem;
	font-size: 2rem;
	color: #7fab2a;
	font-weight: bold;
}

ul.disc li {
	padding-left: 1em;
	position: relative;
}

ul.disc li::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	background-color: #000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

ul.disc li.w-line::before {
	top: 1.8rem;
}

@media screen and (max-width: 1260px) {
	.is-sp_1260 {
		display: block;
	}
}

@media screen and (max-width: 980px) {
	.check-mark {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (max-width: 850px) {
	.check-mark {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 768px) {

	.sp_tal {
		text-align: left;
	}
	.c-tbl03 {
		width: 100%;
		table-layout: fixed;
	}
	
	.c-title03,
	.c-tbl03 th.left {
		font-size: calc(100vw * (28 / 750));
	}
	.c-tbl03 th.left {
		padding: 4% 2%;
		text-align: left;
	}
	.c-tbl03 th.left.tac {
		text-align: center;
	}
	.c-tbl03 th.top,
	.c-tbl03 td {
		font-size: calc(100vw * (26 / 750));
	}
	.c-tbl03 td {
		padding: 4%;
		width: auto;
		width: calc(100vw * (576 / 750));
	}
	.c-tbl03 th.top, .c-tbl03 th.left02 {
		width: calc(100vw * (136 / 750));
		text-align: center;
		border-bottom: 1px solid #fff;
		max-width: none;
	}
	.c-tbl03 th.top {
		padding: 0;
	}
	.check-mark {
		grid-template-columns: repeat(2, 1fr);
	}

	.c-tbl02,
	.support .bg_white .flex .text-wrapper a.underline {
		font-size: calc(100vw * (26 / 750));
	}

	.c-tbl02 {
		width: 100%;
	}

	.c-tbl02 tr th,
	.c-tbl02 tr td {
		display: block;
	}

	.c-tbl02 tr th {
		border-right: 1px solid #c9c9c9;
	}
}
@media screen and (max-width: 426px) {
	.check-mark li {
	font-size: calc(100vw * (14 / 426));
}
}
	

/* --------------------------------------------------------
	ごあいさつ
-------------------------------------------------------- */
.greeting h2.c-title02 {
	margin-top: 10rem;
}
.greeting .p-lower-top__img img {
	object-position: center 18%;
}
.greeting .greeting_bg_philosophy {
	position: relative;
}
.greeting .greeting_bg_philosophy::after {
	content: '';
	display: inline-block;
	width: 543px;
	height: 66px;
	background-image: url(../img/greeting/bg_phi.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -160px;
    right: 8%;
}
.greeting p {
	line-height: 2;
}

.greeting .p-page-section.pt0 {
	padding-top: 0;
}

.greeting .p-page-section.bg_white h2:first-child {
	margin-top: 0;
}

.greeting .greeting01 {
	background-image: url(../img/greeting/img01.jpg?260622);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: top left;
	padding: 5rem 0 3rem 55%;
}

.greeting .greeting01 h2 {
	font-size: 2.6rem;
	margin-bottom: 8rem;
	position: relative;
	color: #000;
	margin-top: 0;
	border-bottom: none;
}

.greeting .greeting01 h2::before,
.greeting .greeting01 h2::after {
	content: '';
	display: inline-block;
	width: 2.2rem;
	height: 2.5rem;
	background-image: url(../img/greeting/w-quotation01.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0rem;
	left: -4rem;
}

.greeting .greeting01 h2::after {
	background-image: url(../img/greeting/w-quotation02.svg);
	top: auto;
	left: auto;
	bottom: 1rem;
	right: -1rem;
}

.greeting .greeting01 .greeting_img_name {
	max-width: 42rem;
	padding-left: 1.5rem;
}

.greeting .greeting01 .greeting_name {
	display: flex;
	align-items: center;
	/* 文字と線の上下中央を揃える */
	gap: 15px;
	/* 線と文字の間の余白（お好みで調整） */
	font-size: 1.6rem;
}

.greeting .greeting01 .greeting_name::before {
	content: "";
	flex-grow: 1;
	/* 線を伸ばせるだけ伸ばす（幅を固定したい場合は width を指定） */
	max-width: 150px;
	/* 線の最大幅（画像くらいの長さに制限） */
	height: 1px;
	/* 線の太さ */
	background-color: #333;
	/* 線の色（画像の文字色に合わせて調整） */
}

.greeting .greeting01 .greeting_name span {
	line-height: 3;

}

.greeting .p-page-section.bg_white .flex .greeting_flex_content {
	width: 48%;
	margin-bottom: 3rem;
}

.greeting .p-page-section.bg_white .flex .greeting_flex_content h3 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1.2rem;
}

.greeting .p-page-section .greeting_bg_philosophy {
	width: 100%;
	height: 428px;
	background-image: url(../img/greeting/bg01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.greeting .p-page-section .philosophy_white-box {
	margin-top: 4rem;
}

.greeting .p-page-section .philosophy_white-box li {
	background-color: #fff;
	box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.05);
	font-size: 3rem;
	line-height: 2;
	text-align: left;
    padding: .8em .8em .8em 4em;
	margin-bottom: 2rem;
	position: relative;
}
.greeting .p-page-section .philosophy_white-box.grid03 li {
	padding: 1em;
	text-align:center;
	font-size: 2.6rem;
}

.greeting .p-page-section .philosophy_white-box li.icon01::before,
.greeting .p-page-section .philosophy_white-box li.icon02::before {
	content: '';
	display: inline-block;
	width: 4.2rem;
	height: 1.8rem;
	background-image: url(../img/greeting/icon01.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5rem;
}

.greeting .p-page-section .philosophy_white-box li.icon02::before {
	background-image: url(../img/greeting/icon02.svg);
	height: 2.5rem;
}

.greeting .p-page-section .philosophy_white-box.flex li {
	width: 49%;
	font-size: 2rem;
	text-align: left;
	padding-left: 7.5rem;
}

.greeting .p-page-section .philosophy_white-box.flex li::before {
	width: 2.6rem;
	height: 1rem;
	left: 2.9rem;
}

.grid03,
.greeting .p-page-section.bg_white .t-company__list,
.company .p-page-section.bg_white .t-company__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

.greeting .p-page-section.bg_white .t-company__list,
.company .p-page-section.bg_white .t-company__list {
	gap: 3rem;
}

.greeting .ftr-contact__head,
.company .ftr-contact__head {
	background-color: #fff;
}

@media screen and (max-width: 1403px) {
	.greeting .greeting_bg_philosophy::after {
		right: 0;
	}
}
@media screen and (max-width: 1106px) {
	.greeting .p-page-section .philosophy_white-box.grid03 {
		grid-template-columns: 1fr;
	}
	.greeting .p-page-section .philosophy_white-box.grid03 li {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 1024px) {
	.greeting .greeting01 {
        width: 100%;
		max-width: 700px;
		background: none;
        background-size: contain;
		background-position: top center;
        padding: 0;
		margin: 0 auto;
    }
	.greeting .greeting01::before {
		content: "";
		width: 100%;
		background: url(../img/greeting/img01.jpg?260622) no-repeat;
		background-size: contain;
		display: block;
		margin-bottom: min(8.5333vw, 32px);
		padding-top: 64.2857%;
    }
	.greeting .greeting01 h2 {
		display: inline-block;
		margin-bottom: min(8.5333vw, 32px);
		padding: 0 1.5em;
	}
	.greeting .greeting01 h2::before {
		left: 0;
	}
	
}
@media screen and (max-width: 768px) {
	.greeting .greeting_bg_philosophy::after {
		bottom: -94px;
		width: 73vw;
	}
	.greeting .greeting01 {
		width: 100%;
		background-size: contain;
	}

	.greeting .greeting01 h2 {
		font-size: calc(100vw * (32 / 750));
		text-align: center;
		margin-bottom: min(8.5333vw, 32px);
		padding: 0 1.5em;
	}

	.greeting .greeting01 h2::before {
		top: 0;
		left: 0;
	}

	.greeting .greeting01 h2::after {
		right: 0;
		bottom: 2vh;
	}

	.greeting .greeting01 .greeting_img_name {
		width: calc(100vw * (520 / 750));
		max-width: none;
	}

	.greeting .greeting01 .greeting_name,
	.greeting p {
		font-size: calc(100vw * (26 / 750));
	}


	.greeting .p-page-section.bg_white .flex,
	.company .p-page-section.bg_white .flex {
		flex-direction: column;
	}

	.greeting .p-page-section.bg_white .flex .greeting_flex_content,
	.company .p-page-section.bg_white .flex .greeting_flex_content {
		width: 100%;
	}

	.greeting .p-page-section.bg_white .flex .greeting_flex_content h3,
	.company .p-page-section.bg_white .flex .greeting_flex_content h3,
	.t-company__item-title {
		font-size: calc(100vw * (34 / 750));
	}

	.greeting .p-page-section.bg_white .flex .greeting_flex_content,
	.company .p-page-section.bg_white .flex .greeting_flex_content {
		margin-top: calc(100vw * (60 / 750));
	}

	.greeting .p-page-section.bg_white .flex .greeting_flex_content:first-child,
	.company .p-page-section.bg_white .flex .greeting_flex_content:first-child {
		margin-top: calc(100vw * (50 / 750));
	}
	.greeting .p-page-section.bg_white .flex .greeting_flex_content:first-child {
		margin-top: 0;
	}

	.greeting .p-page-section .philosophy_white-box {
		flex-direction: column;
		gap: .8rem;
	}

	.greeting .p-page-section .philosophy_white-box.flex li {
		width: 100%;
		margin-bottom: 0;
		font-size: calc(100vw * (26 / 750));
	}

	.greeting .p-page-section .philosophy_white-box li {
		padding-left: 3em;
		font-size: calc(100vw * (32 / 750));
	}

	.grid03,
	.greeting .p-page-section.bg_white .t-company__list,
	.company .p-page-section.bg_white .t-company__list {
		grid-template-columns: 1fr;
	}

	.greeting .p-page-section .philosophy_white-box.grid03 li {
		padding-left: 0;
		margin-bottom: 0;
	}

	.greeting .p-page-section .t-company__item-text {
		font-size: calc(100vw * (28 / 750));
	}

	.greeting .p-page-section .t-company__item-content {
		width: calc(100% - min(20.2666vw, 76px));
		padding: 0 0 0 min(4vw, 15px);
	}

	.greeting .p-page-section.bg_white {
		padding: min(8.5333vw, 32px) 0 min(16vw, 60px);
	}

	.greeting .p-page-section .philosophy_white-box li.icon01::before,
	.greeting .p-page-section .philosophy_white-box li.icon02::before {
		left: 4vw;
		width: calc(100vw * (42 / 750));
		height: calc(100vw * (18 / 750));
	}

	.greeting .p-page-section .philosophy_white-box li.icon02::before {
		height: calc(100vw * (25 / 750));
	}

	.greeting .p-page-section .philosophy_white-box.flex li::before {
		width: calc(100vw * (30 / 750));
		height: calc(100vw * (13 / 750));
	}

	.greeting .greeting01 h2::before,
	.greeting .greeting01 h2::after {
		width: calc(100vw * (22 / 750));
		height: calc(100vw * (25 / 750));
	}

	.greeting .p-page-section .greeting_bg_philosophy {
		height: calc(100vw * (300 / 750));
	}
	.greeting .p-page-section .philosophy_white-box.grid03 li {
		text-align: center;
	}
}

/* --------------------------------------------------------
	個人様向けサービス / 企業様向けサービス
-------------------------------------------------------- */
.service .p-page-section {
	padding-bottom: 39px;
}
.service .p-lower-top__img img {
	object-position: center 18%;
}

.service h2 {
	margin-top: 5.2rem;
	margin-bottom: 5rem;
	font-size: 3rem;
	font-weight: bold;
	color: #7fab2a;
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: .6rem;
}

.service hgroup {
	text-align: center;
	margin: 0 0 8.2rem;
}

.service hgroup h2 {
	font-size: 3rem;
	font-weight: bold;
	margin-top: 0;
	margin-bottom: 2rem;
	border-bottom: none;
	color: #000;
	line-height: 1.75;
}

.service .flex {
	margin-bottom: 5rem;
}
.service .ftr-contact__list {
	margin-bottom: 0
}

.service .flex .img-wrapper {
	width: 49%;
}
.service .flex .txt-wrapper {
	width: 46%;
}

.service .flex .txt-wrapper h3 {
	font-size: 3rem;
    margin-top: 25px;
    margin-bottom: 19px;
    font-weight: bold;
    line-height: 1;
}

.service .flex .txt-wrapper p {
	margin-bottom: 9px;
	line-height: 2;
}

.service .flex .txt-wrapper p a.underline {
	color: #7fab2a;
	text-decoration: underline;
}

.service .flex .txt-wrapper ul.green-disc {
	margin-bottom: 28px;
}

.service .flex .txt-wrapper ul.green-disc li {
	padding-left: 1.2em;
	line-height: 2.25;
	position: relative;
}

.service .flex .txt-wrapper ul.green-disc li::before {
	content: '';
	display: inline-block;
	width: .6rem;
	height: .6rem;
	background-color: #7fab2a;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

@media screen and (max-width: 768px) {
	.service hgroup {
		margin: 0 0 4rem;
	}

	.service hgroup h2 {
		margin-top: 0;
	}

	.service hgroup h2,
	.service h2 {
		font-size: calc(100vw * (40 / 750));
	}

	.service h2 {
		margin-top: calc(100vw * (100 / 750));
		margin-bottom: calc(100vw * (50 / 750));
	}

	.service .flex .txt-wrapper h3 {
		font-size: calc(100vw * (34 / 750));
		margin: 7vw 0 3vw;
	}

	.service p {
		font-size: calc(100vw * (26 / 750));
	}

	.service .flex {
		flex-direction: column;
		margin-bottom: calc(100vw * (80 / 750));
	}

	.service .flex .img-wrapper,
	.service .flex .txt-wrapper {
		width: 100%;
	}

	.service .c-btn01 {
		margin: 0 auto;
	}

	.service .flex .txt-wrapper ul.green-disc li.w-line::before {
		top: 25%;
	}

	.service .ftr-bnr__list {
		flex-direction: row;
	}
}

/* --------------------------------------------------------
	会社情報
-------------------------------------------------------- */
.company h2 {
	margin-bottom: 5rem;
	font-size: 3rem;
	font-weight: bold;
	color: #7fab2a;
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: .6rem;
}

.company a.underline {
	color: #eb6877;
	text-decoration: underline;
}

.company .p-page-section.bg_white {
	background-color: #fff;
}


.company .company-timeline {
	position: relative;
	padding: 2.4rem 1.8rem 1.8rem 7rem;
}

.company .company-timeline.green {
	background-color: #f2f6e9;
}

.company .company-timeline::before {
	content: "";
	position: absolute;
	left: 21px;
	top: 33px;
	width: 1rem;
	height: 1rem;
	background-color: #7fab2a;
	border-radius: 50%;
	z-index: 1;
}

.company .leftline {
	position: relative;
}

.company .leftline::after {
	content: "";
	position: absolute;
	top: 33px;
	bottom: 33px;
	left: 25px;
	width: 2px;
	background-color: #cbd5e1;
}

.company .company-timeline > dl,
.company .company-timeline > dl.mt02 > div {
	display: flex;
}

.company .company-timeline dl dt {
	font-size: 1.4rem;
	font-weight: 700;
	text-align: right;
	margin-right: 4rem;
	min-width: 10.2rem;
}
.company .company-timeline > dl.mt02 {
	display: block;
	margin-top: 0;
}
.company .base_list {
	display: grid;
	grid-template-columns: 500px 1fr;
	gap: 50px;
	margin-top: 5rem;
}

.company .base_list:first-child {
	margin-top: 0;
}

.company .base_list .info-wrapper h3 {
	line-height: 1;
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 2.4rem;
}

.company .base_list .info-wrapper .underline {
	color: #7fab2a;
}

@media screen and (max-width: 768px) {
	.company h2 {
		font-size: calc(100vw * (40 / 750));
		margin-bottom: .4em;
		margin-top: 0;
	}
	.company .p-page-section.bg_white {
		padding-top: calc(100vw * (100 / 750));
	}
	.company .company-timeline {
		padding-left: 5rem
	}

	.company .company-timeline dl,
	.company .company-timeline > dl.mt02 > div {
		flex-direction: column;

	}

	.company .company-timeline dl dt {
		text-align: left;
		margin-bottom: .5em;
	}
	.company .company-timeline > dl.mt02 > div dt {
		margin-top: .5em;
	}
	.company .company-timeline > dl.mt02 > div dt.is-empty {
		display: none;
	}
	.company .base_list {
		grid-template-columns: 1fr;
		margin-top: calc(100vw * (50 / 750));
		gap: calc(100vw * (50 / 750));
	}

	.company ul.disc li::before {
		top: 1em;
	}

	.company .leftline::after {
		bottom: 55px;
	}
}

/* --------------------------------------------------------
	採用情報
-------------------------------------------------------- */
.recruit p {
	line-height: 2.25;
}

.recruit .text-wrapper {
	width: 46%;
}

.recruit .img-wrapper {
	width: 50%;
	text-align: right;
}

.recruit p.fc-orange {
	font-weight: bold;
	font-size: 2.4rem;
	color: #7fab2a;
	line-height: 1;
}

.recruit h2 {
	margin-top: 2rem;
	margin-bottom: 2rem;
	font-weight: bold;
	font-size: 2.4rem;
}

.recruit .sec01 p {
	margin-top: 1rem;
	line-height: 2.25;
}

.recruit .p-product-contact__list.recruit_btn>li {
	width: 100%;
	max-width: 500px;

}

.recruit .p-product-contact__list.recruit_btn>li.m-tel {
	margin-top: 4rem;
}

.recruit .p-product-contact__list.recruit_btn>li.m-mail {
	margin-top: 1.6rem;
}

.recruit .p-product-contact__list>li>a>span {
	border: solid 2px #f19149;
}

.recruit .p-product-contact__list>li.m-tel>a>span>span,
.recruit .fixed-btn {
	background: #f19149;
}

.recruit .p-product-contact__list-item.m-mail>a>span>span::before {
	background-image: url(../img/cmn/icon_mail_or.svg);
}

.recruit .p-product-contact__list>li.m-mail>a>span>span {
	color: #f19149;
}

.recruit .bg_white {
	text-align: center;
}

.recruit .bg_white h2.tac {
	margin: 0 0 4rem;
	position: relative;
	padding-bottom: 2rem;
}

.recruit .bg_white h2.tac::after {
	content: '';
	display: inline-block;
	width: 10rem;
	height: .3rem;
	background-color: #7fab2a;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.recruit .grid03 {
	margin: 0 auto 3.1rem;
    /* ★変更：minmaxの第一引数を「auto」ではなく「1fr」にします */
    grid-template-columns: repeat(3, minmax(0, 320px));
    justify-content: space-between;
	max-width: 1150px;
}
.support .grid03 {
	max-width: 1060px;
}
.recruit .grid03.training::after {
	display: none;
}

.recruit .grid03 li {
	position: relative;
    text-align: center;
    flex: 1;
	max-width: 325px;
}

.recruit .grid03 li.line::before,
.recruit .grid03 li.line::after {
    content: '';
    display: block;
    width: 140px; /* ★隣のliとの隙間を埋める線のアウトライン（固定値 px または 15vw などの可変値） */
    height: 2px;
    background-color: #f19149;
    position: absolute;
    
    /* 【解決策】
       画像の縦横比（aspect-ratio）が固定されていれば、
       画像が縮小してli全体の高さが変わっても、
       「画像の真ん中」にくる％（例: 25% や 30%）は常に一定になります。
    */
    top: 37%; /* ★画面を動かしながら、画像の中央に重なる％（25%〜35%あたり）に微調整してください */
    transform: translateY(-50%);
    z-index: 1;
}
.recruit .grid03 li.line::before { right: 96%; }
.recruit .grid03 li.line::after { left: 96%; }

.recruit .grid03.training li.line::before,
.recruit .grid03.training li.line::after {
    display: none;
}
.recruit .grid03 li {
	display: block;
    margin: 0 auto 2rem;
    position: relative;
}
.recruit .grid03 li img {
    position: relative;
    z-index: 5!important; /* 擬似要素の 1 より大きい数値を指定して前に出す */
	margin-bottom: 13px;
}
.support .grid03 li:nth-child(1) img {
	width: 71%;
}
.support .grid03 li:nth-child(2) img {
	width: 74%;
}
.support .grid03 li:nth-child(3) img {
	width: 92%;
}

.recruit .grid03 li h3,
.recruit_flex_content h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

.recruit_flex_content h3 {
	margin-bottom: 1rem;
}

.recruit_flex_content {
	width: 48%;
}

.recruit_flex {
	margin-bottom: 9rem;
}

.recruit .employee_content {
	position: relative;
	z-index: 1;
}

.recruit .employee_content.content02,
.recruit .employee_content.content03 {
	margin-top: 14rem;
}

.recruit .employee_content::before {
	content: '';
	display: inline-block;
	width: 138px;
	height: 112px;
	background-image: url(../img/recruit/bg_01.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 10%;
}

.recruit .employee_content.content02::before {
	top: 1.5%;
	background-image: url(../img/recruit/bg_02.svg);
}

.recruit .employee_content.content03::before {
	background-image: url(../img/recruit/bg_03.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 10%;
}

.recruit .employee_content::after {
	content: '';
	display: inline-block;
	max-width: 1200px;
	width: 75%;
	height: 750px;
	background-image: url(../img/cmn/pattern01.jpg);
	background-repeat: repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.recruit .employee_content.content02::after {
	height: 720px;
}

.recruit .employee_content.content03::after {
	height: 800px;
}

.recruit .employee_content .employee_content_title {
	width: 40%;
	position: relative;
	font-weight: bold;
	text-align: left;
	padding-top: 9.5rem;
}

.recruit .employee_content.content02 .employee_content_title {
	padding-top: 10.5rem;
}

.recruit .employee_content.content03 .employee_content_title {
	padding-top: 0;
}

.recruit .employee_content .employee_content_title .employee_joining {
	font-size: 2rem;
	margin-bottom: 2rem;
	line-height: 1;
}

.recruit .employee_content .employee_content_title .employee_name {
	font-size: 3.6rem;
	margin-bottom: 2rem;
	line-height: 1;
}

.recruit .employee_content .employee_content_title .employee_job {
	color: #7fab2a;
	font-size: 2.4rem;
	line-height: 1;
}

.recruit .employee_content.content02 .employee_content_title .employee_job {
	color: #f19149;
}

.recruit .employee_content.content03 .employee_content_title .employee_job {
	color: #eb6877;
}

.recruit .employee_content .employee_content_title .bgc_green {
	position: absolute;
	left: 0;
	bottom: 10%;
}

.recruit .employee_content .flex {
	position: relative;
	margin: 3rem 0 4rem;
}

.recruit .employee_content.content03 .flex {
	padding-top: 8rem;
}

.recruit .employee_content .flex .bgc_green,
.recruit .employee_content .flex .bgc_orange,
.recruit .employee_content .flex .bgc_pink {
	position: absolute;
	left: 0;
	bottom: 17%;
	text-align: left;
}

.recruit .employee_content .flex .bgc_orange {
	bottom: 21%;
}

.recruit .employee_content .flex .bgc_orange {
	text-align: center;
}

.recruit .employee_content .flex .bgc_green span,
.recruit .employee_content .flex .bgc_orange span,
.recruit .employee_content .flex .bgc_pink span {
	background-color: #7fab2a;
	padding: 1rem 4.5rem;
	color: #fff;
	font-size: 3.6rem;
	font-weight: bold;
}

.recruit .employee_content .flex .bgc_orange span {
	background-color: #f19149;
}

.recruit .employee_content .flex .bgc_pink span {
	background-color: #eb6877;
}

.recruit .employee_content.content02 .flex .bgc_green span {
	color: #f19149;
}

.recruit .employee_content.content03 .flex .bgc_green span {
	color: #eb6877;
}

.recruit .employee_content .flex .bgc_green span.ml45,
.recruit .employee_content .flex .bgc_pink span.ml45 {
	margin-left: 4.5rem;
}

.recruit .employee_content .employee_content_img {
	position: relative;
	width: 60%;
}

.recruit .employee_content .employee_content_img::after,
.recruit .employee_content.content03 .employee_content_img::after{
	content: '';
	width: 86px;
	height: 76px;
	background-image: url(../img/cmn/icon_home_mi.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 9%;
	right: -6%;
}

.recruit .employee_content.content02 .employee_content_img::after {
	background-image: url(../img/cmn/icon_home_or.svg);
}

.recruit .employee_content.content03 .employee_content_img::after {
	background-image: url(../img/cmn/icon_home_pk.svg);
	top: -9%;
    right: -3%;
}

.recruit .employee_content .employee_content_txt {
	padding-bottom: 9rem;
}

.recruit .employee_content.content03 .employee_content_txt {
	padding-top: 0;
}

.recruit .employee_content .employee_content_txt p,
.recruit .employee_content .employee_content_txt img {
	width: 48%;
}

.recruit .employee_content .employee_content_txt p {
	text-align: left;
	line-height: 1.85;
}

.recruit .employee_content .employee_content_txt img {
	display: block;
	object-fit: contain;
	padding-top: 4rem;
}

.recruit .tab-group {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 3rem 0 5rem;
	border-bottom: 2px solid #7fab2a;
	justify-content: space-between;
	gap: 3rem;
}

.recruit .tab-button {
	width: 100%;
	text-align: center;
	padding: 1rem 0;
	cursor: pointer;
	background: #7fab2a;
	border: 1px solid #7fab2a;
	border-bottom: none;
	transition: background 0.3s;
	font-weight: bold;
	color: #fff;
}

/* アクティブ状態のタブボタン */
.recruit .tab-button.is-active {
	background: #fff;
	border: 2px solid #7fab2a;
	border-bottom: 2px solid #fff;
	margin-bottom: -2px;
	/* 親のborderと重ねて消す */
	font-weight: bold;
	color: #7fab2a;
}

.recruit .content-group h3 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

/* タブコンテンツ単体（基本は非表示） */
.recruit .tab-content {
	display: none;
}

/* アクティブ状態のコンテンツ（表示する） */
.recruit .tab-content.is-active {
	display: block;
}

.recruit h2.recruitment-requirements {
	margin: 4rem 0;
}

.recruit_cta {
	margin-top: 10rem;
	background-color: #fff;
	padding: 3.9rem 0 2.8rem;
}

.recruit_cta p.slash {
	font-size: 2rem;
	font-weight: bold;
	position: relative;
	display: inline-block;
	padding: 0 2.5em;
	color: #f19149;
}

.recruit_cta p.slash::before,
.recruit_cta p.slash::after {
	content: '';
	display: inline-block;
	width: 26px;
	height: 43px;
	background-image: url(../img/recruit/slash01.svg);
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	bottom: 20%;
}

.recruit_cta p.slash::after {
	background-image: url(../img/recruit/slash02.svg);
	right: 0;
	left: auto;
}

.recruit_cta .p-product-contact__list {
	margin: 1.9rem auto;
}

.recruit_cta .p-product-contact__list.recruit_btn>li.m-tel,
.recruit_cta .p-product-contact__list.recruit_btn>li.m-mail {
	margin-top: 0;
}

@media screen and (max-width: 1260px) {
	.recruit .employee_content .employee_content_title .employee_job {
		line-height: 1.75;
	}

	.recruit .employee_content .flex .bgc_orange {
		bottom: 4%;
	}
}

@media screen and (max-width: 1120px) {
	.recruit_cta {
		padding: 5rem 2%;
	}

	.recruit_cta .p-product-contact__list {
		flex-direction: column;
	}

	.recruit_cta .p-product-contact__list.recruit_btn>li.m-tel,
	.recruit_cta .p-product-contact__list.recruit_btn>li.m-mail {
		margin: 0 auto;
	}

	.recruit_cta .p-product-contact__list.recruit_btn>li.m-mail {
		margin-top: 1em;
	}
}
@media screen and (max-width: 1116px) {
	.support .flex.reverse {
		flex-direction: column-reverse;
	}
	.support .flex .text-wrapper,
	.support .flex .img-wrapper, .recruit_flex_content, .support .employee_content .employee_content_title, .support .employee_content .employee_content_txt img {
		width: 100%;
	}
	.support .flex .text-wrapper {
		max-width: 570px;
		margin: 0 auto;
	}
	.support .flex .img-wrapper {
		width: fit-content;
		margin: 0 auto 6rem;
	}
	.support .fc_pink.bg_line.bold {
		margin-top: 3vw;
	}
	.support .flex .img-wrapper::after {
		right: 0;
	}
	.support .p-product-contact__list.recruit_btn>li.m-tel.mt10 {
		margin: 0 auto 1rem;
	}
	.support .p-product-contact__list.recruit_btn>li.m-mail {
		margin: 0 auto;
	}
	    .support .fc_pink.bg_line.bold {
        margin-bottom: 1rem;
    }
}
@media screen and (max-width: 1090px) {

	.recruit .employee_content .flex .bgc_orange {
		bottom: -3%;
	}
}
@media screen and (max-width: 1064px) {
	.recruit .employee_content::after {
		bottom: 25px;
	}
}
@media screen and (max-width: 998px) {
	.recruit .employee_content::after {
		height: 900px;
	}
}
@media screen and (max-width: 980px) {

	.recruit .employee_content .flex .bgc_orange {
		bottom: -9%;
	}
}

@media screen and (max-width: 920px) {
	.recruit .employee_content .employee_content_title {
		width: 100%;
	}

	.recruit .employee_content .flex .bgc_orange {
		text-align: left;
	}

	.recruit .employee_content .flex .bgc_green span,
	.recruit .employee_content .flex .bgc_orange span,
	.recruit .employee_content .flex .bgc_pink span {
		display: inline-block;
		padding: .5rem 1.5rem;
	}

	.recruit .employee_content .flex .bgc_green span.ml45,
	.recruit .employee_content .flex .bgc_orange span.ml45,
	.recruit .employee_content .flex .bgc_pink span.ml45 {
		margin-top: 1vw;
	}

	.recruit .employee_content .flex .bgc_pink {
		bottom: 52%;
	}

	.recruit .employee_content.content03 .employee_content_title {
		padding-bottom: calc(100vw * (300 / 920));
	}

	.recruit .employee_content .employee_content_img {
		margin: 0 auto;
		width: 93%;
	}

	.recruit .employee_content .employee_content_img::after,
	.recruit .employee_content.content03 .employee_content_img::after{
		right: 0;
	}
	.recruit .employee_content.content03 .employee_content_img::after {
		top: -15%
	}

	.recruit .employee_content::after {
		display: none;
	}

	.recruit .employee_content.content02,
	.recruit .employee_content.content03 {
		margin-top: calc(100vw * (70 / 750));
		;
	}

	.recruit .employee_content.content03 .employee_content_txt {
		padding-bottom: 0;
	}
	.recruit .p-page-section.bg_white {
		padding-top: calc(100vw * (100 / 750));
	}
	.recruit .p-page-section.bg_white.sp-pattern01 {
		padding-top: calc(100vw * (160 / 750));
	}
	.recruit .p-page-section.bg_white.sp-pattern01 .employee_content .inner {
		margin: 0;
		width: 100%;
	}
	.recruit .employee_content::after {
		width: 60%;
	}

	.recruit .flex.reverse {
		flex-direction: column-reverse;
		max-width: 570px;
	}

	.recruit .flex .text-wrapper {
		margin-bottom: 0;
	}
	.recruit .employee_content .employee_content_txt {
		padding-bottom: 0;
	}
	.recruit .flex .text-wrapper,
	.recruit .flex .img-wrapper,
	.recruit_flex_content,
	.recruit .employee_content .employee_content_title,
	.recruit .employee_content .employee_content_txt img {
		width: 100%;
	}
	.support .flex .img-wrapper,
	.recruit .flex .img-wrapper{
		width: fit-content;
	}
	.recruit .flex .img-wrapper {
		margin: 0 auto 6vw;
	}
	.recruit .employee_content .employee_content_txt p {
		width: 86%;
		margin: 0 auto;
		padding-bottom: 6vw;
	}
	.recruit .employee_content .employee_content_txt img {
		padding: 6vw 2vw 12vw;
		background-color: #fff;
	}
	

	
	.recruit .employee_content .flex .bgc_green,
	.recruit .employee_content .flex .bgc_orange,
	.recruit .employee_content .flex .bgc_pink {
		bottom: -13%;
        left: 3.3%;
	}
	.recruit .employee_content .employee_content_title,
	.recruit .employee_content.content02 .employee_content_title,
	.recruit .employee_content.content03 .employee_content_title {
		padding-top: 12%;
		padding-bottom: 0;
		width: 86%;
		margin: 0 auto;
	}
	.recruit .employee_content.content03 .employee_content_title {
		padding-bottom: 6%;
	}
	.recruit .employee_content {
		background-image: url(../img/cmn/pattern01_sp.jpg);
		margin-top: calc(100vw * (140 / 920));
	}
	
	.recruit .employee_content .flex {
		flex-direction: column;
	}
	.recruit .employee_content .flex .bgc_orange {
		text-align: left;
	}

	.recruit .employee_content .flex .bgc_green span,
	.recruit .employee_content .flex .bgc_orange span,
	.recruit .employee_content .flex .bgc_pink span {
		display: inline-block;
		padding: .5rem 1.5rem;
	}
	.recruit .employee_content::before,
	.recruit .employee_content.content02::before,
	.recruit .employee_content.content03::before {
		width: calc(100vw * (137 / 750));
		height: calc(100vw * (113 / 750));
		left: 5%;
		top: -2%;
	}
	.recruit .employee_content .employee_content_txt {
		margin-top: calc(100vw * (200 / 920));
	}
	.recruit .p-product-contact__list.recruit_btn>li.m-tel {
		margin: 4rem auto 0;
	}
	.recruit .p-product-contact__list.recruit_btn>li.m-mail {
		margin: 0 auto 0;
	}
}

@media screen and (max-width: 768px) {
	
	.recruit .grid03 {
		grid-template-columns: 1fr;
	}
	.recruit .tab-group{
		gap: 1rem;
	}
	.recruit .p-product-contact__list.recruit_btn>li .p-product-contact__item-num,
	.recruit .p-product-contact__list.recruit_btn>li .p-product-contact__item-text{
		font-size: min(4.8vw, 1.8rem);
	}
	.recruit .p-product-contact__list.recruit_btn>li .p-product-contact__item-hours{
		font-size: min(3.2vw, 1.2rem);
	}
	.recruit .p-product-contact__list.recruit_btn>li.m-tel {
		margin: 4rem auto 0;
	}
	.recruit .p-product-contact__list.recruit_btn>li.m-mail {
		margin: 1.6rem auto 0;
	}
	.recruit p {
		font-size: calc(100vw * (26 / 750));
	}
	.recruit .tab-button {
		font-size: calc(100vw * (26 / 750));
	}
	.recruit h2 {
		font-size: calc(100vw * (40 / 750));
	}

	.recruit .employee_content .employee_content_title .employee_name {
		font-size: calc(100vw * (46 / 750));
	}
	.recruit .employee_content .flex .bgc_green span,
	.recruit .employee_content .flex .bgc_orange span,
	.recruit .employee_content .flex .bgc_pink span {
		font-size: calc(100vw * (36 / 750));
	}

	.recruit p.fc-orange,
	.recruit .employee_content .employee_content_title .employee_joining,
	.recruit_cta p.slash {
		font-size: calc(100vw * (30 / 750));
	}
	.recruit .employee_content .employee_content_title .employee_job {
		font-size: calc(100vw * (34 / 750));
	}
	.recruit_cta .p-product-contact__list.recruit_btn>li.m-tel {
		margin-top: 1em;
	}
	.recruit_flex_content h3,
    .recruit .grid03 li h3 {
        font-size: calc(100vw * (28 / 750));
        text-align: left;
    }
	.recruit .grid03 li h3 {
		text-align: center;
	}
	.recruit .grid03 li img {
		margin: 0;
        width: 40%;
        height: auto;
        flex-shrink: 0;
	}
	.recruit .p-product-contact__list.rcruit_btn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.recruit .img-wrapper {
		text-align: center;
		margin-bottom: 10vw;
	}
	.recruit .grid03 {
        margin-bottom: calc(100vw * (90 / 750));
        flex-direction: column; /* 縦並び */
    }
	.recruit .grid03 li.line::after {
		width: 2px;
		height: 68%;
		top: 50%;
		left: 26%;
	}
	.recruit .grid03.training::after {
		display: none;
	}

	.recruit .grid03 li {
		margin: 6vw auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        width: 90%;
		max-width: none;
	}
	
	.recruit .grid03.training li {
		justify-content: flex-start;
		margin: 2vw auto;
        width: 100%;
		gap: 6vw;
	}
	.recruit .grid03 li.line::before,
    .recruit .grid03 li.line::after {
        width: 2px;
        height: 20vw; /* ★liとliの隙間を繋ぐ縦線の長さ（適宜調整してください） */
        /* 画像の横幅（例: 100px）のちょうど真ん中（50px）に固定 */
        left: 20%; 
        right: auto;
        transform: translateX(-50%);
    }

    /* beforeは上側（1つ目のli）へ伸ばす */
    .recruit .grid03 li.line::before {
        top: auto;
        bottom: 100%; /* 2番目のliの上端から上へ */
    }
    /* afterは下側（3つ目のli）へ伸ばす */
    .recruit .grid03 li.line::after {
        top: 100%; /* 2番目のliの下端から下へ */
    }

	.recruit_flex_content {
		margin-bottom: calc(100vw * (60 / 750));
	}

	.recruit_flex {
		margin-top: calc(100vw * (60 / 750));
		margin-bottom: calc(100vw * (40 / 750));
	}

	.check-mark {
		gap: 1rem 3rem;
	}

	.recruit .sp-tac {
		text-align: center;
	}
	

	

	

	

	.recruit .employee_content .employee_content_img {
		margin: 0 auto;
		width: 100%;
	}

	.recruit .employee_content::after {
		display: none;
	}

	.recruit .employee_content.content02,
	.recruit .employee_content.content03 {
		margin-top: calc(100vw * (70 / 750));
	}

	

	.recruit .employee_content.content03 .employee_content_txt {
		padding-bottom: 0;
	}

	.recruit_cta p.slash {
		text-align: center;
		line-height: 1.75;
	}

	.recruit_cta p.slash::before,
	.recruit_cta p.slash::after {
		bottom: 5%;
	}

	.recruit .bg_white {
		padding: 8% 2%;
	}
	.recruit .employee_content.content03 .flex {
		padding-top: 0;
	}
	.support_tokuten_list .flex .img-wrapper {
		margin-bottom: 0;
	}
}


/* --------------------------------------------------------
	安心くらぶ
-------------------------------------------------------- */
.support .bg_white {
	padding-bottom: 5rem;
}
.support h2 {
	font-size: 3rem;
	margin-bottom: .5rem;
}
.support p.fc-green {
	font-size: 2.4rem;
	line-height: 1;
	color: #7fab2a;
	font-weight: bold;
}

.support p {
	line-height: 1.8;
}

.support .p-product-contact__list>li>a>span {
	border: solid 2px #eb6877;
}

.support .p-product-contact__list>li.m-tel>a>span>span,
.support .fixed-btn {
	background: #eb6877;
}

.support .p-product-contact__list-item.m-mail>a>span>span::before {
	background-image: url(../img/cmn/icon_mail_pi.svg);
}

.support .p-product-contact__list>li.m-mail>a>span>span {
	color: #eb6877;
}
.support .recruit_cta .p-product-contact__list.recruit_btn>li.m-tel.mt10 {
	margin: 0 0 min(2.6666vw, 10px);
}

.support .fc_pink.bg_line.bold {
	font-size: 2.4rem;
	display: flex;
	align-items: center;
	/* 上下中央に線を配置 */
	justify-content: center;
	/* 全体を中央寄せ */
	text-align: center;
	color: #e57373;
	/* 文字の色（画像のピンク系に設定） */
	font-weight: bold;
	margin-top: 4rem;
}

.support .fc_pink.bg_line.bold::before {
	content: "";
	flex-grow: 1;
	/* 線を外側いっぱいに伸ばす */
	max-width: 7rem;
	height: 2px;
	/* 線の太さ */
	background-color: #e57373;
	/* 線の色 */
	margin-right: 20px;
	/* 文字との隙間 */
}

.support .fc_pink.bg_line.bold::after {
	content: "";
	flex-grow: 1;
	/* 線を外側いっぱいに伸ばす */
	max-width: 7rem;
	height: 2px;
	/* 線の太さ */
	background-color: #e57373;
	/* 線の色 */
	margin-left: 20px;
}

.support .flex .img-wrapper {
	position: relative;
}

.support .flex .img-wrapper::after {
	content: '';
	display: inline-block;
	width: 16rem;
	height: 16rem;
	background-image: url(../img/support/img_badge.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: -5%;
	bottom: -5%;
}

.support .bg_white h2.tac::after,
.support .grid03::after {
	display: none;
}

.support .bg_white h2.tac span.big {
	font-size: 3.6rem;
}

.support ul.grid03 li {
	border: 1px solid #7fab2a;
	border-radius: 10px;
	box-shadow: 7px 7px 10px 1px rgba(127, 171, 42, 0.2);
	position: relative;
	min-width: 320px;
	z-index: 1;
	padding: 2em 1em 1em;
}

.support ul.grid03 li::before {
	content: '';
	display: inline-block;
	width: 5rem;
	height: 5rem;
	background-image: url(../img/support/list_badge.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.support p.fc-green.support_kaiketsu {
	font-size: 3.4rem;
	position: relative;
	padding-bottom: 7.5rem;
}

.support p.fc-green.support_kaiketsu::after {
	content: '';
	display: inline-block;
	width: 71px;
	height: 54px;
	background-image: url(../img/support/arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.support .bg_white.support_tokuten_list {
	background-color: #fff;
	box-shadow: 7px 7px 10px 1px rgba(127, 171, 42, 0.2);
	padding: .8rem;
	border-radius: 10px;
	position: relative;
	margin-top: 7rem;
}
.support .bg_white.support_tokuten_list:first-child {
	margin-top: 0;
}

.support .bg_white::before {
	content: '';
	display: inline-block;
	width: 193px;
	height: 34px;
	background-image: url(../img/support/tokuten.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 1%;
	transform: translateY(-50%);
}

.support .bg_white .flex .text-wrapper {
	padding: 0 0 3rem 3rem;
	text-align: left;
	width: 52%;
}

.support .bg_white .flex .text-wrapper .support_tokuten {
	font-size: 3rem;
	font-style: italic;
	color: #eb6877;
	line-height: 1;
	margin-bottom: 2rem;
}

.support .bg_white .flex .text-wrapper .support_tokuten span.big {
	font-size: 6rem;
}

.support .bg_white .flex .text-wrapper h3 {
	font-size: 3.6rem;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 3rem;
}

.support .bg_white .flex .text-wrapper h3 span.big {
	font-size: 4.8rem;
}

.support .bg_white .flex .text-wrapper a.underline {
	color: #7fab2a;
	text-decoration: underline;
}

.support .bg_white .flex .img-wrapper {
	width: 45.5%;
}

.support .bg_white .flex .img-wrapper::after {
	display: none;
}

.support hgroup {
	margin: 7rem 0 3rem;
	padding-bottom: .8rem;
	border-bottom: solid 1px #c9c9c9;
}

.support hgroup a {
	display: block;
}

.support hgroup h2.c-title02 {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.support h2.c-title02 {
	margin-top: 93px;
	margin-bottom: 33px;
}

.support ul.disc li {
	line-height: 1.4;
	margin-bottom: .8rem
}

.support ul.disc li::before {
	top: 1.4rem;
}

.support .recruit_cta {
	max-width: 1200px;
	margin: 9.2rem auto 0;
	box-shadow: 3.5px 3.5px 10px 1px rgba(0, 0, 0, 0.1);
}
.support .recruit_cta .fc_pink.bg_line.bold {
	margin-top: 0;
}
.support .p-product-contact__list.recruit_btn>li.m-tel {
	margin-bottom: 1vw;
	margin-top: 1rem;
}
.support #trouble,
.support #maintenance {
	padding-top: 50px;  /* ヘッダーの高さ分下げる */
  margin-top: -50px;
}
@media screen and (max-width: 1120px) {
	.support .recruit_cta {
		padding: 3.5rem 2% 2rem;
	}
	.support ul.grid03 li:last-child {
		margin-bottom: 3rem;
	}
}
@media screen and (max-width: 1054px) {
	.support .fc_pink.bg_line.bold {
		margin-bottom: 1rem;
	}
	.support .grid03 {
		grid-template-columns: 1fr;
	}
	.support .grid03 li:nth-child(1) img,
	.support .grid03 li:nth-child(2) img,
	.support .grid03 li:nth-child(3) img{
		width: 40%;
		max-width: 180px;
	}
	.support ul.grid03 li {
		max-width: none;
		width: 100%;
		margin-bottom: 3rem;
	}
	.support .grid03 li {
        display: block;
        align-items: center;
        gap: 1rem;
        width: 90%;
		max-width: none;
	}
	
}

@media screen and (max-width: 1070px) {
	.support p.fc-green {
		font-size: calc(100vw * (22 / 1070));
	}
}

@media screen and (max-width: 768px) {
	
	.support h2 {
		font-size: calc(100vw * (40 / 750));
	}
	.support #trouble,
.support #maintenance {
	padding-top: 0;  /* ヘッダーの高さ分下げる */
  margin-top: 0;
}
	.support hgroup a {
		font-size: calc(100vw * (24 / 750));;
	}
	.support ul.disc li::before {
		top: calc(100vw * (24 / 750));
	}
	.support .bg_white.support_tokuten_list {
		padding: 5%;
	}
	.support p.fc-green,
	.support .fc_pink.bg_line.bold {
		font-size: calc(100vw * (30 / 750));
	}

	.support .bg_white .flex .text-wrapper .support_tokuten {
		font-size: calc(100vw * (40 / 750));
		padding-left: 1%;
	}

	.support .bg_white .flex .text-wrapper h3 {
		font-size: calc(100vw * (46 / 750));
		margin-bottom: calc(100vw * (30 / 750));
	}

	.support p.fc-green.support_kaiketsu {
		font-size: calc(100vw * (46 / 750));
		line-height: 1.75;
		text-align: center;
		margin: 0 auto;
	}

	.support .bg_white h2.tac span.big,
	.support .bg_white .flex .text-wrapper h3 span.big,
	.support .bg_white .flex .text-wrapper .support_tokuten span.big {
		font-size: calc(100vw * (60 / 750));
	}

	.support .flex .img-wrapper::after {
		width: 12rem;
		height: 12rem;
		bottom: 0;
		right: 0;
	}

	

	.recruit .grid03 {
		margin-bottom: calc(100vw * (90 / 750));
	}

	.support .bg_white .flex {
		flex-direction: column;
	}

	.support .bg_white .flex .text-wrapper {
		width: 100%;
		padding-left: 0;
		padding-bottom: calc(100vw * (30 / 750));
	}

	.support .bg_white .flex .img-wrapper {
		width: 100%;
	}

	.support .bg_white::before {
		width: calc(100vw * (193 / 750));
		height: calc(100vw * (34 / 750));
	}
	.support .grid03{
		margin-bottom: 3rem;
	}
	.support .p-product-contact__list.recruit_btn>li.m-mail {
		margin-top: 0;
	}
	.support .fc_pink.bg_line.bold {
		margin-bottom: 1rem;
	}
	.support .recruit_cta .fc_pink.bg_line.bold {
		margin-bottom: 0;
	}
	.support .recruit_cta .p-product-contact__list {
		margin-top: 0;
	}
	.support .bg_white h2.tac {
		padding-bottom: 0;
	}
}

@media screen and (max-width: 768px) {
	.support .bg_white::before {
		left: 2%;
	}
}

/* --------------------------------------------------------
	プライバシーポリシー
-------------------------------------------------------- */
.privacy .underline {
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 2rem;
	margin: 0 0 20px;
}

.no_list {
	counter-reset: my-counter;
	margin-top: 1em;
}

.no_list li {
	counter-increment: my-counter;
	display: flex;
	align-items: flex-start;
	line-height: 2.25;
}

.no_list li::before {
	content: counter(my-counter) ". ";
	margin-right: 1em;
	flex-shrink: 0;
}

@media screen and (max-width: 768px) {
	.privacy p {
		font-size: calc(100vw * (26 / 750));
	}
}