@charset "UTF-8";
/* 上書き
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --main-font-color: #222;
  --description: #767676;
  --place-holder: #bfbfbf;
  --link-color: #426599;
  --hover-color: #5477ab;
  --active-color: #2e4e7b;
  --visited-color: #426599;
  --alert-color: #ea6646;
  --pale-gray: #f2f2f2;
  --btn-normarl: #d9d9d9;
  --btn-hover: #e9e9e9;
  --btn-active: #8c8c8c;
  --bg-color: #fff;
  --bg-color2: #b7dfdf;
  --bg-color3: #f6f4a1;
  --bg-alert: #fdede9;
  --light-blue-gray: #E6EDF5;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.border-box {
  box-sizing: border-box;
}

.input-form {
  border: solid 1px #a3a3a3;
  border-radius: 4px;
  margin: 0 auto;
  width: 100%;
  padding-left: 12px;
}

select {
  border: solid 1px #a3a3a3;
  border-radius: 4px;
  line-height: 1;
  height: 40px;
  padding-left: 12px;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml,%3csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.07856e-08 0.904459L0.79875 9.77989e-08L4.5 4.19108L8.20125 9.525e-09L9 0.904459L4.5 6L1.07856e-08 0.904459Z' fill='%23A3A3A3'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) center;
  background-size: 9px 6px;
  cursor: pointer;
}

.btn1, .btn2, .btn3 {
  border-radius: 8px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn1 {
  background-color: var(--link-color);
  color: #fff;
}
.btn1:hover {
  background-color: #668abe;
  color: #fff;
}
.btn1:active, .btn1:focus {
  background-color: var(--active-color);
}

.btn2 {
  background-color: var(--btn-normarl);
  color: var(--main-font-color);
}
.btn2:hover {
  background-color: #e4e4e4;
  color: var(--description);
}
.btn2:active, .btn2:focus {
  background-color: #969696;
  color: #fff;
}

.btn3 {
  background-color: var(--bg-color);
  color: var(--main-font-color);
  border: solid 2px var(--main-font-color);
}
.btn3:hover {
  color: #868686;
  border: solid 2px #868686;
}
.btn3:active, .btn3:focus {
  background-color: #f2f2f2;
  color: var(--main-font-color);
}

.submit-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.submit-btn button {
  border-radius: 8px;
  line-height: 1.5;
  cursor: pointer;
}

.border-radius-2 {
  border-radius: 2px;
}

.password-eye path {
  fill: #4d4d4d;
}
.password-eye path.close-line {
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
}

a {
  color: var(--link-color);
  text-decoration: underline;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

input {
  width: 100%;
  height: 100%;
  padding: 4px;
}
input.alert {
  border-color: var(--alert-color);
  background: var(--bg-alert);
}

select.alert {
  border-color: var(--alert-color);
  background: var(--bg-alert);
}

.no-deco-line {
  text-decoration: none;
}

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  font-size: 16px;
  user-select: none;
  /* 非表示にしてカスタム見た目に置き換える */
}
.custom-checkbox input[type=checkbox] {
  display: none;
}
.custom-checkbox {
  /* チェックボックス風のボックス */
}
.custom-checkbox .custom-box {
  width: 18px;
  height: 18px;
  border: 1px solid #A3A3A3;
  border-radius: 3px;
  background-color: #EFEFEF;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}
.custom-checkbox {
  /* チェックマーク (✓) をCSSで描く */
}
.custom-checkbox .custom-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #4D4D4D;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.custom-checkbox {
  /* チェックされているときに表示 */
}
.custom-checkbox input:checked + .custom-box::after {
  opacity: 1;
}
.custom-checkbox input[disabled] + .custom-box {
  opacity: 0.5;
}
.custom-checkbox input[disabled] + div + div {
  opacity: 0.5;
}
.custom-checkbox input.alert + .custom-box {
  border-color: var(--alert-color);
  background: var(--bg-alert);
}
.custom-checkbox:not(:has(input:checked)) {
  background-color: #f0f0f0;
  color: #333;
}

.custom-radio {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  /* ラジオボタンを非表示 */
}
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-radio {
  /* チェックマーク部分 */
}
.custom-radio .checkmark {
  position: relative;
  padding-left: 28px;
  display: inline-block;
  line-height: 1.5;
  color: #000;
}
.custom-radio .checkmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-color: #EFEFEF;
  border: 1px solid #A3A3A3;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.2s;
}
.custom-radio {
  /* チェックされたときの背景・枠線 */
}
.custom-radio :checked + .checkmark::before {
  background-color: #426599;
  border-color: #426599;
}
.custom-radio {
  /* チェックマークの白い点 */
}
.custom-radio :checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}
.custom-radio {
  /* 無効状態 */
}
.custom-radio :disabled + .checkmark {
  opacity: 0.5;
  cursor: not-allowed;
}

#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
#loading.d-none {
  display: none;
}
#loading .loading {
  position: absolute;
  text-align: center;
  padding: 1em;
  top: 45%;
  width: 100%;
  display: inline-block;
}
#loading .loading svg {
  width: 80px !important;
  height: 80px !important;
}

/* common
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-bold {
  font-weight: bold;
}

.text-under {
  text-decoration: underline;
}

.text-normal {
  font-size: 16px;
}

.text-sm {
  font-size: 12px;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.grid-cols-2-equal {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3-equal {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-2-max {
  grid-template-columns: repeat(2, max-content);
}

.grid-col-gap-8 {
  grid-column-gap: 8px;
}

.grid-col-gap-22 {
  grid-column-gap: 22px;
}

.grid-row-gap-16 {
  grid-row-gap: 16px;
}

.grid-row-gap-40 {
  grid-row-gap: 40px;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-self-center {
  align-self: center;
}

.align-self-start {
  align-self: start;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.p-0 {
  padding: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-40px {
  padding-top: 40px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-40px {
  padding-right: 40px;
}

.pl-1 {
  padding-left: 0.25rem;
}

.span-col-2 {
  grid-column: span 2;
}

.span-col-3 {
  grid-column: span 3;
}

.span-col-4 {
  grid-column: span 4;
}

.span-row-2 {
  grid-row: span 2;
}

.w-30 {
  width: 30px;
}

.w-50 {
  width: 50px;
}

.w-75 {
  width: 75px;
}

.w-90 {
  width: 90px;
}

.w-110 {
  width: 110px;
}

.w-160 {
  width: 160px;
}

.w-184 {
  width: 184px;
}

.w-208 {
  width: 208px;
}

.w-264 {
  width: 264px;
}

.w-298 {
  width: 298px;
}

.w-366 {
  width: 366px;
}

.w-full {
  width: 100%;
}

.w-max {
  width: max-content;
}

.h-32 {
  height: 32px;
}

.h-38 {
  height: 38px;
}

.h-40 {
  height: 40px;
}

.h-48 {
  height: 48px;
}

.h-56 {
  height: 56px;
}

.h-110 {
  height: 110px;
}

.h-full {
  height: 100%;
}

.text-large {
  font-size: 24px;
}

.text-normal {
  font-size: 16px;
}

.f-16 {
  font-size: 16px;
}

.f-14 {
  font-size: 14px;
}

.f-13 {
  font-size: 13px;
}

.f-12 {
  font-size: 12px;
}

.f-10 {
  font-size: 10px;
}

#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
#loading.d-none {
  display: none;
}
#loading .loading {
  position: absolute;
  text-align: center;
  padding: 1em;
  top: 45%;
  width: 100%;
  display: inline-block;
}
#loading .loading svg {
  width: 80px !important;
  height: 80px !important;
}

.main-box {
  max-width: 1024px;
  width: 100%;
  padding: 40px 0 32px;
  background: #f2f2f2;
}

.error-message {
  color: var(--alert-color);
}

.caution-mess {
  color: var(--alert-color);
}

.breadcrumb, #container {
  max-width: 1064px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

#container {
  min-height: calc(100vh - 177px - 481px);
}

.breadcrumb {
  width: 1064px;
  padding: 118px 20px 22px;
  margin: 0 auto;
  overflow-x: auto;
}
.breadcrumb ul {
  display: flex;
  list-style: none;
  padding: 10px 0;
}
.breadcrumb li {
  margin-right: 0.5rem;
  font-size: 12px;
  white-space: nowrap;
}

.recaptcha-area {
  padding: 20px 0;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.password-area {
  position: relative;
}
.password-area .svg-mark {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.registration-step, .order-step {
  padding: 16px 0 24px;
}
.registration-step path, .order-step path {
  fill: var(--btn-normarl);
  stroke: var(--main-font-color);
}
.registration-step path.past, .order-step path.past {
  fill: var(--link-color);
  stroke: #fff;
}
.registration-step text, .order-step text {
  font-size: 20px;
}
.registration-step text.past, .order-step text.past {
  fill: #fff;
}
.registration-step svg.pc-none text, .order-step svg.pc-none text {
  font-size: 10px;
}

.order-step {
  padding-bottom: 44px;
}
.order-step text {
  fill: var(--main-font-color);
}
@media screen and (max-width: 1024px) {
  .order-step {
    padding-bottom: 30px;
  }
  .order-step svg {
    max-width: 100%;
  }
  .order-step text {
    font-size: 24px;
  }
}

.member-pagination {
  padding: 40px 0 56px;
  font-weight: bold;
}
.member-pagination .pagination {
  gap: 0 16px;
}
.member-pagination .active {
  background: var(--active-color);
  color: #fff;
}
.member-pagination .disabled {
  pointer-events: none;
}
.member-pagination button {
  padding: 0;
  background-color: #fff;
  color: var(--main-font-color);
  border: solid 1px #d6d3d0;
  border-radius: 9px;
  width: 45px;
}
.member-pagination .arrow svg path {
  fill: #4D4D4D;
}
.member-pagination .arrow.disabled {
  background: var(--btn-hover);
}
.member-pagination .arrow.disabled svg path {
  fill: var(--place-holder);
}

.contact-list {
  justify-content: space-around;
  font-size: 14px;
  padding-bottom: 56px;
}
.contact-list .reception-hour {
  font-size: 12px;
  padding-bottom: 21px;
}
.contact-list dl {
  grid-template-columns: max-content 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 8px;
}
.contact-list dt {
  padding: 0;
  margin: 0;
}
.contact-list dd {
  grid-column-gap: 24px;
}

/* 複数住所対応モーダル */
.business-modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.business-modal .modal-overlay {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.business-modal .modal-content {
  position: absolute;
  z-index: 1002;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  background: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  min-height: 300px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.business-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  width: auto;
}

.address-modal .modal-content {
  max-width: 500px;
}
.address-modal li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-bottom: 10px;
}
.address-modal li button {
  width: 72px;
  height: 35px;
  padding: 6px;
}

@media screen and (min-width: 1025px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sp-grid-col1 {
    grid-template-columns: 1fr;
  }
  .sp-span-col-1 {
    grid-column: span 1;
  }
  .sp-pt-4 {
    padding-top: 1rem;
  }
  .sp-px-16px {
    padding-left: 16px;
    padding-right: 16px;
  }
  .s-w-128 {
    width: 128px;
  }
  .s-w-141 {
    width: 141px;
  }
  .s-w-184 {
    width: 184px;
  }
  .s-w-208 {
    width: 208px;
  }
  .s-w-264 {
    width: 264px;
  }
  .s-w-full {
    width: 100%;
  }
  .s-h-32 {
    height: 32px;
  }
  .s-h-38 {
    height: 38px;
  }
  .text-large {
    font-size: 16px;
  }
  .text-normal {
    font-size: 14px;
  }
  .btn1 {
    padding: 8.5px 0;
    font-size: 14px;
  }
  .btn2, .btn3 {
    padding: 0;
    font-size: 14px;
  }
  h1, h2 {
    font-size: 16px;
  }
  #container {
    padding: 0 8px;
  }
  .breadcrumb {
    margin-top: 64px;
    width: 100%;
    padding: 0 0 0 24px;
  }
  .main-box {
    font-size: 12px;
  }
  .contact-list {
    grid-row-gap: 30px;
  }
  .contact-list h3 {
    padding-bottom: 6px;
  }
  .sp-none {
    display: none;
  }
}
