@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap");
/*文字シャギーを解消*/
h4, h5, h6, p, dl, ol, select, label, input, button, span, table, .no-shaggy {
  transform: rotate(0.03deg);
}

/* BREAKPOINT
-------------------------------------------------- */
/* COLOR
-------------------------------------------------- */
/* LINE-HEIGHT
-------------------------------------------------- */
.c-line-height-normal {
  line-height: 1.2;
}

/* 全体
-------------------------------------------------- */
body {
  color: #5b5b5b;
  font-size: 16px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.2;
}
@media (max-width: 768px) {
  body p, body label {
    line-height: 1.2;
  }
}

.b-border-5 {
  border-width: 5px !important;
}

.b-border-bg-base {
  border-color: #f2edd9 !important;
}

.apply-lp-bg-base {
  background: #f2edd9;
}

.apply-lp-bg-point {
  background: #00b1a1;
}

.apply-lp-bg-lightgrey {
  background: #eee;
}

.display-7 {
  font-size: 2rem;
}

.apply-lp-h1 {
  font-size: 25px;
}
@media (max-width: 768px) {
  .apply-lp-h1 {
    font-size: 18px;
  }
}

.apply-lp-h3 {
  font-size: 22px;
}
@media (max-width: 768px) {
  .apply-lp-h3 {
    font-size: 18px;
  }
}

.c-font-s-20 {
  font-size: 1.25rem;
}

.c-font-s-18 {
  font-size: 1.125rem;
}

/*Step(入力画面ステップ数) */
.apply-lp-step {
  list-style-type: none;
  display: table;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  line-height: 1.2;
}
.apply-lp-step li {
  display: table-cell;
  position: relative;
  background: #eee;
  color: #5b5b5b;
  text-align: center;
  padding: 1em 0.5em 1em 2em;
}
.apply-lp-step li:last-child {
  padding-right: 1em;
}
.apply-lp-step li:last-child:before, .apply-lp-step li:last-child:after {
  display: none;
}
.apply-lp-step li:before, .apply-lp-step li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.apply-lp-step li:before {
  top: -15px;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.apply-lp-step li:after {
  top: -15px;
  right: -0.8em;
  border-style: solid;
  border-color: transparent transparent transparent #eee;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.apply-lp-step li.apply-lp-step-current {
  background: #00b1a1;
  color: #FFF;
}
.apply-lp-step li.apply-lp-step-current:after {
  border-color: transparent transparent transparent #00b1a1;
}
@media (max-width: 768px) {
  .apply-lp-step li {
    padding: 2% 0;
    font-size: 14px;
  }
}

.apply-lp-question dt {
  background-color: #f2edd9;
  padding: 8px;
  font-size: 17px;
}
.apply-lp-question dd {
  padding: 14px;
}

/* ==========================================================================
 // main.scssからデータ
========================================================================== */
/* 緑ボタン　重要なボタンに使う(主にカート・登録次　等) ＿＿＿＿＿＿＿＿＿＿＿*/
/* 通常時 */
.c-button-important {
  color: #fff;
  background-color: #00b1a1;
  border-color: #00b1a1;
}
.c-button-important:hover {
  color: #fff;
  background-color: #00655b;
  border-color: #00655b;
}

/*disabled*/
.c-button-important.disabled,
.c-button-important:disabled {
  color: #fff;
  background-color: #9fa4aa;
  border-color: #9fa4aa;
}
.c-button-important.disabled:hover,
.c-button-important:disabled:hover {
  color: #fff;
  background-color: #9fa4aa !important;
  border-color: #9fa4aa !important;
}

/* focusされた時の枠線の色 */
.c-button-important:focus, .c-button-important.focus,
.c-button-important:not(:disabled):not(.disabled):active:focus, .c-button-important:not(:disabled):not(.disabled).active:focus,
.show > .c-button-important.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 224, 216, 0.5);
}

.c-button-important .c-button-important:not(:disabled):not(.disabled):active,
.c-button-important:not(:disabled):not(.disabled).active,
.show > .c-button-important.dropdown-toggle {
  color: #fff;
  background-color: #004b44;
  border-color: #004b44;
}

/* BUTTON　ARROW
-------------------------------------------------- */
/* 矢印　白 → hover:白 ＿＿＿＿＿＿＿＿＿＿＿*/
.c-button-arrow--white {
  color: #fff;
  position: relative;
  transition: 0.5s;
}
.c-button-arrow--white::after {
  transition: 0.3s;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 13px;
  margin: auto;
  transform: rotate(45deg);
}
.c-button-arrow--white:hover::after {
  right: 8px;
}

/* 矢印　グレー → hover:白 ＿＿＿＿＿＿＿＿＿＿＿*/
.c-button-arrow--grey--white {
  color: #5b5b5b !important;
  position: relative;
  transition: 0.5s;
}
.c-button-arrow--grey--white::after {
  transition: 0.3s;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #5b5b5b !important;
  border-right: 2px solid #5b5b5b !important;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 13px;
  margin: auto;
  transform: rotate(45deg);
}
.c-button-arrow--grey--white:hover::after {
  right: 8px;
  color: #FFF !important;
  border-top: 2px solid #FFF !important;
  border-right: 2px solid #FFF !important;
}

/*ガイド等 等間隔リンク＿＿＿＿＿＿＿＿＿＿＿*/
.l-footer-local-navigation {
  margin: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.l-footer-local-navigation ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.l-footer-local-navigation li {
  list-style-type: none;
  color: gray;
  flex-grow: 1;
  text-align: center;
  font-size: 0.9rem;
}
.l-footer-local-navigation li + li {
  border-left: 1px solid #f2edd9;
}
@media (max-width: 992px) {
  .l-footer-local-navigation ul {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .l-footer-local-navigation li {
    text-align: left;
    flex-grow: 0;
    width: 50%;
  }
  .l-footer-local-navigation li a {
    display: block;
    padding: 0.5rem;
  }
  .l-footer-local-navigation li a:hover {
    background-color: #f2edd9;
  }
  .l-footer-local-navigation li + li {
    border: 0;
  }
}

/*リンク　normal:pickup(下線なし)　hover：暗いpickup(下線あり)　※アニメーション */
.b-link-pickup--hover {
  color: #c38453;
  position: relative;
  display: inline-block;
}
.b-link-pickup--hover:hover {
  color: #955f34;
  text-decoration: none;
}
.b-link-pickup--hover::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #955f34;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.b-link-pickup--hover:hover::after {
  bottom: -3px;
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------
pagetop
-------------------------------------------------*/
.pagetop {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(128, 128, 128, 0.6);
  color: #fff;
  transition: 0.3s;
  opacity: 0;
  z-index: 20;
}