/*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;
}
.bg_umi {
  background-image: url(../images/bg_map.png)!important;
  background-repeat: repeat!important;
  background-size:auto!important;
  background-position: center top!important;
}

@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 (min-width: 768px) {
  .bosyuu_box {
    padding-top: 40px!important;
    padding-bottom: 40px!important;
  }
}

figure:hover {
    opacity: 1!important;
}
@media (max-width: 767px) {
  .form__block {
    display: block;
  }
}
.form__name {
  width: 30%;
  font-size: 18px;
  padding: 0 15px 20px 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: 20px;
}
@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 #009c25;
  padding: 15px 0;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  margin-top: 30px;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .formBtns__btn {
    max-width: 200px;
    padding: 15px;
  }
  .personal_wrap{
    width: 100%!important;
    flex: auto!important;
    max-width: 100%!important;
  }
}
.formBtns__btn.outline:hover {
  background-color: #009c25;
  color: #ffffff;
}
.formBtns__btn.solid {
  background-color: #009c25;
  color: #ffffff;
}
.formBtns__btn.solid:hover {
  opacity: 0.7;
}
.formBtns__btn:disabled {
  border: 1px solid #aaaaaa;
}
.formBtns__btn:disabled:hover {
  background-color: transparent;
  color: rgba(16,16,16,0.3);
}

.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;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.white_bg_color {
  background-color: #eeeeee !important;
}

.text-center {
  text-align: center;
}

.bottom_total_price_wrap {
  width: 100%;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}


.personal_label {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}



.personal_label {
  color: #dc3545;
  border-color: #dc3545;
}

.personal_label:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.personal_label:focus, .personal_label.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.personal_label.disabled, .personal_label:disabled {
  color: #dc3545;
  background-color: transparent;
}

.personal_label:not(:disabled):not(.disabled):active, .personal_label:not(:disabled):not(.disabled).active,
.show > .personal_label.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.personal_label:not(:disabled):not(.disabled):active:focus, .personal_label:not(:disabled):not(.disabled).active:focus,
.show > .personal_label.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}


.form__block li,
.form__block p{
  font-size: 16px;
}
/*# sourceMappingURL=style.css.map */
.gh-quiz label{
  display: block;
  position: relative;
  padding-left: 18px;
  text-align: center;
}
.gh-quiz input[type=radio] {
  position: absolute;
  left: 0;
  height: calc(1em + 0.45rem + 0px);
}
.gh-quiz label span{
  display: block;
  line-height: 2.2;
  font-size: 14px;
  font-weight: 600;
}
.gh-quiz .form__name {
  position: relative;
  padding: 0.6em;
  color: #ffffff;
  background: #687078;
  margin-bottom: 1rem;
}

.gh-quiz .form__name:after {
  position: absolute;
  content: '';
  /* top: 100%; */
  /* left: 30px; */
  /* border: 15px solid transparent; */
  /* border-top: 15px solid #333333; */
  width: 0;
  height: 0;
}
.form__block  {
  margin-bottom: 1rem;
}
.table-bordered th{
  color: #ffffff;
  background: #767676;
}
.table-bordered p{
  margin-bottom: .5rem;
}
@media (max-width: 767px){
  .table-bordered{
    border: 0 solid #dee2e6!important;
  }
  .table-bordered th, .table-bordered td{
    border: 0 solid #dee2e6!important;
  }
}
.form_event2209_box strong{
  color: #000000;;
}
.form__block.row:nth-child(3){
  padding-top: 2rem!important;
}
.form__block.row:nth-child(3),
.form__block.row:nth-child(4),
.form__block.row:nth-child(5),
.form__block.row:nth-child(6),
.form__block.row:nth-child(7),
.form__block.row:nth-child(8) {
  background: #f4f8fd;
  padding: 1rem 2rem 0;
  margin-bottom: 0;
  border-left: 0px solid #687078;
}
.form__block.row:nth-child(8){
  margin-bottom: 1rem!important;
}
@media (min-width: 768px) {
  .form__block.row:nth-child(3){
    padding-top: 2rem!important;
  }
  .form__block.row:nth-child(3),
  .form__block.row:nth-child(4),
  .form__block.row:nth-child(5),
  .form__block.row:nth-child(6),
  .form__block.row:nth-child(7),
  .form__block.row:nth-child(8) {
    background: #f4f8fd;
    padding: 1rem 2rem 0;
    margin-bottom: 0;
    /* border-left: 10px solid #687078; */
  }
  .form__block.row:nth-child(8){
    margin-bottom: 1rem!important;
  }
  .form__block.row:nth-child(3) .form__name,
  .form__block.row:nth-child(4) .form__name,
  .form__block.row:nth-child(5) .form__name,
  .form__block.row:nth-child(6) .form__name,
  .form__block.row:nth-child(7) .form__name,
  .form__block.row:nth-child(8) .form__name {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }
  .form__block.row:nth-child(3) .form__inputArea,
  .form__block.row:nth-child(4) .form__inputArea,
  .form__block.row:nth-child(5) .form__inputArea,
  .form__block.row:nth-child(6) .form__inputArea,
  .form__block.row:nth-child(7) .form__inputArea,
  .form__block.row:nth-child(8) .form__inputArea {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }
  .gh-quiz .form__block.row:nth-child(3) .form__name,
  .gh-quiz .form__block.row:nth-child(4) .form__name,
  .gh-quiz .form__block.row:nth-child(5) .form__name,
  .gh-quiz .form__block.row:nth-child(6) .form__name,
  .gh-quiz .form__block.row:nth-child(7) .form__name,
  .gh-quiz .form__block.row:nth-child(8) .form__name{
    margin-bottom: 1.3rem;
    font-size: 16px;
  }
  .gh-quiz .form__block.row:nth-child(3) .form__name:after,
  .gh-quiz .form__block.row:nth-child(4) .form__name:after,
  .gh-quiz .form__block.row:nth-child(5) .form__name:after,
  .gh-quiz .form__block.row:nth-child(6) .form__name:after,
  .gh-quiz .form__block.row:nth-child(7) .form__name:after,
  .gh-quiz .form__block.row:nth-child(8) .form__name:after{
    border-top: 0;
  }
  .form__select.form-control {
    padding: .5rem 2rem .5rem 1rem;
  }
}

ol  {
  position: relative;
  margin: 0;
  padding: 0
}
ol li  {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em
}
ol li span {
  position: absolute;
  left: 0;
  margin: 0
}

ul.come-list {
  list-style: none;
}

ul.come-list li {
  position: relative;
  margin-left: 18px;
}


ul.come-list li:not(:first-child),
ol li:not(:first-child) {
  margin-top: 10px;
}


ul.come-list li:before {
  display: block;
  position: absolute;
  top: 0px;
  left: -18px;
  width: 10px;
  height: 5px;
  content: "※";

}
