/* **********************
commoncss 
**************************/
@charset "utf-8";
/*=======================================================
基本設定
=======================================================*/
@font-face {
	font-family: "noto-sans-jp";
	src: url(../font/NotoSansJP-Regular.woff2) format("woff");
	font-weight: normal;
	font-display: swap;
}
@font-face {
	font-family: "noto-sans-jp";
	src: url(../font/NotoSansJP-Bold.woff2) format("woff");
	font-weight: bold;
	font-display: swap;
}
@font-face {
	font-family: "noto-serif-jp";
	src: url(../font/NotoSerifJP-Regular.woff2) format("woff");
	font-weight: normal;
	font-display: swap;
}
@font-face {
	font-family: "noto-serif-jp";
	src: url(../font/NotoSerifJP-Bold.woff) format("woff");
	font-weight: bold;
	font-display: swap;
}
* {
	margin: 0;
	padding: 0;
}
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	font-style: normal;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	line-break: strict;
	overflow-wrap: anywhere;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*,
*:focus,
a:focus {
	outline: none;
}
/* body,
.ly-head,
.ly-main,
.ly-foot {
	min-width: 1024px;
} */
body {
	background: #fff;
	font-family: "noto-sans-jp", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 17px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	-webkit-text-size-adjust: 100%;
	color: #222;
}
article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
	display: block;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
ul,
ol {
	list-style: none;
}
p,
li,
dt,
dd,
th,
td {
	-ms-line-break: strict;
	line-break: strict;
	overflow-wrap: anywhere;
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}
picture {
	line-height: 0;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	border-radius: 0;
	appearance: none;
	background-color: transparent;
	border: none;
	cursor: pointer;
	font-size: 16px;
	outline: none;
    color: #222;
}
input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px #fff inset;
}
input[type="checkbox"] {
	display: none;
}
input[type="radio"] {
	display: none;
}
button,
textarea {
	font-family: inherit;
	font-size: 100%;
}
/* PC SP */
.pc {
	display: initial;
}
.sp {
	display: none;
}
@media only screen and (min-device-width: 1025px) {
	/* PCのみホバー効果 */
	a, .hp-hover {
		transition: all 0.3s ease;
	}
	a:hover, .hp-hover:hover{
		opacity: 0.7;
	}
	label:hover {
		cursor: pointer;
	}
}
@media screen and (max-width: 750px) {
	body,
	.ly-head,
	.ly-main,
	.ly-foot {
		min-width: 750px;
		max-width: 750px;
		width: 100%;
	}
	body {
		font-size: 28px;
		line-height: 1.5;
	}
	.sp {
		display: initial;
	}
	.pc {
		display: none;
	}
}

/*=============================
共通レイアウト
==============================*/
/* 全体のWrapper */
.ly-all-wrapper {
	overflow: hidden;
	max-width: 2000px;
	margin: 0 auto;
}

/* inner */
.ly-head-inner,
.ly-foot-inner,
.ly-cont,
.ly-cont-inner {
	max-width: 1024px;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/* 2カラム */
.ly-cont--col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 44px;
}
.ly-cont-main {
	width: 700px;
}
.ly-cont-side {
	width: 280px;
}

@media screen and (max-width: 750px) {
	/* inner */
	.ly-cont,
	.ly-cont-inner {
		width: 690px;
		padding: 0!important;
	}
	/* 2カラム */
	.ly-cont--col {
		gap: 80px;
	}
	.ly-cont-main,
	.ly-cont-side {
		width: 100%;
	}
}

/*=============================
共通パーツ
==============================*/
/* 各sectionメイン見出し */
.el-main-ttl {
	line-height: 1.5;
	text-align: center;
	margin-bottom: 48px;
	position: relative;
}
.el-main-ttl:has(img){
	/* height: 30px; */
}
.el-main-ttl img{
	width: auto;
	height: 30px;
}
.el-main-ttl.line{
	padding-bottom: 16px;
}
.el-main-ttl.line::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100px;
	height: 3px;
	background: #E41C4B;
	transform: translateX(-50%);
}
/* bl_bulletList */
.bl-bulletList > li {
	padding-left: 1em;
	position: relative;
}
.bl-bulletList > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.bl-bulletList.bl-bulletList--square > li {
	padding-left: calc(1em + 8px);
}
.bl-bulletList.bl-bulletList--square > li::before {
	content: "■";
}
/* bl_numList */
.bl-numList {
	counter-reset: num;
}
.bl-numList > li {
	padding-left: 1.2em;
	position: relative;
}
.bl-numList > li:before {
	counter-increment: num;
	content: counter(num) ".";
	position: absolute;
	top: 0;
	left: 0;
}
.bl-numList.bl-numList--circle > li:first-of-type::before {
	content: "①";
}
.bl-numList.bl-numList--circle > li:nth-of-type(2)::before {
	content: "②";
}
.bl-numList.bl-numList--circle > li:nth-of-type(3)::before {
	content: "③";
}
.bl-numList.bl-numList--circle > li:nth-of-type(4)::before {
	content: "④";
}
.bl-numList.bl-numList--circle > li:nth-of-type(5)::before {
	content: "⑤";
}
.bl-numList.bl-numList--brackets {
	counter-reset: cnt;
}
.bl-numList.bl-numList--brackets > li {
	padding-left: 2em;
	counter-increment: cnt;
}
.bl-numList.bl-numList--brackets > li::before {
	content: "(" counter(cnt) ") ";
}
/* el_btn */
.el-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding-bottom: 2px;
}
.el-btn.more{
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	background: #10847D;
	box-shadow: 0px 3px 6px #00000029;
	border: 2px solid #FFFFFF;
	border-radius: 29px;
	max-width: 448px;
	width: 100%;
	height: 58px;
	margin: 40px auto 0;
}
.el-btn.red{
	background: #DC2B18;
}
.el-btn.more::after{
	content: "";
	position: absolute;
	background: url(../img/lp/shoshi_dr202509/btn-arrow.svg) top center / contain no-repeat;
	width: 30px;
	height: 30px;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
}
/* ※ */
.el-att {
	display: flex;
	font-size: 14px;
	position: relative;
}
.el-att::before {
  content: "※";
  flex: 0 1 auto;
}
.el-att.center{
	justify-content: center;
}
.el-att01::before {
	content: "※1";
	margin-right: 0.6em;
}
.el-att02::before {
	content: "※2";
	margin-right: 0.6em;
}
.el-att03::before {
	content: "※3";
	margin-right: 0.6em;
}
.el-att04::before {
	content: "※4";
	margin-right: 0.6em;
}
span.el-att {
	display: block;
}
.el-txt {
	text-align: center;
}
@media screen and (max-width: 1024px){
	/* inner */
	.ly-head-inner,
	.ly-foot-inner,
	.ly-cont,
	.ly-cont-inner {
		padding: 0 30px;
	}
}


@media screen and (max-width: 750px) {
	/* 各sectionメイン見出し */
	.el-main-ttl {
		margin-bottom: 56px;
	}
	.el-main-ttl img{
		height: 32px;
	}
	.el-main-ttl.line{
		padding-bottom: 24px;
	}
	.el-main-ttl.line::after {
		height: 4px;
	}
	/* el_btn */
	.el-btn.more {
		max-width: 610px;
		height: 80px;
		border-radius: 80px;
		font-size: 26px;
	}
	.el-btn.more::after{
		width: 42px;
		height: 42px;
		right: 24px;
	}
	/* el_label */
	.el-label {
	}
	/* ※ */
	.el-att {
		font-size: 22px;
	}
}

/*=============================
ヘルプタグ
==============================*/
/* 明朝体 */
.hp-mincho {
	font-family: "noto-serif-jp", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: bold;
}
/* bold */
.hp-bold {
	font-weight: bold !important;
}
/* opacity1 */
.hp-opacity1 {
	opacity: 1 !important;
}
.hp-scroll-y {
	overflow-y: scroll;
	/*スクロールバー非表示（IE・Edge）*/
	-ms-overflow-style: none;
	/*スクロールバー非表示（Firefox）*/
	scrollbar-width: none;
}
/*スクロールバー非表示（Chrome・Safari）*/
.hp-scroll-y::-webkit-scrollbar {
	display: none;
}

/* =======================================================
header
======================================================= */
.ly-header {
	padding: 16px 0;
}
.bl-header-logo {
  width: 224px;
  display: block;
	margin: 0 auto;
}
@media screen and (max-width: 750px) {
	.bl-header-logo {
	  width: 198px;
	}
	.bl-header-logo img{
		display: block;
	}
}
/*=============================
footer
=============================*/
.ly-footer {
	background: #444;
}
@media screen and (max-width: 750px) {
	/* footer */
	.bl-foot {
		gap: 80px;
	}
}



/* **********************
lpcss 
**************************/
@charset "UTF-8";

/* =======================================================
共通
======================================================= */
.hp-color--yellow {
  color: #FFF500;
  font-weight: bold;
}
.hp-color--pink {
  color: #EA45D0;
  font-weight: bold;
}
.hp-color--red{
  color: #E41C4B;
  font-weight: bold;
}
.hp-marker--yellow {
  background: linear-gradient(transparent 10%, #f5ff00 0%);
}
.hp-deco{
	background: #10847D;
	color: #fff;
	padding: 6px 5px;
	margin: 0 4px;
}
.hp-deco.red{
	background: #DC2B18;
}
.fs20{
  font-size: 20px;
}
.fs23{
  font-size: 23px;
}
.fs24{
  font-size: 24px;
}
.fs28 {
  font-size: 28px;
}
.fs32 {
  font-size: 32px;
}
.fs40 {
  font-size: 40px;
}
.fs50 {
  font-size: 50px;
}
.fs52 {
  font-size: 52px;
}
.fs54 {
  font-size: 54px;
}
@media screen and (width <= 750px) {
	.hp-deco{
		padding: 0 5px;
		margin: 0 4px;
	}
	.fs20{
	  font-size: 28px; //
	}
	.fs23{
	  font-size: 30px; //
	}
	.fs24{
	  font-size: 32px; //
	}
	.fs28 {
	  font-size: 36px; //
	}
	.fs32 {
	  font-size: 40px; //
	}
	.fs40 {
	  font-size: 50px; //
	}
	.fs50 {
	  font-size: 64px; //
	}
	.fs52 {
	  font-size: 52px;
	}
	.fs54 {
	  font-size: 54px;
	}
}

/* =======================================================
mv
======================================================= */
.bl-mv .bl-head-txt{
	background: #E41C4B;
	padding: 8px 0;
}
.bl-mv .bl-head-txt > p{
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: clamp(16px, 1.6vw, 24px);
	letter-spacing: 0.96px;
}
.bl-mv .bl-head-txt > p span{
	letter-spacing: 1.12px;
}
.bl-mv .bl-head-txt02{
	background: #00172C;
	padding-bottom: 18px;
}
.bl-mv .bl-head-txt02 > p{
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: clamp(18px, 2vw, 26px);
	letter-spacing: 1.56px;
	line-height: 1.36;
	position: relative;
}
.bl-mv .bl-head-txt02 > p > span{
	position: relative;
}
.bl-mv .bl-head-txt02 .att{
	color: #fff;
	position: absolute;
	top: 0;
	width: auto;
	text-align: left;
	letter-spacing: 0.56px;
	font-weight: normal;
	font-size: clamp(12px, 1vw, 15px);
}
.bl-mv .bl-head-txt02 .att01{
	margin-left: -2px;
}
.bl-mv .bl-head-txt02 .att03{
	margin-left: -10px;
	margin-top: -4px;
}
.bl-mv .bl-head-txt02 .att04{
	margin-left: 1.8em;
	margin-top: 4px;
}
.bl-mv .bl-mv-main{
	background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121529/mv-bg-scaled.jpg) bottom center / cover no-repeat;
	min-height: clamp(500px, 56svh, 620px);
	padding-block: clamp(32px, 8vh, 112px) clamp(24px, 4vh, 48px);
	display: flex;
	align-items: center;
}
.bl-mv .ly-cont-inner{
	width: min(100vw, 1100px);
	margin-inline: auto;
}
.bl-mv .bl-mv-ttl{
	width: clamp(260px, 48vw, 535px);
}
.bl-mv-list{
	border: 2px solid #00172C;
	border-radius: 10px;
	padding: clamp(12px, 1.4vw, 16px) clamp(20px, 3.2vw, 40px);
	width: clamp(260px, 42vw, 450px);
	background: #fff;
	margin-top: clamp(16px, 4vh, 48px);
}
.bl-mv-list > li{
	font-size: clamp(16px, 2vw, 26px);
	font-weight: bold;
	color: #00172C;
	letter-spacing: 1.04px;
	line-height: 1.46;
	padding: 0 0 1px clamp(22px, 2.2vw, 34px);
	position: relative;
}
.bl-mv-list > li:not(:first-of-type){
	margin-top: clamp(4px, 1vh, 8px);
}
.bl-mv-list > li::before{
	content: '';
	position: absolute;
	background: url(../img/lp/shoshi_dr202509/icon-check.svg) top center / contain no-repeat;
	width: clamp(16px, 2vw, 26px);
	height: clamp(16px, 2vw, 26px);
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bl-mv-att{
	padding: 24px 0;
}
.bl-mv-att .el-att{
	font-size: clamp(12px, 1vw, 14px);
}
@media  (max-width: 1200px){
	.bl-mv .bl-mv-main {
		min-height: clamp(300px, 46svh, 450px);
		background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121529/mv-bg-scaled.jpg) bottom right 50% / cover no-repeat;
	}
}
@media  (max-width: 1024px){
	.bl-mv .bl-mv-main {
		min-height: clamp(360px, 46svh, 450px);
		background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121529/mv-bg-scaled.jpg) bottom right 48% / cover no-repeat;
	}
	.bl-mv-att{
		padding: 24px 30px;
	}
}
@media  (max-width: 864px){
	.bl-mv .bl-mv-main {
		min-height: clamp(360px, 32svh, 450px);
		background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121529/mv-bg-scaled.jpg) bottom right 45% / cover no-repeat;
	}
}
@media (max-height: 800px){
  .bl-mv .bl-mv-main{
		min-height: clamp(360px, 50svh, 670px);
  }
}

@media screen and (width <= 750px) {
  .bl-mv .bl-head-txt{
    background: #E41C4B;
    padding: 8px 0;
  }
  .bl-mv .bl-head-txt > p{
    font-size: 32px;
	line-height: 1.4;
    letter-spacing: 1.92px;
  }
  .bl-mv .bl-head-txt > p span{
    letter-spacing: 1.12px;
  }
  .bl-mv .bl-head-txt02 > p{
    font-size: 34px;
	letter-spacing: 2.04px;
  }
	.bl-mv .bl-head-txt02 .att{
		font-size: 17px;
	}
	.bl-mv .bl-head-txt02 .att04{
		margin-left: 20px;
	}
  .bl-mv .bl-mv-main{
    background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121530/mv-bg-sp.jpg) bottom center / cover no-repeat;
    padding: 58px 0;
  }
  .bl-mv .bl-mv-ttl{
    width: 552px;
    margin: 0 auto;
  }
  .bl-mv-list{
    border: 3px solid #00172C;
    padding: 16px;
    display: grid;
    place-content: center;
    width: 514px;
    background: #fff;
    margin: 410px auto 0;
  }
  .bl-mv-list > li{
    font-size: 28px;
    letter-spacing: 1.12px;
	line-height: 1.33;
    padding: 0 0 2px 38px;
  }
  .bl-mv-list > li::before{
    width: 30px;
    height: 30px;
  }
  .bl-mv-att{
	padding: 24px 0!important;
  }
  .bl-mv-att .el-att{
	font-size: 17px;
  }
}

/* =======================================================
worry
======================================================= */
.bl-worry{
	padding: 56px 0;
	background: #4A4F5A;
}
.bl-worry-list{
 background: linear-gradient(
  to bottom,
  #fff calc(100% - 58px),
  #e2e2e2 calc(100% - 58px));
	padding: 32px 0 72px;
	display: grid;
	place-content: center;
	margin-bottom: 24px;
	position: relative;
}
.bl-worry-list::before{
  content: '';
	position: absolute;
	background: url(../img/lp/shoshi_dr202509/worry-woman.svg) top center / contain no-repeat;
	width: 132px;
	height: 178px;
	bottom: 6px;
	left: 56px;
}
.bl-worry-list::after{
    content: '';
	position: absolute;
	background: url(../img/lp/shoshi_dr202509/worry-man.svg) top center / contain no-repeat;
	width: 116px;
	height: 162px;
	bottom: 36px;
	right: 56px;
}
.bl-worry-list > li{
  font-size: 20px;
	padding-left: 30px;
	position: relative;
}
.bl-worry-list > li:not(:first-of-type){
	margin-top: 8px;
}
.bl-worry-list > li::before{
  content: '';
	position: absolute;
	background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121528/icon-worry.png) top center / contain no-repeat;
	width: 14px;
	height: 18px;
		top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bl-worry .el-txt{
	color: #fff;
}
.bl-worry .el-txt.arrow{
	width: 158px;
	height: 60px;
	background: url(../img/lp/shoshi_dr202509/worry-arrow.svg) top center / contain no-repeat;
	font-weight: bold;
	padding-top: 10px;
	margin: 24px auto;
}
.bl-worry .el-txt:last-of-type .fs28{
	position: relative;
	z-index: 2;
}
.bl-worry .el-txt:last-of-type .fs28::before{
	content: '';
	position: absolute;
	width: 328px;
	height: 22px;
	background: #FF3BCA;
	opacity: 0.6;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
@media screen and (width <= 880px) {
	.bl-worry-list::before{
		left: 2%;
	}
	.bl-worry-list::after{
		right: 2%;
	}
}
@media screen and (width <= 750px) {
  .bl-worry{
    padding: 80px 0;
  }
  .bl-worry .el-main-ttl img{
	height: 38px;
  }
  .bl-worry-list{
  background: linear-gradient(
    to bottom,
    #fff calc(100% - 42px),
    #e2e2e2 calc(100% - 42px));
    padding: 32px 44px 90px;
	display: block;
    margin-bottom: 32px;
  }
  .bl-worry-list::before{
	  content: none;
  }
  .bl-worry-list::after{
    bottom: 16px;
    right: 16px;
  }
  .bl-worry-list > li{
    font-size: 28px;
	letter-spacing: 1.12px;
    padding-left: 36px;
    position: relative;
  }
  .bl-worry-list > li::before{
	width: 20px;
	height: 28px;
	  top: 54%;
  }
  .bl-worry .el-txt.arrow{
width: 228px;
height: 86px;
    padding-top: 14px;
    margin: 32px auto;
  }
	.bl-worry .el-txt:last-of-type .fs20{
		font-size: 34px;
	}
  .bl-worry .el-txt:last-of-type .fs28{
	  font-size: 42px;
  }
  .bl-worry .el-txt:last-of-type .fs28::before{
	width: 500px;
	height: 22px;
	  bottom: 2px;
  }
}

/* =======================================================
achievement
======================================================= */
.bl-achievement{
	padding: 46px 0 32px;
	background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121523/achievement-bg-scaled.jpg) top center / 2000px 392px no-repeat #fff;
}
.el-main-ttl{
	margin-bottom: 40px;
}
.bl-achievement-list > li{
	text-align: center;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 1.2px;
	padding-right: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 8px;
	height: 50px;
	background: url(../img/lp/shoshi_dr202509/achievement-item-bg01.svg) top center / contain no-repeat;
}
.bl-achievement-list > li:nth-of-type(2){
	background: url(../img/lp/shoshi_dr202509/achievement-item-bg02.svg) top center / contain no-repeat;
}
.bl-achievement-list > li:nth-of-type(3){
	background: url(../img/lp/shoshi_dr202509/achievement-item-bg03.svg) top center / contain no-repeat;
}
.bl-achievement-list > li:nth-of-type(4){
	background: url(../img/lp/shoshi_dr202509/achievement-item-bg04.svg) top center / contain no-repeat;
}
.bl-achievement-list > li:not(:first-of-type){
	margin-top: 8px;
}
.bl-achievement-list > li > .el-att{
	margin-top: 16px;
	font-weight: normal;
}
.bl-achievement .bl-att-list{
	margin-top: 56px;
	display: grid;
	place-content: center;
}
@media screen and (width <= 750px) {
  .bl-achievement{
    padding: 56px 0;
    background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121524/achievement-bg-sp.jpg) top center / 750px 526px no-repeat #fff;
  }
  .bl-achievement-list > li{
    font-size: 37px;
	letter-spacing: 1.48px;
    padding-right: 12px;
	padding-bottom: 12px;
    height: 62px;
  }
  .bl-achievement-list > li > .el-att{
    margin-top: 8px;
  }
  .bl-achievement .bl-att-list{
    margin-top: 120px;
  }
  .bl-achievement .bl-att-list .el-att{
	  font-size: 17px;
  }
}

/* =======================================================
voice
======================================================= */
.bl-voice{
	background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121540/voice-bg-scaled.jpg) top center / cover no-repeat;
	padding: 56px 0;
}
.bl-voice .el-main-ttl{
  margin-bottom: 56px;
}
.bl-voice .el-main-ttl img{
	height: 82px;
}
.bl-voice-item{
  box-shadow: 0px 3px 6px #00000029;
	border: 2px solid #E41C4B;
	border-radius: 10px;
	background: #fff;
	padding: 40px 56px;
	position: relative;
}
.bl-voice-item:not(:first-of-type){
  margin-top: 40px;
}
.bl-voice-item:first-of-type::before{
	content: '';
	position: absolute;
	background: url(../img/lp/shoshi_dr202509/voice-man.svg) top center / contain no-repeat;
	width: 174px;
	height: 164px;
	top: -162px;
	right: 0;
}
.bl-voice-head{
  display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 40px;
}
.bl-voice-img-wrapper{
	width: 176px;
	border: 2px solid #CCCCCC;
}
.el-voice-ttl{
	font-size: 26px;
	color: #E41C4B;
	line-height: 1.5;
	letter-spacing: 1.56px;
	margin-bottom: 24px;
}
.el-voice-s-ttl{
	color: #E41C4B;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.8px;
	margin-bottom: 16px;
}
.el-voice-s-ttl:nth-of-type(2){
	margin-top: 32px;
}
.el-voice-txt:not(:first-of-type){
	margin-top: 1.2em;
}
@media screen and (width <= 1024px) {
	.bl-voice .el-main-ttl{
	  margin-bottom: 114px;
	}
	.bl-voice-head{
		gap: 5%;
	}
	.bl-voice-item{
		padding-left: 32px;
		padding-right: 32px;
	}
	.bl-voice-img-wrapper{
		width: 20%;
	}
	.bl-voice-head-right{
		width: 75%;
	}
}
@media screen and (width <= 750px) {
  .bl-voice{
    background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121542/voice-bg-sp-scaled.jpg) top center / cover no-repeat;
    padding:80px 0;
  }
  .bl-voice .el-main-ttl{
    margin-bottom: 56px;
  }
  .bl-voice .el-main-ttl img{
    height: 134px;
  }
  .bl-voice-item{
    border: 3px solid #E41C4B;
    padding: 40px;
  }
  .bl-voice-item:first-of-type::before{
	width: 134px;
	height: 132px;
    top: -126px;
    right: inherit;
	left: -40px;
  }
  .bl-voice-head{
    gap: 16px;
  }
  .bl-voice-img-wrapper{
    width: 204px;
  }
  .bl-voice-head-right{
	  width: 384px;
	 }
  .el-voice-ttl{
    font-size: 30px;
	  letter-spacing: 1.8px;
    margin-bottom: 12px;
  }
	.el-voice-name{
		font-size: 30px;
	}
	  .el-voice-s-ttl{
    font-size: 30px;
  }
  .el-voice-s-ttl:nth-of-type(2){
    margin-top: 40px;
  }
}

/* =======================================================
info
======================================================= */
.bl-info{
	padding: 56px 0;
}
.bl-info .ly-cont-inner::before{
	content: '';
	position: absolute;
	background: url(../img/lp/shoshi_dr202509/info-girl.svg) top center / contain no-repeat;
	width: 82px;
	height: 160px;
	bottom: -56px;
	left: -70px;
}
.bl-info .ly-cont-inner::after{
	content: '';
	position: absolute;
	background: url(../img/lp/shoshi_dr202509/info-woman.svg) top center / contain no-repeat;
	width: 130px;
	height: 144px;
	bottom: -56px;
	right: -96px;
}
.bl-info .el-main-ttl{
  margin-bottom: 40px;
}
.bl-info .el-txt{
  letter-spacing: 0.8px;
}
.bl-info-wrapper{
  display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}
.bl-info-item{
	background: #DEE7EF;
	box-shadow: 0px 3px 6px #00000029;
	border: 2px solid #00172C;
	border-radius: 10px;
	padding: 16px 0;
	width: 440px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl-info-wrapper > .el-txt{
  display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (width <= 1024px) {
	.bl-info .ly-cont-inner::before{
		left: 10%;
	}
	.bl-info .ly-cont-inner::after{
		right: 10%;
	}
	.bl-info-wrapper{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 24px;
		margin-top: 40px;
	}
}
@media screen and (width <= 830px) {
	.bl-info .el-main-ttl img{
		width: 100%;
		height: auto;
	}
}
@media screen and (width <= 750px) {
  .bl-info{
    padding: 80px 0;
  }
  .bl-info .ly-cont-inner::before{
    content: none;
  }
  .bl-info .ly-cont-inner::after{
    content: none;
  }
 .bl-info .el-main-ttl{
	 margin-bottom: 56px;
 }
  .bl-info .el-main-ttl img{
    height: 84px;
  }
  .bl-info .el-txt{
    letter-spacing: 1.12px;
  }
  .bl-info-wrapper{
    margin-top: 56px;
	gap: 40px;
  }
  .bl-info-item{
    border: 3px solid #00172C;
    padding: 32px 0;
    width: 100%;
	position: relative;
  }
	.bl-info .bl-info-item:first-of-type::before{
    content: '';
    position: absolute;
    background: url(../img/lp/shoshi_dr202509/info-girl.svg) top center / contain no-repeat;
	width: 90px;
	height: 176px;
    bottom: 0;
    left: 0;
  }
  .bl-info .bl-info-item:nth-of-type(2)::after{
    content: '';
    position: absolute;
    background: url(../img/lp/shoshi_dr202509/info-woman.svg) top center / contain no-repeat;
	width: 144px;
	height: 160px;
    bottom: 0;
    right: 0;
  }
}

/* =======================================================
cta
======================================================= */
.bl-cta{
	padding: 56px 0 96px;
	background: #00172C;
}
.bl-cta .el-main-ttl img{
	height: 70px;
}
.bl-cta-list{
	display: flex;
	gap: 32px;
}
.bl-cta-item{
	width: 496px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	padding: 32px 24px;
}
.el-cta-ttl{
	display: inline-block;
	text-align: center;
	margin-bottom: 28px;
	position: relative;
	z-index: 1;
}
.el-cta-ttl::before{
	content: '';
	position: absolute;
	width: calc(100% + 24px);
	height: 22px;
	background: #FFF500;
	opacity: 0.6;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.el-cta-ttl img{
	width: auto;
	height: 24px;
}
.bl-cta .bl-media{
	display: flex;
	gap: 22px;
}
.bl-cta .bl-media-img-wrapper{
	width: 208px;
}
.bl-cta .bl-media p{
	width: 215px;
	display: grid;
	place-content: center;
}
@media screen and (width <= 1024px) {
	.bl-cta-list{
		flex-wrap: wrap;
		gap: 2%;
	}
	.bl-cta-item{
		max-width: 496px;
		padding-left: 16px;
		padding-right: 16px;
		width: 49%;
	}
	.bl-cta .bl-media{
		gap: 2%;
	}
	.bl-cta .bl-media-img-wrapper{
		width: 45%;
	}
	.bl-cta .bl-media p{
		width: 55%;
	}
}
@media screen and (width <= 930px) {
	.bl-cta .el-main-ttl img{
		width: 100%;
		height: auto;
	}
	.bl-cta .bl-media{
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	.bl-cta .bl-media p{
		text-align: center;
	}
	.bl-cta .bl-media-img-wrapper{
		width: 70%;
	}
	.bl-cta .bl-media p{
		width: 100%;
		min-height: 110px;
	}
}
@media screen and (width <= 750px) {
  .bl-cta{
    padding: 80px 0;
  }
.bl-cta .el-main-ttl img{
	width: auto;
	height: 134px;
}
  .bl-cta-list{
	flex-direction: column;
    gap: 56px;
  }
  .bl-cta-item{
	max-width: 100%;
    width: 100%;
    padding: 40px;
  }
  .el-cta-ttl{
    margin-bottom: 52px;
  }
  .el-cta-ttl::before{
    width: calc(100% + 32px);
    bottom: -10px;
  }
  .el-cta-ttl img{
    height: 34px;
	display: block;
  }
  .bl-cta .bl-media{
	flex-direction: unset;
    gap: 16px;
  }
  .bl-cta .bl-media-img-wrapper{
    width: 290px;
  }
  .bl-cta .bl-media p{
    width: 304px;
	text-align: left;
  }
}

/* =======================================================
bnr
======================================================= */
.bl-bnr{
	padding: 56px 0;
  background-color: #ffffff;
  background-image: radial-gradient(circle, #ffd6e0 2px, transparent 2px);
  background-position: 0 0;
  background-size: 20px 20px;
}
.bl-bnr .el-main-ttl{
	font-size: 26px;
	letter-spacing: 1.56px;
	color: #00172C;
}
.bl-bnr .el-main-ttl:nth-of-type(2){
	margin-top: 40px;
}
.bl-bnr-wrapper{
	width: 672px;
	margin: 0 auto;
}
@media screen and (width <= 750px) {
  .bl-bnr{
    padding: 80px 0;
  }
  .bl-bnr .el-main-ttl{
    font-size: 28px;
    letter-spacing: 1.68px;
  }
  .bl-bnr .el-main-ttl .fs40{
	  font-size: 40px!important;
  }
  .bl-bnr-wrapper{
    width: 100%;
  }
}

/* =======================================================
price
======================================================= */
.bl-price{
	padding: 56px 0;
	background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121532/price-bg-scaled.jpg) top center / cover no-repeat;	
}
.bl-price .ly-cont-inner{
	display: flex;
	flex-direction: column;
}
.bl-price .el-main-ttl{
	margin-bottom: 70px;
}
.bl-price-list{
	display: flex;
	/* flex-wrap: wrap; */
	justify-content: center;
	gap: 40px;
	position: relative;
	z-index: 1;
}
.bl-price-list::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 428px;
	background: url(../img/lp/shoshi_dr202509/price-list-bg.svg) top center / contain no-repeat;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.bl-price-item{
	width: 296px;
	border: 1px solid #00172C;
}
.bl-price-img-wrapper figcaption{
	background: #00172C;
	color: #FFF500;
	height: 60px;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	line-height: 1.1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl-price .el-txt{
	font-weight: bold;
	margin-top: 40px;
	z-index: 2;
}
.bl-price .el-txt + .el-price-txt{
	margin-top: 42px;
}
.el-price-txt{
	font-size: 23px;
	text-align: center;
	letter-spacing: 0.92px;
	z-index: 2;
}
.el-price-txt + .el-price-txt{
	font-size: 19px;
	font-weight: bold;
	letter-spacing: 0.76px;
}
@media screen and (width <= 1024px) {
	.bl-price-list{
		gap: 2%;
		padding-right: 24px;
		padding-left: 24px;
	}
	.bl-price-list::before{
		width: 100%;
		height: 428px;
		background: url(../img/lp/shoshi_dr202509/price-list-bg.svg) top center / cover no-repeat;
	}
	.bl-price-item{
		width: 32%;
	}
}
@media screen and (width <= 950px) {
	.bl-price-list::before{
		height: calc(428px - 10%);
	}
}
@media screen and (width <= 870px) {
	.bl-price-list::before{
		height: calc(428px - 16%);
		height: 380px;
	}
	.bl-price-img-wrapper figcaption .tb{
		display: block;
	}
}
@media screen and (width <= 750px) {
  .bl-price{
    padding: 64px 0;
    background: url(https://s3.ap-northeast-1.amazonaws.com/production.wp.s3.agaroot.jp/wp-content/uploads/2025/09/09121533/price-bg-sp.jpg) top center / cover no-repeat;	
  }
  .bl-price .el-main-ttl{
    margin-bottom: 96px;
  }
  .bl-price-list{
    gap: 16px;
  }
  .bl-price-list::before{
	width: 750px;
	height: 416px;
    background: url(../img/lp/shoshi_dr202509/price-list-bg-sp.svg) top center / contain no-repeat;
    top: -40px;
    left: -30px;
    transform: unset;
  }
  .bl-price-item{
    width: 220px;
    border: 2px solid #00172C;
  }
  .bl-price-img-wrapper figcaption{
    height: 74px;
    font-size: 22px;
    line-height: 1.4;
  }
  .bl-price .el-txt{
    margin-top: 48px;
  }
  .bl-price .el-txt.fs24{
	  font-size: 30px;
  }
  .bl-price .el-txt + .el-price-txt{
    margin-top: 72px;
  }
  .el-price-txt{
    font-size: 28px;
  }
  .el-price-txt .fs54{
	  font-size: 42px;
  }
  .el-price-txt + .el-price-txt{
    font-size: 22px;
  }
}

/* =======================================================
btm-bnr
======================================================= */
.bl-btm-bnr{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -6px 10px rgba(0,0,0,.102);
}
.bl-btn-list{
	display: flex;
	align-items: center;
	justify-content: center;
}
.bl-btn-item{
	max-width: 512px;
	width: 50%;
}
.bl-btn-item .el-btn{
	width: 100%;
	height: 48px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	background: #10847D;
	display: flex;
	justify-content: center;
	position: relative;
}
.el-btn.talk{
	background: #DC2B18;
}
.el-btn.document::before{
	content: '';
	background: url(../img/lp/shoshi_dr202509/icon-document.svg) top center / contain no-repeat;
	width: 20px;
	height: 26px;
	margin-right: 16px;
}
.el-btn.talk::before{
	content: '';
	background: url(../img/lp/shoshi_dr202509/icon-talk.svg) top center / contain no-repeat;
	width: 30px;
	height: 24px;
	margin-top: 2px;
	margin-right: 16px;
}
/* ページトップボタン */
.bl-pagetop{
	width: 120px;
	height: 48px;
	background: #FFD6E0;
	position: absolute;
	right: -120px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.bl-pagetop span{
	width: 28px;
	height: 28px;
	display: block;
}
@media screen and (width <= 1264px) {
	.bl-btn-item{
		width: 45%;
	}
	/* ページトップボタン */
	.bl-pagetop{
		width: 8%;
		height: 48px;
		right: -3%;
	}
	.bl-pagetop span{
		width: 28px;
		height: 28px;
		display: block;
	}
}
@media screen and (width <= 1024px) {
	.bl-btn-item{
		width: 47%;
	}
	/* ページトップボタン */
	.bl-pagetop{
		width: 7%;
		height: 48px;
		right: 0;
	}
}
@media screen and (width <= 750px) {
	.bl-btm-bnr .ly-cont-inner{
		width: 100%;
	}
  .bl-btn-item{
	  width: 333px;
  }
  .bl-btn-item .el-btn{
    width: 100%;
    height: 90px;
    font-size: 28px;
	  letter-spacing: 1.68px;
  }
  .el-btn.document::before{
	width: 26px;
	height: 34px;
    margin-right: 8px;
  }
  .el-btn.talk::before{
	width: 40px;
	height: 32px;
    margin-right: 8px;
  }
  /* ページトップボタン */
  .bl-pagetop{
	width: 84px;
	height: 89px;
    position: unset;
  }
  .bl-pagetop span{
	width: 36px;
	height: 36px;
  }
}
