@charset "UTF-8";
/*
 * Sass    : Dart sass
 * 命名規則 : RSCSSベース
 *   [接頭辞]
 *   .-****  : Variant
 *   ._****  : Helpers
 *   .c-**** : 汎用コンポーネント
 *   .l-**** : レイアウト
 *   .f-**** : フォーム系コンポーネント
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
/**************************************************/
/* helpers */
/**************************************************/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 1039px) {
  ._view-cw-high {
    display: none !important;
  }
}
@media (min-width: 1040px) {
  ._view-cw-low {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 479px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 480px) {
  ._view-sm-low {
    display: none !important;
  }
}
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._center {
  text-align: center !important;
}

._left {
  text-align: left !important;
}

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

._float-l {
  float: left !important;
}

._float-r {
  float: right !important;
}

._clear {
  clear: both !important;
}

._hidden {
  display: none !important;
}

._disp-ib {
  display: inline-block !important;
}

._margin0 {
  margin: 0 !important;
}

._padding0 {
  padding: 0 !important;
}

._border0 {
  border: none !important;
}

._fixed {
  position: fixed !important;
}

._absolute {
  position: absolute !important;
}

._static {
  position: static !important;
}

._xsmall {
  font-size: 75% !important;
}

._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._xlarge {
  font-size: 133% !important;
}

._nowrap {
  white-space: nowrap !important;
}

._nobg {
  background: none !important;
}

._full {
  width: 100% !important;
}

/**************************************************/
/* base */
/**************************************************/
:root {
  --aupay: #EB5505;
  --dbarai: #CC0033;
  --paypay: #FE0032;
  --yumeka: #C60078;
  --aeon: #473A94;
}

:root {
  font-size: min(16px, 1.5640273705vw);
}
@media (max-width: 767px) {
  :root {
    font-size: 4.2666666667vw;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}

body {
  min-width: 320px;
  padding: 0;
  color: #000;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}
body.-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

input,
textarea {
  font-size: 16px;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}

button,
input[type=button],
input[type=submit] {
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #DE0010;
  text-decoration: underline;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

a.-telink,
a.js-telink {
  cursor: default;
  opacity: 1 !important;
}

body._ios a:hover {
  opacity: 1;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* contents */
/**************************************************/
.l-page-container {
  position: relative;
  overflow: hidden;
}

.l-page-contents {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 40px;
}
.l-page-contents > *:first-child {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .l-page-contents {
    padding: 0 20px;
  }
}

/**************************************************/
/* structure 構造を定義 */
/**************************************************/
.l-header,
.l-footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  padding: 1rem;
}
.l-header__logo,
.l-footer__logo {
  display: block;
  max-width: 100%;
  width: 9.4375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo,
  .l-footer__logo {
    width: 6.25rem;
  }
}

.l-mainvisual {
  background: url(../../images/bg-mainvisual.png) no-repeat center center/cover;
  padding: 1.25rem 0;
}
.l-mainvisual__img {
  margin: 0 auto;
  max-width: 41.625rem;
  width: 100%;
}

/**************************************************/
/* components */
/**************************************************/
/**************************************************/
/* components - basic */
/**************************************************/
.c-link {
  color: inherit;
  text-decoration: none;
}

.c-text-a {
  line-height: 1.8;
  margin: 0.25rem 0 0 0;
}
@media (max-width: 767px) {
  .c-text-a {
    font-size: 0.875rem;
  }
}

.c-notes {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
  display: block;
  margin: 0.25rem 0 0 0;
  line-height: 1.8;
}
.c-notes::before {
  content: "※";
  color: #E71F10;
}
.c-notes.-black::before {
  color: #000;
}
.c-notes.-red {
  color: #E71F10;
}
@media (max-width: 767px) {
  .c-notes {
    font-size: 0.875rem;
  }
}

.c-star {
  color: #009673;
  font-weight: bold;
  padding-left: 1.3rem;
  line-height: 1.8;
  position: relative;
  margin: 0.375rem 0 0 0;
}
.c-star::before {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  left: 0;
  top: 0.4em;
  background: url(../img/icon-star.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .c-star {
    font-size: 0.875rem;
  }
}

.c-label {
  display: inline-block;
  font-weight: bold;
  color: white;
  text-align: center;
  width: 5.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.0625rem 0.0625rem 0.125rem;
  border-radius: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-label.-aupay {
  background-color: var(--aupay);
}
.c-label.-dbarai {
  background-color: var(--dbarai);
}
.c-label.-paypay {
  background-color: var(--paypay);
}
.c-label.-yumeka {
  background-color: var(--yumeka);
}
.c-label.-aeon {
  background-color: var(--aeon);
}
@media (max-width: 767px) {
  .c-label {
    font-size: 0.8125rem;
    width: 4.0625rem;
    padding: 0.1875rem 0 0.25rem;
  }
}

.c-numlist-a {
  margin: 0;
  padding: 0 0 0 1em;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-numlist-a {
    font-size: 0.875rem;
  }
}

.c-list-a {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-list-a > li {
  line-height: 2;
  padding-left: 1em;
  position: relative;
}
.c-list-a > li::before {
  position: absolute;
  content: "";
  top: 0.75em;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  border-radius: 6.25rem;
  background: #009673;
}
.-aupay .c-list-a > li::before {
  background-color: var(--aupay);
}
.-dbarai .c-list-a > li::before {
  background-color: var(--dbarai);
}
.-paypay .c-list-a > li::before {
  background-color: var(--paypay);
}
.-yumeka .c-list-a > li::before {
  background-color: var(--yumeka);
}
.-aeon .c-list-a > li::before {
  background-color: var(--aeon);
}
.c-list-a > li + li {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .c-list-a {
    font-size: 0.875rem;
  }
}

.c-list-b {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-list-b > li {
  line-height: 2;
  padding-left: 1em;
  position: relative;
}
.c-list-b > li::before {
  position: absolute;
  content: "";
  top: calc(1em - 0.0625rem);
  left: 0;
  width: 0.625rem;
  height: 0.125rem;
  border-radius: 0.125rem;
}
.-aupay .c-list-b > li::before {
  background-color: var(--aupay);
}
.-dbarai .c-list-b > li::before {
  background-color: var(--dbarai);
}
.-paypay .c-list-b > li::before {
  background-color: var(--paypay);
}
.-yumeka .c-list-b > li::before {
  background-color: var(--yumeka);
}
.-aeon .c-list-b > li::before {
  background-color: var(--aeon);
}
@media (max-width: 767px) {
  .c-list-b {
    font-size: 0.875rem;
  }
}

.c-indent3 {
  margin-top: 1em;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.c-indent3 > li {
  padding-left: 3em;
  text-indent: -3em;
}
.c-indent3 > li + li {
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .c-indent3 {
    font-size: 0.875rem;
  }
}

[data-trigger].-invisible {
  opacity: 0;
}
[data-trigger].-visible {
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-in;
  transition: opacity 0.8s ease-in;
}

[data-trigger=fadeIn].-invisible {
  opacity: 0;
}
[data-trigger=fadeIn].-invisible :where(.c-heading-d, .c-heading-e) > .txt {
  background-size: 0 30%;
}
[data-trigger=fadeIn].-visible {
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-in;
  transition: opacity 0.8s ease-in;
}

[data-trigger=fadeInUp].-invisible {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
[data-trigger=fadeInUp].-visible {
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-trigger=fadeInLeft].-invisible {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
[data-trigger=fadeInLeft].-visible {
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.box[data-trigger=custom].-invisible {
  opacity: 1;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.box[data-trigger=custom].-visible {
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* pages */
/**************************************************/
.l-campaign {
  background: url(../../images/bg-main.png) repeat-y top center/100% auto;
  padding: 7.1875rem 0 4.5rem;
}
@media (max-width: 767px) {
  .l-campaign {
    padding: 5rem 0 2.5rem;
  }
}
.l-campaign .campaignBlock {
  background: white;
  border: solid 0.125rem #009673;
  border-radius: 0.5rem;
  padding: 3.375rem 2.5rem 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .l-campaign .campaignBlock {
    padding: 2.5rem 1.25rem 1.25rem;
  }
}
.l-campaign .campaignBlock:not(:first-child) {
  margin-top: 6.25rem;
}
@media (max-width: 767px) {
  .l-campaign .campaignBlock:not(:first-child) {
    margin-top: 4.375rem;
  }
}
.l-campaign .campaignBlock__title {
  max-width: 21.875rem;
  width: 90%;
  margin: 0;
  left: -0.125rem;
  top: -2.5rem;
  position: absolute;
  z-index: 2;
}
.l-campaign .campaignBlock__text {
  font-weight: bold;
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .l-campaign .campaignBlock__text {
    font-size: 1.125rem;
  }
}
.l-campaign .campaignBlock__text2 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .l-campaign .campaignBlock__text2 {
    font-size: 1rem;
  }
}
.l-campaign .detailTable table {
  border-collapse: separate;
  border-spacing: 0.125rem 0;
}
.l-campaign .detailTable table th, .l-campaign .detailTable table td {
  border-bottom: dotted 0.125rem #009673;
  vertical-align: top;
  text-align: left;
  padding: 1.25rem 0;
}
.l-campaign .detailTable table th > *:first-child, .l-campaign .detailTable table td > *:first-child {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .l-campaign .detailTable table th, .l-campaign .detailTable table td {
    display: block;
    width: 100% !important;
  }
}
.l-campaign .detailTable table th {
  line-height: 1.7;
}
@media (max-width: 767px) {
  .l-campaign .detailTable table th {
    padding-bottom: 0;
    line-height: 1.5;
    border-bottom: none;
    font-size: 0.9375rem;
  }
}
@media (max-width: 767px) {
  .l-campaign .detailTable table td {
    padding-top: 0.625rem;
  }
}
.l-campaign .detailTable table tr:last-child th, .l-campaign .detailTable table tr:last-child td {
  border-bottom: none !important;
}
.l-campaign .detaillist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-campaign .detaillist__item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.125rem 0.5rem;
  margin-top: 1rem;
}
.l-campaign .campaign-naBox {
  background: white;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 2rem rgba(240, 210, 192, 0.64);
          box-shadow: 0 0 2rem rgba(240, 210, 192, 0.64);
  padding: 2.5rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .l-campaign .campaign-naBox {
    margin-top: 2.5rem;
    padding: 1.5rem 1.25rem;
  }
}
.l-campaign .campaign-naBox__title {
  color: #009673;
  font-weight: bold;
  font-size: 1.1875rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  border-bottom: solid 1px #009673;
  margin: 0;
}
.l-campaign .campaign-naBox__title::before {
  width: 1.5rem;
  height: 2rem;
  position: absolute;
  content: "";
  left: 0;
  top: 0.1em;
  background: url(../img/icon-heading-a.png) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .l-campaign .campaign-naBox__title {
    font-size: 1rem;
    padding-bottom: 0.75rem;
    padding-left: 1.25rem;
  }
  .l-campaign .campaign-naBox__title::before {
    width: 1em;
    top: -0.1em;
  }
}
.l-campaign .grant-text {
  margin: 4rem 0 0 0;
  text-align: center;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .l-campaign .grant-text {
    margin-top: 2.5rem;
    padding: 0;
  }
}
.l-campaign .grant-text::before, .l-campaign .grant-text::after {
  position: absolute;
  content: "";
  background: url(../../images/grant-deco.png) no-repeat top center/contain;
  width: 18.125rem;
  height: 17.8125rem;
  top: -5.5rem;
  z-index: -1;
}
@media (max-width: 1279px) {
  .l-campaign .grant-text::before, .l-campaign .grant-text::after {
    width: 12.5rem;
    top: -1.875rem;
  }
}
@media (max-width: 767px) {
  .l-campaign .grant-text::before, .l-campaign .grant-text::after {
    width: 5rem;
    top: 1.25rem;
    height: 6.25rem;
  }
}
.l-campaign .grant-text::before {
  left: -15rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (max-width: 1279px) {
  .l-campaign .grant-text::before {
    left: -4.375rem;
  }
}
@media (max-width: 767px) {
  .l-campaign .grant-text::before {
    left: -1.875rem;
  }
}
.l-campaign .grant-text::after {
  right: -15rem;
}
@media (max-width: 1279px) {
  .l-campaign .grant-text::after {
    right: -4.375rem;
  }
}
@media (max-width: 767px) {
  .l-campaign .grant-text::after {
    right: -1.875rem;
  }
}
.l-campaign .payment-notesBox {
  margin-top: 6.5625rem;
  position: relative;
  padding-top: 1.375rem;
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .l-campaign .payment-notesBox {
    margin-top: 3.125rem;
    padding-top: 0.75rem;
  }
}
.l-campaign .payment-notesBox::before {
  width: calc(100% - 1.625rem);
  height: 0.25rem;
  top: 0.625rem;
  left: 0.8125rem;
  position: absolute;
  content: "";
  background-position: center top;
  background-image: radial-gradient(circle, #ffffff 0.125rem, transparent 0.125rem);
  background-repeat: repeat-x;
  background-size: 0.625rem 0.25rem;
}
@media (max-width: 767px) {
  .l-campaign .payment-notesBox::before {
    background-image: radial-gradient(circle, #ffffff 0.0625rem, transparent 0.0625rem);
    background-size: 0.375rem 0.125rem;
    top: 0.375rem;
    width: calc(100% - 1rem);
    left: 0.5rem;
  }
}
.l-campaign .payment-notesBox__title {
  max-width: 34.0625rem;
  width: 90%;
  position: absolute;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -2.625rem;
}
@media (max-width: 767px) {
  .l-campaign .payment-notesBox__title {
    top: -1.375rem;
  }
}
.l-campaign .payment-notesBox__body {
  background: white;
  border-radius: 0.5rem;
  border-width: 0.125rem;
  border-style: solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.625rem 2.5rem 2.5rem;
}
@media (max-width: 767px) {
  .l-campaign .payment-notesBox__body {
    padding: 1.5rem 1.25rem 1.25rem;
  }
}
.l-campaign .payment-notesBox__attention {
  margin: 1.25rem 0 0 0;
  padding: 1.25rem 0 0 2.5rem;
  position: relative;
  border-top: dotted 0.125rem black;
}
.l-campaign .payment-notesBox__attention::before {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 1.75rem;
  height: 1.5625rem;
  content: "";
  background: url(../img/icon-notes.svg) no-repeat center center/contain;
}
.l-campaign .payment-notesBox__attention-text {
  margin: 0;
  line-height: 2;
}
@media (max-width: 767px) {
  .l-campaign .payment-notesBox__attention {
    padding-left: 1.875rem;
  }
  .l-campaign .payment-notesBox__attention::before {
    width: 1.5rem;
  }
  .l-campaign .payment-notesBox__attention-text {
    font-size: 0.875rem;
  }
}
.l-campaign .payment-notesBox__link {
  margin-top: 1.875rem;
  text-align: center;
}
.l-campaign .payment-notesBox__link > a {
  text-decoration: none;
  display: inline;
  border-bottom: dotted 0.1875rem black;
  font-size: 1.125rem;
  font-weight: bold;
  color: inherit;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .l-campaign .payment-notesBox__link {
    margin-top: 1.5rem;
  }
  .l-campaign .payment-notesBox__link > a {
    font-size: 1rem;
  }
}
.l-campaign .payment-notesBox.-aupay {
  background: var(--aupay);
}
.l-campaign .payment-notesBox.-aupay .payment-notesBox__body {
  border-color: var(--aupay);
}
.l-campaign .payment-notesBox.-aupay .payment-notesBox__link > a {
  border-color: var(--aupay);
  color: var(--aupay);
}
.l-campaign .payment-notesBox.-dbarai {
  background: var(--dbarai);
}
.l-campaign .payment-notesBox.-dbarai .payment-notesBox__body {
  border-color: var(--dbarai);
}
.l-campaign .payment-notesBox.-dbarai .payment-notesBox__link > a {
  border-color: var(--dbarai);
  color: var(--dbarai);
}
.l-campaign .payment-notesBox.-paypay {
  background: var(--paypay);
}
.l-campaign .payment-notesBox.-paypay .payment-notesBox__body {
  border-color: var(--paypay);
}
.l-campaign .payment-notesBox.-paypay .payment-notesBox__link > a {
  border-color: var(--paypay);
  color: var(--paypay);
}
.l-campaign .payment-notesBox.-yumeka {
  background: var(--yumeka);
}
.l-campaign .payment-notesBox.-yumeka .payment-notesBox__body {
  border-color: var(--yumeka);
}
.l-campaign .payment-notesBox.-yumeka .payment-notesBox__link > a {
  border-color: var(--yumeka);
  color: var(--yumeka);
}
.l-campaign .payment-notesBox.-aeon {
  background: var(--aeon);
}
.l-campaign .payment-notesBox.-aeon .payment-notesBox__body {
  border-color: var(--aeon);
}
.l-campaign .payment-notesBox.-aeon .payment-notesBox__link > a {
  border-color: var(--aeon);
  color: var(--aeon);
}

.l-callcenter {
  background: url(../../images/bg-callcenter-right.png) no-repeat top right/11.5625rem auto, url(../../images/bg-callcenter-left.png) no-repeat top left/10.125rem auto, url(../../images/bg-callcenter-top.png) repeat-x center top/85.375rem auto, url(../../images/bg-callcenter-bottom.png) repeat-x center bottom/85.375rem auto, url(../../images/bg-callcenter.png) repeat-y center center/100% auto;
  padding: 6.25rem 0;
}
@media (max-width: 767px) {
  .l-callcenter {
    background: url(../../images/bg-callcenter-right.png) repeat-y top right/3.75rem auto, url(../../images/bg-callcenter-left.png) repeat-y top left/3.125rem auto, url(../../images/bg-callcenter-top.png) repeat-x center top/100% auto, url(../../images/bg-callcenter-bottom.png) repeat-x center bottom/100% auto, url(../../images/bg-callcenter.png) repeat-y center center/100% auto;
    padding: 2.5rem 0;
  }
}
.l-callcenter.-last {
  padding: 9.1875rem 0;
}
@media (max-width: 767px) {
  .l-callcenter.-last {
    padding: 3.125rem 0;
  }
}

.l-callcenter-box .callcenter__title {
  margin: 0 auto;
  max-width: 58.375rem;
}
.l-callcenter-box .callcenter__title img {
  display: block;
}
.l-callcenter-box .callcenter__num {
  display: block;
  margin: 0 auto;
  max-width: 40.375rem;
  width: 80%;
}
.l-callcenter-box .callcenter__time {
  margin: -0.1875rem 0 0 0;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .l-callcenter-box .callcenter__time {
    font-size: 0.8125rem;
  }
}
.l-callcenter-box .payinfo-box {
  background: white;
  margin-top: 1rem;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
  padding: 2.5rem 5rem;
}
@media (max-width: 767px) {
  .l-callcenter-box .payinfo-box {
    padding: 1.5rem 0.9375rem;
  }
}
.l-callcenter-box .payinfo-box__title {
  text-align: center;
  margin: 0;
  font-weight: bold;
  font-size: 1.4375rem;
}
.l-callcenter-box .payinfo-box__title > span {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FEE05D));
  background: linear-gradient(transparent 70%, #FEE05D 70%);
}
@media (max-width: 767px) {
  .l-callcenter-box .payinfo-box__title {
    font-size: 1.125rem;
  }
}
.l-callcenter-box .paylist {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist {
    margin-top: 1.5rem;
  }
}
.l-callcenter-box .paylist__item {
  padding: 0.9375rem 0;
  gap: 0 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist__item {
    gap: 0.125rem;
  }
}
.l-callcenter-box .paylist__item:last-child {
  padding-bottom: 0 !important;
}
.l-callcenter-box .paylist__item:not(:last-child) {
  border-bottom: dotted 0.125rem black;
}
.l-callcenter-box .paylist__logo {
  width: 7.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist__logo {
    width: 5.375rem;
  }
}
.l-callcenter-box .paylist__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-callcenter-box .paylist__content > *:first-child {
  margin-top: 0 !important;
}
.l-callcenter-box .paylist__title {
  font-weight: 500;
  font-size: 0.9375rem;
  margin: 0;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist__title {
    font-size: 0.875rem;
  }
}
.l-callcenter-box .paylist__title2 {
  color: #009673;
  font-weight: bold;
  font-size: 0.8125rem;
  padding-left: 0.5rem;
  position: relative;
  margin: 0.625rem 0 0.125rem 0;
}
.l-callcenter-box .paylist__title2::before {
  position: absolute;
  left: 0;
  top: calc(0.75em - 0.1875rem);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 6.25rem;
  background: #009673;
  content: "";
}
.l-callcenter-box .paylist__text {
  margin: 0;
  font-size: 0.9375rem;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist__text {
    font-size: 0.875rem;
  }
}
.l-callcenter-box .paylist__tel {
  font-weight: bold;
  font-size: 1.4375rem;
  display: inline-block;
  text-align: center;
  color: inherit;
  text-decoration: none;
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist__tel {
    font-size: 1.25rem;
  }
}
.l-callcenter-box .paylist__notes {
  display: inline-block;
  margin: 0;
  font-size: 0.75rem;
}
.l-callcenter-box .paylist__time {
  display: inline-block;
  font-weight: bold;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist__time {
    font-size: 0.8125rem;
  }
}
.l-callcenter-box .paylist__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
  gap: 0.25rem 1rem;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-callcenter-box .paylist__qr {
  display: block;
  max-width: 6.625rem;
}
@media (max-width: 767px) {
  .l-callcenter-box .paylist__qr {
    max-width: 4.375rem;
  }
}

.l-consultation {
  padding: 6.25rem 0;
}
@media (max-width: 767px) {
  .l-consultation {
    padding: 2.5rem 0;
  }
}
.l-consultation .consultationBox {
  background: url(../../images/bg-consultation.png) repeat-y top center/100% auto, #FFFBE0;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0.1875rem 1rem rgba(141, 106, 41, 0.4);
          box-shadow: 0 0.1875rem 1rem rgba(141, 106, 41, 0.4);
}
.l-consultation .consultationBox__title {
  background: #009673;
  border-radius: 1.25rem 1.25rem 0 0;
  margin: 0;
  padding: 1.75rem 1.875rem;
  text-align: center;
}
.l-consultation .consultationBox__title img {
  display: block;
}
@media (max-width: 767px) {
  .l-consultation .consultationBox__title {
    padding: 1rem 0.5rem;
  }
}
.l-consultation .consultationBox__body {
  padding: 2.25rem 5rem 5rem;
}
@media (max-width: 767px) {
  .l-consultation .consultationBox__body {
    padding: 1.5rem 1.25rem 1.875rem;
  }
}
.l-consultation .consultationBox__body2 {
  background: #009673;
  padding: 5rem;
  border-radius: 0 0 1.25rem 1.25rem;
}
@media (max-width: 767px) {
  .l-consultation .consultationBox__body2 {
    padding: 1.875rem 1.25rem;
  }
}
.l-consultation .consultationBox__heading {
  margin: 0;
}
.l-consultation .consultationBox__lead {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 0.25rem 0 0 0;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .l-consultation .consultationBox__lead {
    font-size: 0.875rem;
    text-align: left;
  }
}
.l-consultation .schedule {
  margin: 1rem 0 0 0;
}
.l-consultation .schedule__img {
  display: block;
}
.l-consultation .schedule__lead {
  margin: 0.375rem 0 0 0;
  font-weight: 500;
}
@media (max-width: 767px) {
  .l-consultation .schedule__lead {
    font-size: 0.8125rem;
  }
}
.l-consultation .schedule__lead2 {
  color: #D60100;
  margin: 0.25rem 0 0 0;
  font-weight: 500;
}
@media (max-width: 767px) {
  .l-consultation .schedule__lead2 {
    font-size: 0.8125rem;
  }
}
.l-consultation .kangei {
  border: solid 0.375rem #EE599B;
  border-radius: 1.25rem;
  background: white;
  margin-top: 1.625rem;
  padding: 2.625rem 3.75rem;
}
.l-consultation .kangei__img {
  margin: 0;
}
@media (max-width: 767px) {
  .l-consultation .kangei {
    padding: 1.5rem 0.625rem;
    border-width: 0.1875rem;
  }
}
.l-consultation .kigen {
  margin-top: 2.5rem;
  border: solid 0.25rem #009673;
  border-radius: 1.25rem;
  background: white;
}
@media (max-width: 767px) {
  .l-consultation .kigen {
    margin-top: 1.5rem;
    border-width: 0.125rem;
  }
}
.l-consultation .kigen__title {
  margin: 0;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .l-consultation .kigen__title {
    border-radius: 1.125rem 1.125rem 0 0;
  }
}
.l-consultation .kigen__list {
  margin: 0;
  padding: 0 3.75rem 3.75rem;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
.l-consultation .kigen__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .l-consultation .kigen__list {
    padding: 0.625rem 1.25rem 1.25rem;
  }
  .l-consultation .kigen__list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-consultation .goyoi {
  margin-top: 2.5rem;
  border: solid 0.375rem #22AC38;
  border-radius: 1.25rem;
  overflow: hidden;
  background: white;
}
@media (max-width: 767px) {
  .l-consultation .goyoi {
    margin-top: 1.5rem;
    border-width: 0.1875rem;
  }
}
.l-consultation .goyoi__heading {
  background: #22AC38;
  padding: 0.625rem 0 1.375rem;
  text-align: center;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__heading {
    padding: 0.9375rem 0.625rem;
  }
}
.l-consultation .goyoi__heading-title {
  color: white;
  margin: 0;
  font-size: 2.75rem;
  letter-spacing: 0.024em;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__heading-title {
    font-size: 1.5rem;
  }
}
.l-consultation .goyoi__heading-lead {
  background: white;
  color: #22AC38;
  font-size: 1.375rem;
  padding: 0.125rem 1.875rem;
  margin: 0;
  border-radius: 0.125rem;
}
.l-consultation .goyoi__heading-lead em {
  font-size: 2.125rem;
  letter-spacing: 0.024em;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__heading-lead {
    font-size: 0.9375rem;
    padding: 0.125rem 0.625rem;
    margin-top: 0.25rem;
  }
  .l-consultation .goyoi__heading-lead em {
    font-size: 1.25rem;
  }
}
.l-consultation .goyoi__heading-lead2 {
  color: white;
  font-size: 1.5rem;
  margin: 0.375rem 0 0 0;
}
.l-consultation .goyoi__heading-lead2 small {
  font-size: 1.25rem;
  display: block;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__heading-lead2 {
    font-size: 1rem;
  }
  .l-consultation .goyoi__heading-lead2 small {
    font-size: 0.875rem;
  }
}
.l-consultation .goyoi__body {
  padding: 2rem 4rem;
}
.l-consultation .goyoi__body > *:first-child {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__body {
    padding: 1.5rem 1.25rem;
  }
}
.l-consultation .goyoi__heading2 {
  background: #6FBA2C;
  border-radius: 6.25rem;
  color: white;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  padding: 0.75rem;
}
.l-consultation .goyoi__heading2.-common {
  background: #22AC38;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__heading2 {
    padding: 0.375rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    margin-top: 1.875rem;
  }
}
.l-consultation .goyoi__text {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0.75rem 0 0 0;
  line-height: 1.2;
}
.l-consultation .goyoi__text small {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__text {
    font-size: 1rem;
  }
  .l-consultation .goyoi__text small {
    font-size: 0.8125rem;
  }
}
.l-consultation .goyoi__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 0 1.25rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
.l-consultation .goyoi__wrap-item {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 40%;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__wrap-item {
    margin: 0;
    width: 100%;
  }
}
.l-consultation .goyoi__plus {
  margin-top: 1.5rem;
  width: 1.5rem;
  margin-inline: auto;
  display: block;
}
.l-consultation .goyoi__plus img {
  width: 100%;
}
.l-consultation .goyoi__plus + * {
  margin-top: 1.5rem;
}
.l-consultation .goyoi__footer {
  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;
  border-top: solid 0.25rem #22AC38;
  margin-top: 1.25rem;
  padding-top: 1rem;
  gap: 0.5rem;
}
.l-consultation .goyoi__footer::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../../images/icon-plus.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.l-consultation .goyoi__label {
  background: #6FBA2C;
  font-weight: bold;
  color: white;
  display: inline-block;
  border-radius: 6.25rem;
  font-size: 1.125rem;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 0.375rem 1.5rem;
}
@media (max-width: 767px) {
  .l-consultation .goyoi__label {
    font-size: 1rem;
    padding: 0.25rem 1rem;
  }
}
.l-consultation .step {
  background: white;
  border-radius: 0.625rem;
  padding: 0 4.375rem 2rem;
}
@media (max-width: 767px) {
  .l-consultation .step {
    padding: 0 1.25rem 1.5rem;
  }
}
.l-consultation .step__title {
  background: #FFED66;
  border-radius: 0 0 0.625rem 0.625rem;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #009573;
  margin: 0;
  text-align: center;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.125rem;
}
.l-consultation .step__title > img {
  display: block;
  width: 6.9375rem;
}
@media (max-width: 767px) {
  .l-consultation .step__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.125rem;
    padding: 0.625rem 0.5rem;
    line-height: 1.3;
  }
  .l-consultation .step__title > img {
    width: 6.25rem;
  }
}
.l-consultation .step__list {
  list-style: none;
  margin: 2.875rem 0 0 0;
  padding: 0;
}
@media (max-width: 767px) {
  .l-consultation .step__list {
    margin-top: 1.5rem;
  }
}
.l-consultation .step__item:not(:first-child) {
  padding-top: 4.375rem;
  position: relative;
}
.l-consultation .step__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.75rem;
  height: 1.5rem;
  background: #A5D4AD;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (max-width: 767px) {
  .l-consultation .step__item:not(:first-child) {
    padding-top: 3.75rem;
  }
}
.l-consultation .step__numHeading {
  background: #00A95F;
  color: white;
  font-weight: bold;
  text-align: center;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 0.125rem 1.375rem;
  font-size: 1.125rem;
  margin: 0;
  margin-left: 1.375rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.l-consultation .step__numHeading > span {
  display: inline-block;
  width: 2.75rem;
  position: absolute;
  bottom: 0;
  left: -1.375rem;
}
@media (max-width: 767px) {
  .l-consultation .step__numHeading {
    font-size: 1rem;
    padding: 0.125rem 0.5rem;
    margin-left: 1rem;
  }
  .l-consultation .step__numHeading > span {
    width: 2rem;
    left: -1rem;
  }
}
.l-consultation .step__text {
  font-weight: bold;
  text-align: center;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  margin: 0.625rem 0 0 0;
}
@media (max-width: 767px) {
  .l-consultation .step__text {
    font-size: 0.875rem;
  }
}
.l-consultation .step__qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 1.25rem 0 0 0;
  padding: 0 0 0.3125rem;
}
.l-consultation .step__qr > li {
  padding: 0 0.9375rem;
}
@media (max-width: 767px) {
  .l-consultation .step__qr > li {
    padding: 0 0.25rem;
  }
}
.l-consultation .step__qr > li:not(:last-child) {
  border-right: solid 0.125rem #BEDFC2;
}
.l-consultation .step__qr > li > a {
  max-width: 4.625rem;
  width: 100%;
  display: block;
}
.l-consultation .step__img {
  text-align: center;
  margin: 1.25rem auto 0;
}