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

* {
	box-sizing: border-box;
}

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

ul {
	list-style: none;
}

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

button {
	border: 0;
	padding: 0;
	color: inherit;
	font: inherit;
}

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

label {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

img {
	vertical-align: bottom;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

a {
	color: var(--color_text);
	text-decoration: none;
}

input {
	background: transparent;
	padding: 0;
}

[type=text] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	background-image: none;
	background-color: transparent;
	width: 100%;
	color: inherit;
	font-size: 1em;
	font-family: inherit;
}

[type=text]:focus {
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, 0.32);
}

textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	background-image: none;
	background-color: transparent;
	padding: 0;
	width: 100%;
	height: 100px;
	color: inherit;
	font-size: 1em;
	font-family: inherit;
}

textarea:focus {
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, 0.32);
}

[type=radio] {
	display: none;
}

[type=radio] + span {
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin: 0 0.2em 0;
	padding: 0 0 0 1.2em;
}

[type=radio] + span::before {
	-webkit-transform: translateY(-50%);
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 50%;
	background: #fff;
	width: 16px;
	height: 16px;
	content: "";
}

[type=radio] + span::after {
	-webkit-transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 4px;
	transform: translateY(-50%);
	opacity: 0;
	transition: all 0.3s ease 0s;
	border: 1px solid transparent;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.32);
	padding: 2px;
	width: 8px;
	height: 8px;
	content: "";
}

[type=radio]:checked + span::after {
	opacity: 1;
}

[type=checkbox] {
	display: none;
}

[type=checkbox] + span {
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin: 0 0.2em 0;
	padding: 0 0 0 1.2em;
}

[type=checkbox] + span::before {
	-webkit-transform: translateY(-50%);
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 2px;
	background: #fff;
	width: 1em;
	height: 1em;
	content: "";
}

[type=checkbox] + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(-45deg);
	opacity: 0;
	transition: all 0.3s ease 0s;
	margin-top: -0.2em;
	border-bottom: 3px solid rgba(0, 0, 0, 0.32);
	border-left: 3px solid rgba(0, 0, 0, 0.32);
	width: 1em;
	height: 0.6em;
	content: "";
}

[type=checkbox]:checked + span::after {
	opacity: 1;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	background: transparent url(https://haniwaman.com/cms/wp-content/uploads/2018/12/form-css-arrow.png) no-repeat center right 8px/16px 16px;
	padding: 0.4em 0.8em;
	width: 100%;
	color: inherit;
	font-size: 1em;
	font-family: inherit;
}

select::-ms-expand {
	display: none;
}

select:focus {
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(0, 0, 0, 0.32);
}

[type=submit] {
	-webkit-appearance: none;
	display: inline-block;
	cursor: pointer;
	margin: 0;
	border: none;
	border-radius: 0;
	background-image: none;
	background-color: rgba(0, 0, 0, 0.32);
	padding: 0;
	color: #fff;
	font-size: 1em;
	text-decoration: none;
}

[type=submit]:hover,
[type=submit]:focus {
	outline: none;
}

[type=submit]::-moz-foucus-inner {
	border: none;
	padding: 0;
}

html {
	touch-action: manipulation;
	font-size: 16px;
}

body {
	font-weight: 400;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
}

.inner {
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
	max-width: 1100px;
}

.logo {
	width: 140px;
	height: auto;
}

.secTitle {
	margin-bottom: 30px;
	font-weight: 700;
	text-align: center;
}

.secTitle.titleLeft {
	text-align: left;
}

.secTitle p {
	margin-bottom: 10px;
	color: var(--color_main);
	font-size: 1rem;
}

.secTitle h2 {
	font-size: 1.5625rem;
}

.in {
	box-sizing: content-box;
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1100px;
}

#service {
	position: fixed;
	z-index: 999;
}

#service .serviceIn {
	padding: 50px 100px;
}

.serviceIn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	border-radius: 30px;
	background: #fff;
	padding: 50px 0;
	max-width: 1100px;
}

.serviceIn ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 20px;
	width: 100%;
	max-width: 560px;
}

.serviceIn li {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	background: #fff;
	width: calc((100% - 20px) / 3);
	overflow: hidden;
}

.serviceIn li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.serviceIn li a img {
	background: gray;
	height: 85px;
}

.serviceIn li a p {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 3px;
	height: 45px;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.4;
	text-align: center;
}

.ctaArea {
	padding: 20px;
}

.flow {
	background: var(--color_main);
	padding: 50px 0;
}

.flow .secTitle p {
	color: #D6E7C6;
}

.flow .secTitle h2 {
	color: #fff;
}

.sliderArea .splide__slide {
	border-radius: 10px;
	height: 17vw;
	overflow: hidden;
}

.sliderArea .splide__slide:nth-of-type(even) {
	margin-top: 50px;
}

.sliderArea .splide__slide img {
	background: gray;
}

.searchForm {
	display: flex;
	justify-content: start;
	align-items: center;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.searchForm .searchForm_txt {
	background: #D7E9DA;
	padding: 50px 40px;
	font-weight: 500;
}

.searchForm .searchForm_in {
	display: flex;
	flex: 1;
	gap: 10px;
}

.searchForm .searchForm_block {
	flex: 1;
}

.searchForm .searchForm_block p {
	margin-bottom: 5px;
	font-size: 0.8125rem;
}

.searchForm .searchForm_block select {
	border: 1px solid #DDDDDD;
	border-radius: 3px;
	background: transparent url(../img/search-arrow.png) no-repeat center right 4px;
	background-size: 13px;
	padding: 5px 8px;
	height: 40px;
	font-weight: 500;
	font-size: 0.875rem;
}

.searchForm form {
	display: flex;
	flex: 1;
	align-items: center;
	padding: 0 20px;
	width: 100%;
}

.searchForm button {
	transition: transform 0.2s, box-shadow 0.2s;
	margin-left: 20px;
	border-radius: 3px;
	background: #EF8F39;
	padding: 15px 5px;
	width: 180px;
}

.searchForm button:hover {
	opacity: 0.7;
}

.flexWrap {
	display: flex;
	gap: 30px;
	margin-top: 40px;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.2s, box-shadow 0.2s;
	border-radius: 3px;
	background: var(--color_main);
	background: #EF8F39;
	padding: 15px 30px;
	color: #fff;
	font-weight: 500;
}

.btn:hover {
	opacity: 0.7;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	box-shadow: none;
	border-radius: 5px;
	background: #fff;
	width: 50px;
	height: 50px;
	color: #BE8A43;
	font-weight: 700;
	font-size: 1.125rem;
}

.pagination .page-numbers.current {
	background: #BE8A43;
	color: #fff;
}

.pagination .next.page-numbers,
.pagination .prev.page-numbers {
	width: 70px;
	font-size: 1rem;
}

.bg-color {
	border-radius: 20px !important;
	background: #EFEBE0 !important;
	padding: 40px !important;
}

.is-marker {
	background: linear-gradient(transparent 60%, #D6E7C6 80%);
}

.pageTop {
	background: url(../img/page-bg.png) repeat left top/cover;
	height: 350px;
}

.pageTop .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.pageTop .pageTop_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	width: 100%;
	height: 100%;
}

.pageTop .pageTop_box_top {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.pageTop .pageTop_bble {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	border-radius: 100vmax;
	background: var(--color_main);
	width: 140px;
	height: 140px;
}

.pageTop .pageTop_bble::after {
	position: absolute;
	right: 0;
	bottom: 10px;
	transform: rotate(-65deg);
	z-index: -1;
	border-top: 30px solid var(--color_main);
	border-right: 10px solid transparent;
	border-bottom: 0;
	border-left: 10px solid transparent;
	border-style: solid;
	width: 0;
	height: 0;
	content: "";
}

.pageTop .pageTop_bble p {
	color: #fff;
	font-weight: 500;
	font-size: 0.9375rem;
	line-height: 1.4;
}

.pageTop h1 {
	display: flex;
	flex-direction: column;
	font-size: 40px;
	line-height: 1.4;
}

.pageTop h1 strong {
	color: var(--color_main);
}

.pageTop h1 span:first-of-type {
	font-size: 30px;
}

.pageTop .searchForm {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.breadcrumbs {
	padding: 10px 0;
}

.breadcrumbs span {
	font-weight: 500;
	font-size: 0.6875rem;
}

.breadcrumbs a {
	color: var(--color_main);
}

.moreBtn_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

.moreBtn_wrap .moreBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--color_main);
	border-radius: 100vmax;
	background: transparent;
	padding: 10px;
	width: 200px;
	height: 50px;
	color: var(--color_main);
	font-weight: 700;
	font-size: 1rem;
}

.wp-container p {
	margin-bottom: 40px;
	font-size: 0.875rem;
	line-height: 1.6;
}

.wp-container h2 {
	margin-bottom: 30px;
	padding-top: 40px;
	font-size: 1.375rem;
	text-align: center;
}

.wp-container h3 {
	position: relative;
	margin-bottom: 15px;
	border-bottom: 3px solid #E2E0D9;
	padding-bottom: 10px;
	font-size: 1.125rem;
	line-height: 1.2;
}

.wp-container h3::after {
	position: absolute;
	bottom: -3px;
	left: 0;
	background: var(--color_main);
	width: 25%;
	height: 3px;
	content: "";
}

.wp-container a {
	color: var(--color_main);
	font-weight: 500;
	text-decoration: underline;
}

.pageNot_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: min(400px, 50vh);
}

.pageNot_wrap p {
	margin-bottom: 60px;
	text-align: center;
}

.pageNot_wrap .btnArea {
	margin: 0;
	text-align: center;
}

.pageNot_title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: min(70px, 5vw);
}

.pageNot_title span {
	font-size: min(70px, 10vw);
}

.header {
	background: var(--color_bg);
}

.header_in {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.headerPc_menu ul {
	display: flex;
	align-items: center;
	gap: 10px;
}

.headerPc_menu ul a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3px;
}

.headerPc_menu ul a svg {
	width: 25px;
	height: 25px;
}

.headerPc_menu ul a span:nth-of-type(2) {
	font-weight: 500;
	font-size: 0.75rem;
}

#serviceSearch {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	width: 100%;
}

#serviceSearch .serviceIn {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0 auto;
	width: 93%;
	max-width: 1100px;
}

#serviceSearch #serviceIn_close {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(35%, -50%);
	cursor: pointer;
	border-radius: 100vmax;
	background: #EF8F39;
	width: 50px;
	height: 50px;
}

#serviceSearch #serviceIn_close span {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 100vmax;
	background: #fff;
	width: 25px;
	height: 4px;
}

#serviceSearch #serviceIn_close span:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#serviceSearch #serviceIn_close span:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.hidden {
	display: none !important;
}

#serviceSearch_bg {
	position: fixed;
	z-index: 99;
	background: rgba(0, 0, 0, 0.5529411765);
	width: 100%;
	height: 100%;
}

.pageWrap {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.fvIn {
	position: relative;
}

.fvIn h1 {
	position: absolute;
	top: 40%;
	left: 14%;
	font-size: 3vw;
	line-height: 1.4;
	letter-spacing: 0.1em;
}

.fvIn h1 span {
	color: var(--color_main);
}

.aboutFlex {
	display: flex;
	align-items: center;
	gap: 30px;
}

.aboutMain {
	width: 70%;
}

.aboutImg {
	width: 30%;
	min-width: 300px;
}

.aboutTxt p {
	line-height: 1.6;
}

.aboutTxt p br {
	display: none;
}

.aboutTxt p:nth-of-type(1) {
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 1.125rem;
}

.aboutTxt p:nth-of-type(2) {
	font-size: 0.875rem;
}

.feats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-top: 60px;
}

.feat {
	display: flex;
	flex: 1;
	flex-direction: column;
	width: calc((100% - 40px) / 2);
	min-width: 360px;
}

.feat:nth-of-type(2) .featHead {
	background: #009978;
}

.feat:nth-of-type(2) .featHead span {
	color: #009978;
}

.feat:nth-of-type(2) .featMain {
	flex-grow: 1;
}

.feat:nth-of-type(2) .featMain h4 {
	color: #009978;
}

.feat .featHead {
	border-radius: 20px 20px 0 0;
	background: var(--color_main);
	padding: 20px 10px 15px 10px;
	text-align: center;
}

.feat .featHead span {
	border-radius: 100vmax;
	background: #fff;
	padding: 2px 15px;
	color: var(--color_main);
	font-weight: 700;
	font-size: 0.8125rem;
}

.feat .featHead h3 {
	margin-top: 15px;
	color: #fff;
	font-size: 1.25rem;
}

.feat .featMain {
	border-radius: 0 0 20px 20px;
	background: #fff;
	padding: 30px;
	text-align: center;
}

.feat .featMain h4 {
	color: var(--color_main);
	font-size: 1.125rem;
	line-height: 1.4;
}

.feat .featMain p {
	margin-top: 20px;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.6;
}

.flowStep {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0 auto;
	max-width: 900px;
}

.flowStep_cnt {
	border-radius: 15px;
	background: #fff;
	padding: 10px;
}

.flowStep_cntIn {
	border-radius: 10px;
	background: #F5F2EA;
	padding: 20px;
}

.flowStep_cntIn > p {
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.8;
}

.flowStep_cntHead {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.flowStep_cntHead span {
	border-radius: 100vmax;
	background: var(--color_main);
	padding: 5px 20px;
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
}

.flowStep_cntHead h3 {
	font-size: 1.375rem;
}

.faqWrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faqWrap li {
	border-radius: 10px;
	overflow: hidden;
}

.faqWrap li .faqHead {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #D7E9DA;
	padding: 10px 15px;
}

.faqWrap li .faqHead h3 {
	flex: 1;
	font-size: 1.0625rem;
	line-height: 1.4;
}

.faqWrap li .faqBody {
	display: flex;
	gap: 10px;
	background: #fff;
	padding: 20px 15px;
}

.faqWrap li .faqBody p {
	flex: 1;
	font-size: 0.875rem;
	line-height: 1.8;
}

.faqWrap li .faqBody .faqIcon {
	background: #EF8F39;
}

.faqWrap .faqIcon {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100vmax;
	background: var(--color_main);
	width: 35px;
	height: 35px;
	color: #fff;
	font-size: 1.125rem;
	font-family: "Inter", sans-serif;
}

.bestPicks {
	margin-bottom: 100px;
	padding-top: 40px;
}

.bestPicks > p {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	background: repeating-linear-gradient(-45deg, #c6decd, #c6decd 5px, #dff6e6 5px, #dff6e6 10px);
	padding: 25px 20px;
	font-weight: 700;
	font-size: 1.25rem;
	text-align: center;
}

.bestPicks .inner {
	width: 90%;
}

.bestPicks_splide .splide__slide {
	border: 1px solid var(--color_main);
	border-radius: 5px;
	width: 100%;
	overflow: hidden;
}

.bestPicks_splide .splide__slide img {
	background: rgb(196, 196, 196);
}

.bestPicks_splide .splide__arrow {
	opacity: 1;
	background: var(--color_main);
	width: 50px;
	height: 50px;
}

.bestPicks_splide .splide__arrow:hover {
	opacity: 1;
}

.bestPicks_splide .splide__arrow svg {
	fill: #fff;
	width: 20px;
	height: 20px;
}

.bestPicks_splide .splide__arrow--next {
	right: -10px;
	transform: translate(100%, -50%);
}

.bestPicks_splide .splide__arrow--prev {
	left: -10px;
	transform: translate(-100%, -50%);
}

.bestPicks_item > a {
	display: flex;
	gap: 20px;
	padding: 30px;
}

.bestPicks_item .bestPicks_img {
	border-radius: 5px;
	width: 300px;
	height: 200px;
	overflow: hidden;
}

.bestPicks_item .bestPicks_txt {
	flex: 1;
}

.bestPicks_item .bestPicks_txt h3 {
	margin-bottom: 10px;
	font-size: 1.25rem;
}

.bestPicks_item .bestPicks_price {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 0.875rem;
}

.bestPicks_item .bestPicks_price span {
	color: #F76969;
	font-weight: 700;
	font-size: 1rem;
}

.bestPicks_item .bestPicks_desc {
	font-size: 0.875rem;
	line-height: 1.4;
}

.vendorWrap {
	margin: 0 auto;
	border-radius: 20px;
	width: 100%;
}

.vendorTitle {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
	align-items: center;
	margin-bottom: 20px;
	background: var(--color_main);
	padding: 15px 25px;
	color: #fff;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.4;
}

.vendorTitle .vendorTitle_main {
	color: #ffeb3b;
	font-size: 1.375rem;
}

.vendors {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.vendor {
	margin: 0 auto;
	border-radius: 10px;
	background: #fff;
	padding: 20px;
	width: 100%;
}

.vendorMain {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}

.vendorTxt {
	flex: 1;
	width: calc(100% - 300px - 20px);
	min-width: 320px;
}

.vendorTxt h3 {
	margin-bottom: 10px;
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 8px;
	font-size: 1.25rem;
	line-height: 1.4;
}

.vendorPrice {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 0.875rem;
}

.vendorPrice span {
	color: #F76969;
	font-weight: 700;
	font-size: 1rem;
}

.vendorImg {
	border-radius: 5px;
	background: #EFEFEF;
	aspect-ratio: 3/2;
	width: 300px;
	height: 100%;
	overflow: hidden;
}

.vendorCount {
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 0.875rem;
}

.vendorCount span {
	color: #F76969;
	font-size: 1.375rem;
}

.vendorInfo {
	display: flex;
	flex-direction: column;
	gap: 2px 15px;
}

.vendorInfo .vendorInfo_block {
	display: flex;
	gap: 1px;
}

.vendorInfo .vendorInfo_block dl {
	display: flex;
	width: calc((100% - 2px) / 2);
}

.vendorInfo .vendorInfo_block dl dt,
.vendorInfo .vendorInfo_block dl dd {
	display: flex;
	justify-content: start;
	align-items: center;
	padding: 10px;
	font-size: 0.75rem;
	line-height: 1.4;
}

.vendorInfo .vendorInfo_block dl dt {
	background: #D7E9DA;
	width: 120px;
	min-width: 120px;
	font-weight: 500;
}

.vendorInfo .vendorInfo_block dl dd {
	flex: 1;
	background: #FAFAFA;
}

.vendorInfo .vendorInfo_block dl dd ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
}

.vendorInfo .vendorInfo_list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.vendorInfo .vendorInfo_list ul li {
	border-radius: 100vmax;
	background: #EDF5E6;
	padding: 6px 8px;
	font-weight: 700;
	font-size: 0.6875rem;
}

.vendorInfo.vendorInfo_btm .vendorInfo_block {
	flex-direction: column;
}

.vendorInfo.vendorInfo_btm .vendorInfo_block dl {
	width: 100%;
}

.vendorInfo.vendorInfo_btm .vendorInfo_block dl dt,
.vendorInfo.vendorInfo_btm .vendorInfo_block dl dd {
	padding: 15px 10px;
}

.vendorInfo.vendorInfo_btm .vendorInfo_block dl dt {
	width: 140px;
	min-width: 140px;
	font-weight: 700;
}

.vendorArea {
	display: flex;
	gap: 5px;
	margin-bottom: 15px;
}

.vendorArea ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 2px;
	margin-top: 3px;
}

.vendorArea ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.8125rem;
}

.cat {
	margin: 0 auto;
	border-radius: 20px;
	background: #fff;
	padding: 10px 30px 0 30px;
	width: 100%;
	max-width: 1100px;
}

.cat ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cat li a {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100vmax;
	background: #efefef;
	padding: 7px 12px;
	color: #999999;
	font-weight: 700;
	font-size: 0.75rem;
}

.cat li a.current-term {
	background: #D6E7C6;
	color: var(--color_text);
}

.btnArea {
	margin-top: 10px;
	text-align: right;
}

.sidebar {
	width: 270px;
	min-width: 270px;
}

.sidebarCnt {
	border-radius: 10px;
	background: #fff;
	padding: 30px 15px;
}

.sidebarCnt ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sidebarCnt ul li {
	border: 1px solid #c3c3c3;
	border-radius: 5px;
	background: #fff;
	width: calc((100% - 10px) / 2);
	height: 100%;
	overflow: hidden;
}

.sidebarCnt ul li a {
	display: block;
	width: 100%;
	height: 100%;
}

.sidebarCnt ul li a img {
	background: gray;
	width: 115px;
	height: 75px;
	-o-object-fit: initial;
	object-fit: initial;
}

.sidebarCnt ul li a p {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3px;
	height: 45px;
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 1.4;
	text-align: center;
}

.flexMain {
	display: flex;
	flex-direction: column;
	gap: 70px;
	width: 100%;
}

.singleTop_main {
	display: flex;
	align-items: start;
	gap: 20px;
	margin-bottom: 15px;
}

.singleTop_cnt {
	flex: 1;
}

.singleTop_img {
	aspect-ratio: 3/2;
	width: 100%;
	max-width: 400px;
}

.singleTop_img img {
	border-radius: 10px;
}

.singleTop_head {
	margin-bottom: 15px;
}

.singleTop_head h1 {
	margin-bottom: 8px;
	font-size: 1.375rem;
}

.singleTop_head p {
	font-size: 0.875rem;
}

.singleTop_price {
	margin-bottom: 15px;
	font-weight: 700;
	font-size: 1rem;
}

.singleTop_price span {
	color: #F76969;
}

.singleTop_dis {
	margin-bottom: 15px;
	font-size: 0.875rem;
	line-height: 1.6;
}

.singleTop_area {
	display: flex;
	gap: 5px;
}

.singleTop_area ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
}

.singleTop_area ul li {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.4;
}

.singleInfo {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.singleInfo_block {
	display: flex;
	gap: 1px;
}

.singleInfo_block dl {
	display: flex;
	width: 50%;
}

.singleInfo_block dl dt,
.singleInfo_block dl dd {
	background: #fff;
	padding: 15px 10px;
}

.singleInfo_block dl dt {
	background: #D7E9DA;
	width: 120px;
	min-width: 120px;
	font-weight: 700;
	font-size: 0.875rem;
}

.singleInfo_block dl dd {
	flex: 1;
	font-size: 0.8125rem;
}

.singleInfo_block ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 2px;
}

.singleInfo_block.info_w-100 dl {
	width: 100%;
}

.singleInfo_block.info_w-100 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.singleInfo_block.info_w-100 ul li {
	border-radius: 100vmax;
	background: #EDF5E6;
	padding: 7px 10px;
	font-weight: 700;
	font-size: 0.75rem;
}

.singleInfo_block.singleInfo_licenses ul {
	display: flex;
	flex-direction: column;
}

.singleInfo_block.singleInfo_licenses ul li {
	gap: 7px;
	background: transparent !important;
	padding: 0 !important;
	font-weight: 400 !important;
	line-height: 1.2;
}

.singleTitle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	margin-bottom: 20px;
}

.singleTitle img {
	width: 24px;
	height: auto;
}

.singleTitle span {
	font-size: 1.5625rem;
}

.secSingle_cnt:not(:first-of-type) {
	margin-top: 40px;
}

.secSingle_cnt h3 {
	margin-bottom: 10px;
	font-size: 1.125rem;
}

.secSingle_cnt dl {
	display: flex;
	font-size: 0.875rem;
}

.secSingle_cnt dl:nth-of-type(odd) {
	background: #fff;
}

.secSingle_cnt dl dt {
	padding: 15px 20px;
	width: 180px;
	font-weight: 700;
}

.secSingle_cnt dl dt,
.secSingle_cnt dl dd {
	line-height: 1.6;
}

.secSingle_cnt dl dd {
	padding: 15px 20px;
	width: calc(100% - 180px);
}

.secSingle_cnt dl dd a {
	color: #EF8F39;
	font-weight: 700;
	text-decoration: underline;
}

.singleCnt_img {
	margin-top: 40px;
	width: 100%;
	max-width: 600px;
}

.singleCnt_img img {
	border-radius: 20px;
	background: #D9D9D9;
	height: auto;
}

.singlePrice .singleTitle {
	justify-content: center;
}

.priceInfo dl {
	display: flex;
	border-bottom: 1px solid #EFEBE0;
}

.priceInfo dl dt,
.priceInfo dl dd {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	padding: 15px 5px;
	width: 50%;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.4;
	text-align: center;
}

.priceInfo dl dt {
	border-right: 1px solid #EFEBE0;
}

.priceInfo dl dd {
	color: #F76969;
	font-weight: 700;
	font-size: 1rem;
}

.priceInfo dl:first-of-type {
	border-bottom: initial;
}

.priceInfo dl:first-of-type dt,
.priceInfo dl:first-of-type dd {
	background: var(--color_main);
	padding: 20px 0;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
}

.priceInfo dl:first-of-type dt {
	border-radius: 10px 0 0 0;
}

.priceInfo dl:first-of-type dd {
	border-radius: 0 10px 0 0;
}

.priceInfo dl:last-of-type dt {
	border-radius: 0 0 0 10px;
}

.priceInfo dl:last-of-type dd {
	border-radius: 0 0 10px 0;
}

.priceItems_wrap {
	margin-top: 40px;
}

.priceItems_wrap h3 {
	margin-bottom: 15px;
	font-size: 1.125rem;
	text-align: center;
}

.priceItems li {
	display: flex;
	border-bottom: 1px solid #EFEBE0;
}

.priceItems li > div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.priceItems .priceItem_left {
	background: var(--color_main);
	padding: 15px 5px;
	width: 125px;
}

.priceItems .priceItem_left > p {
	color: #fff;
	font-weight: 700;
}

.priceItems .priceItem_wrap {
	display: flex;
	background: #fff;
	width: calc(100% - 125px);
}

.priceItems .priceItem_wrap p {
	line-height: 1.6;
}

.priceItems .priceItem_cnter {
	flex: 1;
	border-right: 1px solid #EFEBE0;
	padding: 15px;
	font-size: 0.875rem;
}

.priceItems .priceItem_right {
	padding: 15px;
	width: 130px;
}

.priceItems .priceItem_right > p {
	color: #F76969;
	font-weight: 700;
}

.singleFlow_cnt {
	display: flex;
	gap: 15px;
	border-bottom: 3px solid #D7E9DA;
	padding-bottom: 25px;
}

.singleFlow_cnt:not(:first-of-type) {
	padding-top: 25px;
}

.singleFlow_cnt .stepNum {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2px;
	border-radius: 100vmax;
	background: var(--color_main);
	width: 50px;
	height: 50px;
}

.singleFlow_cnt .stepNum span {
	color: #fff;
	font-weight: 700;
	font-size: 0.75rem;
}

.singleFlow_cnt .stepNum span:last-of-type {
	font-size: 1.125rem;
}

.singleFlow_cnt dl {
	flex: 1;
}

.singleFlow_cnt dl dt {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 1rem;
}

.singleFlow_cnt dl dd {
	font-size: 0.8125rem;
	line-height: 1.6;
}

.acdns {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0 auto;
	width: 100%;
}

.acdn-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	overflow: hidden;
}

.acdn-item .acdn-btn {
	display: flex;
	position: relative;
	align-items: center;
	cursor: pointer;
	background: initial;
	padding: 20px;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	background: #D7E9DA;
}

.acdn-item .acdn-btn .acdn-ques-ttl {
	flex: 1;
	padding: 0 10px;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.4;
	text-align: left;
}

.acdn-item .acdn-btn .acdn-right {
	transition: transform 0.2s;
	width: 21px;
	height: 21px;
}

.acdn-item .acdn-btn.acdn-open .acdn-right {
	transform: rotate(-180deg);
}

.acdn-item .acdn-body {
	transition: height 0.3s ease;
	background: #fff;
	width: 100%;
	height: 0;
}

.acdn-item .acdn-body .acdn-body-in {
	display: flex;
	align-items: start;
	background: transparent;
	padding: 10px 20px 20px 20px;
}

.acdn-item .acdn-body .acdn-body-in > p {
	font-size: 0.875rem;
	line-height: 1.8;
}

.acdn-item .acdn-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.acdn-item .acdn-icon > span {
	color: #EF8F39;
	font-weight: 500;
	font-size: 1.375rem;
	font-family: "Inter", sans-serif;
}

.singleNotice_block h3 {
	margin-bottom: 40px;
	background: var(--color_main);
	padding: 20px;
	color: #fff;
	font-size: 1.375rem;
	text-align: center;
}

.singleNotice_cnt {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}

.singleNotice_cnt dl {
	flex: 1 1 calc((100% - 30px) / 2);
	max-width: calc((100% - 30px) / 2);
}

.singleNotice_cnt dl dt {
	margin-bottom: 10px;
	border-bottom: 2px solid var(--color_main);
	padding-bottom: 8px;
	color: var(--color_main);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.2;
}

.singleNotice_cnt dl dd {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.singleNotice_cnt dl dd strong {
	background: linear-gradient(transparent 60%, #fddca0 80%);
}

.singleNotice_cnt dl:nth-last-child(1):nth-child(odd) {
	flex: 1 1 100%;
	max-width: 100%;
}

.singleArea dl {
	margin: 0 auto;
	border: 2px solid var(--color_main);
	border-radius: 10px;
	max-width: 800px;
	overflow: hidden;
}

.singleArea dl dt {
	background: var(--color_main);
	padding: 20px;
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	text-align: center;
}

.singleArea dl dd {
	background: #fff;
	padding: 20px;
}

.singleArea dl dd ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 2px;
}

.singleArea dl dd ul li {
	font-weight: 500;
	font-size: 1rem;
}

.pageFv {
	position: relative;
	height: 300px;
}

.pageFv .pageFv_img {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.pageFv .pageFv_img img {
	position: absolute;
	top: 0;
	left: 0;
	filter: blur(110px);
}

.pageFv .pageFv_title {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 100%;
}

.pageFv .pageFv_title .inner {
	height: 100%;
}

.pageFv .pageFv_title h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: min(4vw, 40px);
	text-align: center;
}

.customCnt {
	margin-top: 30px;
	margin-bottom: 70px;
}

.customCnt_head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 60px;
}

.customCnt_head .customCnt_head_left {
	max-width: 500px;
}

.customCnt_head .customCnt_head_link {
	flex: 1;
	min-width: 310px;
}

.customCnt_head .customCnt_head_link .btnArea {
	margin: 0;
}

.customCnt_head .customCnt_head_link .btnArea .btn {
	padding: 20px 50px;
}

.customCnt_head .customCnt_cat {
	display: inline-block;
	margin-bottom: 10px;
	border-radius: 2px;
	background: var(--color_main);
	padding: 5px 10px;
	color: #fff;
	font-weight: 500;
	font-size: 0.875rem;
}

.customCnt_head h2 {
	margin-bottom: 10px;
	font-size: 1.375rem;
}

.customCnt_head .customCnt_address {
	margin-bottom: 15px;
	font-size: 0.9375rem;
}

.customCnt_price {
	margin-bottom: 20px;
}

.customCnt_price .singleTop_price {
	font-weight: 500;
	font-size: 0.875rem;
}

.customCnt_price .singleTop_price span {
	font-weight: 700;
	font-size: 1rem;
}

.customCnt_info {
	margin-bottom: 15px;
}

.customCnt_info ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 2px;
}

.customCnt_info ul li {
	color: #6D6D6D;
	font-size: 0.8125rem;
}

.customCnt_feat ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.customCnt_feat ul li {
	border: 1px solid #6D6D6D;
	padding: 5px 10px;
	color: #6D6D6D;
	font-size: 0.8125rem;
}

.tab-contents__item-in {
	display: flex;
	gap: 30px;
}

.tab-contents__item-left {
	flex: 1;
}

.tab-contents__item-left .singleInfo_block {
	display: contents;
	flex-direction: column;
}

.tab-contents__item-left .singleInfo_block dl {
	width: 100%;
}

.tab-contents__item-left .singleInfo_block .singleInfo_order_01 {
	order: 1;
}

.tab-contents__item-left .singleInfo_block .singleInfo_order_02 {
	order: 2;
}

.tab-contents__item-left .singleInfo_block .singleInfo_order_03 {
	order: 3;
}

.tab-contents__item-left .singleInfo_block .singleInfo_order_04 {
	order: 4;
}

.tab-contents__item-left .singleInfo_block .singleInfo_order_05 {
	order: 5;
}

.tab-contents__item-left .singleInfo_block .singleInfo_order_06 {
	order: 6;
}

.tab-contents__item-left .singleInfo_block .singleInfo_order_07 {
	order: 7;
}

.tab-contents__item-right {
	width: 300px;
}

.tab-contents__item-right .asideCnt {
	position: sticky;
	top: 30px;
	border: 2px solid var(--color_main);
	border-radius: 10px;
	overflow: hidden;
}

.tab-contents__item-right .asideCnt > p {
	background: var(--color_main);
	padding: 15px 10px;
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.2;
	text-align: center;
}

.tab-contents__item-right .asideCnt_in {
	padding: 20px 10px;
}

.tab-contents__item-right .asideCnt_in > h4 {
	margin-bottom: 20px;
	font-weight: 400;
}

.tab-contents__item-right .asideCnt_in ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	border-radius: 3px;
	background: #fde6d5;
	padding: 12px 10px;
}

.tab-contents__item-right .asideCnt_in ul li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tab-contents__item-right .asideCnt_in ul li span {
	display: flex;
	justify-content: center;
	align-items: center;
}

.tab-contents__item-right .asideCnt_in ul li span svg {
	width: 17px;
	height: 17px;
}

.tab-contents__item-right .asideCnt_in ul li p {
	flex: 1;
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 1.4;
}

.tab-contents__item-right .asideCnt_tel {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 25px;
}

.tab-contents__item-right .asideCnt_tel svg {
	width: 23px;
	height: 23px;
}

.tab-contents__item-right .asideCnt_tel-num {
	color: #EF8F39;
	font-weight: 700;
	font-size: 1.5625rem;
}

.tab-contents__item-right .asideCnt_hour {
	margin-top: 5px;
	margin-left: 25px;
	color: #EF8F39;
	font-weight: 500;
	font-size: 0.75rem;
}

.tab-contents__item-right .btnArea {
	margin-top: 10px;
	text-align: center;
}

.tab-contents__item-right .btnArea .btn {
	width: 100%;
}

.tab-contents__item-block {
	margin-top: 40px;
}

.tab-contents__item-title {
	margin-bottom: 15px;
	font-size: 1.125rem;
}

.tab-contents__item-thumbnail {
	margin-bottom: 15px;
	aspect-ratio: 16/9;
}

.single_dis {
	margin-bottom: 15px;
	font-size: 0.875rem;
	line-height: 1.6;
}

.jr-itemInfo {
	display: flex;
	flex-direction: column;
	gap: 1px;
	border-radius: 10px;
	overflow: hidden;
}

.jr-itemInfo dl {
	display: flex;
}

.jr-itemInfo dt {
	display: flex;
	justify-content: start;
	align-items: center;
	background: var(--color_main);
	padding: 20px 10px;
	width: 180px;
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1.2;
}

.jr-itemInfo dd {
	flex: 1;
	background: #fff;
	padding: 20px;
	font-size: 0.8125rem;
	line-height: 1.6;
}

.tabWrap {
	border-bottom: 1px solid var(--color_text);
	background: #F5F2EA;
}

#tab-info,
#tab-price,
#tab-faq,
#tab-flow {
	scroll-margin-top: 100px;
}

.tab-list {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 10px;
	box-sizing: border-box;
}

.tab-list__item {
	flex: 1;
	cursor: pointer;
	border-radius: 10px 10px 0 0;
	background-color: #d1d1d1;
	padding: 20px;
	color: #6D6D6D;
	font-weight: 500;
	font-size: 0.875rem;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.2;
	user-select: none;
}

.tab-list__item.tab-active {
	position: relative;
	bottom: -1px;
	border-top: 1px solid var(--color_text);
	border-right: 1px solid var(--color_text);
	border-bottom: none;
	border-bottom: 1px solid #F5F2EA;
	border-left: 1px solid var(--color_text);
	background-color: #F5F2EA;
	color: var(--color_text);
	font-weight: 700;
}

.tab-contents__item {
	display: none;
	margin-top: 30px;
}

.tab-contents__item.tab-show {
	display: block;
}

.page-contact form {
	margin-top: 40px;
}

.page-contact [type=submit] {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	margin-top: 40px;
	border-radius: 5px;
	background: #EF8F39;
	padding: 15px;
	width: 100%;
	max-width: 250px;
	letter-spacing: 0.1em;
}

.page-contact .wpcf7-spinner {
	display: none;
}

.page-contact .wpcf7-not-valid-tip {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	margin-top: 6px;
	border-radius: 5px;
	background-color: #f4a6a6;
	padding: 10px 10px;
	color: #fff;
	font-weight: bold;
	font-size: 0.875rem;
}

.page-contact .wpcf7-not-valid-tip::before {
	position: absolute;
	top: -18px;
	left: 5%;
	border: 7px solid transparent;
	border-bottom: 12px solid #f4a6a6;
	content: "";
}

.page-contact .wpcf7 form.invalid .wpcf7-response-output,
.page-contact .wpcf7 form.unaccepted .wpcf7-response-output {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid #ef6262;
	background: #f4a6a6;
	padding: 20px;
	color: #fff;
	font-size: 1rem;
	line-height: 1.6;
}

.contact_head {
	border-radius: 10px;
	background: #EFEBE0;
	padding: 30px;
	font-weight: 500;
	font-size: 0.9375rem;
	line-height: 1.8;
	text-align: center;
}

.formIn {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.formItem label {
	display: inline-block;
	position: relative;
	margin-bottom: 10px;
	font-weight: 700;
}

.formItem .required {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-left: 8px;
	border-radius: 3px;
	background: #EF8F39;
	padding: 5px;
	color: #fff;
	font-weight: 500;
	font-size: 0.75rem;
}

.formItem input,
.formItem textarea {
	border: 1px solid #E0E0E0;
	border-radius: 5px;
	background: #fff;
	padding: 8px;
	width: 100%;
	font-weight: 500;
	font-size: 0.875rem;
}

.formItem input::-moz-placeholder,
.formItem textarea::-moz-placeholder {
	color: #E0E0E0;
}

.formItem input::placeholder,
.formItem textarea::placeholder {
	color: #E0E0E0;
}

.formItem textarea {
	height: 200px;
}

.wpcf7 form.sent .wpcf7-response-output {
	display: none;
}

.page-thanks {
	margin-top: 80px;
	text-align: center;
}

.thanksTitle {
	margin-bottom: 30px;
	font-size: 1.5625rem;
}

.thanksMsg p {
	line-height: 2;
}

.thanksMsg .btnArea {
	margin-top: 60px;
}

.thanksMsg .btnArea .btn {
	max-width: 300px;
}

.service_footer {
	margin-top: 70px;
}

.footer small {
	display: block;
	background: #2b5c35;
	padding: 20px;
	color: #fff;
	font-size: 0.75rem;
	text-align: center;
}

.footer_in {
	display: flex;
	gap: 100px;
	padding: 70px 0;
}

.footer_left ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}

.footer_left ul li a {
	transition: color 0.2s;
	font-weight: 700;
	font-size: 0.75rem;
	line-height: 1.2;
}

.footer_left ul li a:hover {
	color: var(--color_main);
}

.footer_right h4 {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 1rem;
}

.footer_right ul {
	display: flex;
	flex-wrap: wrap;
}

.footer_right ul li {
	margin: 0 30px 20px 0;
	width: calc((100% - 90px) / 3);
}

.footer_right ul li a {
	display: flex;
	transition: color 0.2s;
	font-size: 0.75rem;
}

.footer_right ul li a:hover {
	color: var(--color_main);
}

.footer_right ul li a span:nth-of-type(2) {
	display: none;
}

@media (max-width: 1100px) {

.serviceIn {
	border-radius: 0;
}

.flexWrap {
	display: block;
}

.vendorMain {
	margin-bottom: 15px;
}

.vendorInfo .vendorInfo_block {
	flex-direction: column;
}

.vendorInfo .vendorInfo_block dl {
	width: 100%;
}

.vendorInfo .vendorInfo_block dl dt {
	width: 100px;
	min-width: initial;
}

.vendorInfo.vendorInfo_btm .vendorInfo_block dl dt,
.vendorInfo.vendorInfo_btm .vendorInfo_block dl dd {
	padding: 8px 10px;
}

.vendorInfo.vendorInfo_btm .vendorInfo_block dl dt {
	width: 100px;
	min-width: initial;
}

.w-1100-none {
	display: none !important;
}

.btnArea {
	margin-top: 30px;
	text-align: center;
}

.btnArea .btn {
	width: 70%;
}

.sidebar {
	display: none;
}

}

@media (max-width: 1000px) {

.singleTop_main {
	flex-direction: column;
}

.singleTop_img {
	max-width: initial;
}

.singleInfo_block {
	display: contents;
	flex-direction: column;
}

.singleInfo_block .singleInfo_order_01 {
	order: 1;
}

.singleInfo_block .singleInfo_order_02 {
	order: 2;
}

.singleInfo_block .singleInfo_order_03 {
	order: 3;
}

.singleInfo_block .singleInfo_order_04 {
	order: 4;
}

.singleInfo_block .singleInfo_order_05 {
	order: 5;
}

.singleInfo_block .singleInfo_order_06 {
	order: 6;
}

.singleInfo_block .singleInfo_order_07 {
	order: 7;
}

.singleInfo_block dl {
	width: 100%;
}

}

@media screen and (max-width: 834px) {

.inner {
	padding: 0 30px;
}

.secTitle h2 {
	font-size: 1.375rem;
}

.in {
	padding: 0 30px;
}

.ctaArea {
	position: relative;
	right: 50%;
	left: 50%;
	margin-right: -50vw;
	margin-left: -50vw;
	width: 100vw;
}

.sliderArea .splide__slide {
	border-radius: 10px;
	height: 35vw;
}

.searchForm {
	flex-direction: column;
}

.searchForm .searchForm_txt {
	padding: 15px;
	width: 100%;
	font-size: 0.875rem;
	text-align: center;
}

.searchForm .searchForm_in {
	width: 100%;
}

.searchForm .searchForm_block {
	width: 50%;
}

.searchForm .searchForm_block p {
	font-size: 0.6875rem;
}

.searchForm form {
	flex-direction: column;
	gap: 25px;
	padding: 20px;
}

.searchForm button {
	margin-left: 0;
	width: 200px;
	font-weight: 700;
}

.bg-color {
	position: relative !important;
	right: 50% !important;
	left: 50% !important;
	margin-right: -50vw !important;
	margin-left: -50vw !important;
	border-radius: 0 !important;
	padding: 30px !important;
	width: 100vw !important;
}

.pageTop {
	padding: 30px 0;
	height: auto;
}

.pageTop .pageTop_box_top {
	flex-direction: column;
	align-items: start;
	gap: 10px;
}

.pageTop .pageTop_bble::after {
	right: 30px;
	bottom: -13px;
	transform: rotate(25deg);
}

.pageTop .pageTop_bble {
	flex-direction: row;
	border: none;
	border-radius: 5px;
	background: var(--color_main);
	padding: 6px 10px;
	width: auto;
	height: auto;
}

.pageTop h1 {
	font-size: min(40px, 6vw);
}

.pageTop h1 span:first-of-type {
	font-size: min(30px, 4.5vw);
}

.pageNot_wrap p {
	font-size: 0.8125rem;
}

.pageWrap {
	gap: 70px;
}

.fvIn h1 {
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	font-size: 6.5vw;
	line-height: 1.4;
	text-align: center;
}

.aboutFlex {
	flex-direction: column;
	align-items: start;
}

.aboutMain {
	width: 100%;
	max-width: 600px;
}

.aboutImg {
	display: flex;
	justify-content: center;
	width: 100%;
	min-width: initial;
}

.aboutImg img {
	width: 50%;
}

.feats {
	margin-top: 0;
}

.flowStep_cntIn {
	padding: 15px;
}

.flowStep_cntIn > p {
	font-size: 0.8125rem;
}

.flowStep_cntHead span {
	font-size: 1rem;
}

.flowStep_cntHead h3 {
	font-size: 1.125rem;
}

.bestPicks_splide .splide__slide {
	display: flex;
	justify-content: center;
}

.bestPicks_splide .splide__arrow {
	width: 40px;
	height: 40px;
}

.bestPicks_item > a {
	flex-direction: column;
	max-width: 450px;
}

.bestPicks_item .bestPicks_img {
	aspect-ratio: 300/200;
	width: 100%;
	height: auto;
}

.singleTop_img {
	position: relative !important;
	right: 50% !important;
	left: 50% !important;
	margin-right: -50vw !important;
	margin-left: -50vw !important;
	width: 100vw !important;
}

.singleTop_img img {
	border-radius: 0;
}

.singleTop_head h1 {
	font-size: 1.125rem;
}

.singleCnt_img img {
	border-radius: 10px;
}

.acdn-item .acdn-btn .acdn-ques-ttl {
	font-size: 0.875rem;
}

.acdn-item .acdn-icon > span {
	font-size: 1.125rem;
}

.singleNotice_block h3 {
	margin-bottom: 20px;
	font-size: 1.25rem;
}

.singleNotice_cnt {
	gap: 25px 20px;
}

.singleNotice_cnt dl dt {
	font-size: 1.0625rem;
}

.singleNotice_cnt dl {
	flex: 1 1 calc((100% - 20px) / 2);
	max-width: calc((100% - 20px) / 2);
}

.customCnt_head .customCnt_head_link {
	min-width: none;
}

.tab-contents__item-in {
	flex-direction: column;
}

.tab-contents__item-right {
	width: 100%;
}

.tab-contents__item-right .asideCnt {
	position: static;
	top: inherit;
}

.tab-contents__item-block {
	margin-top: 30px;
}

.jr-itemInfo dt {
	padding: 10px;
	width: 150px;
	font-size: 0.8125rem;
}

.jr-itemInfo dd {
	padding: 10px;
	font-size: 0.75rem;
}

.contact_head {
	padding: 20px;
	font-size: 0.8125rem;
}

.page-thanks {
	margin-top: 60px;
}

.thanksTitle {
	margin-bottom: 20px;
	font-size: 1.125rem;
}

.thanksMsg p {
	font-size: 0.875rem;
	line-height: 1.8;
}

.thanksMsg .btnArea {
	margin-top: 40px;
}

.service_footer {
	margin-top: 40px;
}

.footer_in {
	flex-direction: column;
	gap: 30px;
	padding: 40px 0;
}

.footer_left {
	display: contents;
}

.footer_left ul {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	order: 3;
	gap: 15px;
	margin-top: 0;
}

.footer_left .logo {
	order: 1;
}

.footer_right {
	display: contents;
}

.footer_right .footer_right-cat {
	order: 2;
}

.footer_right h4 {
	margin-bottom: 10px;
	font-size: 0.875rem;
}

.footer_right ul {
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 2px;
}

.footer_right ul li {
	margin: 0;
	width: 100%;
}

.footer_right ul li a {
	justify-content: space-between;
	transition: none;
	background: #fff;
	padding: 20px 15px;
	font-weight: 500;
}

.footer_right ul li a:hover {
	color: var(--color_text);
}

.footer_right ul li a span:nth-of-type(2) {
	display: block;
}

}

@media (max-width: 834px) {

.acdn-item .acdn-body .acdn-body-in > p {
	font-size: 0.75rem;
}

}

@media screen and (max-width: 500px) {

.inner {
	padding: 0 15px;
}

.logo {
	width: 120px;
}

.secTitle {
	margin-bottom: 20px;
}

.secTitle p {
	font-size: 0.75rem;
}

.secTitle h2 {
	font-weight: 700;
	font-size: 1.25rem;
}

.in {
	padding: 0 20px;
}

.serviceIn {
	padding: 40px 0;
}

.serviceIn ul {
	gap: 7px;
}

.serviceIn li {
	width: calc((100% - 14px) / 3);
}

.serviceIn li a img {
	height: 65px;
}

.serviceIn li a p {
	font-size: 0.6875rem;
}

.sliderArea .splide__slide:nth-of-type(even) {
	margin-top: 30px;
}

.searchForm .searchForm_block select {
	padding: 5px 20px 5px 8px;
	font-size: 0.6875rem;
}

.bg-color {
	padding: 30px 15px !important;
}

.pageTop .pageTop_bble p {
	font-size: 0.8125rem;
}

.breadcrumbs {
	padding: 5px 0;
}

.wp-container p {
	font-size: 0.8125rem;
	line-height: 1.8;
}

.wp-container h2 {
	margin-bottom: 25px;
	font-size: 1.125rem;
}

.wp-container h3 {
	font-size: 1rem;
}

.pageNot_wrap {
	height: min(350px, 50vh);
}

.pageNot_title {
	margin-bottom: min(40px, 10vw);
}

.header_in {
	padding: 10px 0;
}

.headerPc_menu ul a span:nth-of-type(2) {
	font-size: 0.625rem;
}

#serviceSearch .serviceIn {
	transform: translate(-50%, -40%);
}

#serviceSearch #serviceIn_close {
	transform: translate(25%, -25%);
	width: 40px;
	height: 40px;
}

#serviceSearch #serviceIn_close span {
	width: 20px;
	height: 3px;
}

.pageWrap {
	gap: 50px;
}

.fvIn h1 {
	top: 12%;
	font-size: 7.5vw;
}

.aboutImg img {
	width: 45%;
}

.aboutTxt p br {
	display: block;
}

.aboutTxt p:nth-of-type(1) {
	margin-bottom: 10px;
	font-size: 0.9375rem;
	line-height: 2;
}

.aboutTxt p:nth-of-type(2) {
	font-size: 0.8125rem;
	line-height: 2;
}

.feats {
	flex-direction: column;
	flex-wrap: initial;
	gap: 20px;
}

.feat {
	width: 100%;
	min-width: initial;
}

.feat .featHead span {
	font-size: 0.75rem;
}

.feat .featHead h3 {
	font-size: 1.125rem;
}

.feat .featMain {
	padding: 20px;
}

.feat .featMain h4 {
	font-size: 1rem;
	line-height: 1.6;
}

.feat .featMain p {
	font-size: 0.8125rem;
	line-height: 2;
}

.flowStep_cntHead span {
	font-size: 0.875rem;
}

.faqWrap {
	gap: 15px;
}

.faqWrap li .faqHead {
	padding: 12px 15px;
}

.faqWrap li .faqHead h3 {
	font-size: 0.9375rem;
}

.faqWrap li .faqBody p {
	font-size: 0.75rem;
}

.faqWrap .faqIcon {
	width: 30px;
	height: 30px;
	font-size: 1rem;
}

.bestPicks > p {
	margin-bottom: 15px;
	padding: 17px 10px;
	font-size: 1.125rem;
}

.bestPicks .inner {
	width: 100%;
}

.bestPicks_splide .splide__arrow {
	width: 30px;
	height: 30px;
}

.bestPicks_splide .splide__arrow svg {
	width: 15px;
	height: 15px;
}

.bestPicks_splide .splide__arrow--next {
	transform: translate(0%, -50%);
}

.bestPicks_splide .splide__arrow--prev {
	transform: translate(0%, -50%);
}

.bestPicks_item > a {
	gap: 15px;
	padding: 20px;
}

.bestPicks_item .bestPicks_txt h3 {
	font-size: 1rem;
}

.bestPicks_item .bestPicks_price {
	font-size: 0.8125rem;
}

.bestPicks_item .bestPicks_desc {
	font-size: 0.75rem;
	line-height: 1.6;
}

.vendorTitle {
	margin-bottom: 15px;
	padding: 10px 20px;
	font-size: 0.9375rem;
}

.vendorTitle .vendorTitle_main {
	font-size: 1.125rem;
}

.vendor {
	padding: 20px 10px;
}

.vendorMain {
	gap: 10px;
	margin-bottom: 0;
}

.vendorTxt h3 {
	padding-bottom: 5px;
	font-size: 1.0625rem;
}

.vendorPrice {
	font-size: 0.8125rem;
}

.vendorImg {
	width: 100%;
}

.vendorCount {
	font-size: 0.75rem;
}

.vendorCount span {
	font-size: 1.125rem;
}

.vendorInfo .vendorInfo_block dl dd {
	width: calc(100% - 130px);
	font-size: 0.6875rem;
}

.vendorInfo .vendorInfo_block dl.flex-column {
	flex-direction: column !important;
}

.vendorInfo .vendorInfo_block dl.flex-column dt,
.vendorInfo .vendorInfo_block dl.flex-column dd {
	width: 100%;
}

.vendorInfo .vendorInfo_block dl.flex-column dt {
	justify-content: center;
}

.vendorInfo .vendorInfo_list ul li {
	font-size: 0.5625rem;
}

.vendorArea svg {
	width: 12px;
}

.vendorArea ul li {
	font-size: 0.6875rem;
}

.cat {
	padding: 10px 10px 0 10px;
}

.cat ul {
	gap: 5px;
}

.cat li a {
	font-size: 0.625rem;
}

.btnArea {
	margin-top: 15px;
}

.flexMain {
	gap: 50px;
}

.singleTop_head p {
	font-size: 0.75rem;
}

.singleTop_dis {
	font-size: 0.75rem;
	line-height: 1.8;
}

.singleTop_area ul li {
	font-size: 0.8125rem;
}

.singleTop_area svg {
	width: 12px;
}

.singleInfo_block dl dt,
.singleInfo_block dl dd {
	padding: 12px;
}

.singleInfo_block dl dt {
	font-size: 0.75rem;
}

.singleInfo_block dl dd {
	font-size: 0.6875rem;
}

.singleInfo_block.info_w-100 ul li {
	font-size: 0.625rem;
}

.singleTitle {
	gap: 5px;
}

.singleTitle img {
	width: 20px;
}

.singleTitle span {
	font-size: 1.25rem;
}

.secSingle_cnt h3 {
	font-size: 1rem;
}

.secSingle_cnt dl {
	font-size: 0.75rem;
}

.secSingle_cnt dl dt {
	padding: 10px;
	width: 150px;
}

.secSingle_cnt dl dd {
	padding: 10px 10px 10px 0;
}

.singleCnt_img {
	margin-top: 20px;
}

.priceInfo dl dt,
.priceInfo dl dd {
	padding: 10px 5px;
	font-size: 0.6875rem;
}

.priceInfo dl dd {
	font-size: 0.8125rem;
}

.priceInfo dl:first-of-type dt,
.priceInfo dl:first-of-type dd {
	padding: 15px 0;
	font-size: 0.875rem;
}

.priceInfo dl:first-of-type dd {
	padding: 15px 0;
}

.priceItems_wrap h3 {
	font-size: 1rem;
}

.priceItems {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.priceItems li {
	flex-direction: column;
}

.priceItems .priceItem_left {
	width: 100%;
}

.priceItems .priceItem_wrap {
	width: 100%;
}

.priceItems .priceItem_cnter {
	font-size: 0.75rem;
}

.singleFlow_cnt {
	gap: 10px;
	padding-bottom: 20px;
}

.singleFlow_cnt:not(:first-of-type) {
	padding-top: 20px;
}

.singleFlow_cnt .stepNum {
	width: 45px;
	height: 45px;
}

.singleFlow_cnt .stepNum span:last-of-type {
	font-size: 0.875rem;
}

.singleFlow_cnt .stepNum span {
	font-size: 0.625rem;
}

.singleFlow_cnt dl dt {
	font-size: 0.875rem;
}

.singleFlow_cnt dl dd {
	font-size: 0.75rem;
}

.acdn-item .acdn-btn {
	padding: 15px;
}

.singleNotice_cnt {
	flex-direction: column;
}

.singleNotice_cnt dl dd {
	font-size: 0.8125rem;
}

.singleNotice_cnt dl:nth-last-child(1):nth-child(odd) {
	flex: 1;
}

.singleNotice_cnt dl {
	flex: 1;
	max-width: initial;
}

.singleArea dl dt {
	padding: 15px;
	font-size: 1rem;
}

.singleArea dl dd {
	padding: 20px 10px;
}

.singleArea dl dd ul li {
	font-size: 0.75rem;
}

.pageFv {
	height: 120px;
}

.customCnt {
	margin-top: 20px;
	margin-bottom: 40px;
}

.customCnt_head {
	margin-bottom: 40px;
}

.customCnt_head .customCnt_head_link .btnArea .btn {
	padding: 18px 40px;
}

.customCnt_head h2 {
	font-size: 1.125rem;
}

.customCnt_head .customCnt_address {
	font-size: 0.8125rem;
}

.customCnt_price .singleTop_price {
	font-size: 0.8125rem;
}

.customCnt_info ul li {
	font-size: 0.6875rem;
}

.customCnt_feat ul li {
	padding: 5px 8px;
	font-size: 0.6875rem;
}

.tab-contents__item-right .asideCnt_tel {
	margin-top: 20px;
}

.tab-contents__item-title {
	font-size: 1.0625rem;
}

.single_dis {
	font-size: 0.75rem;
	line-height: 1.8;
}

.jr-itemInfo dt {
	width: 120px;
	font-size: 0.6875rem;
}

.jr-itemInfo dd {
	font-size: 0.625rem;
}

.tabWrap {
	position: sticky;
	top: 0;
	z-index: 10;
	border-top: 1px solid #d1d1d1;
	border-bottom: 3px solid #d1d1d1;
}

.tabWrap .inner {
	display: contents;
}

.tab-list {
	gap: 0;
	border-bottom: none;
}

.tab-list__item {
	border: none;
	border-radius: 0;
	background-color: transparent;
	padding: 18px 5px;
	font-size: 0.6875rem;
}

.tab-list__item.tab-active {
	bottom: 0;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	background: var(--color_main);
	color: #fff;
}

.tab-list__item.tab-active::after {
	position: absolute;
	bottom: -3px;
	background: var(--color_main);
	width: 100%;
	height: 3px;
	content: "";
}

.page-contact .wpcf7-not-valid-tip {
	font-size: 0.75rem;
}

.page-contact .wpcf7 form.invalid .wpcf7-response-output,
.page-contact .wpcf7 form.unaccepted .wpcf7-response-output {
	font-size: 0.8125rem;
}

.contact_head {
	font-size: 0.75rem;
}

.formItem label {
	font-size: 0.9375rem;
}

.formItem textarea {
	height: 150px;
}

.thanksMsg p {
	font-size: 0.8125rem;
}

.footer_left ul li a {
	font-size: 0.6875rem;
}

.footer_left .logo {
	width: 150px;
}

}

