/* **********************
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 {
	max-width: 750px;
	min-width: 750px;
	margin: 0 auto;
}
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: 28px;
	line-height: 1.5;
	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%;
}
/*=============================
共通レイアウト
==============================*/
/* 全体のWrapper */
.ly-all-wrapper {
	overflow: hidden;
	max-width: 2000px;
	margin: 0 auto;
}

/* inner */
.ly-head-inner,
.ly-foot-inner,
.ly-cont,
.ly-cont-inner {
	width: 690px;
	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;
}
/*=============================
共通パーツ
==============================*/
/* 各sectionメイン見出し */
.el-main-ttl {
	line-height: 1.5;
	text-align: center;
	margin-bottom: 56px;
	position: relative;
}
.el-main-ttl img{
	width: auto;
	height: 32px;
}
.el-main-ttl.line{
	padding-bottom: 24px;
}
.el-main-ttl.line::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100px;
	height: 4px;
	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: 26px;
	color: #fff;
	font-weight: bold;
	background: #10847D;
	box-shadow: 0px 3px 6px #00000029;
	border: 2px solid #FFFFFF;
	border-radius: 80px;
	max-width: 610px;
	width: 100%;
	height: 80px;
	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: 42px;
	height: 42px;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
}
/* ※ */
.el-att {
	display: flex;
	font-size: 22px;
	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;
}

/*=============================
ヘルプタグ
==============================*/
/* 明朝体 */
.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;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.hp-scroll-y::-webkit-scrollbar {
	display: none;
}

/* =======================================================
header
======================================================= */
.ly-header {
	padding: 16px 0;
}
.bl-header-logo {
	width: 198px;
	display: block;
	margin: 0 auto;
}
.bl-header-logo img{
	display: block;
}
/*=============================
footer
=============================*/
.ly-footer {
	background: #444;
}
.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: 0 5px;
	margin: 0 4px;
}
.hp-deco.red{
	background: #DC2B18;
}

.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: 32px;
    letter-spacing: 1.92px;
	line-height: 1.4;
}
.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: 34px;
	letter-spacing: 2.04px;
	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-size: 17px;
	font-weight: normal;
}
.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: 20px;
	margin-top: 4px;
}
.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/09121530/mv-bg-sp.jpg) bottom center / cover no-repeat;
    padding: 58px 0;
	display: flex;
	align-items: center;
}
.bl-mv .ly-cont-inner{
	width: min(100vw, 1100px);
	margin-inline: auto;
}
.bl-mv .bl-mv-ttl{
    width: 552px;
    margin: 0 auto;
}
.bl-mv-list{
	border: 3px solid #00172C;
	border-radius: 10px;
	display: grid;
    place-content: center;
    padding: 16px;
	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;
	font-weight: bold;
	color: #00172C;
	position: relative;
}
.bl-mv-list > li:not(:first-of-type){
	margin-top: 8px;
}
.bl-mv-list > li::before{
	content: '';
	position: absolute;
	background: url(../img/lp/shoshi_dr202509/icon-check.svg) top center / contain no-repeat;
    width: 30px;
    height: 30px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.bl-mv-att{
	padding: 24px 0;
}
.bl-mv-att .el-att{
	font-size: 17px;
}

/* =======================================================
worry
======================================================= */
.bl-worry{
	padding: 80px 0;
	background: #4A4F5A;
}
.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;
	position: relative;
}
.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: 16px;
    right: 16px;
}
.bl-worry-list > li{
	font-size: 28px;
	letter-spacing: 1.12px;
    padding-left: 36px;
    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: 20px;
	height: 28px;
	top: 54%;
	left: 0;
	transform: translateY(-50%);
}
.bl-worry .el-txt{
	color: #fff;
}
.bl-worry .el-txt.arrow{
	width: 228px;
	height: 86px;
	background: url(../img/lp/shoshi_dr202509/worry-arrow.svg) top center / contain no-repeat;
	font-weight: bold;
	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;
	position: relative;
	z-index: 2;
}
.bl-worry .el-txt:last-of-type .fs28::before{
	content: '';
	position: absolute;
	width: 500px;
	height: 22px;
	background: #FF3BCA;
	opacity: 0.6;
	bottom: 2px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

/* =======================================================
achievement
======================================================= */
.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;
}
.el-main-ttl{
	margin-bottom: 40px;
}
.bl-achievement-list > li{
	text-align: center;
	color: #fff;
	font-size: 37px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 1.48px;
    padding-right: 12px;
	padding-bottom: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 8px;
    height: 62px;
	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: 8px;
	font-weight: normal;
}
.bl-achievement .bl-att-list{
	margin-top: 120px;
	display: grid;
	place-content: center;
}
.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/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{
  box-shadow: 0px 3px 6px #00000029;
	border: 3px solid #E41C4B;
	border-radius: 10px;
	background: #fff;
	padding: 40px;
	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: 134px;
	height: 132px;
    top: -126px;
	left: -40px;
}
.bl-voice-head{
  display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
}
.bl-voice-img-wrapper{
    width: 204px;
	border: 2px solid #CCCCCC;
}
.bl-voice-head-right{
	width: 384px;
 }
.el-voice-ttl{
	font-size: 30px;
	color: #E41C4B;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 12px;
}
.el-voice-s-ttl{
	color: #E41C4B;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.8px;
	margin-bottom: 16px;
}
.el-voice-name{
	font-size: 30px;
}
.el-voice-s-ttl{
    font-size: 30px;
}
.el-voice-s-ttl:nth-of-type(2){
    margin-top: 40px;
}
.el-voice-txt:not(:first-of-type){
	margin-top: 1.2em;
}
/* =======================================================
info
======================================================= */
.bl-info{
    padding: 80px 0;
}
.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{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	justify-content: center;
	align-items: center;
	margin-top: 56px;
	gap: 40px;
}
.bl-info-item{
	background: #DEE7EF;
	box-shadow: 0px 3px 6px #00000029;
	border: 3px solid #00172C;
	border-radius: 10px;
	padding: 32px 0;
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	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;
}
.bl-info-wrapper > .el-txt{
  display: flex;
	justify-content: center;
	align-items: center;
}

/* =======================================================
cta
======================================================= */
.bl-cta{
    padding: 80px 0;
	background: #00172C;
}
.bl-cta .el-main-ttl img{
	width: 100%;
	height: auto;
}
.bl-cta-list{
	display: flex;
	flex-direction: column;
    gap: 56px;
}
.bl-cta-item{
    width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	padding: 40px;
	
}
.el-cta-ttl{
	display: inline-block;
	text-align: center;
    margin-bottom: 52px;
	position: relative;
	z-index: 1;
}
.el-cta-ttl::before{
	content: '';
	position: absolute;
	width: calc(100% + 32px);
	height: 22px;
	background: #FFF500;
	opacity: 0.6;
    bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.el-cta-ttl img{
	width: auto;
	height: 34px;
	display: block;
}
.bl-cta .bl-media{
	display: flex;
	align-items: center;
    gap: 16px;
}
.bl-cta .bl-media-img-wrapper{
    width: 290px;
}
.bl-cta .bl-media p{
	width: 340px;
	text-align: left;
	display: grid;
	place-content: center;
}

/* =======================================================
bnr
======================================================= */
.bl-bnr{
  padding: 80px 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: 28px;
    letter-spacing: 1.68px;
	color: #00172C;
}
.bl-bnr .el-main-ttl:nth-of-type(2){
	margin-top: 40px;
}
.bl-bnr .el-main-ttl .fs40{
  font-size: 40px;
}
.bl-bnr-wrapper{
    width: 100%;
	margin: 0 auto;
}

/* =======================================================
price
======================================================= */
.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 .ly-cont-inner{
	display: flex;
	flex-direction: column;
}
.bl-price .el-main-ttl{
    margin-bottom: 96px;
}
.bl-price-list{
	display: flex;
	justify-content: center;
	gap: 40px;
	padding-right: 24px;
	padding-left: 24px;
	position: relative;
	z-index: 1;
}
.bl-price-list::before{
	content: '';
	position: absolute;
	width: 750px;
	height: 416px;
	background: url(../img/lp/shoshi_dr202509/price-list-bg-sp.svg) top center / contain no-repeat;
	top: -40px;
	left: -30px;
	z-index: -1;
}
.bl-price-item{
	width: 220px;
    border: 2px solid #00172C;
}
.bl-price-img-wrapper figcaption{
	background: #00172C;
	color: #FFF500;
	height: 74px;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
    line-height: 1.4;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bl-price .el-txt{
	font-weight: bold;
	margin-top: 48px;
	z-index: 2;
}
.bl-price .el-txt + .el-price-txt{
	margin-top: 72px;
}
.bl-price .el-txt.fs24{
	font-size: 30px;
}
.el-price-txt{
	font-size: 28px;
	text-align: center;
	letter-spacing: 0.92px;
	z-index: 2;
}
.el-price-txt .fs54{
	font-size: 42px;
}
.el-price-txt + .el-price-txt{
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.76px;
}

/* =======================================================
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-btm-bnr .ly-cont-inner{
	width: 100%;
}
.bl-btn-list{
	display: flex;
	align-items: center;
	justify-content: center;
}
.bl-btn-item{
	width: 333px;
}
.bl-btn-item .el-btn{
	width: 100%;
	height: 90px;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 1.68px;
	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: 26px;
	height: 34px;
	margin-right: 8px;
}
.el-btn.talk::before{
	content: '';
	background: url(../img/lp/shoshi_dr202509/icon-talk.svg) top center / contain no-repeat;
	width: 40px;
	height: 32px;
	margin-top: 2px;
	margin-right: 8px;
}
/* ページトップボタン */
.bl-pagetop{
	width: 84px;
	height: 89px;
	background: #FFD6E0;
    position: unset;
	right: -120px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.bl-pagetop span{
	width: 36px;
	height: 36px;
	display: block;
}

