@charset "UTF-8";
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0px;
  margin: auto;
  padding: 0px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  #wrap {
    max-width: 96%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  #wrap { /*tablet*/
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  #wrap { /*sp*/
    overflow: hidden;
  }
}

/*---------------------------
header
----------------------------*/
header {
  margin: 0px;
  padding: 0;
  text-align: cemter;
  background: #3ABCEA;
}
header .inner {
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  header .inner {
    padding: 1.5rem 0;
  }
}
header .inner h1 {
  color: #fff;
  font-size: clamp(1rem, 3vw, 1.8rem);
  letter-spacing: 2px;
}

/*---------------------------
footer
---------------------------*/
footer {
  padding: 2rem 0;
  background-color: #eee;
}
footer .copy {
  font-size: 0.6rem;
}

/*----------------------
main
------------------------*/
main .inner {
  max-width: 800px;
  margin: auto;
  padding: 3rem 0;
  text-align: left;
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  main .inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  main .inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  main .inner {
    max-width: 90%;
    padding: 1rem 0;
  }
}

* {
  box-sizing: border-box;
}

/*レスポンシブ*/
.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.sp_tel {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_tel {
    width: 100%;
    display: block;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

h2.line {
  font-size: 1.8rem;
  color: #006BB3;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #006BB3;
  text-align: left;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  h2.line {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}

.pagetop {
  width: 60px;
  height: 60px;
  background-image: url(../img/pagetop_bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 50px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

/*---------------------------
contents
-----------------------------*/
.admission .info,
.admission .otoku {
  padding-left: 3.8rem;
  margin-bottom: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .admission .info,
  .admission .otoku {
    padding-left: 0;
    padding-top: 3rem;
  }
}
.admission .info h2,
.admission .otoku h2 {
  font-size: clamp(1rem, 3vw, 1.6rem);
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .admission .info h2,
  .admission .otoku h2 {
    text-align: center;
  }
}
.admission .info::before,
.admission .otoku::before {
  content: "?";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #3ABCEA;
  color: #fff;
  padding: 0.5rem;
  border-radius: 100px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .admission .info::before,
  .admission .otoku::before {
    left: 0;
    right: 0;
    margin: auto;
  }
}
.admission .info::before {
  content: "?";
}
.admission .otoku {
  margin-bottom: 3rem;
}
.admission .otoku::before {
  content: "P";
}
.admission .otoku .exp {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  grid-gap: 10px;
}
.admission .otoku .exp .col {
  border: 2px solid #ccc;
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.admission .point_flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
  text-align: center;
  margin-bottom: 1rem;
}
.admission .point_flow .col {
  position: relative;
}
.admission .point_flow .col::before {
  content: "";
  display: block;
  top: 34%;
  right: -20px;
  background-image: url(../img/flow_arrow.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 15px;
  height: 20px;
  position: absolute;
}
.admission .point_flow .col p {
  padding-top: 0.5rem;
  line-height: 1.2;
  font-size: 0.9rem;
}
.admission .point_flow .col:last-child::before {
  display: none;
}
.admission .gift {
  display: grid;
  grid-template-columns: 64px 1fr;
  margin-bottom: 2rem;
}
.admission .gift p {
  padding-left: 20px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.musk {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  position: fixed;
  display: none;
  cursor: pointer;
}

.window_userid {
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 570px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 101;
  box-sizing: border-box;
  padding: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 767px) {
  .window_userid {
    max-width: 95%;
    max-height: 80vw;
    padding: 1rem;
    padding-top: 2rem;
  }
}
.window_userid .user_id_slide {
  list-style: none;
}
.window_userid .user_id_slide div {
  width: 100%;
}
.window_userid .user_id_slide div .txt p {
  margin: auto;
  margin-bottom: 0.5rem;
}
.window_userid .user_id_slide div .txt p:nth-of-type(1) {
  color: #3ABCEA;
  font-size: 1.1rem;
  font-weight: bold;
}
.window_userid .user_id_slide div .txt p:nth-of-type(2) {
  color: #fff;
  background-color: #3ABCEA;
  border-radius: 100px;
  max-width: 100px;
}
.window_userid .user_id_slide div img {
  max-width: 80%;
  margin: auto;
}
.window_userid .user_id_slide .slick-prev,
.window_userid .user_id_slide .slick-next {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 35px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .window_userid .user_id_slide .slick-prev,
  .window_userid .user_id_slide .slick-next {
    width: 10px;
    height: 17px;
  }
}
.window_userid .user_id_slide .slick-prev:before,
.window_userid .user_id_slide .slick-next:before {
  display: none;
}
.window_userid .user_id_slide .slick-prev {
  left: 15px;
  background-image: url(../img/slide_arrow_left.webp);
}
@media screen and (max-width: 767px) {
  .window_userid .user_id_slide .slick-prev {
    left: 0px;
  }
}
.window_userid .user_id_slide .slick-next {
  right: 15px;
  background-image: url(../img/slide_arrow_right.webp);
}
@media screen and (max-width: 767px) {
  .window_userid .user_id_slide .slick-next {
    right: 0px;
  }
}
.window_userid .user_id_slide .slick-dots {
  bottom: -35px;
}
.window_userid .btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  font-weight: normal;
  color: #0074c0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .window_userid .btn {
    top: 10px;
    right: 10px;
    font-size: 2rem;
  }
}

.window01,
.window02 {
  width: 100%;
  height: 100%;
  max-width: 800px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 101;
  box-sizing: border-box;
  display: none;
  padding: 2rem;
  padding-bottom: 3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .window01,
  .window02 {
    max-width: 90%;
    max-height: 90%;
    padding: 0;
    top: 5%;
  }
}
.window01 .container,
.window02 .container {
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  margin: auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.window01 .container h2,
.window02 .container h2 {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 2rem;
}
.window01 .container .inner,
.window02 .container .inner {
  max-width: 90%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .window01 .container .inner,
  .window02 .container .inner {
    max-width: 100%;
  }
}
.window01 .container .inner > p,
.window02 .container .inner > p {
  margin-bottom: 1rem;
}
.window01 .container .inner h3,
.window02 .container .inner h3 {
  background-color: #999;
  color: #fff;
  padding: 0.5rem 1rem;
  margin: 2rem 0;
}
.window01 .container .inner .img,
.window02 .container .inner .img {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .window01 .container .inner .img,
  .window02 .container .inner .img {
    flex-wrap: wrap;
  }
  .window01 .container .inner .img img,
  .window02 .container .inner .img img {
    margin: auto;
  }
}
.window01 .container .inner .img > p,
.window02 .container .inner .img > p {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .window01 .container .inner .img > p,
  .window02 .container .inner .img > p {
    width: 100%;
    margin-right: 0px;
    text-align: center;
  }
  .window01 .container .inner .img > p img,
  .window02 .container .inner .img > p img {
    margin: auto;
  }
}
.window01 .container .inner .img > p span,
.window02 .container .inner .img > p span {
  display: block;
  text-align: center;
}
.window01 .container .inner .facility_flow,
.window02 .container .inner .facility_flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .window01 .container .inner .facility_flow,
  .window02 .container .inner .facility_flow {
    grid-template-columns: 1fr;
  }
}
.window01 .container .inner .facility_flow .col,
.window02 .container .inner .facility_flow .col {
  border: 1px solid #ccc;
  padding: 1rem;
}
.window01 .btn,
.window02 .btn {
  position: absolute;
  top: 45px;
  right: 65px;
  font-size: 3rem;
  font-weight: normal;
  color: #333;
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .window01 .btn,
  .window02 .btn {
    top: -12px;
    right: -9px;
    font-size: 1.8rem;
    color: #fff;
    background: #333;
    border-radius: 100px;
    line-height: 30px;
    width: 30px;
    height: 30px;
  }
}

.loader {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}
.loader .icon {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
}
.loader .icon img {
  width: 100%;
  height: 100%;
}

.withdrawal .form_area form .check p {
  margin-bottom: 0;
}
.withdrawal .form_area form .check p.red {
  color: #ff2828;
}

/*form*/
.form_area {
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .form_area {
    padding: 1rem 0;
  }
}
.form_area h2 {
  font-size: clamp(1rem, 3vw, 1.6rem);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 2px;
}
.form_area h2.bar {
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: left;
  background: #eee;
}
.form_area h2.bar span {
  display: inline-block;
  background: #999;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 20px;
  font-size: 1rem;
}
.form_area h2.mt {
  margin-top: 2rem;
}
.form_area .flow {
  margin-bottom: 3rem;
}
.form_area .flow ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .form_area .flow ul {
    flex-wrap: wrap;
  }
}
.form_area .flow ul li {
  display: block;
  width: 100%;
  margin-right: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form_area .flow ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 5px;
  }
  .form_area .flow ul li:nth-of-type(even) {
    margin-right: 0;
  }
}
.form_area .flow ul li:last-child {
  margin-right: 0;
}
.form_area .flow ul li span {
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.8rem 1rem;
  padding-left: 2rem;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  .form_area .flow ul li span {
    font-size: 0.4rem;
    padding: 0.5rem 0;
  }
}
.form_area .flow ul li.current span {
  background-color: #3ABCEA;
  border-color: #3ABCEA;
  color: #fff;
  border-radius: 5px;
}
.form_area .flow ul li.current::before {
  background-color: #fff;
  color: #333;
}
.form_area .flow ul li.done span {
  color: #999;
  background-color: #eee;
}
.form_area .flow ul li.done::before {
  background-color: #ababab;
  color: #fff;
}
.form_area .flow ul li.done::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 35%;
  right: 10px;
  background-image: url(../img/icon_check.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
}
.form_area .flow ul li::before {
  position: absolute;
  display: block;
  top: 35%;
  left: 10px;
  font-size: 0.6rem;
  background-color: #333;
  color: #fff;
  line-height: 1;
  width: 15px;
  height: 15px;
  border-radius: 100px;
  text-align: center;
  line-height: 15px;
}
.form_area .flow ul li:nth-of-type(1)::before {
  content: "1";
}
.form_area .flow ul li:nth-of-type(2)::before {
  content: "2";
}
.form_area .flow ul li:nth-of-type(3)::before {
  content: "3";
}
.form_area .flow ul li:nth-of-type(4)::before {
  content: "4";
}
.form_area .note {
  text-align: center;
  margin-bottom: 2rem;
}
.form_area .note h3 {
  font-size: clamp(1rem, 2vw, 1.6rem);
  margin-bottom: 1.5rem;
}
.form_area .note > p {
  font-size: 0.9rem;
}
.form_area .note .continuation {
  margin-top: 2rem;
}
.form_area .note .continuation p:nth-of-type(1) {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.form_area .note .continuation p:nth-of-type(2) {
  background: #FFEFBB;
  display: inline-block;
  border-radius: 100px;
  border: 1px solid #F9C852;
  position: relative;
  padding: 0.5rem 3rem;
  padding-right: 1rem;
}
.form_area .note .continuation p:nth-of-type(2)::before {
  position: absolute;
  top: 10px;
  left: 10px;
  content: "!";
  background-color: #FFC400;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  text-align: center;
  line-height: 20px;
}
.form_area .note .continuation p span {
  text-decoration: underline;
}
.form_area .note .btn {
  padding-top: 3rem;
  text-align: center;
}
.form_area .note .btn #close {
  border: 1px solid #ccc;
  padding: 10px;
  line-height: 1.2;
  display: inline-block;
  border-radius: 5px;
}
.form_area .note .btn a {
  background-color: #3ABCEA;
  background-image: url(../img/icon_arrow.webp);
  color: #fff;
  border: none;
  width: 350px;
  display: block;
  padding: 1rem;
  margin: 0 auto;
  box-sizing: border-box;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 2px;
  background-repeat: no-repeat;
  background-position: 95% center;
  border-radius: 5px;
  text-decoration: none;
}
.form_area .note .btn > input {
  background-color: #3ABCEA;
  color: #fff;
  border: none;
  width: 250px;
  display: block;
  padding: 1rem;
  margin: 0 auto;
  box-sizing: border-box;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 2px;
  background-repeat: no-repeat;
  background-position: 95% center;
  border-radius: 5px;
}
.form_area .note .btn > input[type=button] {
  background-color: #3ABCEA;
  cursor: pointer;
}
.form_area .note .btn > button {
  background-color: #3ABCEA;
  color: #fff;
  border: none;
  width: 250px;
  display: block;
  padding: 1rem;
  margin: 0 auto;
  box-sizing: border-box;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 2px;
  background-repeat: no-repeat;
  background-position: 95% center;
  border-radius: 5px;
}
.form_area .note .btn > button[type=button] {
  background-color: #3ABCEA;
  cursor: pointer;
}
.form_area form input {
  box-sizing: border-box;
  border: 1px solid #999;
}
.form_area form input[type=text] {
  padding: 0.5rem;
  width: 100%;
}
.form_area form input.w20 {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .form_area form input.w20 {
    width: 100%;
  }
}
.form_area form input.w40 {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .form_area form input.w40 {
    width: 100%;
  }
}
.form_area form input.w60 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .form_area form input.w60 {
    width: 100%;
  }
}
.form_area form input.w80 {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .form_area form input.w80 {
    width: 100%;
  }
}
.form_area form input[type=file] {
  border: none;
}
.form_area form label.error {
  color: rgb(255, 40, 40);
  border-radius: 2px;
  line-height: 1;
  padding: 2px;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  top: -8px;
  display: block;
  white-space: nowrap;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .form_area form label.error {
    white-space: wrap;
    line-height: 1.2;
  }
}
.form_area form label.error#user_id_check-error {
  top: 70px;
}
.form_area form label.error#service_use-error, .form_area form label.error#service_check-error {
  top: -25px;
}
.form_area form #mainerror {
  display: none;
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 1rem;
  color: #d02222;
  background-color: #ffdddd;
}
@media screen and (max-width: 767px) {
  .form_area form #mainerror {
    font-size: 0.9rem;
  }
}
.form_area form #mainerror.on {
  display: block;
}
.form_area form dl {
  position: relative;
}
.form_area form dl::before {
  content: "";
  width: 32%;
  height: 100%;
  background-color: #F0F0F0;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .form_area form dl::before {
    display: none;
  }
}
.form_area form dl > div {
  position: relative;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 0;
  z-index: 2;
}
.form_area form dl > div:nth-of-type(1) {
  border-top: 1px solid #ccc;
}
.form_area form dl > div.reason dd > p {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.form_area form dl > div.reason dd label {
  display: block;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.form_area form dl > div.reason dd label > p {
  margin-bottom: 1rem;
  line-height: 1;
  order: 3;
}
.form_area form dl > div.reason dd label input[type=checkbox] {
  order: 2;
}
.form_area form dl > div.reason dd label textarea {
  width: 100%;
  height: 100px;
  padding: 1rem;
  box-sizing: border-box;
  order: 4;
}
.form_area form dl > div.reason dd label:nth-of-type(1) > label {
  order: 1;
  width: 100%;
  margin-bottom: 1rem;
}
.form_area form dl > div.reason dd label.reason_other input[type=checkbox] {
  order: 1;
}
.form_area form dl > div.reason dd label.reason_other > p {
  order: 2;
}
.form_area form dl > div.reason dd label.reason_other textarea {
  order: 3;
}
.form_area form dl > div.reason dd label.reason_other .error {
  width: 100%;
  order: 4;
}
.form_area form dl > div dt {
  width: 30%;
  padding: 0;
  padding-left: 1rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .form_area form dl > div dt { /*sp*/
    width: 100%;
    padding-left: 0;
    padding-bottom: 0.5rem;
  }
  .form_area form dl > div dt br {
    display: none;
  }
}
.form_area form dl > div dt span {
  position: absolute;
  top: 10px;
  right: 0;
  line-height: 1;
  color: #fff;
  padding: 2px 5px;
  font-size: 0.6rem;
}
@media screen and (max-width: 767px) {
  .form_area form dl > div dt span {
    top: 0px;
  }
}
.form_area form dl > div dt span.ind {
  background: #FFBC15;
}
.form_area form dl > div dt span.any {
  background: #555;
}
.form_area form dl > div dd {
  width: 65%;
  padding: 0;
}
@media screen and (max-width: 640px) {
  .form_area form dl > div dd { /*sp*/
    width: 100%;
  }
}
.form_area form dl > div dd > p {
  font-size: 0.8rem;
  line-height: 1.8;
}
.form_area form dl > div dd > p.tool span {
  display: inline-block;
  color: #006BB3;
  text-decoration: underline;
  cursor: pointer;
}
.form_area form .check {
  margin-top: 2rem;
}
.form_area form .check h2 {
  background-color: #F0F0F0;
  padding: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.form_area form .check > p {
  text-align: center;
  margin-bottom: 1.5rem;
}
.form_area form .check .col {
  border: 1px solid #ccc;
  padding: 1rem;
  margin-bottom: 0.3rem;
  display: grid;
  grid-template-columns: 75% 1fr;
  grid-gap: 10px;
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form_area form .check .col {
    grid-template-columns: 1fr;
  }
}
.form_area form .check .col::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 10px;
  width: 20px;
  height: 20px;
  color: #fff;
  line-height: 20px;
  background: #555;
  border-radius: 100px;
  text-align: center;
}
.form_area form .check .col p {
  position: relative;
  line-height: 1.4;
}
.form_area form .check .col p:nth-of-type(2) {
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .form_area form .check .col p:nth-of-type(2) {
    justify-content: flex-start;
  }
}
.form_area form .check .col p:nth-of-type(2) input[type=checkbox] {
  order: 1;
}
@media screen and (max-width: 767px) {
  .form_area form .check .col p:nth-of-type(2) input[type=checkbox] {
    width: 8%;
    margin-left: 0px;
  }
}
.form_area form .check .col p:nth-of-type(2) span {
  display: block;
  order: 2;
}
@media screen and (max-width: 767px) {
  .form_area form .check .col p:nth-of-type(2) span {
    width: 80%;
    text-align: left;
  }
}
.form_area form .check .col p:nth-of-type(2) .error {
  color: rgb(255, 40, 40);
  border-radius: 2px;
  line-height: 1;
  padding: 2px;
  padding-top: 0.3rem;
  font-size: 0.8rem;
  display: block;
  white-space: nowrap;
  background: #fff;
  order: 3;
}
@media screen and (max-width: 767px) {
  .form_area form .check .col p:nth-of-type(2) .error {
    width: 100%;
    text-align: left;
    white-space: wrap;
  }
}
.form_area form .check .col p:nth-of-type(2) .error#user_id_check-error {
  top: 70px;
}
.form_area form .check .col p:nth-of-type(2) .error#service_use-error, .form_area form .check .col p:nth-of-type(2) .error#service_check-error {
  top: -25px;
}
.form_area form .check .col:nth-of-type(1)::before {
  content: "1";
}
.form_area form .check .col:nth-of-type(2)::before {
  content: "2";
}
.form_area form .check .col:nth-of-type(3)::before {
  content: "3";
}
.form_area form .popup_btn {
  max-width: 60%;
  padding: 1rem;
  margin: auto;
  margin-top: 2rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: center;
  background-image: url(../img/popup.svg);
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 30px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form_area form .popup_btn {
    max-width: 100%;
    background-size: 15px;
  }
}
.form_area form .btn {
  padding-top: 2rem;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
.form_area form .btn > input {
  background-color: #3ABCEA;
  color: #fff;
  border: none;
  width: 250px;
  display: block;
  padding: 1rem;
  margin: 0 1rem;
  box-sizing: border-box;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 2px;
  background-repeat: no-repeat;
  background-position: 95% center;
  border-radius: 5px;
}
.form_area form .btn > input[type=button] {
  background-color: #BDBDBD;
  cursor: pointer;
}
.form_area form .btn > input[type=submit] {
  background-color: #3ABCEA;
  background-image: url(../img/icon_arrow.webp);
  cursor: pointer;
}
.form_area form .btn > input[type=button] {
  cursor: pointer;
}
/* 入力フィールドの位置ずれ修正 */
.form_area form dd > div {
  display: block;
  position: relative;
  margin-left: 0;
  left: 0;
}

.form_area form dd > div input[type=text] {
  margin-left: 0 !important;
  position: relative;
  left: 0 !important;
}
