@charset "UTF-8";

html {
	font-size: 62.5%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

button {
	border: none;
	outline: none;
	background: transparent;
	cursor: pointer;
	font-family: 'Zen Maru Gothic', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

body {
	font-family: 'Zen Maru Gothic', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	position: relative;
	background-color: #fef3f9;
	text-size-adjust: 100%;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	font-size: 1.6rem;
	overflow-x: hidden;
}

::selection {
	background: #ebf5f5;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	box-shadow: 0 1px 6px rgb(223 230 236 / 50%);
	padding-top: 5px;
	background-color: #fff;
	position: relative;
	z-index: 2;
}

.header-left {
	width: 50%;
	max-width: 240px;
}

.header-left p {
	font-size: 14px;
	color: #ff78b0;
	margin: 5px 0 0;
}

.hr-text {
	font-size: 11px;
	color: #7c93a7;
	text-align: right;
}

@media screen and (max-width: 768px) {
	header {
		flex-wrap: wrap;
	}

	.header-left {
		width: 100%;
		max-width: 100%;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}

	.header-left img,
	.header-left p {
		width: 47%;
	}

	.header-left img {
		max-width: 240p;
	}
	.header-left p {
		font-size: 10px;
		text-align: right;
	}
	.header-right {
		width: 100%;
		margin: 5px 0 0;
	}
	.hr-text {
		text-align: center;
	}
	.hr-text2{
		display: flex;
		justify-content: center;
		align-items: flex-end;
		color: #ff78b0;
		font-size: 13px;
	}
	.hr-text2::before,
	.hr-text2::after {
		content: '';
		width: 3px;
		height: 16px;
		background-color: #ff78b0;
	}

	.hr-text2::before {
		margin-right: 1em;
		transform: rotate(-35deg);
	}

	.hr-text2::after {
		margin-left: 1em;
		transform: rotate(35deg);
	}
}

.mv {
	/* background-image: url(../img/240_F_159041322_7ebwFiZ7OYTHsHEfEx98DQk0SkEfwq2u.jpg); */
	background-color: #fef3f9;
	background-size: cover;
	background-position: center;
	height: 135px;
	display: none;
	position: relative;
	z-index: -1;
}

.mvimg {
	display: block;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.mvimg {
	height: 95%;
}

.progress {
	height: 50px;
	background-color: #dfe6ec;
	display: flex;
	/* gap: 10px; */
	align-items: center;
	justify-content: center;
	position: relative;
	/* z-index: -2; */
	z-index: 0;
}

.stepbox {
	background-color: #fff;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	text-align: center;
	line-height: 25px;
	font-size: 10px;
	color: #18a5ac;
	font-weight: bold;
	position: relative;
	bottom: 8px;
	margin-right: 10px;
}

.stepbox:not(:last-child)::after {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	left: 30px;
	height: 5px;
	width: 130px;
	background-color: #c7ced4;
	z-index: -1;
	display: none;
}

.stepbox-text {
	position: absolute;
	top: 22px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 10px;
	white-space: nowrap;
}

.triangle {
	width: 0;
	height: 0;
	border-left: 10px solid #c7ced4;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	position: relative;
	bottom: 8px;
	margin-right: 10px;
}

.progress .step {
	position: absolute;
	top: 5px;
	left: -40px;
}

/* コンテンツエリア */
.contents-area-wrap {
	padding: 10px;
}

.contents-area {
	background-color: #fff;
	border: 1px solid #ff78b0;
	border-radius: 17px;
	padding: 20px 20px;
	color: #323846;
	/* height: calc(100vh - 240px); */
	/* overflow-y: scroll; */
}

.q-title {
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}

.flex-area {
	display: flex;
	flex-wrap: wrap;
	/* gap: 6px; */
}

.check-panel {
	height: 60px;
	width: calc(50% - 5px);
	border: 1px solid #e0e7ec;
	border-radius: 11px;
	font-weight: bold;
	box-shadow: 3px 3px 0px #e0e7ec;
	text-align: center;
	line-height: 60px;
	position: relative;
	margin-bottom: 6px;
}

.check-panel.checked {
	background-color: #ebf5f6;
	border-color: #13a9a8;
}

.ECM_CheckboxInput {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	padding-left: 15px;
	height: 100%;
	text-align: left;
}

.ECM_CheckboxInput-Input {
	margin: 0;
	width: 0;
	opacity: 0;
}

.check-panel:hover {
	background: #ebf5f5 !important;
}

.ECM_CheckboxInput:hover>.ECM_CheckboxInput-DummyInput {
	transform: scale(1);
}

.ECM_CheckboxInput-Input:focus+.ECM_CheckboxInput-DummyInput {
	transform: scale(1);
}

.ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput {
	background-color: #18a5ac;
}

.ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 35%;
	height: 4px;
	border-radius: 2px;
	transform: translate(-6px, 5px) rotateZ(-135deg);
	transform-origin: 2px 2px;
	background: #FFFFFF;
}

.ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70%;
	height: 4px;
	border-radius: 2px;
	transform: translate(-6px, 5px) rotateZ(-45deg);
	transform-origin: 2px 2px;
	background: #FFFFFF;
}

.ECM_CheckboxInput-DummyInput {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 32px;
	height: 32px;
	border: solid 2px transparent;
	background: #e0e7ec;
	border-radius: 50%;
	transition: all .15s linear;
	flex-shrink: 0;
}

.ECM_CheckboxInput-LabelText {
	margin-left: 12px;
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.1;
}

.ECM_CheckboxInput-LabelText.lh {
	line-height: 1;
	padding-bottom: 10px;
	padding-top: 10px;
}

.fs12 {
	font-size: 12px;
}

.mt25 {
	margin-top: 25px;
}

/* フィックスボタン */

.fix-btn-wrap a {
	text-decoration: none;
	display: block;
}

.back-btn {
	line-height: 50px;
	background-color: rgb(42 73 111);
	color: #fff;
	width: 100px;
	text-align: center;
	border-radius: 30px;
}

.next-btn {
	line-height: 60px;
	background-color: #ff78b0;
	color: #fff;
	width: 180px;
	text-align: center;
	font-weight: bold;
	border-radius: 30px;
	transition: .2s;
}

/* フッター */
footer {
	font-size: 12px;
	background-color: #323846;
	color: #fff;
	padding: 10px 10px;
	/* margin-bottom: 70px; */
	position: relative;
}

.footer-left {
	text-align: center;
	margin-bottom: 10px;
}

.footer-left a {
	color: #fff;
}

.footer-right {
	text-align: center;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 10px 10px 70px;
	}
}


/* 入力フォーム系 */
.text-form[type="text"],
.text-form[type="tel"],
.text-form[type="email"] {
	height: 60px;
	width: calc(50% - 5px);
	padding: 0 16px;
	border-radius: 4px;
	border: none;
	box-shadow: 0 0 0 1px #e0e7ec;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	box-sizing: border-box;
	border-radius: 5px;
	font-size: 16px;
}

.selectWrap {
	position: relative;
}

.selectWrap::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 5px 0 5px;
	border-color: #c5d2dd transparent transparent transparent;
}

.selectWrap select {
	padding: 16px 28px 16px 15px;
	border-radius: 5px;
	border: none;
	background-color: #fff;
	box-shadow: 0 0 0 1px #e0e7ec;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	box-sizing: border-box;
	font-size: 16px;
}

.select-wap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.select-wap p {
	margin-left: 8px;
	margin-right: 12px;
}

.ECM_RadioInput {
	padding: 12px 8px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.ECM_RadioInput:hover {
	background: rgba(0, 0, 0, 0.05);
}

.ECM_RadioInput-Input {
	opacity: 0;
	width: 0;
	margin: 0;
}

.ECM_RadioInput-Input:focus+.ECM_RadioInput-DummyInput {
	border: solid 2px #333333;
	background: #EEEEEE;
}

.ECM_RadioInput-Input:checked+.ECM_RadioInput-DummyInput {
	border: solid 2px #18a5ac;
}

.ECM_RadioInput-Input:checked+.ECM_RadioInput-DummyInput::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #18a5ac;
}

.ECM_RadioInput-DummyInput {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	border: solid 2px #e0e7ec;
	flex-shrink: 0;
}

.ECM_RadioInput-LabelText {
	margin-left: 12px;
	display: block;
	font-size: 18px;
	font-weight: bold;
}

.jccenter {
	justify-content: center !important;
}

.jcsa {
	justify-content: space-around;
	margin-bottom: 10px;
}

.w100 {
	width: 100%;
}

.jcstart {
	justify-content: flex-start;
}

/* 登録完了画面 */
.comp-title {
	color: #ff78b0;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.thanks {
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
}

.comp-text {
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
}

.comp-ann {
	text-align: center;
	font-size: 10px;
	margin-top: 10px;
}

.line-btn {
	margin-top: 20px;
	text-align: center;
}

.line-btn img {
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}

.line-text {
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
	font-size: 12px;
}

.comp-end {
	text-align: center;
	margin-top: 30px;
	font-size: 14px;
	font-weight: bold;
	color: #ff78b0;
}

.gohp-btn {
	line-height: 60px;
	background-color: #ff78b0;
	color: #fff;
	width: 180px;
	text-align: center;
	font-weight: bold;
	border-radius: 30px;
	display: block;
	text-decoration: none;
	margin: 20px auto 0;
}

.cach-tx {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 15px auto 5px;
  padding: 7px 10px;
  color: #ffffff;
  /*
  display: flex;
  justify-content: center;
  align-items: flex-end;
   */
  line-height: 1.2;
  background-color: #ff78b0;
  border-radius: 5rem;
}
.cach-tx em {
  font-style: normal;
  font-size: 28px;
  /* padding: 0 5px; */
  margin: 0 5px;
  /* color: #ff61a9; */
  /* background: linear-gradient(0deg, #fde67c 20px, hsla(0, 0%, 100%, 0) 0); */
}

.cach-tx::before{
	content: '';
	width: 120px;
	height: 120px;
	position: absolute;
	top: 40px;
	left: 3px;
	background-image: url(/img/fukidasi1.svg);
	background-size: contain;
	z-index: 3;
	background-repeat: no-repeat;
	background-position: top;
	transform: translate(-20%, 0);
	filter: drop-shadow(3px 4px 0px #e0e7ec);
}
.cach-tx::after{
	content: '';
	width: 125px;
	height: 132px;
	position: absolute;
	top: 30px;
	right: 8px;
	background-image: url(/img/fukidasi2.svg);
	background-size: contain;
	z-index: 3;
	background-repeat: no-repeat;
	background-position: top;
	transform: translate(20%, 0);
	filter: drop-shadow(3px 4px 0px #e0e7ec);
}
/*
.cach-tx::before,
.cach-tx::after {
	content: '';
	width: 3px;
	height: 35px;
	background-color: #ff78b0;
}

.cach-tx::before {
	margin-right: 1em;
	transform: rotate(-35deg);
}

.cach-tx::after {
	margin-left: 1em;
	transform: rotate(35deg);
} */

@media screen and (max-width: 768px) {
	.cach-tx {
		display: none;
	}
}

/* ページ横スライド */
#page-wrapper {
	display: flex;
	overflow-x: hidden;
	z-index: 1;
	position: relative;
}

.pcimg-empty {
	width: 760px;
	height: 100vh;
	height: 100%;
	/* background-color: #fff; */
	margin: 0 auto;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.pcimgWrap {
	position: relative;
	width: 100%;
	height: 100%;
	bottom: 0;
}

.pcimg-left {
	width: 29vh;
	position: absolute;
	bottom: 0%;
	right: 101%;
	z-index: 0;
}

.pcimg-right {
	width: 29vh;
	position: absolute;
	bottom: 0;
	left: 101%;
	z-index: 0;
}


#page-wrapper .contents-area-wrap {
	width: 100%;
	flex: 0 0 auto;
}

.next-btn.pc,
.back-btn.pc {
	display: block;
	text-decoration: none;
	font-size: 16px;
}

.pc_btnwrap {
	margin-top: 40px;
}


/* 変化要素 */
.page1 .step1 {
	background-color: #18a5ac;
}

.page1 .step1 .stepnum {
	color: #fff;
}

.page2 .step2 {
	background-color: #18a5ac;
}

.page2 .step2 .stepnum {
	color: #fff;
}

.page3 .step3 {
	background-color: #18a5ac;
}

.page3 .step3 .stepnum {
	color: #fff;
}

.page4 .step4 {
	background-color: #18a5ac;
}

.page4 .step4 .stepnum {
	color: #fff;
}

.page5 .step5 {
	background-color: #18a5ac;
}

.page5 .step5 .stepnum {
	color: #fff;
}

.contents-area-wrap {
	overflow-y: hidden;
}

#page-wrapper {
	overflow: hidden;
}

.page6 .progress {
	display: none;
}

.page6 footer {
	margin-bottom: 0;
}

.page1 .mv {
	display: block;
}

.page1 #back-btn {
	display: none;
}

.pc_q-title {
	display: none;
}

.flex-area {
	justify-content: space-between;
}

.jcsa {
	justify-content: space-around;
}

.pcimg-empty {
	display: none;
}

.jccenter {
	justify-content: flex-start !important;
}

/* ブレイクポイント */
@media screen and (min-width: 768px) {
	body {
		background-color: #fff0f6;
	}

	#page-wrapper {
		/* background-color: #fff0f6; */
	}

	.hr-text {
		font-size: 13px;
	}

	.header-left {
		width: 240px;
		padding: 3px 0px;
	}

	.contents-area {
		max-width: 800px;
		margin: 0 auto;
		padding: 20px;
	}

	.contents-area-wrap {
		padding: 20px 10px;
	}

	.check-panel {
		width: calc(25% - 10px);
		height: 100px;
	}

	.flex-area {
		justify-content: center;
	}

	.flex-area.form {
		justify-content: flex-start;
		margin-left: 80px;
	}

	.ECM_CheckboxInput {
		flex-wrap: wrap;
	}

	.ECM_CheckboxInput-LabelText {
		width: 100%;
		margin: 0;
		text-align: center;
	}

	.ECM_CheckboxInput-DummyInput {
		margin: 10px auto 0;
	}

	.ECM_CheckboxInput {
		padding-left: 0;
	}

	.ECM_CheckboxInput-LabelText {
		line-height: 1.1;
		padding: 15px 0;
	}

	.ECM_CheckboxInput-LabelText.lh span {
		display: block;
		margin-top: 5px;
	}

	.spbr {
		display: none;
	}

	.fix-btn-wrap {
		display: none;
	}


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

	.progress {
		height: 70px;
		gap: 110px;
	}

	.triangle {
		display: none;
	}

	.step {
		font-size: 14px;
		left: -60px !important;
	}

	.stepbox {
		width: 35px;
		height: 35px;
		line-height: 35px;
	}

	.stepnum {
		font-size: 14px;
	}

	.stepbox-text {
		font-size: 14px;
		top: 28px;
	}

	.stepbox:not(:last-child)::after {
		display: block;
	}

	.mv {
		display: none !important;
	}

	.mvimg {
		height: 100%;
	}

	.q-title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.text-form[type="text"],
	.text-form[type="tel"],
	.text-form[type="email"] {
		width: 33%;
	}

	.flex-area {
		align-items: center;
	}

	.pc_none {
		display: none;
	}

	.pc_q-title {
		display: block;
		width: 125px;
		font-size: 20px;
		font-weight: bold;
	}

	.pc_mt20 {
		margin-top: 20px;
	}

	.select-wap p {
		margin-right: 0;
	}

	.select-wap p.ex {
		margin-right: 10px;
	}

	.select-form {
		width: 17%;
	}

	.jcsa {
		gap: 230px;
	}

	.form .w100 {
		width: 67%;
	}

	.mt50 {
		margin-top: 50px;
	}

	.comp-title {
		font-size: 30px;
	}

	.thanks {
		font-size: 20px;
	}

	.comp-text,
	.comp-end {
		font-size: 16px;
	}

	.comp-ann,
	.line-text {
		font-size: 14px;
	}

	.flex-area {
		justify-content: center;
		gap: 6px;
	}

	.pcimg-empty {
		display: block;
	}

	.selectWrap select {
		width: 7.2em;
	}

	.select-wap p {
		margin-left: 5px;
		margin-right: 1em;
	}

	.select-wap.jcst {
		justify-content: flex-start !important;
		margin-left: 80px;
	}

	.select-wap.jcst .pc_q-title {
		margin-right: 0 !important;
	}

	#page6 .formItem {
		padding-left: 40px !important;
	}

	.txcenter {
		text-align: center;
	}

	.contents-area {
		padding: 20px 50px;
	}
}

.main {
	min-height: calc(100vh - 120px);
	/* overflow: hidden; */
}

.next-btn:disabled {
	cursor: auto;
	background-color: rgb(224 231 236);
}

@media screen and (max-width: 1250px) {
	.spw100 {
		width: 100% !important;
	}

	.contents-area .sp_flex {
		display: flex;
		justify-content: space-between;
	}

	.contents-area .sp_flex>div {
		width: 48%;
	}

	input#zip,
	input#address1 {
		width: 100%;
	}

	.jccenter {
		justify-content: center !important;
	}

	.floating {
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 10;
	}

	.fix-btn-wrap {
		background-color: rgba(0, 0, 0, 0.226);
		padding: 5px;
		width: 100%;
		display: flex;
		justify-content: space-around;
		align-items: center;
	}
}

.btn-regist {
	display: block;
	/* line-height: 60px; */
	background-color: #ff78b0;
	/* color: #fff; */
	/* width: 180px; */
	/* text-align: center; */
	/* font-weight: bold; */
	/* border-radius: 30px; */
	/* transition: .2s; */
	/* margin: 0 10px; */
	animation: flash 1.5s linear infinite;
}

.onback {
	display: block;
	/* line-height: 60px; */
	background-color: rgb(42 73 111);
	color: #fff;
	width: 180px;
	text-align: center;
	border-radius: 30px;
	margin: 0 10px;
}

.flash:not([disabled]) {
	animation: flash 1.5s linear infinite;
}

@keyframes flash {

	0%,
	100% {
		background-color: #ff78b0;
		transform:scale(1.0);
	}

	20% {
		background-color: #ff9ec7;
		transform:scale(1.04);
	}
}

.s-tx {
	font-size: 14px;
	text-align: center;
}



#page6 .inputArea {
	margin-left: 20px;
}

#page6 h2 {
	margin-bottom: 20px;
	text-align: center;
}

#page6 .btnWrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	margin-top: 30px;
	padding: 10px;
	position: sticky;
	bottom: 0;
	left: 50%;
}

.mb30px {
	margin-bottom: 30px;
}

.mr10px {
	margin-right: 10px;
}

.ml10px {
	margin-left: 10px;
}

#page6 .formItem {
	display: flex;
	padding: 10px;
}

#page6 .formItem:nth-child(odd) {
	background-color: #fff7fb;
}

#page6 .Form-Item-tit span {
	display: block;
	width: 160px;
	font-weight: bold;
}

#page6 .btnWrap a {
	font-size: 14px;
	width: calc(50% - 20px);
	color: #fff;
	text-align: center;
	font-weight: bold;
	border-radius: 5rem;
	transition: .2s;
	margin: 0 10px;
	display: block;
	padding: 19px 10px;
	width: calc(50% - 20px);
}

@media screen and (min-width: 769px) {
	#page6 .contents-area {
		height: calc(100vh - 240px);
		overflow-y: scroll;
	}
}

@media screen and (max-width: 768px) {
	#page6 .formItem {
		flex-wrap: wrap;
		padding: 0px 0 10px;
		border-bottom: solid 1px #dfe6ec;
	}

	#page6 .formItem:nth-child(odd) {
		background-color: transparent;
	}

	#page6 .Form-Item-tit,
	#page6 .inputArea {
		width: 100%;
		margin: 0;
		/* padding: 5px; */
	}

	#page6 .Form-Item-tit span {
		width: 100%;
		background-color: #fff7fb;
		padding: 5px 10px;
	}

	#page6 .inputArea {
		padding: 5px 10px;
	}

	#page6 .btnWrap {
		width: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		margin-top: 30px;
		position: fixed;
		bottom: 0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.226);
		padding: 10px;
		z-index: 10;
	}
}

.footer-left a {
	text-decoration: underline;
}

.panel-sec.confirm {
	position: relative;
}

contents-area.comp {
	position: relative;
}

.three-link {
	display: flex;
	justify-content: center;
	margin-top: 0;
}

.three-link a {
	padding-right: 40px;
	padding-left: 40px;
	display: inline-block;
	position: relative;
	color: #fff;
	margin: 10px 0;
	padding-top: 0;
	padding-bottom: 0;
	text-decoration: underline;
	font-size: 12px;
	border: none !important;
}

.three-link a:hover {
	color: #ff78b0;
}

.three-link p {
	padding-right: 40px;
	padding-left: 40px;
	display: inline-block;
	position: relative;
	color: #fff;
	margin: 10px 0;
}

@media screen and (max-width: 768px) {
	.three-link {
		flex-wrap: wrap;
	}

	.three-link a {
		width: 100%;
	}
}


#page7 {
	position: relative;
}
/* =========================================================
   応援看護師 リニューアル 追加スタイル
   ========================================================= */

/* --- ヒーロー（ファーストビュー） --- */
.ouen-hero {
	position: relative;
	background:
		radial-gradient(circle at 15% 20%, rgba(255,120,176,0.12), transparent 40%),
		radial-gradient(circle at 85% 15%, rgba(24,165,172,0.12), transparent 40%),
		linear-gradient(180deg, #fff6fb 0%, #fef3f9 100%);
	padding: 22px 14px 18px;
	overflow: hidden;
}

.ouen-hero-inner {
	max-width: 820px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.ouen-badge-period {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #18a5ac;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 6px 18px;
	border-radius: 5rem;
	box-shadow: 3px 3px 0 #c9e7e8;
	margin-bottom: 14px;
}
.ouen-badge-period::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ffe45e;
	box-shadow: 0 0 0 3px rgba(255,228,94,0.4);
}

.ouen-hero-title {
	text-align: center;
	font-weight: 700;
	color: #323846;
	font-size: 26px;
	line-height: 1.35;
	margin-bottom: 6px;
}
.ouen-hero-title .pink {
	color: #ff5fa2;
}
.ouen-hero-title .big {
	font-size: 40px;
	color: #ff3d93;
	display: inline-block;
	line-height: 1;
	margin: 0 2px;
}
.ouen-hero-title .marker {
	background: linear-gradient(transparent 60%, #ffe45e 60%);
	padding: 0 2px;
}

.ouen-hero-sub {
	text-align: center;
	font-size: 14px;
	color: #5b6472;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.6;
}

/* 売り（ポイント）バッジ群 */
.ouen-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 0 auto;
}
.ouen-point {
	background: #fff;
	border: 2px solid #ffd1e4;
	border-radius: 14px;
	box-shadow: 3px 3px 0 #ffe3ef;
	padding: 12px 12px 12px 12px;
	width: calc(50% - 5px);
	display: flex;
	align-items: center;
	gap: 10px;
	box-sizing: border-box;
}
.ouen-point-ic {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff8cbb, #ff5fa2);
	color: #fff;
	font-weight: 700;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.1;
}
.ouen-point.teal .ouen-point-ic {
	background: linear-gradient(135deg, #3fc5c9, #18a5ac);
}
.ouen-point-tx {
	font-size: 13px;
	font-weight: 700;
	color: #323846;
	line-height: 1.35;
}
.ouen-point-tx b {
	color: #ff3d93;
	font-size: 15px;
}
.ouen-point.teal .ouen-point-tx b {
	color: #11898f;
}

/* --- 「選ばれる理由」訴求セクション --- */
.ouen-reason {
	max-width: 820px;
	margin: 6px auto 0;
	padding: 18px 14px 6px;
}
.ouen-reason-head {
	text-align: center;
	margin-bottom: 16px;
}
.ouen-reason-head .lead {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: #18a5ac;
	border: 1px solid #18a5ac;
	border-radius: 5rem;
	padding: 3px 16px;
	margin-bottom: 10px;
}
.ouen-reason-head h2 {
	font-size: 21px;
	font-weight: 700;
	color: #323846;
	line-height: 1.4;
}
.ouen-reason-head h2 .pink { color: #ff3d93; }

.ouen-reason-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ouen-reason-card {
	background: #fff;
	border: 1px solid #ffd1e4;
	border-radius: 16px;
	padding: 16px 16px 16px 64px;
	position: relative;
	box-shadow: 0 4px 14px rgba(255,120,176,0.10);
}
.ouen-reason-card .num {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #ff78b0;
	color: #fff;
	font-weight: 700;
	font-size: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ouen-reason-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: #323846;
	margin-bottom: 6px;
	line-height: 1.4;
}
.ouen-reason-card h3 .hl {
	background: linear-gradient(transparent 60%, #ffe45e 60%);
}
.ouen-reason-card p {
	font-size: 13px;
	color: #5b6472;
	line-height: 1.7;
}
.ouen-reason-card p .strong {
	color: #ff3d93;
	font-weight: 700;
}

/* 求人例タグ */
.ouen-jobtags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}
.ouen-jobtags span {
	font-size: 12px;
	font-weight: 700;
	color: #11898f;
	background: #e7f6f6;
	border: 1px solid #b8e4e4;
	border-radius: 5rem;
	padding: 4px 12px;
}

/* CTA誘導（フォームへ） */
.ouen-cta-lead {
	text-align: center;
	font-size: 17px;
	font-weight: 700;
	color: #323846;
	margin: 22px auto 2px;
	line-height: 1.5;
}
.ouen-cta-lead .pink { color: #ff3d93; }
.ouen-cta-arrow {
	text-align: center;
	color: #ff78b0;
	font-size: 26px;
	line-height: 1;
	margin-bottom: 4px;
}

/* PC調整 */
@media screen and (min-width: 768px) {
	.ouen-hero { padding: 30px 20px 22px; }
	.ouen-hero-title { font-size: 32px; }
	.ouen-hero-title .big { font-size: 52px; }
	.ouen-hero-sub { font-size: 16px; }
	.ouen-point { width: calc(25% - 8px); flex-direction: column; text-align: center; gap: 8px; padding: 16px 10px; }
	.ouen-point-ic { width: 50px; height: 50px; font-size: 12px; }
	.ouen-point-tx { font-size: 13px; }
	.ouen-reason-head h2 { font-size: 26px; }
	.ouen-reason-card { padding: 20px 22px 20px 76px; }
	.ouen-reason-card .num { width: 44px; height: 44px; font-size: 20px; top: 18px; left: 18px; }
	.ouen-reason-card h3 { font-size: 19px; }
	.ouen-reason-card p { font-size: 14px; }
	.ouen-cta-lead { font-size: 22px; }
}

/* 確認画面・完了画面では訴求パートを隠してフォームに集中 */
.page6 .ouen-hero, .page6 .ouen-reason, .page6 .mv, .page6 .cach-tx, .page6 .pcimg-empty, .page6 .progress,
.page7 .ouen-hero, .page7 .ouen-reason, .page7 .mv, .page7 .cach-tx, .page7 .pcimg-empty, .page7 .progress {
	display: none !important;
}

/* =========================================================
   縦コンパクト化（訴求パートを詰める）
   ========================================================= */
.ouen-hero { padding: 14px 14px 12px; }
.ouen-badge-period { margin-bottom: 10px; font-size: 14px; padding: 5px 16px; }
.ouen-hero-title { font-size: 23px; line-height: 1.3; margin-bottom: 5px; }
.ouen-hero-title .big { font-size: 34px; }
.ouen-hero-sub { font-size: 13px; margin-bottom: 12px; line-height: 1.5; }
.ouen-points { gap: 8px; }
.ouen-point { padding: 9px 10px; border-radius: 12px; }
.ouen-point-ic { width: 38px; height: 38px; font-size: 10px; }
.ouen-point-tx { font-size: 12px; line-height: 1.3; }

.ouen-reason { padding: 12px 14px 2px; }
.ouen-reason-head { margin-bottom: 10px; }
.ouen-reason-head .lead { margin-bottom: 0; font-size: 12px; padding: 3px 14px; }
.ouen-reason-list { gap: 8px; }
.ouen-reason-card { padding: 10px 12px 10px 50px; border-radius: 13px; box-shadow: 0 2px 8px rgba(255,120,176,0.10); }
.ouen-reason-card .num { width: 30px; height: 30px; font-size: 15px; top: 50%; transform: translateY(-50%); left: 11px; }
.ouen-reason-card h3 { font-size: 14.5px; margin-bottom: 3px; line-height: 1.35; }
.ouen-reason-card p { font-size: 12px; line-height: 1.5; }
.ouen-cta-lead { font-size: 16px; margin: 14px auto 0; }
.ouen-cta-arrow { font-size: 22px; margin-bottom: 2px; }

@media screen and (min-width: 768px) {
	.ouen-hero { padding: 20px 20px 16px; }
	.ouen-hero-title { font-size: 30px; }
	.ouen-hero-title .big { font-size: 46px; }
	.ouen-hero-sub { font-size: 15px; margin-bottom: 14px; }
	.ouen-point { flex-direction: row; text-align: left; padding: 10px 12px; }
	.ouen-point-ic { width: 42px; height: 42px; }
	.ouen-reason-card { padding: 12px 16px 12px 60px; }
	.ouen-reason-card .num { width: 36px; height: 36px; font-size: 18px; left: 14px; }
	.ouen-reason-card h3 { font-size: 17px; }
	.ouen-reason-card p { font-size: 13px; }
	.ouen-cta-lead { font-size: 20px; }
}

/* =========================================================
   ファーストビューにフォームを収める（スクロール最小化）
   ========================================================= */
/* モバイルでは大きな看護師イラストを非表示にして高さを節約 */
@media screen and (max-width: 768px) {
	.page1 .mv { display: none !important; }
}

/* ヒーローをさらにスリムに */
.ouen-hero { padding: 10px 12px 10px; }
.ouen-badge-period { margin-bottom: 7px; font-size: 12.5px; padding: 4px 14px; box-shadow: 2px 2px 0 #c9e7e8; }
.ouen-hero-title { font-size: 20px; line-height: 1.28; margin-bottom: 8px; }
.ouen-hero-title .big { font-size: 27px; }

/* 4つの売りを1行・コンパクトに（SP） */
.ouen-points { gap: 5px; flex-wrap: nowrap; }
.ouen-point {
	width: calc(25% - 4px);
	flex-direction: column;
	text-align: center;
	gap: 3px;
	padding: 7px 3px;
	border-radius: 10px;
	box-shadow: 2px 2px 0 #ffe3ef;
}
.ouen-point-ic { width: 30px; height: 30px; font-size: 9px; }
.ouen-point-tx { font-size: 10px; line-height: 1.25; }
.ouen-point-tx b { font-size: 11px; display: block; }

/* 理由セクション（フォーム下）：上に少し余白 */
.ouen-reason { padding: 16px 14px 4px; }

@media screen and (min-width: 768px) {
	.ouen-hero { padding: 16px 20px 14px; }
	.ouen-hero-title { font-size: 28px; }
	.ouen-hero-title .big { font-size: 42px; }
	.ouen-points { gap: 8px; }
	.ouen-point { width: calc(25% - 8px); padding: 10px 8px; gap: 6px; }
	.ouen-point-ic { width: 40px; height: 40px; font-size: 11px; }
	.ouen-point-tx { font-size: 12px; }
	.ouen-point-tx b { font-size: 13px; display: inline; }
}

/* =========================================================
   バカンス（飛行機・ビーチ）シーン＋看護師
   ========================================================= */
.ouen-hero-scene {
	position: relative;
	width: 100%;
	max-width: 820px;
	margin: 0 auto 10px;
	height: 150px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: inset 0 -2px 8px rgba(0,0,0,0.04);
}
.ouen-hero-scene .scene-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* 看護師（base.cssの img{width:100%} を上書き） */
.ouen-hero-scene .hero-nurse {
	position: absolute;
	right: 16px;
	bottom: 0;
	width: auto;
	height: 132px;
	z-index: 2;
	filter: drop-shadow(0 3px 4px rgba(0,0,0,0.12));
}
/* キャッチコピー（バカンス訴求） */
.scene-catch {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 3;
	background: rgba(255,255,255,0.92);
	color: #ff3d93;
	font-weight: 700;
	font-size: 13px;
	line-height: 1.3;
	padding: 6px 12px;
	border-radius: 5rem;
	box-shadow: 2px 2px 0 rgba(255,120,176,0.25);
	max-width: 62%;
}
.scene-catch b { color: #18a5ac; }

@media screen and (min-width: 768px) {
	.ouen-hero-scene { height: 210px; border-radius: 20px; margin-bottom: 14px; }
	.ouen-hero-scene .hero-nurse { height: 186px; right: 40px; }
	.scene-catch { font-size: 17px; left: 28px; bottom: 20px; padding: 9px 18px; }
}

/* キャッチの折返し制御（自由なバカンスを途中で割らない） */
.scene-catch { max-width: none; white-space: nowrap; }

/* =========================================================
   「次へ進む」ボタンを常にはっきり見せる
   ========================================================= */
/* モバイル固定バー：暗い半透明 → 白＋上シャドウ */
@media screen and (max-width: 1250px) {
	.fix-btn-wrap {
		background-color: #ffffff !important;
		box-shadow: 0 -3px 12px rgba(0,0,0,0.10);
		padding: 9px 12px;
		gap: 10px;
	}
	/* 次へボタン：大きく・目立たせる */
	.next-btn {
		line-height: 54px;
		height: 54px;
		width: 100%;
		max-width: 320px;
		font-size: 18px;
		box-shadow: 0 4px 0 #e25b95;
	}
	.back-btn {
		line-height: 54px;
		height: 54px;
		width: 96px;
		font-size: 15px;
		flex-shrink: 0;
	}
}
/* 無効時：消えたように見せず「選択待ち」のボタンとして見せる */
.next-btn:disabled {
	background-color: #f6bcd6 !important;
	color: #ffffff !important;
	box-shadow: 0 4px 0 #e7a6c5 !important;
	cursor: not-allowed;
}
/* 選択できることを示す補助ラベル（無効時のみ表示）
   ※モバイル/タブレット(≤1250)では .floating により position:fixed が効くので
     positioning context として利用できる。relative は付けない（fixed を打ち消すため）。
     大画面(>1250)のみ in-flow なので relative を付与してラベルを固定ボタン基準に。 */
@media screen and (min-width: 1251px) {
	.pc_btnwrap { position: relative; }
}
.fix-btn-wrap::before {
	content: "▲ 上から選択してください";
	display: none;
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 12px;
	font-weight: 700;
	color: #ff5fa2;
	background: #fff;
	padding: 2px 12px;
	border-radius: 5rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
/* 各ステップで「次へ」が無効のときだけ補助ラベルを出す */
.page1 #page1 .fix-btn-wrap:has(.next-btn:disabled)::before,
.page2 #page2 .fix-btn-wrap:has(.next-btn:disabled)::before,
.page3 #page3 .fix-btn-wrap:has(.next-btn:disabled)::before,
.page4 #page4 .fix-btn-wrap:has(.next-btn:disabled)::before,
.page5 #page5 .fix-btn-wrap:has(.next-btn:disabled)::before {
	display: block;
}

/* =========================================================
   看護師を大きく・バランス調整
   ========================================================= */
.ouen-hero-scene { height: 168px; }
.ouen-hero-scene .hero-nurse {
	height: 168px;
	right: 10px;
	bottom: -2px;
}
.scene-catch { bottom: 14px; font-size: 13.5px; }

@media screen and (min-width: 768px) {
	.ouen-hero-scene { height: 230px; }
	.ouen-hero-scene .hero-nurse { height: 232px; right: 48px; }
	.scene-catch { bottom: 22px; font-size: 18px; }
}

/* =========================================================
   看護師をさらに大きく（上部の吹き出しはトリミングして本体を拡大）
   ※img_left.svg は 244x672 の縦長。横長バナーでは細く見えるため
     高さをシーンより大きくして下揃え＝看護師本体を大きく見せる。
   ========================================================= */
.ouen-hero-scene { height: 176px; }
.ouen-hero-scene .hero-nurse {
	height: 248px;       /* シーン(176)より大きく＝吹き出し部分は上にはみ出てトリミング */
	right: 6px;
	bottom: -4px;
}
@media screen and (min-width: 768px) {
	.ouen-hero-scene { height: 250px; }
	.ouen-hero-scene .hero-nurse { height: 348px; right: 28px; bottom: -6px; }
	.scene-catch { bottom: 24px; font-size: 19px; }
}

/* =========================================================
   看護師の上部「完全無料」吹き出しが見切れる問題の修正
   → 吹き出しを中途半端に残さず、上端を約31%クリップして完全に隠す
     （頭頂は約33%なので頭は残る）。下揃え・はみ出し分は枠外へ。
   ========================================================= */
.ouen-hero-scene .hero-nurse {
	height: 264px;     /* シーン176に対し約31%上部クリップ */
	bottom: -4px;
	right: 6px;
}
@media screen and (min-width: 768px) {
	.ouen-hero-scene .hero-nurse {
		height: 372px;  /* シーン250に対し約31%上部クリップ */
		bottom: -6px;
		right: 28px;
	}
}

/* =========================================================
   メイン画像（ビーチシーン）にキャッチコピーを重ねるレイアウト
   ========================================================= */
.ouen-hero-scene { height: 200px; }

/* テキストブロック：左寄せ・縦中央。右の看護師に向けて白がフェード */
.scene-text {
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 66%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 12px 0 16px;
	box-sizing: border-box;
	background: linear-gradient(90deg,
		rgba(255,255,255,0.86) 0%,
		rgba(255,255,255,0.78) 55%,
		rgba(255,255,255,0) 100%);
}
.scene-text .ouen-badge-period {
	align-self: flex-start;
	margin-bottom: 8px;
	font-size: 11.5px;
	padding: 4px 13px;
}
.scene-text .ouen-hero-title {
	text-align: left;
	font-size: 18px;
	line-height: 1.32;
	margin: 0;
	text-shadow: 0 1px 3px rgba(255,255,255,0.95), 0 0 6px rgba(255,255,255,0.8);
}
.scene-text .ouen-hero-title .big { font-size: 25px; }
.scene-text .ouen-hero-title .nowrap { white-space: nowrap; }
.scene-catch-sub {
	display: block;
	margin-top: 9px;
	font-size: 11.5px;
	font-weight: 700;
	color: #ff3d93;
	text-shadow: 0 1px 2px rgba(255,255,255,0.95);
}

/* 看護師：新しいシーン高さに合わせて再クリップ（吹き出しは隠す） */
.ouen-hero-scene .hero-nurse { height: 290px; bottom: -4px; right: 4px; }

/* ヒーロー下の余白を少し詰める（チップへ繋げる） */
.ouen-hero-inner { padding-top: 2px; }

@media screen and (min-width: 768px) {
	.ouen-hero-scene { height: 290px; }
	.scene-text { width: 60%; padding-left: 36px; }
	.scene-text .ouen-badge-period { font-size: 14px; padding: 5px 16px; margin-bottom: 12px; }
	.scene-text .ouen-hero-title { font-size: 30px; line-height: 1.34; }
	.scene-text .ouen-hero-title .big { font-size: 42px; }
	.scene-catch-sub { font-size: 15px; margin-top: 14px; }
	.ouen-hero-scene .hero-nurse { height: 430px; bottom: -6px; right: 30px; }
}

/* 看護師の吹き出しを確実に隠す再クリップ（シーン200/290に対し約33%） */
.ouen-hero-scene .hero-nurse { height: 304px; }
@media screen and (min-width: 768px) {
	.ouen-hero-scene .hero-nurse { height: 442px; }
}
/* バカンスの一文：1行で表示（はみ出し分はフェードに重なってOK） */
.scene-catch-sub { white-space: nowrap; }

/* =========================================================
   「完全無料」バッジを確実に除去（キャンバス測定に基づく）
   バッジ:6〜38% / 透明な隙間:39〜42% / 看護師:43%〜
   → 上から約41%クリップ（隙間の位置）でバッジのみ完全カット・看護師は全身残る
   ========================================================= */
.ouen-hero-scene .hero-nurse { height: 346px; bottom: -4px; }
@media screen and (min-width: 768px) {
	.ouen-hero-scene .hero-nurse { height: 502px; bottom: -6px; }
}

/* ヘッダーのタグラインを1行で固定（末尾文字だけの改行を防ぐ） */
.header-left p { white-space: nowrap; }
@media screen and (max-width: 768px) {
	.header-left p { font-size: 11px; }
}

/* =========================================================
   メインビジュアルを1枚画像に差し替え
   ========================================================= */
.ouen-hero { padding: 0; background: none; }
.mainvisual {
	display: block;
	width: 100%;
	max-width: 1100px;
	height: auto;
	margin: 0 auto;
}
/* スクリーンリーダー用見出し（SEO） */
.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* =========================================================
   メインビジュアル：PC=全体／スマホ=上部のみ＋売りはHTML再現
   ========================================================= */
.mv-frame { max-width: 1100px; margin: 0 auto; }
.mainvisual { width: 100%; height: auto; display: block; }
.sp-points { display: none; }   /* PCでは非表示（画像内に売りがあるため） */

@media screen and (max-width: 768px) {
	/* 画像は上から約63%だけ表示（5つの売りボックスの直前で切る） */
	.mv-frame {
		overflow: hidden;
		height: 30.5vw;            /* 画像高さ48.3vw × 0.63 */
	}
	.mainvisual { width: 100%; }

	/* スマホ専用：売りカードを読みやすく */
	.sp-points {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		padding: 12px 12px 4px;
		background: linear-gradient(180deg, #fff6fb 0%, #fef3f9 100%);
	}
	.sp-card {
		display: flex;
		align-items: center;
		gap: 9px;
		background: #fff;
		border: 1.5px solid #ffd1e4;
		border-radius: 12px;
		box-shadow: 2px 2px 0 #ffe3ef;
		padding: 9px 10px;
	}
	.sp-card.teal { border-color: #b8e4e4; box-shadow: 2px 2px 0 #d8f0f0; }
	.sp-ic {
		flex-shrink: 0;
		width: 40px; height: 40px;
		border-radius: 50%;
		background: linear-gradient(135deg, #ff8cbb, #ff5fa2);
		color: #fff;
		font-weight: 700;
		font-size: 13px;
		display: flex; align-items: center; justify-content: center;
		text-align: center; line-height: 1.05;
	}
	.sp-card.teal .sp-ic { background: linear-gradient(135deg, #3fc5c9, #18a5ac); }
	.sp-card p {
		font-size: 12px;
		font-weight: 700;
		color: #323846;
		line-height: 1.32;
	}
	.sp-card p b { color: #ff3d93; font-size: 13.5px; }
	.sp-card.teal p b { color: #11898f; }
	.sp-lead {
		grid-column: 1 / -1;
		text-align: center;
		font-size: 12.5px;
		font-weight: 700;
		color: #323846;
		line-height: 1.45;
		margin-top: 2px;
	}
	.sp-lead b { color: #ff3d93; }
}

/* スマホでもメインビジュアルを全体表示に戻す（売りは画像内に内包） */
@media screen and (max-width: 768px) {
	.mv-frame { height: auto; overflow: visible; }
	.sp-points { display: none !important; }
}

/* =========================================================
   「STEP」ラベルの見切れ修正＋狭幅の文字折返し調整
   ========================================================= */
/* STEPを進捗バー先頭の通常要素として配置（左端見切れを解消） */
.progress .step-label {
	font-weight: bold;
	color: #18a5ac;
	font-size: 11px;
	line-height: 1;
	position: relative;
	bottom: 8px;            /* 円(stepbox)の浮き位置に合わせる */
	margin-right: 8px;
	white-space: nowrap;
}
/* 旧・絶対配置のSTEPは念のため無効化 */
.progress .step { display: none !important; }

@media screen and (min-width: 768px) {
	.progress .step-label { font-size: 14px; bottom: 10px; margin-right: 14px; }
}

/* --- 320px前後：設問ボタンの文字が2行折返しになるのを防ぐ --- */
@media screen and (max-width: 360px) {
	.ECM_CheckboxInput { padding-left: 8px; }
	.ECM_CheckboxInput-DummyInput { width: 26px; height: 26px; }
	.ECM_CheckboxInput-LabelText { font-size: 15px; margin-left: 8px; }
	.ECM_CheckboxInput-LabelText.lh .fs12 { font-size: 11px; }
	.check-panel { height: 56px; line-height: 56px; }
	/* 進捗バーのステップ名も詰める */
	.stepbox-text { font-size: 9px; }
	.progress .step-label { font-size: 10px; margin-right: 5px; }
}

/* 狭幅：STEPラベル追加で進捗バーが右にはみ出すため間隔を詰める */
@media screen and (max-width: 360px) {
	.progress .stepbox { margin-right: 6px; }
	.progress .triangle { margin-right: 6px; border-left-width: 8px; }
	.progress .step-label { margin-right: 4px; }
}

/* =========================================================
   無効「次へ」ボタンの視認性UP＋ステップ別ガイド
   （薄ピンクだと背景に同化し「ボタンが無い」ように見えるため）
   ========================================================= */
.next-btn:disabled {
	background-color: #c2ccd6 !important;   /* はっきり分かる無効グレー */
	color: #ffffff !important;
	box-shadow: 0 4px 0 #a7b2bf !important;
	cursor: not-allowed;
}
/* ステップごとに何を選べばよいか明示（特にstep2は2項目必須） */
.page1 #page1 .fix-btn-wrap::before { content: "▲ 資格を選択してください"; }
.page2 #page2 .fix-btn-wrap::before { content: "▲ 2項目とも選択してください"; }
.page3 #page3 .fix-btn-wrap::before { content: "▲ お名前を入力してください"; }
.page4 #page4 .fix-btn-wrap::before { content: "▲ 都道府県まで入力してください"; }
.page5 #page5 .fix-btn-wrap::before { content: "▲ 電話番号を入力してください"; }

/* 「ご希望の働き方」を4択(2×2)化したため、長い「こだわらない」が折返さないよう詰める */
@media screen and (max-width: 768px) {
	.check-panel .ECM_CheckboxInput { padding-left: 8px; }
	.check-panel .ECM_CheckboxInput-LabelText { font-size: 16px; margin-left: 8px; }
}
@media screen and (max-width: 360px) {
	.check-panel .ECM_CheckboxInput { padding-left: 6px; }
	.check-panel .ECM_CheckboxInput-LabelText { font-size: 13.5px; margin-left: 6px; }
}

/* =========================================================
   「次へ進む」ボタンの表示制御をCSSに統一（幅変更でも確実に表示）
   ≤1250px：固定バーは“表示中ステップの分だけ”出す（重なり防止）
   >1250px：各カード内に配置（非表示ステップは横スライドで画面外）
   ========================================================= */
@media screen and (max-width: 1250px) {
	#page-wrapper .pc_btnwrap.fix-btn-wrap { display: none !important; }
	body.page1 #page1 .pc_btnwrap.fix-btn-wrap,
	body.page2 #page2 .pc_btnwrap.fix-btn-wrap,
	body.page3 #page3 .pc_btnwrap.fix-btn-wrap,
	body.page4 #page4 .pc_btnwrap.fix-btn-wrap,
	body.page5 #page5 .pc_btnwrap.fix-btn-wrap { display: flex !important; }
}
/* >1250px：インラインstyleの残骸があっても確実に表示 */
@media screen and (min-width: 1251px) {
	#page-wrapper .pc_btnwrap { display: flex !important; }
}
