/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*reset end*/
input, textarea, select, button {
  font-family: "BIZ UDPGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "BIZ UDPGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.7;
}

.header {
  background-color: #ccc;
  padding: 30px 0;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .header {
    padding: 15px 0;
    margin-bottom: 50px;
  }
}
.header__siteTitle {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .header__siteTitle {
    margin-bottom: 10px;
  }
}
.header__gnavi {
  display: flex;
  justify-content: center;
}
.header__naviLink {
  margin-right: 1em;
  text-decoration: none;
  color: #006919;
}
.header__naviLink:last-child {
  margin-right: 0;
}
.header__naviLink:hover {
  text-decoration: underline;
}

.content {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 15px;
}

.contentHead {
  margin-bottom: 50px;
}
.contentHead__ttl {
  font-size: 22px;
  color: #009c25;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
.contentHead__txt {
  text-align: center;
  margin: 0 auto;
}
.contentHead .reqdMark {
  color: orangered;
}

.form__block {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .form__block {
    display: block;
  }
}
.form__name {
  width: 30%;
  font-size: 18px;
  padding: 0 15px 40px 0;
}
@media (max-width: 767px) {
  .form__name {
    width: 100%;
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.form__reqdMark {
  color: orangered;
  padding-left: 0.5em;
}
.form__inputArea {
  width: 70%;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .form__inputArea {
    width: 100%;
  }
}
.form__input {
  border: 1px solid transparent;
  background-color: #eee;
  padding: 8px;
  width: 100%;
  font-size: 16px;
  border-radius: 0;
}
.form__input:focus {
  outline: none;
  border-color: #bbb;
}
.form__input.name {
  width: calc(48% - 1.5em);
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .form__input.name {
    width: calc(100% - 1.5em);
  }
}
.form__input.lastName {
  margin-right: 4%;
}
@media (max-width: 767px) {
  .form__input.lastName {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.form__input.zipCode {
  width: 8em;
  margin-left: 0.5em;
  margin-right: 4%;
}
.form__input.otherAddress {
  margin-top: 15px;
}
.form__selectWrap {
  display: inline-block;
  position: relative;
}
.form__selectWrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.75em;
  top: 44%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #666666;
  border-bottom: 1px solid #666666;
  pointer-events: none;
}
.form__select {
  outline: none;
  background: transparent;
  font-size: 16px;
  border-radius: 0;
  padding: 8px 2em 8px 8px;
  border: 1px solid transparent;
  background-color: #eee;
}
.form__select:focus {
  outline: none;
  border-color: #bbb;
}
.form__textArea {
  font-size: 16px;
  padding: 8px;
  border: 1px solid transparent;
  background-color: #eee;
  resize: vertical;
  min-height: 10em;
  width: 100%;
  line-height: 1.7;
}
.form__textArea:focus {
  outline: none;
  border-color: #bbb;
  box-shadow: none;
}

.formBtns {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .formBtns {
    width: 100%;
  }
}
.formBtns__wrap.confirm {
  width: 100%;
}
.formBtns__wrap.return {
  width: 48%;
  margin-right: 4%;
}
@media (max-width: 767px) {
  .formBtns__wrap.return {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.formBtns__wrap.submit {
  width: 48%;
}
@media (max-width: 767px) {
  .formBtns__wrap.submit {
    width: 100%;
  }
}
.formBtns__btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  max-width: 300px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border: 1px solid #ee835c;
  padding: 30px 0;
  font-size: 18px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .formBtns__btn {
    max-width: 200px;
    padding: 15px;
  }
}
.formBtns__btn.outline:hover {
  background-color: #ee835c;
  color: #ffffff;
}
.formBtns__btn.solid {
  background-color: #ee835c;
  color: #ffffff;
}
.formBtns__btn.solid:hover {
  opacity: 0.7;
}

.footer {
  width: 100%;
  background-color: #eeeeee;
  padding: 30px 0;
}
.footer__copyright {
  text-align: center;
  font-size: 14px;
}

.font80 {
  font-size: 80%;
}

.choice_img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  display: block;
}

.choice_img:hover {
  cursor: pointer;
}

input[type=radio] {
  -webkit-appearance: radio;
  width: auto;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
  width: auto;
}

input[type=radio]:hover, input[type=checkbox] {
  cursor: pointer;
}

.err_msg {
  color: orangered;
  display: block;
}

.label_text:hover {
  cursor: pointer;
}
#footer_wrapper {
	padding: 20px 0;
	background: #ee835c;
}
.l-footer__copy {
    text-align: center;
    margin: 0;
    color: #fff;

}

/*# sourceMappingURL=style.css.map */

#header_wrapper {
	border-style: solid;
	border-color: #E6E6E6;
	background-color: #FFFFFF;
	border-width: 0px 0px 1px;
	height: 70px;
	top: 0px;
	position: fixed;
	width: 100%;
	box-sizing: border-box;
	padding: 20px 0 0 20px;
	z-index: 1000;
}
#header_wrapper h1 {
	padding: 0px 0 0 0;
	display: inline-block;
	vertical-align: middle;
	margin: 0;
}
#modal-base {
	/*モーダル展開時の背景レイヤー*/
	position: fixed;
	background: rgba(0, 0, 0, 0.45);
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1000;
	overflow: hidden;
}
#modal section {
	/*モーダル展開時の本体部。モーダルのサイズに応じて、値を変更*/
	/*JSで展開を制御するため、初期時は、display:none*/
	/*ページ中央に配置するため、position:fixedで画面表示位置を固定*/
	width: 500px;
	background: #FFF;
	border-radius: 9px;
	position: fixed;
	padding: 20px;
	text-align: center;
	z-index: 10000;
	display: none;
}
.btn-modal-open {
	background: none;
	border: none;
	padding: 0;
	font-size: 1em;
	line-height: 1.42857;
	color: #ee835c;
	font-family:'游ゴシック', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
	text-decoration: underline;
}
.btn-modal-open:hover {
	text-decoration: none;
}
#modal h2 {
	font-weight: normal;
	border-bottom: 1px solid #DDD;
	padding-bottom: 10px;
	font-size: 1.2rem;
	line-height: 1;
	position: relative;
	text-align: left;
}
#modal h2 .md-close {
	background: none;
	border: 0;
	text-decoration: underline;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 1;
	font-size: 1rem;
}
#modal h2 .md-close:hover {
	text-decoration: none;
}
#modal .modal-content {
	padding-top: 20px;
	padding-bottom: 20px;
}
#modal .modal-content p {
	text-align: left;
	line-height: 1.6;
	font-size: .9rem;
}
#modal .modal-button-box {
	border-top: 1px solid #DDD;
	padding-top: 20px;
	text-align: center;
}
#modal .modal-button-box .md-cancel {
	background: none;
	line-height: 1;
	font-size: 1rem;
	border: 1px solid #8c8c8c;
	padding: 5px 30px;
	color: #8c8c8c;
	border-radius: 7px;
	text-decoration: none;
}
#modal .modal-button-box .md-cancel:hover {
	background: #8c8c8c;
	color:#333;
}
#modal img {
	width:80%;
	margin:0 auto 10px;
}
.sp-only {display:none;}

#formWrap {
	padding-top: 30px;
	margin-top: 40px;
	background: #FFF;
	padding-bottom: 50px;
}
#fv {
	text-align: center;
	background: #ede6da;
	padding: 50px 0 20px;
	box-shadow: 0px 1px 6px 0px #969696 inset;
}
#fv h2 {}
#fv .line {
	background: #ee835c;
	padding: 10px 0;
	color: #FFF;
	font-weight: bold;
	font-size: 1.3rem;
	margin-bottom: 10px;
}
#formWrap #fv p {
	color: #545454;
	line-height: 1.5;
	font-size: 1rem;
	letter-spacing: 1px;
}
#formWrap .content {
	padding-top: 40px;
}
.form__block {}
.present_label {}
.present_label {}
.present_label input[type=radio] { display: none; }
.present_label input[type=radio]:checked + img { 
	border: 1px solid #199183;
	border-radius: 7px;
	box-shadow: 0 0 2px 0px #199183;
}
.present_label .label_text {
    text-align: center;
    display: block;
    padding-top: 10px;
    font-size: .9rem;
}




.fanmtgname_label input[type=radio] { display: none; }
.fanmtgname_label input[type=radio]:checked + img { 
	border: 1px solid #199183;
	border-radius: 7px;
	box-shadow: 0 0 2px 0px #199183;
}
.fanmtgname_label input[type=radio] + img {
padding: 10px 5px;
}

.fanmtgname_label .label_text {
    text-align: center;
    display: block;
    padding-top: 10px;
    font-size: .9rem;
	display:none;
}


.select-challenge_label input[type=radio] { display: none; }
.select-challenge_label input[type=radio]:checked + img { 
	border: 1px solid #199183;
	border-radius: 7px;
	box-shadow: 0 0 2px 0px #199183;
}
.select-challenge_label .label_text {
    text-align: center;
    display: block;
    padding-top: 10px;
    font-size: .9rem;
}

.form__name { font-size: 1rem; }
.js_input_control { }
.formBtns__btn {
	border: 1px solid #ee835c;
	padding: 15px 0;
	font-size: 1rem;
	color: #ee835c;
	border-radius: 6px;
}
.formBtns__btn.outline:hover {
	background:#ee835c;
}
.customer_code_note {
	font-size: .8rem;
	padding-top: 10px;
	color: #666;
}
.form__name {
	color: #ae956b;
	font-weight: bold;
}
.form__block {
	border-bottom: 1px dotted #cbba9e;
	margin-bottom: 20px;
	margin-top: 20px;
}
.thanks {
}
.thanks h3 {
	margin: 60px 0 0;
	text-align: center;
	padding-bottom: 10px;
	position: relative;
	border-bottom: 1px solid #CCC;
	font-size: 1.2rem;
	font-weight: normal;
}
.thanks h3:after {
	position: absolute;
	content: '';
	display: block;
	width: 300px;
	padding-top: 1px;
	background: #12a095;
	right: 0;
	left: 0;
	bottom: -1px;
	margin: 0 auto;
}
.thanks p {
	text-align: center;
}
.youtube {
	position: relative;
	height: 100vh;
	width: 98vw;
}
.youtube iframe {
    width: 80%;
    height: 63%;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 768px) {
	.l-footer__copy {
		font-size: .9rem;
	}
	#formWrap #fv p {
		font-size: .9rem;
		padding: 0 10px;
	}
	.present_label .label_text {
		font-size: .8rem;
	}
	.fanmtgname .label_text {
		font-size: .8rem;
	}
	.select-challenge_label .label_text {
		font-size: .8rem;
	}

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

	#modal section {
		width: 75vw;
		padding:10px;
	}
	#modal .modal-content {
		padding:0;
	}
	#modal .modal-content p {
		font-size:.9rem;
	}
	.youtube iframe {
	    width: 90%;
	    height: 27%;
	    border-radius: 5px;
	    position: absolute;
	    top: 36%;
	    left: 50%;
	    transform: translateY(-50%) translateX(-50%);
	    -webkit- transform: translateY(-50%) translateX(-50%);
	}




}