<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Form -Common */
.form-area .row .td input {
  width: 100%;
  height: 42px;
  margin: 18px 0 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: 300;
  text-indent: 15px;
}

.form-area .row {
  margin: 0 0 40px;
}

.form-area .row.row--01 {
  display: flex;
  align-items: start;
  width: 100%;
}

.form-area .row.row--01 .td {
  width: 46.875%;
  margin: 0 80px 0 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.form-area .row.row--01 .td:last-of-type {
  margin: 0;
}

.form-area .row.row--01 .td span {
  font-weight: 700;
  color: #87a330;
}

.row--02 .select-wrap {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
}

.row--02 .select-wrap .selectBox {
  position: relative;
  max-width: 292px;
  width: 100%;
  height: 42px;
  padding: 10px 20px;
  margin: 0 14px 0 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: right 19px center;
  background-size: 18px 10px;
  font-weight: 500;
}

.row--02 .select-wrap .selectBox .select_label {
  position: relative;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
}

.row--02 .select-wrap .selectBox .select_label i {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/child/img/form/form_select-icon.png');
  z-index: 9;
}

.row--02 .select-wrap .selectBox .optionList{
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 2px);
  background-color: #f5f5f5;
  padding: 30px 22px;
  border-radius: 5px;
  border: 1px solid #ccc;
  z-index: 9;
}

.row--02 .select-wrap .selectBox.active .optionList {
  display: block;
}

.row--02 .select-wrap .selectBox.active::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.9);
}

.row--02 .select-wrap .selectBox.active .optionList {
  top: calc(100% - 1px);
  border-top: none;
}

.row--02 .select-wrap .selectBox.active .select_label i {
  transform: rotate(180deg) translateY(50%);
}

.row--02 .select-wrap .selectBox .optionList li {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 15px;
}

.row--02 .select-wrap .selectBox .optionList li:last-of-type {
  margin: 0;
}

.row--02 &gt; span {
  display: block;
  margin: 12px 0 0 10px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #3f3f3f;
  line-height: 1;
}

.row--02 input {
  width: 100%;
  min-height: 40px;
  height: 100%;
  margin: 0;
  border-radius: 5px;
  font-size: 1.6rem;
  text-indent: 15px;
  border: 1px solid #ccc;
}

.form-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-buttons button {
  width: 200px;
  height: 56px;
  margin: 0 10px ;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 30px;
  color: #fff;
}

@media(max-width:1200px) {
  .form-area .row .td input {
    height: 40px;
    margin: 15px 0 0;
  }

  .form-area .row {
    margin: 0 0 35px;
  }

  .form-area .row.row--01 .td {
    margin: 0 65px 0 0;
    font-size: 1.8rem;
  }
  
  .row--02 .select-wrap .selectBox {
    height: 40px;
  }

  .form-buttons button {
    width: 180px;
    height: 55px;
  }
  
}

@media(max-width:1024px) {
  .form-area .row .td input {
    height: 35px;
    font-size: 1.4rem;
    text-indent: 10px;
  }

  .form-area .row {
    margin: 0 0 30px;
  }

  .form-area .row.row--01 .td {
    margin: 0 50px 0 0;
  }

  .row--02 .select-wrap {
    margin: 0 0 10px;
  }

  .row--02 .select-wrap .selectBox {
    padding: 8px 15px;
  }

  .row--02 .select-wrap .selectBox .select_label {
    font-size: 1.6rem;
  }

  .row--02 .select-wrap .selectBox .optionList {
    padding: 20px 17px;
  }

  .row--02 .select-wrap .selectBox .optionList li {
    margin: 0 0 10px;
    font-size: 1.6rem;
  }

  .row--02 .select-wrap .selectBox .select_label i {
    width: 16px;
    height: 9px;
    right: 15px;
  }

  .row--02 input {
    min-height: 35px;
    text-indent: 10px;
  }

  .form-buttons button {
    width: 160px;
    height: 50px;
    margin: 0 8px;
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .form-area .row .td input {
    height: 30px;
    margin: 10px 0 0;
    font-size: 1.2rem;
    text-indent: 8px;
  }

  .form-area .row {
    margin: 0 0 25px;
  }

  .form-area .row.row--01 .td {
    margin: 0 35px 0 0;
    font-size: 1.6rem;
  }

  .row--02 .select-wrap {
    margin: 0 0 7px;
  }
  
  .row--02 .select-wrap .selectBox {
    height: 35px;
    padding: 8px 10px;
  }

  .row--02 input {
    min-height: 30px;
    font-size: 1.2rem;
    text-indent: 8px;
  }
  
  .form-buttons button {
    width: 140px;
    height: 45px;
    font-size: 1.4rem;
  }

  .row--02 .select-wrap .selectBox .select_label {
    font-size: 1.4rem;
  }

  .row--02 .select-wrap .selectBox .optionList {
    padding: 15px 12px;
  }
  
  .row--02 .select-wrap .selectBox .optionList li {
    margin: 0 0 8px;
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .form-area .row .td input {
    margin: 7px 0 0;
    font-size: 1.1rem;
    text-indent: 5px;
  }

  .form-area .row {
    margin: 0 0 20px;
  }

  .form-area .row.row--01 {
    flex-direction: column;
  }

  .form-area .row.row--01 .td {
    width: 100%;
    margin: 0 0 15px;
    font-size: 1.4rem;
  }

  .row--02 .select-wrap .selectBox {
    height: 30px;
    padding: 8px;
  }

  .row--02 .select-wrap .selectBox .select_label i {
    width: 13px;
    height: 7px;
    right: 8px;
  }
  
  .row--02 .select-wrap .selectBox .select_label {
    font-size: 1.2rem;
  }

  .row--02 .select-wrap .selectBox .optionList li {
    margin: 0 0 8px;
    font-size: 1.2rem;
  }

  .row--02 input {
    font-size: 1.1rem;
    text-indent: 5px;
  }

  .form-buttons button {
    width: 120px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Reserve - Apply - Form */
.apply-form .area--01 {
  border-bottom: 2px solid #eaefda;
}

.apply-form .area--01 .apply-calender input {
  position: relative;
  background-image: url("/child/img/form/form-calender-icon.png");
  background-size: 18px 20px;
  background-repeat: no-repeat;
  background-position: right 21px center;
}


.apply-form .area--01 .row .td &gt; span {
  display: block;
  margin: 10px 0 -2px 10px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #3f3f3f;
  line-height: 1;
}

.apply-form .area--02 {
  padding: 38px 0 0; 
}

.apply-form .area--02 .row--02 {
  display: flex;
  align-items: center;
  margin: -4px 0 35px;
} 

.apply-form .area--02 .row--02 .td {
  display: flex;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 0 80px 0 0;
}

.apply-form .area--02 .row--02 .td.td--02 {
  margin: 0;
}

.apply-form .area--02 .row--02 .td &gt; p {
  margin: 0 118px 0 0;
  font-size: 2rem;
  font-weight: 500;
}

.apply-form .area--02 .row--02 .td .check_box_wrap {
  display: flex;
  align-items: center;
  width: 50%;
}

.apply-form .area--02 .check_box_wrap label {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 104px 0 0;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 300;
  color: #6b6b6b;
}

.apply-form .area--02 .check_box_wrap label:last-of-type {
  margin: 0;
}

.apply-form .area--02 .check_box_wrap label i {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  background-image: url('/child/img/form/form_check-icon.png');
  background-size: 18px auto;
}

.apply-form .area--02 .check_box_wrap label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.apply-form .area--02 .check_box_wrap label input[type='radio']:checked ~ i {
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('/child/img/form/form_check-icon-on.png');
}

.apply-form .area--02 .row--03 {
  margin: 0 0 20px;
}

.apply-form .area--02 .row--03 p {
  margin: 0 0 13px;
  font-size: 2rem;
  font-weight: 500;
}

.apply-form .area--02 .row--03 .td {
  width: 100%;
  min-height: 170px;
  height: 100%;
}

.apply-form .area--02 .row--03 .td textarea {
  resize: none;
  width: 100%;
  min-height: 170px;
  height: 100%;
  margin: 0 0 36px;
  padding:25px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.apply-form .area--02 .row--03 .form_privacy {
  width: 100%;
  min-height: 170px;
  height: 100%;
  padding:21px 25px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.apply-form .area--02 .row--03 .form_privacy p {
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 300;
}

.apply-form .area--02 .form-agree  {
  position: relative;
  margin: 0 0 36px;
}

.apply-form .area--02 .form-agree .agree-inner {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 300;
  color: #6b6b6b;
}

.apply-form .area--02 .form-agree .agree-inner  span {
  margin: 0 35px 0 0;
  font-size: 2rem;
  font-weight: 300;
  color: #383838;
}

.apply-form .area--02 .form-agree .agree-inner i {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  background-image: url('/child/img/form/form_check-icon.png');
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: center;
}

.apply-form .area--02 .form-agree .agree-inner input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.apply-form .area--02 .form-agree .agree-inner input[type='checkbox']:checked ~ i {
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('/child/img/form/form_check-icon-on.png');
}

.apply-form .form-buttons button.apply_button {
  background-color: #87a330;
}

.apply-form .form-buttons button.cancel_button {
  background-color: #a9a9a9;
}

@media(max-width:1200px) {
  .apply-form .area--02 {
    padding:35px 0 0;
  }

  .apply-form .area--02 .row--02 {
    margin: -4px 0 30px;
  }

  .apply-form .area--02 .row--02 .td &gt; p {
    margin: 0 90px 0 0;
    font-size: 1.8rem;
  }

  .apply-form .area--02 .check_box_wrap label {
    margin: 0 70px 0 0;
    font-size: 1.8rem;
  }
  
  .apply-form .area--02 .row--02 .td {
    margin: 0 65px 0 0;
  }

  .apply-form .area--02 .row--03 p {
    margin: 0 0 10px;
    font-size: 1.8rem;
  }

  .apply-form .area--02 .row--03 .td textarea {
    margin: 0 0 31px;
    padding: 20px;
  }

  .apply-form .area--02 .row--03 .form_privacy {
    padding: 16px 20px;
  }

  .apply-form .area--02 .form-agree .agree-inner {
    font-size: 1.8rem;
  }

  .apply-form .area--02 .form-agree .agree-inner span {
    margin: 0 30px 0 0;
    font-size: 1.8rem;
  }

  .apply-form .area--02 .row--03 {
    margin: 0 0 15px;
  }

  .apply-form .area--02 .form-agree {
    margin: 0 0 35px;
  }
}

@media(max-width:1024px) {
  .apply-form .area--01 .row .td &gt; span {
    margin: 8px 0 -2px 8px;
    font-size: 1.4rem;
  }

  .apply-form .area--02 {
    padding:30px 0 0;
  }

  .apply-form .area--02 .row--02 {
    margin: -4px 0 25px;
  }

  .apply-form .area--02 .row--02 .td &gt; p {
    margin: 0 60px 0 0;
  }

  .apply-form .area--02 .check_box_wrap label {
    margin: 0 40px 0 0;
  }

  .apply-form .area--02 .check_box_wrap label i, 
  .apply-form .area--02 .form-agree .agree-inner i {
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
    background-size: 16px auto;
  }

  .apply-form .area--02 .check_box_wrap label input[type='radio']:checked ~ i, 
  .apply-form .area--02 .form-agree .agree-inner input[type='checkbox']:checked ~ i {
    background-size: 16px auto;
  }
 
  .apply-form .area--02 .row--02 .td {
    margin: 0 35px 0 0;
  }

  .apply-form .area--02 .row--03 .td textarea {
    margin: 0 0 25px;
    padding: 15px;
  }

  .apply-form .area--02 .row--03 .form_privacy {
    padding: 11px 15px;
  }
  
  .apply-form .area--02 .row--03 .form_privacy p {
    font-size: 1.3rem;
  }

  .apply-form .area--02 .form-agree .agree-inner span {
    margin: 0 25px 0 0;
  }
  
  .apply-form .area--02 .row--03 {
    margin: 0 0 12px;
  }

  .apply-form .area--02 .form-agree {
    margin: 0 0 30px;
  }
}

@media(max-width:768px) {
  .apply-form .area--01 .row .td &gt; span {
    font-size: 1.2rem;
  }

  .apply-form .area--02 {
    padding:25px 0 0;
  }

  .apply-form .area--02 .row--02 {
    margin: -4px 0 20px;
  }

  .apply-form .area--02 .row--02 .td &gt; p {
    margin: 0 30px 0 0;
    font-size: 1.6rem;
  }

  .apply-form .area--02 .check_box_wrap label {
    margin: 0 10px 0 0;
    font-size: 1.6rem;
  }

  .apply-form .area--02 .row--03 p {
    margin: 0 0 7px;
    font-size: 1.6rem;
  }

  .apply-form .area--02 .row--03 .td textarea {
    margin: 0 0 20px;
    padding: 10px;
  }

  .apply-form .area--02 .form-agree .agree-inner {
    font-size: 1.6rem;
  }

  .apply-form .area--02 .form-agree .agree-inner span {
    margin: 0 20px 0 0;
    font-size: 1.6rem;
  }

  .apply-form .area--02 .row--03 .form_privacy p {
    font-size: 1.2rem;
  }

  .apply-form .area--02 .row--03 {
    margin: 0 0 10px;
  }

  .apply-form .area--02 .form-agree {
    margin: 0 0 25px;
  }
}

@media(max-width:640px ){
  .apply-form .area--02 .row--02 {
    flex-direction: column;
    align-items: start;
  }
  
  .apply-form .area--02 .row--02 .td {
    margin: 0 0 10px;
  }

  .apply-form .area--02 .row--02 .td &gt; p {
    margin: 0 40px 0 0;
  }

  .apply-form .area--02 .check_box_wrap label {
    margin: 0 50px 0 0;
  }

  
}

@media(max-width:500px) {
  .apply-form .area--01 .row .td &gt; span {
    margin: 6px 0 0 6px;
    font-size: 1.1rem;
  }
  
  .apply-form .area--02 {
    padding:20px 0 0;
  }
  
  .apply-form .area--02 .row--02 {
    margin: -4px 0 15px;
  }
  
  .apply-form .area--02 .row--02 .td &gt; p {
    margin: 0 40px 0 0;
    font-size: 1.4rem;
  }

  .apply-form .area--02 .check_box_wrap label {
    margin: 0 30px 0 0;
    font-size: 1.4rem;
  }

  .apply-form .area--02 .check_box_wrap label i,
  .apply-form .area--02 .form-agree .agree-inner i {
    width: 14px;
    height: 14px;
    margin: 0 6px 0 0;
    background-size: 14px auto;
  }

  .apply-form .area--02 .check_box_wrap label input[type='radio']:checked ~ i, 
  .apply-form .area--02 .form-agree .agree-inner input[type='checkbox']:checked ~ i {
    background-size: 14px auto;
  }
 

  .apply-form .area--02 .row--03 p {
    font-size: 1.4rem;
  }

  .apply-form .area--02 .row--03 .td textarea {
    margin: 0 0 15px;
  }

  .apply-form .area--02 .form-agree .agree-inner {
    font-size: 1.4rem;
  }

  .apply-form .area--02 .form-agree .agree-inner span {
    margin: 0 15px 0 0;
    font-size: 1.4rem;
  }

  .apply-form .area--02 .row--03 .form_privacy p {
    font-size: 1.1rem;
  }

  .apply-form .area--02 .form-agree {
    margin: 0 0 20px;
  }
}

/* Calender Plougin */

.ui-datepicker-trigger {
  display: none;
}

/* 罹섎┛�� 理쒖긽�� */
.ui-datepicker {
  display: none;
  max-width: 283px;
  width: 100%;
  box-shadow: 1px 1px 5px 1px #f6f6f6;
}

/* �꾩껜 諛뺤뒪 */
.ui-widget.ui-widget-content {
  border: 0px;
  padding: 0;
}

/* �ㅻ뜑 (�붿궡��/�좎쭨�쒖떆 �곸뿭) */
.ui-widget-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #87a330;
  border: 0px;
  border-radius: 0px;
  padding: 10px 15px;
}

/* �댁쟾 �붿궡�� */
.ui-datepicker-prev {
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
  font-size: 0;
  order: -1;
}

/* �ㅼ쓬 �붿궡�� */
.ui-datepicker-next {
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  font-size: 0;
}

/* �꾩썡 �띿뒪�� 臾띠쓬 */
.ui-datepicker .ui-datepicker-title {
  color: #fff;
  order: -1;
  margin: 0 5px;
  font-size: 1.8rem;
}

/* �꾨룄 �レ옄留� */
.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  color: #fff;
  background-color: #87a330;
  font-size: 1.8rem;
}

/* �� */
.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  color: #fff;
  background-color: #87a330;
  font-size: 1.8rem;
}

/* �붿씪 �뚯씠釉� */
.ui-datepicker .ui-datepicker-calendar {
  width: 100%;
  padding: 15px 10px;
  background-color: #fff;
}

/* �붿씪 湲���(��~��) */
.ui-datepicker-calendar thead {
  background-color: #fff;
}

/* �붿씪 �곸뿭 */
.ui-datepicker thead th {
  background-color: #fff;
}

/* �붿씪 �띿뒪�� */
.ui-datepicker thead th span {
  font-size: 1.8rem;
  font-weight: 600;
  color: inherit;
}

.ui-datepicker-calendar tbody tr td {
  text-align: center;
}

/* 吏���,�ㅼ쓬�� �붿씪 */
.ui-datepicker-calendar tbody tr td.ui-datepicker-other-month {
  color: #ccc;
}

/* �쇱옄 湲곕낯�곸뿭 */
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 5px 7px;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 24px;
}

/* �ㅻ뒛�쇱옄 */
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: #87a330;
}

/* �좏깮 �쇱옄 */
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background: #87a330;
  color: #fff;
}

@media (max-width: 1024px) {
  .ui-datepicker {
    max-width: 266px;
  }

  /* �꾩썡 �띿뒪�� 臾띠쓬 */
  .ui-datepicker .ui-datepicker-title,
  .ui-datepicker .ui-datepicker-title .ui-datepicker-year,
  .ui-datepicker .ui-datepicker-title .ui-datepicker-month,
  .ui-datepicker thead th span,
  .ui-state-default,
  .ui-widget-content .ui-state-default,
  .ui-widget-header .ui-state-default,
  .ui-button,
  html .ui-button.ui-state-disabled:hover,
  html .ui-button.ui-state-disabled:active {
    font-size: 1.6rem;
  }

  /* �댁쟾,�ㅼ쓬 �붿궡�� */
  .ui-datepicker-prev,
  .ui-datepicker-next {
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
  }

  .ui-state-default,
  .ui-widget-content .ui-state-default,
  .ui-widget-header .ui-state-default,
  .ui-button,
  html .ui-button.ui-state-disabled:hover,
  html .ui-button.ui-state-disabled:active {
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .ui-datepicker {
    max-width: 245px;
  }

  /* �꾩썡 �띿뒪�� 臾띠쓬 */
  .ui-datepicker .ui-datepicker-title,
  .ui-datepicker .ui-datepicker-title .ui-datepicker-year,
  .ui-datepicker .ui-datepicker-title .ui-datepicker-month,
  .ui-datepicker thead th span,
  .ui-state-default,
  .ui-widget-content .ui-state-default,
  .ui-widget-header .ui-state-default,
  .ui-button,
  html .ui-button.ui-state-disabled:hover,
  html .ui-button.ui-state-disabled:active {
    font-size: 1.4rem;
  }

  .ui-datepicker .ui-datepicker-calendar {
    padding: 10px 8px;
  }
}

@media (max-width: 500px) {
  .ui-datepicker {
    max-width: 228px;
  }

  /* �꾩썡 �띿뒪�� 臾띠쓬 */
  .ui-datepicker .ui-datepicker-title,
  .ui-datepicker .ui-datepicker-title .ui-datepicker-year,
  .ui-datepicker .ui-datepicker-title .ui-datepicker-month,
  .ui-datepicker thead th span,
  .ui-state-default,
  .ui-widget-content .ui-state-default,
  .ui-widget-header .ui-state-default,
  .ui-button,
  html .ui-button.ui-state-disabled:hover,
  html .ui-button.ui-state-disabled:active {
    font-size: 1.2rem;
  }

  /* �댁쟾,�ㅼ쓬 �붿궡�� */
  .ui-datepicker-prev,
  .ui-datepicker-next {
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
  }
}


/* Donate - Form02 - Donat-Info-Form */
.donate-info-form .form-area .row--01 .td &gt; span {
  display: block;
  margin: 9px 0 0 18px;
  font-size: 1.6rem;
  font-weight: 300 ;
  color: #3f3f3f ;
  line-height: 1;
}

.donate-info-form .row--02 {
  margin: -3px 0 0;
}

.donate-info-form .row--02 p {
  width: 100%;
  margin: 0 0 17px;
  font-size: 2rem;
  font-weight: 500;
}

/* Donate - Form03 - Donat-Cms-Form  */
.donate-cms-form .form-area .row--02 {
  margin: 0;
}

.donate-cms-form .form-area .row--02 .td {
  display: flex;
  align-items: center;
  line-height: 1;
}

.donate-cms-form .form-area .row--02 .td &gt; p {
  margin: 0 208px 0 0;
  font-size: 2rem;
  font-weight: 500;
}

.donate-cms-form .form-area .row--02 .td .withdraw-date-wrap {
  display: flex;
  align-items: center;
}

.donate-cms-form .form-area .withdraw-date-wrap {
  position: relative;
}

.donate-cms-form .form-area .withdraw-date-wrap label {
  display: flex;
  align-items: center;
  margin: 0 81px 0 0;
}

.donate-cms-form .form-area .withdraw-date-wrap label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.donate-cms-form .form-area .withdraw-date-wrap label input[type="radio"]:checked ~ i {
  background-image: url('/child/img/form/form_check-icon02-on.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.donate-cms-form .form-area .withdraw-date-wrap label i {
  display: block;
  width: 18px;
  height: 18px;
  background-image: url('/child/img/form/form_check-icon02.png');
  background-size: 18px auto;
  background-position: center;
  background-repeat: no-repeat;
}

.donate-cms-form .form-area .withdraw-date-wrap label p {
  margin: 0 0 0 10px;
  font-size: 2rem;
  font-weight: 300;
  color: #6b6b6b;
}

/* Donate - Form04 - Donat-Receipt-Form  */
.donate-receipt-form .form-area .form {
  margin: 0 0 40px;
}

.donate-receipt-form .row--02 {
  margin: -2px 0 40px;
  padding:0 0 40px;
  border-bottom: 2px solid #eaefda;
}

.donate-receipt-form .row--02 p {
  width: 100%;
  margin: 0 0 17px;
  font-size: 2rem;
  font-weight: 500;
}

.donate-receipt-form .row--02 span {
  display: block;
  margin: 12px 0 0 10px;
  line-height: 1;
}

.donate-receipt-form .row--02 .selectBox span {
  margin: 0;
}

.donate-receipt-form .required-agree-wrap {
  width: 100%;
  padding: 32px 40px;
  margin-bottom: 50px;
  background-color: #f6f6f6;
}

.donate-receipt-form .required-agree-wrap label {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0 0 8px;
}

.donate-receipt-form .required-agree-wrap label:last-of-type {
  margin: 0;
}

.donate-receipt-form .required-agree-wrap label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.donate-receipt-form .required-agree-wrap label input[type="checkbox"]:checked ~ i {
  background-image: url('/child/img/form/form-check-icon03-on.png');
}

.donate-receipt-form .required-agree-wrap label i {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  background-size: cover;
  background-image: url('/child/img/form/form-check-icon03.png');
  background-position: center;
}

.donate-receipt-form .required-agree-wrap .agree-text-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 2rem;
  color: #878787;
}

.donate-receipt-form .agree-text-wrap .button--privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 34px;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  font-size: 2rem;
  color: #393939;
}

.donate-receipt-form .agree-all {
  display:flex;
  align-items: center;
  position: relative;
  margin: 15px 0 0;
  font-size: 1.8rem;
}

.donate-receipt-form .agree-all input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.donate-receipt-form .agree-all input[type="checkbox"]:checked ~ i {
  background-image: url('/child/img/form/form-check-icon03-on.png');
}

.donate-receipt-form .agree-all i {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  background-image: url('/child/img/form/form-check-icon03.png');
  background-position: center;
  background-size: cover;
}


.donate-receipt-form .subscription_button {
  background-color: #87a330;
}

.donate-receipt-form .cancel_button {
  background-color: #a9a9a9;
}

@media(max-width:1200px) {
  .donate-info-form .row--02 p, 
  .donate-receipt-form .row--02 p {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }

  .donate-cms-form .form-area .row--02 .td &gt; p {
    margin: 0 160px 0 0;
    font-size: 1.8rem;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label {
    margin: 0 60px 0 0;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label p {
    font-size: 1.8rem;
  }

  .donate-receipt-form .form-area .form {
    margin: 0 0 30px;
  }

  .donate-receipt-form .row--02 {
    margin: -2px 0 30px;
    padding:0 0 30px
  }

  .donate-receipt-form .required-agree-wrap {
    padding: 22px 30px;
    margin-bottom: 40px;
  }

  .donate-receipt-form .required-agree-wrap .agree-text-wrap {
    font-size: 1.8rem;
  }

  .donate-receipt-form .agree-text-wrap .button--privacy {
    width: 70px;
    height: 30px;
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .donate-info-form .form-area .row--01 .td &gt; span, 
  .row--02 &gt; span {
    margin: 8px 0 -2px 8px;
    font-size: 1.4rem;
  }

  .donate-cms-form .form-area .row--02 .td &gt; p {
    margin: 0 120px 0 0;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label {
    margin: 0 40px 0 0;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label i,
  .donate-receipt-form .agree-all i {
    width: 16px;
    height: 16px;
    background-size: cover;
  }

  .donate-receipt-form .form-area .form {
    margin: 0 0 20px;
  }

  .donate-receipt-form .row--02 {
    margin: -2px 0 20px;
    padding:0 0 20px
  }

  .donate-receipt-form .row--02 span {
    margin: 8px 0 0 6px;
  }

  .donate-receipt-form .required-agree-wrap {
    padding: 17px 25px;
    margin-bottom: 30px;
  }

  .donate-receipt-form .agree-text-wrap .button--privacy {
    width: 60px;
  }

  .donate-receipt-form .required-agree-wrap label i {
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
  }

  .donate-receipt-form .agree-all {
    margin: 10px 0 0;
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .donate-info-form .form-area .row--01 .td &gt; span,
  .row--02 &gt; span {
    font-size: 1.2rem;
  }

  .donate-info-form .row--02 p, 
  .donate-receipt-form .row--02 p {
    font-size: 1.6rem;
    margin: 0 0 10px;
  }

  .donate-cms-form .form-area .row--02 .td &gt; p {
    margin: 0 80px 0 0;
    font-size: 1.6rem;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label {
    margin: 0 20px 0 0;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label p {
    margin: 0 0 0 8px;
    font-size: 1.6rem;
  }

  .donate-receipt-form .form-area .form {
    margin: 0 0 15px;
  }

  .donate-receipt-form .row--02 {
    margin: -2px 0 15px;
    padding:0 0 15px
  }

  .donate-receipt-form .required-agree-wrap {
    padding: 12px 20px;
    margin-bottom: 20px;
  }

  .donate-receipt-form .required-agree-wrap .agree-text-wrap {
    font-size: 1.6rem;
  }

  .donate-receipt-form .agree-text-wrap .button--privacy {
    width: 50px;
    height: 25px;
    font-size: 1.6rem;
  }

  .donate-receipt-form .agree-all {
    margin: 8px 0 0;
    font-size: 1.4rem;
  }
}

@media(max-width: 500px) {
  .donate-info-form .form-area .row--01 .td &gt; span,
  .row--02 &gt; span {
    margin: 6px 0 0 6px;
    font-size: 1.1rem;
  }

  .donate-info-form .row--02 p, 
  .donate-receipt-form .row--02 p {
    font-size: 1.4rem;
    margin: 0 0 7px;
  }

  .donate-cms-form .form-area .row--02 .td &gt; p {
    margin: 0 40px 0 0;
    font-size: 1.4rem;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label {
    margin: 0 10px 0 0;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label p {
    margin: 0 0 0 6px;
    font-size: 1.4rem;
  }

  .donate-cms-form .form-area .withdraw-date-wrap label i {
    width: 14px;
    height: 14px;
    background-size: 14px auto;
  }
  
  .donate-receipt-form .row--02 span {
    margin: 6px 0 0 4px;
  }

  .donate-receipt-form .required-agree-wrap {
    padding: 8px 8px;
    margin-bottom: 15px;
  }

  .donate-receipt-form .required-agree-wrap .agree-text-wrap {
    font-size: 1.4rem;
  }

  .donate-receipt-form .agree-text-wrap .button--privacy {
    width: 40px;
    height: 22px;
    font-size: 1.4rem;
  }

  .donate-receipt-form .required-agree-wrap label i,
  .donate-receipt-form .agree-all i {
    width: 14px;
    height: 14px;
    margin: 0 5px 0 0;
    background-size: 14px 14px;
  }

  .donate-receipt-form .agree-all {
    font-size: 1.2rem;
  }
}

/* Modal Common */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.open {
  display: block;
}

.modal .modal-container {
  position: relative;
  max-width: 750px;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.modal .modal-container .modal-inner {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 15px;
}

.modal .modal-container .modal-inner.on {
  display: block;
}

.modal .modal-container .modal-inner .modal-contents {
  position: relative;
  padding: 37px 39px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #d7d7d7;
}

.modal .modal-container .modal-inner .modal-contents .title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

.modal .modal-container .modal-inner .modal-contents .button {
  display: block;
  position: absolute;
  top: 39px;
  right: 39px;
  width: 34px;
  height: 34px;
  z-index: 99999;
}

.modal .modal-container .modal-inner .modal-contents .button span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('/child/img/icon/modal-close-button.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.modal .modal-container .modal-inner.inner--01 .title {
  margin: 0 0 63px;
} 

.modal .modal-container .modal-inner.inner--01 .modal-text-area {
  max-height: 590px;
  height: 590px;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal .modal-container .modal-inner.inner--01 p.modal-row  {
  margin: 0 0 13px;
  font-size: 1.6rem;
  font-weight: 500;
}

.modal .modal-container .modal-inner.inner--01 p.modal-row:last-of-type {
  margin: 0;
}

@media(max-width:1200px) {
  .modal .modal-container .modal-inner .modal-contents {
    padding: 35px 37px;
  }

  .modal .modal-container .modal-inner .modal-contents .title {
    margin: 0 0 55px;
    font-size: 2.4rem;
  }

  .modal .modal-container .modal-inner .modal-contents .button {
    top: 35px;
    right: 37px;
    width: 30px;
    height: 30px;
  }
}

@media(max-width:1024px) {
  .modal .modal-container .modal-inner .modal-contents {
    padding: 30px 32px;
  }

  .modal .modal-container .modal-inner .modal-contents .button {
    top: 30px;
    right: 32px;
    width: 25px;
    height: 25px;
  }

  .modal .modal-container .modal-inner.inner--01 p.modal-row {
    margin: 0 0 10px;
    font-size: 1.4rem;
  }
}

@media(max-width:768px) {
  .modal .modal-container .modal-inner .modal-contents {
    padding: 25px 27px;
  }

  .modal .modal-container .modal-inner .modal-contents .title {
    margin: 0 0 45px;
    font-size: 2rem;
  }

  .modal .modal-container .modal-inner .modal-contents .button {
    top: 25px;
    right: 27px;
    width: 20px;
    height: 20px;
  }
  
  .modal .modal-container .modal-inner.inner--01 .modal-text-area {
    max-height: 50vh;
  }

  .modal .modal-container .modal-inner.inner--01 p.modal-row {
    margin: 0 0 8px;
    font-size: 1.2rem;
  }
}

@media(max-width:500px) {
  .modal .modal-container .modal-inner .modal-contents {
    padding: 20px 22px;
  }

  .modal .modal-container .modal-inner .modal-contents .title {
    margin: 0 0 35px;
    font-size: 1.8rem;
  }

  .modal .modal-container .modal-inner .modal-contents .button {
    top: 20px;
    right: 22px;
  }

  .modal .modal-container .modal-inner.inner--01 p.modal-row {
    font-size: 1.1rem;
  }
}</pre></body></html>