@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:wght@400;500;504;599&family=Noto+Sans+JP:wght@400;700;900&family=Roboto+Condensed:wght@300;400;700&display=swap');

.sp {
	display: none;
}
.pc {
	display: block;
}

/*------------------------------
	h2TitleBox
------------------------------*/
#h2TitleBox {
	background-color: #00a84b;
	margin-top: 80px;
	font-size: 2em;
	padding: 4em 0;
	text-align: center;
	color: #ffffff;
	font-family: 'Lato', sans-serif;
}

/*------------------------------
	contentsBox
------------------------------*/
#contentsBox {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 3em;
}

/*------------------------------
	infoText
------------------------------*/
#infoText {
	padding: 5em 0;
	text-align: center;
	line-height: 1.8;
}
#infoText span {
	color: #d30000;
}
#infoText a {
	text-decoration: underline;
}
#infoText a:hover {
	text-decoration: none;
}

/*------------------------------*/
.storeName {
	padding-left: 1em;
	font-weight: bold;
	padding-bottom: 3em;
	font-size: 1.2em;
}
.entryStoreName {
	font-weight: bold;
	padding-bottom: 0.8em;
	font-size: 1.3em;
	border-bottom: solid 2px #00a84b;
	margin-bottom: 1em;
}

/*------------------------------
	tableArea
------------------------------*/
#tableArea {
}
#tableArea table {
	width: 100%;
}
#tableArea table tr {
	border-bottom: solid 1px #efefef;
}
/*------------------------------*/
#tableArea table th {
	width: 25%;
	padding: 2em 0;
	font-weight: bold;
	position: relative;
	line-height: 1.4;
	vertical-align: middle;
}
#tableArea table th .kome {
	font-size: 0.9em;
}
/*------------------------------*/
#tableArea table td {
	width: 75%;
	padding: 2em 0 2em 6em;
	position: relative;
	line-height: 1.4;
}
#tableArea table td.other {
	padding-left: 0;
}
#tableArea table td .require {
	position: absolute;
	left: 1.5em;
	top: 2.3em;
	color: #ffffff;
	background-color: #d30000;
	line-height: 1.6;
	padding: 0 0.8em;
	font-size: 0.9em;
}

/*------------------------------
	form
------------------------------*/
input[type="text"] {
	height: 1.6em;
	padding: 6px 10px;
	margin: 0;
	vertical-align: middle;
	background-color: #efefef;
	border: none;
}
input.long {
	width: 95%;
}
input.middle {
	width: 22%;
	margin-right: 1em;
}
input.address {
	width: 22%;
	margin-left: 0.4em;
}
input.year {
	width: 16%;
	margin-right: 0.4em;
}
input.month {
	width: 10%;
	margin-right: 0.4em;
	margin-left: 1em;
}
input.day {
	width: 10%;
	margin-right: 0.4em;
	margin-left: 1em;
}
input[type=radio] {
	margin-bottom: 5px;
	margin-left: 3px;
}
textarea {
	width: calc(100% - 4em);
	padding: 1em;
	margin: 1em;
	border: solid 1px #efefef;
	height: 17em;
	overflow: auto;
	resize: none;
	line-height: 1.8;
}
.checkBox {
	margin-right: 10px;
	padding: 0;
	vertical-align: top;
}
/*------------------------------*/
.radioTxt {
	margin-right: 2em;
}
.formError {
	position: relative;
	left: -5em;
	color: #d30000;
}
.line2 {
	margin-top: 1em;
}

/*------------------------------
	personalInfo
------------------------------*/
#personalInfo {
	text-align: center;
	padding-top: 5em;
}
#personalInfo .title {
	font-weight: bold;
	font-size: 1.2em;
	padding-bottom: 1.5em;
}
#personalInfo p {
	padding-bottom: 1.5em;
	line-height: 1.8;
}
#personalInfo p span {
	color: #d30000;
}

/*------------------------------
	buttonArea
------------------------------*/
#buttonArea {
	display: flex;
	padding: 6em 1em;
}
#buttonArea.line1 {
	justify-content: center;
}
#buttonArea .modified {
	width: calc(50% - 3em);
	padding: 0 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
}
#buttonArea .modified .button {
	width: calc(100% - 2px);
	border: solid 1px #969696;
	border-radius: 3em;
	padding: 1.3em 0;
	color: #ffffff;
	cursor: pointer;
	text-align: center;
	transition-duration: 0.4s;
	position: relative;
	overflow: hidden;
}
#buttonArea .modified .button::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	background-color: #969696;
	width: 100%;
	height: 100%;
	transition-duration: 0.4s;
}
#buttonArea .modified .button:hover {
	color: #969696;
}
#buttonArea .modified .button:hover::before {
	width: 0;
}
/*------------------------------*/
#buttonArea .submit {
	width: calc(50% - 3em);
	padding: 0 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
}
#buttonArea .submit .button {
	width: calc(100% - 2px);
	border: solid 1px #00a84b;
	border-radius: 3em;
	padding: 1.3em 0;
	color: #ffffff;
	cursor: pointer;
	text-align: center;
	transition-duration: 0.4s;
	position: relative;
	overflow: hidden;
}
#buttonArea .submit .button::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	background-color: #00a84b;
	width: 100%;
	height: 100%;
	transition-duration: 0.4s;
}
#buttonArea .submit .button:hover {
	color: #00a84b;
}
#buttonArea .submit .button:hover::before {
	width: 0;
}

@media screen and (max-width: 1200px) {
/*------------------------------
	h2TitleBox
------------------------------*/
#h2TitleBox {
	font-size: 2.3vw;
	padding: 9.4vw 0;
}
/*------------------------------
	contentsBox
------------------------------*/
#contentsBox {
	padding: 0 2.5vw;
}
/*------------------------------
	infoText
------------------------------*/
#infoText {
	padding: 5.7vw 0;
	font-size: 1.2vw;
}
/*------------------------------*/
.storeName {
	padding-left: 1.4vw;
	padding-bottom: 4vw;
	font-size: 1.4vw;
}
.entryStoreName {
	font-weight: bold;
	padding-bottom: 0.8em;
	font-size: 1.3em;
	border-bottom: solid 2px #00a84b;
	margin-bottom: 1em;
}
/*------------------------------
	tableArea
------------------------------*/
/*------------------------------*/
#tableArea table th {
	padding: 2.4vw 0;
	font-size: 1.2vw
}
#tableArea table th .kome {
	font-size: 1vw;
}
/*------------------------------*/
#tableArea table td {
	padding: 2.4vw 0 2.4vw 6em;
	font-size: 1.2vw
}
#tableArea table td .require {
	position: absolute;
	left: 1.5em;
	top: 2.3em;
	color: #ffffff;
	background-color: #d30000;
	line-height: 1.6;
	padding: 0 0.8vw;
	font-size: 0.9em;
}
/*------------------------------
	form
------------------------------*/
input[type="text"] {
	height: 1.6em;
	padding: 6px 10px;
	margin: 0;
	vertical-align: middle;
	background-color: #efefef;
	border: none;
}
input.long {
	width: 95%;
}
input.middle {
	width: 22%;
	margin-right: 1em;
}
input.address {
	width: 22%;
	margin-left: 0.4em;
}
input.year {
	width: 16%;
	margin-right: 0.4em;
}
input.month {
	width: 10%;
	margin-right: 0.4em;
	margin-left: 1em;
}
input.day {
	width: 10%;
	margin-right: 0.4em;
	margin-left: 1em;
}
input[type=radio] {
	margin-bottom: 5px;
	margin-left: 3px;
}
textarea {
	width: calc(100% - 4em);
	padding: 1em;
	margin: 1em;
	border: solid 1px #efefef;
	height: 17em;
	overflow: auto;
	resize: none;
	line-height: 1.8;
}
.checkBox {
	margin-right: 10px;
	padding: 0;
	vertical-align: top;
}
/*------------------------------*/
.radioTxt {
	margin-right: 2em;
}
.formError {
	position: relative;
	left: -5em;
	color: #d30000;
}
.line2 {
	margin-top: 1em;
}
/*------------------------------
	personalInfo
------------------------------*/
#personalInfo {
	text-align: center;
	padding-top: 5vw;
}
#personalInfo .title {
	font-weight: bold;
	font-size: 1.4vw;
	padding-bottom: 2vw;
}
#personalInfo p {
	padding-bottom: 2vw;
	line-height: 1.8;
	font-size: 1.2vw;
}
#personalInfo p span {
	color: #d30000;
}
#personalInfo .check {
	font-size: 1.2vw;
}
#personalInfo .checkBox {
	position: relative;
	top: -0.1vw;
}
/*------------------------------
	buttonArea
------------------------------*/
#buttonArea {
	padding: 5vw 2.5vw;
}
#buttonArea .modified {
	width: calc(50% - 4vw);
	padding: 0 2vw;
}
#buttonArea .modified .button {
	width: calc(100% - 2px);
	border: solid 1px #969696;
	border-radius: 3em;
	padding: 1.4vw 0;
	font-size: 1.2vw;
}
/*------------------------------*/
#buttonArea .submit {
	width: calc(50% - 4vw);
	padding: 0 2vw;
}
#buttonArea .submit .button {
	width: calc(100% - 2px);
	border: solid 1px #00a84b;
	border-radius: 3em;
	padding: 1.4vw 0;
	font-size: 1.2vw;
}
/*(^ω^)*/}/*(^ω^)*/@media screen and (max-width: 780px) {
.sp {
	display: block;
}
.pc {
	display: none;
}
/*------------------------------
	h2TitleBox
------------------------------*/
#h2TitleBox {
	margin-top: 10vw;
	font-size: 6vw;
	padding: 9.4vw 0;
}
/*------------------------------
	contentsBox
------------------------------*/
#contentsBox {
	padding: 0 2.5vw;
}
/*------------------------------
	infoText
------------------------------*/
#infoText {
	padding: 9vw 0;
	font-size: 2.4vw;
}
/*------------------------------*/
.storeName {
	padding-left: 2vw;
	padding-bottom: 4vw;
	font-size: 3vw;
}
.entryStoreName {
	font-weight: bold;
	padding-bottom: 2vw;
	font-size: 4vw;
	border-bottom: solid 2px #00a84b;
	margin-bottom: 2vw;
}
/*------------------------------
	tableArea
------------------------------*/
/*------------------------------*/
#tableArea table th {
	width: 22%;
	padding: 4vw 0;
	font-size: 2.4vw
}
#tableArea table th .kome {
	font-size: 1.6vw;
}
/*------------------------------*/
#tableArea table td {
	width: 78%;
	padding: 4vw 0 4vw 8vw;
	font-size: 2.4vw;
}
#tableArea table td .require {
	position: absolute;
	left: 0;
	top: 5.8vw;
	color: #ffffff;
	background-color: #d30000;
	line-height: 1.8;
	padding: 0 1.3vw;
	font-size: 2.4vw;
}
/*------------------------------
	form
------------------------------*/
input[type="text"] {
	height: auto;
	font-size: 3vw;
	padding: 1.5vw 2vw;
	margin: 0;
	vertical-align: middle;
	background-color: #efefef;
	border: none;
}
input.long {
	width: 94%;
}
input.middle {
	width: 22%;
	margin-right: 2vw;
}
input.address {
	width: 22%;
	margin-left: 0.6vw;
}
input.year {
	width: 16%;
	margin-left: 0.6vw;
}
input.month {
	width: 10%;
	margin-left: 0.6vw;
	margin-left: 2vw;
}
input.day {
	width: 10%;
	margin-left: 0.6vw;
	margin-left: 2vw;
}
input[type=radio] {
	margin-bottom: 0.5vw;
	margin-left: 0.3vw;
}
textarea {
	width: calc(100% - 6vw);
	padding: 2vw;
	margin: 2vw;
	border: solid 1px #efefef;
	height: 17em;
	overflow: auto;
	resize: none;
	line-height: 1.8;
}
.checkBox {
	margin-right: 1.2vw;
	padding: 0;
	vertical-align: top;
}
/*------------------------------*/
.radioTxt {
	margin-right: 2vw;
}
.formError {
	position: relative;
	left: -5vw;
	color: #d30000;
}
.line2 {
	margin-top: 2vw;
}
/*------------------------------
	personalInfo
------------------------------*/
#personalInfo {
	text-align: center;
	padding-top: 10vw;
}
#personalInfo .title {
	font-weight: bold;
	font-size: 4vw;
	padding-bottom: 5vw;
}
#personalInfo p {
	padding-bottom: 3vw;
	line-height: 1.8;
	font-size: 3vw;
}
#personalInfo p span {
	color: #d30000;
}
#personalInfo .check {
	font-size: 3vw;
}
#personalInfo .checkBox {
	position: relative;
	top: -0.5vw;
}
/*------------------------------
	buttonArea
------------------------------*/
#buttonArea {
	display: flex;
	padding: 10vw 2.5vw;
}
#buttonArea.line1 {
	justify-content: center;
}
#buttonArea .modified {
	width: calc(50% - 5vw);
	padding: 0 2.5vw;
}
#buttonArea .modified .button {
	width: calc(100% - 2px);
	border: solid 1px #969696;
	border-radius: 3em;
	padding: 3vw 0;
	font-size: 3vw;
	color: #ffffff;
	cursor: pointer;
	text-align: center;
	transition-duration: 0.4s;
	position: relative;
	overflow: hidden;
}
/*------------------------------*/
#buttonArea .submit {
	width: calc(50% - 5vw);
	padding: 0 2.5vw;
}
#buttonArea .submit .button {
	width: calc(100% - 2px);
	border: solid 1px #00a84b;
	border-radius: 3em;
	padding: 3vw 0;
	font-size: 3vw;
	color: #ffffff;
	cursor: pointer;
	text-align: center;
	transition-duration: 0.4s;
	position: relative;
	overflow: hidden;
}
/*(^ω^)*/}/*(^ω^)*/
