input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance:textfield;
}

.custom-dot::before {
    content: "•";
    position: absolute;
    color: #FFFFFF;
    top: -15px;
    right: 46px;
}
.custom-dot::after {
    content: "•";
    position: absolute;
    color: #FFFFFF;
    top: -15px;
    right: 26px;
}

.arrow-button {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: inline-block;
    width: 16px; /* 円のサイズ */
    height: 16px;
    background-color: #FFD700; /* 黄色の背景 */
    border-radius: 50%; /* 円形にする */
    border: 1px solid #005f86; /* 青色のボーダー */
    cursor: pointer;
}
.arrow-button::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 1px solid #005f86; /* 青色の矢印の線 */
    border-bottom: 1px solid #005f86;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-45deg); /* 矢印を45度回転させて表示 */
}

.login-icon {
    position: absolute;
    left: 117px;
    top: 50%;
    transform: translateY(-50%);
}
.header-login-icon {
    position: absolute;
    left: 6px;
    top: -3px;
    /* transform: translateY(-50%); */
}

.top-login-icon {
    position: absolute;
    top: 50%;
    left: 117px;
    transform: translateY(-50%);
}

.footer-login-button:hover .arrow-icon {
    border-color: #FFD700;
}
.footer-login-button:hover .arrow-icon::after {
    border-color: #FFD700;
}

.login-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.arrow-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    cursor: pointer;
}
.arrow-icon:hover {
    border-color: #FFD700;
}
.arrow-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.create-resume-arrow {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #005f86;
    cursor: pointer;
    position: relative;
    top: 1px;
}

.create-resume-arrow::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-right: 1px solid #005f86;
    border-bottom: 1px solid #005f86;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* 静的ページのスタイル */
.static-page h2 {
    position: relative;
    padding-left: 12px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #cccccc;
    font-size: 1.2rem;
    line-height: 1.5;
}
.static-page h2::before {
    position: absolute;
    top: 7px;
    left: 0;
    content: "";
    height: 20px;
    width: 4px;
    background-color: #BFE9DB;
    border-radius: 4px;
}

.static-page h3 {
    position: relative;
    padding-left: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}
.static-page h3::before {
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
    height: 6px;
    width: 6px;
    background-color: #BFE9DB;
    border-radius: 50%;
}

/* フォームを追加するボタン */
.form-add-button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #005D98;
}
.form-add-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background-color: #FFFFFF;
}
.form-add-button span:first-of-type {
  height: 2px;
  width: 12px;
}
.form-add-button span:last-of-type {
  height: 12px;
  width: 2px;
}

/* フォームを削除するボタン */
.form-delete-button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #999999;
  cursor: pointer;
}
.form-delete-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background-color: #FFFFFF;
  height: 2px;
  width: 12px;
}

/* 入学・卒業など複数フォームのまとまりを削除するボタン */
.form-delete-button.multi-form {
  top: 20px;
  right: 0;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 20px;
  border-radius: 4px;
  background-color: #BFE9DB;
}

.arrow-left {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #005f86;
  cursor: pointer;
}

.arrow-left::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-right: 1px solid #005f86;
  border-bottom: 1px solid #005f86;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.form-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #BFE9DB;
}

.back-to-top-container {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  max-width: 375px;
  width: 100%;
  bottom: 10px;
  pointer-events: none;
  z-index: 100;
}

.back-to-top {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.1s;
}

.back-to-top:hover {
  transform: translateY(-2px);
}
