@charset "UTF-8";
/*--- color ---*/
/*--- z-index ---*/
/*--- breakpoint ---*/
/* =======================
  mixin
======================= */
/*--- 透過ホバー ---*/
/*--- color変更ホバー ---*/
/*--- background-color変更ホバー ---*/
/*--- color・background-colorホバー ---*/
.entry_form .form_block {
  padding: 16.4rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .entry_form .form_block {
    padding: 0rem 0 5rem;
  }
}
.entry_form .form_block .l-wrapper {
  max-width: 94rem;
}
.entry_form form input {
  width: 100%;
  background-color: #FFFFFF;
  padding: 1rem 2.7rem;
  font-size: 1.8rem;
  border: 0.2rem solid #CCCCCC;
  max-width: 78.6rem;
}
.error input {
  border-color: #EC0000 !important;
}
.entry_form form input::placeholder {
  color: #CCCCCC;
}
@media screen and (max-width: 768px) {
  .entry_form form input {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    max-width: 100%;
  }
}
.entry_form table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .entry_form table {
    margin-top: 7.5rem;
  }
}
.entry_form table tbody tr {
  display: flex;
  gap: 1rem 2rem;
  box-sizing: border-box;
  padding: 2rem 0;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .entry_form table tbody tr {
    padding: 1rem 0;
    flex-direction: column;
    align-items: stretch;
  }
}
.entry_form table tbody tr:first-child {
  padding-top: 0;
}
.entry_form table tbody tr:first-child td input[type=email], .entry_form table tbody tr:first-child td input[type=password] {
  font-size: 1.8rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .entry_form table tbody tr:first-child td input[type=email], .entry_form table tbody tr:first-child td input[type=password] {
    font-size: 1.4rem;
    padding-right: 1rem;
  }
}
.entry_form table tbody tr:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .entry_form table tbody tr td, .entry_form table tbody tr th {
    width: 100%;
    display: block;
  }
}
.entry_form table tbody tr th {
  width: 22.5%;
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-top: 1.24rem;
}
@media screen and (max-width: 768px) {
  .entry_form table tbody tr th {
    font-size: 1.4rem;
    line-height: 1;
    width: 100%;
    margin-top: 0rem;
  }
}
.entry_form table tbody tr th .req {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .entry_form table tbody tr th .req {
    gap: 0 3rem;
    justify-content: flex-start;
    font-size: 1.4rem;
  }
}
.entry_form table tbody tr td {
  width: calc(100% - 2rem - 22.5%);
  font-size: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .entry_form table tbody tr td {
    width: 100%;
    font-size: 1.4rem;
  }
}
.entry_form table tbody .msg {
  margin-top: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.6rem;
  color: #EC0000;
}
@media screen and (max-width: 768px) {
  .entry_form table tbody .form_msg {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    padding-right: 50px; 
}

.input-icon {
    position: absolute;
    right: 35px;
    top: 32%;
    width: 2.4rem; 
    height: auto;
}

.input-icon[src*="eye-off"] {
    top: 32%;
}

.input-icon[src*="eye-on"] {
    top: 32%;
}

.password-toggle {
    cursor: pointer; 
    pointer-events: auto; 
}

@media screen and (max-width: 768px) {
  .input-icon {
    width: 1.6rem;
    height: auto;
  }
}
/* 基本スタイル */
.c-rectbtn {
  box-shadow: none;
  margin: 0 auto 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.c-rectbtn p {
  margin: 0;
  flex: 1;
  text-align: center;
  color: #333;
  transition: all 0.3s ease;
}

.c-rectbtn::before {
  text-align: center;
  color: #333;
  background: #FFFFFF;
  border-color: #333;
}

.c-rectbtn::before, .c-rectbtn::after {
  border-radius: 0.37rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.c-rectbtn--mini .c-arrow {
  background-color: #333;
  transition: background-color 0.3s ease;
}

[class*=btn] .c-arrow::after {
  filter: invert(1);
  transition: filter 0.3s ease; 
}

/* ホバー時のスタイル */
.c-rectbtn:hover p {
  color: #FFFFFF; 
}

.c-rectbtn:hover::before {
  background: #333; 
  color: #FFFFFF;
  border-color: #333;
}

.c-rectbtn:hover::after {
  background: #333;
  border-color: #333;
}

.c-rectbtn:hover .c-arrow {
  background-color: #FFFFFF;
}

.c-rectbtn:hover .c-arrow::after {
  filter: invert(0); 
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .c-rectbtn {
    margin: 0 auto 5rem;
  }
  
  .c-rectbtn--mini p {
    font-size: 1.4rem;
  }
  
  .c-rectbtn--mini .c-arrow {
    width: 2.4rem;
  }
}
.password_text {
  display: block;
  text-align: center;
  margin-bottom: 4rem;
  color: #333; 
  font-size: 2rem; 
  line-height: 1.5; 
}
.password_link {
  text-align: center;
  color: #1D54A2;
  text-decoration: underline;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .password_text {
    font-size: 1.6rem;
  }
  .password_link {
    margin-bottom: 4rem;
  }
}
.l-wrapper .text {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 10rem;
}
.sp-only {
  display: none;
}

@media screen and (max-width: 767.5px) {
  .l-wrapper .text {
    font-size: 2rem;
    margin-bottom: 8rem;
}
  .sp-only {
    display: block;
  }
}
.c-page-title{
  background-color: #8D8D8D;
}
.c-page-title .heading {
  padding: 0 2rem 4rem max((100vw - 164rem) / 2, 2rem);
}

@media screen and (max-width: 767.5px) {
  .c-page-title .heading {
   padding: 4.6rem 2rem 2.3rem; 
  }
  .c-page-title .heading strong {
    font-size: 3.75rem;
  }
}

.footer {
  border-top:0.5rem solid #8D8D8D;
}

.footer-topbtn {
  background: #8D8D8D;
}