.md-rndBox {
	margin: 25px auto 0;
	border: 1px solid #b6cbbd;
	border-radius: 6px;
	overflow: hidden;
	box-sizing: border-box;
}
.md-rndBox:first-child {
	margin-top: 0;
}
.md-rndBox .boxTtl {
	padding: 20px 25px 20px;
	background: #c49de7;
	position: relative;
}
.md-rndBox .boxTtl .txt {
	font-size: 2.4rem;
	font-weight: bold;
}
.md-rndBox .boxTtl .label {
	position: absolute;
	top: 50%;
	right: 35px;
	border: 1px solid #7d2fc3;
	font-size: 1.4rem;
	color: #7d2fc3;
	background: #fff;
	padding: 5px 20px;
	border-radius: 30px;
	font-weight: bold;
	transform: translateY(-50%);
}
.md-rndBox .boxTtl .label-sumi {
	background: #c70000;
	border-color: #c70000;
	color: #fff;
	font-weight: bolder;
}
.md-rndBox .boxCts {
	padding: 35px 25px 30px;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-rndBox {
		margin: 8vw auto 0;
		border-radius: 0.8vw;
	}
	.md-rndBox:first-child {
		margin-top: 0;
	}
	.md-rndBox .boxTtl {
		padding: 4.53vw 5.33vw;
	}
	.md-rndBox .boxTtl .txt {
		font-size: 5.6vw;
	}
	.md-rndBox .boxTtl .label {
		right: 4.8vw;
		font-size: 3.47vw;
		padding: 1.33vw 4.67vw;
		border-radius: 4vw;
	}
	.md-rndBox .boxTtl .label-sumi {
	}
	.md-rndBox .boxCts {
		padding: 7.73vw 4.27vw;
	}
}


.md-dtlList {
	font-size: 1.6rem;
}
.md-dtlList dl {
	padding: 25px 0;
	border-bottom: 1px solid #e8e8e8;
	display: flex;
}
.md-dtlList dl:first-child {
	padding-top: 0;
}
.md-dtlList dl:last-child {
	padding-bottom: 0;
	border: none;
}
.md-dtlList dl dt {
	width: 160px;
	font-weight: bold;
}
.md-dtlList dl dd {
	flex: 1;
}
.md-dtlList dl dd .stTxt {
	font-weight: bold;
}
.md-dtlList dl dd .entryNote {
	font-size: 1.4rem;
	margin-top: 15px;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-dtlList {
		font-size: 4.27vw;
	}
	.md-dtlList dl {
		padding: 4.67vw 0;
	}
	.md-dtlList dl:first-child {
		padding-top: 0;
	}
	.md-dtlList dl:last-child {
		padding-bottom: 0;
	}
	.md-dtlList dl dt {
		width: 38vw;
		letter-spacing: -0.05em;
	}
	.md-dtlList dl dd {
		font-size: 4.27vw;
		font-feature-settings: "palt";
		margin-right: -4vw;
	}
	.md-dtlList dl dd .stTxt {
		font-size: 4.53333vw;
	}
	.md-dtlList dl dd .stTxt .minTxt {
		font-size: 4vw;
	}
	.md-dtlList dl dd .entryNote {
		font-size: 3vw;
		margin-top: 3vw;
		line-height: 1.5;
	}
}

.md-btn {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 460px;
	height: 54px;
	margin: 0 auto;
	text-decoration: none;
	transition: opacity 0.3s ease-out;
	background: #7d2fc3;
	color: #fff;
	border-radius: 70px;
	box-sizing: border-box;
	cursor: pointer;
}
button.md-btn:hover,
a.md-btn:hover {
	opacity: 0.7;
}
.md-btn .btnTxt {
	font-size: 2rem;
	font-weight: bold;
	position: relative;
}

.md-btn .icnQr {
	padding-left: 20px;
}
.md-btn .icnQr::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -24px;
	width: 26px;
	height: 26px;
	background: url(../images/icn_qr.svg) no-repeat center / contain;
}

.md-btn .icnBunpai {
	padding-left: 20px;
}
.md-btn .icnBunpai::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -21px;
	width: 22px;
	height: 24px;
	background: url(../images/icn_bunpai.svg) no-repeat center / contain;
}

.md-btn .icnCheck {
	padding-left: 20px;
}
.md-btn .icnCheck::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -21px;
	width: 26px;
	height: 26px;
	background: url(../images/icn_check.svg) no-repeat center / contain;
}

.md-btn-disabled {
	background: #d5ebdc;
}
.md-btn-bdr {
	background: #fff;
	border: 1px solid #7d2fc3;
	color: #7d2fc3;
}
.wrapBg .md-btn-bdr {
	border: 1px solid #adc7e5;
	color: #adc7e5;
}

.btnBackLine {
	margin-top: 40px;
}
.md-btn-back {
	width: 350px;
	max-width: 100%;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-btn {
		width: 100%;
		max-width: none;
		height: 15.47vw;
		border-radius: 16vw;
	}
	button.md-btn:hover,
	a.md-btn:hover {
	}
	.md-btn .btnTxt {
		font-size: 4.8vw;
	}

	.md-btn .icnQr {
		padding-left: 9.2vw;
	}
	.md-btn .icnQr::before {
		left: -0.07vw;
		width: 6.4vw;
		height: 6.4vw;
	}

	.md-btn .icnBunpai {
		padding-left: 9.2vw;
	}
	.md-btn .icnBunpai::before {
		left: 1.43vw;
		width: 4.93vw;
		height: 5.47vw;
	}

	.md-btn .icnCheck {
		padding-left: 9.2vw;
	}
	.md-btn .icnCheck::before {
		left: 1.43vw;
		width: 6.4vw;
		height: 6.4vw;
	}

	.md-btn-disabled {
	}
	.md-btn-bdr {
	}

	.btnBackLine {
		margin-top: 5.33vw;
		padding: 0 10.66vw;
	}
}






/*モーダル関連*/
html.is_jsModalShow,
html.is_jsModalShow body {
	height: 100%;
}
.modalOl {
	position: fixed;
	z-index: 1002;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: none;
}



.md-modal {
	height: 100%;
	width: 100%;
	display: table;
	position: relative;
	z-index: 1003;
	pointer-events: none;
	display: none;
}
.md-modal .modalInr {
	display: table-cell;
	padding: 10px;
	vertical-align: middle;
}
.md-modal .modalCtsWrap {
	width: 100%;
	max-width: 560px;
	background: #fff;
	margin: 0 auto;
	pointer-events: all;
	position: relative;
	border-radius: 18px;
	box-sizing: border-box;
	padding: 40px 40px 35px;
}
.md-modal .modalCtsWrap.wrapBg {
	background: #adc7e5;
}
.md-modal .js-modalClose {
	cursor: pointer;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-modal {
	}
	.md-modal .modalInr {
		padding: 3.2vw;
	}
	.md-modal .modalCtsWrap {
		max-width: none;
		border-radius: 1.33vw;
		padding: 6.67vw 5.33vw 10.67vw;
	}
	.md-modal .js-modalClose {
		cursor: pointer;
	}
	.md-modal .md-btn {
		width: 100%;
		height: 14.13vw;
	}
}




/*====================================
購入者様引換番号 / 同行者様分配用
====================================*/
.hikikaeBox {
	width: 560px;
}
.hikikaeBox .btnLine {
	margin-top: 58px;
}
.hikikaeBox .btnLine .md-btn {
	margin-top: 12px;
}
.hikikaeBox .cancelNote {
	margin-top: 10px;
	text-align: center;
	color: #666;
	font-weight: bold;
	font-size: 1.4rem;
}
.hikikaeBox .btnLine .md-qrShow {
	display: flex;
	justify-content: center;
	margin: 20px auto 0;
}
.hikikaeBox .btnLine .md-qrShow .btn {
	box-sizing: border-box;
	padding: 5px;
	color: #7d2fc3;
	font-size: 1.4rem;
	font-weight: bold;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.hikikaeBox {
		width: auto;
	}
	.hikikaeBox .btnLine {
		margin-top: 15.07vw;
	}
	.hikikaeBox .btnLine .md-btn {
		margin-top: 4vw;
	}
	.hikikaeBox .cancelNote {
		margin-top: 4.4vw;
		font-size: 4vw;
		padding-bottom: 4vw;
	}
	.hikikaeBox .btnLine .md-qrShow {
		margin: 3.73333vw;
	}
	.hikikaeBox .btnLine .md-qrShow .btn {
		padding: 0.66667vw;
		font-size: 4vw;
	}
}



.md-modal .modalData .dataLine {
	margin-top: 5px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
}
.md-modal .modalData .dataLine:first-child {
	margin-top: 0;
	font-size: 2rem;
	font-weight: bold;
}
.md-modal .modalData .time {
	margin-top: 2px;
	text-align: center;
	font-size: 2.0rem;
	line-height: 1.4;
//	color: red;
}
.md-modal .modalPreCol {
	margin-top: 36px;
	text-align: center;
	padding: 55px 0 44px;
	background: #f7f7f7;
}
.md-modal .modalPreCol .ttl {
	font-size: 2.1rem;
	font-weight: bold;
	position: relative;
	padding-top: 80px;
}
.md-modal .modalPreCol .ttl::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	left: 50%;
	width: 31px;
	height: 50px;
	background: url(../images/icn_pre.svg) no-repeat center / contain;
}
.md-modal .modalPreCol .txt {
	font-size: 1.6rem;
	line-height: 1.438;
	margin-top: 15px;
}
#modal-qr01.md-modal .modalPreCol {
	padding: 10px 0 10px;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-modal .modalData .dataLine {
		margin-top: 1.5vw;
		font-size: 4.53333vw;
	}
	.md-modal .modalData .dataLine:first-child {
		font-size: 4.8vw;
		margin-top: 0;
	}
	.md-modal .modalData .time {
		font-size: 6.0vw;
		margin-top: 0;
	}
	.md-modal .modalPreCol {
		margin-top: 6.66667vw;
		padding: 8.4vw 0 6.13vw;
	}
	.md-modal .modalPreCol .ttl {
		font-size: 4.8vw;
		padding-top: 20vw;
	}
	.md-modal .modalPreCol .ttl::before {
		width: 8.67vw;
		height: 14.13vw;
	}
	.md-modal .modalPreCol .txt {
		margin-top: 4.4vw;
		font-size: 4vw;
		line-height: 1.467;
	}
	#modal-qr01.md-modal .modalPreCol {
		padding: 0.53333vw 0 0.53333vw;
	}
}







.md-modal .modalNumLine {
	display: flex;
	margin-top: 20px;
	box-sizing: border-box;
	padding: 20px 0;
	font-size: 1.6rem;
}
.md-modal .modalNumLine + .modalNumLine {
	border-top: 1px solid #fff;
	margin-top: 0;
}
.md-modal .modalNumLine dt {
	width: 142px;
	box-sizing: border-box;
	font-weight: bold;
	padding-right: 25px;
}
.md-modal .modalNumLine dd {
	flex: 1 0 0%;
}
.md-modal .modalNumLine + .btnLine {
	margin-top: 45px;
}
.md-modal .btnLine + .btnLine {
	margin-top: 22px;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-modal .modalNumLine {
		font-size: 4.53vw;
		margin-top: 5.33333vw;
		padding: 5.6vw 0 4vw;
	}
	.md-modal .modalNumLine dt {
		/* width: 40.4vw; */
		width: 27.4vw;
		padding-right: 6.66667vw;
	}
	.md-modal .modalNumLine + .btnLine {
		margin-top: 12.67vw;
	}
	.md-modal .btnLine + .btnLine {
		margin-top: 4vw;
	}
}


.md-modal .imgQr {
	text-align: center;
}
.md-modal .imgQr img {
	width: 100%;
	max-width: 240px;
	height: auto;
}
.md-modal .imgQr + .modalNumLine {
	margin-top: 47px;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-modal .imgQr {
	}
	.md-modal .imgQr img {
		max-width: 59.2vw;
	}
	.md-modal .imgQr + .modalNumLine {
		margin-top: 7.6vw;
	}
}

.md-modal .modalTtl {
	text-align: center;
	padding: 22px 0;
	font-size: 2.4rem;
	font-weight: bold;
	background: #e2f1e7;
}
.md-modal .modalCtsInr {
	padding: 35px 25px 40px;
}
.md-modal .modalTxt {
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.458;
}
.md-modal .md-dtlList {
	margin: 53px 0 65px;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-modal .modalCtsWrap {
	}
	.md-modal .modalTtl {
		padding: 4.53vw 0;
		font-size: 5.6vw;
	}
	.md-modal .modalCtsInr {
		padding: 7.2vw 5.33vw 10.67vw;
	}
	.md-modal .modalTxt {
		font-size: 5.33vw;
		line-height: 1.4;
	}
	.md-modal .md-dtlList {
		margin: 10.27vw 0 16vw;
	}
	.md-modal .md-dtlList dl {
		display: block;
	}
	.md-modal .md-dtlList dl dt {
		width: auto;
	}
	.md-modal .md-dtlList dl dd {
		margin-top: 2.93vw;
	}
}


/*====================================
同行者情報を登録
====================================*/
.bunpaiBox {
	width: 633px;
}
.bunpaiBox .boxTtl {
	text-align: center;
}
.bunpaiBox .boxCts {
	padding: 50px 28px;
}
.bunpaiBox .formInput dl {
	display: flex;
	margin-top: 34px;
}
.bunpaiBox .formInput dl:first-child {
	margin-top: 0;
}
.bunpaiBox .formInput dl dt {
	font-weight: bold;
	font-size: 1.6rem;
	width: 187px;
	padding-top: 20px;
}
.bunpaiBox .formInput dl dd {
	flex: 1;
}
.bunpaiBox .formInput .staticNote {
	padding-left: 187px;
	font-size: 1.4rem;
	margin-top: 20px;
	margin-bottom: -14px;
	color: #c70713;
	line-height: 1.3;
}
.bunpaiBox .formInput .birthLine {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
}
.bunpaiBox .formInput .birthLine .yyyy {
	width: 106px;
}
.bunpaiBox .formInput .birthLine .mm,
.bunpaiBox .formInput .birthLine .dd {
	width: 83px;
}
.bunpaiBox .formInput .birthLine .unit {
	padding: 0 19px 0 10px;
	font-weight: bold;
}
.bunpaiBox .formInput .birthLine .unit:last-child {
	padding-right: 0;
}
.bunpaiBox .formInput .inputSelect {
	display: block;
	width: 100%;
	position: relative;
}
.bunpaiBox .formInput .inputSelect::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 13px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #7d2fc3;
	border-bottom: 2px solid #7d2fc3;
	transform: rotate(45deg);
}
.bunpaiBox .formInput .inputSelect select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #bbb;
	border-radius: 4px;
	height: 60px;
	line-height: 60px;
	font-size: 1.6rem;
	padding: 0 18px;
	outline: none;
	background: #fff;
}
.bunpaiBox .formInput .inputSelect select.js-error {
	border: 2px solid #c70713;
}
.bunpaiBox .formInput .inputText {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	border: 1px solid #bbb;
	border-radius: 4px;
	outline: none;
	font-size: 1.6rem;
	padding: 0 10px;
}
.bunpaiBox .formInput .inputText.js-error {
	border: 2px solid #c70713;
}
.bunpaiBox .formInput .js-errorPlace {
	margin-top: 10px;
	line-height: 1.714;
	color: #c70713;
	position: relative;
	padding-left: 24px;
	font-size: 1.4rem;
	display: none;
}
.bunpaiBox .formInput .js-error .js-errorPlace {
	display: block;
}
.bunpaiBox .formInput .js-errorPlace::before {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
	width: 14px;
	height: 14px;
	background: url(../images/icn_alert.svg) no-repeat center / contain;
}
.bunpaiBox .btnLine {
	margin-top: 22px;
}
.bunpaiBox .formInput + .btnLine {
	margin-top: 70px;
}
.bunpaiBox .md-btn {
	width: 520px;
}
.js-form-error button.md-btn {
	background: #e2f1e7;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.bunpaiBox {
		width: auto;
	}
	.bunpaiBox .boxTtl {
		text-align: center;
	}
	.bunpaiBox .boxCts {
		padding: 7.73vw 4.27vw 11.47vw;
	}
	.bunpaiBox .formInput dl {
		display: block;
		margin-top: 7.47vw;
	}
	.bunpaiBox .formInput dl:first-child {
		margin-top: 0;
	}
	.bunpaiBox .formInput dl dt {
		font-size: 4.53vw;
		width: auto;
		padding-top: 0;
	}
	.bunpaiBox .formInput dl dd {
		margin-top: 3.73vw;
	}
	.bunpaiBox .formInput .staticNote {
		padding-left: 0;
		font-size: 4vw;
		margin-top: 4vw;
		margin-bottom: -3vw;
	}
	.bunpaiBox .formInput .birthLine {
		font-size: 4.53vw;
	}
	.bunpaiBox .formInput .birthLine .yyyy {
		width: 23.6vw;
	}
	.bunpaiBox .formInput .birthLine .mm,
	.bunpaiBox .formInput .birthLine .dd {
		width: 15.6vw;
	}
	.bunpaiBox .formInput .birthLine .unit {
		padding: 0 2.67vw 0 3.73vw;
	}
	.bunpaiBox .formInput .birthLine .unit:last-child {
		padding-right: 0;
	}
	.bunpaiBox .formInput .inputSelect {
	}
	.bunpaiBox .formInput .inputSelect::after {
		margin-top: -1.27vw;
		right: 2vw;
		width: 1.5vw;
		height: 1.5vw;
	}
	.bunpaiBox .formInput .inputSelect select {
		border-radius: 0.93vw;
		height: 14.27vw;
		line-height: 14.27vw;
		font-size: 4.53vw;
		padding: 0 3.33vw;
	}
	.bunpaiBox .formInput .inputText {
		height: 14.27vw;
		border-radius: 0.93vw;
		font-size: 4.53vw;
		padding: 0 1.33vw;
	}
	.bunpaiBox .formInput .inputText.js-error {
	}
	.bunpaiBox .formInput .js-errorPlace {
		margin-top: 4vw;
		line-height: 1.7;
		padding-left: 5.33vw;
		font-size: 4vw;
	}
	.bunpaiBox .formInput .js-error .js-errorPlace {
	}
	.bunpaiBox .formInput .js-errorPlace::before {
		top: 1.5vw;
		width: 4vw;
		height: 4vw;
	}
	.bunpaiBox .btnLine {
		margin-top: 4vw;
	}
	.bunpaiBox .formInput + .btnLine {
		margin-top: 16vw;
	}
	.bunpaiBox .md-btn {
		width: 100%;
	}
	.js-form-error button.md-btn {
		background: #e2f1e7;
	}
}



/*====================================
同行者情報の確認
====================================*/
.confBox {
	width: 633px;
}
.confBox .boxTtl {
	text-align: center;
}
.confBox .boxCts {
	padding: 35px 28px 48px;
}
.confBox .boxLead {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.458;
	text-align: center;
}
.confBox .toDtlList {
	font-size: 2rem;
	margin-top: 53px;
}
.confBox .toDtlList dl dt {
	width: 190px;
	box-sizing: border-box;
	padding-left: 5px;
}
.confBox .ticketBox {
	margin-top: 52px;
	padding: 25px 30px 44px;
	background: #f7f7f7;
	border-radius: 4px;
}
.confBox .ticketBox .ticketTtl {
	position: relative;
	font-weight: bold;
	font-size: 2.2rem;
	padding-left: 33px;
	position: relative;
}
.confBox .ticketBox .ticketTtl::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 24px;
	height: 22px;
	background: url(../images/icn_ticket.svg) no-repeat center / contain;
}
.confBox .ticketBox .ticketDtlList {
	font-size: 1.6rem;
	margin-top: 30px;
}
.confBox .ticketBox .ticketDtlList dt {
	width: 135px;
}

.confBox .btnLine {
	margin-top: 13px;
}
.confBox .ticketBox + .btnLine {
	margin-top: 43px;
}
.confBox .btnLineCancel {
	margin-top: 42px;
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.confBox {
		width: auto;
	}
	.confBox .boxTtl {
	}
	.confBox .boxCts {
		padding: 7.2vw 5.33vw 9.87vw;
	}
	.confBox .boxLead {
		font-size: 5.33vw;
		line-height: 1.4;
	}
	.confBox .toDtlList {
		font-size: 4.8vw;
		margin-top: 10.27vw;
	}
	.confBox .toDtlList dl {
		display: block;
	}
	.confBox .toDtlList dl dt {
		width: auto;
		padding-left: 0;
	}
	.confBox .toDtlList dl dd {
		margin-top: 2.67vw;
	}
	.confBox .ticketBox {
		margin-top: 9.33vw;
		padding: 5.33vw 4vw 8.67vw;
		border-radius: 1.6vw;
	}
	.confBox .ticketBox .ticketTtl {
		font-size: 5.33vw;
		padding-left: 8vw;
	}
	.confBox .ticketBox .ticketTtl::before {
		width: 6.13vw;
		height: 5.33vw;
	}
	.confBox .ticketBox .ticketDtlList {
		font-size: 4.27vw;
		margin-top: 7.73vw;
	}
	.confBox .ticketBox .ticketDtlList dt {
		width: 23vw;
	}

	.confBox .btnLine {
		margin-top: 3.2vw;
	}
	.confBox .ticketBox + .btnLine {
		margin-top: 9.6vw;
	}
	.confBox .btnLineCancel {
		margin-top: 9.6vw;
	}
}

.md-btn .icnMail,
.md-btn .icnSms,
.md-btn .icnLine,
.md-btn .icnCopy {
	padding-left: 30px;
}
.md-btn .icnMail::before,
.md-btn .icnSms::before,
.md-btn .icnLine::before,
.md-btn .icnCopy::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: no-repeat center / contain;
}
.md-btn .icnMail::before {
	left: -10px;
	width: 25px;
	height: 19px;
	background-image: url(../images/icn_mail.svg);
}
.md-btn .icnSms::before {
	left: -7px;
	width: 25px;
	height: 23px;
	background-image: url(../images/icn_sms.svg);
}
.md-btn .icnLine::before {
	left: -8px;
	width: 26px;
	height: 25px;
	background-image: url(../images/icn_line.svg);
}
.md-btn .icnCopy::before {
	left: -8px;
	width: 26px;
	height: 25px;
	background-image: url(../images/icn_copy.svg);
}
/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.md-btn .icnMail,
	.md-btn .icnSms,
	.md-btn .icnLine,
	.md-btn .icnCopy {
		padding-left: 10vw;
	}
	.md-btn .icnMail::before,
	.md-btn .icnSms::before,
	.md-btn .icnLine::before,
	.md-btn .icnCopy::before {
	}
	.md-btn .icnMail::before {
		left: 2.17vw;
		width: 6vw;
		height: 4.4vw;
	}
	.md-btn .icnSms::before {
		left: 1.87vw;
		width: 5.47vw;
		height: 5.07vw;
		background-image: url(../images/icn_sms.svg);
	}
	.md-btn .icnLine::before {
		left: 1.97vw;
		width: 5.6vw;
		height: 5.33vw;
		background-image: url(../images/icn_line.svg);
	}
	.md-btn .icnCopy::before {
		left: 1.97vw;
		width: 5.6vw;
		height: 5.33vw;
		background-image: url(../images/icn_copy.svg);
	}
}






.errorTtl {
	width: 560px;
	margin: 0 auto;
}
.errorTtl .ttl {
	font-size: 2.4rem;
	font-weight: bold;
}
.md-errorBox {
	width: 560px;
	margin: 40px auto 0;
	box-sizing: border-box;
	border-radius: 6px;
	border: 1px solid #b6cbbd;
}
.md-errorBox .boxTtl {
	padding: 20px 25px 20px;
	background: #f7dcde;
	position: relative;
}
.md-errorBox .boxCts {
	padding: 10px 25px 28px;
}
.md-errorBox .boxTtl .txt {
	color: #c70713;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.7;
}
.md-errorBox .errorMsg {
	margin: 0 20px;
}
.md-errorBox .errorMsg .txt {
	font-size: 1.4rem;
	line-height: 1.7;
	position: relative;
}
.md-errorBox .errorMsg .txt::before {
	content: " ";
	width: 14px;
	height: 14px;
	background: url(../../common/images/icn_alert.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 4px;
	left: -20px;
}
.md-errorBox .errorMsg + .btnLine {
	margin-top: 54px;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.errorTtl {
		width: auto;
	}
	.errorTtl .ttl {
		font-size: 5.6vw;
	}
	.md-errorBox {
		width: auto;
		margin: 5.06667vw auto 0;
		border-radius: 0.8vw;
	}
	.md-errorBox .boxTtl {
		padding: 20px 25px 20px;
	}
	.md-errorBox .boxCts {
		padding: 7.73333vw 3.1vw 7.06667vw;
	}
	.md-errorBox .boxTtl .txt {
		font-size: 4.53333vw;
	}
	.md-errorBox .errorMsg {
		margin: 0 5.33333vw;
	}
	.md-errorBox .errorMsg .txt {
		font-size: 4vw;
	}
	.md-errorBox .errorMsg .txt::before {
		width: 4vw;
		height: 4vw;
		top: 1vw;
		left: -4.8vw;
	}
	.md-errorBox .errorMsg + .btnLine {
		margin-top: 6.66667vw;
	}
}




.modalAlert {
	width: 100%;
	max-width: 580px;
	box-sizing: border-box;
	padding: 0 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1010;
}
.modalAlert .modalInr {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #666;
	border-radius: 6px;
	background: #fff;
	position: relative;
	overflow: hidden;
}
.modalAlert .modalInr .closeBtn {
	width: 26px;
	height: 26px;
	position: absolute;
	top: 12px;
	right: 16px;
}
.modalAlert .modalInr .closeBtn .btn {
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #666;
	border-radius: 6px;
	font-size: 0;
	position: relative;
	cursor: pointer;
}
.modalAlert .modalInr .closeBtn .btn::before,
.modalAlert .modalInr .closeBtn .btn::after {
	content: " ";
	width: 16px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	left: 50%;
}
.modalAlert .modalInr .closeBtn .btn::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.modalAlert .modalInr .closeBtn .btn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.modalAlert .modalInr .modalCts .msgLine {
	display: flex;
	align-items: center;
	height: 50px;
	box-sizing: border-box;
	padding: 12px 16px;
	border-radius: 6px 6px 0 0;
	border-bottom: 1px solid #666;
	background: #e2f1e7;
}
.modalAlert .modalInr .modalCts .msgLine .msg {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.1;
}
.modalAlert .modalInr .modalCts .txtCol {
	min-height: 140px;
	box-sizing: border-box;
	padding: 20px 16px ;
}
.modalAlert .modalInr .modalCts .txtCol .txt {
	font-size: 1.8rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
    overflow-wrap: break-word;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.modalAlert {
       width: 100%;
       	max-width: none;
       table-layout: fixed;
		padding: 0 3.2vw;
	}
	.modalAlert .modalInr {
		border-radius: 0.8vw;
	}
	.modalAlert .modalInr .closeBtn {
		width: 6.77084vw;
		height: 6.77084vw;
		top: 3.125vw;
		right: 4.1666vw;
	}
	.modalAlert .modalInr .closeBtn .btn {
		border-radius: 0.8vw;
	}
	.modalAlert .modalInr .closeBtn .btn::before,
	.modalAlert .modalInr .closeBtn .btn::after {
		width: 4.1666vw;
		height: 0.26042vw;
	}
	.modalAlert .modalInr .modalCts .msgLine {
		height: 13.02084vw;
		padding: 3.125vw 4.16666vw;
		border-radius: 0.8vw 0.8vw 0 0;
	}
	.modalAlert .modalInr .modalCts .msgLine .msg {
		font-size: 5.20834vw;
	}
	.modalAlert .modalInr .modalCts .txtCol {
		height: auto;
		min-height: auto;
		padding: 5.20834vw 3.4vw;
	}
}