@charset "utf-8";
/*===========================
add
===========================*/




/*===========================
box03
===========================*/
.box03 .in01{
	display: flex;
	border-bottom: #eeeeee solid 2px;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
	.box03 .in01{
		display: block !important;
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
}


.box03 .in01:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}


.box03 .st{
	background-color: var(--basic-color2);
	min-width: 130px;
	height: 130px !important;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: relative;
}
@media screen and (max-width: 600px) {
	.box03 .st{
		min-width: 10px;
		width: 100px;
		height: 100px !important;
		margin: 0 auto 30px;
	}
}


.box03 .st .st-box{
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.box03 .st .st-box p{
	font-size: 3.5em;
	color: #fff;
	font-weight: bold;
}
@media screen and (max-width: 600px) {
	.box03 .st .st-box p{
		font-size: 2.5em;
	}
}


.box03 .st .title{
	font-size: 1.5em !important;
	margin-bottom: 15px;
	margin-top: -20%;
}
@media screen and (max-width: 600px) {
	.box03 .st .title{
		margin-bottom: 0;
		margin-top: -25%;
		font-size: 1.0em !important;
	}
}


.box03 .de01{
	padding: 0 10px 0;
	margin-left: 50px;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.box03 .de01{
		width: 75%;
		margin: 0 0 0 auto;
	}
}
@media screen and (max-width: 600px) {
	.box03 .de01{
		width: 100%;
		margin: 0 !important;
	}
}


@media screen and (max-width: 600px) {
	.box03 .de01 .catch2{
		text-align: center;
		font-size: 1.5em;
	}
}

/* =========================================
   基本コース
========================================= */

.course-card {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 45px;
  background: #fff;
  border: 1px solid #e8ded8;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 8px 30px rgba(80, 50, 40, 0.06);
}

/* ヘッダー */
.course-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee5e0;
}

.course-label {
  display: block;
  margin-bottom: 7px;
  color: #a48170;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.course-card-head h3 {
  margin: 0;
  color: #4b3a34;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.course-card-head h3:after {
	height: 0;
}

/* 料金 */
.course-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}

.course-price > span {
  color: #806b61;
  font-size: 14px;
}

.course-price strong {
  color: #9b705d;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.course-price small {
  margin-left: 3px;
  font-size: 14px;
  font-weight: normal;
}

/* 施術フロー */
.course-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 5px 0 30px;
}

.course-step {
  min-height: 52px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;

  color: #5d4b43;
  background: #faf7f5;
  border: 1px solid #e9dfda;
  border-radius: 3px;

  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.course-step small {
  font-size: 11px;
}

.course-flow > span {
  color: #b69b8c;
  font-size: 15px;
}

/* 注意事項 */
.course-notes {
  padding: 22px 25px;
  background: #f9f6f4;
  border-radius: 3px;
}

.course-notes p {
  margin: 0;
  color: #6c5b54;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.course-notes p + p {
  margin-top: 8px;
}

.note-mark {
  color: #a47763;
  margin-right: 4px;
}


/* =========================================
   タブレット
========================================= */

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

  .course-card {
    padding: 35px 30px;
  }

  .course-card-head {
    align-items: flex-start;
  }

  .course-flow {
    justify-content: flex-start;
  }

}


/* =========================================
   スマートフォン
========================================= */

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

  .course-card {
    padding: 28px 20px;
  }

  .course-card-head {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 22px;
  }

  .course-card-head h3 {
    font-size: 23px;
  }

  .course-price {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .course-price strong {
    font-size: 27px;
  }

  .course-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-bottom: 22px;
  }

  .course-flow > span {
    display: none;
  }

  .course-step {
    width: 100%;
    min-height: 48px;
    padding: 8px 6px;
    font-size: 12px;
  }

  .course-notes {
    padding: 18px 15px;
  }

  .course-notes p {
    font-size: 12px;
    line-height: 1.8;
  }

}

