*{
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
	font-size: 100%;
	list-style: none;
}
html{
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
}
body{
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-size: 1.8rem;
	line-height: 1.8;
}
svg{
	fill: #fff;
}

.header{
	background: #008b75;
	color: #fff;
	text-align: center;
	padding: 30px 2%;
	line-height: 1.5;
}
.header svg{
	width: 80px;
}
.header h1{
	font-size: 200%;
	margin: 0.5em auto 0.1em;
}

form{
	width: 100%;
	max-width: 800px;
	margin: auto;
	padding: 80px 0 100px;
}

form input,
form select,
form textarea{
	border: solid 1px #999;
	padding: 0.5em;
	border-radius: 5px;
	width: 100%;
}
form input[type="checkbox"],
form input[type="radio"]{
	position: relative;
	width: 1.5em;
	height: 1.5em;
	padding: 0;
	background: #fff;
	margin-right: 0.25em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
form input[type="checkbox"]:checked:before,
form input[type="radio"]:checked:before{
	position: absolute;
	left: 7px;
	transform: rotate(50deg);
	width: 8px;
	height: 15px;
	border-right: 4px solid #c00;
	border-bottom: 4px solid #c00;
	content: "";
}
form textarea{
	height: 10em;
}

form section{
	margin-bottom: 30px;
}

.required h2::after{
	content: "（必須）";
	color: #c00;
	font-size: 80%;
}

.navi{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #008b75;
	font-weight: bold;
	margin-bottom: 50px;
}
.navi li{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(100% / 5);
}
.navi li.line{
	display: block;
	width: 200px;
	height: 2px;
	background: #008b75;
	margin: 0 -2em;
	position: relative;
	top: -1em;
}
.navi span{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #e4f0ed;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	font-size: 200%;
	line-height: 1;
	margin-bottom: 10px;
}
.navi li.active span{
	background: #008b75;
}

.note{
	color: #008b75;
	margin-bottom: 40px;
}

.check{
	background: #f7c6b1;
	border-radius: 10px;
	margin-bottom: 40px;
	padding: 1em;
}
.check h2{
	margin: 5px 0 10px;
}
.check ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.check li{
	width: calc(100% / 3);
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.soudan li{
	width: 50%;
}
.soudan h2::after{
	content: "（必須）複数選択可";
}

.raiten h2{
	background: #e4f0ed;
	padding: 0.5em;
	border-radius: 100px;
	margin-bottom: 20px;
}
.raiten div{
	margin-left: 1em;
	display: flex;
	align-items: center;
}
.raiten input,
.raiten select{
	width: 50%;
}
.raiten label{
	width: auto;
	height: 40px;
	margin-left: 5px;
}
.raiten img,
.raiten svg{
	width: auto;
	height: 100%;
}
.raiten svg{
	fill: #008b75;
}
.date{
	margin-bottom: 10px;
}

.note2{
	font-size: 90%;
	margin-bottom: 30px;
}

.p-postal-code{
	width: 10em;
	margin-bottom: 10px;
}

.privacy-policy{
	display: flex;
	align-items: center;
	background: #e4f0ed;
	padding: 1em;
	border-radius: 10px;
	margin-bottom: 40px;
}

form button{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #900;
	background: linear-gradient(0deg, rgba(153, 0, 0, 1) 0%, rgba(204, 0, 0, 1) 100%);
	width: 94%;
	max-width: 400px;
	margin: auto;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	padding: 1em;
	font-size: 150%;
	transition: 0.2s;
    margin-top: 20px;
}

form button.back{
	background: #008b75;

}

form button:hover{
	cursor: pointer;
	opacity: 0.8;
}
form button svg{
	width: 40px;
	height: auto;
}

.error{
    color: #c00;
    font-weight: bold;
}


/* for sp */
@media only screen and (max-width: 767px){
.header svg{
	width: 60px;
}
.header h1{
	font-size: 160%;
}

form{
	width: 94%;
	padding: 40px 0 50px;
}

form section{
	margin-bottom: 20px;
}

.navi{
	margin-bottom: 25px;
	font-size: 80%;
}
.navi li{
	line-height: 1.3;
	text-align: center;
}
.navi li.line{
	width: 70px;
	height: 1px;
	margin: 0 -0.5em;
	top: -1.7em;
}

.note{
	margin-bottom: 30px;
	font-size: 75%;
}

.check{
	margin-bottom: 20px;
}
.check li{
	width: 50%;
	margin-bottom: 5px;
	font-size: 85%;
}
.soudan li{
	width: 100%;
}

.raiten h2{
	padding: 0.4em;
	margin-bottom: 15px;
}
.raiten input,
.raiten select{
	width: 80%;
}

.note2{
	font-size: 75%;
	margin: 30px auto 20px;
}

.privacy-policy{
	margin-bottom: 30px;
}

form button{
	padding: 1em 0.5em;
	font-size: 120%;
}
}/* for sp */

@media only screen and (min-width: 768px){
.sp{display:none;}
}



/* 確認画面テーブル */
.tableA {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.tableA th,
.tableA td {
  border: 1px solid #008b75;
  padding: 0.75em;
  vertical-align: top;
}

.tableA th {
  background-color: #008b75;
  color: #fff;
  text-align: left;
  font-weight: bold;
  width: 30%;
  border-bottom: 2px solid #fff;
}

.tableA td {
  background-color: #f9fdfc;
  color: #333;
}

/* テーブルの上下余白 */
.mb3em {
  margin-bottom: 3em;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .tableA,
  .tableA tbody,
  .tableA tr,
  .tableA th,
  .tableA td {
    display: block;
    width: 100%;
  }

  .tableA tr {
    margin-bottom: 1em;
    border: 1px solid #008b75;
    border-radius: 6px;
    overflow: hidden;
  }

  .tableA th {
    background-color: #008b75;
    color: #fff;
    padding: 0.5em;
    border: none;
    width: 100%;
  }

  .tableA td {
    padding: 0.75em;
    border: none;
    background-color: #f9fdfc;
  }
}