@charset "utf-8";
/* CSS Document */

.arrow-list li::before {
  content: "";                         
  display: inline-block;                
  width: 0.6em; height: 0.6em;          
  border-top: 2px solid currentColor;   
  border-right: 2px solid currentColor; 
  transform: rotate(45deg);           
  margin-right: 0.6em;                
  vertical-align: middle;             
	color: #00837B;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}
button.adminlogin {
  background-color: #00837B;    
  color: #fff;                 
  padding: 16px 32px;          
  font-size: 18px;             
  border: none;                 
  border-radius: 0px;           
  cursor: pointer;              
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

/*button.adminlogin:hover {
  background-color: #00695f;      ホバー時の色 
}*/
.select-wrapper {
  position: relative;
}

select {
  width: 100%;                
  padding: 12px 16px;         
  font-size: 16px;            
  border: 1px solid #ccc;     
  border-radius: 0px;        
  background-color: #fff;    
  /*appearance: none;            標準の矢印を非表示（必要に応じて） */
  -webkit-appearance: none;   
  -moz-appearance: none;    
  box-sizing: border-box;    
	cursor: pointer;
}
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #555;
}
.sp-t20{
	margin-top: 20px !important;
}
.sp-t30{
	margin-top: 30px !important;
}
.sp-v40{
	margin: 40px 0 !important;
}
.l-header-logo {
    width: 100%;
}
.l-header-logo__link{
	margin: 10px 20px;
}
.l-header-logo__link:hover {
    opacity: 1;
}

.l-header-logo__link span {
    color: #FFF;
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 10px;
    background-color: #00837B;
    border-radius: 4px;
    padding: 4px 10px 5px;
	display: inline;
}

input[type="email"], input[type="text"], input[type="password"], textarea {
    width: 80%;
    padding: 1rem;
    box-sizing: border-box;
    border: 1px solid var(--line-color);
}

.birthdate-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.birthdate-select {
  display: flex;
  align-items: center;
  gap: 6px;
}

.birthdate-select select {
  padding: 0.5em;
  width: 100px;
  padding: 12px 10px;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  appearance: none; /* 矢印のスタイルを整えたい時 */
}

.birthdate-select span {
  margin-left: 4px;
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
/*  .birthdate-wrap {
    flex-direction: column;
  }

  .birthdate-select select {
    width: 100%;

  }*/
	  .birthdate-wrap {
    display: flex;
    flex-direction: row; /* ← ここをcolumnからrowに戻す */
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px; /* カラム間の余白 */
  }

  .birthdate-select {
    flex: 1;
  }

  .birthdate-select select {
    width: 100%;
  }
	.login-box {
		width: 100% !important;
	}
	.loginUsername{
    font-size: 1.8rem !important;
}
}/*end*/

@media screen and (max-width: 480px) {
      .birthdate-wrap {
      flex-direction: column;
    }
  }  

.btn-area {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.adminlogin {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00857d;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 0;
  padding: 1em 1.5em;
  width: 100%;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.adminlogin::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 1em;
}

.adminlogin:hover {
  background-color: #006d66;
}

.btn-arrow {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px;
  background-color: #0f8a85;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  border: none;
  /*box-shadow: 0 4px 6px rgba(0,0,0,0.1);*/
  text-align: center;
  cursor: pointer;
}

.btn-text {
  display: inline-block;
}

.btn-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: translateY(-50%) rotate(-45deg); /* →向きの鋭角な＞ */
  content: "";
  display: block;
}

.complete_union {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin: 40px 0;
	border: #068FF7 2px solid;
	padding: 10px;
}
.loginUsername{
    font-size: 2.2rem;
    font-weight: bold;
    text-align: left;
    margin-top: 40px;
	margin-bottom: 20px;
}
.errorMsg {
    padding: 20px;
	margin-top:15px; 
    margin-bottom: 0px;
    background-color: #FFEAEA;
    border: 1px solid #E50202;
}