.breadcrum {
  background-color: #F8F7F7;
  padding-top: 12rem;
}
.breadcrum ol {
  display: flex;
  margin-left: 4em;
  padding-bottom: 1.4rem;
}
.breadcrum ol li,
.breadcrum ol li a {
  font-size: clamp(.6rem, 2.56vw, 1.2rem);
  margin-right: 10px;
  color: #9B9B9B;
  display: flex;
  align-items: center;
}
.breadcrum ol li a {
  color: #0081CC;
  padding-bottom: 1px;
  background-image: linear-gradient(#0081CC, #0081CC);
  background-position: bottom right;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
.breadcrum ol li a:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}
.breadcrum ol li:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/src/img/common/breadcrum-arrow.svg);
  background-repeat: no-repeat;
}

.page-title  {
  position: relative;
  padding-top: 6em;
  padding-bottom: 4em;
  margin-bottom: 6em;
  z-index: -1;
  overflow: hidden;
}
.page-title h2 {
  position: relative;
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0;
  z-index: 2;
}
.page-title h2 span {
  letter-spacing: 0.02em;
}
.page-title-mask {
  position: absolute;
  mask-image: url(/src/img/common/head-image.svg);
  mask-repeat: no-repeat;
  top: -4.17vw;
  right: -3.47vw;
  width: 419px;
  height: 220px;
}
.page-title-mask img {
  width: 419px;
  height: 220px;
}


/* コンテンツベース */
.content-base {
  width: min(90.7vw,980px);
  margin-left: auto;
  margin-right: auto;
}
.conetent-text p {
  font-size: clamp(14px,3.3vw,1.4rem);
  line-height: 1.8;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
}
.column-wrap {
  margin-bottom: 2em;
}
.page-head-wrap {
  position: relative;
  border-bottom: 2px solid #E7E7E7;
  margin-bottom: 1.25vw;
  padding-bottom: 1.125vw;
}
.page-head-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 16%;
  height: 2px;
  background-color: #0081CC;
}
.page-head-wrap h2 {
  font-size: clamp(1.15rem,4.19vw,2rem);
  font-weight: 400;
  line-height: 1.2;
}

/* テーブル基本 */
table.table-base {
  border-top: 1px solid #E8E8E8;
}
table.table-base th {
  background-color: #F7F7F7;
  border-bottom: 1px solid #fff;
  padding: 1.429em 1.286em;
  text-align: left;
}
table.table-base td {
  border-bottom: 1px solid #E8E8E8;
  padding-left: 1.714em;
  padding-top: 1.429em;
  padding-bottom: 1.429em;
}

/* ボタン ブルー背景 */
.btn__blue {
  background-color: #0081CC;
  color: #fff;
  transition: all .5s ease;
}
.btn__blue:hover {
  transition: all .5s ease;
  color: #0081CC;
  background-color: #E5F7FF;
}
.btn__blue::before {
  background-image: url(/src/img/common/arrow_right--wh.svg);
}
.btn__blue:hover::before {
  transition: all .5s ease;
  background-image: url(/src/img/common/arrow_right--blue.svg);
}


/* フォーム設定 */
.form-frame {
  background-color: #F7F7F7;
  border-radius: 40px;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5em;
  padding: 2.8em 4em;
}
.form-frame h2 {
  text-align: center;
  color: #0081CC;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 1.667em;
}

.form-frame h2 span:after {
  content: "";
  display: block;
  border-bottom: 2px solid #0081CC;
  padding-bottom: 0.583em;
  width: clamp(50px, 11.63vw, 100px);
  margin-left: auto;
  margin-right: auto;
}

.form-step {
  margin-bottom: 2.875em;
}
.form-step img {
  width: auto;
  height: 26px;
  margin: 12px auto 8px;
  filter: invert(79%) sepia(4%) saturate(10%) hue-rotate(315deg) brightness(82%) contrast(88%);
}
.form-step ol {
  display: flex;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.form-step ol li {
  width: calc(100% / 4);
  text-align: center;
  font-size: clamp(.7rem,2.79vw,1.4rem);
  font-weight: 700;
  color: #A2A2A2;
}
.form-step ol li.current {
  position: relative;
  color: #0081CC;
  z-index: 1;
}
.form-step ol li.current-next {
  position: relative;
  color: #80C0E5;
  z-index: 0;
  margin-left: -11px;
  width: 28%;
}
.form-step ol li.current img {
  filter: invert(34%) sepia(95%) saturate(921%) hue-rotate(172deg) brightness(94%) contrast(105%);
}
.form-step ol li.current-next img {
  filter: invert(63%) sepia(50%) saturate(290%) hue-rotate(158deg) brightness(103%) contrast(97%);
}
.form-step ol:first-child {
  color: #A2A2A2;
  height: 32px;
  align-items: center;
  border-radius: 99px;
  background-color: #fff;
}
.form-step .step-title {
  font-size: clamp(.7rem, 2.79vw, 1.6rem);
  font-weight: bold;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  letter-spacing: 0.03em;
}
.form-step ol:first-child li:first-child .step-title {
  border-radius: 99px 0 0 99px;
}
.form-step ol:first-child li:last-child .step-title {
  border-radius: 0 99px 99px 0;
}
.form-step li.current .step-title {
  background-color: #0081CC;
  color: #fff;
  height: 32px;
  max-width: 140px;
  text-align: center;
  border-radius: 99px !important;
}
.form-step li.current-next .step-title {
  background-color: #80C0E5;
  border-radius: 0 99px 99px 0;
  color: #fff;
}
.form-confirm .form-step ol:first-child {
  background-color: #fff;
}
.form-label {
  font-weight: 700;
  display: flex;
  align-items: center;
}
.form-wrapper dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125em;
}
.form-wrapper dl.form-radio-check {
  margin-top: 2.25em;
  margin-bottom: 2.25em;
}
.form-wrapper dl dd {
  width: 100%;
  max-width: 640px;
}
input.text-input {
  font-size: clamp(14px,3.26vw,1.4rem);
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  padding: 1em 1.2em;
  border: 1px solid #BEBEBE;
}
input.text-input-short {
  font-size: clamp(14px,3.26vw,1.4rem);
  width: 27%;
  background-color: #fff;
  border-radius: 4px;
  padding: 1em;
  border: 1px solid #BEBEBE;
}
.form-submit {
  text-align: center;
}
.form-submit button {
  color: #fff;
  background-color: #0081CC;
  transition: all .3s;
}
.form-submit button::before {
  background-image: url(/src/img/common/arrow_right--wh.svg);
}
.form-submit button:hover {
  background-color: #E5F7FF;
  transition: all .3s;
  color: #0081CC;
}
.form-submit button:hover::before {
  background-image: url(/src/img/common/arrow_right--blue.svg);
}
.required-label {
  font-size: clamp(10px, 2.33vw, 1rem);
  font-weight: 700;
  color: #fff;
  background: #E90000;
  padding: 0.333em 0.917em;
  margin-left: 10px;
  border-radius: 99px;
}

label.radio,
label.checkbox {
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  margin-right: 30px;
}
label.checkbox::before,
label.checkbox::after {
  content: "";
  display: block; 
  position: absolute;
}
label.radio::before,
label.radio::after {
  content: "";
  display: block; 
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
label.radio::before {
  background-color: #fff;
  border: 1px solid #BEBEBE;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 0;
}
label.checkbox::before {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #BEBEBE;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
label.checkbox::after {
  border-bottom: 3px solid #0081CC;
  border-left: 3px solid #0081CC;
  opacity: 0;
  height: 6px;
  width: 10px;
  transform: rotate(-45deg);
  top: 4px;
  left: 10px;
}
label.radio::after {
  background-color: #0081CC;
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 5px;
}
input.radio-input:checked + label.radio::after,
input.checkbox-input:checked + label.checkbox::after {
  opacity: 1;
}
.radio-input,
.checkbox-input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
 }
 textarea.textarea-body {
  width: 100%;
  background: #fff;
  font-size: clamp(14px, 3.26vw, 1.4rem);
  border-radius: 4px;
  min-height: 120px;
  padding: 1em;
  border: 1px solid #BEBEBE;
}
.post-link {
  font-size: clamp(13px, 3.02vw, 1.4rem);
  border-bottom: 1px solid #000;
  margin-left: 1em;
}
.post-link:hover {
  border-bottom: 0px solid #000;
}
select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url(/src/img/common/arrow_down--black.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: right 6px center;
}
.form-select {
  width: 100%;
  padding: 1em;
  border: 1px solid #BEBEBE;
  font-size: clamp(14px, 3.26vw, 1.4rem);
  border-radius: 4px;
  background-color: #fff;
  color: #000;
}
.select-vertical {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select-vertical div {
  display: flex;
  align-items: center;
  width: 30%;
  font-size: clamp(14px, 3.26vw, 1.4rem);
  font-weight: 700;
}
.select-vertical .select-short {
  width: 80%;
  margin-right: 12px;
}
.p-region.form-select {
  width: 27%;
}
.form-footer {
  border-top: 1px solid #BFBFBF;
  padding-top: 20px;
  text-align: center;
}
.form-footer label.checkbox {
  margin-right: 0;
}
.form-footer .form-submit {
  margin-top: 25px;
}
.checkbox-text,
.checkbox-text a,
.form-footer-link {
  font-size: clamp(14px, 3.26vw, 1.4rem);
}
.checkbox-text a {
  text-decoration: underline;
  font-size: clamp(14px, 3.26vw, 1.4rem);
}
.checkbox-text a:hover,
.form-footer-link a:hover {
  text-decoration: none;
}
.form-footer .form-check {
  margin-bottom: 16px;
}
.form-footer-link {
  margin-top: 18px;
}
.form-footer .checkbox-text,
.form-footer .checkbox-text a,
.form-footer-link a {
  font-size: clamp(12px, 2.79vw, 1.4rem);
}
.form-footer-link a {
  text-decoration: underline;
}

/* ログイン */
#container_login p {
  font-size: clamp(.75rem,3.02vw,1.4rem);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 2.143em;
}
#container_login p a {
  font-size: clamp(.75rem,3.02vw,1.4rem);
  border-bottom: 1px solid #000;
  transition: all .3s;
}
#container_login p a:hover {
  transition: all .3s;
  border-bottom: 0px solid #000;
}
#container_login .form-wrapper {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}


.footer-page-btn {
  text-align: center;
  margin-bottom: 7.5em;
}
@media (min-width: 521px) {
  .pc-none { display: none; }
}

/* フォーム確認用 */
.form-confirm {
  margin-bottom: 14em;
}
.form-confirm .form-frame {
  padding-left: 7.5em;
  padding-right: 7.5em;
}
.form-confirm .form-wrapper dl {
  margin-bottom: 2em;
}
.form-confirm .form-wrapper dl dd {
  max-width: 540px;
}
.form-price {
  background: #fff;
  border-radius: 8px;
  padding: 1.5em;
  margin-bottom: 2.5em;
}
.form-price dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-price dl dt {
  font-weight: 700;
}
.form-price dl dd {
  color: #E90000;
  max-width: 520px;
  width: 100%;
}
.form-price dl dd span {
  font-weight: 700;
  font-size: 1.8rem;
}
.wrap-bank-detail {
  background: #fff;
  border-radius: 8px;
  padding: 1.5em;
}
.wrap-bank-detail .bank-title {
  margin-bottom: 1.5em;
  font-weight: 700;
}
.wrap-bank-detail dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.wrap-bank-detail dl dt {
  width: 15%;
  margin-bottom: 1em;
  font-weight: 700;
}
.wrap-bank-detail dl dd {
  width: 85%;
  margin-bottom: 1em;
}
.form-confirm .form-footer {
  border-top: unset;
}
.form-submit .button-back {
  background-color: #BABABA;
  margin-right: 3em;
}
.form-submit .button-back:hover {
  background-color: #D5D5D5;
  color: #fff;
}
.form-submit .button-back:hover:before {
  background-image: url(/src/img/common/arrow_right--wh.svg);
}

/* エラー表示 */
.form-error .error-text {
  position: relative;
  line-height: 1.8;
  color: #E90000;
  padding-left: 26px;
  margin-bottom: .4em;
}
.form-error .error-text::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background: url(/src/img/common/icon-error.svg) no-repeat;
  background-size: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* フォーム完了 */
.content-form-done {
  margin-bottom: 16em;
}
.content-form-done h2.form-head-text {
  font-size: 2.0rem;
  text-align: center;
  margin-bottom: 2em;
}
@media (min-width: 521px) {
  .content-form-done .conetent-text {
    text-align: center;
  }
}


/* クッキー同意 */
.cookie-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  color: #fff;
  /*background: linear-gradient(90deg, rgba(0,161,203,.8) 0%, rgba(0,128,203,.9) 100%);*/
  background: rgba(25,47,96, .9);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: hidden;
  z-index: 9;
  border-radius: 14px 14px 0 0;
}
.cookie-content.is-show {
  visibility: visible;
}
.cookie-text {
  font-size: 1.3rem;
  line-height: 1.4;
}
.cookie-content a {
  color: #fff !important;
  font-size: 1.4rem;
  text-decoration: underline;
}
.cookie-agree {
  color: #192f60;
  background: #fff;
  padding: .5em 1.5em;
  border-radius: 99px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 1em;
}
.cookie-agree:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* ゆっくり消える */
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 520px)  {
  .cookie-content {
    flex-direction: column;
    padding: .6em .8em .8em;
  }
  .cookie-text {
    margin-bottom: 1em;
    font-size: .8rem;
    line-height: 1.4;
  }
  .cookie-content a {
    font-size: .8rem;
  }
  .cookie-agree {
    font-size: .9rem;
  }
}


@media (max-width: 520px) {
  .sp-none {
    display: none !important;
  }
  /* ぱんくず */
  .breadcrum {
    padding-top: 11vw;
  }
  .breadcrum ol {
    padding: 3vw 4vw;
    margin-left: 0;
  }
  .breadcrum ol li, .breadcrum ol li a {
    margin-right: 5px;
  }

  /* ページタイトル */
  .page-title {
    padding-top: 6.98vw;
    padding-bottom: 6.98vw;
    margin-bottom: 2em;
  }
  .page-title h2 {
    font-size: 1.25rem;
  }
  .page-title-mask {
    position: absolute;
    mask-image: url(/src/img/common/head-image.svg);
    mask-repeat: no-repeat;
    mask-size: auto 100%;
    top: 0;
    right: -10.47vw;
    width: 40%;
    height: auto;
  }
  .page-title-mask img {
    width: 100%;
    height: auto;
  }

  /* コンテンツフレーム */
  .content-container {
    margin-left: 4.65vw;
    margin-right: 4.65vw;
  }  
  /* コンテンツベース */
  .page-head-wrap {
    padding-bottom: 3.26vw;
    margin-bottom: 4.65vw;
  }
  .column-wrap {
    width: 95%;
    margin-bottom: 6.98vw;
    margin-left: auto;
    margin-right: auto;
  }
  /* テーブル基本 */
  table.table-base th {
    padding: .5em;
  }
  table.table-base td {
    padding: .5em;
  }
    

  /* フォーム */
  .form-frame,
  .form-confirm .form-frame {
    border-radius: 20px;
    padding: 6.98vw 5.58vw;
    margin-bottom: 9.3vw;
  }
  .form-frame h2 {
    font-size: 1.2rem;
    margin-bottom: 4.65vw;
  }
  .form-step {
    margin-bottom: 2em;
  }
  .form-step li.current .step-title {
    letter-spacing: 0.05em;
  }
  .form-step img {
    height: 20px;
  }
  .form-wrapper dl {
    display: block;
    margin-bottom: 4.19vw;
  }
  .form-wrapper dl dt {
    margin-bottom: 3.26vw;
  }
  .form-label {
    font-size: .9rem;
  }
  p.text-input {
    font-weight: 400;
    font-size: .9rem;
    line-height: 1.5;
  }
  .form-confirm .form-wrapper dl {
    margin-bottom: 1em;
  }
  input.text-input-short {
    width: 33%;
  }
  .select-vertical .select-short {
    width: 72%;
    margin-right: 8px;
  }
  select {
    background-size: 18px auto;
    background-position: right 4px center;
  }
  .form-wrapper dl.form-radio-check {
    margin-top: 4.65vw;
    margin-bottom: 4.65vw;
  }
  .form-radio-check .radio-text {
    font-size: 14px;
  }
  label.radio::before, label.checkbox::before {
    top: 65%;
  }
  label.radio::after {
    top: 65%;
  }
  label.checkbox::after {
    height: 5px;
    width: 8px;
    top: 50%;
  }
  .footer-page-btn {
    margin-bottom: 20.93vw;
  }
  .p-region.form-select {
    width: 60%;
  }
  .form-price {
    padding: .5em;
    margin-bottom: 1.5em;
  }
  .form-price dl dt {
    white-space: nowrap;
  }
  .form-price dl dd span {
    font-size: 1.2rem;
    padding-left: .5em;
  }
  .wrap-bank-detail {
    padding: .6em;
  }
  .wrap-bank-detail .bank-title {
    font-size: 1rem;
  }
  .wrap-bank-detail dl dt {
    width: 25%;
    margin-bottom: 10px;
  }
  .wrap-bank-detail dl dd {
    width: 75%;
    margin-bottom: 10px;
  }
  .form-submit .button-back {
    margin: 0 auto 1.5em;
  }
  /* エラー表示 */
  .form-error .error-text {
    font-size: .9rem;
    line-height: 1.5;
    padding-left: 24px;
  }
  .form-error .error-text::before {
    top: 3px;
    transform: unset;
    width: 18px;
    height: 18px;
    background-size: 18px;
  }
}

@media (max-width: 390px) {
  .form-footer .checkbox-text,
  .form-footer .checkbox-text a {
    font-size: 11px;
  }
  label.checkbox::before {
    width: 18px;
    height: 18px;
  }
  label.checkbox {
    padding-left: 32px;
  }
}