@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}


/*タイトル(共通)*/
.spot-heading01{
	font-size: clamp(40px,6vw,70px);
	/* font-style: italic; */
	text-align: center;
	/* font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
	font-family: "Dancing Script", cursive;
  	font-weight: 400;
	color:#2d2d2d;
}
.spot-heading01::first-letter {
	color: var(--main-color)
  }

  .spot-heading02-img {
	width: 50%;
    margin: 5px auto 0 auto;
  }

.spot-heading02{
	font-size: clamp(24px, 2.7vw, 28px);
	line-height: 1.1em;
    font-weight: 700;
    text-align: center;
    min-height: 0vw;
    color: #444;
	padding-bottom: 0.2em;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.spot-heading02+p{
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    font-size: 15px;
    inline-size: fit-content;
    margin-inline: auto;
}
.line{
	width: 1px;
	height: auto;
	padding-top: clamp(20px,6vw,30px);
	background-color: #2d2d2d;
	margin: 0% auto;
	margin-bottom: 2%;
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}

.lead-copy {
    text-align: center;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--accent-color2);
    letter-spacing: 0.05em;
    margin: 1.5rem auto 0.3rem;
}


/*======= FONT ======*/
/*英字*/
.heading06::before 
 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700 !important;
    font-style: normal;
	z-index: -1;
}

.heading,
.heading14::before,
.heading-decoration_c + p,
.heading-decoration + p,
.heading-decoration_nl + p,
.heading-decoration_lg + p
 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700 !important;
    font-style: normal;
}

/*日本語*/
@media (min-width: 769px) {
    .nav ul {
        font-family: "Zen Maru Gothic", sans-serif;
        font-weight: 500 !important;
        font-style: normal;
    }
}

@media (max-width: 768px) {
    .nav ul {
        font-family: "Zen Maru Gothic", sans-serif;
        font-weight: 500 !important;
        font-style: normal;
    }
}

.heading06,
.heading span,
.spot-heading02,
.heading-decoration,
.flow01 > li dl dt,
.greeting-card__item H4,
.sec1-card__item H4,
.heading-decoration2,
.sec2__title ,
.sec2__catch01,
.sec2__subtitle,
.heading-decoration_nl,
.heading-decoration_c,
.heading-decoration_lg,
.card__item H4
 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700 !important;
    font-style: normal;
}

/*  メインビジュアル */
.hero {
	position: relative;
}

.hero-container {
	position: relative;
}

.main-v {
	display: block;
}

.main-v img {
	width: 100%;
	height: auto;
	display: block;
}

/* 文字 */
.hero__copy {
	position: absolute;
	top: 32%;
	left: 50%;
	z-index: 2;
	width: 60%;
	text-align: center;
	color: var(--main-color);
	font-family: "Zen Maru Gothic", sans-serif;
	opacity: 0;
	transform: translate(-50%, 30px);
	animation: fadeUp 1s ease forwards;
	animation-delay: 0.5s;
}

@keyframes fadeUp{
	to{
		opacity: 1;
		transform: translate(-50%, 0);
	}
}

.hero__copy h2 {
	margin: 0 0 16px;
	font-size: clamp(25px, 2.5vw, 36px);
	line-height: 1.6;
	letter-spacing: 0.06em;
	background: none;
	color: var(--main-color);
}

.hero__copy p {
	margin: 0;
	font-size: clamp(14px, 1.2vw, 24px);
	line-height: 1.8;
	letter-spacing: 0.1em;
}

/* ピンク丸 */
.hero__badge {
	position: absolute;
	top: 68%;
	left: 55%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: clamp(120px, 11vw, 220px);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: var(--main-color);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 16px;
	box-sizing: border-box;
	opacity: 0;
	transform: scale(0.8);
	animation: popIn 0.8s ease forwards;
	animation-delay: 1.2s;
}


@keyframes popIn{
	0%{
		opacity: 0;
		transform: scale(0.8);
	}
	70%{
		transform: scale(1.05);
	}
	100%{
		opacity: 1;
		transform: scale(1);
	}
}


.hero__badge strong {
	display: block;
	margin-bottom: 8px;
	font-size: clamp(22px, 1.8vw, 36px);
	line-height: 1.2;
	font-family: "Zen Maru Gothic", sans-serif;
}

.hero__badge span {
	display: block;
	font-size: clamp(11px, 0.9vw, 18px);
	line-height: 1.6;
}


@media only screen and (max-width: 768px) {
	.hero__copy {
	top: 25%;
}

.hero__copy h2 {
	font-size: clamp(20px, 2vw, 30px);
}

	.hero__badge {
		top: 58%;
		left: 53%;
	}

	.hero__badge strong {
	display: block;
	margin-bottom: 8px;
	font-size: clamp(20px, 1.8vw, 28px);
	line-height: 1.2;
	font-family: "Zen Maru Gothic", sans-serif;
	width: clamp(120px, 10vw, 200px);
}
	.hero__copy p {
		font-size: clamp(10px, 0.9vw, 16px);
		letter-spacing: 0.05em;
	}
}


@media only screen and (max-width: 568px) {
	.hero__copy {
	top: 28%;
}
	.hero__badge {
		top:65%;
		left: 20%;
	}

.hero__copy h2 {
	font-size: clamp(23px, 3.5vw, 40px);
}

	.hero__badge strong {
	display: block;
	margin-bottom: 8px;
	font-size: clamp(16px, 2vw, 30px);
	line-height: 1.2;
	font-family: "Zen Maru Gothic", sans-serif;
}
	.hero__copy p {
		font-size: clamp(12px, 1vw, 20px);
		letter-spacing: 0.05em;
	}
}


/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	/* padding: clamp(40px, 6vw, 90px) 0 var(--v-space) ; 初期値 BNRsectionがないときはこちら*/
	padding: clamp(40px, 6vw, 90px) 0 0 ;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}

p.grp{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	margin: 0 auto;
	width: fit-content;
	color: #666;
}

/*選ばれる理由*/
.feature_t{
	padding-top: 50px;
}

.feature-list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
	padding-bottom: 100px;
}

.feature-card{
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	transition: transform .3s ease;
}

.feature-card:hover{
	transform: translateY(-6px);
}

/* 番号 */
.feature-num{
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--main-color);
	color: #fff;
	font-size: 0.9rem;
	padding: 6px 10px;
	border-radius: 20px;
	font-weight: bold;
}

/* テキスト */
.feature-body{
	padding: 20px;
}

.feature-body h3{
	font-size: 1.2rem;
	margin-bottom: 10px;
	font-family: "Zen Maru Gothic", sans-serif;
	color: var(--accent-color2);
	line-height: 1.6;
}

.feature-body p{
	font-size: 0.95rem;
	line-height: 1.8;
	color: #555;
}


/* 画像 */
.feature-img{
	position: relative;
	overflow: hidden;
}

.feature-img::after{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(232,163,181,0.25),
		rgba(232,163,181,0)
	);
	pointer-events: none;
}

.feature-img img{
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.feature-card:hover .feature-img img{
	transform: scale(1.08);
}

/* レスポンシブ */
@media only screen and (max-width: 768px){
	.feature-list{
		grid-template-columns: 1fr;
	}
}




/*======= BNR section ======*/

.bnr_sec1 {
	padding: var(--v-space) 0 var(--v-space);
	position: relative;
	z-index: 1;
	background-color: #f3e9d250;
}
.bnr_sec1::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: var(--base-color);
	clip-path: polygon(0 0, 50% 100%, 100% 0); /* ▼ 谷型 */
	z-index: 2; /* 上にかぶせる */
}

/*TELバナー*/
.tel_bnr{
    padding: 0;
    border: 5px solid var(--main-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    overflow: hidden;
    display: block;
}


/*=======  サービス ======*/

.sec-service{
	padding: 0;
	background: #fff;
}

.service-list{
	display: grid;
	gap: 60px;
	margin-top: 50px;
}

.service-item{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.service-item.reverse .service-img{
	order: 2;
}

.service-item.reverse .service-body{
	order: 1;
}

.service-img{
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	position: relative;
}

.service-img img{
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.service-item:hover .service-img img{
	transform: scale(1.06);
}

.service-img::after{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(232,163,181,0.18),
		rgba(232,163,181,0)
	);
	pointer-events: none;
}

.service-body{
	padding: 10px 0;
}

.service-num{
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--main-color);
	margin-bottom: 14px;
}

.service-body h3{
	font-size: 1.8rem;
	line-height: 1.6;
	color: #6B5B4B;
	margin-bottom: 18px;
	font-family: "Zen Maru Gothic", sans-serif;
}

.service-body p{
	font-size: 1rem;
	line-height: 2;
	color: #555;
	margin: 0 0 14px;
}

.service-body p:last-child{
	margin-bottom: 0;
}

/* 箇条書き全体 */
.service-point{
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: grid;
	gap: 10px;
}

.service-note{
	font-size: 0.9rem !important;
}

/* li */
.service-point li{
	position: relative;
	padding-left: 34px;
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
}

/* 丸チェック */
.service-point li::before{
	content: "✓";
	position: absolute;
	left: 0;
	top: 4px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--accent-color3);
	color: #fff;
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

@media only screen and (max-width: 968px){
	.service-item{
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.service-item.reverse .service-img,
	.service-item.reverse .service-body{
		order: initial;
	}

	.service-img img{
		min-height: 240px;
	}

	.service-body h3{
		font-size: 1.4rem;
	}
}



/*section1*/
.sec1 {
    padding: var(--v-space) 0;
    background-color: #fff;
}



/* =========================
	背景画像
========================= */
.sec1-bg01 {
	background-image: url(../img/price_01.jpg);
}

.sec1-bg02 {
	background-image: url(../img/price_02.jpg);
}

.sec1-bg03 {
	background-image: url(../img/price_03.jpg);
}



/*======= FLOW ======*/
/*section2*/
.sec2 {
	padding:var(--v-space2) 0 var(--v-space);
  background-color: var(--accent-color1);
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/* フロー全体 */
.flow-list{
	position: relative;
	margin-top: 50px;
}

/* 縦ライン */
.flow-list::before{
	content: "";
	position: absolute;
	left: 26px;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(to bottom, var(--main-color)80%, var(--accent-color1));
}

/* 各アイテム */
.flow-item{
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 20px;
	align-items: start;
	position: relative;
}

/* 番号 */
.flow-num{
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--main-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.95rem;
	line-height: 1;
	position: relative;
	z-index: 2;

	/*border: 3px solid var(--accent-color1);*/
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ボックス */
.flow-box{
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 24px;
	align-items: center;
	background: #fff;
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* 画像 */
.flow-img{
	overflow: hidden;
	border-radius: 16px;
	margin: 0;
}

.flow-img img{
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.flow-box:hover .flow-img img{
	transform: scale(1.05);
}

/* テキスト */
.flow-body h3{
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--accent-color2);
	margin-bottom: 12px;
	font-family: "Zen Maru Gothic", sans-serif;
}

.flow-body p{
	font-size: 0.95rem;
	line-height: 1.9;
	color: #555;
	margin: 0;
}



@media only screen and (max-width: 768px){

	/* 縦ライン位置調整 */
	.flow-list::before{
		left: 18px;
	}

	.flow-item{
		grid-template-columns: 50px 1fr;
		gap: 14px;
	}

	.flow-num{
		width: 36px;
		height: 36px;
		font-size: 0.8rem;
	}

	.flow-box{
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.flow-img img{
		height: 200px;
	}

	.flow-body br{
	display: none;
}
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

.faq2 {
	/*display: flex;*/
	flex-direction: column;
	gap: 10px;
}

.faqItem {
	display: grid;
	grid-template-columns: 2em 1fr;
	align-items: flex-start;
    column-gap: 0;
}

.faqItem .label {
	font-weight: bold;
	color: var(--main-color);
	font-size: 130%;
	line-height: 1.4;
}

.faqItem .labelA {
	font-weight: bold;
	color: var(--accent-color3);
	font-size: 130%;
	line-height: 1.4;
}

.faq2 p {
	margin-top: 5px;
	line-height: 1.5;
    letter-spacing: 0.06em;
	text-align: left;
	display: block;
}

.faq2 p.b {
	font-weight: bold;
	color: #444;
}

hr.faqHr {
	height: 0px;
	border: 1px dashed var(--accent-color3);
	margin: 20px auto;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: var(--accent-color1);
  background-image: radial-gradient(rgba(189, 161, 133, 0.1)1px, transparent 20%);
  background-size:  8px 8px;
	background-position: bottom;
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
    border-bottom: 1px dashed var(--accent-color3);
	padding: 5px;
	width: 5.25em;
	line-height: 1.5;
    letter-spacing: 0.06em;
}
.info2 {
    border-bottom: 1px dashed var(--accent-color3);
	padding: 5px;
	width: 400px;
    line-height: 1.5;
    letter-spacing: 0.06em;
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

.info-sec1-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 5px;
}

@media (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(6, 1fr);
	}
}

/*営業時間*/
.kome {
    background-color: #7d955580;
    padding: 2px 6px;
    font-size: 16px;
    box-sizing: border-box;
    margin: 5px 5px 5px 0;
    display: inline-block;
    width: fit-content;
    /*min-width: 170px;*/
}

.b-hours {
	display: flex;				/* 横並びにする */
	align-items: center;			/* 高さを揃える */
	white-space: nowrap;
	margin-bottom: 2px;
}

.day {
	background-color: #d9d9d9;
	/* font-weight: bold; */
	padding: 2px 6px;
    font-size: 16px;
	min-width: 180px;				/* 横幅を固定（全行で共通） */
	box-sizing: border-box;			/* paddingを含めた幅にする */
}

.time {
	font-size: 16px;
	margin-left: 0.5em;		/* dayとの余白 */
}

/*会社概要*/
.bg_b{
	background: rgba(255, 255, 255, 0.9);
	padding:40px;
	border-radius: 20px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}


/*info 写真*/
.info-img figcaption {
	font-size: 0.85rem;
	color: #555;
	margin-top: 8px;
}

	.company-info-table {
		width: 100%;
		border-collapse: collapse;
	}



/*======= ACCESS アクセス ======*/

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color3);
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed var(--accent-color3);
    padding: 5px;
    width: 400px;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}



/*======= リスト ======*/
@media (max-width: 1024px) {
	ul.sidelist2 li {
		font-size: 13px;
		padding: 5px 4px;
	}
}

ul.sidelist2 li {
    box-sizing: border-box;
    list-style-type: none;
    float: left;
    --widthA: calc(100% - 10px);
    --widthB: calc(var(--widthA) / 2);
    width: var(--widthB);
    margin: 2.5px 5px 2.5px 0;
    text-align: left;
    text-decoration: none;
    font-size: 15px;
    padding: 5px;
		color: var(--txt-color);
    border: dashed 1px var(--main-color);
    background: #fff;
}

 .mb-20 {
	margin-bottom: 20px !important;
 }

 .cleafix {
	content: '';
    display: block;
    clear: both;
    padding-top: 20px;
 }


/*======= 電話 ======*/
 .sec3-heading {
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: clamp(14px, 1vw, 18px);
    text-align: center;
    border: 0;
    color: var(--txt-color);
    margin: 10px;
}

.sec3-heading::before {
    margin-right: 30px;
    transform: rotate(-35deg);
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--main-color);
}

.sec3-heading::after {
    margin-left: 30px;
    transform: rotate(35deg);
    content: '';
    width: 1px;
    height: 40px;
    background-color: var(--main-color);
}

a.btn_01 {
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 1rem 1rem;
    font-size: small;
    color: var(--base-color);
    background: var(--accent-color1);
    transition: 0.3s ease-in-out;
}

a.btn_01::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 1px solid var(--accent-color2);
    transition: 0.2s;
}
@media (max-width: 865px) {
	a.btn_01 {
		width: 70%;
	}
}
@media (max-width: 568px) {
	a.btn_01 {
		width: 90%;
	}
}

/*======= 調整 ======*/
.l-c {
    margin-right: auto;
    margin-left: auto;
}

.l-c50 {
    margin-right: auto;
    margin-left: auto;
	width: 50%;
}

@media (max-width: 1000px) {
	.l-c50 {
		width: 80%;
	}
}

@media (max-width: 568px) {
	.l-c50 {
		width: 100%;
	}
}

.img-waku {
	border: 1px solid var(--main-color);
}

.img-shadow {
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

.img-round {
	border-radius: 5px;
}

.highlight {
	color: var(--main-color);
    font-weight: 900;
}

.highlight2 {
    background-color: var(--accent-color3);
    color: #fff;
    padding: 0 4px;
    border-radius: 4px;
}

.tx-c2{
	text-align: center;
}