@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

@font-face {
  font-family: 'LINESeedJP';
  src: url('../font/LINESeedJP_OTF_Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'LINESeedJP';
  src: url('../font/LINESeedJP_OTF_0.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --red: #ff4b3c;
}

html {
  scroll-padding-top: 70px;
}
body {
  width: 100%;
  font-size: 16px;
  font-family: 'LINESeedJP', 'Noto Sans JP', 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', Meiryo, sans-serif;
  color: #534755;
}

a {color: #ff4b3c;}

.align-left {
  text-align: left!important;
}
.align-right {
  text-align: right!important;
}
.align-center {
  text-align: center!important;
}

header {
	margin: 0 auto;
	max-width: 600px;
}
header h1 img {
	width: 100%;
	height: auto;
}
main {
	margin: 0 auto;
	padding: 20px 15px;
	max-width: 600px;
}
main p {
	font-size: .875rem;
	text-align: center;
}
main p span {
	font-size: 1.125rem;
}
main > div {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #ccc;
}

.map {
	color: var(--red);
	text-align: left;
}
.map .ico {
	margin-left: .3em;
	vertical-align: text-bottom;
	display: inline-block;
}

form {
	margin-top: 20px;
}
dl {
  margin-bottom: 1em;
}
dl:last-of-type {margin-bottom: 0;}
dt {
	margin-bottom: .5em;
	font-weight: 700;
}
dt img {
  margin-left: .5em;
  width: auto;
  height: 1.2em;
  vertical-align: text-bottom;
	display: inline-block;
}
dt p {
  text-align: left;
}
dt em {
	color: var(--red);
	font-size: .75rem;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
	display: inline-block;
}
input,
select,
textarea {
  padding: .7em;
  width: 100%;
  color: #534755;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: none;
}
input[type=file] {
  padding: 0;
  border: none;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
.check_box,
.radio_box {
  margin: .5em auto;
  padding-left: 25px;
  line-height: 1.2;
  display: inline-block;
  position: relative;
  cursor: pointer!important;
}
.check_box:not(:last-of-type),
.radio_box:not(:last-of-type) {
  margin-right: 2em;
}
.check_box::before,
.radio_box::before {
  content: '';
  width: 20px;
  height: 20px;
  background: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 2px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.radio_box::before {
  border-radius: 50%;
}
input[type="radio"]:checked + .radio_box::before {
  background: #fff;
}
input[type="radio"]:checked + .radio_box::after {
  content: '';
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 4px;
  top: calc(.5em + 2px);
}
input[type="checkbox"]:checked + .check_box::before {
  background: var(--red);
  border-color: var(--red);
}
input[type="checkbox"]:checked + .check_box::after {
  content: '';
  margin-top: -7px;
  width: 8px;
  height: 12px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  display: block;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: rotate(45deg);
}
button {
  margin: 40px auto 0;
  padding: 1em;
  width: 100%;
  max-width: 300px;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 30px;
  display: block;
  position: relative;
  transition: all .3s ease-in;
  cursor: pointer;
}
button:hover {opacity: .7;}
button.return {
	background: #777;
}

.parsley-errors-list {
  margin-top: .5em;
  color: var(--red);
  font-size: .875rem;
}
.parsley-errors-list li::before {content: '※';}

#privacy {
  padding: 30px 15px;
}
#privacy header {
  margin-bottom: 30px;
}
#privacy header h1 {
  font-size: 1.4rem;
  text-align: center;
}
#privacy main {
  padding: 0;
}
#privacy main > section:not(:first-of-type) {
  margin-top: 30px;
}
#privacy main h2 {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.5;
}
#privacy main p {
  text-align: left;
}
#privacy main li {
  font-size: .875rem;
}
#privacy main li:not(:first-of-type) {
  margin-top: 1em;
}

footer small {
	padding: 10px;
  font-size: .625rem;
	text-align: center;
  display: block;
}