@charset "UTF-8";
/* CSS Document */
/* application
------------------------------------------------------ */
.application-bg {
  padding: 80px 0;
}
.application-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 100px auto 0;
}
.application-item {
  background: #F2F5FC;
  margin-bottom: 80px;
}
.application-img {
  width: 55%;
  margin: -50px auto;
}
.application-ttl {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;
  color: #324A7C;
  font-family: 'hiragino6';
}
.application-btn {
  display: block;
  text-align: center;
  background: #FAE252;
  padding: 14px 0;
  font-family: 'hiragino6';
}
input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
} 
input[type="number"] { 
  -moz-appearance:textfield; 
} 
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px) {
  .application-item {
    width: 30%;
  }
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .application-item {
    width: 48%;
  }
  .application-bg {
    padding: 40px 0 0;
  }
}
/* form
------------------------------------------------------ */
.circle-bg {
  background-image: linear-gradient(to bottom, #fff 25%, #324A7C 25%, #324A7C 75%, #fff 75%);
  padding: 40px 0;
  width: 100VW;
  margin: 20px calc(50% - 50vw) 0;
}
.circle-bg:before{
content: '';
    background: url(../common/images/circle01-top.png) no-repeat;
    background-size: 140% auto;
    width: 100%;
    background-position: top center;
    display: block;
    height: 400px;
    margin-bottom: -280px;
}
.circle-bg:after{
content: '';
    background: url(../common/images/circle01-bottom.png) no-repeat;
    background-size: 140% auto;
    width: 100%;
    background-position: bottom center;
    display: block;
    height: 360px;
	margin-top: -300px;
}
form {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}
form p, form label, form a {
  color: #fff;
}
form a {
  text-decoration: underline;
}
form span.required {
  background: #FAE252;
  color: #324A7C;
  padding: 2px 4px;
  font-size: 1.4rem;
  margin-left: 2px;
}
input {
  width: 100%;
  font-size: 16px;
}
input[type="text"], input.adress-number, input[type="tel"] {
  height: 50px;
  background: #F3F6FD;
  border: none;
}
textarea {
  width: 100%;
  background: #F3F6FD;
  border: none;
  height: 200px;
}
input.white {
  display: block;
  background: #fff;
  padding: 12px 0 16px;
  width: 90%;
  max-width: 340px;
  margin: 20px auto;
  text-align: center;
  font-family: 'hiragino6';
  position: relative;
  z-index: 2;
  border: none;
}
input.white:before {
  content: '';
  background: #FAE252;
  width: 340px;
  height: 46px;
  position: absolute;
  left: -6px;
  top: -2px;
  z-index: -1;
}
input.white:after {
  content: '';
  background: url(../images/link-btn-arrow.png) no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 20%;
  top: 18px;
}
.form-inner {
  margin-bottom: 40px;
}
input[type="checkbox"] {
  width: 20px;
}
.form-body label {
  width: 100%;
}
  input.adress-number {
    width: 95%;
  }
/*PC Layout
===================================*/
@media print, screen and (min-width: 769px) {
  .form-inner, .form-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .form-head {
    width: 30%;
  }
  .form-body {
    width: 70%;
  }
  .form-body div {
    width: 48%;
  }
  .form-inner.last-inner, .form-inner.last-inner .form-body {
    justify-content: center;
  }
}
/*SP Layout
===================================*/
@media all and (max-width: 768px) {
  .form-ttl {
    margin-bottom: 10px;
  }
  .form-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	  align-items: center;
  }
  input.adress-number {
    width: 92%;
  }
	.form-body div {
    width: 46%;
}
	.form-inner {
    margin-bottom: 20px;
}
	.circle-bg {
  background-image: linear-gradient(to bottom, #fff 10%, #324A7C 10%, #324A7C 90%, #fff 90%);
  padding: 40px 0;
  width: 100VW;
  margin: 20px calc(50% - 50vw) 0;
}
.circle-bg:before{
content: '';
    background: url(../common/images/circle01-top.png) no-repeat;
    background-size: 140% auto;
    width: 100%;
    background-position: top center;
    display: block;
    height: 400px;
    margin-bottom: -280px;
}
.circle-bg:after{
content: '';
    background: url(../common/images/circle01-bottom.png) no-repeat;
    background-size: 140% auto;
    width: 100%;
    background-position: bottom center;
    display: block;
    height: 360px;
	margin-top: -300px;
}
}