
/* ----------------------------------------

- application

---------------------------------------- */
/*  pageLink
---------------------------------------- */
.pageLink {
  margin-top: 60px;
}
.pageLink .btn {
  display: inline-block;
  min-width: 290px;
  font-size: 24px;
  line-height: 1.71;
  font-weight: bold;
  color: #189800;
  text-align: center;
  box-sizing: border-box;
  transition: .3s;
  position: relative;
  background-color: #F5F8EC;
  border: 2px solid #189800;
  box-shadow: 3px 3px 6px 0px rgb(0 0 0 / 18%);
  border-radius: 24px;
  padding: 1em 1.5em; 
  box-shadow: 0px 5px 0px 0px #2D9819, 
  0px 8px 8px 0px rgb(0 0 0 / 16%);
  margin-bottom: 5px;
}
.btn_txt {
  display: inline-table;
  padding-right: 1.5em;
  background-image: url(../img/common/icon_arw_circle_bottom_green.svg);
  background-repeat: no-repeat;
  background-size: 1.3em;
  background-position: center right;
}
@media only screen and (max-width: 737px){
  .pageLink {
    margin-top: 40px;
  }
  .pageLink .btn {
    min-width: 290px;
    font-size: 20px;
  }
}

/*  postal_form
---------------------------------------- */

#postal .colWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#postal .col1 {
  width: 100%;
}
#postal .col2 {
  width: 47%;
}
#postal .postal_form {
  margin-top: 60px;
}
#postal .postal_form_tit {
  font-weight: bold;
  margin-bottom: .7em;
}
#postal .postal_form {
  background: #F2F2F2;
  padding: 25px 40px;
}
#postal .postal_form > *:first-child {
  margin-top: 0;
}
#postal .postal_form ol {
  font-size: 20px;
  counter-reset: item;
  list-style-type: none;
  margin-top: 1em;
}
#postal .postal_form ol > li {
  text-indent: -1em;
  padding-left: 1em;
}
#postal .postal_form ol > li:before {
  counter-increment: item;
  content: counter(item)'.';
}
#postal .postal_img {
  width: 70%;
  margin: 60px 15%;
}
#postal_form1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#postal_form1 .postal_form_btn {
  width: 300px;
  margin-left: 20px;
}
@media only screen and (max-width: 737px){
 
  #postal .col2 {
    width: 100%;
  
  }
  #postal .postal_form {
    padding: 25px 30px;
    margin-top: 20px;
  }
  #postal .postal_form ol {
    font-size: 18px;
  }
  #postal .postal_img {
    width: auto;
    margin: 40px auto;
  }
  #postal_form1 {
    display: block;
  }
  #postal_form1 .postal_form_btn {
    width: auto;
    margin: 20px auto 0;
    text-align: center;
  }
}


/* ----------------------------------------

- lightplan

---------------------------------------- */

.placeBox {
  max-width: 360px;
  margin: 3em auto 0;
  color: #1f0031;
  box-sizing: border-box;
  border: 2px solid #1f0031;
  padding: 15px;
}
.placeBox  .placeBox_head {
  text-align: center;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 700;
  background-color: #1f0031;
  color: #fff;
  width: 100%;
  margin-bottom: 15px;
}
.placeBox_body {
  padding: 0 15px;
}
.placeBox_body > * {
  margin-top: 1em;
}
.placeBox_body > *:first-child {
  margin-top: 0;
}

