@charset "UTF-8";
/**** media ****/
@media (max-width: 769px) {
  .pc-visible {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .sp-visible {
    display: none !important;
  }
}
:root {
  --pc-size: 1366;
  --sp-size: 375;
  --red: #E20E3F;
  --blue: #0072BE;
  --blue2: #009DDE;
}

* {
  box-sizing: border-box;
}

html.is-locked,
body.is-locked {
  position: fixed;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.4s;
  color: inherit;
}
a:hover {
  opacity: 0.6;
  transition: 0.15s ease-in;
}

strong {
  font-weight: bold;
}

img {
  width: 100%;
}

body {
  -webkit-overflow-scrolling: touch;
  font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #04141F;
  background: #E2F6FF;
  word-break: break-all;
}
@media (min-width: 769px) {
  body {
    min-width: 1100px;
  }
}

@media (min-width: 769px) {
  .contents__inner {
    max-width: 1160px;
    width: 90vw;
    margin: auto;
  }
}

iframe {
  border-width: 0px;
}

.nav__list-wrap {
  overflow-y: auto;
}

.txt-link {
  text-decoration: underline;
}

/*==================================
  ANIMATION
==================================*/
/* ふわっと */
.fadeIn {
  opacity: 0;
  transition: opacity ease 1.5s;
}
.fadeIn.effect-scroll {
  opacity: 1;
}

.fadeInUp,
.fadeInUp-order {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}
.fadeInUp.effect-scroll,
.fadeInUp-order.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes show {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/*==================================
  HEADER
==================================*/
/***
*
* header menu (PC)
*
*/
.header__logo {
  padding: 15px 25px;
  background: #fff;
  text-align: right;
}
@media (max-width: 769px) {
  .header__logo {
    display: none;
  }
}
.header__logo img {
  width: 112px;
}
.header__mv {
  position: relative;
  height: calc(284 / var(--pc-size) * 100vw);
  background: url(../images/common/header-pc.webp) no-repeat 0 0/100% auto;
}
@media (max-width: 769px) {
  .header__mv {
    height: calc(300 / var(--sp-size) * 100vw);
    background: url(../images/common/header-sp.webp) no-repeat 0 0/100% auto;
  }
}
.header__mv img {
  position: absolute;
  left: calc(375 / var(--pc-size) * 100vw);
  top: calc(24 / var(--pc-size) * 100vw);
  width: calc(622.09 / var(--pc-size) * 100vw);
}
@media (max-width: 769px) {
  .header__mv img {
    left: calc(47 / var(--sp-size) * 100vw);
    top: calc(2 / var(--sp-size) * 100vw);
    width: calc(300 / var(--sp-size) * 100vw);
  }
}

/*==================================
  FOOTER
==================================*/
.footer {
  background-color: #fff;
  margin-top: 100px;
  padding: 32px 0;
}
@media (max-width: 769px) {
  .footer {
    margin-top: 48px;
    padding: 24px 0;
  }
}
.footer__logo {
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 769px) {
  .footer__logo {
    display: none;
  }
}
.footer__logo img {
  width: 90px;
}
.footer__copyright {
  color: var(--blue);
  font-size: 10px;
  text-align: center;
}
@media (max-width: 769px) {
  .footer__copyright {
    font-size: 9px;
  }
}

/*==================================
  PAGE TOP
==================================*/
/*==================================
  form
==================================*/
.main {
  margin: 8px 20px 0;
}
@media (max-width: 769px) {
  .main {
    margin: 8px 0 0;
  }
}

.form-wrap {
  max-width: 920px;
  margin: 0 auto;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.57;
}
@media (max-width: 769px) {
  .form-wrap {
    margin: 0 15px 0;
  }
}
.form-wrap .shop {
  display: flex;
  justify-content: center;
}
@media (max-width: 769px) {
  .form-wrap .shop {
    justify-content: flex-start;
  }
}
.form-wrap .shop__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 37px;
  padding: 0 24px;
  background: var(--blue);
  border-radius: 60px;
  color: #fff;
  line-height: 1;
}
.form-wrap .shop__label {
  font-size: 16px;
  font-weight: 500;
  color: #e2f6ff;
}
@media (max-width: 769px) {
  .form-wrap .shop__label {
    font-size: 14px;
  }
}
.form-wrap .shop__shopname {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 769px) {
  .form-wrap .shop__shopname {
    font-size: 18px;
  }
}
.form-wrap .lead {
  margin-top: 24px;
  padding-bottom: 32px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7778;
  text-align: center;
  border-bottom: 1px solid var(--blue2);
}
@media (max-width: 769px) {
  .form-wrap .lead {
    margin: 15px -15px 0;
    padding: 0 15px 24px;
    font-size: 16px;
    text-align: left;
  }
}
.form-wrap .info {
  margin-top: 48px;
}
@media (max-width: 769px) {
  .form-wrap .info {
    margin-top: 24px;
  }
}
@media (max-width: 769px) {
  .form-wrap .info2 + .info {
    margin-top: 30px;
  }
}
.form-wrap .info2 {
  margin-top: 30px;
  padding: 25px 0;
  border: 1px solid #a0bac9;
  border-left: none;
  border-right: none;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 769px) {
  .form-wrap .info2 {
    margin-top: 24px;
  }
}
.form-wrap .intro {
  margin-top: 24px;
}
.form-wrap .intro .intro-txt1 {
  color: var(--blue);
  font-weight: 700;
}
.form-wrap .intro .intro-txt2 {
  margin-top: 8px;
  color: var(--red);
  font-weight: 500;
}
@media (max-width: 769px) {
  .form-wrap .intro .intro-txt2 {
    margin-top: 8px;
  }
}

.form {
  margin-top: 32px;
}
@media (max-width: 769px) {
  .form {
    margin-top: 24px;
  }
}

.form-tb {
  width: 100%;
  border-top: 1px solid #fff;
}
@media (max-width: 769px) {
  .form-tb {
    display: block;
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding-top: 16px;
  }
}
@media (max-width: 769px) {
  .form-tb tbody {
    display: block;
  }
}
@media (max-width: 769px) {
  .form-tb tr {
    display: block;
    padding: 0 15px 24px;
    border-bottom: 1px solid #fff;
  }
  .form-tb tr:not(:first-child) {
    margin-top: 16px;
  }
}
.form-tb tr th, .form-tb tr td {
  vertical-align: top;
  border-bottom: 1px solid #fff;
  padding: 24px 0;
}
@media (max-width: 769px) {
  .form-tb tr th, .form-tb tr td {
    display: block;
    padding: 0;
    border-bottom: none;
  }
}
.form-tb tr th {
  width: 215px;
  text-align: left;
}
@media (max-width: 769px) {
  .form-tb tr th {
    width: auto;
  }
}
@media (max-width: 769px) {
  .form-tb tr td {
    margin-top: 8px;
  }
}
.form-tb2 {
  margin-top: 48px;
  border-top: 1px solid #fff;
}
@media (max-width: 769px) {
  .form-tb2 {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
}
@media (max-width: 769px) {
  .form-tb2 *:not(span) {
    display: block;
  }
}
@media (max-width: 769px) {
  .form-tb2 tbody tr {
    display: block;
    border-bottom: 1px solid #fff;
    padding: 0 15px;
  }
}
.form-tb2 tbody tr th, .form-tb2 tbody tr td {
  padding: 24px 0;
  border-bottom: 1px solid #fff;
  text-align: left;
}
@media (max-width: 769px) {
  .form-tb2 tbody tr th, .form-tb2 tbody tr td {
    border: none;
    padding: 16px 0;
    border: none;
  }
}
.form-tb2 tbody tr th {
  width: 240px;
  font-weight: bold;
}
@media (max-width: 769px) {
  .form-tb2 tbody tr th {
    width: auto;
    padding-bottom: 0;
  }
}
@media (max-width: 769px) {
  .form-tb2 tbody tr td {
    padding-top: 16px;
  }
}
.label {
  display: flex;
  align-items: center;
  gap: 0 8px;
  padding-top: 4px;
}
@media (max-width: 769px) {
  .label {
    display: block;
  }
}
.label__txt {
  max-width: 157px;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.5714;
}
.label__txt__note {
  color: #04141F;
  font-size: 80%;
  font-weight: 400;
}
.label__required {
  color: #E96382;
  font-weight: normal;
}
@media (max-width: 769px) {
  .label__required {
    font-size: 12px;
  }
}

.label-radio {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
  cursor: pointer;
}
.label-radio .input-radio {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: 1px solid var(--blue2);
  border-radius: 50%;
  transition: border-color 0.2s;
}
.label-radio .input-radio::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: var(--blue2);
  border-radius: 50%;
  transition: transform 0.2s;
}
.label-radio .input-radio:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
@media (forced-colors: active) {
  .label-radio .input-radio {
    border-color: CanvasText;
  }
  .label-radio .input-radio::before {
    background: CanvasText;
  }
}

.note {
  margin-top: 8px;
  font-size: 10px;
}

.note2 {
  margin-top: 16px;
  color: var(--blue);
}

.error {
  margin-top: 8px;
  color: var(--red);
}

.input-type1 {
  padding: 16px 24px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--blue2);
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media (max-width: 769px) {
  .input-type1 {
    padding: 16px;
    font-size: 16px;
  }
}

textarea.input-type1 {
  height: 206px;
  line-height: 2;
}
@media (max-width: 769px) {
  textarea.input-type1 {
    height: 230px;
  }
}

::-moz-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

@media (max-width: 769px) {
  .select-wrap {
    padding-right: 20px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--blue2);
    overflow: hidden;
  }
}

.select-wrap:has(.select:disabled) {
  opacity: 0.4;
}

.select {
  display: none;
  outline: none;
}
@media (max-width: 769px) {
  .select {
    display: block;
    width: 100%;
    background: #fff;
    padding: 16px 24px;
    border: none;
    font-size: 14px;
  }
  .select:disabled {
    opacity: 0.4;
  }
}

.custom-select-wrap {
  position: relative;
}

.custom-select {
  position: relative;
}
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--blue2);
  text-align: left;
  font-size: inherit;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: inherit;
}
.custom-select__trigger.is-placeholder {
  color: #aaa;
}
.custom-select__arrow {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  border-right: 2px solid var(--blue2);
  border-bottom: 2px solid var(--blue2);
  transform: rotate(45deg);
  transition: transform 0.2s;
  position: relative;
  top: -3px;
}
.custom-select.is-open .custom-select__arrow {
  transform: rotate(-135deg);
  top: 3px;
}
.custom-select__list {
  display: none;
  background: #fff;
  border: 1px solid var(--blue2);
  border-top: none;
  border-radius: 0 0 4px 4px;
  list-style: none;
  padding: 0 24px;
  margin: 0;
}
.custom-select.is-open .custom-select__trigger {
  border-radius: 4px 4px 0 0;
}
.custom-select.is-open .custom-select__list {
  display: block;
}
.custom-select.is-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.custom-select.is-disabled .custom-select__trigger {
  cursor: default;
}
.custom-select__item {
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.15s;
}
.custom-select__item + .custom-select__item {
  border-top: 1px solid #d0e8f5;
}
.custom-select__item:hover {
  background: #e2f6ff;
}
.custom-select__item.is-selected {
  color: var(--blue2);
  font-weight: 700;
}

.initial-wrap {
  display: flex;
  gap: 0 32px;
}
.initial-wrap__item__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
}
.initial-wrap__item .input-type1 {
  width: 86px;
}
@media (max-width: 769px) {
  .initial-wrap__item .input-type1 {
    width: 75px;
  }
}
.initial-wrap__item .note {
  width: 100%;
}

.radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
}
.radio-wrap .label-radio {
  width: 220px;
}

.consent {
  margin-top: 32px;
}
@media (max-width: 769px) {
  .consent {
    margin-top: 37px;
  }
}
.consent-txt a {
  color: var(--blue);
  text-decoration: underline;
}
.consent-checkbox {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 769px) {
  .consent-checkbox {
    margin-top: 24px;
  }
}
.consent-checkbox .consent-checkbox-label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #04141F;
}
@media (max-width: 769px) {
  .consent-checkbox .consent-checkbox-label span {
    text-align: left;
  }
}
.consent-checkbox {
  /* アイコン */
}
.consent-checkbox .checkbox_icon {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--blue2);
  box-shadow: 0 0 0 0 transparent;
  transition-duration: 0.2s;
  transition-property: background-color, border, box-shadow, color;
  /* 強制カラーモードが有効のときは、既定のシステムカラー値を設定して、トランジションを無効にする */
}
@media (forced-colors: active) {
  .consent-checkbox .checkbox_icon {
    transition: none;
    border-color: CanvasText;
  }
}
.consent-checkbox .checkbox_icon {
  /* アイコン：選択済みの見た目 */
}
.consent-checkbox .checkbox_icon:checked {
  background: var(--blue2); /* 紫色 */
  /* 強制カラーモードが有効のときは、システムカラーを設定 */
}
@media (forced-colors: active) {
  .consent-checkbox .checkbox_icon:checked {
    background-color: Canvas;
    border-color: CanvasText;
  }
}
.consent-checkbox .checkbox_icon {
  /* アイコン：活性時のホバー演出 */
}
.consent-checkbox .checkbox_icon:hover:enabled {
  /* 強制カラーモードが無効かつ、ホバーが有効のときは、ホバー演出を追加 */
}
.consent-checkbox .checkbox_icon {
  /* チェックマーク */
}
.consent-checkbox .checkbox_icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  aspect-ratio: 17.5/12.63;
  width: 17.5px;
  opacity: 0;
  background: url(../images/common/icon-checkbox-arr.svg) no-repeat 0 0/contain;
  transition: opacity 0.2s;
}
.consent-checkbox .checkbox_icon {
  /* 強制カラーモードが有効のときは、既定のシステムカラー値を設定して、トランジションを無効にする */
}
@media (forced-colors: active) {
  .consent-checkbox .checkbox_icon::before {
    transition: none;
    background-color: CanvasText;
  }
}
.consent-checkbox .checkbox_icon {
  /* チェックマーク：選択済みの見た目 */
}
.consent-checkbox .checkbox_icon:checked::before {
  opacity: 1;
}
.consent .checkbox-note {
  margin-top: 32px;
  color: var(--red);
  font-weight: 500;
  text-align: center;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}
@media (max-width: 769px) {
  .btn-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px 0;
    margin-top: 24px;
  }
}

.btn-wrapper2 {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}
@media (max-width: 769px) {
  .btn-wrapper2 {
    flex-direction: column;
    align-items: center;
    gap: 24px 0;
    margin-top: 48px;
  }
}
.btn-wrapper2 .btn-type2 {
  position: relative;
  width: 300px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.3s;
  border: none;
}
.btn:hover {
  opacity: 0.7;
}
.btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.btn-type1 {
  width: 300px;
  height: 65px;
  background: var(--blue) url(../images/common/arr-right-white.svg) no-repeat calc(100% - 22px) 50%/10px 17.33px;
}
.btn-type2 {
  position: absolute;
  left: 0;
  width: 180px;
  height: 65px;
  background: #fff url(../images/common/arr-left-blue.svg) no-repeat 22px 50%/10px 17.33px;
  border: 2px solid var(--blue);
  color: var(--blue);
}
@media (max-width: 769px) {
  .btn-type2 {
    position: relative;
  }
}

.thnks-txt1 {
  margin-top: 64px;
  color: var(--blue);
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 769px) {
  .thnks-txt1 {
    margin-top: 0;
    font-size: 24px;
  }
}

.thnks-txt2 {
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 769px) {
  .thnks-txt2 {
    margin-top: 48px;
    text-align: left;
  }
}

@media (min-width: 769px) {
  .tel-link {
    pointer-events: none;
  }
}
@media (max-width: 769px) {
  .tel-link {
    text-decoration: underline;
  }
}

body.shop-hoya .form-tb td .input-type1, body.shop-hoya .form-tb td .select-wrap {
  font-family: "Noto Sans JP", sans-serif;
}
/*# sourceMappingURL=../css/maps/style.css.map */
