/* form */
::placeholder {
  color: #C2CECC;
}
.form_text {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: none;
	color: inherit;
	font-family: inherit;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	padding: 21px 20px;
	width: 100%;
	background: #F0F4F4;
	border-radius: 10px;
	height: 60px;
}
.form_text:focus {
	border: 1px solid #0B342D;
	box-shadow: none;
	outline: none;
}
.form_textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: none;
	color: inherit;
	font-family: inherit;
	font-weight: 500;
	font-size: 18px;
	line-height: 160%;
	height: 200px;
	padding: 21px 20px;
	width: 100%;
	background: #F0F4F4;
	border-radius: 10px;
}
.form_textarea:focus {
	border: 1px solid #0B342D;
	box-shadow: none;
	outline: none;
}
.form_radio_text {
  padding-left: 40px;
  position: relative;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	height: 30px;
	display: flex;
	align-items: center;
}
.form_radio {
  opacity: 0;
  position: absolute;
}
.form_radio + .form_radio_text::before {
  content: "";
	background: #F0F4F4;
  border-radius: 50%;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.form_radio + .form_radio_text::after {
  content: "";
  background: #1F6256;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  transition: all .3s;
  width: 14px;
  height: 14px;
	top: 8px;
	left: 8px;
  z-index: 1;
}
.form_radio:focus + .form_radio_text::before {
  border: 1px solid #0B342D;
}
.form_radio:checked + .form_radio_text::after {
  opacity: 1;
}
.form_check_text {
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
  padding-left: 57px;
  position: relative;
	height: 40px;
	display: flex;
	align-items: center;
}
.form_check {
  opacity: 0;
  position: absolute;
}
.form_check + .form_check_text::before {
  content: "";
	border: 1px solid #1F6256;
	border-radius: 10px;
  background: #fff;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.form_check:focus + .form_check_text::before {
  border: 2px solid #0B342D;
}
.form_check:checked + .form_check_text::before {
	background: #E0F0BE;
}
.form_check:checked + .form_check_text::after {
	position: absolute;
	content: '';
  opacity: 1;
  display: inline-block;
  width: 30px;
  height: 30px;
	top: 8px;
	left: 5px;
  background-image: url(../images/common/icon-check.svg);
  background-size: contain;
	background-repeat: no-repeat;
}
.form_select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: #F0F4F4 url(../images/common/icon-select.svg) no-repeat center right 20px;
	border: none;
	border-radius: 10px;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	padding: 20px 20px;
	width: 100%;
	height: 60px;
}
.birth_select {
  width: 27.9%;
}
.form_select::-ms-expand {
	display: none;
}
.form_select:focus {
	border: 1px solid #0B342D;
	box-shadow: none;
	outline: none;
}
.form_submit {
	-webkit-appearance: none;
	background-image: none;
	border: none;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
}
.form_submit:focus-visible {
	outline: 1px solid #0B342D;
}
.form_submit::-moz-foucus-inner {
	border: none;
	padding: 0;
}
.form_error_message {
	font-weight: 700;
	font-size: 10px;
	line-height: 100%;
	letter-spacing: 0.08em;
	color: #D2004C;
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.form_error_message img {
	margin-right: 4px;
}
.form_text_half {
  width: 47.5%;
}

@media only screen and (max-width: 749px) {
	.form_text {
		font-size: 16px;
		line-height: 16px;
		padding: 17px 14px;
		height: 50px;
	}
  .form_text_half {
    width: 100%;
  }
	.form_textarea {
		font-size: 16px;
		line-height: 140%;
		padding: 16px 14px;
		height: 103px;
	}
	.form_radio_text {
		font-size: 16px;
	}
	.form_check_text {
		font-size: 16px;
    line-height: 140%;
	}
	.form_select {
		font-size: 16px;
		line-height: 16px;
		padding: 17px 14px;
		height: 50px;
	}
  .birth_select {
    width: 36.6%;
  }
}

/* formページのベース */
#form > .inner {
  padding: 60px 20px 120px;
	max-width: 1120px;
}
#form h1 {
  font-weight: 500;
  font-size: 24px;
  line-height: 180%;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.form-main-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}
.form-wrapper {
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(31, 98, 86, 0.06);
  border-radius: 10px 60px;
}
.form-wrapper:not(:first-of-type) {
  margin-top: 60px;
}
.form-wrapper .inner {
  padding: 60px 20px 80px;
  max-width: 840px;
  z-index: 1;
  position: relative;
}
h2.form-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.08em;
  color: #1F6256;
  padding-bottom: 30px;
  margin-bottom: 60px;
  border-bottom: 1px solid #1F6256;
}
.form-content:not(:last-of-type) {
  margin-bottom: 80px;
}
.form-wrapper h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.form-wrapper h3 img {
  margin-right: 10px;
}
.form-item-wrapper {
  display: flex;
  justify-content: space-between;
}
.form-item-wrapper .form-item {
  width: 47.5%;
}
.form-item {
  margin-bottom: 60px;
}
.form-item label {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.form-item label span {
  font-size: 10px;
  color: #D2004C;
  margin-left: 6px;
  vertical-align: super;
}
.form-item label span.attention {
  color: #0B342D;
  font-size: 11px;
  margin-left: 20px;
  vertical-align: baseline;
}
.form-item-birth .birth_select {
  margin-right: 10px;
}
.form-item-birth .birth_select:last-of-type {
  margin-left: 40px;
}
.form-caution {
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.form-submit-check {
  text-align: center;
  margin-bottom: 20px;
}
.form-submit-check label {
  display: inline-block;
}
.form-submit-check a {
  color: #08A9CC;
  text-decoration: underline;
}
.form-submit-btn .btn-green {
  height: 80px;
  line-height: 80px;
  font-size: 20px;
  width: 500px;
  margin: 0 auto;
}
.confirm-table {
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}
.confirm-table tr {
  border-bottom: 1px solid #BDE1CF;
  margin-bottom: 30px;
}
.confirm-table th {
  width: 27.3%;
  font-weight: 700;
  padding: 30px 20px 30px 0;
  vertical-align: top;
}
.confirm-table td {
  width: 72.7%;
  padding: 30px 0;
}
.confirm-table td.textarea {
  line-height: 180%;
}
.confirm-table tr:first-of-type th,
.confirm-table tr:first-of-type td {
  padding-top: 0;
}
.form-submit-btn-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  max-width: 569px;
  margin: 0 auto;
}
.form-submit-btn-wrapper .btn-white {
  width: 41.7%;
  height: 70px;
  line-height: 70px;
  font-size: 16px;
  font-weight: 500;
}
.form-submit-btn-wrapper .btn-green {
  width: 47.8%;
  height: 70px;
  line-height: 70px;
  font-size: 20px;
}

@media only screen and (max-width: 749px) {
  #form > .inner {
    padding: 20px 0 0;
  }
  #form h1 {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 32px;
  }
  .form-main-text {
    padding: 0 20px;
  }
  .form-wrapper {
    border-radius: 0;
    box-shadow: none;
  }
  .form-wrapper:not(:first-of-type) {
    margin-top: 0;
  }
  h2.form-title {
    font-size: 16px;
    padding-bottom: 16px;
    margin-bottom: 40px;
    line-height: 140%;
  }
  .form-content:not(:last-of-type) {
    margin-bottom: 56px;
  }
  .form-wrapper h3 {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .form-wrapper h3 img {
    width: 16px;
    height: 16px;
  }
  .form-item-wrapper {
    display: block;
  }
  .form-item-wrapper .form-item {
    width: 100%;
  }
  .form-item {
    margin-bottom: 32px;
  }
  .form-item label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .form-item label span.attention {
    margin: 8px 0 0 0;
    display: block;
  }
  .form-item-birth .birth_select:last-of-type {
    margin-left: 24px;
  }
  .form-caution {
    margin-bottom: 32px;
  }
  .form-submit-check {
    margin-bottom: 32px;
  }
  .form-submit-btn .btn-green {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }
  .confirm-table {
    font-size: 14px;
  }
  .confirm-table th {
    width: 37.7%;
    line-height: 140%;
    padding: 16px 20px 16px 0;
  }
  .confirm-table td {
    width: 62.3%;
    padding: 16px 0;
  }
  .confirm-table tr:first-of-type th,
  .confirm-table tr:first-of-type td {
    padding-top: 0;
  }
  .form-submit-btn-wrapper {
    display: block;
    padding: 0 20px;
  }
  .form-submit-btn-wrapper .btn-green {
    width: 100%;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
  }
  .form-submit-btn-wrapper .btn-white {
    width: 71.4%;
    margin: 24px auto 0;
    height: 50px;
    line-height: 50px;
  }
}

/* リクエスト */
.form-request-flow {
  max-width: 733px;
  margin: 0 auto 164px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-request-flow-item {
  position: relative;
  width: 24.1%;
  text-align: center;
}
.form-request-flow-item p {
  position: absolute;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.08em;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  white-space: nowrap
}
.new-ranch-btn {
  margin-bottom: 0;
}
.new-ranch-btn .btn-white {
  width: 360px;
  height: 60px;
  line-height: 60px;
  font-weight: 500;
  font-size: 18px;
}
.ranch-input-box {
  margin-top: 60px;
}
.ranch-input-box .btn-white {
  width: 500px;
  height: 60px;
  line-height: 60px;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 60px;
}
.form-drop-wrapper {
  text-align: center;
  background-image: url(../images/request/drop-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 200px;
  padding: 49px 0;
}
.form-drop-wrapper p {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  margin-bottom: 16px;
}
.form-drop-wrapper p span {
  display: block;
  margin-top: 16px;
  font-size: 10px;
}
.form-request-footer {
  text-align: center;
  margin-top: 120px;
}
.form-request-footer-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.form-request-footer .form-submit-check {
  margin-bottom: 40px;
}
.form-request-footer .btn-green {
  width: 316px;
  height: 70px;
  line-height: 70px;
}
.form-request-link {
  text-align: center;
  margin-top: 20px;
}
.form-request-link .text-link {
  font-weight: 500;
  font-size: 10px;
  line-height: 140%;
}
.form-request-link .text-link:first-of-type {
  margin-right: 20px;
}
.confirm-table td.image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.confirm-table td.image img {
  width: 48.3%;
  aspect-ratio: 23 / 13;
  object-fit: cover;
}
.confirm-table td.image img:nth-child(n+3) {
  margin-top: 20px;
}

.request .wave{
  display:none;
}
@media only screen and (max-width: 749px) {
  .request .wave{
    display:block;
    margin-top: -120px;
    margin-bottom: -60px;
  }
  .request .form-main-text {
    margin-bottom: 32px;
  }
  .form-request-flow {
    width: calc(100vw - 80px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }
  .form-request-flow-item {
    width: 27.1%;
  }
  .form-request-flow-item p {
    font-size: 11px;
  }
  .new-ranch-btn .btn-white {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    width: 100%;
  }
  .ranch-input-box .btn-white {
    font-size: 15px;
    width: 100%;
  }
  .form-drop-wrapper {
    background-image: none;
    height: auto;
    padding: 0;
  }
  .form-request-footer {
    padding-left: 20px;
    padding-right: 20px;
    margin-top:60px;
  }
  .form-request-footer-title {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 32px;
  }
  .form-request-footer .form-submit-check {
    margin-bottom: 32px;
  }
  .form-request-footer .btn-green {
    width: 100%;
    height: 60px;
    line-height: 60px;
  }
  .form-request-link {
    margin-top: 14px;
  }
  .form-request-link .text-link {
    font-size: 11px;
  }
}

/* リクエスト 完了ページ */
#complete {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#complete h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 60px;
}
#complete p {
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 60px;
}
#complete .btn-yellow {
  margin: 0 auto;
}

@media only screen and (max-width: 749px) {
  #complete {
    width: 100%;
    padding: 0 40px;
  }
  #complete h1 {
    font-size: 40px;
    margin-bottom: 32px;
  }
  #complete p {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

/* 購入ページ */
.payment h2.form-title {
  font-size: 22px;
  text-align: left;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.form-item-grass-image {
  width: 18.8%;
}
.form-item-grass-content {
  width: 77.3%;
  line-height: 160%;
  letter-spacing: 0.08em;
}
.form-item-grass-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.form-item-grass-title span {
  display: block;
  font-weight: 500;
  font-size: 14px;
}
.form-item-grass-text {
  font-weight: 500;
  font-size: 12px;
}
.payment .confirm-table th {
  font-size: 16px;
  letter-spacing: 0.08em;
}
.payment .confirm-table th.num {
  vertical-align: middle;
}
.payment .confirm-table td {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.payment .confirm-table td.sum {
  font-weight: 700;
}
.payment .confirm-table td.credit img {
  height: 20px;
}
.payment-type-wrapper {
  display: flex;
  justify-content: space-between;
}
.payment-type-wrapper label {
  cursor: pointer;
}
.payment .form_radio_text {
  font-size: 14px;
}
.payment .form_radio + .form_radio_text::before {
  width: 26px;
  height: 26px;
}
.payment .form_radio + .form_radio_text::after {
  width: 12px;
  height: 12px;
  top: 7px;
  left: 7px;
}
#card-element-credit {
  margin-top: 20px;
}
#card-element-credit img {
  height: 20px;
}
#card-element-coupon {
  margin-top: 20px;
}
.payment-comment-check {
  margin-top: 20px;
}
.payment-comment-check label {
  margin-bottom: 0;
}
.payment-btn {
  margin-top: 60px;
}
.payment-btn .btn-green {
  width: 500px;
  height: 80px;
  font-size: 20px;
  margin: 0 auto;
}

@media only screen and (max-width: 749px) {
  .payment h2.form-title {
    font-size: 16px;
    padding-bottom: 16px;
  }
  .form-item-grass-image {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  .form-item-grass-image img {
    width: 21.1%;
    aspect-ratio: 1 / 1;
    margin-right: 16px;
  }
  .form-item-grass-title {
    width: 72.2%;
    margin-bottom: 0;
    font-size: 16px;
  }
  .form-item-grass-title span {
    font-size: 12px;
  }
  .form-item-grass-content {
    width: 100%;
    font-size: 12px;
  }
  .payment .confirm-table th {
    font-size: 14px;
    vertical-align: middle;
  }
  .payment .confirm-table th.payment {
    display: block;
    width: 100%;
  }
  .payment .confirm-table td.payment {
    display: block;
    width: 265%;
    padding: 0 0 32px;
  }
  .payment-type-wrapper {
    display: block;
  }
  .payment-type-wrapper label {
    display: block;
    margin-bottom: 16px;
  }
  #card-element-credit {
    display: none!important;
  }
  #card-element-credit-sp {
    margin-top: 8px;
    margin-bottom: 24px;
    padding-left: 40px;
  }
  #card-element-credit-sp img {
    height: 20px;
  }
  .payment-btn .btn-green {
    width: 350px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }
}

/* 定期購入 */
.subscription-wrapper {
  display: flex;
  justify-content: space-between;
}
.subscription-card {
  display: inline-block;
  width: 30%;
}
.subscription-select {
  opacity: 0;
}
.subscription-select {
  display: block;
  text-align: center;
  line-height: 45px;
  padding: 0 5px;
  cursor: pointer;
  color: #333333;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
  background: #EEFECD;
  transition: 0.5s;
  border-radius: 4px;
}
.selectradio-label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.subscription-select:checked + label::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 4px solid #227D51;
  position: absolute;
  top: 0;
  border-radius: 20px;
}
.subscription-select:checked + label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
	top: 10px;
  right: 10px;
  background-image: url(../images/payment/icon-check.svg);
  background-size: contain;
	background-repeat: no-repeat;
}
.selectradio-label .image {
  background: #E0F0BE;
  border-radius: 20px 20px 0px 0px;
  text-align: center;
  padding: 40px 0;
}
.selectradio-label .content {
  background: #F0F4F4;
  border-radius: 0px 0px 20px 20px;
  padding: 30px 20px;
}
.selectradio-label .content h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.selectradio-label .content .price {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.selectradio-label .content .price span.monthly {
  font-size: 10px;
  color: #E0F0BE;
  background: #227D51;
  border-radius: 4px;
  line-height: 100%;
  padding: 4px 7px 4px 6px;
  margin-right: 10px;
}
.selectradio-label .content .price span.tax {
  font-size: 10px;
}
.selectradio-label .content .description {
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 749px) {
  .subscription-wrapper {
    display: block;
  }
  .subscription-select:checked + label::before {
    width: 26px;
    height: 26px;
    top: 14px;
    right: 14px;
  }
  .subscription-select:checked + label::after {
    left: 0;
  }
  .subscription-card {
    display: block;
    width: 100%;
  }
  .subscription-card:not(:first-of-type) {
    margin-top: 16px;
  }
  .selectradio-label {
    padding: 20px;
    background: #F0F4F4;
    border-radius: 20px;
  }
  .selectradio-label-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .selectradio-label-inner .image {
    width: 43.5%;
    height: 76px;
    line-height: 76px;
    border-radius: 0;
    padding: 0;
  }
  .selectradio-label-inner .image img {
    height: 32px;
  }
  .selectradio-label-inner .content {
    width: 51.3%;
    padding: 0;
  }
  .selectradio-label .content h3 {
    font-size: 16px;
    margin-bottom: 12px;
    justify-content: flex-start;
  }
  .selectradio-label .content .price {
    margin-bottom: 0;
  }
  .selectradio-label .description {
    margin-top: 16px;
    font-weight: 500;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0.08em;
  }
}

/* ひとくち購入 */
.form-content.part-order {
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.08em;
}

/* 購入完了ページ */
#form.complete .form-wrapper {
  padding: 80px 0;
  text-align: center;
  position:relative;
  overflow: hidden;
}
#form.complete .form-wrapper ._content{
  position:relative;
}
#form.complete h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #227D51;
  margin-bottom: 40px;
}
#form.complete p {
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.08em;
}
#form.complete p.message {
  font-weight: 700;
  font-size: 24px;
  line-height: 180%;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
#form.complete .btn-green {
  width: 300px;
  height: 70px;
  line-height: 70px;
  margin: 60px auto 0;
}





input.is-invalid {
  background-color: #FDF7F9;
  color: #D2004C;
}
textarea.is-invalid {
  background-color: #FDF7F9;
  color: #D2004C;
}
select.is-invalid {
  background-color: #FDF7F9;
  color: #D2004C;
}














@media only screen and (max-width: 749px) {
  #form.complete > .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  #form.complete .form-wrapper {
    box-shadow: 0px 0px 40px rgb(31 98 86 / 6%);
    border-radius: 10px 60px;
    padding: 40px 20px;
  }
  #form.complete h1 {
    font-size: 30px;
    margin-bottom: 32px;
  }
  #form.complete p.message {
    font-size: 16px;
    margin-bottom: 32px;
  }
  #form.complete .btn-green {
    margin-top: 32px;
    font-size: 16px;
    width: 270px;
    height: 60px;
    line-height: 60px;
  }
}

/* 会員登録 */
@media only screen and (max-width: 749px) {
  #form.register > .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .form-wrapper.register {
    box-shadow: 0px 0px 40px rgba(31, 98, 86, 0.06);
    border-radius: 10px 60px;
  }
  .form-wrapper.register .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .form-submit-btn .btn-green.register {
    height: 50px;
    line-height: 50px;
  }
}
