@charset "UTF-8";
.sheet-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6.375rem;
}
.sheet-info .info-text {
  text-align: center;
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
}
.sheet-info .info-text img {
  margin-left: 0.5rem;
  padding-bottom: 5px;
  width: 1.5rem;
}

.auth-btn-wrap {
  background-color: rgb(247, 247, 247);
  border-radius: 5px;
  margin-top: 3.5rem;
  padding: 9rem 6rem 3.5rem;
}
.auth-btn-wrap .auth-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.auth-btn-wrap .auth-btns > img {
  position: absolute;
  top: -76px;
  left: 1rem;
  transform: translateX(130px);
}
.auth-btn-wrap .auth-attend {
  margin-top: 70px;
  border-top: 1px solid rgb(112, 112, 112);
  padding-top: 2.5rem;
}

.auth-btn {
  position: relative;
  font-weight: bold;
  border-radius: 5rem;
  padding: 0.5rem 0;
  width: 50%;
  text-align: center;
  line-height: 3.2rem;
}
.auth-btn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1em;
  top: 0%;
  right: 1em;
}

.register-btn {
  border: 2px solid #F64623;
  background-color: #F64623;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.register-btn > img {
  position: absolute;
  left: -36px;
  bottom: 5px;
}
.register-btn::before {
  background: url(/assets/img/arrow_wh.svg) center center no-repeat;
}
.register-btn:hover {
  border: 2px solid #F64623;
  color: #F64623;
  background-color: #fff;
}
.register-btn:hover::before {
  background: url(/assets/img/arrow_og.svg) center center no-repeat;
}

.login-btn {
  border: 2px solid #F64623;
  color: #F64623;
  background-color: #fff;
  margin-bottom: 1.25rem;
}
.login-btn::before {
  background: url(/assets/img/arrow_og.svg) center center no-repeat;
}
.login-btn:hover {
  border: 2px solid #F64623;
  background-color: #F64623;
  color: #fff;
}
.login-btn:hover::before {
  background: url(/assets/img/arrow_wh.svg) center center no-repeat;
}

.guest-btn {
  border: 2px solid rgb(199, 199, 199);
  background-color: #fff;
  margin-bottom: 1.25rem;
  color: black;
}
.guest-btn::before {
  background: url(/assets/img/arrow-bk-mini.svg) center center no-repeat;
}
.guest-btn:hover {
  border: 2px solid #fff;
  background-color: rgb(199, 199, 199);
  color: #fff;
}
.guest-btn:hover::before {
  background: url(/assets/img/arrow_wh.svg) center center no-repeat;
}

.sheet-items {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 0.625rem;
}
.sheet-items .sheet-item {
  width: 45.5%;
  border: 6px solid rgb(100, 100, 100);
  border-radius: 20px;
  margin-top: 4.5rem;
}
.sheet-items .sheet-item:nth-child(1), .sheet-items .sheet-item:nth-child(2) {
  margin-top: 0 !important;
}
.sheet-items .sheet-item .format-title {
  max-height: 100px;
  background-color: rgb(252, 247, 213);
  padding: 1.5rem 0;
  border-radius: 20px 20px 0 0;
}
.sheet-items .sheet-item .format-title-other {
  max-height: 100px;
  background-color: rgb(252, 245, 237);
  padding: 1.5rem 0;
  border-radius: 20px 20px 0 0;
}
.sheet-items .sheet-item .format-body {
  padding: 2rem 3.3rem 2.5rem;
}
.sheet-items .sheet-item .format-icon {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.sheet-items .sheet-item .format-icon > img {
  max-height: 5.25rem;
}
.sheet-items .sheet-item .format-icon > img.resume-img {
  margin-left: 1rem;
}
.sheet-items .sheet-item .format-icon .resume-size {
  margin-top: 1.25rem;
  border: 3px solid rgb(100, 100, 100);
  border-radius: 2rem;
  background-color: rgb(245, 245, 245);
  padding: 0.2rem 2.625rem;
  font-size: 1.3rem;
  text-align: center;
}
.sheet-items .sheet-item .format-description {
  margin-top: 2rem;
  max-height: 214px;
  height: 214px;
}
.sheet-items .sheet-item .format-btn {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
}
.sheet-items .sheet-item .format-btn .hover-off img {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  right: 0;
}
.sheet-items .sheet-item .format-btn .hover-on img {
  position: absolute;
  z-index: 1;
  bottom: 3.375rem;
  right: 0;
}
.sheet-items .sheet-item .format-btn .btn-format-submit {
  border: 2px solid rgb(0, 138, 71);
  background: rgb(0, 138, 71);
  border-radius: 5rem;
  color: rgb(255, 255, 255);
  padding: 0.67rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 355px;
  z-index: 10;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.7em;
}
.sheet-items .sheet-item .format-btn .btn-format-submit:hover {
  background: white;
  color: rgb(0, 138, 71);
}
.sheet-items .sheet-item .format-btn .btn-format-submit-other {
  border: 2px solid rgb(0, 129, 249);
  background: rgb(0, 129, 249);
}
.sheet-items .sheet-item .format-btn .btn-format-submit-other:hover {
  background: white;
  color: rgb(0, 129, 249);
}

.contact-info {
  margin: 5.75rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.contact-info > img {
  position: absolute;
  bottom: -0.5rem;
  left: 9.5rem;
  z-index: 10;
}

.btn-contact {
  border: 2px solid rgb(255, 186, 0);
  background: rgb(255, 186, 0);
  color: rgb(6, 6, 6);
  padding: 1.5rem;
  line-height: 2em;
  margin-top: 3.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 632px;
  font-size: 27px;
}
.btn-contact:hover {
  background: white;
  color: rgb(6, 6, 6);
  line-height: 2em;
}

.preview-format embed {
  width: 100%;
  height: 760px;
}

@media (max-width: 980px) {
  .modal-dialog {
    /* カスタムスタイルをここに追加 */
    margin-right: auto;
    margin-left: auto;
    /* 例：カスタムの最大幅を設定 */
    max-width: 120%;
  }
}
.login-induction {
  margin-top: 2rem;
  text-align: center;
}
.login-induction span {
  font-weight: bolder;
  position: relative;
}
.login-induction span::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 6px solid rgba(255, 186, 0, 0.2);
}

@media screen and (max-width: 578px) {
  .f42 {
    font-size: 30px;
  }
  .f40 {
    font-size: 28px;
  }
  .f36 {
    font-size: 26px;
  }
  .f32 {
    font-size: 24px;
  }
  .f30 {
    font-size: 22px;
  }
  .f28 {
    font-size: 20px;
  }
  .f26 {
    font-size: 18px;
  }
  .f24 {
    font-size: 20px;
  }
  .f20 {
    font-size: 18px;
  }
  .f18 {
    font-size: 16px;
  }
  .f14 {
    font-size: 14px;
  }
  .f12 {
    font-size: 12px;
  }
  #main_wrapper .inner .sheet-info .f24 > div {
    font-size: 24px;
  }
  .sheet-items .sheet-item {
    margin-top: 0;
    margin-bottom: 4rem;
  }
  .sheet-items .sheet-item:last-child {
    margin-bottom: 0;
  }
  .sheet-items .sheet-item .format-body {
    padding: 2rem 1.5rem 2rem;
  }
  .sheet-items .sheet-item .format-btn {
    margin-top: 0;
  }
  .sheet-items .sheet-item .format-btn .btn-format-submit {
    min-width: 100%;
    font-size: 1.25rem;
  }
  .sheet-items .sheet-item .format-description {
    height: 10rem;
  }
  .btn-contact {
    min-width: 100%;
    font-size: 20px;
  }
  .sheet-item {
    width: 100% !important;
  }
  .contact-info > img {
    width: 6rem;
    bottom: -0.25rem;
    left: 2rem;
  }
  .auth-btn-wrap {
    padding: 7rem 1rem 3.5rem;
  }
  .auth-btn-wrap .auth-btns > img {
    left: -9rem;
  }
  .auth-btn-wrap .auth-btns .auth-btn {
    width: 80%;
  }
  .auth-btn-wrap .auth-attend {
    margin-top: 3rem;
  }
  .preview-format canvas {
    width: 100% !important;
  }
}/*# sourceMappingURL=sheet.css.map */