@charset "UTF-8";

body {
  display: flex;
  flex-direction: column;
}

main {
  background: var(--background-blue);
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 64px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  flex: 1;
}

main .annotation {
  font-size: 10px;
  margin-top: 8px;
}

main a {
  color: var(--primary);
  font-weight: bold;
  transition: 0s;
}

@media(hover:hover) {
  main a:hover {
    text-decoration: underline;
  }
}

main h1 {
  font-size: 32px;
  color: var(--black);
}

main .sec_cnt {
  width: 100%;
  max-width: 672px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

main .sec {
  width: 100%;
  display: flex;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0px 0px 32px 0px rgba(0, 148, 255, 0.08);
}

main .sec_ttl {
  margin: 32px 0;
  text-align: center;
  font-size: 32px;
}

@media (max-width: 767px) {
  main {
    padding: 40px 16px;
    gap: 40px;
    font-size: 14px;
  }

  main h1 {
    font-size: 24px;
  }

  main .sec_cnt {
    gap: 24px;
  }

  main .sec_ttl {
    font-size: 24px;
  }

  main .sec {
    max-width: 480px;
    margin: 0 auto;
    border-radius: 8px;
    gap: 24px;
    padding: 40px 24px;
    box-shadow: 0px 0px 32px 0px rgba(0, 148, 255, 0.2);
  }
}

/* アコーディオン */
.accordion {
  color: var(--primary);
  font-weight: bold;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 4px 12px;
  transition: 0.3s;
}

.accordion::after {
  font-family: "FontAwesome";
  content: "\f105";
  font-size: 1.7em;
  transform: rotate(90deg);
  display: block;
  transition: 0.3s;
}

.accordion.open::after {
  transform: rotate(-90deg);
}

@media (hover: hover) {
  .accordion:hover {
    opacity: 0.5;
  }
}

/* トーンモバイルの機種変更って？
-------------------------------------*/
#what {
  background: rgba(130, 210, 390, 0.2);
  box-shadow: none;
  padding: 24px 32px;
  gap: 16px;
}

#what h2 {
  font-size: 20px;
  line-height: 1.5;
}

#what h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
  margin-top: 48px;
}

#what h3:nth-of-type(1) {
  margin-top: 0;
}

#what .points_box {
  width: 100%;
  display: none;
  margin-top: 24px;
}

#what .points {
  display: flex;
  gap: 24px;
  width: 100%;
}

#what .points li {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  align-self: stretch;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0px 0px 32px 0px rgba(0, 148, 255, 0.08);
}

#what .feature li img {
  height: 88px;
  width: auto;
}

@media (max-width: 767px) {
  #what.sec {
    background: rgba(130, 210, 390, 0.2);
    padding: 24px 16px 16px;
    gap: 8px;
  }

  #what h3 {
    font-size: 20px;
    margin-bottom: 24px;
    margin-top: 32px;
  }

  #what .points {
    gap: 12px;
    flex-direction: column;
  }

  #what .points li {
    padding: 16px;
    font-weight: bold;
    flex-direction: row;
    justify-content: center;
    text-align: left;
    flex-direction: row-reverse;
    gap: 32px;
  }

  #what .points li p {
    width: 120px;
  }

  #what .points li img {
    height: auto;
    width: 120px;
  }

  #what .points.device_expansion li {
    gap: 16px;
  }

  #what .points.device_expansion p {
    width: 140px;
  }
}

/* 動作確認済み端末をご用意ください
-------------------------------------*/
#device {
  background: rgba(130, 210, 390, 0.2);
  box-shadow: none;
  padding: 24px 32px;
  gap: 8px;
}

#device .attention {
  padding: 32px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

#device h2 {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 16px;
  word-break: keep-all;
  text-align: center;
}

#device b.red {
  width: 100%;
}

#device .attention img {
  height: 100px;
  width: auto;
}

#device .devicelist {
  width: 100%;
}

#device .devicelist_btn {
  width: 100%;
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
}

#device .devicelist_box {
  box-shadow: 0px 0px 32px 0px rgba(255, 187, 0, 0.08);
  display: none;
  height: 600px;
  overflow: scroll;
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
}

#device .devicelist_box dt {
  font-size: 18px;
  font-weight: bold;
  border-bottom: var(--black) solid 3px;
  padding-bottom: 4px;
  margin-bottom: 12px;
  width: 100%;
}

#device .devicelist_box dd {
  margin-bottom: 24px;
}

#device .devicelist_box #smartphoneList {
  background: transparent;
}

#device .devicelist_box #smartphoneList .carrier-section {
  padding: 0;
}

#device .devicelist_box #smartphoneList ul.smartphone-list {
  gap: 0;
}

#device .devicelist_box #smartphoneList ul.smartphone-list li.smartphone-list-item {
  font-size: 14px;
  padding: 8px 16px 8px 28px;
}

@container (max-width: 600px) {
  #device #confirmed_operation_device .device_select_box {
    padding: 8px 0 24px;
  }

  #device #confirmed_operation_device .device_select_box h2 {
    align-items: start;
  }
}

@media (max-width: 767px) {
  #device {
    background: rgba(130, 210, 390, 0.2);
    padding: 24px 16px;
    gap: 16px;
  }

  #device>.text {
    width: 255px;
    margin: 0;
  }

  #device>.text::after,
  #device>.text::before {
    background-size: cover;
    width: 36px;
    height: 30px;
  }

  #device .attention {
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    padding: 24px 16px;
    text-align: center;
  }

  #device .attention h2 {
    line-height: 1.4;
  }

  #device .attention h2 span {
    font-size: 14px;
    margin-bottom: 4px;
  }

  #device #smartphoneList {
    padding: 16px 0 0;
  }

  #device .devicelist_btn {
    font-size: 16px;
    padding: 0;
  }

  #device .devicelist_box {
    margin-top: 16px;
    padding: 16px;
    height: 400px;
  }
}

/* TONEで次に使用する端末はお持ちですか？
-------------------------------------*/
#app {
  width: 100%;
}

#next_device {
  text-align: center;
}

#next_device h2 {
  font-size: 24px;
  line-height: 1.5;
}

#next_device .switch {
  width: 100%;
}

#next_device .select {
  width: 100%;
  display: flex;
  gap: 24px;
}

#next_device .select input[type=radio] {
  position: absolute;
  opacity: 0;
}

#next_device .select input[type=radio]+label {
  border-radius: 8px;
  border: 2px solid #E7E7E7;
  display: flex;
  gap: 16px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  flex: 1;
  font-size: 20px;
  font-weight: bold;
  color: var(--neutral-500);
  position: relative;
  transition: 0.3s;
  letter-spacing: 1.5px;
}

#next_device .select input[type=radio]+label:before {
  content: "";
  background: var(--background-gray);
  border-radius: 100%;
  display: inline-block;
  left: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  position: absolute;
}

#next_device .select input[type=radio]:checked+label {
  border: 2px solid var(--primary);
  background: var(--background-blue);
  color: var(--primary);
}

#next_device .select input[type=radio]:checked+label:before {
  background-color: var(--primary);
  box-shadow: inset 0 0 0 6px var(--white);
}

@media (hover: hover) {
  #next_device .select input[type=radio]:checked:hover+label {
    border: 2px solid var(--primary);
    color: var(--primary);
  }

  #next_device .select input[type=radio]:checked:hover+label:before {
    background-color: var(--primary);
    box-shadow: inset 0 0 0 6px var(--white);
  }
}

@media (hover: hover) {
  #next_device .select input[type=radio]:hover+label {
    border: 2px solid #b1b1b1;
    color: #555;
  }

  #next_device .select input[type=radio]:hover+label:before {
    background-color: #d2d2d2;
    box-shadow: inset 0 0 0 5px var(--background-gray);
  }
}

#next_device .select input[type=radio]:focus+label:before {
  outline: none;
  border-color: #3197ee;
}

#next_device .next_device_have {
  padding: 40px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

#next_device .next_device_have .step_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#next_device .next_device_have .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#next_device .next_device_have .step .qr {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (hover: hover) {
  #next_device .next_device_have .step .qr a img {
    transition: 0.3s;
  }

  #next_device .next_device_have .step .qr a img:hover {
    opacity: 0.5;
  }
}

#next_device .next_device_have .step .text {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  word-break: keep-all;
}

span #next_device .next_device_have .step .text {
  display: block;
}

#next_device .next_device_have .step.first span {
  margin-bottom: 8px;
}

#next_device .next_device_have .step.second .text span {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
  display: block;
}

#next_device .next_device_have h3 {
  display: block;
  color: var(--black);
  font-size: 24px;
}

#next_device .next_device_have h4 {
  color: var(--secondary);
  font-size: 20px;
  line-height: 2;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  text-align: left;
  background: var(--background-yellow);
  padding: 24px 32px;
  border-radius: 8px;
}

#next_device .next_device_have h4 img {
  height: 110px;
  width: auto;
}

#next_device .next_device_have h5 {
  width: 100%;
  padding: 12px 32px;
  text-align: center;
  font-style: italic;
  color: var(--WEB-text-Link, var(--primary));
  background: var(--background-blue);
  font-family: "Poppins"sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 4px;
}

#next_device .next_device_have .num_input {
  width: 100%;
  position: relative;
}

#next_device .next_device_have .num_input #support {
  max-width: 320px;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
  display: block;
  color: var(--secondary);
  font-size: 20px;
  position: absolute;
  background: var(--background-yellow);
  padding: 16px 24px;
  border-radius: 8px;
  right: -160px;
  top: 0;
  bottom: 0;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
  border: 3px solid var(--secondary);
  font-weight: bold;
  box-shadow: 0px 4px 10px 0px rgba(55, 141, 178, 0.23);
}

#next_device .next_device_have .num_input #support:hover {
  opacity: 0.5;
}

#next_device .next_device_have .num_input #support::before,
#next_device .next_device_have .num_input #support::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  rotate: 225deg;
  translate: -50%;
  left: 0;
  top: 0;
  bottom: -6px;
  margin: auto;
}

#next_device .next_device_have .num_input #support::before {
  background: var(--background-yellow);
}

#next_device .next_device_have .num_input #support::after {
  border: 3px solid;
  border-color: var(--secondary) var(--secondary) transparent transparent;
}

#next_device .next_device_have .num_input #support p {
  flex-direction: column;
  align-items: center;
  display: flex;
  font-size: 16px;
}

#next_device .next_device_have .num_input #support p span {
  font-size: 24px;
  line-height: 1.5;
}

#next_device .next_device_have .num_input #support .sp_button {
  display: none;
  position: absolute;
  bottom: 24px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 200px;
  z-index: 1;
  font-size: 24px;
  border: var(--white) solid 3px;
  box-shadow: 0px 4px 10px 0px rgba(55, 141, 178, 0.23);
}

#next_device .next_device_have .num_input #support.active {
  opacity: 1;
  pointer-events: all;
}

#next_device .next_device_have input[type=number] {
  width: 100%;
  max-width: 320px;
  padding: 12px;
  font-size: 18px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #E7E7E7;
  transition: 0.3s;
}

#next_device .next_device_have input[type=number]::-webkit-outer-spin-button,
#next_device .next_device_have input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

#next_device .next_device_have input[type=number]::-moz-placeholder {
  color: #c0c0c0;
}

#next_device .next_device_have input[type=number]::placeholder {
  color: #c0c0c0;
}

#next_device .next_device_have input[type=number]:focus-visible {
  border: 2px solid var(--primary);
  outline: transparent;
}

#next_device .next_device_have button {
  display: flex;
  width: 100%;
  max-width: 230px;
  padding: 14px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: bold;
  font-size: 20px;
  border-radius: 74px;
  background: var(--primary);
  border: 2px solid var(--primary);
  position: relative;
  transition: 0.3s;
}

#next_device .next_device_have button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6em;
  font-weight: normal;
  height: -moz-fit-content;
  height: fit-content;
  transition: 0.3s ease;
  color: var(--white);
  content: "\f105";
  font-family: "FontAwesome";
}

@media (hover: hover) {
  #next_device .next_device_have button:hover {
    color: var(--primary);
    background: var(--white);
    text-decoration: none;
  }

  #next_device .next_device_have button:hover::after {
    color: var(--primary);
  }
}

#next_device .next_device_not {
  padding: 40px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

#next_device .next_device_not h3 {
  text-align: center;
  font-weight: normal;
  line-height: 1.3;
  word-break: keep-all;
}

#next_device .next_device_not h3 span {
  font-size: 24px;
  color: #5DB300;
  display: block;
  font-weight: bold;
  word-break: keep-all;
  line-height: 1.5;
  margin-bottom: 8px;
}

#next_device .next_device_not .comment {
  width: 100%;
  max-width: 380px;
  display: block;
  color: var(--secondary);
  font-size: 16px;
  position: relative;
  background: var(--background-yellow);
  padding: 16px 24px;
  border-radius: 8px;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
  border: 3px solid var(--secondary);
}

#next_device .next_device_not .comment::before,
#next_device .next_device_not .comment::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  rotate: 135deg;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
}

#next_device .next_device_not .comment::before {
  background: var(--background-yellow);
}

#next_device .next_device_not .comment::after {
  border: 3px solid;
  border-color: var(--secondary) var(--secondary) transparent transparent;
}

#next_device .next_device_not p {
  word-break: keep-all;
}

#next_device .next_device_not .text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  word-break: keep-all;
  text-align: center;
  justify-content: center;
  line-height: 1.3;
  margin: 8px 0 16px;
}

#next_device .next_device_not .text::after,
#next_device .next_device_not .text::before {
  content: "";
  background: no-repeat url(/contract/change/img/device_comment.png);
  background-size: cover;
  width: 17px;
  height: 25px;
  display: block;
}

#next_device .next_device_not .text::after {
  transform: scale(-1, 1);
}

#next_device .next_device_not .text b {
  color: var(--secondary);
}

#next_device .next_device_not .accordion {
  margin-top: 24px;
}

#next_device .next_device_not .accordion::after {
  transform: none;
}

@media (max-width: 980px) {
  #next_device .next_device_have .num_input #support {
    display: block;
    color: var(--secondary);
    font-size: 20px;
    position: absolute;
    background: var(--background-yellow);
    padding: 16px 24px;
    border-radius: 8px;
    right: -50px;
    top: 0;
    bottom: 0;
    height: -moz-max-content;
    height: max-content;
    margin: auto;
    border: 3px solid var(--secondary);
    font-weight: bold;
    box-shadow: 0px 4px 10px 0px rgba(55, 141, 178, 0.23);
  }
}

@media (max-width: 767px) {
  #next_device h2 {
    font-size: 18px;
  }

  #next_device .switch {
    max-width: 400px;
  }

  #next_device .select {
    flex-direction: column;
  }

  #next_device .select input[type=radio]+label {
    padding: 16px 16px 16px 64px;
    justify-content: start;
    font-size: 18px;
  }

  #next_device .next_device_have h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  #next_device .next_device_have h4 {
    flex-direction: column;
    text-align: center;
    line-height: 1.5;
    gap: 16px;
  }

  #next_device .next_device_have h4 img {
    height: 90px;
  }

  #next_device .next_device_have .step .qr {
    flex-direction: column;
  }

  #next_device .next_device_have .step.second .text {
    word-break: break-all;
  }

  #next_device .next_device_have .step.second .text span {
    font-size: 14px;
  }

  #next_device .next_device_have .num_input #support {
    right: 0;
    left: 0;
    top: -220px;
    border: 2px solid var(--secondary);
  }

  #next_device .next_device_have .num_input #support::before,
  #next_device .next_device_have .num_input #support::after {
    left: 0;
    translate: 0;
    right: 0;
    top: auto;
    bottom: -12px;
    rotate: 135deg;
  }

  #next_device .next_device_have .num_input #support p {
    font-size: 14px;
    line-height: 1.5;
  }

  #next_device .next_device_have .text {
    word-break: auto-phrase;
  }

  #next_device .next_device_not {
    gap: 32px;
  }

  #next_device .next_device_not .comment {
    line-height: 1.4;
    padding: 16px;
    font-size: 14px;
  }
}

/* 注意事項
-------------------------------------*/
#precautions {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#precautions h2 {
  margin: 64px 0 32px;
  text-align: center;
  font-size: 32px;
}

@media (max-width: 767px) {
  #precautions {
    gap: 24px;
  }

  #precautions h2 {
    margin: 40px 0 16px;
    font-size: 24px;
  }
}

/* TONEファミリー
-------------------------------------*/
#family {
  /* タイトル */
  /* 移行期間中利用できない機能 */
}

#family .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-weight: bold;
}

#family .title p {
  font-size: 12px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  padding: 4px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #E7E7E7;
  margin-bottom: 4px;
}

#family .title h3 {
  color: #FF8383;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

#family .title h3 img {
  width: 34px;
}

#family .transition_box {
  width: 100%;
}

#family .transition_box h4 {
  text-align: center;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.4;
}

#family .transition_box h4 span {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

#family .transition {
  display: flex;
  padding: 24px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  background: var(--background-blue);
}

#family .transition h4 {
  word-break: keep-all;
  text-align: center;
}

#family .transition li {
  list-style: disc;
}

#family .accordion_container {
  width: 100%;
  max-width: 672px;
  border-radius: 8px;
  position: relative;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.06);
  container-type: inline-size;
}

#family .accordion_container>div th.sticky_col {
  background: transparent;
}

#family .family_btn {
  padding: 24px 56px 24px 32px;
  width: 100%;
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  pointer-events: auto;
  display: flex;
  align-items: center;
  transition: 0.3s;
  position: relative;
  border-radius: 6px;
  z-index: 10;
}

#family .family_btn::after {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  right: 32px;
  font-size: 30px;
  font-weight: normal;
  transition: 0.3s;
  transform: rotate(90deg);
}

#family .family_btn.open::after {
  transform: rotate(-90deg);
}

#family .family_box {
  display: none;
  padding: 0 32px 32px;
}

@media (max-width: 767px) {
  #family {
    padding: 32px 24px;
  }

  #family .title h3 {
    font-size: 24px;
    gap: 8px;
  }

  #family .transition {
    padding: 24px 16px;
    gap: 16px;
  }

  #family .transition li {
    margin-left: 24px;
  }

  #family .family_btn {
    padding: 16px 40px 16px 16px;
  }

  #family .family_btn::after {
    right: 24px;
  }

  #family .family_box {
    padding: 0 16px 32px;
  }
}

/* 安心OP
-------------------------------------*/
#anshin {
  /* タイトル */
}

#anshin .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-weight: bold;
}

#anshin .title h3 {
  font-size: 24px;
}

@media (max-width: 767px) {
  #anshin .title h3 {
    word-break: keep-all;
    line-height: 1.5;
  }
}

/* TONE Coin
-------------------------------------*/
#coin .title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-weight: bold;
}

#coin .title p {
  font-size: 12px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  padding: 4px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #E7E7E7;
  margin-bottom: 4px;
}

#coin .title img {
  width: 100%;
  max-width: 250px;
}

#coin .text span {
  color: var(--secondary);
  font-weight: bold;
}

/* その他の注意事項
-------------------------------------*/
#other h3 {
  font-size: 24px;
}

#other ol {
  list-style: decimal;
}

#other ul {
  width: 100%;
  list-style: square;
}

#other ul li {
  margin-left: 24px;
  text-align: justify;
}

#other .precautions {
  width: 100%;
  max-width: 672px;
  border-radius: 8px;
  border: 2px solid var(--neutral-500);
  background: var(--background-gray);
  height: 300px;
  padding: 24px 32px;
  overflow-y: scroll;
  line-height: 1.7;
  text-align: justify;
}

#other .precautions .textbox {
  padding: 16px 16px 0;
}

#other .precautions .textbox ul.first {
  margin-top: 0;
}

#other .precautions .textbox ul.first li {
  margin-left: 12px;
}

#other .precautions .textbox h5.first {
  margin-top: 0;
}

#other .precautions ul {
  margin: 12px 0;
  list-style: disc;
}

#other .precautions li {
  font-size: 12px;
  margin-left: 26px;
}

#other .precautions>li {
  list-style: none;
  margin-left: 0;
}

#other .precautions>li:nth-of-type(1) h4 {
  margin: 0;
}

#other .precautions h4 {
  margin: 32px 0 0;
  padding: 6px 8px 8px 0;
  border-bottom: solid 2px var(--black);
  font-size: 16px;
  line-height: 1.5;
}

#other .precautions h4+.indent {
  margin: 8px 16px 0;
}

#other .precautions h5 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.07);
  font-size: 12px;
  border-radius: 2px;
  line-height: 1.5;
  margin: 16px 0;
}

#other .precautions .annotation {
  line-height: 1.3;
  display: block;
  margin: 4px 0;
  font-size: 10px;
}

#other .precautions p.coin {
  margin-top: 16px;
}

#other .precautions .glay {
  color: #888;
}

#other .precautions .labo ul {
  list-style: none;
}

#other .precautions .labo ul li {
  margin: 0;
}

#other .precautions .labo ul li h5 {
  margin-bottom: 8px;
}

#other .precautions .labo ul li p,
#other .precautions .labo ul li b {
  padding-left: 16px;
}

#other .precautions .labo ul li b:nth-of-type(n+2) {
  padding-top: 8px;
  display: block;
}

@media (max-width: 767px) {
  #other .precautions {
    padding-bottom: 24px;
  }

  #other .precautions ul li {
    margin-left: 16px;
  }

  #other .precautions .precautions {
    height: 400px;
    padding: 24px 16px;
  }

  #other .precautions .precautions .textbox {
    padding: 12px 0 0 0;
  }

  #other .precautions .precautions h4 {
    line-height: 1.5;
    margin-top: 24px;
  }

  #other .precautions .precautions h5 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  #other {
    padding-bottom: 24px;
  }

  #other ul li {
    margin-left: 16px;
  }

  #other .precautions {
    height: 400px;
    padding: 24px 16px;
  }

  #other .precautions .textbox {
    padding: 12px 0 0 0;
  }

  #other .precautions h5 {
    line-height: 1.5;
    margin-top: 24px;
  }

  #other .precautions h5 {
    width: 100%;
  }
}

/* 同意、ボタン
-------------------------------------*/
#agreementForm {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

#agreementForm .checkboxFlex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#agreementForm .cvButton a {
  pointer-events: none;
  opacity: 0.5;
  background: var(--primary);
  border: solid 2px var(--primary);
  min-width: 230px;
}

#agreementForm .cvButton a.active {
  pointer-events: auto;
  opacity: 1;
}

#agreementForm .cvButton a:hover {
  color: var(--primary);
  background: var(--white);
}

#agreementForm .error-message {
  color: var(--secondary);
  display: none;
  font-weight: bold;
  padding: 8px 32px;
  background: var(--white);
  border-radius: 4px;
}

@media (max-width: 767px) {
  #agreementForm {
    gap: 32px;
    margin-top: 16px;
  }

  #agreementForm .checkboxFlex {
    gap: 8px;
  }
}

/* メンテナンス表示
-------------------------------------*/
/* .maintenance {
  width: 100%;
  background: #FFEFEC;
  background: #FFFACC;
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
  box-sizing: border-box;
  padding: 20px;

  div {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    color: var(--secondary);
    font-size: 16px;

    @media (max-width: 767px) {
      max-width: 480px;
    }
  }

  h2 {
    color: #D94729;
    font-size: 18px;
    white-space: nowrap;
  }

  @media (max-width: 480px) {
    padding: 16px 24px;
    border-top: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);

    div {
      flex-direction: column;
      gap: 12px;
      font-size: 12px;
      line-height: 1.5;
    }

    h2 {
      font-size: 16px;
    }
  }
} */

/* header, footer 一部非表示
-------------------------------------*/
#header-nav,
.underNav,
.skip-link,
#footer-navs,
footer .border,
#footer-navs-sp {
  display: none !important;
}

#footer {
  padding-bottom: 0 !important;
  background: var(--background-blue) !important;
}

/*# sourceMappingURL=check.css.map */
