/* Login */
.login-form,
.login-find-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-block {
  max-width:600px;
  width:100%;
  height:auto;
  padding:80px;
  border-radius:20px;
  background-color: #fff;
  box-shadow:0px 0px 5px 0px rgba(0,0,0,.05);
}

.login-logo {
  display: block;
  margin:0 auto;
  width: 298px;
  height: 43px;
  background:url('/en/img/sub/member/login_logo.svg') no-repeat center;
}

.login-copy {
  font-size:1.6rem;
  color:#555;
  text-align: center;
  margin-top:80px;
}

.login-table {
  display: block;
  margin-top:40px;
}

.login-table .row {
  margin-bottom:8px;
}

.login-table .row:last-child {
  margin-bottom:16px;
}

.login-table input {
  width:100%;
  height:56px;
  border-radius:10px;
}

.login-buttons .button,
.find-buttons .button,
.complete-buttons .button  {
  font-size: 2rem;
  font-weight:600;
  color:#fff;
  width:100%;
  height:56px;
  border-radius:10px;
  background-color: #555555;
}

.login-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top:16px;
}

.login-link li {
  display: flex;
  align-items: center;
}

.login-link a {
  display: block;
  font-size:1.8rem;
  line-height:1;
}

.login-link li span {
  display: block;
  margin: 0 5px;
  color:#bcbcbc;
  font-size: 1.8rem;
}

.login-link__find {
  color:#bcbcbc;
  font-size: 1.8rem;
}

.login-link__join {
  font-weight:500;
  color:#000;
}

.login-table .td p {
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
}

.login-table .td p:nth-of-type(2) {
  margin-bottom: 10px;  
}

.login-table .td p:last-of-type {
  margin-bottom: 30px;
}

.login-table .td p span {
  color: #c0a258;
  font-weight: 600;
}

.login-complete-link {
  margin-top: 20px;
}

.login-table .find-message {
 /* display: none;*/
}

.login-table .find-message.on {
  display: block;
}

.login-complete-link li {
  display: none;
}

.login-complete-link li.on {
  display: block;
}

@media (min-width:1201px) {
  .login-buttons .button,
.find-buttons .button,
.complete-buttons .button :hover {
    background-color: #000;
  }
}
@media (max-width:1200px) {
  .login-logo {
    height:36px;
    background-size:auto 36px;
  }

  .login-table {
    margin-top:30px;
  }

  .login-table input {
    height:48px;
  }

  .login-buttons .button,
.find-buttons .button,
.complete-buttons .button  {
    height:48px;
    font-size:1.8rem;
  }

  .login-link a {
    font-size:1.6rem;
  }

  .login-link li span {
    font-size: 1.6rem;
  }
  
  .login-copy {
    font-size:1.4rem;
  }
  
  .login-link__find {
    font-size: 1.6rem;
  }
  
  .login-table .td p {
    font-size: 1.8rem;
  }
  
}
@media (max-width:1024px) {
  .login-block {
    padding:40px;
  }

  .login-table .row:last-child {
    margin-bottom:12px;
  }

  .login-copy {
    margin-top:60px;
  }

  .login-table .td p:last-of-type {
    margin-bottom: 25px;
  }
  
  .login-complete-link {
    margin-top: 18px;
  }
}
@media (max-width:768px) {
  .login-block {
    padding:30px;
  }

  .login-logo {
    height:30px;
    background-size:auto 30px;
  }

  .login-table {
    margin-top:22px;
  }

  .login-table .row {
    margin-bottom:4px;
  }

  .login-table .row:last-child {
    margin-bottom:8px;
  }

  .login-link {
    margin-top:8px;
  }

  .login-copy {
    margin-top:40px;
  }

  .login-table input {
    height:38px;
  }

  .login-buttons .button,
.find-buttons .button,
.complete-buttons .button  {
    height:38px;
    font-size:1.6rem;
  }

  .login-link a {
    font-size:1.4rem;
  }
  
  .login-link li span {
    margin: 0 3px;
    font-size: 1.4rem;
  }

  .login-copy {
    font-size:1.3rem;
  }
  
  .login-link__find {
    font-size: 1.4rem;
  }
      
  .login-table .td p {
    font-size: 1.6rem;
  }
  
  .login-table .td p:nth-of-type(2) {
    margin-bottom: 8px;  
  }
  
  .login-table .td p:last-of-type {
    margin-bottom: 20px;
  }
  
  .login-complete-link {
    margin-top: 15px;
  }
}
@media (max-width:500px) {
  .login-block {
    padding:30px 16px;
  }

  .login-buttons .button,
.find-buttons .button,
.complete-buttons .button  {
    font-size:1.4rem;
  }

  .login-link a {
    font-size:1.3rem;
  }
  
  .login-link li span {
    font-size: 1.3rem;
  }

  .login-copy {
    font-size:1.2rem;
    margin-top:30px;
  }
  
  .login-link__find {
    font-size: 1.3rem;
  }
  
        
  .login-table .td p {
    font-size: 1.4rem;
  }
  
  .login-table .td p:nth-of-type(2) {
    margin-bottom: 6px;  
  }
  
  .login-table .td p:last-of-type {
    margin-bottom: 15px;
  }
  
  .login-complete-link {
    margin-top: 10px;
  }
}


/* Join Agree */
.join-agree-box {
  margin-bottom:20px;
}

.join-agree-box:last-child {
  margin-bottom:0px;
}

.join-agree__check {
  padding:10px 20px;
  background-color: #f9f9f9;
  border:1px solid #ccc;
}

.join-agree__check label {
  display:flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.join-agree__check input {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  opacity:0;
  visibility: hidden;
}

.join-agree__check i {
  display: inline-block;
  vertical-align: middle;
  width:36px;
  height:36px;
  background-size: auto 36px;
  background-repeat: no-repeat;
  background-image: url('/en/img/sub/member/check.png');
  margin-right:20px;
}

.join-agree__check span {
  font-size:1.8rem;
  font-weight:500;
}

.join-agree__check input[type="checkbox"]:checked ~ i {
  background-image: url('/en/img/sub/member/check_on.png');
}

.join-agree__textarea {
  width:100%;
  height:340px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  border:1px solid #ccc;
  border-top:0px;
}

.join-agree__textarea > div {
  padding:40px;
}

.join-agree__textarea p {
  font-size:1.4rem;
  font-weight:500;
  line-height:1.6;
  color:#525252;
}

.join-buttons {
  display: flex;
  justify-content: center;
  margin-top:40px;
}

.join-buttons .button {
  max-width:240px;
  width:100%;
  height:64px;
  font-size:2rem;
  font-weight:500;
  color:#fff;
  background-color: #c4b69d;
  border-radius:0px;
}

@media (min-width:1201px) {
  .join-buttons .button:hover {
    background-color: #c0a258;
  }
}
@media (max-width:1200px) {
  .join-agree__check i {
    width:28px;
    height:28px;
    background-size:auto 28px;
    margin-right:16px;
  }

  .join-agree__check span {
    font-size:1.6rem;
  }

  .join-agree__textarea p {
    font-size:1.3rem;
  }

  .join-buttons .button {
    max-width:200px;
    height:52px;
    font-size:1.8rem;
  }
}
@media (max-width:1024px) {
  .join-agree-box {
    margin-bottom:16px;
  }

  .join-agree__check {
    padding:10px 16px;
  }

  .join-agree__check i {
    width:24px;
    height:24px;
    background-size:auto 24px;
    margin-right:12px;
  }

  .join-agree__textarea {
    height:280px;
  }

  .join-agree__textarea > div {
    padding:30px;
  }

  .join-buttons {
    margin-top:30px;
  }
}
@media (max-width:768px) {
  .join-agree-box {
    margin-bottom:12px;
  }

  .join-agree__check {
    padding:6px 12px;
  }

  .join-agree__check i {
    width:20px;
    height:20px;
    background-size:auto 20px;
    margin-right:8px;
  }

  .join-agree__check span {
    font-size:1.4rem;
  }

  .join-agree__textarea {
    height:180px;
  }

  .join-agree__textarea > div {
    padding:22px;
  }

  .join-agree__textarea p {
    font-size:1.2rem;
  }

  .join-buttons {
    margin-top:22px;
  }

  .join-buttons .button {
    max-width:160px;
    height:44px;
    font-size:1.6rem;
  }
}
@media (max-width:500px) {
  .join-agree-box {
    margin-bottom:8px;
  }

  .join-agree__check {
    padding:6px 8px;
  }

  .join-agree__check i {
    width:16px;
    height:16px;
    background-size:auto 16px;
    margin-right:6px;
  }

  .join-agree__check span {
    font-size:1.3rem;
  }

  .join-agree__textarea p {
    font-size:1.1rem;
  }

  .join-buttons {
    margin-top:16px;
  }

  .join-buttons .button {
    max-width:120px;
    height:36px;
    font-size:1.4rem;
  }
}


/* Join Form */
.join-table {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width:100%;
  border-top:2px solid #000;
  border-bottom:1px solid #f0f0f0;
}

.join-table .row {
  display: table-row;
  border-bottom:1px solid #f0f0f0;
}

.join-table .th,
.join-table .td {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.join-table .th {
  width:180px;
  padding:30px 0px 30px 40px;
  font-size:2rem;
  font-weight: 500;
  line-height:1;
}

.join-table .th span {
  color:#ff0000;
}

.join-table .td {
  height:80px;
  padding:16px 20px;
}

.join-table input,
.join-table select {
  font-size:1.6rem;
}

.join-table input {
  max-width:480px;
  width:100%;
  height:48px;
}

.join-table select {
  max-width:240px;
  width:100%;
  height:48px;
  background-size: auto 8px;
  background-repeat: no-repeat;
  background-position:right 16px center;
  background-image: url('/en/img/icon/select_icon.svg');
}

.join-table .button {
  font-size:1.6rem;
  font-weight:500;
  color:#001212;
  max-width:170px;
  width:100%;
  height:48px;
  background-color: #f8f8f8;
  border-color:#c3c3c3;
  border-radius:0px;
}

.join-table .join-idea {
  display: flex;
  align-items: center;
}

.join-table .join-idea .idea-box {
  display: flex;
  align-items: center;
  max-width:660px;
  width:100%;
}

.join-table .join-idea .button {
  margin-left:10px;
}

.join-table .join-idea span,
.join-table .terms_text {
  font-size:1.6rem;
  color:#898989;
  margin-left:16px;
}

.join-table .join-email {
  display:flex;
  align-items: center;
}

.join-table .join-email p {
  margin: 0 15px;
  font-size: 1.8rem;
}

.join-table .join-email select {
  margin-left:10px;
}

.join-table .join-address .box {
  display: flex;
  align-items: center;
  margin-bottom:16px;
}

.join-table .join-address .box:last-child {
  margin-bottom:0px;
}

.join-table .join-address .box--full input {
  max-width:100%;
}

.join-table .join-address .button {
  margin-left:10px;
}

@media (max-width:1200px) {
  .join-table .th {
    font-size:1.8rem;
  }

  .join-table input, 
  .join-table select {
    font-size:1.4rem;
  }

  .join-table select {
    max-width:200px;
  }

  .join-table .join-idea .idea-box {
    max-width:610px;
  }

  .join-table .join-idea span,
  .join-table .terms_text  {
    font-size:1.4rem;
  }
  
  .join-table .join-email p {
    font-size: 1.6rem;
  }

  .join-table .button {
    max-width:120px;
    font-size:1.4rem;
  }
}
@media (max-width:1024px) {
  .join-table .th {
    padding:22px 0px 22px 30px;
  }

  .join-table .td {
    height:70px;
    padding:12px 16px;
  }

  .join-table input {
    height:38px;
  }

  .join-table select {
    height:38px;
  }

  .join-table .button {
    height:38px;
  }

  .join-table .join-idea {
    flex-wrap: wrap;
  }

  .join-table .join-idea .idea-box {
    max-width:100%;
  }

  .join-table .join-idea span,
  .join-table .terms_text  {
    display: block;
    width:100%;
    margin-left: 0px;
    margin-top:12px;
  }
  
  .join-table .join-email p {
    margin: 0 12px;
  }

  .join-table .join-address .box {
    margin-bottom:12px;
  }
}
@media (max-width:768px) {
  .join-table {
    display: block;
  }
  
  .join-table .row {
    display: flex;
    flex-wrap: wrap;
  }

  .join-table .th, 
  .join-table .td {
    display: block;
    width:100%;
  }

  .join-table .th {
    font-size:1.6rem;
    padding:12px;
    background-color: #f2f2f2;
    border:0px;
    text-align: center;
  }

  .join-table .td {
    height:auto;
    padding:12px;
  }

  .join-table input, 
  .join-table select {
    font-size:1.3rem;
    height:30px;
  }

  .join-table input {
    max-width:100%;
  }

  .join-table select {
    max-width:160px;
    background-size:auto 6px;
    background-position:right 12px center;
  }

  .join-table .button {
    font-size:1.3rem;
    max-width:100px;
    height:30px;
  }

  .join-table .join-idea input {
    width:calc(100% - 106px);
  }

  .join-table .join-idea .button {
    margin-left:6px;
  }

  .join-table .join-idea span,
  .join-table .terms_text  {
    font-size:1.3rem;
    margin-top:8px;
  }

  .join-table .join-email input {
    width:calc(100% - 166px);
  }
  
  .join-table .join-email p {
    margin: 0 10px;
    font-size: 1.4rem;
  }

  .join-table .join-email select {
    margin-left:6px;
  }

  .join-table .join-address .box {
    margin-bottom:8px;
  }

  .join-table .join-address .box:first-child input {
    width:calc(100% - 106px);
  }

  .join-table .join-address .button {
    margin-left:6px;
  }
}
@media (max-width:500px) {
  .join-table .th {
    font-size:1.4rem;
    padding:8px;
  }

  .join-table .td {
    padding:8px 0px;
  }

  .join-table input, 
  .join-table select {
    font-size:1.2rem;
  }

  .join-table .button {
    font-size:1.2rem;
    max-width:80px;
  }

  .join-table .join-idea input {
    width:calc(100% - 84px);
  }

  .join-table .join-idea .button {
    margin-left:4px;
  }

  .join-table .join-idea span,
  .join-table .terms_text  {
    font-size:1.2rem;
    margin-top:4px;
  }

  .join-table .join-email {
    flex-wrap: wrap;
  }

  .join-table .join-email p {
    margin: 0 8px;
    font-size: 1.2rem;
  }

  .join-table .join-email input {
    width: calc(50% - 13.2px);
  }

  .join-table .join-email select {
    max-width:100%;
    margin-left:0px;
    margin-top:4px;
  }

  .join-table .join-address .box {
    margin-bottom:4px;
  }

  .join-table .join-address .box:first-child input {
    width:calc(100% - 84px);
  }

  .join-table .join-address .button {
    margin-left:4px;
  }
}


/* Login Modal */
.modal--find {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.4);
  transition: display .3s ease-out;
}

.modal--find  .modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}


.modal--find .modal-contents {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background-color: #fcfaf6;
}

.modal--find .modal-contents .title {
  width: 100%;
  padding: 20px 5px;
  border-bottom: 1px solid #b5b5b5;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.modal--find .modal-contents .modal-con {
  padding: 30px;
}

.modal--find .button--close {
  position: absolute;
  top: 22px;
  right: 30px;
  width: 17px;
  height: 17px;
  background: url('/en/img/icon/modal-close.png') no-repeat center;
  background-size: cover;
}

.modal--find.on {
  display: block;
}

.modal--find .modal-inner, 
.modal--find-check .modal-inner {
  max-width: 535px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.modal--find  .modal-contents {
  background-color: #fff;
}

.modal--find .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.modal--find .row .th {
  width: 105px;
  font-size: 1.6rem;
}

.modal--find .td input {
  width: 310px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #b5b5b5;
  padding: 0 20px;
  font-size: 1.6rem;
}

.modal--find .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal--find .buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  max-width: 217px;
  width: 48.437%;
  height: 40px;
  border-radius: 5px;
  font-size: 1.6rem;
}

.modal--find .buttons .button--cancel {
  border: 1px solid #b5b5b5;
}

.modal--find .buttons .button--submit {
  background-color: #555;
  color: #fff;
}

.modal--find .find-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
  border-radius: 5px;
  background-color: #fcfaf6;
  font-size: 1.6rem;
  line-height: 1.6;
}

.modal--find .find-message {
  height: 120px;
}

.modal--find .find-message p span {
  color: #555;
  font-weight: 700;
}

@media(max-width:1200px) {
  .modal--find .modal-contents .title {
    font-size: 1.8rem;
  }

  .modal--find .row .th {
    font-size: 1.4rem;
  }
  
  .modal--find .td input {
    font-size: 1.4rem;
  }

  .modal--find .buttons .button {
    font-size: 1.4rem;
  }

  .modal--find .find-message {
    font-size: 1.4rem;
  }
}

@media(max-width:1024px) {
  .modal--find .modal-contents .title {
    padding: 18px 5px;
    font-size: 1.8rem;
  }
  
  .modal--find .modal-contents .modal-con {
    padding: 25px;
  }
  
  .modal--find .button--close {
    top: 22px;
    right: 25px;
    width: 15px;
    height: 15px;
  }
  
  .modal--find .row {
    margin-bottom: 10px;
  }
  
  .modal--find .row .th {
    width: 105px;
    font-size: 1.4rem;
  }
  
  .modal--find .td input {
    width: 280px;
    height: 35px;
    padding: 0 18px;
    font-size: 1.4rem;
  }
  
  .modal--find .buttons .button {
    margin-top: 25px;
    width: 48%;
    height: 35px;
    font-size: 1.4rem;
  }
  
  .modal--find .find-message {
    height: 80px;
    border-radius: 5px;
    font-size: 1.4rem;
  }
  
  .modal--find .find-message {
    height: 100px;
  }
}

@media(max-width:768px) {
  .modal--find .modal-contents .title {
    padding: 16px 5px;
    font-size: 1.6rem;
  }
  
  .modal--find .modal-contents .modal-con {
    padding: 20px;
  }
  
  .modal--find .button--close {
    top: 17px;
    right: 20px;
    width: 13px;
    height: 13px;
  }
  
  .modal--find .row {
    margin-bottom: 8px;
  }
  
  .modal--find .row .th {
    width: 90px;
    font-size: 1.3rem;
  }
  
  .modal--find .td {
    width: calc(100% - 100px);
  }
  
  .modal--find .td input {
    max-width: 100%;
    width: 100%;
    height: 30px;
    padding: 0 16px;
    font-size: 1.3rem;
  }
  
  .modal--find .buttons .button {
    margin-top: 25px;
    width: 48%;
    height: 30px;
    font-size: 1.3rem;
  }
  
  .modal--find .find-message {
    height: 70px;
    border-radius: 5px;
    font-size: 1.3rem;
  }
  
  .modal--find .find-message {
    height: 80px;
  }
}


@media(max-width:500px) {
  .modal--find .modal-contents .title {
    padding: 14px 3px;
    font-size: 1.4rem;
  }
  
  .modal--find .modal-contents .modal-con {
    padding: 15px;
  }
  
  .modal--find .button--close {
    top: 14px;
    right: 15px;
    width: 13px;
    height: 13px;
  }
  
  .modal--find .row {
    margin-bottom: 6px;
  }
  
  .modal--find .row .th {
    width: 70px;
    font-size: 1.2rem;
  }
  
  .modal--find .td {
    width: calc(100% - 78px);
  }
  
  .modal--find .td input {
    height: 30px;
    padding: 0 14px;
    font-size: 1.2rem;
  }
  
  .modal--find .buttons .button {
    margin-top: 20px;
    height: 30px;
    font-size: 1.2rem;
  }
  
  .modal--find .find-message {
    height: 60px;
    border-radius: 5px;
    font-size: 1.2rem;
  }
  
  .modal--find .find-message {
    height: 70px;
  }
  
}


/* Join Complete */
.join_complete .section {
  background-color: #fbfaf5;
}

.join_complete .complete-massage {
  max-width: 600px;
  width: 100%;
  height: 313px;
  margin: 0 auto 40px;
  padding: 80px 0;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px 5px #f0efeb;
  text-align: center;
}

.join_complete .complete-massage .logo {
  width: 298px;
  height: 48px;
  margin: 0 auto 40px;
  background-image: url('/en/img/sub/member/login_logo.svg');
  background-position: center;
  background-repeat: no-repeat;
}

.join_complete .complete-massage .massage-id {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 15px;
}

.join_complete .complete-massage .massage-id span {
  display: block;
  margin: 0 25px;
  font-weight: 600;
}

.join_complete .complete-massage p {
  font-size: 2.4rem;
}

.join_complete .link_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}

.join_complete .link_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  width: 48%;
  height: 56px;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.join_complete .link_wrap a.link-main {
  background-color: #555;
}

.join_complete .link_wrap a.link-donate {
  background-color: #c4b69d;
}

@media(max-width:1200px) {
  .join_complete .complete-massage {
    width: 100%;
    height: 313px;
    margin: 0 auto 40px;
    padding: 80px 0;
    border-radius: 20px;
  }
  
  .join_complete .complete-massage .logo {
    width: 298px;
    height: 48px;
    margin: 0 auto 40px;
  }
  
  .join_complete .complete-massage .massage-id {
    font-size: 2.2rem;
    margin: 0 auto 15px;
  }
  
  .join_complete .complete-massage .massage-id span {
    margin: 0 25px;
  }
  
  .join_complete .complete-massage p {
    font-size: 2.2rem;
  }
  
  .join_complete .link_wrap a {
    height: 56px;
    border-radius: 10px;
    font-size: 1.8rem;
  }
  
}

@media(max-width:1024px) {
  .join_complete .complete-massage {
    width: 100%;
    height: auto;
    margin: 0 auto 35px;
    padding: 70px 0;
    border-radius: 20px;
  }
  
  .join_complete .complete-massage .logo {
    width: 268px;
    height: 43px;
    margin: 0 auto 35px;
  }
  
  .join_complete .complete-massage .massage-id {
    font-size: 2.2rem;
    margin: 0 auto 12px;
  }
  
  .join_complete .complete-massage .massage-id span {
    margin: 0 20px;
  }
  
  .join_complete .complete-massage p {
    font-size: 2.2rem;
  }
  
  .join_complete .link_wrap a {
    height: 50px;
    border-radius: 10px;
    font-size: 1.8rem;
  }
  
}

@media(max-width:768px) {
  .join_complete .complete-massage {
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    padding: 60px 0;
    border-radius: 20px;
  }
  
  .join_complete .complete-massage .logo {
    width: 241px;
    height: 39px;
    margin: 0 auto 30px;
  }
  
  .join_complete .complete-massage .massage-id {
    font-size: 2rem;
    margin: 0 auto 10px;
  }
  
  .join_complete .complete-massage .massage-id span {
    margin: 0 18px;
  }
  
  .join_complete .complete-massage p {
    font-size: 2rem;
  }
  
  .join_complete .link_wrap a {
    height: 45px;
    border-radius: 10px;
    font-size: 1.6rem;
  }
  
}


@media(max-width:500px) {
  .join_complete .section {
    display: flex;
    align-items: center;
    min-height: 450px;
    height: 100%;
  }
  
  .join_complete .complete-massage {
    width: 100%;
    height: auto;
    margin: 0 auto 25px;
    padding: 50px 0;
    border-radius: 20px;
  }
  
  .join_complete .complete-massage .logo {
    width: 241px;
    height: 39px;
    margin: 0 auto 25px;
  }
  
  .join_complete .complete-massage .massage-id {
    font-size: 1.8rem;
    margin: 0 auto 10px;
  }
  
  .join_complete .complete-massage .massage-id span {
    margin: 0 16px;
  }
  
  .join_complete .complete-massage p {
    font-size: 1.8rem;
  }
  
  .join_complete .link_wrap a {
    height: 40px;
    border-radius: 10px;
    font-size: 1.4rem;
  }
  
}