/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* ============================================ */
/* original css */
/* ============================================ */

/* base */
html {
  font-size: 62.5%;
}
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  background: #fff;
}

@media print, screen and (min-width: 768px) {
  body {
    padding-top: 70px;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
a {
  color: inherit;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .is-hoverAction,
  a {
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .is-hoverAction:hover,
  a:hover {
    opacity: 0.75;
  }
}

/* utility */
.is-sp {
  display: block;
}
.is-pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}
br.is-sp { display: inline; }
br.is-pc { display: none; }
@media print, screen and (min-width: 768px) {
  br.is-sp { display: none; }
  br.is-pc { display: inline; }
}
.is-text {
  display: block;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.is-gra {
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* common layout */
.commonWrap {
  width: 100%;
}
.commonInner {
  width: 100%;
  max-width: 128rem;
  margin-left: auto;
  margin-right: auto;
}

/* header */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 35px;
  background-color: #f5f5f3;
}
@media print, screen and (min-width: 768px) {
  .header {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
}

.header-infoArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 36.26%;
  max-width: 136px;
}
@media print, screen and (min-width: 768px) {
  .header-infoArea {
    width: 40.46%;
    max-width: 518px;
  }
}

.header-infoArea-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .header-infoArea-logo {
    width: 61.77%;
  }
}
.header-infoArea-logo .is-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: url(../img/logo_header.png) no-repeat center left 5px / 96.69% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .header-infoArea-logo .is-inner {
    background-position: center left 10px;
    background-size: 93.75% auto;
  }
}

.header-infoArea-catch {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .header-infoArea-catch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 12.74%;
    background: url(../img/header_catch.gif) no-repeat center left / 87.87% auto;
    text-indent: -1000px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
  }
}

.header-infoArea-station {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .header-infoArea-station {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 25.28%;
  }
}
.header-infoArea-station-item {
  width: 100%;
  height: 0;
  padding-top: 12.68%;
  background: no-repeat center left / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
.header-infoArea-station-item + .header-infoArea-station-item {
  margin-top: 2px;
}
.header-infoArea-station-item.station-osaka {
  background-image: url(../img/ico_header01.gif);
}
.header-infoArea-station-item.station-kyoto {
  background-image: url(../img/ico_header02.gif);
}
.header-infoArea-station-item.station-sannomiya {
  background-image: url(../img/ico_header03.gif);
}

.header-bnrArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 61.86%;
  max-width: 232px;
  padding-right: 9px;
}
@media print, screen and (min-width: 768px) {
  .header-bnrArea {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 52.42%;
    max-width: 671px;
  }
}
.header-bnrArea-tel-pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .header-bnrArea-tel-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 38.45%;
  }
}
.header-bnrArea-tel-pc .is-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: url(../img/header_btn_tel_pc.png) no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
.header-bnrArea-tel-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 50%;
  margin-right: 3px;
}
@media print, screen and (min-width: 768px) {
  .header-bnrArea-tel-sp {
    display: none;
  }
}
.header-bnrArea-tel-sp .is-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: url(../img/header_btn_tel_sp.png) no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
.header-bnrArea-tel-sp2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44.82%;
}
@media print, screen and (min-width: 768px) {
  .header-bnrArea-tel-sp2 {
    display: none;
  }
}
.header-bnrArea-tel-sp2 .is-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: url(../img/header_btn_tel_sp2.png) no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
.header-bnrArea-line-pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .header-bnrArea-line-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 21.6%;
  }
}
.header-bnrArea-line-pc .is-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: url(../img/header_btn_line.png) no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
.header-bnrArea-contact-pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .header-bnrArea-contact-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 37.25%;
  }
}
.header-bnrArea-contact-pc .is-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: url(../img/header_btn_contact.png) no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}

/* mvArea */
.mvArea {
  width: 100%;
}
.mvArea-img {
  position: relative;
}
.mvArea-img img {
  width: 100%;
  height: auto;
}
.mvArea-countdown {
  position: absolute;
  top: 54%;
  left: 52.4%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 16vw;
  line-height: 0.8;
}
@media print, screen and (min-width: 768px) {
  .mvArea-countdown {
    top: 75.9%;
    left: 57.9%;
    font-size: 5vw;
  }
}

/* cvArea */
.cvArea {
  position: relative;
  width: 100%;
}
.cvArea-img img {
  width: 100%;
  height: auto;
}
.cvArea-tel,
.cvArea-line {
  display: block;
  position: absolute;
  top: 34.78%;
  width: 44.8%;
  height: 53.62%;
}
.cvArea-tel {
  left: 4.27%;
}
.cvArea-line {
  left: 50.93%;
}
@media print, screen and (min-width: 768px) {
  .cvArea-tel,
  .cvArea-line {
    top: 26.32%;
    width: 32.71%;
    height: 52.63%;
  }
  .cvArea-tel {
    left: 16.67%;
  }
  .cvArea-line {
    left: 50.62%;
  }
}

/* statsArea */
.statsArea {
  width: 100%;
  padding: 0 1.6rem;
  background-color: #fffeed;
  background-image:
    radial-gradient(circle, rgba(229, 222, 107, 0.2) 2.5px, transparent 2.7px),
    radial-gradient(circle, rgba(229, 222, 107, 0.2) 2.5px, transparent 2.7px);
  background-size: 2.1rem 2.1rem;
  background-position: 0 0, 1.05rem 1.05rem;
}
.statsArea-inner {
  padding: 4rem 0;
}
.statsArea-chartBlock {
  text-align: center;
}
.statsArea-chart img {
  width: 100%;
  max-width: 35.3rem;
  margin: 0 auto;
}
.statsArea-chartNote {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
}
.statsArea-textBlock {
  margin-top: 2.4rem;
}
.statsArea-title {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statsArea-deadline {
  margin-top: 1.6rem;
  padding: 0.6rem 0.4rem;
  border: 2px solid;
  border-image: linear-gradient(90deg, #f12c57, #f46c18) 1;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statsArea-lead {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
}
@media print, screen and (min-width: 768px) {
  .statsArea {
    padding: 0 2rem;
  }
  .statsArea-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
    padding: 8rem 0;
  }
  .statsArea-chartBlock {
    flex: 0 0 40.5%;
  }
  .statsArea-chart img {
    width: 100%;
    max-width: none;
  }
  .statsArea-chartNote {
    margin-top: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .statsArea-textBlock {
    flex: 0 0 54.5%;
    margin-top: 0;
  }
  .statsArea-title {
    font-size: clamp(3.6rem, 5vw, 6.4rem);
  }
  .statsArea-deadline {
    margin-top: 4.8rem;
    padding: 0.4rem 1rem;
    font-size: clamp(1.8rem, 1.9vw, 2.4rem);
    line-height: 1.8;
  }
  .statsArea-lead {
    font-size: clamp(1.8rem, 1.9vw, 2.4rem);
    line-height: 1.8;
  }
}

/* checkArea */
.checkArea {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.checkArea-head {
  order: 1;
}
.checkArea-head-img {
  width: 100%;
}
.checkArea-arrow {
  order: 2;
  flex: 0 0 auto;
  width: 100%;
  margin-top: -1px;
}
.checkArea-arrow-img {
  width: 100%;
}
.checkArea-body {
  order: 3;
  padding: 1.6rem 1.6rem 12rem;
  background: linear-gradient(90deg, #fff5f8, #fff2e6);
  overflow: hidden;
}
.checkArea-card {
  padding: 3.2rem 1.6rem;
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.05);
}
.checkArea-card-title {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.checkArea-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 0;
  border-bottom: 1px dashed #9f9f9f;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}
.checkArea-checklist-item::before {
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/checkArea/check_box.png) no-repeat center / contain;
  content: "";
}
.checkArea-checklist-item-note {
  margin-left: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}
.checkArea-cv {
  position: relative;
  margin-top: 1.6rem;
}
.checkArea-cv-box {
  padding: 2rem 1.2rem 6rem;
  border: 0.4rem solid #fff;
  border-radius: 1.6rem;
  background: #e8f2e9;
  text-align: center;
}
.checkArea-cv-bubble {
  width: min(34.1rem, 100% + 3rem);
  max-width: none;
  margin: -1.1rem calc((100% - min(34.1rem, 100% + 3rem)) / 2) -0.9rem;
}
.checkArea-cv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.6rem;
  border: 2px solid #0c7a2e;
  border-radius: 0.8rem;
  background: linear-gradient(90deg, #269026, #0bc725);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
.checkArea-cv-btn-logo {
  width: 4.2rem;
  height: auto;
}
.checkArea-cv-note {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}
.checkArea-cv-person {
  position: absolute;
  right: -2.4rem;
  top: calc(100% - 5.6rem);
  width: 19.5rem;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .checkArea-body {
    padding: 4rem 2rem 8rem;
  }
  .checkArea-card {
    padding: 4.8rem 6rem;
  }
  .checkArea-card-title {
    margin-bottom: 2.4rem;
    font-size: 4rem;
  }
  .checkArea-checklist {
    max-width: 80rem;
    margin: 0 auto;
  }
  .checkArea-checklist-item {
    align-items: center;
    gap: 1.6rem;
    padding: 2.4rem;
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .checkArea-checklist-item::before {
    width: 4rem;
    height: 4rem;
  }
  .checkArea-checklist-item-note {
    font-size: 1.6rem;
  }
  .checkArea-cv {
    margin-top: 2.4rem;
  }
  .checkArea-cv-box {
    max-width: 90rem;
    margin-right: 24rem;
    padding: 3.2rem 7.2rem;
    border-width: 0.8rem;
  }
  .checkArea-cv-bubble {
    width: 60.4rem;
    max-width: 100%;
    margin: -1.4rem auto -2rem;
  }
  .checkArea-cv-btn {
    padding: 1.6rem;
    border-radius: 1.6rem;
    font-size: 3.2rem;
  }
  .checkArea-cv-btn-logo {
    width: 7.2rem;
  }
  .checkArea-cv-note {
    margin-top: 0.8rem;
    font-size: 2rem;
  }
  .checkArea-cv-person {
    right: 5.4rem;
    top: auto;
    bottom: 0;
    width: 21vw;
    min-width: 18rem;
    max-width: 27.6rem;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1079px) {
  .checkArea-cv-box {
    padding: 3.2rem;
  }
}

/* priceArea */
.priceArea {
  width: 100%;
  padding: 4rem 1.6rem 16rem;
  background: #fff;
  overflow: hidden;
}
.priceArea-inner {
  position: relative;
}
.priceArea-spImg {
  position: absolute;
  left: -2rem;
  top: calc(100% - 2.7rem);
  width: 23rem;
  height: auto;
}
.priceArea-title {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #333;
}
.priceArea-card {
  padding: 1.6rem;
  background: #fffeea;
  border-radius: 1.6rem;
  overflow: hidden;
}
.priceArea-list-item {
  padding: 2rem 1rem;
  border: 3px solid transparent;
  border-radius: 1.6rem;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #f12c57, #f46c18) border-box;
  text-align: center;
}
.priceArea-list-item + .priceArea-list-item {
  margin-top: 0.8rem;
}
.priceArea-list-item-label {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}
.priceArea-list-item-label .is-sub {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
.priceArea-list-item-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 0.8rem;
  white-space: nowrap;
}
.priceArea-list-item-amount .is-unit {
  font-size: 2.4rem;
  font-weight: 700;
}
.priceArea-list-item-amount .is-num {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1;
}
.priceArea-total {
  position: relative;
  margin-top: 1.6rem;
  padding: 2.4rem 2rem;
  border-radius: 1.6rem;
  background: linear-gradient(90deg, #f12c57, #f46c18);
  text-align: center;
  overflow: hidden;
}
.priceArea-total-img {
  position: absolute;
  left: 0.8rem;
  bottom: 0;
  width: 11rem;
  height: auto;
}
.priceArea-total-body {
  position: relative;
}
.priceArea-total-text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.priceArea-total-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 1.6rem;
  color: #fff;
  line-height: 1;
}
.priceArea-total-amount .is-unit {
  font-size: 2.4rem;
  font-weight: 700;
}
.priceArea-total-amount .is-num {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1;
}
.priceArea-note {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
  text-align: right;
}
@media print, screen and (min-width: 768px) {
  .priceArea {
    padding: 8rem 2rem;
  }
  .priceArea-title {
    margin-bottom: 2.4rem;
    font-size: 4rem;
  }
  .priceArea-card {
    padding: 6.4rem clamp(2rem, 5vw, 8rem);
  }
  .priceArea-list {
    display: flex;
    gap: 2.4rem;
  }
  .priceArea-list-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 4rem 1rem;
  }
  .priceArea-list-item + .priceArea-list-item {
    margin-top: 0;
  }
  .priceArea-list-item-label {
    font-size: clamp(1.6rem, 1.8vw, 2.2rem);
  }
  .priceArea-list-item-amount {
    margin-top: auto;
  }
  .priceArea-list-item-amount .is-unit {
    font-size: clamp(2rem, 2.2vw, 2.8rem);
  }
  .priceArea-list-item-amount .is-num {
    font-size: clamp(4rem, 5.6vw, 7.2rem);
  }
  .priceArea-total {
    margin-top: 2.4rem;
    padding: 2.4rem 4rem 1.4rem;
    overflow: visible;
  }
  .priceArea-total-img {
    left: 4.2%;
    top: 1.1rem;
    bottom: auto;
    width: 26.2%;
    height: auto;
  }
  .priceArea-total-text {
    font-size: 3.6rem;
  }
  .priceArea-total-amount {
    margin-top: 0.8rem;
  }
  .priceArea-total-amount .is-unit {
    font-size: 3.2rem;
  }
  .priceArea-total-amount .is-num {
    font-size: 8.8rem;
  }
  .priceArea-note {
    margin-top: 2.4rem;
    font-size: 2rem;
  }
}

/* reasonArea */
.reasonArea {
  width: 100%;
  padding: 4rem 1.6rem;
  background: linear-gradient(90deg, #fff5f7, #fff2e6);
}
.reasonArea-head {
  margin-bottom: 0;
  text-align: center;
}
.reasonArea-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}
.reasonArea-subtitle {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}
.reasonArea-list-item {
  padding: 3.2rem 1.6rem;
  text-align: center;
}
.reasonArea-list-item + .reasonArea-list-item {
  border-top: 1px dashed #9f9f9f;
}
.reasonArea-list-item-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  margin-bottom: 1.6rem;
}
.reasonArea-list-item-icon {
  width: 10rem;
  height: auto;
}
.reasonArea-list-item-num {
  position: absolute;
  top: 35%;
  right: 0rem;
  font-family: "Alata", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}
.reasonArea-list-item-label {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 1.6rem;
  padding: 0.6rem 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  background-color: #fff;
}
.reasonArea-list-item-label::before,
.reasonArea-list-item-label::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.3rem;
  content: "";
}
.reasonArea-list-item-label::before {
  left: 0;
  border: 2px solid #f12c57;
  border-right: none;
  border-radius: 0.4rem 0 0 0.4rem;
}
.reasonArea-list-item-label::after {
  right: 0;
  border: 2px solid #f46c18;
  border-left: none;
  border-radius: 0 0.4rem 0.4rem 0;
}
.reasonArea-list-item-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
  color: #333;
}
.reasonArea-list-item-note {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  color: #333;
}
@media print, screen and (min-width: 768px) {
  .reasonArea {
    padding: 8rem 2rem;
  }
  .reasonArea-head {
    margin-bottom: 1rem;
  }
  .reasonArea-title {
    font-size: 4rem;
  }
  .reasonArea-subtitle {
    margin-top: 1.6rem;
    font-size: 2.4rem;
  }
  .reasonArea-list {
    display: flex;
    gap: clamp(4rem, 6.25vw, 8rem);
  }
  .reasonArea-list-item {
    flex: 1;
    padding: 4rem 0;
  }
  .reasonArea-list-item + .reasonArea-list-item {
    border-top: none;
  }
  .reasonArea-list-item-head {
    min-height: 20rem;
    margin-bottom: 3.2rem;
  }
  .reasonArea-list-item-icon {
    width: clamp(12rem, 13vw, 16rem);
  }
  .reasonArea-list-item-num {
    top: 0;
    right: 0;
    font-size: clamp(4.8rem, 5vw, 6.4rem);
    transform: none;
  }
  .reasonArea-list-item-label {
    margin-bottom: 3.2rem;
    padding: 0.8rem 2rem;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
  }
  .reasonArea-list-item-text {
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  }
  .reasonArea-list-item-note {
    font-size: 1.4rem;
  }
}

/* faqArea */
.faqArea {
  width: 100%;
  padding: 4rem 1.6rem;
  background: linear-gradient(90deg, #ffe2ea, #ffe1c8);
}
.faqArea-head {
  margin-bottom: 1.6rem;
  text-align: center;
}
.faqArea-title {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 0.2rem;
  background: linear-gradient(90deg, #f12c57, #f46c18);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.faqArea-subtitle {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}
.faqArea-list-item {
  padding: 2rem 1.6rem;
  border-radius: 1.6rem;
  background: #fff;
}
.faqArea-list-item + .faqArea-list-item {
  margin-top: 0.8rem;
}
.faqArea-q {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.faqArea-q-mark {
  flex: 0 0 auto;
  font-family: "Alata", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}
.faqArea-a {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px dotted #9f9f9f;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
.faqArea-a-mark {
  flex: 0 0 auto;
  font-family: "Alata", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  color: #333;
}
@media print, screen and (min-width: 768px) {
  .faqArea {
    padding: 8rem 2rem;
  }
  .faqArea-head {
    margin-bottom: 4rem;
  }
  .faqArea-title {
    padding: 0.8rem 1.6rem;
    font-size: 4rem;
  }
  .faqArea-subtitle {
    margin-top: 1.6rem;
    font-size: 2.4rem;
  }
  .faqArea-list-item {
    padding: 3.2rem 6.4rem;
  }
  .faqArea-list-item + .faqArea-list-item {
    margin-top: 1.6rem;
  }
  .faqArea-q {
    gap: 2.4rem;
    font-size: 2.2rem;
  }
  .faqArea-q-mark {
    font-size: 2.6rem;
    transform: translateY(0.1em);
  }
  .faqArea-a {
    gap: 2.4rem;
    margin-top: 2.4rem;
    padding-top: 2.4rem;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .faqArea-a-mark {
    font-size: 2.6rem;
  }
}

/* stepArea */
.stepArea {
  width: 100%;
  padding: 4rem 1.6rem;
  background: #fff;
}
.stepArea-head {
  margin-bottom: 3.2rem;
  text-align: center;
}
.stepArea-title {
  display: inline-block;
  padding: 0.6rem 2.4rem;
  border-radius: 0.2rem;
  background: linear-gradient(90deg, #f12c57, #f46c18);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.stepArea-subtitle {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}
.stepArea-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.stepArea-arrow {
  flex: 0 0 auto;
  align-self: center;
  width: 2.8rem;
  height: 2rem;
  margin: 0;
  background: linear-gradient(90deg, #f12c57, #f46c18);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.stepArea-list-item {
  padding: 2.4rem;
  border: 3px solid transparent;
  border-radius: 1.6rem;
  background:
    linear-gradient(#fffceb, #fffceb) padding-box,
    linear-gradient(90deg, #f12c57, #f46c18) border-box;
  text-align: center;
}
.stepArea-list-item-step {
  display: inline-block;
  position: relative;
  padding-bottom: 1.2rem;
  font-family: "Alata", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}
.stepArea-list-item-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f12c57, #f46c18);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0, #000 3px, transparent 3px, transparent 6px);
  mask: repeating-linear-gradient(90deg, #000 0, #000 3px, transparent 3px, transparent 6px);
}
.stepArea-list-item-icon {
  display: block;
  width: 10rem;
  height: auto;
  margin: 0.8rem auto;
}
.stepArea-list-item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.stepArea-list-item-text {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: left;
  color: #333;
}
.stepArea-foot {
  margin-top: 4rem;
  padding: 3.2rem 2rem;
  border-radius: 1.6rem;
  background: linear-gradient(90deg, #fff5f7, #fff2e6);
  text-align: center;
}
.stepArea-foot-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
.stepArea-foot-text {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  color: #333;
}
@media print, screen and (min-width: 768px) {
  .stepArea {
    padding: 8rem 2rem;
  }
  .stepArea-head {
    margin-bottom: 4.6rem;
  }
  .stepArea-title {
    padding: 0.4rem 2rem;
    border-radius: 0.8rem;
    font-size: 4rem;
  }
  .stepArea-subtitle {
    font-size: 2.4rem;
  }
  .stepArea-list {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
  }
  .stepArea-list-item {
    flex: 1;
    padding: 4rem 2.4rem;
  }
  .stepArea-arrow {
    align-self: center;
    width: 2.4rem;
    height: 4rem;
    margin: 0 1.6rem;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .stepArea-list-item-step {
    font-size: 3.2rem;
    padding-bottom: 1.6rem;
  }
  .stepArea-list-item-icon {
    width: 16rem;
    margin: 0.8rem auto;
  }
  .stepArea-list-item-title {
    font-size: 2.4rem;
  }
  .stepArea-list-item-text {
    font-size: 1.6rem;
  }
  .stepArea-foot {
    margin-top: 6rem;
    padding: 3rem;
  }
  .stepArea-foot-title {
    font-size: 4.4rem;
  }
  .stepArea-foot-text {
    font-size: 2.4rem;
  }
}

/* pointArea */
.pointArea {
  position: relative;
  width: 100%;
  padding: 4rem 1.6rem 16rem;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(241, 44, 87, 0.07) 1.5px, transparent 1.5px) 0 0 / 2.1rem 2.1rem,
    radial-gradient(circle, rgba(241, 44, 87, 0.07) 1.5px, transparent 1.5px) 1.05rem 1.05rem / 2.1rem 2.1rem,
    linear-gradient(90deg, #fff5f7, #fff2e6);
}
.pointArea-title {
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.pointArea-person {
  position: absolute;
  left: 3.2rem;
  bottom: -15rem;
  width: 20.8rem;
  height: auto;
  transform: scaleX(-1);
}
.pointArea-list-item {
  position: relative;
  padding: 2.4rem;
  border-radius: 2rem;
  background: #fff;
}
.pointArea-list-item::before,
.pointArea-list-item::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.pointArea-list-item::before {
  top: 0;
  right: 0;
  left: 0;
  height: 2.4rem;
  border: 2px solid #f12c57;
  border-bottom: none;
  border-radius: 2rem 2rem 0 0;
}
.pointArea-list-item::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 2.4rem;
  border: 2px solid #f46c18;
  border-top: none;
  border-radius: 0 0 2rem 2rem;
}
.pointArea-list-item + .pointArea-list-item {
  margin-top: 2.4rem;
}
.pointArea-list-item-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8.8rem;
  height: 8.8rem;
  margin: 0 auto;
  border-radius: 50%;
  background: #fdeef1;
}
.pointArea-list-item-num-label {
  font-family: "Alata", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.pointArea-list-item-num-no {
  font-family: "Alata", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}
.pointArea-list-item-title {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.pointArea-list-item-text {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
.pointArea-list-item-note {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
@media print, screen and (min-width: 768px) {
  .pointArea {
    padding: 8rem 2rem;
  }
  .pointArea-title {
    margin-bottom: 4rem;
    font-size: 4rem;
  }
  .pointArea-body {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(2rem, 3vw, 4rem);
  }
  .pointArea-person {
    position: static;
    flex: 0 1 31.2rem;
    width: 31.2rem;
    min-width: 0;
  }
  .pointArea-list {
    flex: 0 1 92.8rem;
  }
  .pointArea-list-item {
    display: flex;
    align-items: center;
    padding: 3.2rem 5.6rem;
  }
  .pointArea-list-item + .pointArea-list-item {
    margin-top: 3.2rem;
  }
  .pointArea-list-item::before {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 2.4rem;
    height: auto;
    border: 2px solid #f12c57;
    border-right: none;
    border-radius: 2rem 0 0 2rem;
  }
  .pointArea-list-item::after {
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 2.4rem;
    height: auto;
    border: 2px solid #f46c18;
    border-left: none;
    border-radius: 0 2rem 2rem 0;
  }
  .pointArea-list-item-num {
    flex: 0 0 auto;
    width: 12rem;
    height: 12rem;
    margin: 0;
  }
  .pointArea-list-item-num-label {
    font-size: 1.2rem;
  }
  .pointArea-list-item-num-no {
    font-size: 4rem;
  }
  .pointArea-list-item-body {
    margin-left: 4rem;
  }
  .pointArea-list-item-title {
    margin-top: 0;
    font-size: 2.6rem;
    line-height: 1.3;
    text-align: left;
  }
  .pointArea-list-item-text {
    font-size: 1.8rem;
  }
  .pointArea-list-item-note {
    font-size: 1.4rem;
  }
}

/* messageArea */
.messageArea {
  width: 100%;
  padding: 4rem 1.6rem;
  background: #fffeea;
}
.messageArea-text-item {
  padding: 1.2rem 0;
  border-bottom: 1px dashed #9f9f9f;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}
.messageArea-text-item:first-child {
  border-top: 1px dashed #9f9f9f;
}
.messageArea-profile {
  margin-top: 2.4rem;
  text-align: center;
}
.messageArea-profile-photo {
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
}
.messageArea-profile-name {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}
.messageArea-profile-name-strong {
  font-size: 1.8rem;
}
@media print, screen and (min-width: 768px) {
  .messageArea {
    padding: 8rem 2rem;
  }
  .messageArea-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4rem, 6.25vw, 12rem);
  }
  .messageArea-text {
    flex: 0 1 75.1rem;
  }
  .messageArea-text-item {
    padding: 3.2rem 1.6rem;
    border-bottom-width: 2px;
    font-size: clamp(1.8rem, 2.2vw, 3rem);
    letter-spacing: 0;
    text-align: left;
  }
  .messageArea-text-item:first-child {
    border-top-width: 2px;
  }
  .messageArea-profile {
    flex: 0 0 auto;
    margin-top: 0;
  }
  .messageArea-profile-photo {
    width: 40.9rem;
  }
  .messageArea-profile-name {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
  .messageArea-profile-name-strong {
    font-size: 2.2rem;
  }
}

/* footer */
.footer {
  width: 100%;
  background-color: #0d4390;
  color: #fff;
}

.footer-contents {
  width: 100%;
  padding: 17px 20px 24px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .footer-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1027px;
    padding: 35px 20px;
    margin: 0 auto;
  }
}

.footer-contents-logo {
  width: 83px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .footer-contents-logo {
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 100;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-contents-logo {
    width: 166px;
    height: 80px;
  }
}
.footer-contents-logo .is-inner {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/footer_logo.png) no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}

.footer-contents-info {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .footer-contents-info {
    width: calc(100% - 166px);
    padding-left: 26px;
  }
}
.footer-contents-info-title {
  width: 100%;
  padding-left: 98px;
  margin-bottom: 23px;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 40px;
}
@media print, screen and (min-width: 768px) {
  .footer-contents-info-title {
    padding-left: 0;
    margin-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1;
  }
}
.footer-contents-info-address {
  width: 100%;
}

.footer-addressArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.625;
}
@media print, screen and (min-width: 768px) {
  .footer-addressArea {
    font-size: 1.4rem;
    line-height: normal;
  }
}
.footer-addressArea + .footer-addressArea {
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .footer-addressArea + .footer-addressArea {
    margin-top: 5px;
  }
}
.footer-addressArea-title {
  display: inline-block;
  width: auto;
  margin-right: 13px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .footer-addressArea-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-addressArea-title {
    min-width: 112px;
    padding-right: 5px;
    margin-right: 0;
  }
}
.footer-addressArea-address {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer-addressArea-address {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-addressArea-address {
    width: 445px;
    padding-right: 20px;
  }
}
.footer-addressArea-tel {
  width: auto;
  max-width: calc(100% - 83px);
}
@media only screen and (max-width: 767px) {
  .footer-addressArea-tel {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-addressArea-tel {
    max-width: 100%;
  }
}

.footer-copyright {
  width: 100%;
  padding-bottom: 100px;
  background-color: #ffffff;
}
@media print, screen and (min-width: 768px) {
  .footer-copyright {
    padding-bottom: 0;
  }
}
.footer-copyright-inner {
  display: block;
  width: 100%;
  text-align: center;
}
.footer-copyright-inner .is-inner {
  display: inline-block;
  padding: 10px;
  color: #0d4390;
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  .footer-copyright-inner .is-inner {
    font-size: 14px;
  }
}

/* bottomArea */
.bottomArea {
  width: 100%;
  padding-top: 12%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
@media print, screen and (min-width: 768px) {
  .bottomArea {
    display: none;
  }
}
.bottomArea-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.bottomArea-list-item.bottomArea-tel {
  width: 56%;
}
.bottomArea-list-item.bottomArea-contact {
  width: 43.73%;
}
.bottomArea-list-item .is-inner {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
.bottomArea-list-item.bottomArea-tel .is-inner {
  background-image: url(../img/bottom_btn_tel.png);
}
.bottomArea-list-item.bottomArea-contact .is-inner {
  background-image: url(../img/bottom_btn_contact.png);
}

.mvArea-pcNote {
  position: absolute;
  top: 80.4%;
  left: 16.7%;
  color: #333;
  font-size: 0.68vw;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
}
.mvArea-note {
  padding: 0.8rem 1.6rem 1.2rem;
  background: #f2f2f2;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================ */
/* formArea / 確認・完了・エラー */
/* ============================================================ */

/* formArea（フォーム） */

.formArea {
  width: 100%;
  padding: 6rem 2rem 7rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffdbe5), to(#ffdab7));
  background: -o-linear-gradient(left, #ffdbe5 0%, #ffdab7 100%);
  background: linear-gradient(90deg, #ffdbe5 0%, #ffdab7 100%);
}

/* 見出し */
.formArea-head {
  max-width: 128rem;
  text-align: center;
  margin-bottom: 3rem;
}
.formArea-head-title {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 0.2rem;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: -webkit-gradient(linear, left top, right top, from(#f12c57), to(#f46c18));
  background: -o-linear-gradient(left, #f12c57 0%, #f46c18 100%);
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
}
.formArea-head-lead {
  margin-top: 4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  color: #444;
}

/* タブ */
.formArea-main {
  max-width: 128rem;
}
.formArea-tabList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 67%;
  gap: 1.6rem;
}
.formArea-tabList-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.formArea-tabList-item-inner {
  display: block;
  width: 100%;
  padding: 2.4rem 1rem;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: #f12c57;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  cursor: pointer;
}
.formArea-tabList-item-inner.is-active {
  position: relative;
  z-index: 1;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#f12c57), to(#f46c18));
  background: -o-linear-gradient(left, #f12c57 0%, #f46c18 100%);
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
}
.formArea-tabList-item-inner.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.4rem;
  background: -webkit-gradient(linear, left top, right top, from(#f12c57), to(#f46c18));
  background: -o-linear-gradient(left, #f12c57 0%, #f46c18 100%);
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
}

/* 入力カード */
.formArea-tabWrap {
  position: relative;
  background: #fff;
  border-radius: 0 0 1.6rem 1.6rem;
  padding: 6.4rem;
  -webkit-box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.06);
}
.formArea-tabWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background: -webkit-gradient(linear, left top, right top, from(#f12c57), to(#f46c18));
  background: -o-linear-gradient(left, #f12c57 0%, #f46c18 100%);
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
}
.formArea-tabContents {
  display: none;
}
.formArea-tabContents.is-active {
  display: block;
}

/* 入力行 */
.formArea-inputArea-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
  padding: 3.2rem 0;
  background-image: linear-gradient(to right, #9f9f9f 0, #9f9f9f 0.4rem, transparent 0.4rem, transparent 0.8rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 0.8rem 0.1rem;
}
.formArea-inputArea-name {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 32.8rem;
  padding-top: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}
.formArea-inputArea-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
.formArea-inputArea-item.is-optional .formArea-inputArea-input {
  margin-left: -7.6rem;
}
.inputArea-require {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0.3rem 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#f12c57), to(#f46c18));
  background: -o-linear-gradient(left, #f12c57 0%, #f46c18 100%);
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
  border-radius: 0.4rem;
}

/* 入力欄 */
.formArea-inputArea-input input[type="text"],
.formArea-inputArea-input input[type="tel"],
.formArea-inputArea-input input[type="email"],
.formArea-inputArea-input select,
.formArea-inputArea-input textarea {
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  background: #fff;
}
.formArea-inputArea-input textarea {
  resize: vertical;
}
.inputArea-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}
.inputArea-post input {
  width: 12rem !important;
  min-width: 0;
}
.inputArea-small select {
  width: 22rem !important;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../img/common/select_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 1.6rem;
  padding-right: 4.4rem;
}
.inputArea-note {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #777;
}
.inputArea-note a {
  color: #2a72c7;
  text-decoration: underline;
}

/* ラジオ */
.inputArea-radioList-item + .inputArea-radioList-item {
  margin-top: 2.4rem;
}
.inputArea-radioList-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.7rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.inputArea-radioList-label input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
  border: 1px solid #9f9f9f;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.inputArea-radioList-label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #333;
}

/* 同意 */
.formArea-attention {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.9;
}
.formArea-attention a {
  color: #2a72c7;
  text-decoration: underline;
}
.formArea-agreeArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.8rem;
  margin-top: 1.6rem;
}
.formArea-agreeArea-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  cursor: pointer;
}
.formArea-agreeArea-input input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.formArea-agreeArea-input-box {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid #aaa;
  border-radius: 0.2rem;
  position: relative;
}
.formArea-agreeArea-input input:checked + .formArea-agreeArea-input-box {
  background: #f12c57;
  border-color: #f12c57;
}
.formArea-agreeArea-input input:checked + .formArea-agreeArea-input-box::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 0.3rem;
  width: 0.6rem;
  height: 1.1rem;
  border: solid #fff;
  border-width: 0 0.3rem 0.3rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* 送信ボタン */
.formArea-btnArea {
  margin-top: 3rem;
  text-align: center;
}
.formArea-btnArea-submit input {
  display: inline-block;
  width: 100%;
  max-width: 64rem;
  padding: 2.4rem 3rem;
  font-size: 3.2rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.06em;
  color: #fff;
  border: none;
  border-radius: 1.6rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: -webkit-gradient(linear, left top, right top, from(#f12c57), to(#f46c18));
  background: -o-linear-gradient(left, #f12c57 0%, #f46c18 100%);
  background: linear-gradient(90deg, #f12c57 0%, #f46c18 100%);
  -webkit-box-shadow: 0 0.4rem 0 #b71f3e;
  box-shadow: 0 0.4rem 0 #b71f3e;
}

/* フォーム下部CTA */
.formArea-cta {
  position: relative;
  max-width: 96.5rem;
  margin: 6rem auto 0;
}
.formArea-cta img {
  width: 100%;
  height: auto;
}
.formArea-cta-tel,
.formArea-cta-line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 48%;
}
.formArea-cta-tel {
  top: 0;
}
.formArea-cta-line {
  bottom: 0;
}

/* 確認画面 */
/* .confirmPage-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}
.confirmPage-name {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22rem;
  font-weight: 700;
}
.confirmPage-value {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  word-break: break-all;
} */

/* ============================================ */
/* PC 個別調整（768px〜） */
/* ============================================ */
@media print, screen and (min-width: 768px) {
  .formArea {
    padding: 7rem 2rem;
  }
  .formArea-head {
    margin-bottom: 5rem;
  }
  .formArea-head-title {
    padding: 0.4rem 1.6rem;
  }
  .formArea-tabList-item-inner {
    padding: 2rem 1rem;
  }
  .formArea-tabWrap {
    padding: 6.4rem 1rem;
  }
  .formArea-tabContents {
    max-width: 1040px;
    margin: 0 auto;
  }
  .formArea-inputArea-item {
    padding: 3.2rem 2.4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .formArea-inputArea-item.is-hasNote {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .formArea-inputArea-item.is-hasNote .inputArea-require {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .formArea-inputArea-name {
    font-size: 2.2rem;
    padding-top: 0;
  }
  .formArea-inputArea-input input[type="text"],
  .formArea-inputArea-input input[type="tel"],
  .formArea-inputArea-input input[type="email"] {
    max-width: 64rem;
  }
  .formArea-inputArea-input textarea {
    max-width: 71.6rem;
    height: 24rem;
  }
  .inputArea-post {
    font-size: 2.2rem;
  }
  .inputArea-post input {
    width: 16rem !important;
  }
  .inputArea-small select {
    width: 26rem !important;
    font-size: 2.2rem;
  }
  .inputArea-require {
    padding: 1rem;
    font-size: 1.6rem;
  }
  .inputArea-radioList-label {
    font-size: 2rem;
  }
  .inputArea-note {
    font-size: 1.6rem;
  }
  .formArea-agreeArea {
    margin-top: 4rem;
  }
  .formArea-agreeArea-input {
    font-size: 2rem;
  }
}

/* ============================================ */
/* SP 個別調整（〜767px） */
/* ============================================ */
@media screen and (max-width: 767px) {
  .formArea {
    padding: 2.4rem 1.6rem;
  }
  .formArea-head {
    margin-bottom: 2.4rem;
  }
  .formArea-head-title {
    padding: 0.8rem 1.6rem;
    font-size: 2rem;
    line-height: 1.4;
  }
  .formArea-head-lead {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: left;
  }
  .formArea-tabList {
    width: 100%;
    gap: 0.3rem;
  }
  .formArea-tabList-item-inner {
    padding: 1.2rem 1rem;
    font-size: 1.6rem;
  }
  .formArea-tabWrap {
    padding: 0.8rem 1.6rem 3.2rem;
  }
  .formArea-inputArea-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2.4rem 0;
  }
  .is-futo {
    gap: 2rem;
  }
  .formArea-inputArea-name {
    width: 100%;
    padding-top: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .formArea-inputArea-input {
    width: 100%;
  }
  .formArea-inputArea-item.is-optional .formArea-inputArea-input {
    margin-left: 0;
  }
  .inputArea-post input:first-of-type {
    width: 10rem !important;
  }
  .inputArea-post input:last-of-type {
    width: 14rem !important;
  }
  .inputArea-small select {
    width: 100% !important;
  }
  .inputArea-require {
    padding: 0.6rem;
  }
  .inputArea-radioList-item + .inputArea-radioList-item {
    margin-top: 1.6rem;
  }
  .is-futo .inputArea-radioList-item + .inputArea-radioList-item {
    margin-top: 2rem;
  }
  .inputArea-radioList-label {
    font-size: 1.4rem;
  }
  .formArea-attention {
    margin-top: 2.4rem;
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
  }
  .formArea-agreeArea {
    gap: 4rem;
    margin-top: 2.4rem;
  }
  .formArea-agreeArea-input {
    font-size: 1.8rem;
  }
  .formArea-btnArea {
    margin-top: 2.4rem;
  }
  .formArea-inputArea-input input[type="text"],
  .formArea-inputArea-input input[type="tel"],
  .formArea-inputArea-input input[type="email"] {
    height: 4.8rem;
  }
  .formArea-inputArea-input select {
    height: 4.8rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .formArea-inputArea-input textarea {
    height: 16rem;
  }
  .formArea-btnArea-submit input {
    min-width: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    font-size: 2rem;
    letter-spacing: 0.06em;
    border-radius: 0.8rem;
  }
  .formArea-cta {
    margin-top: 2.4rem;
  }
  /* .confirmPage-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
  }
  .confirmPage-name {
    width: 100%;
  } */
}

/* --- コンテンツ左右余白 --- */
.is-formResultPage .commonInner {
  width: calc(100% - 40px);
  max-width: none;
  margin: 0 auto;
}
@media screen and (min-width: 376px) and (max-width: 767px) {
  .is-formResultPage .commonInner {
    width: calc(100% - 10.66vw);
  }
}
@media print, screen and (min-width: 768px) {
  .is-formResultPage .commonInner {
    width: 100%;
    max-width: 120rem;
  }
}

/* --- 親要素・背景 --- */
.is-formResultPage .formArea {
  padding: 0 0 40px;
  margin: 0 0 40px;
  /* background: #f8f5f1; */
}

/* --- オレンジ見出し帯（画像タイトル） --- */
.is-formResultPage .formArea-head {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 6.93vw 0 7.2vw;
  background: #f7553e;
  position: relative;
}
.is-formResultPage .formArea-head-title {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  background: none;
  border-radius: 0;
}
.is-formResultPage .formArea-head-title .is-text {
  display: block;
  width: 100%;
  height: 0;
  padding: 45.37% 0 0;
  margin: 0;
  background: url(../img/formArea/form_title_sp.png) no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}

/* --- 案内文 --- */
.is-formResultPage .formArea-main-intro {
  width: 100%;
  padding: 39px 0 0;
  margin: 0 0 30px;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.58;
}

/* --- 白カード --- */
.is-formResultPage .formArea-tabWrap {
  width: 100%;
  padding: 27px 20px 30px;
  margin: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}
.is-formResultPage .formArea-tabWrap::before {
  content: none;
}
.is-formResultPage .formArea-tabContents {
  width: 100%;
  margin: 0;
}

/* --- 注意書き（赤帯） --- */
.is-formResultPage .confirm-attention {
  width: 100%;
  margin-bottom: 27px;
}
.is-formResultPage .confirm-attention-title {
  width: 100%;
  padding: 6px;
  margin: 40px 0 0;
  background: #e00314;
  color: #fff;
  text-align: center;
  font-feature-settings: "palt";
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.is-formResultPage .confirm-attention-main {
  width: 100%;
  padding: 12px 10px 12px 15px;
  background: #fff;
}
.is-formResultPage .confirm-attention-main-text {
  width: 100%;
  padding-left: 1.4rem;
  text-indent: -1.4rem;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* --- 操作ボタン（画像） --- */
.is-formResultPage .confirm-btnArea {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 640px;
  padding: 0 8px;
  margin: 0 auto 14px;
}
.is-formResultPage .confirm-btnArea-item {
  width: calc(50% - 5px);
}
.is-formResultPage .confirm-btnArea-item input {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 28.229%;
  background: no-repeat center center / 100% auto;
  border: none;
  cursor: pointer;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
.is-formResultPage .confirm-btnArea-item.is-back input {
  background-image: url(../img/formArea/confirm_btn_back.png);
}
.is-formResultPage .confirm-btnArea-item.is-submit input {
  background-image: url(../img/formArea/confirm_btn_submit.png);
}
.is-formResultPage .confirm-btnArea.is-single {
  justify-content: center;
  max-width: 320px;
}
.is-formResultPage .confirm-btnArea.is-single .confirm-btnArea-item {
  width: 100%;
}

/* --- 送信注記・個人情報 --- */
.is-formResultPage .confirm-submitNote {
  width: 100%;
  margin: 0 0 22px;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.12;
}
.is-formResultPage .confirm-privacyArea {
  width: 100%;
}
.is-formResultPage .confirm-privacyArea-title,
.is-formResultPage .confirm-privacyArea-text {
  width: 100%;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* --- 完了ページ固有 --- */
.is-completeResult .formArea {
  padding-bottom: 100px;
  margin-bottom: 0;
}
.is-completeResult .formArea-main-intro {
  margin-bottom: 34px;
  font-weight: 500;
  font-size: 2.1rem;
}
.is-completeResult .formArea-tabWrap {
  padding-bottom: 30px;
  margin-bottom: 50px;
}
.is-completeResult .confirm-attention {
  margin-bottom: 0;
}
.is-formResultPage .complete-intro {
  width: 100%;
  margin: 0 0 20px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.is-formResultPage .complete-telArea {
  width: 100%;
  margin: 0 auto 25px;
}
.is-formResultPage .complete-telArea .is-inner {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 17.45%;
  background: url(../img/formArea/complete_btn_tel_sp.png) no-repeat center center / 100% auto;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}

/* ===== PC (min-width:768px) ===== */
@media print, screen and (min-width: 768px) {
  .is-formResultPage .formArea {
    padding-bottom: 100px;
    margin-bottom: 0;
  }
  .is-formResultPage .formArea-head {
    padding: 50px 0 49px;
  }
  .is-formResultPage .formArea-head-title .is-text {
    padding-top: 6.75%;
    background-image: url(../img/formArea/form_title_pc.png);
  }
  .is-formResultPage .formArea-main-intro {
    padding-top: 80px;
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
  .is-formResultPage .formArea-tabWrap {
    padding: 48px 10px 100px;
    margin-bottom: 60px;
  }
  .is-formResultPage .formArea-tabContents {
    max-width: 1040px;
    margin: 0 auto;
  }
  .is-formResultPage .confirm-attention {
    margin-bottom: 56px;
  }
  .is-formResultPage .confirm-attention-title {
    padding: 16px 30px;
    text-align: left;
    font-size: 2.4rem;
  }
  .is-formResultPage .confirm-attention-main {
    padding: 24px 25px 24px 33px;
  }
  .is-formResultPage .confirm-attention-main-text {
    padding-left: 1.8rem;
    text-indent: -1.8rem;
    font-size: 1.8rem;
    line-height: 1.55;
  }
  .is-formResultPage .confirm-btnArea {
    padding: 0;
    margin-bottom: 30px;
  }
  .is-formResultPage .confirm-btnArea-item {
    width: calc(50% - 18px);
  }
  .is-formResultPage .confirm-btnArea-item input:hover {
    opacity: .8;
  }
  .is-formResultPage .confirm-submitNote {
    margin-bottom: 36px;
    font-size: 1.6rem;
  }
  .is-formResultPage .confirm-privacyArea-title,
  .is-formResultPage .confirm-privacyArea-text {
    font-size: 1.8rem;
    line-height: 1.61;
  }
  .is-completeResult .formArea-main-intro {
    margin-bottom: 65px;
    font-size: 4.2rem;
  }
  .is-completeResult .formArea-tabWrap {
    padding-bottom: 60px;
    margin-bottom: 100px;
  }
  .is-formResultPage .complete-intro {
    margin-bottom: 35px;
    font-size: 1.8rem;
  }
  .is-formResultPage .complete-telArea {
    max-width: 653px;
    margin-bottom: 40px;
  }
  .is-formResultPage .complete-telArea .is-inner {
    background-image: url(../img/formArea/complete_btn_tel_pc.png);
  }
}

.confirm-inputText {
  width: 100%;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  .confirm-inputText {
    font-size: 1.8rem;
  }
}