@charset "UTF-8";
html:root {
  --base-background: #fff;
  --base-border-color: #b2b2b2;
  --black: #333;
  --jet-lack: #4c4c4c;
  --dim-gray: #666;
  --dark-gray: #7f7f7f;
  --gray: #999;
  --silver-gray: #b2b2b2;
  --light-gray: #ccc;
  --pale-gray: #eee;
  --disabled: #f2f2f2;
  --gray-bg: #fafafa;
  --white: #fff;
  --input-border: #c6c8d1;
  --divider-btn-border: #e5e5e5;
  --contents-bg: #f2f5f7;
  --background-accordion: #f8f9fa;
  --primary-color: #D53F50;
  --secondary-color: #e21b23;
  --gradient-color: #eb3341;
  --gradient-bright-color: #ff4c4c;
  --sub-faint-color: #ff5c5c;
  --validation-bg: #ffdfdf;
  --contents-pale-red-bg: #fee;
  --input-bg: #f7fafd;
  --iframe-bg: #fff7f0;
  --tertiary-orange: #fe7a04;
  --focus: #fea24f;
  --shadow: #0c338d;
  --link: #347ae9;
  --success: #41b983;
  --error-text: #f7fafd;
  --textbox-primary-color: #fea24f;
  --textbox-font-size-base: 14px;
  --textbox-focus-background-color: #fafafa;
  --textbox-error-border: #d71318;
  --textbox-error-background: #fef2f2;
  --textbox-disabled-background: #f5f5f5;
  --valid-error-color: var(--textbox-error-border);
  --valid-error-background: #ffdfdf;
  --dropshadow: 0 4px 23px 0 rgba(0,0,0,0.12);
  --dropshadow-hover: var(--dropshadow);
  --dropshadow3: 0px 4px 8px 0px rgba(12,51,141,0.06);
  --dropshadow3-hover: var(--dropshadow3);
  --dropshadow_p1: 0px 4px 10px rgba(25,179,102,0.2);
  --dropshadow_p2: 0px 8px 16px rgba(25,179,102,0.2);
  --shadow-notice: 0px 2px 4px rgba(12,51,141,0.04);
  --shadow-badge: 0px 2px 4px rgba(12,51,141,0.16);
  --shadow-btn-small: 0px 2px 4px rgba(12,51,141,0.1);
  --shadow-nav-bar: 0px 4px 16px rgba(12,51,141,0.04);
  --shadow-ellipse: 0px 4px 4px rgba(12,51,141,0.06);
  --shadow-btn-min: 0px 4px 8px rgba(12,51,141,0.1);
  --shadow-body1: 0px 8px 40px rgba(12,51,141,0.08);
  --shadow-body2: 0px 10px 40px rgba(12,51,141,0.04);
  --shadow-popovers: 0px 4px 16px rgba(12,51,141,0.06);
  --shadow-focus: 0px 8px 20px rgba(12,51,141,0.06);
  --shadow-select: 0px 4px 8px rgba(12,51,141,0.06);
  --shadow-select-hover: 0px 4px 16px rgba(12,51,141,0.1);
  --shadow-btn: 0px 4px 12px rgba(12,51,141,0.08);
  --shadow-btn-hover: 0px 4px 20px rgba(12,51,141,0.1);
  --shadow-sheet: 0px -4px 16px rgba(12,51,141,0.1);
  --shadow-btn-extra: 0px 4px 16px rgba(12,51,141,0.16);
  --shadow-btn-extra-hover1: 0px 8px 16px rgba(235,51,65,0.2);
  --shadow-btn-extra-hover2: 0px 8px 16px rgba(254,122,4,0.2);
  --shadow-dropdown: 0px 20px 60px rgba(12,51,141,0.16);
  --shadow-modal: 0px 0px 40px rgba(12,51,141,0.08);
  --primary-gradient: linear-gradient(107.9deg,#e60012 12.21%,#ff5c5c 87.79%);
  --primary-gradient-hover: linear-gradient(270.01deg,#e60012 0.01%,#ff5c5c 99.99%);
  --tertiary-gradient: linear-gradient(107.9deg,#fe7a04 12.21%,#fea24f 87.79%);
  --tertiary-gradient-hover: linear-gradient(107.9deg,#fea24f 12.21%,#fe7a04 87.79%);
  --btn-primary-border: none;
  --btn-primary-background: linear-gradient(90deg,#eb3341,#ff4c4c);
  --btn-primary-background-hover: linear-gradient(90deg,#eb3341,#ff4c4c);
  --btn-primary-color: #fff;
  --btn-secondary-border: 2px solid #e5e5e5;
  --btn-secondary-border-hover: 2px solid #b5b5b5;
  --btn-secondary-background: #fff;
  --btn-secondary-background-hover: var(--btn-secondary-background);
  --btn-secondary-color: #999;
  --btn-secondary-color-hover: var(--dark-gray);
  --btn-secondary-square-border: 1px solid #e0e0e0;
  --btn-secondary-square-border-hover: var(--btn-secondary-square-border);
  --btn-secondary-square-background: var(--btn-secondary-background);
  --btn-secondary-square-background-hover: #f5f5f5;
  --btn-secondary-square-color: var(--btn-secondary-color);
  --btn-secondary-square-color-hover: var(--btn-secondary-color-hover);
}

html {
  scroll-behavior: smooth !important;
}

body {
  color: #282C2E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
  letter-spacing: 0;
}

.wrapper,
.contents {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(100vh - 180px);
}
@media screen and (max-width: 767.98px) {
  .wrapper,
  .contents {
    min-height: calc(100vh - 179px);
  }
}

.wrapper--roi {
  display: flex;
  flex-direction: column;
}
.wrapper--roi::before {
  content: "";
  position: fixed;
  background: url(../images/bg-image.svg) no-repeat top;
  background-size: 100% auto;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .wrapper--roi {
    background-color: var(--gray-bg);
  }
  .wrapper--roi::before {
    background-image: none;
  }
}

.header {
  background: transparent;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  min-height: 76px;
  padding: 48px 80px 24px 80px;
  justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  .header {
    padding: 20px 0 20px 20px;
  }
}

@media screen and (max-width: 768px) {
  .img--logo {
    width: auto;
    height: 30px;
  }
}
.contents-header {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .contents-header {
    margin-bottom: 30px;
  }
}

.contents-header__title {
  overflow: hidden;
  color: var(--primary-color);
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  display: flex;
  font-feature-settings: "calt" off;
  align-items: center;
  text-align: center;
  justify-content: center;
  letter-spacing: 1px;
  margin: 0 auto;
}

.contents-header__title .letter {
  transform: translateX(40px) translateZ(0px);
  opacity: 0;
  animation: text-animation 1s forwards;
}

/* 1文字目 */
.contents-header__title .letter:nth-child(1) {
  animation-delay: 0.1s;
}

/* 2文字目 */
.contents-header__title .letter:nth-child(2) {
  animation-delay: 0.2s;
}

/* 3文字目 */
.contents-header__title .letter:nth-child(3) {
  animation-delay: 0.3s;
}

/* 4文字目 */
.contents-header__title .letter:nth-child(4) {
  animation-delay: 0.4s;
}

/* 5文字目 */
.contents-header__title .letter:nth-child(5) {
  animation-delay: 0.5s;
}

/* 6文字目 */
.contents-header__title .letter:nth-child(6) {
  animation-delay: 0.6s;
}

/* Textを徐々に表示 */
@keyframes text-animation {
  0% {
    transform: translateX(40px) translateZ(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px) translateZ(0px);
    opacity: 1;
  }
}
.step {
  width: 100%;
  padding: 56px 0 37px;
  border-radius: 3px;
}
@media screen and (max-width: 767.98px) {
  .step {
    display: none;
  }
}

.step__inner {
  width: 100%;
  margin: 0 auto 0;
}

.stepbar {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 380px;
}

.stepbar__item {
  position: relative;
  font-size: 11px;
  line-height: 15px;
  font-weight: 500;
  color: #ccc;
  width: 100%;
  list-style: none;
}
.stepbar__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: calc(50% + 15px);
  top: 12px;
  background: var(--pale-gray);
}
.stepbar__item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: calc(50% + 15px);
  top: 12px;
  background-color: var(--sub-faint-color);
  transition: width 0.4s ease-in-out;
}
.stepbar__item:last-child::before {
  position: initial;
  background: transparent;
}
.stepbar__item.active {
  color: var(--primary-color);
  transition: color 0.2s ease-in-out;
  transition-delay: 0.4s;
}
.stepbar__item.active .number-outer {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
  transition: color 0.2s ease-in-out;
}
.stepbar__item--passed::before {
  background: #FEF3F2;
}
.stepbar__item--passed.active .number-outer {
  background-color: #FEF3F2;
  border: 1px solid #FEF3F2;
  color: var(--primary-color);
}
.stepbar__item--passed .stepbar__text {
  color: var(--primary-color);
}

.number-outer {
  background: #fff;
  border: 1px solid var(--pale-gray);
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  margin: 0 auto 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--silver-gray);
}

.stepbar__text {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

/*
title
*/
.title {
  font-weight: 500;
}
.title--leaf {
  position: relative;
  margin-bottom: 33px;
  padding-left: 30px;
}
@media screen and (max-width: 767.98px) {
  .title--leaf {
    font-size: 20px;
    margin-top: 0;
  }
}
.title--leaf::before {
  position: absolute;
  content: "";
  background: url(../images/ico_leaf.png);
  background-repeat: no-repeat;
  background-size: 27px;
  left: 0;
  top: 6px;
  width: 27px;
  height: 27px;
}
.title--table {
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.title--ideco {
  font-size: 18px;
  margin-bottom: 30px;
}
.title--ideco + p {
  font-size: 16px;
  margin-bottom: 30px;
}
.page-roi-thanks .title {
  font-size: 18px;
  margin-bottom: 50px;
}

.page {
  width: 100%;
  padding-bottom: 56px;
}
@media screen and (max-width: 767.98px) {
  .page {
    padding-bottom: 40px;
  }
}

.content {
  width: 100%;
}

.section-field {
  background: var(--base-background);
  margin: 0 auto;
  box-shadow: var(--shadow-body1);
  border-radius: 16px;
  max-width: 904px;
  width: 90%;
}
@media screen and (max-width: 767.98px) {
  .section-field {
    width: 100%;
  }
}
.section-field .section-field__text {
  font-size: 16px;
  margin: 0 auto 25px;
  padding: 0;
  line-height: 25px;
}
@media screen and (max-width: 767.98px) {
  .section-field .section-field__text--last {
    margin-bottom: 25px;
  }
}

.section-field__inner {
  padding: 50px 88px;
}
@media screen and (max-width: 767.98px) {
  .section-field__inner {
    padding: 40px 24px;
  }
}
.page--roi-check .section-field__inner {
  max-width: 500px;
  margin: auto;
}
.section-field__inner--form {
  background: #F9F6F2;
}
.section-field__inner--form .title--leaf + p {
  margin-bottom: 3px;
}
/*
link
*/
.anchor {
  padding-top: 40px;
  margin-top: -40px;
}

.link--underline {
  color: #D53F50;
  text-decoration: underline;
}
.link--newtab {
  font-size: 14px;
  position: relative;
  display: inline;
}
@media screen and (max-width: 767.98px) {
  .link--newtab {
    font-size: 14px;
  }
}
.link--newtab::after {
  content: "";
  position: absolute;
  background-image: url(../images/ico_newtab.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  top: 0;
  right: -21px;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  margin: auto 0 4px 0;
}

/*
  table
*/
.table {
  border-color: #E5E5E5;
  border-width: 1px;
  border-collapse: collapse;
  color: #282C2E;
  --check-th-width: 75px;
  --check-th-width-sp: 50px;
}
.table thead, .table__header {
  background: #F9F6F2;
}
.table thead tr th,
.table thead tr .table__head,
.table thead .table__row th,
.table thead .table__row .table__head, .table__header tr th,
.table__header tr .table__head,
.table__header .table__row th,
.table__header .table__row .table__head {
  font-size: 14px;
  font-weight: 500;
  padding: 15px 20px;
}
.table thead tr th:first-child,
.table thead tr th .table__head:first-child,
.table thead tr .table__head:first-child,
.table thead tr .table__head .table__head:first-child,
.table thead .table__row th:first-child,
.table thead .table__row th .table__head:first-child,
.table thead .table__row .table__head:first-child,
.table thead .table__row .table__head .table__head:first-child, .table__header tr th:first-child,
.table__header tr th .table__head:first-child,
.table__header tr .table__head:first-child,
.table__header tr .table__head .table__head:first-child,
.table__header .table__row th:first-child,
.table__header .table__row th .table__head:first-child,
.table__header .table__row .table__head:first-child,
.table__header .table__row .table__head .table__head:first-child {
  text-align: center;
  width: var(--check-th-width);
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767.98px) {
  .table thead tr th:first-child,
  .table thead tr th .table__head:first-child,
  .table thead tr .table__head:first-child,
  .table thead tr .table__head .table__head:first-child,
  .table thead .table__row th:first-child,
  .table thead .table__row th .table__head:first-child,
  .table thead .table__row .table__head:first-child,
  .table thead .table__row .table__head .table__head:first-child, .table__header tr th:first-child,
  .table__header tr th .table__head:first-child,
  .table__header tr .table__head:first-child,
  .table__header tr .table__head .table__head:first-child,
  .table__header .table__row th:first-child,
  .table__header .table__row th .table__head:first-child,
  .table__header .table__row .table__head:first-child,
  .table__header .table__row .table__head .table__head:first-child {
    width: var(--check-th-width-sp);
  }
}
@media print, screen and (min-width: 1024px) {
  .table thead tr th:nth-child(2) .table__head:nth-child(2),
  .table thead tr .table__head:nth-child(2) .table__head:nth-child(2),
  .table thead .table__row th:nth-child(2) .table__head:nth-child(2),
  .table thead .table__row .table__head:nth-child(2) .table__head:nth-child(2), .table__header tr th:nth-child(2) .table__head:nth-child(2),
  .table__header tr .table__head:nth-child(2) .table__head:nth-child(2),
  .table__header .table__row th:nth-child(2) .table__head:nth-child(2),
  .table__header .table__row .table__head:nth-child(2) .table__head:nth-child(2) {
    width: 254px;
  }
}
@media screen and (max-width: 767.98px) {
  .table thead tr th:nth-child(2) .table__head:nth-child(2),
  .table thead tr .table__head:nth-child(2) .table__head:nth-child(2),
  .table thead .table__row th:nth-child(2) .table__head:nth-child(2),
  .table thead .table__row .table__head:nth-child(2) .table__head:nth-child(2), .table__header tr th:nth-child(2) .table__head:nth-child(2),
  .table__header tr .table__head:nth-child(2) .table__head:nth-child(2),
  .table__header .table__row th:nth-child(2) .table__head:nth-child(2),
  .table__header .table__row .table__head:nth-child(2) .table__head:nth-child(2) {
    width: auto;
  }
}
.table thead .table__row, .table__header .table__row {
  display: grid;
  grid-template-columns: 75px 1fr 1.2fr;
}
.table--main .table__header .table__row {
  border-bottom: solid 1px #E5E5E5;
}
@media screen and (max-width: 767.98px) {
  .table--main .table__header .table__row {
    grid-template-columns: 50px 1fr;
  }
}
.table--main .table__header .table__row .table__head {
  border-right: solid 1px #E5E5E5;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .table--main .table__header .table__row .table__head:nth-child(2) {
    border-right: none;
  }
}
.table--main .table__header .table__row .table__head:last-child {
  border-left: none;
}
@media screen and (max-width: 767.98px) {
  .table--main .table__header .table__row .table__head:last-child {
    display: none;
  }
}
.table tbody tr th {
  font-weight: 500;
  padding: 15px 20px;
}
.table tbody tr td {
  padding: 15px 20px;
}
.table tbody tr td:first-child {
  text-align: center;
  background: #F9F6F2;
  width: var(--check-th-width);
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767.98px) {
  .table tbody tr td:first-child {
    width: var(--check-th-width-sp);
  }
}
.table tbody tr td:first-child label {
  display: block;
  width: 100%;
  height: 100%;
}
.table tbody tr td:first-child label input {
  border: solid 1px #E5E5E5;
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 767.98px) {
  .table tbody tr td:first-child label input {
    width: 20px;
    height: 20px;
  }
}
.table tbody tr td:nth-child(2) {
  width: 254px;
}
.table--main {
  border: solid 1px #E5E5E5;
}
.table--main .table__body .table__row {
  display: grid;
  grid-template-columns: var(--check-th-width) 1fr 1.2fr;
  border-bottom: solid 1px #E5E5E5;
}
@media screen and (max-width: 767.98px) {
  .table--main .table__body .table__row {
    grid-template-columns: var(--check-th-width-sp) 1fr;
    grid-template-rows: auto auto;
  }
}
.table--main .table__body .table__row:last-child {
  border-bottom: none;
}
.table--main .table__body .table__row .table__data {
  padding: 20px 15px;
  border-right: solid 1px #E5E5E5;
}
.table--main .table__body .table__row .table__data input {
  width: 25px;
  height: 25px;
}
.table--main .table__body .table__row .table__data .link {
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
}
.table--main .table__body .table__row .table__data:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9F6F2;
}
@media screen and (max-width: 767.98px) {
  .table--main .table__body .table__row .table__data:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
    width: var(--check-th-width-sp);
    padding: 0;
  }
}
.table--main .table__body .table__row .table__data:nth-child(2) {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .table--main .table__body .table__row .table__data:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
    border-bottom: solid 1px #E5E5E5;
    border-right: none;
  }
}
.table--main .table__body .table__row .table__data:nth-child(3) {
  border-right: none;
}
@media screen and (max-width: 767.98px) {
  .table--main .table__body .table__row .table__data:nth-child(3) {
    font-size: 14px;
    grid-column: 2/3;
    grid-row: 2/3;
    padding: 10px 15px;
  }
}
.table--souzoku {
  margin-bottom: 40px;
}
.table--accordion {
  display: none;
  width: 100%;
}
.table--accordion thead tr th:nth-child(2) {
  width: calc(100% - var(--check-th-width));
}
@media screen and (max-width: 767.98px) {
  .table--accordion thead tr th:nth-child(2) {
    width: calc(100% - var(--check-th-width-sp));
  }
}
.table--accordion tbody tr td:nth-child(2) {
  width: calc(100% - var(--check-th-width));
}
@media screen and (max-width: 767.98px) {
  .table--accordion tbody tr td:nth-child(2) {
    width: calc(100% - var(--check-th-width-sp));
  }
}
.table--accordion + .deco--line {
  background-color: #E0E0E0;
  width: 100%;
  height: 1px;
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  .table--accordion + .deco--line {
    margin-top: 15px;
  }
}
.table input[type=checkbox] {
  display: none;
}
.table input[type=checkbox]:checked + .custom-checkbox {
  background-image: url(../images/ico_check.svg);
  background-repeat: no-repeat;
  background-color: var(--primary-color);
  background-size: 12px 8px;
  background-position: center;
}
.table input[type=checkbox] + .custom-checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #E5E5E5;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.table + .text--supp {
  font-size: 15px;
  margin: 10px 0 40px;
  text-indent: -1em;
  padding-left: 1em;
}

.form--roi-input {
  margin-top: 30px;
}
.form .input-wrap {
  margin-bottom: 20px;
}
.form .input-wrap__inner--has-title {
  align-items: center;
  display: grid;
  grid-template-columns: 150px 1fr;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .form .input-wrap__inner--has-title {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .form .input-wrap__inner--has-title {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }
}
.form .input-wrap__inner--has-title:last-child {
  margin-bottom: 0;
}
.form .input-wrap__inner--has-title label {
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .form .input-wrap__inner--has-title label {
    margin-bottom: 5px;
  }
}
.form .input-wrap .input {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .form .input-wrap--shop .mark {
    line-height: 1.5;
  }
}

.form--roi-check .input-wrap {
  border-bottom: solid 1px #EEE;
  padding-bottom: 18px;
}
.form--roi-check .input-wrap-outer {
  margin-bottom: 50px;
}
.form--roi-check .form__text {
  text-align: center;
}
.form--roi-check .button-wrap {
  margin-top: 30px;
}

.form .mark {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.98px) {
  .form .mark {
    display: inline-block;
    font-size: 15px;
  }
}
.page--roi-check .form .mark {
  margin-bottom: 20px;
}

.the-textbox__root-wrap {
  width: 100%;
}
.the-textbox__root-wrap--dual {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767.98px) {
  .the-textbox__root-wrap--dual {
    flex-direction: column;
    gap: 5px;
  }
}

.form--roi-input .the-textbox__root {
  position: relative;
  width: 100%;
}

.form .input::-moz-placeholder {
  color: #999;
  font-size: 15px;
}

.form .input::placeholder {
  color: #999;
  font-size: 15px;
}
.form .input:focus {
  border: solid 2px var(--focus) !important;
}

.form .error .input {
  border: 2px solid var(--primary-color) !important;
  background-color: var(--textbox-error-background) !important;
}

.form select.input:focus {
  border: none !important;
}

.form .input:not(.input--select),
.form .input-outer--select {
  box-sizing: border-box;
  border: solid 2px var(--pale-gray);
  border-radius: 15px;
  outline: 0;
  font-size: 16px;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  padding: 16px;
  line-height: 48px;
  line-height: 1.6;
  color: var(--black);
}
@media screen and (max-width: 767.98px) {
  .form .input:not(.input--select),
  .form .input-outer--select {
    padding: 15px;
  }
}
.form .input:not(.input--select).correct,
.form .input-outer--select.correct {
  background-color: white;
}

.form .input-outer--select,
.form .input--date {
  background-color: white !important;
}

.form .input-outer--select {
  padding: 0 !important;
}

.form .input-outer--subject {
  max-width: 205px !important;
}

.form .input--select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: url(../images/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: 12px 7px; /* 画像のサイズ（幅 高さ）*/
  background-position: right 16px center; /* 画像の位置 */
  border: none;
  color: #999;
  font-size: 15px;
  width: 100%;
  padding: 16px;
  outline: none;
}
.form .input--select::-ms-expand {
  display: none;
}

.form .input--date {
  width: 160px !important;
}

.form .input--zip {
  max-width: 500px !important;
}

.form .input--tel {
  max-width: 352px !important;
}

.form .input--zip,
.form .input--shop-number {
  margin-right: 10px;
}

.err-msg {
  position: relative;
  display: none;
  margin: 8px 0 0;
  padding: 10px 16px;
  min-width: 120px;
  max-width: 100%;
  background: #FFDFDF;
  border-radius: 3px;
  width: -moz-fit-content;
  width: fit-content;
}
.err-msg::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  margin-left: -4px;
  border: 4px solid transparent;
  border-bottom: 4px solid #FFDFDF;
}
.error .err-msg {
  display: inline-block;
}
.err-msg p {
  color: var(--primary-color);
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.icon--delete {
  display: none;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}
.written .icon--delete {
  display: block;
}

.form--roi-check .the-textbox__root {
  margin-left: 1em;
}

.form .input--date[type=date] {
  background: url(../images/ico_calendar.svg) no-repeat left 16px center;
  background-size: 28px;
  padding-right: 14px; /* 日付の表示スペースを作成 */
}
.form .input--date[type=date]::-webkit-datetime-edit {
  order: 2;
}
.form .input--date[type=date]::-webkit-calendar-picker-indicator {
  order: 1;
  width: 28px;
  height: 30px;
  color: transparent;
  background: none;
  margin-right: 10px;
  z-index: 1;
}

.form .input-frame {
  position: relative;
  width: 100%;
}
.form .input-frame--zip, .form .input-frame--tel {
  max-width: 352px;
}

div::part(-internal-datetime-container) {
  flex-direction: row-reverse;
}

.note {
  text-indent: -1em;
}
.note::before {
  content: "※";
}

.section-field__text.note {
  margin-left: 1em;
}

.form .input-wrap .note {
  color: #999999;
  font-size: 12px;
  margin-top: 10px;
  margin-left: 1.4em !important;
}

.cautionary-note {
  border: solid 1px #F7F6F6;
  border-radius: 6px;
  margin-bottom: 24px;
}

.cautionary-note__header {
  background-color: #F7F6F6;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 15px 20px 20px;
}
@media screen and (max-width: 768px) {
  .cautionary-note__header {
    padding-bottom: 0;
  }
}

.cautionary-note__header img {
  margin-right: 10px;
}

.cautionary-note__body {
  padding: 15px 20px 20px;
}
@media screen and (max-width: 767.98px) {
  .cautionary-note__body {
    background-color: #F7F6F6;
    padding-bottom: 15px;
  }
}

/*
    list
*/
.list {
  text-indent: -1.5em;
}
.list--link {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  list-style: none;
  align-items: stretch;
  margin: 50px auto;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .list--link {
    display: flex;
    flex-direction: column;
    margin: 40px auto;
    gap: 15px;
  }
}
.list--link .list__item {
  width: 100%;
}
.list--link .list__item .link {
  align-items: center;
  display: flex;
  background: #FEF3F2;
  border-radius: 20px;
  color: #D53F50;
  font-weight: 600;
  text-decoration: none;
  padding: 0 30px;
  height: 68px;
  transition: 0.2s all ease-in-out;
}
.list--link .list__item .link:hover {
  opacity: 0.6;
}
.list--link .list__item .link.has-arrow::after {
  right: 30px;
}
.list--link .list__item .link__text {
  display: block;
  padding-left: 30px;
}
.list--bc {
  list-style-position: inside;
  text-indent: 0;
  padding-left: 0;
}
.list--bc .list__item {
  padding-left: 0;
  margin-bottom: 0;
}
.list--bc .list__item::marker {
  font-size: 50%;
}
.list--bc .list__item > span {
  vertical-align: middle;
}

.list--cautionary-note {
  font-size: 14px;
  list-style-position: inside;
  margin-left: 1.5em;
  margin-bottom: 30px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .list--cautionary-note {
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.list--cautionary-note .list__item {
  margin-bottom: 11px;
  list-style-type: none;
}
.list--cautionary-note .list__item::before {
  content: "●";
  display: inline;
  font-size: 12px;
  margin-right: 9px;
}
.list--cautionary-note .list__item:last-child {
  margin-bottom: 0;
}
.list--cautionary-note .list__item a {
  color: #1558D6;
}

/*
page-2
*/
.billing-doc {
  margin: 50px 0;
}
.billing-doc__title {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1;
}
.billing-doc__data {
  margin-left: 0;
}

.check {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  background-color: white;
  border: solid 1px #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(12, 51, 141, 0.06);
  color: #7F7F7F;
  font-size: 14px;
  padding: 22px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767.98px) {
  .check {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.check::before {
  border-color: white;
}
.check.checked {
  border-color: #FE7A04;
  color: #FE7A04;
}

.check__input {
  accent-color: #FE7A04;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #B2B2B2;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  margin: 0 12px 0 0;
  transition: 0.3s ease-in-out;
}
.check__input:checked {
  background-color: #FE7A04;
  background-image: url(../images/ico_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
  border-color: #FE7A04;
}

.footer {
  background: var(--contents-bg);
  border-top: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
}

.footer__bottom {
  background: var(--primary-color);
  color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-wrap {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .button-wrap {
    margin-top: 40px;
  }
}

.button {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.button--accordion {
  border-radius: 28px;
  position: relative;
  margin-left: 1.4em;
  margin-bottom: 10px;
  text-indent: -2em;
}
@media screen and (max-width: 767.98px) {
  .button--accordion {
    padding-right: 1.5rem;
  }
}
.button-raw {
  border: none;
  background-color: transparent;
}

.button-raw--back-previous {
  position: relative;
  display: block;
  text-align: center;
  color: #999999;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1;
  margin: 50px auto 0;
  padding-bottom: 3px;
  overflow: hidden;
}
.button-raw--back-previous::before {
  content: "";
  position: absolute;
  transition: transform 0.5s ease;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--pale-gray);
  transform: translateX(-100%);
}
.button-raw--back-previous:hover::before {
  transform: translateX(0);
}
.button-raw--back-previous:hover svg path {
  fill: var(--btn-secondary-color-hover);
}

.button-raw--back-previous .start {
  margin-right: 12px;
}

button.primary {
  cursor: pointer;
  min-height: 56px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.2s ease-in;
  padding: 0 16px;
  outline: none;
  font-style: normal;
  line-height: 1.6;
  box-shadow: 0 4px 12px 0 rgba(12, 51, 141, 0.0784313725);
  border: var(--primary-color);
  border-radius: 28px;
  background: var(--primary-color);
  color: white;
  font-size: 16px !important;
  max-width: 470px;
  width: 100%;
}
button.primary:disabled {
  cursor: not-allowed;
  background: rgba(198, 200, 209, 0.6) !important;
}

.button--orange {
  color: var(--tertiary-orange);
  background-color: white;
  border: 1px solid var(--tertiary-orange);
  box-shadow: 0 4px 12px 0 rgba(12, 51, 141, 0.0784313725);
  border-radius: 4px;
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 16px;
  max-width: 470px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.form .button {
  font-size: 15px;
}

.page-rcd-thanks .button--orange {
  width: 100%;
}

.has-arrow {
  position: relative;
}
.has-arrow::after {
  position: absolute;
  content: "";
  background-image: url(../images/ico_arrow_red.svg);
  background-repeat: no-repeat;
  background-size: 12px 7px;
  width: 12px;
  height: 7px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center center 0;
  transition: transform 0.5s ease-in-out;
}
.has-arrow.active::after {
  transform: rotate(-180deg);
}

.form .badge {
  color: white;
  font-size: 12px;
  line-height: 1;
  margin-left: 10px;
  padding: 4px 9px;
  border-radius: 12px;
}
@media screen and (max-width: 767.98px) {
  .form .badge {
    padding: 0 9px;
  }
}

.badge--must {
  background-color: var(--primary-color);
}

.badge--optional {
  background-color: #E5E5E5;
}

.center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .SP {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */

.the-textbox__root {
  word-break: break-all;
  line-break: anywhere;
}