@charset "utf-8";

/*内容確認ページ上部のエラー*/
.confirm__page__message {
	font-size: 16px;
	color: #dc3232;
	padding: 6px;
	padding-left: 32px;
	border: 2px solid #dc3232;
	border-left: 6px solid #dc3232;
	position: relative;
}
.confirm__page__message::before {
	position: absolute;
	content: '\e002';
	font-family: 'Material Icons Outlined';
	font-size: 20px;
	top: 8.5px;
	left: 7px;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.confirm__page__message {
		font-size: 20px;
		padding-left: 36px;
	}
	.confirm__page__message::before {
		font-size: 24px;
		top: 11.5px;
	}
}

/*2つのボタンを包む*/
.confirm__page__button__wrapper {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
@media screen and (min-width: 769px) {
	.confirm__page__button__wrapper {
		justify-content: space-evenly;
		margin-top: 120px;
	}
}

/*左側の内容修正ボタン*/
.confirm__page__button__wrapper__left {
	position: relative;
	width: 100%;
	max-width: 40vw;
}
@media screen and (min-width: 769px) {
	.confirm__page__button__wrapper__left {
		max-width: 300px;
	}
}

.confirm__page__button__wrapper__left::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #008c38;
  border-left: 1px solid #008c38;
  top: 50%;
  left: 16px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 769px) {
	.confirm__page__button__wrapper__left::before {
		width: 10px;
		height: 10px;
		border-top: 2px solid #008c38;
  	border-left: 2px solid #008c38;
		left: 31px;
	}
}

.confirm__page__button__modify {
	-webkit-appearance: none;
	display: block;
  background-color: #fff;
  color: #008c38;
	border: 2px solid #008c38;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
	width: 100%;
  padding: 12px 0;
	cursor: pointer;
  border-radius: 22px;
}
@media screen and (min-width: 769px) {
	.confirm__page__button__modify {
		font-size: 24px;
		padding: 23px 0;
		border-radius: 35px;
	}
}

/*右側の送信ボタン*/
.confirm__page__button__wrapper__right {
	position: relative;
	width: 100%;
	max-width: 40vw;
}
@media screen and (min-width: 769px) {
	.confirm__page__button__wrapper__right {
		max-width: 300px;
	}
}

.confirm__page__button__wrapper__right::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
	.confirm__page__button__wrapper__right::after {
		width: 10px;
		height: 10px;
		border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
		right: 31px;
	}
}

.confirm__page__button__submit {
	-webkit-appearance: none;
	display: block;
  background-color: #008c38;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
	width: 100%;
  padding: 14px 0;
	border: none;
	cursor: pointer;
  border-radius: 22px;
}
@media screen and (min-width: 769px) {
	.confirm__page__button__submit {
		font-size: 24px;
		padding: 23px 0;
		border-radius: 35px;
	}
}

/*内容確認ページ*/
.confirm__page.section {
	padding-top: 88px;
}
@media screen and (min-width: 769px) {
	.confirm__page.section {
		padding-top: 200px;
		padding-bottom: 160px;
	}
}

.confirm__page__title {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
	.confirm__page__title {
		padding-bottom: 70px;
	}
}
@media screen and (max-width: 374px) {
	.confirm__page__title {
		font-size: 28px;
	}
}

.confirm__page__content {
	margin-top: 40px;
}
@media screen and (min-width: 769px) {
	.confirm__page__content {
		margin-top: 60px;
	}
}

.confirm__page__item {
	margin-top: 50px;
}
.confirm__page__item:first-child {
	margin-top: 0;
}
@media screen and (min-width: 769px) {
	.confirm__page__item {
		margin-top: 70px;
	}
}

.confirm__page__label {
	font-size: 16px;
	font-weight: bold;
}
@media screen and (min-width: 769px) {
	.confirm__page__label {
		font-size: 20px;
	}
}

.confirm__page__body {
	font-size: 16px;
	margin-top: 4px;
}
@media screen and (min-width: 769px) {
	.confirm__page__body {
		font-size: 20px;
	}
}