@charset "UTF-8";

/* 共通 */
h2 {
	font-family: 'Zen Maru Gothic', sans-serif;
    font-size: clamp(12px, 2.5vw, 30px);
}

.flex {
    display: flex;
}

.Naby {
	color: #13346C;
}
.LightBlue {
	color: #009ad6;
}
.White {
    color: #fff;
}


/*表示・非表示*/
/* PCでのみ表示（スマホでは非表示） */
.pc-only {
  display: block;
}

/* スマホでのみ表示（PCでは非表示） */
.sp-only {
  display: none!important;
}

/* スマホサイズ（768px未満）の設定 */
@media (max-width: 820px) {
  .pc-only {
    display: none!important;
  }
  
  .sp-only {
    display: block!important;
  }
}

/* 改行位置 */
.br-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }
}

/* ページ内遷移 */
#nav01,#nav02,#nav03,#nav04 {
    padding-top: 95px; margin-top: -95px;
}



/* FV */
.fv {
	width: 100%;
	background: #fff;
}

.fv_inner {
	position: relative;
	height: 590px;
	margin: 0 auto;
}

/* キャッチコピー */
.fv_copy {
	position: absolute;
	top: 80px;
	left: 10%;
	z-index: 10;
	display: grid;
	flex-direction: row-reverse;
	align-items: flex-start;
	writing-mode: vertical-rl;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.8;
}

.fv_copy > span {
	background-color: rgba(255, 255, 255, 0.75);
	padding: 15px 5px;
	margin-left: 5px;
	text-align: start;
	height: fit-content;
}
.fv_copy > span:last-child {
	margin-left: 0;
}

.fv_copy .tate-yoko {
	text-combine-upright: all;
	margin: 4px 0;
}

.fv_features {
	position: absolute;
	bottom: -50px;
	left: 50px;
	z-index: 10;
	gap: 25px;
}

.fv_features li {
	position: relative;
	font-size: clamp(12px, 2.5vw, 20px);
	font-weight: 600;
	text-align: center;
	width: 175px;
	height: 175px;
	border-radius: 50%;
	background: #FFE860;
	color: #13346C;
	border: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
	padding: 10px;
}

.fv_features li::after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: 0;
	bottom: 0;
	border: solid 2px #13346C;
	border-radius: 50%;
	pointer-events: none;
}

.fv_features li strong {
	font-size: clamp(14px, 2.5vw, 25px);
	display: block;
}

.fv_images .img_bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-height: 600px;
	object-fit: cover;
	z-index: 1;
}

.fv_images .img_family {
	position: absolute;
	bottom: -50px;
	right: 50px;
	max-width: 530px;
	z-index: 3;
}

.fv_images .img_cloud01 {
	position: absolute;
	top: 40px;
	left: 5%;
	width: 80px;
	z-index: 2;
}
.fv_images .img_cloud02 {
	position: absolute;
	top: 120px;
	right: 30px;
	width: 70px;
	z-index: 2;
}
.fv_images .img_cloud03 {
	position: absolute;
	top: 10%;
	right: 15%;
	width: 60px;
	z-index: 2;
}
@media screen and (max-width: 1024px) {
	.fv_inner {
		height: 430px;
	}
	.fv_copy {
		top: 10px;
	}
	.fv_features {
		bottom: -80px;
	}
	.fv_images .img_family {
		bottom: -30px;
        right: 10px;
		gap: 5px
	}
	.fv_features {
        bottom: -80px;
    }
}
@media screen and (max-width: 820px) {
    .fv_features li {
    width: 155px;
    height: 155px;
    }

	.fv_inner {
		height: auto;
		display: flex;
		flex-direction: column;
	}

	.fv_images {
		position: relative;
		width: 100%;
		order: 1;
	}

	.fv_images .img_bg {
		width: 100%;
		height: 100%;
		position: static;
		border-radius: 0;
	}

	.fv_copy {
		position: absolute;
		top: 10%;
		writing-mode: horizontal-tb;
		flex-direction: column;
		font-size: 20px;
		line-height: 1.5;
		gap: 4px;
	}

	.fv_copy > span {
		display: inline-block;
		background-color: rgb(255 255 255 / 55%);
		padding: 6px 12px;
		margin-left: 0;
		width: fit-content;
	}

	.fv_images .img_family {
		width: 450px;
        bottom: 100px;
        right: 10px;
	}

	.fv_images .img_cloud01 { top: 10px; left: 3%; width: 70px; }
	.fv_images .img_cloud02 { top: 46px; right: 2%; width: 35px; }
	.fv_images .img_cloud03 { top: 10px; right: 33%; width: 50px; }

	.fv_features {
		position: absolute;
        order: 2;
        width: 100%;
        padding: 0px 0px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
        justify-items: center;
		left: 0px;
		bottom: -50px;
	}

	.fv_features li::after {
		top: -4px;
		left: -4px;
		right: 0;
		bottom: 0;
		border-width: 1.5px;
	}

	.fv_features li strong {

	}
}
@media screen and (max-width: 430px) {
	.fv_features li {
		padding: 5px!important;
		width: 85px;
    	height: 85px;
	}
	.fv_images .img_family {
		width: 270px;
        bottom: 0px;
        left: 10px;
	}
	.fv_copy {
		top: 17%;
        left: 12%;
	}
}

.about {
	padding: 120px 15px 50px;
	margin: 0 auto;
	background: #EAF6FC;
}
.about .inner {
    width: 970px;
    margin: 0 auto;
    display: flex;
}
.about .inner .left {
	width: 33%;
	align-items: center;
	display: flex;
}
.about .inner .right {
    width: 67%;
}
@media screen and (max-width: 820px) {
	.about {
		flex-direction: column;
		gap: 20px;
		padding-top: 70px;
	}
	.about .inner {
		display: block;
		width: 100%;
	}
	.about .inner .right ,.about .inner .left {
		width: 100%;
	}
	.about .inner .left h2 {
		margin: 0 auto;
	}
}

/* 共通パーツ お問い合わせ */
.contact_section {
    position: relative;
    width: 100%;
    background: #EAF6FC;
    padding: 60px 0;
    overflow: hidden;
}

.contact_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact_inner {
    position: relative;
    z-index: 5;
    background-color: #ffffffab;
    padding: 40px 10px;
    border: solid 3px #009ad6;
    border-radius: 20px;
}

.contact_ttl {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    padding-left: 20px;
    text-align: center;
    letter-spacing: 2px;
}
.contact_ttl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../../images/front/individual/massage/deco01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
}
.contact_ttl::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../../images/front/individual/massage/deco02.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
}

.contact_actions {
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.tel_number_wrap {
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.icon_tel {
    width: 40px;
    height: auto;
}
.tel_num {
    /* font-size: clamp(20px, 2.5vw, 38px); */
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 8px;
}
.tel_time {
    display: block;
    font-size: 17px;
    padding-left: 50px;
    font-weight: bold;
}
.tel_time .LightBlue {
    font-size: 22px;
}
.contact_mail_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #009ad6;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    max-width: 410px;
    width: 100%;
    padding: 16px 25px;
    border-radius: 40px;
    position: relative;
    transition: all 0.3s ease;
}
.contact_mail_btn:hover {
    color: #fff;
    background-color: #fff;
    border: solid 2px #009ad6;
    opacity: 1 !important;
    color: #009ad6;
}

.icon_mail,
.icon_arrow {
    height: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.icon_mail {
    width: 45px;
}
.icon_arrow {
    width: 28px;
}

.contact_mail_btn .off {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 25px;
}

.contact_mail_btn .icon_arrow.off {
    left: auto;
    right: 15px;
}

.contact_mail_btn .on {
    opacity: 1;
    visibility: visible;
}

.contact_mail_btn:hover .on {
    opacity: 0;
    visibility: hidden;
}

.contact_mail_btn:hover .off {
    opacity: 1;
    visibility: visible;
}

.contact_mail_btn:hover .icon_arrow.off {
    transform: translateX(5px);
}

.contact_note {
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.note_icon img {
    width: 60px;
    height: auto;
}
.note_text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}
.note_text p .LightBlue {
 font-weight: bold;
}

.contact_img_pc {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.contact_img_pc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media screen and (max-width: 1024px) {
    .contact_section {
        padding: 10px 20px; 
        background: #EAF6FC;
        background-image: url(../../images/front/individual/massage/contact-bg_sp.png);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover; 
    }

    .contact_actions {
        flex-direction: column;
    }
}


@media screen and (max-width: 768px) {
    .contact_container {
        padding: 0;
        background: transparent;
        background: #ffffff33;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0
    }
    .icon_tel {
        width: 30px;
    }
    .tel_num {
        font-size: 26px;
        margin-bottom: 0px;
    }
    .tel_time {
        padding-left: 0px;
        font-size: 14px;
    }
}

@media screen and (max-width: 430px) {
    .note_icon img {
        width: 210px;
    }
    .contact_ttl {
        line-height: 1.4;
    }
}

/* ケアマネジャー・相談員の皆さまへ */
.download {
    width: 100%;
    background: #fff;
    padding: 60px 0 80px;
}

.download > p {
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 40px;
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
}
.caremanager-alert {
    display: block;
    font-size: 14px;
    margin-top: 8px;
}

.download-list {
    display: flex;
    flex-direction: column;
    max-width: 870px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #D8ECFA;
    color: #13346C;
}

.download-item > p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}
.dl-first a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background-color: #009ad6;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.5s;
}
.dl-first a:hover {
    background-color: #fff;
    border: solid 2px #009ad6;
    color:#009ad6;
}

.download-content {
    background-color: #FBFDFF;
    padding: 30px;
    border: 1px solid #EAF2F7;
    border-top: none;
}

.download-content ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 20px;
    padding-top: 10px;
}

.download-content ul li {
    position: relative;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
    list-style: none;
    padding-left: 16px;
}

.download-content ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    background-color: #009ad6;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@media only screen and (max-width: 768px) {
    .download {
        padding: 40px 20px;
    }
    .download h2 {
        font-size: 20px;
    }
    .download h2::before {
        width: 18px;
        height: 18px;
    }
    .download > p {
        font-size: 14px;
        margin-bottom: 25px;
        text-align: start;
    }
    
    .download-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    .download-item > p {
        font-size: 16px;
    }
    .dl-first {
        width: 100%;
    }
    .dl-first a {
        display: block;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }

    .download-content {
        padding: 20px;
    }
    .download-content ul {

    }
    .download-content ul li {
        font-size: 14px;
    }
}


/* こんな症状はありませんか？ */
.symptoms {
    background-color: #009ad6;
    padding-bottom: 100px;
}
.symptoms h2.White {
    color: #fff;
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Zen Maru Gothic', sans-serif;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    border-bottom: 4px solid #FFE860;
    padding-top: 70px;
}

.symptoms h2 .marker {
    font-size: inherit;
    color: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    display: inline;
    position: relative;
}

.symptoms h2 .marker::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 18%;
    width: 10px;
    height: 10px;
    background-color: #FFE860;
    border-radius: 50%;
}

.symptoms h2 .marker::after {
    content: "";
    position: absolute;
    top: -10px;
    right: 16%;
    width: 10px;
    height: 10px;
    background-color: #FFE860;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .symptoms {
        padding-bottom: 10px;
    }
    .symptoms h2.White {
        font-size: 24px;
        border-bottom-width: 3px;
        padding-top: 30px;
    }

    .symptoms h2 .marker::before,
    .symptoms h2 .marker::after {
        top: -8px;
        width: 7px;
        height: 7px;
    }
}


.worried {
    position: relative;
    max-width: 1000px;
    height: 560px;
    margin: 0 auto 60px;
}

.worried_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    z-index: 1;
}
.worried_img img {
    width: 100%;
    height: auto;
}

.worried ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.worried ul li {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 150px;
}

.worried ul li.item01,
.worried ul li.item02,
.worried ul li.item03 {
    width: 300px;
    height: 160px;
}

.worried ul li .img_neasy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
}

.worried ul li span {
    position: relative;
    z-index: 2;
    color: #13346C;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    padding: 10px 20px;
    white-space: nowrap;
}

.worried ul li.item01 {
    top: 10px;
    left: 20px;
}
.worried ul li.item02 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.worried ul li.item03 {
    top: 10px;
    right: 20px;
}
.worried ul li.item04 {
    top: 210px;
    left: 50px;
}
.worried ul li.item05 {
    top: 210px;
    right: 50px;
}

@media screen and (max-width: 768px) {
    .worried {
        height: 600px;
    }
    .worried ul li.item01 {
        top: -4%;
        left: 8%;
    }
    .worried ul li.item02 {
        top: -4%;
        left: 73%;
    }
    .worried ul li.item03 {
        top: 23%;
        right: 4%;
    }
    .worried ul li.item04 {
        top: 23%;
        left: 3%;
    }
    .worried ul li.item05 {
        top: 41%;
        right: 30%;
    }
    .worried_img {
        top: 86%;
    }


}

@media screen and (max-width: 430px) {
    .worried {
        height: 1000px;
    }
    .worried_img {
        width: 200px;
        top: 85%;
    }
    .worried ul li.item01{
        top: -4%;
        left: 18%;
    }
    .worried ul li.item02 {
        top: 12%;
        left: 42%;
    }
    .worried ul li.item03 {
        top: 28%;
        right: 1%;
    }
    .worried ul li.item04 {
        top: 44%;
        left: 1%;
    }
    .worried ul li.item05 {
        top: 59%;
        right: 1%;
    }


}

.expectations {
    background-color: #fff;
    border-radius: 24px;
    padding: 70px 40px 50px;
    max-width: 960px;
    margin: -185px auto 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.expectations h3.Naby {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    
    background-image: url(../../images/front/individual/massage/deco03.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    
    width: 620px;
    height: 110px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #13346C;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
    z-index: 10;
    padding-bottom: 12px; 
}


.expectations h3.Naby::before,
.expectations h3.Naby::after {
    display: none !important;
}

.expectations .flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
}

.expectations ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expectations ul li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
}

.expectations ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #009ad6;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}


@media screen and (max-width: 768px) {
    .expectations {
        padding: 50px 20px 30px;
        margin: -80px 10px 50px;
    }

    .expectations h3.Naby {
        width: 90%;
        height: 75px;
        font-size: 18px;
        top: -40px;
        padding-bottom: 8px;
    }
    
    .expectations .flex {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    
    .expectations ul {
        gap: 15px;
    }
    
    .expectations ul li {
        font-size: 14px;
        white-space: normal;
        padding-left: 20px;
    }
    
    .expectations ul li::before {
        width: 10px;
        height: 10px;
    }
}

/* マッサージ部位について */
.massage_parts {
    background-color: #F2F9FF;
    padding: 60px 0 80px;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
}

.parts_container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.parts_sub {
    color: #009ad6;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
}

.massage_parts h2.Naby {
    color: #13346C;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px;
}

.parts_lead {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.parts_content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.human_image {
    flex: -12px 0 200px;
    position: relative;
    top: 20px;
}

.human_image img {
    width: 100%;
    height: auto;
}

.cards_area {
    flex: 1;
    max-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
}

.part_card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(19, 52, 108, 0.06);
    position: relative;
    box-sizing: border-box;
}

.part_card.item01 {
    grid-column: 1 / 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}
.part_card.item01 .card_text {
    flex: 1;
    padding-right: 15px;
}
.part_card.item01 .card_img {
    flex: 0 0 90px;
}

.part_card.item02,
.part_card.item03,
.part_card.item04,
.part_card.item05 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.part_card:not(.item01) .card_text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 15px;
}

.part_card:not(.item01) .card_text h3 {
    justify-content: center;
}

.part_card:not(.item01) .card_img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
}

.card_img img {
    max-width: 100%;
    max-height: 116px;
}

.card_text h3 {
    color: #333333;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.card_text h3 small {
    font-size: 13px;
    font-weight: normal;
    color: #666666;
    margin-left: 4px;
}

.card_text p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.part_card::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 35px;
    height: 35px;
    background-color: #009ad6;
    color: #ffffff;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.part_card.item01::before { content: "1"; }
.part_card.item02::before { content: "2"; }
.part_card.item03::before { content: "3"; }
.part_card.item04::before { content: "4"; }
.part_card.item05::before { content: "5"; }


@media screen and (max-width: 768px) {
    .massage_parts {
        padding: 40px 0 50px;
    }

    .parts_sub {
        font-size: 16px;
    }

    .massage_parts h2.Naby {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .parts_lead {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .parts_content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .human_image {
        flex: 0 0 auto;
        width: 180px;
        top: 0;
    }

    .cards_area {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .part_card,
    .part_card.item01,
    .part_card.item02,
    .part_card.item03,
    .part_card.item04,
    .part_card.item05 {
        grid-column: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        text-align: left;
    }

    .part_card .card_text,
    .part_card:not(.item01) .card_text {
        width: auto;
        flex: 1;
        padding-right: 15px;
        margin-bottom: 0;
    }

    .part_card .card_text h3,
    .part_card:not(.item01) .card_text h3 {
        justify-content: flex-start;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .card_text p {
        font-size: 13px;
    }

    .part_card .card_img,
    .part_card:not(.item01) .card_img {
        flex: 0 0 80px;
        width: auto;
        max-width: none;
        margin: 0;
    }
}


/* 関節を優しく動かす変形徒手矯正術 */
.remedial_section {
    max-width: 760px;
    margin-top: 100px;
    padding-top: 20px;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    margin: 50px auto;
}

.remedial_container {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: visible;
    box-sizing: border-box;
    padding: 0px 40px;
}

.remedial_header {
    background-color: #009ad6;
    border-radius: 20px;
    padding: 0 40px;
    height: 90px;
    display: flex;
    align-items: center;
    position: relative;
}

.badge_circle {
    position: absolute;
    left: -25px;
    top: -5px;
    width: 100px;
    height: 100px;
    background-color: #FFF04B;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.badge_icon {
    width: 28px;
    height: auto;
    margin-bottom: 4px;
}

.badge_circle span {
    color: #009ad6;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.remedial_title_wrap {
    margin-left: 46px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 27px;
}

.remedial_title_wrap .sub_title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.remedial_title_wrap .main_title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
    position: relative;
    white-space: nowrap;
}

.remedial_title_wrap .main_title::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0%;
    transform: translateY(-50%);
    background-image: url(../../images/front/individual/massage/brackets01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.remedial_title_wrap .main_title::after {
    content: '';
    position: absolute;
    right: -14px;
    left: auto;
    top: 95%;
    transform: translateY(-50%);
    background-image: url(../../images/front/individual/massage/brackets02.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.header_illustration {
    position: absolute;
    right: -7%;
    top: -50%;
    width: 210px;
}

.header_illustration img {
    width: 100%;
    display: block;
}

.remedial_body {
    padding: 20px 50px 50px;
}

.body_text {
    color: #333333;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 15px;
    letter-spacing: 0.03em;
}

.body_notes {
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


@media screen and (max-width: 768px) {
    .remedial_section {
        padding: 10px;
        margin: 20px auto;
    }

    .remedial_container {
        padding: 0;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .remedial_header {
        flex-direction: row;
        height: 110px;
        padding: 0 12px;
        border-radius: 20px 20px 0 0;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .badge_circle {
        position: relative;
        left: auto;
        top: 0;
        width: 76px;
        height: 76px;
        flex-shrink: 0;
        margin-right: 30px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .badge_icon {
        width: 18px;
        margin-bottom: 2px;
    }

    .badge_circle span {
        font-size: 9px;
        line-height: 1.2;
    }

    .remedial_title_wrap {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        flex-grow: 1;
        z-index: 2;
    }

    .remedial_title_wrap .sub_title {
        font-size: 13px;
        font-weight: 700;
        margin: 0;
        white-space: nowrap;
    }

    .remedial_title_wrap .main_title {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
        margin: 0;
        position: relative;
        white-space: nowrap;
    }

    .remedial_title_wrap .main_title::before {
        display: block;
        width: 14px;
        height: 14px;
        left: -14px;
        top: 3px;
    }
    
    .remedial_title_wrap .main_title::after {
        display: block;
        width: 14px;
        height: 14px;
        right: -16px;
        left: auto;
        top: 70%;
    }

    .header_illustration {
        display: block;
        position: absolute;
        right: -6px;
        top: -35px;
        width: 185px;
        z-index: 1;
    }

    .header_illustration img {
        width: 100%;
        display: block;
    }

    .remedial_body {
        padding: 24px 16px;
    }

    .body_text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .body_notes {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 430px) {
    .badge_circle {
        left: -10%;
    }
    .remedial_title_wrap {
        margin-left: -40px;
    }

    .remedial_section {
        padding: 20px 10px;
        margin: 20px auto;
        
    }

    .remedial_container {
        padding: 0;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .header_illustration {
        width: 120px;
    }

}


/* こんな症状はありませんか？ */
.symptom_effect_section {
    background-color: #009ad6;
    padding: 60px 20px 80px;
    font-family: "Noto Sans JP", sans-serif;
}

.symptom_effect_container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.symptom_title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 8px;
    border-bottom: 3px solid #fef200;
}

.symptom_title::before {
    content: "● ●";
    color: #fef200;
    font-size: 14px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 4px;
}

.symptom_wrapper {
    position: relative;
    height: 420px;
    margin-bottom: 40px;
}

.symptom_person_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 180px;
    z-index: 1;
}

.symptom_person_img img {
    width: 100%;
    display: block;
}

.bubble_item {
    position: absolute;
    background: #ffffff;
    border-radius: 50px;
    padding: 18px 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.bubble_item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #003366;
    font-weight: 700;
}


.bubble_item.item1 { top: 10px;  left: 15%; }
.bubble_item.item2 { top: 0px;   left: 50%; transform: translateX(-50%); }
.bubble_item.item3 { top: 10px;  right: 15%; }
.bubble_item.item4 { bottom: 80px; left: 12%; }
.bubble_item.item5 { bottom: 80px; right: 12%; }

.effect_box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.effect_title {
    background: #fff100;
    border: 2px solid #003366;
    color: #003366;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 12px 40px;
    border-radius: 4px;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
}

.effect_title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 12px 10px 0 10px;
    border-color: #003366 transparent transparent transparent;
}

.effect_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
}

.effect_list li {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    position: relative;
    padding-left: 24px;
}

.effect_list li::before {
    content: "●";
    color: #009ad6;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 1px;
}

.effect_list li span {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}

@media screen and (max-width: 768px) {
    .symptom_effect_section {
        padding: 40px 15px 50px;
    }

    .symptom_title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .symptom_wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .bubble_group {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .bubble_item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 85%;
        padding: 15px 20px;
        border-radius: 30px;
    }

    .bubble_item:nth-child(odd) {
        align-self: flex-start;
    }

    .bubble_item:nth-child(even) {
        align-self: flex-end;
    }

    .bubble_item p {
        font-size: 13px;
        text-align: center;
    }

    .symptom_person_img {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        width: 140px;
        margin: 10px auto 0;
    }

    .effect_box {
        padding: 35px 20px 25px;
        margin-top: 45px;
    }

    .effect_title {
        font-size: 16px;
        padding: 10px 20px;
        width: 80%;
        top: -22px;
    }

    .effect_list {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 10px;
    }

    .effect_list li {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .effect_list li span {
        display: inline;
        font-size: 12px;
    }
}

/* ご利用料金 */
.price_section {
    background-color: #f7f9fa;
    background-image: radial-gradient(#d3dbdf 10%, transparent 10%), radial-gradient(#d3dbdf 10%, transparent 10%);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    padding: 60px 20px 80px;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
}

.price_container {
    max-width: 1000px;
    margin: 0 auto;
}

.price_heading_wrap {
    text-align: center;
    margin-bottom: 40px;
}

.price_sub_title {
    display: block;
    color: #009ad6;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.price_main_title {
    color: #00336c;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.03em;
}

.price_card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    max-width: 680px;
    margin: 0 auto 60px;
    padding: 35px 40px;
    text-align: center;
}

.price_card_lead {
    color: #333333;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 500;
    margin: 0 0 20px 0;
}

.price_badge_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price_badge {
    background-color: #009ad6;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 30px;
    border-radius: 50px;
}

.price_number_wrap {
    font-size: 18px;
    font-weight: 700;
    color: #00336c;
    position: relative;
    background: linear-gradient(transparent 85%, #fff100 75%);
}

.price_amount {
    font-size: 32px;
    font-weight: 700;
}

.price_slash {
    font-size: 16px;
    font-weight: 500;
    margin-left: 5px;
    color: #00336c;
}

.price_features_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.feature_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 500;
}

.feature_icon_circle {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature_icon_circle img {
    width: 55px;
    height: auto;
}

.feature_text {
    font-size: clamp(14px, 2.5vw, 15px);
    color: #333333;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .price_section {
        padding: 40px 15px 50px;
    }

    .price_main_title {
        font-size: 24px;
    }

    .price_card {
        padding: 30px 16px;
        margin-bottom: 40px;
    }

    .price_card_lead {
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .price_badge_row {
        flex-direction: column;
        gap: 12px;
    }

    .price_badge {
        font-size: 13px;
        padding: 6px 16px;
    }

    .price_amount {
        font-size: 28px;
    }

    .price_features_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 500px;
    }
    .price_container {
        max-width: 680px;
    }

    .feature_item {
        gap: 0px;
        max-width: 230px;
        margin: 0 auto;
    }
    .feature_icon_circle {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
    }

    .feature_icon_circle img {
        width: 45px;
    }
}

/* さらにメディパスでは */
.medi_features_section {
    background-color: #eef7fa;
    padding: 60px 20px 40px;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.medi_features_container {
    max-width: 1000px;
    margin: 0 auto;
}

.ribbon_wrapper {
    display: flex;
    justify-content: center;
}

.ribbon_heading {
    position: relative;
    background-image: url(../../images/front/individual/massage/deco04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; 
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding: 16px 70px 20px; 
    margin: 0;
    display: inline-block;
    letter-spacing: 0.05em;
}

.medi_features_content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    max-width: 960px;
    margin: 0 auto;
    align-items: center;
}

.feature_text_box {
    flex: 1;
    max-width: 360px;
    padding-bottom: 20px;
}

.feature_text_box p {
    color: #333333;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
}

.highlight_blue {
    color: #009ad6;
    font-weight: 700;
}
.highlight_cyan {
    color: #00a0e9;
    font-weight: 700;
}

.feature_img {
    flex-shrink: 0;
}
.feature_img img {
    display: block;
    width: 100%;
    height: auto;
}

.img_provider {
    width: 140px;
}
.img_recipient {
    width: 200px;
}


@media screen and (max-width: 768px) {
    .ribbon_wrapper {
        margin-bottom: 25px;
    }

    .ribbon_heading {
        font-size: 20px;
        padding: 12px 45px 16px; 
    }
    
    .feature_text_box { 
        grid-area: text; 
        max-width: 100%;
        padding-bottom: 0;
        padding: 0 20px;
    }

    .feature_text_box p {
        line-height: 1.7;
    }
    
    .feature_text_box p br {
        display: none;
    }

    .img_provider { 
        grid-area: provider; 
        width: 100px; 
        margin-right: 10px; 
        display: inline-block;
    }
    .img_recipient {
        width: 150px;
    }

}

@media screen and (max-width: 430px) {
    .medi_features_section {
        padding: 40px 15px 0px;
    }

    .medi_features_content {
        display: grid;
        grid-template-areas: 
            "text text"
            "provider recipient";
        align-items: flex-end;
        justify-content: space-around;
        gap: 5px;
    }
    .img_recipient { 
        grid-area: recipient; 
        width: 120px; 
        display: inline-block;
        padding-bottom: 15px;
    }
}

/* ご利用までの流れ */
.flow_section {
    background-color: #f2f2f2;
    padding: 60px 20px 80px;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
}

.flow_heading_area {
    text-align: center;
    margin-bottom: 40px;
}
.flow_sub_title {
    display: block;
    color: #00a0e9;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.1;
}
.flow_main_title {
    color: #00336c;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
}

.flow_card_container {
    background-color: #ffffff;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.flow_step_item {
    margin-bottom: 50px;
}
.flow_step_item:last-child {
    margin-bottom: 0;
}

.flow_step_label {
    background-color: #009ad6;
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 25px;
}
.flow_step_label .step_num {
    font-size: 24px;
    font-weight: 700;
    margin-right: 15px;
    line-height: 1;
}
.flow_step_label .step_text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.flow_step_content {
    display: flex;
    align-items: center;
    padding-left: 20px;
}
.flow_step_illust {
    width: 110px;
    min-width: 110px;
    margin-right: 40px;
}
.flow_step_illust img {
    width: 100%;
    height: auto;
    display: block;
}

.flow_step_desc {
    flex: 1;
}
.flow_step_desc p {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .flow_section {
        padding: 40px 15px 50px;
    }

    .flow_main_title {
        font-size: 24px;
    }

    .flow_card_container {
        border-radius: 15px;
        padding: 40px 20px;
    }

    .flow_step_item {
        margin-bottom: 40px;
    }

    .flow_step_label {
        padding: 8px 20px;
        margin-bottom: 20px;
    }
    .flow_step_label .step_num {
        font-size: 20px;
        margin-right: 12px;
    }
    .flow_step_label .step_text {
        font-size: 16px;
    }

    .flow_step_content {
        display: flex;
        align-items: flex-start;
        padding-left: 0;
    }

    .flow_step_illust {
        width: 80px;
        min-width: 80px;
        margin-right: 15px;
        margin-top: 5px;
    }

    .flow_step_desc p {
        font-size: 14px;
        line-height: 1.6;
    }

    .flow_step_desc br {
        display: none;
    }
}

/* 訪問対象エリア */
.area_section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
}

.area_container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.area_text_content {
    flex: 1;
    max-width: 540px;
}

.area_heading_box {
    margin-bottom: 25px;
}
.area_sub_title {
    display: block;
    color: #00a0e9;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.1;
}
.area_main_title {
    color: #00336c;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
    text-align: start;
}
.area_lead_text {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0 0 30px;
}
.area_note {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.achievement_card {
    border: 2px solid #00a0e9;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 35px;
}
.achievement_title {
    color: #00a0e9;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
}
.achievement_text {
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.02em;
}

.office_name {
    font-size: 18px;
    font-weight: 700;
    color: #00336c;
}
.office_address {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
.area_image_content {
    flex: 1;
    max-width: 480px;
    display: flex;
    justify-content: center;
}
.area_image_content img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 992px) {
    .area_container {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }
    
    .area_text_content {
        max-width: 100%;
    }
    
    .area_image_content {
        max-width: 440px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .area_section {
        padding: 50px 15px;
    }

    .area_main_title {
        font-size: 24px;
    }

    .area_lead_text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    .area_note {
        font-size: 13px;
    }

    .achievement_card {
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 10px;
    }
    .achievement_title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .achievement_text {
        font-size: 14px;
        line-height: 1.7;
    }

    .office_name {
        font-size: 16px;
    }
    .office_address {
        font-size: 14px;
        line-height: 1.5;
    }

    .area_image_content {
        margin-top: 10px;
    }
}

/* 訪問マッサージのメリット */
.benefits_section {
    background-color: #eef7fa;
    padding: 80px 20px 100px;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.benefits_container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits_main_title {
    display: block;
    background-color: #009ad6;
    color: #ffffff;
    font-size: 40px;

    font-weight: 700;
    text-align: center;
    padding: 5px 0;
    border-radius: 50px;
    max-width: 800px;
    margin: 0 auto 50px;
    letter-spacing: 0.05em;
}

.benefits_grid {
    position: relative;
    max-width: 1100px;
    height: 550px;
    margin: 0 auto;
}

.benefit_item {
    position: absolute;
    width: 300px;
    height: 300px;
}

.benefit_item.item_1 {
    top: 0;
    left: 0%;
    z-index: 1;
}
.benefit_item.item_3 {
    top: 0%;
    right: 24%;
    z-index: 2;
}
.benefit_item.item_2 {
    bottom: 0%;
    left: 24%;
    z-index: 1;
}
.benefit_item.item_4 {
    bottom: 0%;
    right: 0%;
    z-index: 2;
}

.benefit_circle {
    background-color: #ffffff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 35px 35px; 
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 160, 233, 0.03);
}

.benefit_num {
    color: #00a0e9;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-top: -42px; 
    margin-bottom: 30px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.benefit_title {
    color: #00a0e9;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.benefit_text {
    color: #444;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    max-width: 220px;
    letter-spacing: 1.2px;
}

.benefit_illust {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}
.benefit_illust img {
    width: 100%;
    height: auto;
    display: block;
}

.illust_pig { width: 110px; top: 50px; right: -65px; }
.illust_cloth { width: 140px; top: 70px; left: -115px; }
.illust_care { width: 130px; top: -20px; right: -100px; }
.illust_smile { width: 90px; bottom: 30px; left: -70px; }


@media screen and (max-width: 820px) {
    .benefit_item.item_3 {
        right: 15%;
    }
    .benefit_item.item_2 {
        left: 15%;
    }
}

@media screen and (max-width: 768px) {
    .benefits_section {
        padding: 50px 15px 40px;
    }

    .benefits_main_title {
        font-size: 20px;
        padding: 14px 10px;
        margin-bottom: 40px;
    }

    .benefits_grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 35px;
    }

    .benefit_item {
        position: static;
        width: 250px;
        height: 250px;
    }

    .benefit_circle {
        padding: 20px;
    }

    .benefit_num {
        font-size: 48px;
    }

    .benefit_title {
        font-size: 17px;
    }

    .benefit_text {
        font-size: 13px;
        line-height: 1.5;
        max-width: 220px;
    }

    .benefit_illust {
        position: absolute;
    }
    .illust_pig {
        width: 85px;
        top: 30px;
        right: 140px;
    }
    .illust_cloth {
        width: 95px;
        top: 275px;
        left: 120px;
    }
        .illust_care {
        width: 100px;
        top: 520px;
        right: 132px !important;
    }
    .illust_smile {
        width: 75px;
        bottom: -10px;
        left: 140px;
    }
}

@media screen and (max-width: 430px) {
    .benefits_grid {
        gap: 25px;
    }
    .illust_pig {
        width: 85px;
        top: 30px;
        right: 0px;
    }
    .illust_cloth {
        width: 95px;
        top: 275px;
        left: -10px;
    }
        .illust_care {
        width: 100px;
        top: 520px;
        right: 2px !important;
    }
    .illust_smile {
        width: 75px;
        bottom: -10px;
        left: -7px;
    }
}

/* Q＆A */
.faq_section {
    background-color: #ffffff;
    padding: 0 20px 80px;
    font-family: "Noto Sans JP", sans-serif;
    box-sizing: border-box;
}

.faq_container {
    max-width: 860px;
    margin: 0 auto;
}

.faq_heading_box {
    text-align: center;
    margin-bottom: 50px;
}

.faq_main_title {
    position: relative;
    background-image: url(../../images/front/individual/massage/deco05.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; 
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto;
    letter-spacing: 0.05em;
    max-width: 460px; 
    padding: 20px 0 80px;
}

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

.faq_item {
    width: 100%;
    display: block;
    box-shadow: 0 5px 5px #ccc;
    border-radius: 20px;
}

.faq_item summary::-webkit-details-marker {
    display: none;
}
.faq_question {
    display: block;
    list-style: none;
    cursor: pointer;
}

.faq_question {
    background-color: #eef7fa;
    border-radius: 20px 20px 0 0;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq_item[open] .faq_question {
    border-radius: 10px 10px 0 0;
}
.faq_item:not([open]) .faq_question {
    border-radius: 10px;
}

.q_left {
    display: flex;
    align-items: center;
    flex: 1;
}

.q_prefix {
    background-color: #009ad6;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    width: 40px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    line-height: 1;
    padding-bottom: 3px;
    font-family: Zen Maru Gothic;
}

.q_text {
    color: #00a0e9;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
}

.faq_icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq_icon::before,
.faq_icon::after {
    content: "";
    position: absolute;
    background-color: #00a0e9;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq_icon::before {
    width: 100%;
    height: 2px;
    top: 8px;
    left: 0;
}

.faq_icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 8px;
}

.faq_item[open] .faq_icon::after {
    transform: rotate(90deg) scaleX(0);
}

.faq_answer {
    padding: 20px 20px 20px 81px;
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
}

.a_prefix {
    color: #00a0e9;
    font-size: 18px;
    font-weight: 700;
    margin-right: 15px;
    line-height: 1.5;
}

.a_text {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    letter-spacing: 0.7px;
}

@media screen and (max-width: 768px) {
    .faq_section {
        padding: 0px 15px 50px;
    }

    .faq_main_title {
        font-size: 22px;
        max-width: 340px;
        padding: 10px 0 40px;
    }

    .faq_list {
        gap: 10px;
    }

    .faq_question {
        padding: 15px 18px;
    }
    
    .q_prefix {
        font-size: 16px;
        width: 28px;
        height: 28px;
        margin-right: 12px;
    }
    
    .q_text {
        font-size: 15px;
    }

    .faq_icon {
        width: 14px;
        height: 14px;
        margin-left: 10px;
    }
    .faq_icon::before { top: 6px; }
    .faq_icon::after { left: 6px; }

    .faq_answer {
        padding: 15px;
    }
    .a_prefix {
        font-size: 16px;
        margin-right: 10px;
    }
    .a_text {
        font-size: 13.5px;
    }
    .faq_main_title {
        font-size: 24px;
    }
    .faq_question {
        padding: 15px 18px;
    }
    .q_prefix {
        font-size: 20px;
        margin-right: 14px;
    }
    .q_text {
        font-size: 14.5px;
    }
    .faq_icon {
        width: 14px;
        height: 14px;
        margin-left: 10px;
    }
    .faq_icon::before { top: 6px; }
    .faq_icon::after { left: 6px; }

    .faq_answer {
        padding: 15px 5px 5px 5px;
    }
    .a_prefix {
        font-size: 16px;
        margin-right: 10px;
    }
    .a_text {
        font-size: 14px;
    }
}


#top .sttl h2 {
    font-family: "Noto Sans JP", sans-serif;
}