@charset "UTF-8";
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.75;
  text-rendering: optimizeSpeed;
  margin: 0;
  background-color: #fafafa;
}

.all_container {
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

table {
  border-collapse: collapse;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

body {
  color: #000000;
}

.text_blue {
  color: #00a9f7;
}

.text_red {
  color: #ff2929;
}

html {
  font-size: 1.166180758vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1372px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

.u_sp,
.u_sp_b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp,
  .u_sp_b {
    display: block !important;
  }
}

.u_sp_i {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_i {
    display: inline !important;
  }
}

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

.u_sp_f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_f {
    display: flex !important;
  }
}

.u_sp_t {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_t {
    display: table-row !important;
  }
}

.flexbox {
  display: flex;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

a,
button,
.btn {
  cursor: pointer;
  transition: all 0.3s ease;
}
a:hover,
button:hover,
.btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover,
  button:hover,
  .btn:hover {
    opacity: 1;
  }
}

ol {
  list-style: decimal;
  padding-left: 1em;
}
ol > li > ul {
  list-style: lower-alpha;
  padding-left: 1em;
}
ol > li > ul > li > ul {
  list-style: lower-roman;
  padding-left: 1em;
}

ul.dot_list > li,
.dot {
  display: block;
  position: relative;
  padding-left: 1em;
}
ul.dot_list > li::before,
.dot::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.circle_number_list {
  list-style: none;
  padding-left: 0;
}
.circle_number_list > li {
  position: relative;
  padding-left: 1em;
}
.circle_number_list > li span.number {
  position: absolute;
  left: 0;
  top: 0;
}

.innerbox_1200 {
  max-width: calc(1200px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.innerbox_1200_0 {
  max-width: 1200px;
  margin: 0 auto;
}

.innerbox_1180 {
  max-width: calc(1180px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.innerbox_1026 {
  max-width: calc(1026px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.innerbox_300 {
  max-width: calc(300px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

/* アコーディオン */
.accordion_area {
  margin-top: 1rem;
}
.accordion_area .item {
  transition: all 0.5s ease;
}
.accordion_area .item .accordion_title {
  display: flex;
  align-items: center;
  gap: 1em;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  color: #006ce6;
}
.accordion_area .item .accordion_title span {
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .accordion_area .item .accordion_title span {
    font-size: 1.125rem;
  }
}
.accordion_area .item .accordion_title .open_text {
  display: none;
}
.accordion_area .item .accordion_title .close_text {
  display: block;
}
.accordion_area .item .accordion_title::after {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  border-right: 0.2rem solid #006ce6;
  border-bottom: 0.2rem solid #006ce6;
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out;
  margin: 0 0 0.2rem 0;
}
.accordion_area .item .accordion_title.open .open_text {
  display: block;
}
.accordion_area .item .accordion_title.open .close_text {
  display: none;
}
.accordion_area .item .accordion_title.open::after {
  transform: rotate(225deg);
  margin: 0.4rem 0 0 0;
}
.accordion_area .item .accordion_box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.accordion_area .item .accordion_box .box_image {
  max-width: 36.5rem;
  margin-top: 0.5rem;
}

/* ページトップボタン */
.page_top_btn {
  position: fixed;
  z-index: 9998;
  right: 2rem;
  bottom: 2rem;
  display: block;
  width: 5.625rem;
  height: 5.625rem;
}
@media screen and (max-width: 768px) {
  .page_top_btn {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.page_top_btn img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.1875rem rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.page_top_btn:hover img {
  box-shadow: none;
}

/* body/header/footer */
body {
  background-color: #fafafa;
}

main#main {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  main#main {
    padding-top: 3.125rem;
  }
}
@media screen and (max-width: 480px) {
  main#main {
    padding-top: 2.625rem;
  }
}
main#main::before {
  content: "";
  display: block;
  width: 100%;
  height: 3.125rem;
  background-image: url(../../assets/img/title_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

header#header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  header#header {
    height: auto;
    padding: 0.875rem 0 0.5rem;
  }
}
header#header .header_inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  header#header .header_inner {
    flex-wrap: wrap;
    gap: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  header#header .header_inner {
    gap: 0.625rem;
  }
}
header#header .header_logo {
  width: auto;
  height: calc(100% - 3rem);
  aspect-ratio: 115.8/28;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  header#header .header_logo {
    height: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  header#header .header_logo {
    height: 1.25rem;
  }
}
header#header .header_text {
  font-size: 1.1875rem;
}
@media screen and (max-width: 768px) {
  header#header .header_text {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  header#header .header_text {
    font-size: 0.625rem;
  }
}

footer#footer .footer_upper {
  display: flex;
  justify-content: center;
  background-color: #00a9f7;
  padding: 1rem;
}
footer#footer .footer_upper_inner {
  display: block;
  font-size: 1.625rem;
  line-height: 1;
  font-weight: 900;
  color: #00a9f7;
  background-color: #fff;
  padding: 1rem 3rem;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_upper_inner {
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
  }
}
footer#footer .footer_middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #2fb8f7;
  padding: 1rem 1rem 1.5rem;
}
footer#footer .footer_middle__explain {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_middle__explain {
    font-size: 0.875rem;
  }
}
footer#footer .footer_middle__subtitle {
  font-size: 1.25rem;
  line-height: 1.75;
  padding: 0.75rem 3rem;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_middle__subtitle {
    font-size: 1rem;
    padding: 0.75rem 1.125rem;
  }
}
footer#footer .footer_middle__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 3.625rem;
}
footer#footer .footer_middle__info__tel,
footer#footer .footer_middle__info__mail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer#footer .footer_middle__info__tel .icon,
footer#footer .footer_middle__info__mail .icon {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_middle__info__tel .icon,
  footer#footer .footer_middle__info__mail .icon {
    width: 2rem;
    height: 2rem;
  }
}
footer#footer .footer_middle__info__tel .text,
footer#footer .footer_middle__info__mail .text {
  font-size: 1rem;
}
footer#footer .footer_bottom {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #00a9f7;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  footer#footer .footer_bottom {
    font-size: 0.75rem;
  }
}

/* 共通パーツ */
a.link {
  color: #1e86ff;
  text-decoration: underline;
  word-break: break-all;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc(100% - 2rem);
  width: 43.75rem;
  min-height: 5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  border-radius: 0.375rem;
  margin: 1.875rem auto 0;
  padding: 0.5rem;
}
@media screen and (max-width: 768px) {
  .btn {
    min-height: 4rem;
    font-size: 1rem;
    margin-top: 1rem;
  }
}
.btn.red_btn {
  color: #fff;
  background-color: #ff2929;
}
.btn.pink_btn {
  color: #fff;
  background-color: #ec4170;
}
.btn.orange_btn {
  color: #fff;
  background-color: #f8a800;
}
.btn.white_btn {
  color: #7c7c7c;
  background-color: #fff;
  border: 1px solid #7c7c7c;
}
.btn.blue_btn {
  color: #fff;
  background-color: #00a9f7;
}
.btn.blue_white_btn {
  color: #00a9f7;
  background-color: #fff;
  border: 1px solid #00a9f7;
}
.btn.arrow_btn {
  gap: 0.5rem;
}
.btn.arrow_btn .arrow {
  font-size: 1.65em;
  line-height: 1;
  padding-bottom: 0.15em;
}
.btn.arrow_btn_single {
  gap: 0.5rem;
}
.btn.arrow_btn_single .arrow {
  font-size: 1em;
  line-height: 1;
  padding-bottom: 0.05em;
}

input {
  accent-color: #5b5b5b;
}

ul.kome_mark_list > li,
.kome_mark {
  position: relative;
  display: block;
  padding-left: 1em;
}
ul.kome_mark_list > li::before,
.kome_mark::before {
  content: "※";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

ul.small_kome_mark_list > li,
.small_kome_mark {
  position: relative;
  display: block;
  padding-left: 1em;
}
ul.small_kome_mark_list > li::before,
.small_kome_mark::before {
  content: "*";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

ul.dot_square_list > li,
.dot_square {
  position: relative;
  display: block;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  ul.dot_square_list > li,
  .dot_square {
    font-size: 0.875rem;
  }
}
ul.dot_square_list > li::before,
.dot_square::before {
  content: "■";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

ul.dot_circle_list > li,
.dot_circle {
  position: relative;
  display: block;
  padding-left: 1.25em;
}
ul.dot_circle_list > li::before,
.dot_circle::before {
  content: "●";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

ul.dot_triangle_list > li,
.dot_triangle {
  position: relative;
  display: block;
  padding-left: 1em;
}
ul.dot_triangle_list > li::before,
.dot_triangle::before {
  content: "▶︎";
  display: block;
  position: absolute;
  left: 0;
  top: 0.5em;
  font-size: 0.6em;
}

/* フォームページ用パーツ */
body.subpage section .innerbox_1200_0 {
  background-color: #fff;
  padding-top: 1.625rem;
  padding-bottom: 5.625rem;
}

.form_title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #00a9f7;
  padding: 1.25rem 1.25rem 1.25rem calc(1.25rem + 1.5em);
}
@media screen and (max-width: 768px) {
  .form_title {
    font-size: 1rem;
    padding: 0.75rem 0.75rem 0.75rem calc(0.75rem + 1.5em);
  }
}
.form_title::before {
  display: block;
  position: absolute;
  font-size: inherit;
  font-weight: 700;
  left: 1.25rem;
  top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .form_title::before {
    left: 0.75rem;
    top: 0.75rem;
  }
}

.form_item_01 .form_title::before {
  content: "①";
}

.form_item_02 .form_title::before {
  content: "②";
}

.form_item_03 .form_title::before {
  content: "③";
}

.form_item_04 .form_title::before {
  content: "④";
}

.form_item_05 .form_title::before {
  content: "⑤";
}

.form_item_06 .form_title::before {
  content: "⑥";
}

.form_item_07 .form_title::before {
  content: "⑦";
}

.form_item_08 .form_title::before {
  content: "⑧";
}

.form_item_09 .form_title::before {
  content: "⑨";
}

.sub_page_title {
  position: relative;
  width: 100%;
  height: 3.75rem;
  font-size: 1.4375rem;
  font-weight: 700;
  background-color: #f0fbff;
  border-bottom: 0.25rem solid #00a9f7;
}
@media screen and (max-width: 768px) {
  .sub_page_title {
    height: 3.125rem;
    font-size: 1.125rem;
  }
}
.sub_page_title::before {
  content: "";
  display: block;
  position: absolute;
  width: 12.5rem;
  height: 0.25rem;
  background-color: #7dddff;
  left: 0;
  bottom: -0.25rem;
}
@media screen and (max-width: 768px) {
  .sub_page_title::before {
    width: 9.375rem;
  }
}

.title_with_bg {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  padding: 0.6875rem 1.3125rem;
  background-image: url(../../assets/img/title_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .title_with_bg {
    font-size: 1.125rem;
  }
}

.number_title {
  display: flex;
  font-size: 1.375rem;
  background-color: #70b3fc;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .number_title {
    font-size: 1.125rem;
  }
}
.number_title span {
  display: flex;
  align-items: center;
  color: #fff;
}
.number_title .number_title__number {
  position: relative;
  z-index: 400;
  justify-content: center;
  width: 5.625rem;
  text-align: center;
  padding-right: 1.3125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .number_title .number_title__number {
    width: 3.75rem;
  }
}
.number_title .number_title__number::before,
.number_title .number_title__number::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  -webkit-clip-path: polygon(
    0% 0%,
    calc(100% - 1.3125rem) 0%,
    100% 50%,
    calc(100% - 1.3125rem) 100%,
    0% 100%
  );
  clip-path: polygon(
    0% 0%,
    calc(100% - 1.3125rem) 0%,
    100% 50%,
    calc(100% - 1.3125rem) 100%,
    0% 100%
  );
}
.number_title .number_title__number::before {
  z-index: -1;
  right: 0;
  background-color: #00a9f7;
}
.number_title .number_title__number::after {
  z-index: -2;
  right: -0.1875rem;
  background-color: #fff;
}
.number_title .number_title__title {
  width: 100%;
  padding: 1rem 1.125rem;
}

.title__blue_border__square {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc(100vw - 2rem);
  width: 56.25rem;
  height: 6.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #00a9f7;
  background-color: #fff;
  border: 1px solid #00a9f7;
  padding: 0.5rem;
  margin: 0 auto 5.25rem;
}
@media screen and (max-width: 768px) {
  .title__blue_border__square {
    height: 5rem;
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.title__blue_border__circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 35.3125rem;
  min-height: 3.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00a9f7;
  background-color: #fff;
  border: 1px solid #00a9f7;
  border-radius: 1.875rem;
  padding: 0.25rem 2rem;
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .title__blue_border__circle {
    min-width: initial;
    width: 100%;
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
    margin-top: 3rem;
  }
}

.title__black_border__circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 35.3125rem;
  min-height: 3.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  background-color: #fff;
  border: 1px solid #000000;
  border-radius: 1.875rem;
  padding: 0.25rem 2rem;
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .title__black_border__circle {
    min-width: initial;
    width: 100%;
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
    margin-top: 3rem;
  }
}

.red_box_attention {
  max-width: 67.5rem;
  font-size: 1.375rem;
  line-height: 1.6363636364;
  font-weight: 600;
  color: #d4002e;
  background-color: #fff;
  border: 1px solid #d4002e;
  padding: 1.5rem 6rem;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  .red_box_attention {
    font-size: 1rem;
    padding: 1rem;
  }
}

.service_banner_wrapper {
  position: relative;
  z-index: 500;
  max-width: 58.25rem;
  padding: 0 1rem;
  margin: 0 auto;
}
.service_banner_wrapper .service_banner {
  width: 100%;
  display: block;
}

/* タブ */
.tab_buttons {
  display: flex;
  width: 100%;
}
.tab_buttons .tab_button {
  color: #000000;
  background: unset;
}

.tab_contents .tab_content {
  display: none;
}
.tab_contents .tab_content.active {
  display: block;
}

/* ハンバーガーメニュー */
.body_no_scroll {
  overflow: hidden;
  touch-action: none;
  height: 100vh;
}

.hamburger_menu .hamburger_menu_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_btn {
    position: absolute;
    z-index: 999;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 3rem;
    aspect-ratio: 1/1;
    transition: all 0.3s ease;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_btn .bar {
    display: block;
    width: 75%;
    height: 0.125rem;
    background-color: #00a9f7;
    transition: all 0.3s ease;
  }
}
.hamburger_menu .hamburger_menu_list_wrapper {
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hamburger_menu .hamburger_menu_list_wrapper {
    position: fixed;
    top: 0;
    display: block;
    width: 100vw;
    height: 100%;
    background-color: #fff;
    overflow-x: auto;
    max-width: 37.5rem;
    right: -100%;
  }
}
.hamburger_menu.open .hamburger_menu_btn {
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar:nth-child(1) {
    transform: translateY(0.0625rem) rotate(45deg);
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_btn .bar:nth-child(3) {
    transform: translateY(-0.0625rem) rotate(-45deg);
  }
}
.hamburger_menu.open .hamburger_menu_list_wrapper {
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .hamburger_menu.open .hamburger_menu_list_wrapper {
    right: 0;
  }
}

section#kv {
  background-image: url(../../assets/img/kv_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 3rem;
}
section#kv .kv_nec_logo {
  width: 9.125rem;
  aspect-ratio: 146/74;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  section#kv .kv_nec_logo {
    width: 6.25rem;
  }
}
section#kv .kv_title {
  margin-top: 1rem;
}
section#kv .kv_subtitle {
  max-width: 100%;
  width: 56.25rem;
  height: 6.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #00a9f7;
  background-color: #fff;
  margin: 3rem auto 1.5rem;
}
@media screen and (max-width: 768px) {
  section#kv .kv_subtitle {
    height: 5rem;
    font-size: 1.5rem;
  }
}
section#kv .kv_explain {
  font-size: 1.625rem;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#kv .kv_explain {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  section#kv .kv_explain {
    font-size: 0.8125rem;
  }
}

/* 共通パーツ - 2025夏追加ページ */
body#page_firstForm .bg_white_area,
body#page_selectGoods .bg_white_area,
body#page_selectImage .bg_white_area,
body#page_selectDetail .bg_white_area,
body#page_selectBank .bg_white_area {
  background-color: #fff;
  padding-bottom: 9.75rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .bg_white_area,
  body#page_selectGoods .bg_white_area,
  body#page_selectImage .bg_white_area,
  body#page_selectDetail .bg_white_area,
  body#page_selectBank .bg_white_area {
    padding-bottom: 5rem;
  }
}
body#page_firstForm .form_item__inner,
body#page_selectGoods .form_item__inner,
body#page_selectImage .form_item__inner,
body#page_selectDetail .form_item__inner,
body#page_selectBank .form_item__inner {
  padding: 0.5rem 4.25rem 3.5rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__inner,
  body#page_selectGoods .form_item__inner,
  body#page_selectImage .form_item__inner,
  body#page_selectDetail .form_item__inner,
  body#page_selectBank .form_item__inner {
    padding: 1rem 1rem 3rem;
  }
}
body#page_firstForm .form_item__explain,
body#page_selectGoods .form_item__explain,
body#page_selectImage .form_item__explain,
body#page_selectDetail .form_item__explain,
body#page_selectBank .form_item__explain {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
  color: #00a9f7;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__explain,
  body#page_selectGoods .form_item__explain,
  body#page_selectImage .form_item__explain,
  body#page_selectDetail .form_item__explain,
  body#page_selectBank .form_item__explain {
    font-size: 1rem;
  }
}
body#page_firstForm .form_item__explain > li,
body#page_selectGoods .form_item__explain > li,
body#page_selectImage .form_item__explain > li,
body#page_selectDetail .form_item__explain > li,
body#page_selectBank .form_item__explain > li {
  position: relative;
  padding-left: 0.75em;
  margin-top: 0.5em;
}
body#page_firstForm .form_item__explain > li::before,
body#page_selectGoods .form_item__explain > li::before,
body#page_selectImage .form_item__explain > li::before,
body#page_selectDetail .form_item__explain > li::before,
body#page_selectBank .form_item__explain > li::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}
body#page_firstForm .form_item__radiobtn,
body#page_selectGoods .form_item__radiobtn,
body#page_selectImage .form_item__radiobtn,
body#page_selectDetail .form_item__radiobtn,
body#page_selectBank .form_item__radiobtn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.125rem;
  margin: 3rem 0;
}
body#page_firstForm .form_item__radiobtn_item,
body#page_selectGoods .form_item__radiobtn_item,
body#page_selectImage .form_item__radiobtn_item,
body#page_selectDetail .form_item__radiobtn_item,
body#page_selectBank .form_item__radiobtn_item {
  position: relative;
  z-index: 400;
  width: 17.5rem;
  min-height: 2.875rem;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  color: #5cb651;
  background-color: #fff;
  border: 2px solid #5cb651;
  border-radius: 1.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__radiobtn_item,
  body#page_selectGoods .form_item__radiobtn_item,
  body#page_selectImage .form_item__radiobtn_item,
  body#page_selectDetail .form_item__radiobtn_item,
  body#page_selectBank .form_item__radiobtn_item {
    font-size: 1.125rem;
  }
}
body#page_firstForm .form_item__radiobtn_item::before,
body#page_selectGoods .form_item__radiobtn_item::before,
body#page_selectImage .form_item__radiobtn_item::before,
body#page_selectDetail .form_item__radiobtn_item::before,
body#page_selectBank .form_item__radiobtn_item::before {
  content: "";
  display: block;
  width: 0;
  height: 0.875rem;
  background-image: url(../../assets/img/icon_check.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
body#page_firstForm .form_item__radiobtn_item input,
body#page_selectGoods .form_item__radiobtn_item input,
body#page_selectImage .form_item__radiobtn_item input,
body#page_selectDetail .form_item__radiobtn_item input,
body#page_selectBank .form_item__radiobtn_item input {
  position: absolute;
  opacity: 0;
}
body#page_firstForm .form_item__radiobtn_item.input_active,
body#page_selectGoods .form_item__radiobtn_item.input_active,
body#page_selectImage .form_item__radiobtn_item.input_active,
body#page_selectDetail .form_item__radiobtn_item.input_active,
body#page_selectBank .form_item__radiobtn_item.input_active {
  gap: 0.3125rem;
  color: #fff;
  background-color: #5cb651;
}
body#page_firstForm .form_item__radiobtn_item.input_active::before,
body#page_selectGoods .form_item__radiobtn_item.input_active::before,
body#page_selectImage .form_item__radiobtn_item.input_active::before,
body#page_selectDetail .form_item__radiobtn_item.input_active::before,
body#page_selectBank .form_item__radiobtn_item.input_active::before {
  width: 0.875rem;
  opacity: 1;
}
body#page_firstForm
  .form_item__radiobtn.input_LargeScale
  .form_item__radiobtn_item,
body#page_selectGoods
  .form_item__radiobtn.input_LargeScale
  .form_item__radiobtn_item,
body#page_selectImage
  .form_item__radiobtn.input_LargeScale
  .form_item__radiobtn_item,
body#page_selectDetail
  .form_item__radiobtn.input_LargeScale
  .form_item__radiobtn_item,
body#page_selectBank
  .form_item__radiobtn.input_LargeScale
  .form_item__radiobtn_item {
  justify-content: left;
  width: 40.625rem;
  min-height: 7.5rem;
  border-radius: 3.75rem;
  padding: 0.5rem 3.25rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm
    .form_item__radiobtn.input_LargeScale
    .form_item__radiobtn_item,
  body#page_selectGoods
    .form_item__radiobtn.input_LargeScale
    .form_item__radiobtn_item,
  body#page_selectImage
    .form_item__radiobtn.input_LargeScale
    .form_item__radiobtn_item,
  body#page_selectDetail
    .form_item__radiobtn.input_LargeScale
    .form_item__radiobtn_item,
  body#page_selectBank
    .form_item__radiobtn.input_LargeScale
    .form_item__radiobtn_item {
    font-size: 1rem;
    padding: 1.5rem;
  }
}
body#page_firstForm .form_item__radiobtn__explain,
body#page_selectGoods .form_item__radiobtn__explain,
body#page_selectImage .form_item__radiobtn__explain,
body#page_selectDetail .form_item__radiobtn__explain,
body#page_selectBank .form_item__radiobtn__explain {
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__radiobtn__explain,
  body#page_selectGoods .form_item__radiobtn__explain,
  body#page_selectImage .form_item__radiobtn__explain,
  body#page_selectDetail .form_item__radiobtn__explain,
  body#page_selectBank .form_item__radiobtn__explain {
    font-size: 1rem;
  }
}
body#page_firstForm .form_item__textinput_item,
body#page_selectGoods .form_item__textinput_item,
body#page_selectImage .form_item__textinput_item,
body#page_selectDetail .form_item__textinput_item,
body#page_selectBank .form_item__textinput_item {
  display: grid;
  align-items: center;
  grid-template-columns: 3.75rem auto;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item,
  body#page_selectGoods .form_item__textinput_item,
  body#page_selectImage .form_item__textinput_item,
  body#page_selectDetail .form_item__textinput_item,
  body#page_selectBank .form_item__textinput_item {
    grid-template-columns: auto;
  }
}
body#page_firstForm .form_item__textinput_item .label,
body#page_selectGoods .form_item__textinput_item .label,
body#page_selectImage .form_item__textinput_item .label,
body#page_selectDetail .form_item__textinput_item .label,
body#page_selectBank .form_item__textinput_item .label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .label,
  body#page_selectGoods .form_item__textinput_item .label,
  body#page_selectImage .form_item__textinput_item .label,
  body#page_selectDetail .form_item__textinput_item .label,
  body#page_selectBank .form_item__textinput_item .label {
    font-size: 0.875rem;
  }
}
body#page_firstForm .form_item__textinput_item .label_flex,
body#page_selectGoods .form_item__textinput_item .label_flex,
body#page_selectImage .form_item__textinput_item .label_flex,
body#page_selectDetail .form_item__textinput_item .label_flex,
body#page_selectBank .form_item__textinput_item .label_flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body#page_firstForm .form_item__textinput_item .label_supplement,
body#page_selectGoods .form_item__textinput_item .label_supplement,
body#page_selectImage .form_item__textinput_item .label_supplement,
body#page_selectDetail .form_item__textinput_item .label_supplement,
body#page_selectBank .form_item__textinput_item .label_supplement {
  color: #898989;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .label_supplement,
  body#page_selectGoods .form_item__textinput_item .label_supplement,
  body#page_selectImage .form_item__textinput_item .label_supplement,
  body#page_selectDetail .form_item__textinput_item .label_supplement,
  body#page_selectBank .form_item__textinput_item .label_supplement {
    font-size: 0.75rem;
  }
}
body#page_firstForm .form_item__textinput_item .same_as_above,
body#page_selectGoods .form_item__textinput_item .same_as_above,
body#page_selectImage .form_item__textinput_item .same_as_above,
body#page_selectDetail .form_item__textinput_item .same_as_above,
body#page_selectBank .form_item__textinput_item .same_as_above {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .same_as_above,
  body#page_selectGoods .form_item__textinput_item .same_as_above,
  body#page_selectImage .form_item__textinput_item .same_as_above,
  body#page_selectDetail .form_item__textinput_item .same_as_above,
  body#page_selectBank .form_item__textinput_item .same_as_above {
    margin-left: -4.25rem;
  }
}
body#page_firstForm .form_item__textinput_item .same_as_above > input,
body#page_selectGoods .form_item__textinput_item .same_as_above > input,
body#page_selectImage .form_item__textinput_item .same_as_above > input,
body#page_selectDetail .form_item__textinput_item .same_as_above > input,
body#page_selectBank .form_item__textinput_item .same_as_above > input {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
body#page_firstForm .form_item__textinput_item .same_as_above > span,
body#page_selectGoods .form_item__textinput_item .same_as_above > span,
body#page_selectImage .form_item__textinput_item .same_as_above > span,
body#page_selectDetail .form_item__textinput_item .same_as_above > span,
body#page_selectBank .form_item__textinput_item .same_as_above > span {
  display: block;
  white-space: nowrap;
}
body#page_firstForm .form_item__textinput_item .required,
body#page_firstForm .form_item__textinput_item .no_required,
body#page_selectGoods .form_item__textinput_item .required,
body#page_selectGoods .form_item__textinput_item .no_required,
body#page_selectImage .form_item__textinput_item .required,
body#page_selectImage .form_item__textinput_item .no_required,
body#page_selectDetail .form_item__textinput_item .required,
body#page_selectDetail .form_item__textinput_item .no_required,
body#page_selectBank .form_item__textinput_item .required,
body#page_selectBank .form_item__textinput_item .no_required {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 2.25rem;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 1px;
}
body#page_firstForm .form_item__textinput_item .required,
body#page_selectGoods .form_item__textinput_item .required,
body#page_selectImage .form_item__textinput_item .required,
body#page_selectDetail .form_item__textinput_item .required,
body#page_selectBank .form_item__textinput_item .required {
  color: #fff;
  background-color: #ec6d45;
}
body#page_firstForm .form_item__textinput_item .no_required,
body#page_selectGoods .form_item__textinput_item .no_required,
body#page_selectImage .form_item__textinput_item .no_required,
body#page_selectDetail .form_item__textinput_item .no_required,
body#page_selectBank .form_item__textinput_item .no_required {
  color: #00a9f7;
  background-color: #fff;
  border: 1px solid #00a9f7;
}
body#page_firstForm .form_item__textinput_item .input,
body#page_selectGoods .form_item__textinput_item .input,
body#page_selectImage .form_item__textinput_item .input,
body#page_selectDetail .form_item__textinput_item .input,
body#page_selectBank .form_item__textinput_item .input {
  width: 18.75rem;
  max-width: 100%;
  min-height: 2.625rem;
  font-size: 0.9375rem;
  line-height: 2.4;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border: 1px solid #aaaaaa;
  border-radius: 0.1875rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .input,
  body#page_selectGoods .form_item__textinput_item .input,
  body#page_selectImage .form_item__textinput_item .input,
  body#page_selectDetail .form_item__textinput_item .input,
  body#page_selectBank .form_item__textinput_item .input {
    width: 100%;
  }
}
body#page_firstForm .form_item__textinput_item .input.auto_input,
body#page_selectGoods .form_item__textinput_item .input.auto_input,
body#page_selectImage .form_item__textinput_item .input.auto_input,
body#page_selectDetail .form_item__textinput_item .input.auto_input,
body#page_selectBank .form_item__textinput_item .input.auto_input {
  border: none;
  pointer-events: none;
}
body#page_firstForm .form_item__textinput_item .input_short,
body#page_selectGoods .form_item__textinput_item .input_short,
body#page_selectImage .form_item__textinput_item .input_short,
body#page_selectDetail .form_item__textinput_item .input_short,
body#page_selectBank .form_item__textinput_item .input_short {
  width: 7.5rem;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}
body#page_firstForm .form_item__textinput_item .input_long,
body#page_selectGoods .form_item__textinput_item .input_long,
body#page_selectImage .form_item__textinput_item .input_long,
body#page_selectDetail .form_item__textinput_item .input_long,
body#page_selectBank .form_item__textinput_item .input_long {
  width: 25rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .input_long,
  body#page_selectGoods .form_item__textinput_item .input_long,
  body#page_selectImage .form_item__textinput_item .input_long,
  body#page_selectDetail .form_item__textinput_item .input_long,
  body#page_selectBank .form_item__textinput_item .input_long {
    width: 100%;
  }
}
body#page_firstForm .form_item__textinput_item .input_flex,
body#page_selectGoods .form_item__textinput_item .input_flex,
body#page_selectImage .form_item__textinput_item .input_flex,
body#page_selectDetail .form_item__textinput_item .input_flex,
body#page_selectBank .form_item__textinput_item .input_flex {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .input_flex,
  body#page_selectGoods .form_item__textinput_item .input_flex,
  body#page_selectImage .form_item__textinput_item .input_flex,
  body#page_selectDetail .form_item__textinput_item .input_flex,
  body#page_selectBank .form_item__textinput_item .input_flex {
    flex-wrap: wrap;
    width: 100%;
  }
}
body#page_firstForm .form_item__textinput_item .input_supplement,
body#page_selectGoods .form_item__textinput_item .input_supplement,
body#page_selectImage .form_item__textinput_item .input_supplement,
body#page_selectDetail .form_item__textinput_item .input_supplement,
body#page_selectBank .form_item__textinput_item .input_supplement {
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 600;
  color: #898989;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .input_supplement,
  body#page_selectGoods .form_item__textinput_item .input_supplement,
  body#page_selectImage .form_item__textinput_item .input_supplement,
  body#page_selectDetail .form_item__textinput_item .input_supplement,
  body#page_selectBank .form_item__textinput_item .input_supplement {
    font-size: 0.8125rem;
    line-height: 1.75;
  }
}
body#page_firstForm .form_item__textinput_item .radiobtns_label,
body#page_selectGoods .form_item__textinput_item .radiobtns_label,
body#page_selectImage .form_item__textinput_item .radiobtns_label,
body#page_selectDetail .form_item__textinput_item .radiobtns_label,
body#page_selectBank .form_item__textinput_item .radiobtns_label {
  font-size: 1rem;
  font-weight: 600;
}
body#page_firstForm .form_item__textinput_item .input_wrap,
body#page_selectGoods .form_item__textinput_item .input_wrap,
body#page_selectImage .form_item__textinput_item .input_wrap,
body#page_selectDetail .form_item__textinput_item .input_wrap,
body#page_selectBank .form_item__textinput_item .input_wrap {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
body#page_firstForm .form_item__textinput_item .input_wrap_item,
body#page_selectGoods .form_item__textinput_item .input_wrap_item,
body#page_selectImage .form_item__textinput_item .input_wrap_item,
body#page_selectDetail .form_item__textinput_item .input_wrap_item,
body#page_selectBank .form_item__textinput_item .input_wrap_item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}
body#page_firstForm .form_item__textinput_item .input_table,
body#page_selectGoods .form_item__textinput_item .input_table,
body#page_selectImage .form_item__textinput_item .input_table,
body#page_selectDetail .form_item__textinput_item .input_table,
body#page_selectBank .form_item__textinput_item .input_table {
  display: grid;
  grid-template-columns: auto auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .input_table,
  body#page_selectGoods .form_item__textinput_item .input_table,
  body#page_selectImage .form_item__textinput_item .input_table,
  body#page_selectDetail .form_item__textinput_item .input_table,
  body#page_selectBank .form_item__textinput_item .input_table {
    grid-template-columns: auto;
    width: 100%;
  }
}
body#page_firstForm .form_item__textinput_item .input_table .table_title,
body#page_firstForm .form_item__textinput_item .input_table .table_content,
body#page_selectGoods .form_item__textinput_item .input_table .table_title,
body#page_selectGoods .form_item__textinput_item .input_table .table_content,
body#page_selectImage .form_item__textinput_item .input_table .table_title,
body#page_selectImage .form_item__textinput_item .input_table .table_content,
body#page_selectDetail .form_item__textinput_item .input_table .table_title,
body#page_selectDetail .form_item__textinput_item .input_table .table_content,
body#page_selectBank .form_item__textinput_item .input_table .table_title,
body#page_selectBank .form_item__textinput_item .input_table .table_content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__textinput_item .input_table .table_title,
  body#page_firstForm .form_item__textinput_item .input_table .table_content,
  body#page_selectGoods .form_item__textinput_item .input_table .table_title,
  body#page_selectGoods .form_item__textinput_item .input_table .table_content,
  body#page_selectImage .form_item__textinput_item .input_table .table_title,
  body#page_selectImage .form_item__textinput_item .input_table .table_content,
  body#page_selectDetail .form_item__textinput_item .input_table .table_title,
  body#page_selectDetail .form_item__textinput_item .input_table .table_content,
  body#page_selectBank .form_item__textinput_item .input_table .table_title,
  body#page_selectBank .form_item__textinput_item .input_table .table_content {
    display: block;
    width: 100%;
  }
}
body#page_firstForm .form_item__textinput_item .input_table .table_title,
body#page_selectGoods .form_item__textinput_item .input_table .table_title,
body#page_selectImage .form_item__textinput_item .input_table .table_title,
body#page_selectDetail .form_item__textinput_item .input_table .table_title,
body#page_selectBank .form_item__textinput_item .input_table .table_title {
  min-width: 14.25rem;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}
body#page_firstForm .form_item__textinput_item .input_table .table_content,
body#page_selectGoods .form_item__textinput_item .input_table .table_content,
body#page_selectImage .form_item__textinput_item .input_table .table_content,
body#page_selectDetail .form_item__textinput_item .input_table .table_content,
body#page_selectBank .form_item__textinput_item .input_table .table_content {
  line-height: 2.25;
  background-color: #fff;
}
body#page_firstForm
  .form_item__textinput_item
  .input_table
  .table_content
  input,
body#page_firstForm
  .form_item__textinput_item
  .input_table
  .table_content
  select,
body#page_selectGoods
  .form_item__textinput_item
  .input_table
  .table_content
  input,
body#page_selectGoods
  .form_item__textinput_item
  .input_table
  .table_content
  select,
body#page_selectImage
  .form_item__textinput_item
  .input_table
  .table_content
  input,
body#page_selectImage
  .form_item__textinput_item
  .input_table
  .table_content
  select,
body#page_selectDetail
  .form_item__textinput_item
  .input_table
  .table_content
  input,
body#page_selectDetail
  .form_item__textinput_item
  .input_table
  .table_content
  select,
body#page_selectBank
  .form_item__textinput_item
  .input_table
  .table_content
  input,
body#page_selectBank
  .form_item__textinput_item
  .input_table
  .table_content
  select {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
body#page_firstForm
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input,
body#page_selectGoods
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input,
body#page_selectImage
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input,
body#page_selectDetail
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input,
body#page_selectBank
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input {
  position: relative;
  z-index: 400;
  display: block;
}
body#page_firstForm
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input::after,
body#page_selectGoods
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input::after,
body#page_selectImage
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input::after,
body#page_selectDetail
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input::after,
body#page_selectBank
  .form_item__textinput_item
  .input_table
  .table_content
  .select_input::after {
  content: "▼";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  font-size: 0.75em;
}
body#page_firstForm .form_item__textinput_item .input_table__blue .table_title,
body#page_firstForm
  .form_item__textinput_item
  .input_table__blue
  .table_content,
body#page_selectGoods
  .form_item__textinput_item
  .input_table__blue
  .table_title,
body#page_selectGoods
  .form_item__textinput_item
  .input_table__blue
  .table_content,
body#page_selectImage
  .form_item__textinput_item
  .input_table__blue
  .table_title,
body#page_selectImage
  .form_item__textinput_item
  .input_table__blue
  .table_content,
body#page_selectDetail
  .form_item__textinput_item
  .input_table__blue
  .table_title,
body#page_selectDetail
  .form_item__textinput_item
  .input_table__blue
  .table_content,
body#page_selectBank .form_item__textinput_item .input_table__blue .table_title,
body#page_selectBank
  .form_item__textinput_item
  .input_table__blue
  .table_content {
  border: 1px solid #1cacd3;
}
body#page_firstForm .form_item__textinput_item .input_table__blue .table_title,
body#page_selectGoods
  .form_item__textinput_item
  .input_table__blue
  .table_title,
body#page_selectImage
  .form_item__textinput_item
  .input_table__blue
  .table_title,
body#page_selectDetail
  .form_item__textinput_item
  .input_table__blue
  .table_title,
body#page_selectBank
  .form_item__textinput_item
  .input_table__blue
  .table_title {
  background-color: #f0fbff;
}
body#page_firstForm .form_item__textinput_item .input_table__green .table_title,
body#page_firstForm
  .form_item__textinput_item
  .input_table__green
  .table_content,
body#page_selectGoods
  .form_item__textinput_item
  .input_table__green
  .table_title,
body#page_selectGoods
  .form_item__textinput_item
  .input_table__green
  .table_content,
body#page_selectImage
  .form_item__textinput_item
  .input_table__green
  .table_title,
body#page_selectImage
  .form_item__textinput_item
  .input_table__green
  .table_content,
body#page_selectDetail
  .form_item__textinput_item
  .input_table__green
  .table_title,
body#page_selectDetail
  .form_item__textinput_item
  .input_table__green
  .table_content,
body#page_selectBank
  .form_item__textinput_item
  .input_table__green
  .table_title,
body#page_selectBank
  .form_item__textinput_item
  .input_table__green
  .table_content {
  border: 1px solid #34d11e;
}
body#page_firstForm .form_item__textinput_item .input_table__green .table_title,
body#page_selectGoods
  .form_item__textinput_item
  .input_table__green
  .table_title,
body#page_selectImage
  .form_item__textinput_item
  .input_table__green
  .table_title,
body#page_selectDetail
  .form_item__textinput_item
  .input_table__green
  .table_title,
body#page_selectBank
  .form_item__textinput_item
  .input_table__green
  .table_title {
  background-color: #f3fff6;
}
body#page_firstForm .form_item__textinput_radiobtns,
body#page_selectGoods .form_item__textinput_radiobtns,
body#page_selectImage .form_item__textinput_radiobtns,
body#page_selectDetail .form_item__textinput_radiobtns,
body#page_selectBank .form_item__textinput_radiobtns {
  margin-top: 2rem;
}
body#page_firstForm .form_item__textinput_radiobtns .form_item__textinput_item,
body#page_selectGoods
  .form_item__textinput_radiobtns
  .form_item__textinput_item,
body#page_selectImage
  .form_item__textinput_radiobtns
  .form_item__textinput_item,
body#page_selectDetail
  .form_item__textinput_radiobtns
  .form_item__textinput_item,
body#page_selectBank
  .form_item__textinput_radiobtns
  .form_item__textinput_item {
  margin-top: 0;
}
body#page_firstForm .form_item__attention,
body#page_selectGoods .form_item__attention,
body#page_selectImage .form_item__attention,
body#page_selectDetail .form_item__attention,
body#page_selectBank .form_item__attention {
  font-size: 0.9375rem;
  line-height: 2.2666666667;
  font-weight: 600;
}
body#page_firstForm .form_item__attention .kome_mark_list,
body#page_firstForm .form_item__attention.kome_mark_list,
body#page_selectGoods .form_item__attention .kome_mark_list,
body#page_selectGoods .form_item__attention.kome_mark_list,
body#page_selectImage .form_item__attention .kome_mark_list,
body#page_selectImage .form_item__attention.kome_mark_list,
body#page_selectDetail .form_item__attention .kome_mark_list,
body#page_selectDetail .form_item__attention.kome_mark_list,
body#page_selectBank .form_item__attention .kome_mark_list,
body#page_selectBank .form_item__attention.kome_mark_list {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.75;
}
body#page_firstForm .form_item__service_intro,
body#page_selectGoods .form_item__service_intro,
body#page_selectImage .form_item__service_intro,
body#page_selectDetail .form_item__service_intro,
body#page_selectBank .form_item__service_intro {
  text-align: center;
  padding-top: 1rem;
}
body#page_firstForm .form_item__service_intro__explain,
body#page_selectGoods .form_item__service_intro__explain,
body#page_selectImage .form_item__service_intro__explain,
body#page_selectDetail .form_item__service_intro__explain,
body#page_selectBank .form_item__service_intro__explain {
  font-size: 1.75rem;
  line-height: 1.2857142857;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__service_intro__explain,
  body#page_selectGoods .form_item__service_intro__explain,
  body#page_selectImage .form_item__service_intro__explain,
  body#page_selectDetail .form_item__service_intro__explain,
  body#page_selectBank .form_item__service_intro__explain {
    font-size: 1.25rem;
  }
}
body#page_firstForm .form_item__service_intro__arrowtext,
body#page_selectGoods .form_item__service_intro__arrowtext,
body#page_selectImage .form_item__service_intro__arrowtext,
body#page_selectDetail .form_item__service_intro__arrowtext,
body#page_selectBank .form_item__service_intro__arrowtext {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1875rem;
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__service_intro__arrowtext,
  body#page_selectGoods .form_item__service_intro__arrowtext,
  body#page_selectImage .form_item__service_intro__arrowtext,
  body#page_selectDetail .form_item__service_intro__arrowtext,
  body#page_selectBank .form_item__service_intro__arrowtext {
    font-size: 1rem;
  }
}
body#page_firstForm .form_item__service_intro__arrowtext::before,
body#page_selectGoods .form_item__service_intro__arrowtext::before,
body#page_selectImage .form_item__service_intro__arrowtext::before,
body#page_selectDetail .form_item__service_intro__arrowtext::before,
body#page_selectBank .form_item__service_intro__arrowtext::before {
  content: "▼";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.0625rem;
  height: 1.0625rem;
  font-size: 0.45em;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  background-color: #000000;
  border-radius: 50%;
}
body#page_firstForm .form_item__main_text,
body#page_selectGoods .form_item__main_text,
body#page_selectImage .form_item__main_text,
body#page_selectDetail .form_item__main_text,
body#page_selectBank .form_item__main_text {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__main_text,
  body#page_selectGoods .form_item__main_text,
  body#page_selectImage .form_item__main_text,
  body#page_selectDetail .form_item__main_text,
  body#page_selectBank .form_item__main_text {
    font-size: 1.125rem;
  }
}
body#page_firstForm .form_item__link_wrapper .btn,
body#page_selectGoods .form_item__link_wrapper .btn,
body#page_selectImage .form_item__link_wrapper .btn,
body#page_selectDetail .form_item__link_wrapper .btn,
body#page_selectBank .form_item__link_wrapper .btn {
  width: 52.625rem;
}
body#page_firstForm .form_item__lessSpace .form_item__inner,
body#page_selectGoods .form_item__lessSpace .form_item__inner,
body#page_selectImage .form_item__lessSpace .form_item__inner,
body#page_selectDetail .form_item__lessSpace .form_item__inner,
body#page_selectBank .form_item__lessSpace .form_item__inner {
  padding-left: 1.3125rem;
  padding-right: 1.3125rem;
}
body#page_firstForm .form_item__image_explain,
body#page_selectGoods .form_item__image_explain,
body#page_selectImage .form_item__image_explain,
body#page_selectDetail .form_item__image_explain,
body#page_selectBank .form_item__image_explain {
  font-size: 1.0625rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__image_explain,
  body#page_selectGoods .form_item__image_explain,
  body#page_selectImage .form_item__image_explain,
  body#page_selectDetail .form_item__image_explain,
  body#page_selectBank .form_item__image_explain {
    font-size: 0.875rem;
    margin-top: 1.75rem;
  }
}
body#page_firstForm .form_item__image_explain.flexbox,
body#page_selectGoods .form_item__image_explain.flexbox,
body#page_selectImage .form_item__image_explain.flexbox,
body#page_selectDetail .form_item__image_explain.flexbox,
body#page_selectBank .form_item__image_explain.flexbox {
  gap: 0.5rem 1rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__image_explain.flexbox,
  body#page_selectGoods .form_item__image_explain.flexbox,
  body#page_selectImage .form_item__image_explain.flexbox,
  body#page_selectDetail .form_item__image_explain.flexbox,
  body#page_selectBank .form_item__image_explain.flexbox {
    flex-wrap: wrap;
  }
}
body#page_firstForm .form_item__image_explain__flex_title,
body#page_selectGoods .form_item__image_explain__flex_title,
body#page_selectImage .form_item__image_explain__flex_title,
body#page_selectDetail .form_item__image_explain__flex_title,
body#page_selectBank .form_item__image_explain__flex_title {
  flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__image_explain__flex_title,
  body#page_selectGoods .form_item__image_explain__flex_title,
  body#page_selectImage .form_item__image_explain__flex_title,
  body#page_selectDetail .form_item__image_explain__flex_title,
  body#page_selectBank .form_item__image_explain__flex_title {
    font-weight: 700;
  }
}
body#page_firstForm .form_item__image_explain .indent,
body#page_selectGoods .form_item__image_explain .indent,
body#page_selectImage .form_item__image_explain .indent,
body#page_selectDetail .form_item__image_explain .indent,
body#page_selectBank .form_item__image_explain .indent {
  margin-left: 1em;
}
body#page_firstForm .form_item__image_register .title__blue_border__square,
body#page_selectGoods .form_item__image_register .title__blue_border__square,
body#page_selectImage .form_item__image_register .title__blue_border__square,
body#page_selectDetail .form_item__image_register .title__blue_border__square,
body#page_selectBank .form_item__image_register .title__blue_border__square {
  margin-bottom: 1rem;
}
body#page_firstForm .form_item__image_register .form_item__main_text,
body#page_selectGoods .form_item__image_register .form_item__main_text,
body#page_selectImage .form_item__image_register .form_item__main_text,
body#page_selectDetail .form_item__image_register .form_item__main_text,
body#page_selectBank .form_item__image_register .form_item__main_text {
  text-align: center;
}
body#page_firstForm .form_item__image_register__input,
body#page_selectGoods .form_item__image_register__input,
body#page_selectImage .form_item__image_register__input,
body#page_selectDetail .form_item__image_register__input,
body#page_selectBank .form_item__image_register__input {
  max-width: 43.75rem;
  padding-top: 0.5rem;
  margin-inline: auto;
}
body#page_firstForm .form_item__image_register__input_item,
body#page_selectGoods .form_item__image_register__input_item,
body#page_selectImage .form_item__image_register__input_item,
body#page_selectDetail .form_item__image_register__input_item,
body#page_selectBank .form_item__image_register__input_item {
  margin-top: 2.625rem;
}
body#page_firstForm .form_item__image_register__input_item__title,
body#page_selectGoods .form_item__image_register__input_item__title,
body#page_selectImage .form_item__image_register__input_item__title,
body#page_selectDetail .form_item__image_register__input_item__title,
body#page_selectBank .form_item__image_register__input_item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background-color: #42bc6e;
  padding: ree(16);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__image_register__input_item__title,
  body#page_selectGoods .form_item__image_register__input_item__title,
  body#page_selectImage .form_item__image_register__input_item__title,
  body#page_selectDetail .form_item__image_register__input_item__title,
  body#page_selectBank .form_item__image_register__input_item__title {
    font-size: 1.25rem;
  }
}
body#page_firstForm .form_item__image_register__input_item__title .input,
body#page_selectGoods .form_item__image_register__input_item__title .input,
body#page_selectImage .form_item__image_register__input_item__title .input,
body#page_selectDetail .form_item__image_register__input_item__title .input,
body#page_selectBank .form_item__image_register__input_item__title .input {
  display: none;
}
body#page_firstForm .form_item__image_register__input_item__title:hover,
body#page_selectGoods .form_item__image_register__input_item__title:hover,
body#page_selectImage .form_item__image_register__input_item__title:hover,
body#page_selectDetail .form_item__image_register__input_item__title:hover,
body#page_selectBank .form_item__image_register__input_item__title:hover {
  opacity: 0.5;
}
body#page_firstForm .form_item__image_register__input_item__content,
body#page_selectGoods .form_item__image_register__input_item__content,
body#page_selectImage .form_item__image_register__input_item__content,
body#page_selectDetail .form_item__image_register__input_item__content,
body#page_selectBank .form_item__image_register__input_item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid #00a9f7;
  padding: 1rem;
  margin-top: 1rem;
}
body#page_firstForm
  .form_item__image_register__input_item__content
  .filename_wrapper,
body#page_selectGoods
  .form_item__image_register__input_item__content
  .filename_wrapper,
body#page_selectImage
  .form_item__image_register__input_item__content
  .filename_wrapper,
body#page_selectDetail
  .form_item__image_register__input_item__content
  .filename_wrapper,
body#page_selectBank
  .form_item__image_register__input_item__content
  .filename_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  line-height: 2.05;
  font-weight: 600;
  color: #00a9f7;
}
@media screen and (max-width: 768px) {
  body#page_firstForm
    .form_item__image_register__input_item__content
    .filename_wrapper,
  body#page_selectGoods
    .form_item__image_register__input_item__content
    .filename_wrapper,
  body#page_selectImage
    .form_item__image_register__input_item__content
    .filename_wrapper,
  body#page_selectDetail
    .form_item__image_register__input_item__content
    .filename_wrapper,
  body#page_selectBank
    .form_item__image_register__input_item__content
    .filename_wrapper {
    justify-content: left;
    flex-wrap: wrap;
    font-size: 1rem;
  }
}
body#page_firstForm
  .form_item__image_register__input_item__content
  .filename_wrapper
  .filename,
body#page_selectGoods
  .form_item__image_register__input_item__content
  .filename_wrapper
  .filename,
body#page_selectImage
  .form_item__image_register__input_item__content
  .filename_wrapper
  .filename,
body#page_selectDetail
  .form_item__image_register__input_item__content
  .filename_wrapper
  .filename,
body#page_selectBank
  .form_item__image_register__input_item__content
  .filename_wrapper
  .filename {
  display: block;
  min-width: 13.75rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #000000;
}
@media screen and (max-width: 768px) {
  body#page_firstForm
    .form_item__image_register__input_item__content
    .filename_wrapper
    .filename,
  body#page_selectGoods
    .form_item__image_register__input_item__content
    .filename_wrapper
    .filename,
  body#page_selectImage
    .form_item__image_register__input_item__content
    .filename_wrapper
    .filename,
  body#page_selectDetail
    .form_item__image_register__input_item__content
    .filename_wrapper
    .filename,
  body#page_selectBank
    .form_item__image_register__input_item__content
    .filename_wrapper
    .filename {
    font-size: 1rem;
  }
}
body#page_firstForm .form_item__image_register__input_item__content > .arrow,
body#page_selectGoods .form_item__image_register__input_item__content > .arrow,
body#page_selectImage .form_item__image_register__input_item__content > .arrow,
body#page_selectDetail .form_item__image_register__input_item__content > .arrow,
body#page_selectBank .form_item__image_register__input_item__content > .arrow {
  display: block;
  margin-inline: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.4375rem solid transparent;
  border-left: 1.4375rem solid transparent;
  border-top: 0.75rem solid #00a9f7;
  border-bottom: 0;
}
body#page_firstForm
  .form_item__image_register__input_item__content
  .filecategory_wrapper,
body#page_selectGoods
  .form_item__image_register__input_item__content
  .filecategory_wrapper,
body#page_selectImage
  .form_item__image_register__input_item__content
  .filecategory_wrapper,
body#page_selectDetail
  .form_item__image_register__input_item__content
  .filecategory_wrapper,
body#page_selectBank
  .form_item__image_register__input_item__content
  .filecategory_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm
    .form_item__image_register__input_item__content
    .filecategory_wrapper,
  body#page_selectGoods
    .form_item__image_register__input_item__content
    .filecategory_wrapper,
  body#page_selectImage
    .form_item__image_register__input_item__content
    .filecategory_wrapper,
  body#page_selectDetail
    .form_item__image_register__input_item__content
    .filecategory_wrapper,
  body#page_selectBank
    .form_item__image_register__input_item__content
    .filecategory_wrapper {
    flex-wrap: wrap;
  }
}
body#page_firstForm
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .required,
body#page_selectGoods
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .required,
body#page_selectImage
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .required,
body#page_selectDetail
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .required,
body#page_selectBank
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .required {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.125rem;
  height: 2.25rem;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  background-color: #ec6d45;
  border-radius: 1px;
  flex-shrink: 0;
}
body#page_firstForm
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .label,
body#page_selectGoods
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .label,
body#page_selectImage
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .label,
body#page_selectDetail
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .label,
body#page_selectBank
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .label {
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 600;
  white-space: nowrap;
}
body#page_firstForm
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .select,
body#page_selectGoods
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .select,
body#page_selectImage
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .select,
body#page_selectDetail
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .select,
body#page_selectBank
  .form_item__image_register__input_item__content
  .filecategory_wrapper
  > .select {
  width: 100%;
  height: 2.625rem;
  font-size: 0.9375rem;
  line-height: 2.4;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border: 1px solid #aaaaaa;
  border-radius: 0.1875rem;
}
body#page_firstForm .form_item__subtitle.__mt_half,
body#page_selectGoods .form_item__subtitle.__mt_half,
body#page_selectImage .form_item__subtitle.__mt_half,
body#page_selectDetail .form_item__subtitle.__mt_half,
body#page_selectBank .form_item__subtitle.__mt_half {
  margin-top: 2rem;
}
body#page_firstForm .form_item__bank_explain__text,
body#page_selectGoods .form_item__bank_explain__text,
body#page_selectImage .form_item__bank_explain__text,
body#page_selectDetail .form_item__bank_explain__text,
body#page_selectBank .form_item__bank_explain__text {
  font-size: 1.375rem;
  line-height: 1.6363636364;
  font-weight: 600;
  margin: 1rem 0.5rem 1.5rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__bank_explain__text,
  body#page_selectGoods .form_item__bank_explain__text,
  body#page_selectImage .form_item__bank_explain__text,
  body#page_selectDetail .form_item__bank_explain__text,
  body#page_selectBank .form_item__bank_explain__text {
    font-size: 1rem;
  }
}
body#page_firstForm .form_item__bank_explain__image,
body#page_selectGoods .form_item__bank_explain__image,
body#page_selectImage .form_item__bank_explain__image,
body#page_selectDetail .form_item__bank_explain__image,
body#page_selectBank .form_item__bank_explain__image {
  max-width: 62.25rem;
}
body#page_firstForm .form_item__bank_attention__title,
body#page_selectGoods .form_item__bank_attention__title,
body#page_selectImage .form_item__bank_attention__title,
body#page_selectDetail .form_item__bank_attention__title,
body#page_selectBank .form_item__bank_attention__title {
  min-height: 3.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #00a9f7;
  padding: 0.5rem 2rem;
}
body#page_firstForm .form_item__5 .form_item__inner,
body#page_selectGoods .form_item__5 .form_item__inner,
body#page_selectImage .form_item__5 .form_item__inner,
body#page_selectDetail .form_item__5 .form_item__inner,
body#page_selectBank .form_item__5 .form_item__inner {
  padding-top: 3.5rem;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__5 .form_item__inner,
  body#page_selectGoods .form_item__5 .form_item__inner,
  body#page_selectImage .form_item__5 .form_item__inner,
  body#page_selectDetail .form_item__5 .form_item__inner,
  body#page_selectBank .form_item__5 .form_item__inner {
    padding-right: 1rem;
  }
}
body#page_firstForm .form_item__5 .form_item__link_wrapper,
body#page_selectGoods .form_item__5 .form_item__link_wrapper,
body#page_selectImage .form_item__5 .form_item__link_wrapper,
body#page_selectDetail .form_item__5 .form_item__link_wrapper,
body#page_selectBank .form_item__5 .form_item__link_wrapper {
  padding-right: 4.25rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .form_item__5 .form_item__link_wrapper,
  body#page_selectGoods .form_item__5 .form_item__link_wrapper,
  body#page_selectImage .form_item__5 .form_item__link_wrapper,
  body#page_selectDetail .form_item__5 .form_item__link_wrapper,
  body#page_selectBank .form_item__5 .form_item__link_wrapper {
    padding-right: 0;
  }
}
body#page_firstForm .terms_acceptance__explain,
body#page_selectGoods .terms_acceptance__explain,
body#page_selectImage .terms_acceptance__explain,
body#page_selectDetail .terms_acceptance__explain,
body#page_selectBank .terms_acceptance__explain {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .terms_acceptance__explain,
  body#page_selectGoods .terms_acceptance__explain,
  body#page_selectImage .terms_acceptance__explain,
  body#page_selectDetail .terms_acceptance__explain,
  body#page_selectBank .terms_acceptance__explain {
    font-size: 0.875rem;
  }
}
body#page_firstForm .terms_acceptance__terms_box,
body#page_selectGoods .terms_acceptance__terms_box,
body#page_selectImage .terms_acceptance__terms_box,
body#page_selectDetail .terms_acceptance__terms_box,
body#page_selectBank .terms_acceptance__terms_box {
  max-width: calc(100% - 2rem);
  width: 56.25rem;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  background-color: #f7f7f7;
  border: 1px solid #b7b7b7;
  padding: 2rem 2.5rem;
  margin: 4.25rem auto 5.25rem;
}
@media screen and (max-width: 768px) {
  body#page_firstForm .terms_acceptance__terms_box,
  body#page_selectGoods .terms_acceptance__terms_box,
  body#page_selectImage .terms_acceptance__terms_box,
  body#page_selectDetail .terms_acceptance__terms_box,
  body#page_selectBank .terms_acceptance__terms_box {
    font-size: 0.875rem;
    padding: 1rem;
    margin: 2rem auto 2.5rem;
  }
}
body#page_firstForm .terms_acceptance__inputs,
body#page_selectGoods .terms_acceptance__inputs,
body#page_selectImage .terms_acceptance__inputs,
body#page_selectDetail .terms_acceptance__inputs,
body#page_selectBank .terms_acceptance__inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
body#page_firstForm .terms_acceptance__inputs > input,
body#page_selectGoods .terms_acceptance__inputs > input,
body#page_selectImage .terms_acceptance__inputs > input,
body#page_selectDetail .terms_acceptance__inputs > input,
body#page_selectBank .terms_acceptance__inputs > input {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
}
body#page_firstForm .terms_acceptance__inputs > span,
body#page_selectGoods .terms_acceptance__inputs > span,
body#page_selectImage .terms_acceptance__inputs > span,
body#page_selectDetail .terms_acceptance__inputs > span,
body#page_selectBank .terms_acceptance__inputs > span {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
}
/* LP */
body#page_lp .section_title {
  text-align: center;
}
body#page_lp .title__blue_border__circle {
  min-width: 34.375rem;
  min-height: 4.375rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body#page_lp .title__blue_border__circle {
    min-width: initial;
  }
}
body#page_lp header#header {
  display: flex;
  flex-direction: column;
  height: 9.875rem;
}
@media screen and (max-width: 768px) {
  body#page_lp header#header {
    height: 3.75rem;
    padding: 0;
  }
}
body#page_lp header#header .header_upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 1.125rem 0.25rem 1.5rem;
}
@media screen and (max-width: 768px) {
  body#page_lp header#header .header_upper {
    justify-content: left;
    height: 100%;
    padding: 0.25rem 0.625rem 0.25rem 0.875rem;
  }
}
body#page_lp header#header .header_upper .lavie_logo {
  width: 7.25rem;
}
@media screen and (max-width: 768px) {
  body#page_lp header#header .header_upper .lavie_logo {
    width: 5rem;
  }
}
body#page_lp header#header .header_upper .nec_logo {
  width: 9.1875rem;
}
@media screen and (max-width: 768px) {
  body#page_lp header#header .header_upper .nec_logo {
    width: 6rem;
  }
}
body#page_lp header#header .header_lower {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  body#page_lp header#header .header_lower {
    flex-grow: initial;
  }
}
body#page_lp header#header .hamburger_menu_list_wrapper {
  height: 100%;
}
body#page_lp header#header .hamburger_menu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 5rem;
  height: 100%;
  background-color: #f3feff;
}
@media screen and (max-width: 768px) {
  body#page_lp header#header .hamburger_menu_list {
    flex-direction: column;
    gap: 1.5rem;
  }
}
body#page_lp main#main {
  padding-top: 9.875rem;
}
@media screen and (max-width: 768px) {
  body#page_lp main#main {
    padding-top: 3.75rem;
  }
}
body#page_lp main#main::before {
  display: none;
}
body#page_lp section#kv .kv_schedule {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  color: #1b354c;
  margin-top: 5rem;
}
body#page_lp section#kv .kv_schedule_item {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#kv .kv_schedule_item {
    flex-direction: column;
    align-items: center;
  }
}
body#page_lp section#kv .kv_schedule_item__label {
  min-width: 7.5rem;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 900;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #1b354c;
}
@media screen and (max-width: 768px) {
  body#page_lp section#kv .kv_schedule_item__label {
    font-size: 1rem;
  }
}
body#page_lp section#kv .kv_schedule_item__date {
  display: flex;
  align-items: flex-end;
  font-size: re(24);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body#page_lp section#kv .kv_schedule_item__date {
    font-size: 0.875rem;
  }
}
body#page_lp section#kv .kv_schedule_item__date .start,
body#page_lp section#kv .kv_schedule_item__date .finish {
  display: flex;
  align-items: flex-end;
  gap: 0.125rem;
}
body#page_lp section#kv .kv_schedule_item__date .number {
  font-size: 3.125rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  body#page_lp section#kv .kv_schedule_item__date .number {
    font-size: 2rem;
  }
}
body#page_lp section#kv .kv_schedule_item__date .week {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.25rem;
  color: #fff;
  background-color: #1b354c;
  padding-bottom: 0.25rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  body#page_lp section#kv .kv_schedule_item__date .week {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.875rem;
    padding-bottom: 0.125rem;
  }
}
body#page_lp section#kv .kv_schedule_item__date .wave {
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#kv .kv_schedule_item__date .wave {
    font-size: 1.125rem;
    margin: 0 0.25rem;
  }
}
body#page_lp section#kv .kv_attention {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#kv .kv_attention {
    font-size: 0.875rem;
  }
}
body#page_lp .product_item__model__list {
  display: flex;
  gap: 0.375rem 0.75rem;
}
body#page_lp .product_item__model__list > li {
  flex: 1;
}
body#page_lp .product_item__model__list span {
  display: block;
  text-align: center;
}
body#page_lp .product_item__model__list .model_name {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
body#page_lp .product_item__model__list .model_release {
  font-size: 0.625rem;
  font-weight: 500;
}
body#page_lp .product_item__model__list .model_image {
  max-width: 8.125rem;
  height: 8.125rem;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
body#page_lp section#products .products_upper {
  position: relative;
  z-index: 300;
  background-color: #fff;
  padding-top: 2.75rem;
  padding-bottom: 4rem;
}
body#page_lp section#products .products_upper__inner {
  padding: 0 1rem;
}
body#page_lp section#products .products_items_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.625rem;
}
body#page_lp section#products .product_item {
  background-color: #fff;
  border: 1px solid #3aa9ee;
}
body#page_lp section#products .product_item__title {
  height: 3.75rem;
  font-size: 1.125rem;
  font-weight: 900;
  color: #fff;
  background-color: #3aa9ee;
}
body#page_lp section#products .product_item__model {
  padding: 1.25rem 0.875rem;
}
body#page_lp section#products .product_item__model__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 3.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #ec4170;
  border-radius: 0.25rem;
  margin: 0 auto 1rem;
}
body#page_lp section#products .product_item__model_image {
  margin: 1rem auto 0;
}
body#page_lp section#products .product_item__cashback {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 0.5rem 2rem;
}
body#page_lp section#products .product_item__cashback > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body#page_lp section#products .product_item__cashback__subtitle {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.3125rem;
}
body#page_lp section#products .product_item__cashback__title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 1.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0 0.9375rem;
  border-radius: 0.9375rem;
}
body#page_lp section#products .product_item__cashback__title.blue {
  color: #fff;
  background-color: #3aa9ee;
}
body#page_lp section#products .product_item__cashback__title.black {
  color: #383537;
  background-color: #fff;
  border: 2px solid #383537;
}
body#page_lp section#products .product_item__cashback__amount {
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
}
body#page_lp section#products .product_item__cashback__amount .big {
  font-size: 1.5rem;
  font-weight: 900;
}
body#page_lp section#products .product_item__cashback__amount.blue {
  color: #3aa9ee;
}
body#page_lp section#products .product_item__cashback__amount.black {
  color: #383537;
}
body#page_lp section#products .product_item__cashback__noMember {
  margin-top: 2rem;
}
body#page_lp section#products .product_item__cashback__Others {
  width: 100%;
  border-top: 2px dashed #3aa9ee;
  padding-top: 1.5rem;
  margin-top: 1.75rem;
}
body#page_lp section#products .product_item__cashback__All {
  margin-top: 2rem;
}
body#page_lp section#products .product_item .kome_mark_list,
body#page_lp section#products .product_item .kome_mark {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  margin-top: 0.75rem;
}
body#page_lp section#products .product_item__pc {
  width: 22rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .product_item__pc {
    width: 100%;
  }
}
body#page_lp section#products .product_item__tab {
  width: 22rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .product_item__tab {
    width: 100%;
  }
}
body#page_lp section#products .product_item__tab_option {
  width: 17.1875rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .product_item__tab_option {
    width: 100%;
  }
}
body#page_lp
  section#products
  .product_item__tab_option
  .product_item__model__list {
  flex-direction: column;
}
body#page_lp
  section#products
  .product_item__tab_option
  .product_item__model_image {
  max-width: 13.4375rem;
}
body#page_lp
  section#products
  .product_item__tab_option
  .product_item__cashback {
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  body#page_lp
    section#products
    .product_item__tab_option
    .product_item__cashback {
    margin-top: 1rem;
  }
}
body#page_lp section#products .product_item__security {
  width: 17.1875rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .product_item__security {
    width: 100%;
  }
}
body#page_lp
  section#products
  .product_item__security
  .product_item__model_image {
  max-width: 5.9375rem;
}
body#page_lp section#products .product_item__security .kome_mark_list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
body#page_lp section#products .products_attention {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 900;
  text-align: center;
  color: #f8a800;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .products_attention {
    font-size: 0.875rem;
  }
}
body#page_lp section#products .products_lower {
  position: relative;
  z-index: 400;
  background-image: url(../../assets/img/lp/products_lower_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
body#page_lp section#products .products_lower__inner {
  padding: 0 1rem;
}
body#page_lp section#products .products_bridge {
  position: absolute;
  top: -3.0625rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.125rem;
  height: 6.125rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  background-color: #3aa9ee;
  border: 0.3125rem solid #fff;
  border-radius: 50%;
}
body#page_lp section#products .products_premium_cashback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
body#page_lp section#products .products_premium_cashback .upper {
  font-size: 1.625rem;
  line-height: 1.5769230769;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .products_premium_cashback .upper {
    font-size: 1rem;
  }
}
body#page_lp section#products .products_premium_cashback .box {
  display: inline-flex;
  justify-content: center;
  background-color: #fff;
  padding: 0.5rem 1rem 1rem;
  border: 1px solid #f8a800;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .products_premium_cashback .box {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
}
body#page_lp section#products .products_premium_cashback .box_item {
  display: flex;
  align-items: flex-end;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .products_premium_cashback .box_item {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  body#page_lp
    section#products
    .products_premium_cashback
    .box_item:nth-child(n + 2) {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
body#page_lp
  section#products
  .products_premium_cashback
  .box_item:nth-child(n + 2)::before {
  content: "";
  display: block;
  width: 0.125rem;
  height: 2.5rem;
  background-color: #000000;
  transform: rotate(212deg);
  margin: 0 1rem;
}
@media screen and (max-width: 768px) {
  body#page_lp
    section#products
    .products_premium_cashback
    .box_item:nth-child(n + 2)::before {
    display: none;
  }
}
body#page_lp section#products .products_premium_cashback .box_item .orange {
  color: #f8a800;
}
body#page_lp section#products .products_premium_cashback .box_item .number {
  font-size: 3rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .products_premium_cashback .box_item .number {
    font-size: 1.5rem;
  }
}
body#page_lp section#products .products_premium_cashback .lower {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  body#page_lp section#products .products_premium_cashback .lower {
    font-size: 1.5rem;
  }
}
body#page_lp section#products .products_premium_cashback .banner {
  max-width: 56.25rem;
  margin: 1rem auto 0;
}
body#page_lp section#details {
  background-color: #fffdee;
}
body#page_lp section#details .details_upper {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
body#page_lp section#details .underline {
  -webkit-text-decoration: underline #f8a800 3px;
  text-decoration: underline #f8a800 3px;
}
body#page_lp section#details .text_orange {
  color: #f8a800;
  font-weight: 900;
}
body#page_lp section#details .details_overview {
  font-size: 1.375rem;
  line-height: 2.0454545455;
  font-weight: 700;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .details_overview {
    font-size: 1rem;
  }
}
body#page_lp section#details .details_attentions {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  background-color: #fff;
  padding: 1.5rem;
  margin-top: 3rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .details_attentions {
    font-size: 0.875rem;
    padding: 1rem;
  }
}
body#page_lp section#details .details_attentions .disp_ib {
  margin: 0 0.5rem;
}
body#page_lp section#details .tab_buttons__parent {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .tab_buttons__parent {
    flex-wrap: wrap;
    gap: 0.1875rem;
  }
}
body#page_lp section#details .tab_buttons__parent .tab_button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  max-width: 26.875rem;
  height: 5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  background-color: #76ceff;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .tab_buttons__parent .tab_button {
    flex: initial;
    width: 100%;
  }
}
body#page_lp section#details .tab_buttons__parent .tab_button.active {
  background-color: #bbd9ea;
}
body#page_lp section#details .tab_buttons__child {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .tab_buttons__child {
    padding-top: 2.5rem;
  }
}
body#page_lp section#details .tab_buttons__child .tab_button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  max-width: 26.875rem;
  height: 5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: #6b8691;
  background-color: #e5f3f9;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .tab_buttons__child .tab_button {
    font-size: 0.875rem;
    height: 3.75rem;
  }
}
body#page_lp section#details .tab_buttons__child .tab_button.active {
  color: #3aa9ee;
  background-color: #fff;
}
body#page_lp section#details .tab_contents__parent {
  background-color: #bbd9ea;
}
body#page_lp section#details .tab_contents__child {
  background-color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}
body#page_lp section#details .tab_contents__child .tab_content {
  padding-left: 1rem;
  padding-right: 1rem;
}
body#page_lp section#details #parent_01_02 .child_products {
  align-items: flex-start;
}
body#page_lp section#details #parent_03 {
  padding-top: 0;
}
body#page_lp section#details .child_explain {
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_explain {
    font-size: 1rem;
  }
}
body#page_lp section#details .child_explain .fos_48 {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_explain .fos_48 {
    font-size: 2rem;
  }
}
body#page_lp section#details .child_explain .fos_36 {
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_explain .fos_36 {
    font-size: 1.5rem;
  }
}
body#page_lp section#details .child_explain .fos_30 {
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_explain .fos_30 {
    font-size: 1.25rem;
  }
}
body#page_lp section#details .child_explain .fos_28 {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_explain .fos_28 {
    font-size: 1.25rem;
  }
}
body#page_lp section#details .child_explain .flex_center {
  gap: 0.25rem;
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_explain .flex_center {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
body#page_lp section#details .child_explain .flex_center .text {
  min-width: 12.5rem;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 1px solid #000000;
  border-radius: 1.375rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_explain .flex_center .text {
    font-size: 1.125rem;
  }
}
body#page_lp section#details .child_explain .flex_center .plus {
  font-size: 1.75rem;
  font-weight: 700;
}
body#page_lp section#details .child_explain__attentions {
  max-width: 64.5rem;
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  font-weight: 500;
  color: #db1625;
  margin: 1rem auto 0;
}
body#page_lp section#details .child_products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}
body#page_lp section#details .child_product_item {
  display: flex;
  flex-direction: column;
}
body#page_lp section#details .child_product_item__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.75rem;
  font-size: 1.125rem;
  color: #fff;
  background-color: #3aa9ee;
  border-radius: 1.875rem;
  margin-bottom: 0.625rem;
}
body#page_lp section#details .child_product_item__link {
  font-size: 0.875rem;
  color: #2868f9;
  text-align: center;
}
body#page_lp section#details .child_product_item__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #3aa9ee;
  padding: 1rem;
  margin-top: 1rem;
  flex-grow: 1;
}
body#page_lp section#details .child_product_item__or {
  font-size: 1.625rem;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  color: #3aa9ee;
  margin-top: 1rem;
}
body#page_lp section#details .child_product_item__list {
  margin-bottom: 1rem;
}
body#page_lp section#details .child_product_item__image {
  padding: 0 1rem;
  margin: 0.8125rem 0;
}
body#page_lp section#details .child_product_item__cashback {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
body#page_lp section#details .child_product_item__cashback .big {
  font-size: 1.625rem;
  font-weight: 900;
}
body#page_lp section#details .child_product_item__cashback .explain {
  color: #000000;
  margin-bottom: 0.5rem;
}
body#page_lp section#details .child_product_item__cashback.blue {
  color: #3aa9ee;
}
body#page_lp section#details .child_product_item__cashback.gray {
  color: #636363;
}
body#page_lp section#details .child_product_item .border {
  width: 100%;
  height: 1px;
  background-color: #3aa9ee;
  margin: 1.5rem 0;
}
body#page_lp section#details .child_product_item__pc {
  max-width: 26.25rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_product_item__pc {
    max-width: 100%;
    width: 100%;
  }
}
body#page_lp section#details .child_product_item__pc .child_product_item__box {
  margin-top: 2.5625rem;
}
body#page_lp section#details .child_product_item__security {
  max-width: 21.25rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_product_item__security {
    max-width: 100%;
    width: 100%;
  }
}
body#page_lp section#details .child_product_item__tab_option {
  max-width: 21.25rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_product_item__tab_option {
    max-width: 100%;
    width: 100%;
  }
}
body#page_lp
  section#details
  .child_product_item__tab_option
  .child_product_item__box {
  margin-top: 2.5625rem;
}
body#page_lp
  section#details
  .child_product_item__tab_option
  .child_product_item__list {
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0;
  margin-left: auto;
  margin-right: auto;
}
body#page_lp
  section#details
  .child_product_item__tab_option
  .child_product_item__list
  > li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
body#page_lp
  section#details
  .child_product_item__tab_option
  .child_product_item__list
  > li
  span {
  text-align: left;
}
body#page_lp section#details .child_product_item__premium {
  max-width: 19.375rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_product_item__premium {
    max-width: 100%;
    width: 100%;
  }
}
body#page_lp
  section#details
  .child_product_item__premium
  .child_product_item__image {
  max-width: 10.625rem;
  padding: 0;
  margin: 0 auto;
}
body#page_lp section#details .child_attention {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  background-color: #50c7ff;
  padding: 0.5rem 1rem;
  margin: 2rem auto 0;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#details .child_attention {
    font-size: 1rem;
  }
}
body#page_lp section#flow {
  background-color: #dff1fd;
  padding-top: 3.125rem;
  padding-bottom: 2.5rem;
}
body#page_lp section#flow ol {
  list-style: none;
}
body#page_lp section#flow .flow_items_wrapper {
  padding: 0;
  margin-top: 2.9375rem;
}
body#page_lp section#flow .flow_item {
  background-color: #fff;
  padding: 2rem;
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item {
    padding: 1rem;
  }
}
body#page_lp section#flow .flow_item .orange {
  color: #f8a800;
  font-weight: 900;
}
body#page_lp section#flow .flow_item .blue {
  color: #3aa9ee;
  font-weight: 900;
}
body#page_lp section#flow .flow_item .red {
  color: #ff0000;
}
body#page_lp section#flow .flow_item .arrow_btn_single {
  margin: 4rem auto;
}
body#page_lp section#flow .flow_item__title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
body#page_lp section#flow .flow_item__title .step {
  width: 9.375rem;
  height: 3.125rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  background-color: #3aa9ee;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__title .step {
    font-size: 1rem;
    height: 2.5rem;
  }
}
body#page_lp section#flow .flow_item__title .title {
  display: block;
  font-size: 1.375rem;
  font-weight: 900;
  color: #3aa9ee;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__title .title {
    font-size: 1.25rem;
  }
}
body#page_lp section#flow .flow_item__title .title .small {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__title .title .small {
    display: block;
    font-size: 1rem;
  }
}
body#page_lp section#flow .flow_item__explain {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: 500;
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__explain {
    font-size: 0.875rem;
  }
}
body#page_lp section#flow .flow_item__explain img {
  margin: 0.75rem 0;
}
body#page_lp section#flow .flow_item__explain img.receipt {
  width: 5.8125rem;
}
body#page_lp section#flow .flow_item__explain img.box {
  width: 19.875rem;
}
body#page_lp section#flow .flow_item__subtitle {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border: 1px solid #000000;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__subtitle {
    font-size: 1rem;
  }
}
body#page_lp section#flow .flow_item__term {
  font-size: 1.375rem;
  font-weight: 700;
  color: #3aa9ee;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__term {
    font-size: 1rem;
  }
}
body#page_lp section#flow .flow_item__attentions_list {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: #878787;
  padding-left: 0;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__attentions_list {
    font-size: 0.8125rem;
  }
}
body#page_lp section#flow .flow_item__attention {
  font-size: 1rem;
  line-height: 1.625;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__attention {
    font-size: 0.875rem;
  }
}
body#page_lp section#flow .flow_item__diagram {
  display: flex;
  gap: 3.125rem;
  margin: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__diagram {
    flex-direction: column;
  }
}
body#page_lp section#flow .flow_item__diagram_item {
  position: relative;
  z-index: 400;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 700;
  text-align: center;
  padding: 1rem 0.25rem;
  border: 1px solid #93a1b2;
  border-radius: 0.625rem;
  flex: 1;
}
body#page_lp section#flow .flow_item__diagram_item .orange {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 1rem;
}
body#page_lp section#flow .flow_item__diagram_item:nth-child(n + 2)::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 2.25rem solid transparent;
  border-bottom: 2.25rem solid transparent;
  border-left: 0.9375rem solid #93a1b2;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__diagram_item:nth-child(n + 2)::before {
    top: -3.75rem;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
body#page_lp section#flow .flow_item__example {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 3rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#flow .flow_item__example {
    flex-direction: column;
  }
}
body#page_lp section#flow .flow_item__example_item {
  flex: 1;
}
body#page_lp section#check_status {
  background-color: #fff;
  padding-top: 5.375rem;
}
body#page_lp section#check_status .orange {
  color: #f8a800;
  font-weight: 900;
}
body#page_lp section#check_status .check_status_title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #3aa9ee;
  border: 2px solid #3aa9ee;
  padding: 1.125rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#check_status .check_status_title {
    font-size: 1.25rem;
  }
}
body#page_lp section#check_status .check_status_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: 500;
  padding: 4rem 1rem;
  border: 2px solid #3aa9ee;
}
@media screen and (max-width: 768px) {
  body#page_lp section#check_status .check_status_box {
    font-size: 1rem;
    padding: 2rem 1rem;
  }
}
body#page_lp section#faq {
  background-color: #fff;
  padding-top: 5.875rem;
  padding-bottom: 5rem;
}
body#page_lp section#faq .accordion_area {
  margin-top: 4rem;
}
body#page_lp section#faq .accordion_area .acc_item {
  transition: all 0.5s ease;
  margin-top: 0.1875rem;
}
body#page_lp section#faq .accordion_area .acc_item .accordion_title {
  position: relative;
  z-index: 400;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  background-color: #50c7ff;
  padding: 1rem 3rem 1rem 2rem;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  body#page_lp section#faq .accordion_area .acc_item .accordion_title {
    font-size: 1.125rem;
    padding-left: 1rem;
  }
}
body#page_lp section#faq .accordion_area .acc_item .accordion_title::before,
body#page_lp section#faq .accordion_area .acc_item .accordion_title::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 1rem;
  width: 1.25rem;
  height: 0.25rem;
  background-color: #fff;
  transition: all 0.5s ease;
}
body#page_lp section#faq .accordion_area .acc_item .accordion_title::before {
  transform: rotate(0deg);
}
body#page_lp section#faq .accordion_area .acc_item .accordion_title::after {
  transform: rotate(90deg);
}
body#page_lp
  section#faq
  .accordion_area
  .acc_item
  .accordion_title.open::before {
  transform: rotate(45deg);
}
body#page_lp
  section#faq
  .accordion_area
  .acc_item
  .accordion_title.open::after {
  transform: rotate(-45deg);
}
body#page_lp section#faq .accordion_area .acc_item .accordion_box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
body#page_lp section#faq .accordion_area .acc_item .accordion_box__inner {
  padding: 1rem 2rem;
  border: 1px solid #50c7ff;
}
@media screen and (max-width: 768px) {
  body#page_lp section#faq .accordion_area .acc_item .accordion_box__inner {
    padding: 0.5rem 1rem;
  }
}
body#page_lp
  section#faq
  .accordion_area
  .acc_item
  .accordion_box__inner
  :nth-last-child(1) {
  border-bottom: none;
}
body#page_lp section#faq .accordion_area .acc_item .accordion_box__inner dt,
body#page_lp section#faq .accordion_area .acc_item .accordion_box__inner dd {
  position: relative;
  font-size: 1.125rem;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  body#page_lp section#faq .accordion_area .acc_item .accordion_box__inner dt,
  body#page_lp section#faq .accordion_area .acc_item .accordion_box__inner dd {
    font-size: 0.875rem;
  }
}
body#page_lp
  section#faq
  .accordion_area
  .acc_item
  .accordion_box__inner
  dt::before,
body#page_lp
  section#faq
  .accordion_area
  .acc_item
  .accordion_box__inner
  dd::before {
  position: absolute;
  left: 0;
  top: 0.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  border-radius: 0.125rem;
}
@media screen and (max-width: 768px) {
  body#page_lp
    section#faq
    .accordion_area
    .acc_item
    .accordion_box__inner
    dt::before,
  body#page_lp
    section#faq
    .accordion_area
    .acc_item
    .accordion_box__inner
    dd::before {
    font-size: 0.875rem;
    top: 1px;
  }
}
body#page_lp section#faq .accordion_area .acc_item .accordion_box__inner dt {
  font-weight: 700;
  margin-top: 1rem;
}
body#page_lp
  section#faq
  .accordion_area
  .acc_item
  .accordion_box__inner
  dt::before {
  content: "Q:";
  background-color: #f8a800;
  padding-bottom: 0.25rem;
}
body#page_lp section#faq .accordion_area .acc_item .accordion_box__inner dd {
  font-weight: 400;
  padding-bottom: 1rem;
  margin-top: 0.5rem;
  border-bottom: 1px dashed #50c7ff;
}
body#page_lp
  section#faq
  .accordion_area
  .acc_item
  .accordion_box__inner
  dd::before {
  content: "A:";
  background-color: #50c7ff;
}
body#page_lp section#attentions {
  background-color: #dff1fd;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
body#page_lp section#attentions .attentions_box {
  max-height: 28.125rem;
  font-size: 1rem;
  background-color: #fff;
  padding: 2rem;
  margin-top: 4.5rem;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  body#page_lp section#attentions .attentions_box {
    font-size: 0.875rem;
    padding: 1rem;
  }
}
body#page_lp section#attentions .attentions_box h3 {
  font-size: inherit;
}

/* 事前登録フォーム */
body#page_firstForm .bg_white_area {
  padding-top: 4.625rem;
}

/* 購入内容選択フォーム */
/* 画像登録フォーム */
body#page_selectImage .selectImage__btn_wrapper .btn {
  width: 56.25rem;
  min-height: 6.25rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  body#page_selectImage .selectImage__btn_wrapper .btn {
    min-height: 4rem;
    font-size: 1rem;
  }
}

/* 応募入力フォーム */
body#page_selectDetail .title__blue_border__square {
  margin-bottom: 3.625rem;
}
body#page_selectDetail .title_center {
  text-align: center;
}
body#page_selectDetail .title__blue_border__circle {
  min-width: 29.4375rem;
  min-height: 4.375rem;
  font-size: 1.375rem;
  color: #fff;
  background-color: #00a9f7;
  border-radius: 2.1875rem;
  margin-top: 0;
  margin-bottom: 3.625rem;
}
@media screen and (max-width: 768px) {
  body#page_selectDetail .title__blue_border__circle {
    max-width: calc(100vw - 2rem);
    min-width: initial;
    width: 100%;
    font-size: 1.125rem;
  }
}

/* 金融機関入力フォーム */
body#page_selectBank .form_item__textinput_item .label.text_blue {
  font-size: 1.375rem;
}
body#page_selectBank .terms_acceptance__terms_box {
  width: 100%;
  font-size: 1.0625rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* 確認ページ */
body#page_confirm section#confirm {
  padding-top: 5.6875rem;
  padding-bottom: 8.875rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  body#page_confirm section#confirm {
    padding: 3.75rem 1rem;
  }
}
body#page_confirm section#confirm .confirm_title {
  max-width: 100%;
  width: 56.25rem;
  height: 6.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  background-color: #ec6d45;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body#page_confirm section#confirm .confirm_title {
    font-size: 1.5rem;
    height: 5rem;
  }
}
body#page_confirm section#confirm .confirm_explain {
  font-size: 1.75rem;
  font-weight: 700;
  color: #00a9f7;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  body#page_confirm section#confirm .confirm_explain {
    font-size: 1.25rem;
    margin-top: 4rem;
  }
}
body#page_confirm section#confirm .confirm_form {
  margin-top: 1.875rem;
}
body#page_confirm section#confirm .confirm_form .form_item {
  border: 1px solid #00a9f7;
}
body#page_confirm section#confirm .confirm_form .form_item:nth-child(n + 2) {
  margin-top: 3.125rem;
}
body#page_confirm
  section#confirm
  .confirm_form
  .form_item
  .form_content
  .form_content_item {
  display: flex;
  align-items: flex-start;
  padding: 0.875rem 1.25rem;
}
@media screen and (max-width: 768px) {
  body#page_confirm
    section#confirm
    .confirm_form
    .form_item
    .form_content
    .form_content_item {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }
}
body#page_confirm
  section#confirm
  .confirm_form
  .form_item
  .form_content
  .form_content_item:nth-child(n + 2) {
  border-top: 1px solid #00a9f7;
}
body#page_confirm
  section#confirm
  .confirm_form
  .form_item
  .form_content
  .form_content_item
  > span {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body#page_confirm
    section#confirm
    .confirm_form
    .form_item
    .form_content
    .form_content_item
    > span {
    font-size: 0.875rem;
  }
}
body#page_confirm
  section#confirm
  .confirm_form
  .form_item
  .form_content
  .form_content_item
  > span.item_title {
  color: #00a9f7;
  white-space: nowrap;
}
body#page_confirm
  section#confirm
  .confirm_form
  .form_item
  .form_content
  .form_content_item
  > span.item_content {
  word-break: break-all;
}
body#page_confirm
  section#confirm
  .confirm_form
  .form_item
  .form_content
  .form_content_item
  > span.item_attention {
  font-size: 1rem;
  color: #999999;
  padding-left: 2.5rem;
  padding-top: 0.125rem;
}
@media screen and (max-width: 768px) {
  body#page_confirm
    section#confirm
    .confirm_form
    .form_item
    .form_content
    .form_content_item
    > span.item_attention {
    width: 100%;
    font-size: 0.75rem;
    padding-left: 0;
  }
}
body#page_confirm section#confirm .confirm_btn_wrapper {
  padding-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  body#page_confirm section#confirm .confirm_btn_wrapper {
    padding-top: 2.5rem;
  }
}

/* 完了ページ */
body#page_complete section#complete .complete_text_wrapper {
  text-align: center;
  padding: 4rem 1.25rem 3.5rem;
}
@media screen and (max-width: 768px) {
  body#page_complete section#complete .complete_text_wrapper {
    padding: 3rem 1rem 2.5rem;
  }
}
body#page_complete section#complete .complete_text_wrapper .main_explain {
  font-size: 1.4375rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body#page_complete section#complete .complete_text_wrapper .main_explain {
    font-size: 1rem;
  }
}
body#page_complete
  section#complete
  .complete_text_wrapper
  .main_explain
  .u_smsp {
  display: none;
}
@media screen and (max-width: 480px) {
  body#page_complete
    section#complete
    .complete_text_wrapper
    .main_explain
    .u_smsp {
    display: block;
  }
}
body#page_complete section#complete .complete_text_wrapper .reception_number {
  display: inline-block;
  font-size: 1.625rem;
  line-height: 1;
  padding: 1.3125rem 1.75rem;
  margin-top: 3rem;
  border: 0.0625rem solid #000;
}
@media screen and (max-width: 768px) {
  body#page_complete section#complete .complete_text_wrapper .reception_number {
    font-size: 1.125rem;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
  }
}
body#page_complete section#complete .complete_text_wrapper .sub_explain {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.1875rem;
  font-weight: 500;
  margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
  body#page_complete section#complete .complete_text_wrapper .sub_explain {
    font-size: 0.875rem;
    text-align: left;
  }
  body#page_complete
    section#complete
    .complete_text_wrapper
    .sub_explain
    a.link {
    display: inline-block;
  }
}
body#page_complete section#complete .complete_text_wrapper .dot_square_list {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  body#page_complete section#complete .complete_text_wrapper .dot_square_list {
    font-size: 0.875rem;
  }
}

/* ログインページ */
body#page_login section#login .loginform_wrapper {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  body#page_login section#login .loginform_wrapper {
    padding-top: 3rem;
  }
}
body#page_login
  section#login
  .loginform_wrapper
  form#loginform
  .loginform_item {
  margin-top: 1rem;
}
body#page_login
  section#login
  .loginform_wrapper
  form#loginform
  .loginform_item
  .loginform_title {
  display: block;
  font-size: 1.0625rem;
}
body#page_login
  section#login
  .loginform_wrapper
  form#loginform
  .loginform_item
  input {
  width: 100%;
  background-color: #fff;
  border: 0.0625rem solid #aaaaaa;
  padding: 0.625rem 0.875rem 0.5rem;
  margin-top: 0.25rem;
  font-size: 1rem;
}
body#page_login section#login .loginform_wrapper form#loginform .login_btn {
  width: 100%;
  height: 3.125rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #00a9f7;
  border-radius: 0.3125rem;
  margin-top: 1.875rem;
}
body#page_login section#login .login_explain {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  margin: 3rem auto 0;
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  body#page_login section#login .login_explain {
    font-size: 0.875rem;
  }
}

/* ステータスページ */
body#page_status section#status .customer_name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 15.625rem;
  min-height: 2.5rem;
  padding: 0.25rem 1rem;
  border: 0.0625rem solid #000000;
  margin: 3rem auto 0;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body#page_status section#status .customer_name {
    font-size: 0.875rem;
  }
}
body#page_status section#status .status_contents_wrapper {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  body#page_status section#status .status_contents_wrapper {
    margin-top: 3rem;
  }
}
body#page_status section#status .status_contents_wrapper .status_graph_wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  body#page_status
    section#status
    .status_contents_wrapper
    .status_graph_wrapper {
    padding: 0 0.5rem;
  }
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph_bar {
  display: block;
  position: absolute;
  z-index: 400;
  width: calc(100% - (25% - 0.78125rem) / 2 * 2);
  height: 0.5rem;
  top: 2.90625rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  body#page_status
    section#status
    .status_contents_wrapper
    .status_graph_wrapper
    .status_graph_bar {
    top: 3.4375rem;
  }
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph_bar
  span {
  display: block;
  position: absolute;
  z-index: -1;
  height: 100%;
  top: 0;
  left: 0;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph_bar
  span.all {
  width: 100%;
  background-color: #bcc993;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph_bar
  span.status_ratio {
  background-color: #7b85ff;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph {
  position: relative;
  z-index: 500;
  display: flex;
  flex-direction: row;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph
  .status_item {
  width: 25%;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph
  .status_item
  span {
  display: block;
  font-size: 1rem;
  line-height: 1.375;
  white-space: nowrap;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph
  .status_item
  span.status_label {
  text-align: center;
}
@media screen and (max-width: 768px) {
  body#page_status
    section#status
    .status_contents_wrapper
    .status_graph_wrapper
    .status_graph
    .status_item
    span.status_label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.75em;
    font-size: 0.875rem;
  }
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph
  .status_item
  span.status_dot {
  width: 1.5625rem;
  height: 1.5625rem;
  background-color: #bcc993;
  border-radius: 50%;
  margin: 1rem auto;
}
@media screen and (max-width: 768px) {
  body#page_status
    section#status
    .status_contents_wrapper
    .status_graph_wrapper
    .status_graph
    .status_item
    span.status_dot {
    margin: 0.5rem auto 1rem;
  }
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph
  .status_item
  span.status_date {
  text-align: center;
}
@media screen and (max-width: 768px) {
  body#page_status
    section#status
    .status_contents_wrapper
    .status_graph_wrapper
    .status_graph
    .status_item
    span.status_date {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  body#page_status
    section#status
    .status_contents_wrapper
    .status_graph_wrapper
    .status_graph
    .status_item
    span.status_date {
    font-size: 0.75rem;
  }
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper
  .status_graph
  .status_item.status_1
  span.status_dot {
  background-color: #7b85ff;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_1
  .status_graph_bar
  span.status_ratio {
  width: 33.333%;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_1
  .status_graph
  .status_item.status_2
  span.status_dot {
  background-color: #7b85ff;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_2
  .status_graph_bar
  span.status_ratio {
  width: 66.666%;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_2
  .status_graph
  .status_item.status_2
  span.status_dot,
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_2
  .status_graph
  .status_item.status_3
  span.status_dot {
  background-color: #7b85ff;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_3
  .status_graph_bar
  span.status_ratio {
  width: 50%;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_3
  .status_graph
  .status_item.status_2
  span.status_dot {
  background-color: #7b85ff;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_4
  .status_graph_bar
  span.status_ratio {
  width: 100%;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_4
  .status_graph
  .status_item.status_2
  span.status_dot,
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_4
  .status_graph
  .status_item.status_3
  span.status_dot,
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_4
  .status_graph
  .status_item.status_4
  span.status_dot {
  background-color: #7b85ff;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_5
  .status_graph_bar
  span.status_ratio {
  display: none;
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_5
  .status_graph
  .status_item.status_1
  span.status_dot,
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_5
  .status_graph
  .status_item.status_2
  span.status_dot,
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_5
  .status_graph
  .status_item.status_3
  span.status_dot,
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_5
  .status_graph
  .status_item.status_4
  span.status_dot,
body#page_status
  section#status
  .status_contents_wrapper
  .status_graph_wrapper.status_ration_5
  .status_graph
  .status_item.status_5
  span.status_dot {
  background-color: #bcc993;
}
body#page_status section#status .status_contents_wrapper .status_text_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  body#page_status
    section#status
    .status_contents_wrapper
    .status_text_wrapper {
    margin-top: 3.125rem;
  }
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_text_wrapper
  span {
  font-size: 1rem;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  body#page_status
    section#status
    .status_contents_wrapper
    .status_text_wrapper
    span {
    font-size: 0.875rem;
  }
}
body#page_status
  section#status
  .status_contents_wrapper
  .status_text_wrapper
  span.status_text_label {
  color: #fff;
  background-color: #7b85ff;
  padding: 0.5rem 1rem;
}
body#page_status section#status .status_notes {
  flex-direction: column;
  width: 30rem;
  max-width: calc(100% - 2rem);
  min-height: 7.5rem;
  margin: 4.625rem auto 0;
  padding: 1rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  body#page_status section#status .status_notes {
    font-size: 0.875rem;
  }
}
body#page_status section#status .status_notes span {
  display: block;
}

/* その他パーツ */
.mt_1rem {
  margin-top: 1rem !important;
}

.mt_2rem {
  margin-top: 2rem !important;
}

.mt_3rem {
  margin-top: 3rem !important;
}

.disp_ib {
  display: inline-block;
}

.text_right {
  text-align: right !important;
}

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