html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (max-width: 959px) {
  html {
    scroll-padding-top: 44px;
  }
}

.mp-header {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100vw;
  background-color: #FFFFFF;
  z-index: 100;
}
.mp-header.follow {
  position: relative;
}
.mp-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 14px 24px;
  max-width: 960px;
}
@media screen and (max-width: 959px) {
  .mp-header-container {
    padding: 6px 8px;
  }
}
.mp-header__logo {
  width: 225px;
}
@media screen and (max-width: 959px) {
  .mp-header__logo {
    width: 155px;
  }
}
@media screen and (max-width: 959px) {
  .mp-header__nav {
    display: none;
  }
}
.mp-header__nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mp-header__nav-item {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.mp-header__nav-item.btn-list {
  display: flex;
  gap: 16px;
}
.mp-header__nav-item.btn-list > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 32px;
  padding: 0 8px;
}
.mp-header__nav-link {
  color: #333333;
}
.mp-header__nav-link:visited {
  color: #333333;
}
.mp-header__nav-link:hover {
  text-decoration: underline;
}
.mp-header__menu {
  display: none;
  width: 32px;
  height: 32px;
  background-image: url("../images/icon/sp_menu.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .mp-header__menu {
    display: block;
  }
}
.mp-header__menu.is-active {
  background-image: url("../images/icon/sp_menu_close.png");
}
.mp-header__sp-menu {
  display: none;
  position: fixed;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .mp-header__sp-menu {
    display: block;
  }
}
@media screen and (max-width: 959px) {
  .mp-header__sp-menu.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}
.mp-header__sp-menu-list {
  background-color: #FFFFFF;
  padding: 32px 16px 24px;
  margin-top: 44px;
  transition: transform 0.3s 1s ease;
}
.mp-header__sp-menu-item {
  color: #FFFFFF;
  border-top: 1px solid #DEDCD7;
  border-bottom: 1px solid #DEDCD7;
}
.mp-header__sp-menu-item:last-child {
  border-top: none;
}
.mp-header__sp-menu-item > a {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mp-header__sp-menu-item > a > span {
  color: #333333;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.mp-header__sp-menu-item > a > img {
  width: 16px;
}
.mp-header__sp-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 0 8px;
  height: 56px;
  font-size: 20px;
  font-weight: 600;
}
.mp-header__sp-menu-btn:not(:first-child) {
  margin-top: 16px;
}
.mp-header__sp-menu-btn-list {
  margin-top: 24px;
}

.form {
  background-color: #F7F5ED;
  border-bottom: 1px solid #CCCCCC;
}
.form__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 0;
}
@media screen and (max-width: 959px) {
  .form__container {
    margin: 0;
    padding: 48px 16px;
  }
}
.form__container-title {
  color: #FF6010;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .form__container-title {
    font-size: 26px;
    line-height: 160%;
  }
}
.form__container-desc {
  margin-top: 24px;
  color: #333333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .form__container-desc {
    font-size: 14px;
    text-align: start;
  }
}
@media screen and (max-width: 959px) {
  .form__container-desc.doc {
    text-align: center;
  }
}
.form__container-desc.bottom {
  margin-top: 12px;
}
.form__container-box {
  margin: 40px auto 0;
  max-width: 800px;
}
.form__container-recommend {
  background: #FFFFFF;
  border-radius: 4px;
  max-width: 420px;
  margin: 0 auto;
  padding: 16px 0;
  position: relative;
  top: -4px;
}
.form__container-recommend > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.form__container-recommend > ul > li {
  position: relative;
  color: #333333;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  padding-left: 6px;
}
.form__container-recommend > ul > li::before {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #FF6010;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.form__container-recommend-area {
  position: relative;
  margin-top: 16px;
}
.form__container-recommend-bubble {
  position: relative;
  width: fit-content;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  border-radius: 8px;
  background: #FF6010;
  padding: 4px 12px 4px 8px;
  z-index: 10;
}
.form__container-recommend-bubble > p {
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media screen and (max-width: 959px) {
  .form__container-recommend-bubble > p {
    line-height: 160%;
  }
}
.form__container-recommend-bubble::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url("../images/icon/bubble_point.svg");
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.form-comp {
  background-color: #F7F5ED;
  border-bottom: 1px solid #CCCCCC;
  min-height: calc(100vh - 65.2px - 190.2px);
}
@media screen and (max-width: 959px) {
  .form-comp {
    min-height: calc(100vh - 39.23px - 262.2px);
  }
}
.form-comp__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 0;
}
@media screen and (max-width: 959px) {
  .form-comp__container {
    margin: 0;
    padding: 80px 16px;
  }
}
.form-comp__container-title {
  color: #FF6010;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .form-comp__container-title {
    font-size: 26px;
    line-height: 160%;
  }
}
.form-comp__container-title.contact {
  margin-top: 57.5px;
}
@media screen and (max-width: 959px) {
  .form-comp__container-title.contact {
    margin-top: 0;
  }
}
.form-comp__container-desc {
  margin-top: 24px;
  color: #333333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .form-comp__container-desc {
    font-size: 14px;
  }
}
.form-comp__container-desc.secrow {
  margin-top: 25.6px;
}
@media screen and (max-width: 959px) {
  .form-comp__container-desc.secrow {
    margin-top: 22.4px;
  }
}
.form-comp__container-desc.paragraph {
  margin-top: 40px;
}
.form-comp__container-btn {
  margin: 0 auto;
}
.form-comp__container-btn-area {
  margin-top: 24px;
}
.form-comp__container-btn-primary {
  width: 197px !important;
  height: 44px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.btn-primary {
  background: linear-gradient(180deg, #FF551A 0%, #FF551A 77.51%, #F34A10 100%);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  width: 100%;
  text-align: center;
}
.btn-primary:hover {
  color: #FFFFFF;
  text-decoration: none;
  background: linear-gradient(180deg, #E54B17 0%, #E54B17 77.51%, #D2400F 100%);
  opacity: 1;
}
.btn-primary:visited {
  color: #FFFFFF;
}
.btn-primary:link {
  color: #FFFFFF;
}
.btn-border {
  background: #FFFFFF;
  border: 1px solid #FF6010;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  color: #FF6010 !important;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  width: 100%;
  text-align: center;
}
.btn-border:hover {
  color: #FF6010;
  text-decoration: none;
  background: linear-gradient(180deg, #F9F8F6 0%, #F9F8F6 77.51%, #EEE 100%);
  opacity: 1;
}
.btn-border:link {
  color: #FF6010;
}
.btn-return {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 44px;
  padding: 0 16px;
  border: #DEDCD7;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFF 0%, #FFF 77.51%, #F6F6F6 100%);
  color: #666666;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.btn-return:hover {
  background: linear-gradient(180deg, #F9F8F6 0%, #F9F8F6 77.51%, #EEE 100%);
  text-decoration: none;
  opacity: 1;
}
.btn-return:visited {
  color: #666666;
}
.btn-return:link {
  color: #666666;
}

.footer {
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (max-width: 959px) {
  .footer {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
.footer__contents {
  max-width: 980px;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .pc-hide {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .sp-hide {
    display: none !important;
  }
}

.copyright__logo img {
  height: 28px !important;
}
@media screen and (max-width: 959px) {
  .copyright__logo img {
    height: 21px !important;
  }
}

.footer-banner {
  width: 100%;
  background: linear-gradient(to right, #ffc766, #ff9900, #FF6010);
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .footer-banner {
    padding: 24px 0 0;
    background: linear-gradient(180deg, #f90 0%, #ffc766 77.02%, #fff3d8 99.97%), linear-gradient(207deg, #f90 24.19%, #ffc766 70.54%, #fff3d8 100%);
  }
}
.footer-banner-text {
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  font-size: 32px;
  color: #FFFFFF;
}
@media screen and (max-width: 959px) {
  .footer-banner-text {
    font-size: 24px;
  }
}
.footer-banner-text-wrap {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 0 0 8px;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .footer-banner-text-wrap {
    padding: 24px 0 16px;
  }
}
.footer-banner-img-wrap {
  display: flex;
  flex-direction: row;
  margin: auto;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 959px) {
  .footer-banner-img-wrap {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.footer-banner-img-slogan {
  width: 261px;
  height: 97.2px;
  line-height: 97.2px;
}
.footer-banner-img-device {
  width: 320px;
}
@media screen and (max-width: 959px) {
  .footer-banner-img-device {
    width: 269px;
  }
}
.footer-banner-button-wrap {
  display: flex;
  margin: auto;
  justify-content: center;
  gap: 48px;
  padding-inline: 16px;
}
@media screen and (max-width: 959px) {
  .footer-banner-button-wrap {
    gap: 12px;
    width: 100%;
    padding-bottom: 48px;
  }
}
.footer-banner-btn {
  min-width: 280px;
  height: 72px;
  line-height: 72px;
  padding: 0 12px;
  font-size: 24px;
}
@media screen and (max-width: 959px) {
  .footer-banner-btn {
    flex-grow: 1;
    min-width: 0;
    max-width: 166px;
    height: 56px;
    line-height: 56px;
    font-size: 20px;
  }
}

@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .sp-none {
    display: none !important;
  }
}


/* ========================================
   フォーム新規調整
   ======================================== */
.mktoForm {
  width: 100%!important;
  padding: 0!important;
}
@media screen and (min-width: 768px) {
  .mktoForm {
    position: relative;
    width: 100%!important;
    margin-bottom: calc(44px + 24px);
    background-color: #fff;
  }

  .mktoForm .mktoFieldWrap {
    display: flex;
    align-items: center;
  }
}

/* ----------------------------------------
   フォーム 行レイアウト
   ---------------------------------------- */
.mktoForm .mktoFormRow {
    display: flex;
    align-items: end;
    margin-bottom: 32px;
  }
@media screen and (min-width: 768px) {
  .mktoForm .mktoFormRow {
    align-items: center;
    margin-bottom: 0;
    border-bottom: 1px solid #ebe9e4;
  }

  .mktoForm .mktoFormRow:first-child {
    border-top: 1px solid #ebe9e4;
  }
}

/* ----------------------------------------
   フォーム 列レイアウト
   ---------------------------------------- */
.mktoForm .mktoFormCol {
  display: flex;
  align-items: center;
  margin: 0!important;
}

@media screen and (max-width: 767px) {
  .mktoForm .mktoRequiredField {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mktoForm .mktoFormCol + .mktoFormCol {
    margin-left: 4px!important;
  }
}

@media screen and (max-width: 480px) {
  .mktoForm .mktoFormCol {
    width: 100%;
  }
}

/* ----------------------------------------
   offset 
   ---------------------------------------- */
.mktoForm .mktoOffset {
  display: none;
}


/* ----------------------------------------
   ラベル
   ---------------------------------------- */
.mktoForm .mktoLabel {
  display: flex;
  width: 100%!important;
  padding-top: 0!important;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .mktoForm .mktoLabel {
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
    width: 160px!important;
    padding: 16px!important;
    background-color: #ffdbb9;
  }

  /* ----------------------------------------
    必須項目
    ---------------------------------------- */
  .mktoForm .mktoLabel .mktoAsterix {
    order: 2;
  }
}

.mktoForm .mktoRequiredField .mktoAsterix {
  display: flex!important;
  font-size: 0;
  padding: 0!important;
}

.mktoForm .mktoRequiredField .mktoAsterix::before {
  content: "必須";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  background-color: #ff6010;
  border-radius: 2px;
  width: 28px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .mktoForm .mktoRequiredField .mktoAsterix::before {
    margin-right: 4px;
  }
}

/* ----------------------------------------
   余白
   ---------------------------------------- */
.mktoFormRow .mktoFormCol ~ .mktoFormCol .mktoLabel,
.mktoForm .mktoGutter {
  display: none;
}

/* ----------------------------------------
   ラジオボタンレイアウト
   ---------------------------------------- */
.mktoForm .mktoRadioList {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-content: start;
  gap: 8px 0;
  margin-top: 16px;
}

.mktoForm .mktoRadioList > input {
  display: block;
  appearance: revert;
  -webkit-appearance: revert;
}

.mktoForm .mktoRadioList > input:nth-of-type(even) {
  margin-left: 24px;
}

.mktoForm .mktoRadioList > label {
  margin: 0 0 0 8px!important;
}

@media screen and (min-width: 768px) {
  .mktoForm .mktoRadioList {
    margin-top: 0;
    padding: 16px!important;
  }
}

/* ----------------------------------------
   チェックボックスレイアウト
   ---------------------------------------- */
.mktoForm .mktoCheckboxList {
  display: flex;
  align-items: center;
  width: 13px !important;
  box-sizing: initial;
}

.mktoForm .mktoCheckboxList {
  padding: 12px!important;
}

.mktoForm .mktoCheckboxList > input {
  all: revert;
}

@media only screen and (max-width: 767px) {
  .mktoForm .mktoCheckboxList {
    padding: 0 8px!important;
  }

  .mktoForm .mktoFormRow:is(:has(+ .mktoButtonRow), :has(+ .mktoFormRow + .mktoButtonRow)) {
    align-items: start;
  }
  
  .mktoForm .mktoFormRow:is(:has(+ .mktoButtonRow), :has(+ .mktoFormRow + .mktoButtonRow)) .mktoFieldDescriptor {
    width: auto;
  }
  
  .mktoForm .mktoFormRow:is(:has(+ .mktoButtonRow), :has(+ .mktoFormRow + .mktoButtonRow)) .mktoRequiredField {
    flex-direction: row;
  }
}

/* ----------------------------------------
   テキスト入力欄レイアウト
   ---------------------------------------- */
.mktoForm input[type=text]{
  margin-top: 8px!important;
  font-size: 13px!important;
}
.mktoForm input[type=text]::placeholder{
  color: #aaa;
}
@media screen and (min-width: 768px) {
  .mktoForm input[type=text]{
    width: 288px!important;
    margin-top: 0!important;
    margin-left: 16px!important;
  }

  /*   お名前用に調整： 兄弟になっている.mktoFormColのinputだけに指定 */
  .mktoForm .mktoFormRow:has(.mktoFormCol + .mktoFormCol) .mktoFormCol input[type=text] {
    width: 136px!important;
  }
}
@media screen and (max-width: 767px) {
  .mktoForm input[type=text]{
    padding: 16px 8px!important;
  }
}

/* ----------------------------------------
   e-mail・電話番号レイアウト
   ---------------------------------------- */
.mktoForm input[type=email],
.mktoForm input[type=tel] {
  height: 32px;
  box-shadow: 0px 6px 6px -7px #dbdbdb inset;
  margin-top: 8px!important;
  padding-left: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: #dedcd7;
  border-radius: 3px;
  background-color: #fff;
  font-size: 13px!important;
}
.mktoForm input[type=email]::placeholder,
.mktoForm input[type=tel]::placeholder {
  color: #aaa;
}
@media screen and (min-width: 768px) {
  .mktoForm input[type=email],
  .mktoForm input[type=tel] {
    width: 288px!important;
    margin-top: 0!important;
    margin-left: 16px!important;
  }
}
@media screen and (max-width: 767px) {
  .mktoForm input[type=email],
  .mktoForm input[type=tel] {
    padding: 16px 8px!important;
  }
}

/* ----------------------------------------
   セレクトボックスレイアウト
   ---------------------------------------- */
.mktoForm select.mktoField {
  appearance: revert;
  -webkit-appearance: revert;
  width: 160px!important;
  height: 32px;
  box-shadow: 0px 6px 6px -7px #dbdbdb inset;
  border-style: solid;
  border-width: 1px;
  border-color: #dedcd7;
  border-radius: 3px;
  background-color: #fff;
  margin-top: 8px!important;
  padding-top: 7px!important;
  font-size: 13px!important;
}
@media screen and (min-width: 768px) {
  .mktoForm select.mktoField {
    margin-top: 0!important;
    margin-left: 16px!important;
  }
}

/* ----------------------------------------
   テキストボックスレイアウト
   ---------------------------------------- */
.mktoForm textarea.mktoField {
  height: auto!important;
  box-shadow: 0px 6px 6px -7px #dbdbdb inset;
  border-style: solid;
  border-width: 1px;
  border-color: #dedcd7;
  border-radius: 3px;
  background-color: #fff;
  margin-top: 8px!important;
  font-size: 13px!important;
  padding: 16px 8px!important;
}
.mktoForm textarea::placeholder {
  color: #aaa;
}
@media screen and (min-width: 768px) {
  .mktoForm textarea.mktoField {
    width: 376px!important;
    margin: 16px!important;
  }
}
@media screen and (max-width: 767px) {
  .mktoForm textarea.mktoField {
    width: calc(100vw - 32px)!important;
  }
  .mktoForm .mktoFieldWrap:has(textarea.mktoField) {
    display: flex;
    flex-direction: column;
  }
}

/* ----------------------------------------
   ボタンレイアウト
   ---------------------------------------- */
.mktoForm .mktoButtonWrap.mktoPurpleCandy button.mktoButton {
  display: flex;
  align-items: center;
  width: auto;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 15px;
  text-shadow: none;
}

@media screen and (min-width: 768px) {
    .mktoForm .mktoButtonRow {
    position: absolute;
    bottom: calc(-44px + -24px);
    width: 100%;
  }

  .mktoForm .mktoButtonRow .mktoButtonWrap {
    display: flex;
    justify-content: center;
    margin: 0!important;
  }
}

@media screen and (max-width: 767px) {
  .mktoForm .mktoButtonRow {
    width: 100%;
  }

  .mktoForm .mktoButtonRow .mktoButtonWrap {
    display: flex;
    justify-content: center;
    margin: 0!important;
  }
}

/* ----------------------------------------
   リンクスタイル
   ---------------------------------------- */
.mktoForm .mktoHtmlText a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .mktoForm .mktoHtmlText a {
    padding: 0!important;
  }
}
