@charset "utf-8";
/* CSS Document */
:root {
	--accent: #520059;
}
.fv-catch {
	background: var(--accent);
}
.sec-title span {
	color: var(--accent);
}
.cate {
	padding: 60px 0;
}
.cate-txt {
	font-size: 16px;
	line-height: 1.8;
}
.sp_block {
	display: none;
}
/*==========================
パンくずリスト
==========================*/
#breadcrumb {
	background-color: #fff;
	border-bottom: 1px solid #ddd;
}
ul.breadcrumb {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	padding: 12px 20px;
}
ul.breadcrumb li {
	list-style: none;
	font-size: 13px;
}
ul.breadcrumb li a {
	text-decoration: none;
	color: #666;
}
ul.breadcrumb li:first-child a::before {
	font-family: FontAwesome;
	content: "\f015";
	font-weight: normal;
	font-size: 1em;
	color: #666;
	padding-right: 3px;
}
ul.breadcrumb li::after {
	content: ">";
	padding: 0 8px;
	color: #666;
}
ul.breadcrumb li:last-child::after {
	content: "";
}
ul.breadcrumb li a:hover {
	color: var(--accent);
}
/*==========================
FV
==========================*/
.fv-inner {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content:space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}
.fv-section {
	padding: 50px 20px;
}
.fv-content {
	width: calc(70% - 30px);
}
.fv-img {
	width: 30%;
}
.fv-title {
	letter-spacing: 0;
	font-size: 40px;
}
.fv-image img {
	width:100%;
}
.fv-sub {
	text-align: left;
}

/* #about .cate-txt {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
} */
#about .cate-box {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #ddd;
}
#about .cate-box .txt-box {
	flex: 1;
	padding: 40px;
}
#about .cate-box .img-box {
	width: 500px;
	flex-shrink: 0;
}
#about .cate-box:nth-of-type(2) .txt-box {
	order: 2;
}
#about .cate-box:nth-of-type(2) .img-box {
	order: 1;
}
#about h3.box-title {
	font-size: 22px;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 10px;
	margin-bottom: 15px;
}
#about .box-txt {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
}
#about .cate-txt2 {
	margin-top: 40px;
	text-align: center;
	line-height: 1.8;
	font-size: 16px;
}
#about .about-list {
    padding: 0;
}
#about .about-list li {
    padding: 5px 0 5px 15px;
    position: relative;
    font-size: 15px;
    color: #555;
}
#about .about-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent);
    position: absolute;
    top: 15px;
    left: 0;
}
#service, #flow, #faq {
	background-color: var(--bg-gray);
}
#service .cate-txt {
	text-align: center;
	color: #555;
	margin-bottom: 40px;
}
#service .service-list {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}
#service .service-card {
	background-color: #fff;
	cursor: pointer;
	transition: .3s;
	border-radius: 4px;
	padding: 20px;
}
#service .service-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
#service .service-card .txt-box {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-top: 10px;
}
#service .service-category {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 999px;
	background-color: var(--accent);
	font-size: 12px;
	color: #fff;
	margin-bottom: 10px;
}
#service .service-title {
	margin-top: 5px;
	text-align: left;
	font-size: 18px;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 10px;
}
#service .service-sub-title {
	margin-top: 10px;
	font-size: 14px;
	font-weight: bold;
	color: var(--accent);
}
#service .sub-service {
	margin-top: 4px;
	font-size: 14px;
	text-align: left;
	padding: 10px;
	border: 1px dotted #ddd;
	border-radius: 4px;
}
#service .sub-service li {
	padding-left: 15px;
	padding-bottom: 5px;
	position: relative;
}
#service .sub-service li.nolink {
	color: #555;
}
#service .sub-service li:last-child, #service .sub-service.flex_box li:nth-last-child(2) {
	padding-bottom: 0;
}
#service .sub-service li::before {
	content: "●";
	color: var(--accent);
	font-size: 13px;
	position: absolute;
	top: 0;
	left: 0;
}
#service .sub-service li a:hover {
	color: var(--accent);
}
#service .sub-service.flex_box {
	display: flex;
	flex-wrap: wrap;
}
#service .sub-service.flex_box li {
	width: calc( 100% / 2 - 10px );
}
#service .service-txt {
	text-align: left;
	margin-top: 15px;
	line-height: 1.8;
	font-size: 16px;
	color: #555;
}
#service .more-btn {
	margin-top:auto;
	padding-top: 15px;
	text-align: center;
}
#service .more-btn a {
	display: block;
	padding: 15px;
	border-radius: 4px;
	border: 2px solid var(--accent);
	font-weight: bold;
	color: var(--accent);
	position: relative;
	transition: .25s ease;
}
#service .more-btn a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	margin: auto;
	background-color: var(--accent);
	width: 15px;
	height: 15px;
	clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
	transform: translateY(-50%);
	transition: transform .25s ease;
}
#service .more-btn a:hover::before {
	transform: translate(4px, -50%);
}
#service .img-box img{
	width: 100%;
	height: 200px;
	object-position: center;
	object-fit:cover;
}
.reason-card {
	border-color: var(--accent);
}
.reason-icon {
	width: 100px;
	height: 100px;
}
.reason-icon img {
	width: 80px;
}
.reason-title span {
	color: var(--accent);
}
.reason-desc {
	text-align: center;
	line-height: 1.8;
}
#flow {
	margin-bottom: 40px;
}
#flow .flow-list {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 20px;
}
#flow .flow-card {
	border-radius: 4px;
	border: 1px solid #ddd;
	background-color: #fff;
	text-align: center;
	padding: 20px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#flow .flow-card:not(:last-child)::after{
	content:"";
	position:absolute;
	right: -20px;
	top:50%;
	width:20px;
	height:1px;
	background:#ddd;
}
#flow .flow-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
#flow .flow-card .step-txt {
	display: inline-block;
	padding: 3px 10px;
	background-color: var(--accent);
	border-radius: 999px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	margin-bottom: 8px;
}
#flow .flow-card .flow-title {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	letter-spacing: 1px;
	margin-bottom: 10px;
}
#flow .flow-card .flow-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: var(--bg-light);
	margin: 0 auto 10px;
	line-height: 90px;
}
#flow .flow-card .flow-icon img {
	width: 80px;
}
#flow .flow-card .flow-txt {
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.5px;
	color: #555;
}
#faq {
	background-color: #fff;
}
.cta {
    padding: 40px 0 0 0;
}
/* areaページ用 */
#area.cate {
	padding-bottom: 0;
	border-bottom: 1px solid #ccc;
}
#area .sec-title span {
	font-size: 16px;
}
.prefmap .col.l7.m11.s11 {
    display: none;
}
#area_inquiry dl {
	margin-bottom: 1rem;
}
#area_inquiry .prefmap dl dt {
    width: auto;
    float: none;
    text-align: left;
	font-weight: bold;
}
#area_inquiry dt a {
    display: inline;
    font-weight: bold;
    color: #000000;
}
#area_inquiry dl dt:after {
	content: '：';
}
#area_inquiry .prefmap dl dd {
    display: inline-block;
    margin: 0.3rem 0;
}
#area_inquiry dd a {
    margin-right: 1rem;
    display: inline-block;
}
.flex_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.shukatsu-intro .flex_box.info {
    border: 1px solid #ccc;
	margin-bottom: .5rem;
}
.shukatsu-intro .flex_box .col_2 {
    width: 49.3%;
    margin: 0 0 0.8em 0;
    border: 2px solid #ccc;
    padding: 0.5em 1em;
}
.shukatsu-intro .flex_box.info .col_2 {
    width: 50%;
    border: 1px solid #ccc;
    margin: 0;
	padding: 0.5em 1em;
}
.shukatsu-intro p.add {
    padding: 5px 0 2px 0;
    border-bottom: 1px dotted #333;
    margin: 0 0 0.3em 1em;
    line-height: 115%;
	font-size: 16px;
    margin-left: 0;
}
.shukatsu-intro .col_2 p.add:last-child {
	border: none;
}
span.lmap {
    display: inline-block;
    margin-left: .5rem;
    background: #006AFF;
    padding: 0 .3rem;
    border-radius: 2px;
    line-height: 1.4;
}
span.lmap a {
    color: #fff;
    font-size: 13px;
}
.shukatsu-intro p.add.con-title {
    border-bottom: none;
}
.shukatsu-intro p.add.add-con {
    border-bottom: none;
    line-height: 1.6;
    margin: 0;
}
p.add.name, p.add.name {
    font-size: 18px;
    font-weight: bold;
}
/* スマホ用 */
p.accordion_menu {
	color: #440a6a;
	border: 3px solid #440a6a;
	padding: 8px 58px 8px 8px;
	position: relative;
	font-weight: bold;
}
p.accordion_menu span {
	width: 40px;
	height: 40px;
	position: absolute;
	display: block;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	background-color: #440a6a;
	border-radius: 50%;
}
p.accordion_menu span:before,
p.accordion_menu span:after {
	content: "";
	width: 15px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	transition: all 0.2s ease-in-out;
}
p.accordion_menu span:after {
	transform: translate(-50%, -50%) rotate(90deg);
}
p.accordion_menu.open span:after {
	transform: translate(-50%, -50%) rotate(0);
}
.accordion_inner {
	display: none;
	padding-top: 15px;
}
.contents_wrap {
	width: 98%;
	margin: 0 auto;
}
.sp_area_city iframe {
	display: none;
}
.sp_area_city #area_inquiry dl dt {
	font-weight: bold;
	border-bottom: 1px solid;
}

.sp_area_city #area_inquiry dl dd {
	margin: 10px 0 20px;
	display: flex;
	flex-wrap: wrap;
}
.sp_area_city #area_inquiry dl dd a {
	width: calc(96% / 3);
	margin-right: 2%;
	display: block;
	border: 1px solid;
	border-radius: 3px;
	text-align: center;
	padding: 10px;
	margin-top: 10px;
}
.sp_area_city #area_inquiry dl dd a:active {
	background: var(--accent);
	color: #fff;
}
.sp_area_city #area_inquiry dl dd a:nth-of-type(3n) {
	margin-right: 0;
}
.sp_area_city #area_inquiry dl dd a:nth-of-type(-n + 3) {
	margin-top: 0;
}
/* スマホ用終わり */

/* areaページ用終わり */

@media screen and (max-width:1000px){
	#flow .flow-list {
		grid-template-columns: repeat(3,1fr);
	}
}

/* =====================================
SP
===================================== */
@media screen and (max-width:768px){
	.sp_block {
		display: block;
	}
	.fv-section {
		padding: 30px 20px;
	}
	.fv-content {
		width: 100%;
	}
	.fv-catch {
		font-size: 16px;
	}
	.fv-title {
		font-size: 22px;
		/* letter-spacing: 0.05em; */
		line-height: 1.5;
	}
	.fv-img {
		width: 90%;
		margin: 0 auto;
	}
	.sec-title {
		font-size: 1.3rem;
	}
	#about h3.box-title {
		font-size: 1.2rem;
	}
	#about .cate-box .txt-box {
		padding: 20px 20px 0 20px;
	}
	#about .cate-box .img-box {
		padding: 20px;
		width: 100%;
	}
	#about .cate-txt2 {
		text-align: left;
		margin-top: 20px;
	}
	#about .cate-box:nth-of-type(2) .img-box {
		order: 2;
	}
	#service .cate-txt {
		text-align: left;
	}
	#service .service-list {
		grid-template-columns: 1fr;
	}
	#service .service-card .txt-box {
		width: 100%;
		padding-left: 0;
		margin-top: 20px;
	}
	#service .service-card .img-box {
		width: 100%;
	}
	#service .service-card .img-box img {
		width: 100%;
		height: 200px;
		object-fit: cover;
		object-position: center;
		border-radius: 4px;
	}
	#service .sub-service.flex_box li:nth-last-child(2) {
		padding-bottom: 5px;
	}
	#flow .flow-list {
		grid-template-columns: 1fr;
	}
	#flow .flow-card:not(:last-child)::after {
		right: 50%;
		top: auto;
		bottom: -20px;
		width: 1px;
		height: 20px;
	}
	/* areaページ用 */
	#area_inquiry dl dt:after {
		content: none;
	}
	.shukatsu-intro .flex_box .col_2, .shukatsu-intro .flex_box.info .col_2 {
		width: 100%;
	}
	/* areaページ用終わり */
}