@charset "UTF-8";
:root {
  font-size: 16px;
  --color-text: #231815;
  --color-blue: #002469;
  --color-red: #aa1b49;
  --color-bg: #e8f1f8;
  --color-bg2: #f5f5f5;
  --color-yellow: #fce389;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
body a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  word-wrap: break-word;
}
body a:hover {
  opacity: 0.7;
  text-decoration: none;
  color: inherit;
}
body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  letter-spacing: 0.02em;
  font-weight: 700;
}
body p {
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  body p {
    line-height: 1.8;
  }
}

.p-contact-section {
  margin-top: 60px;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-contact-section {
    margin-top: 80px;
  }
}
.p-contact-section__lead {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .p-contact-section__lead {
    font-size: 18px;
  }
}
.p-contact-section__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--color-blue);
}
@media screen and (min-width: 1024px) {
  .p-contact-section__title {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

.p-contact-form__row {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid var(--color-blue);
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__row {
    flex-direction: row;
    padding: 24px 0;
    gap: 40px;
  }
}
.p-contact-form__row:last-of-type {
  border-bottom: 1px solid var(--color-blue);
}
.p-contact-form__row.is-no-border-bottom, .is-no-border-bottom .p-contact-form__row:last-of-type {
  border-bottom: none;
}
.p-contact-form__head {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__head {
    width: 35%;
    flex: 0 0 35%;
    font-size: 18px;
    flex-direction: row;
    align-items: center;
  }
}
.p-contact-form__head label {
  line-height: 1.4;
}
.p-contact-form__body {
  flex: 1;
  width: 100%;
}
.p-contact-form__body input[type=text],
.p-contact-form__body input[type=email],
.p-contact-form__body input[type=tel],
.p-contact-form__body input[type=date],
.p-contact-form__body select,
.p-contact-form__body textarea {
  width: 100%;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  border-radius: 4px;
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 1024px) {
  .p-contact-form__body input[type=text],
  .p-contact-form__body input[type=email],
  .p-contact-form__body input[type=tel],
  .p-contact-form__body input[type=date],
  .p-contact-form__body select,
  .p-contact-form__body textarea {
    padding: 14px 20px;
    font-size: 16px;
  }
}
.p-contact-form__body input[type=text]:focus,
.p-contact-form__body input[type=email]:focus,
.p-contact-form__body input[type=tel]:focus,
.p-contact-form__body input[type=date]:focus,
.p-contact-form__body select:focus,
.p-contact-form__body textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background-color: #fff;
}
.p-contact-form__body input[type=text]::-moz-placeholder, .p-contact-form__body input[type=email]::-moz-placeholder, .p-contact-form__body input[type=tel]::-moz-placeholder, .p-contact-form__body input[type=date]::-moz-placeholder, .p-contact-form__body select::-moz-placeholder, .p-contact-form__body textarea::-moz-placeholder {
  color: #aaa;
}
.p-contact-form__body input[type=text]::placeholder,
.p-contact-form__body input[type=email]::placeholder,
.p-contact-form__body input[type=tel]::placeholder,
.p-contact-form__body input[type=date]::placeholder,
.p-contact-form__body select::placeholder,
.p-contact-form__body textarea::placeholder {
  color: #aaa;
}
.p-contact-form__body select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"), linear-gradient(to right, #808080 0%, #808080 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: right 16px center, right 0 top 0;
  background-size: 24px, 56px 100%;
  padding-right: 70px;
  cursor: pointer;
}
.p-contact-form__body textarea {
  resize: vertical;
}
.p-contact-form__notice {
  margin-top: 15px;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
}
.p-contact-form__notice-title {
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 10px;
  font-size: 14px;
}
.p-contact-form__notice ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.p-contact-form__notice ul li {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .p-contact-form__notice ul li {
    font-size: 14px;
  }
}
.p-contact-form__note {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  color: var(--color-blue);
  text-decoration: underline;
}
.p-contact-form__note a {
  color: inherit;
}
.p-contact-form__zip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 700;
}
.p-contact-form__zip .wpcf7-form-control-wrap {
  max-width: 160px;
}
.p-contact-form__mark {
  font-size: 18px;
}
.p-contact-form__help {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__help {
    font-size: 16px;
  }
}
.p-contact-form__sub-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.p-contact-form__error-note {
  font-size: 14px;
  color: var(--color-red);
  margin-top: 12px;
  font-weight: 700;
}
.p-contact-form__privacy {
  text-align: center;
  margin: 40px 0;
  font-size: 14px;
}
.p-contact-form__privacy a {
  color: var(--color-blue);
  text-decoration: underline;
}
.p-contact-form__privacy a:hover {
  text-decoration: none;
}
.p-contact-form__submit {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.p-contact-form__submit .c-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}
.p-contact-form__submit .c-btn:disabled {
  cursor: not-allowed;
}
@media screen and (min-width: 768px) {
  .p-contact-form__submit {
    width: 520px;
  }
}

.is-required {
  display: inline-block;
  background-color: var(--color-red);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 2px;
  font-weight: 700;
  white-space: nowrap;
  vertical-align: middle;
}

.wpcf7-list-item {
  display: block;
  margin: 0 0 12px 0;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.wpcf7-list-item input[type=checkbox],
.wpcf7-list-item input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  background-color: #fff;
  margin: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.wpcf7-list-item input[type=checkbox]:checked,
.wpcf7-list-item input[type=radio]:checked {
  border-color: var(--color-blue);
}
.wpcf7-list-item input[type=checkbox]:checked::after,
.wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-blue);
}
.wpcf7-list-item input[type=radio] {
  border-radius: 50%;
}
.wpcf7-list-item input[type=radio]:checked::after {
  border-radius: 50%;
}
.wpcf7-list-item input[type=checkbox] {
  border-radius: 4px;
}
.wpcf7-list-item input[type=checkbox]:checked::after {
  width: 12px;
  height: 6px;
  background: none;
  border-left: 3px solid var(--color-blue);
  border-bottom: 3px solid var(--color-blue);
  transform: translate(-50%, -70%) rotate(-45deg);
}
.wpcf7-list-item .wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.wpcf7-list-item .p-insurance-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wpcf7-list-item .p-insurance-option .wpcf7-list-item {
  margin-bottom: 0;
}
.wpcf7-list-item .p-insurance-option .p-contact-form__notice {
  margin-top: 10px;
  margin-left: 30px;
}
.wpcf7-list-item .p-insurance-option .p-contact-form__note {
  margin-top: 5px;
  margin-left: 30px;
}

.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 10px;
}
.wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.wpcf7-radio.is-full-width .wpcf7-list-item {
  width: 100%;
}

[data-name=textarea-reason] {
  display: block;
  margin-top: 20px;
}

.confirm-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.confirm-child .p-contact-form__sub-label {
  font-size: 14px;
  margin-bottom: 5px;
}

.l-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-container-narrow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.l-header {
  width: 100%;
  position: fixed;
  z-index: 100;
  height: 50px;
  background: #fff;
  top: 0;
}
.admin-bar .l-header {
  top: 46px;
}
@media screen and (min-width: 1024px) {
  .l-header {
    height: 80px;
    background: none;
    position: absolute;
    top: 0;
  }
  .admin-bar .l-header {
    top: 36px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.l-header__logo {
  margin: 0;
  line-height: 1;
  padding-left: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1150px) {
  .l-header__logo {
    padding-left: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__logo {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__logo {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.l-header__logo img {
  height: 17.8px;
  width: auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .l-header__logo img {
    height: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__logo img {
    height: 42px;
  }
}
.l-header__actions {
  display: flex;
  align-self: stretch;
  position: fixed;
  z-index: 10000;
  height: 50px;
  right: 0;
  top: 0;
}
.admin-bar .l-header__actions {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .l-header__actions {
    top: 46px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__actions {
    position: fixed;
    z-index: 10000;
    height: 80px;
  }
}

.c-header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  height: 50px;
}
@media screen and (min-width: 1024px) {
  .c-header-btn {
    padding: 0 30px;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .c-header-btn {
    padding: 0 40px;
  }
}
.c-header-btn:hover {
  opacity: 0.8;
  color: #fff;
}
.c-header-btn--red {
  background-color: var(--color-red);
  border-bottom-left-radius: 17.7px;
  padding-left: 10px;
}
@media screen and (min-width: 1024px) {
  .c-header-btn--red {
    border-bottom-left-radius: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .c-header-btn--red {
    border-bottom-left-radius: 40px;
    padding-left: 50px;
  }
}
.c-header-btn--blue {
  display: none;
  background-color: var(--color-blue);
}
@media screen and (min-width: 1024px) {
  .c-header-btn--blue {
    display: flex;
    position: fixed;
    bottom: 100px;
    right: 0;
    width: 80px;
    height: auto;
    flex-direction: column;
    padding: 18px 0;
    border-radius: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-header-btn--blue .c-header-btn__icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .c-header-btn--blue .c-header-btn__icon img {
    width: 40px;
  }
}
.c-header-btn__icon {
  margin-right: 8px;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .c-header-btn__icon {
    margin-right: 12px;
  }
}
.c-header-btn__icon img {
  width: 30px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .c-header-btn__icon img {
    width: 58px;
  }
}
.c-header-btn__text {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-right: 3px;
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .c-header-btn__text {
    margin-right: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1280px) {
  .c-header-btn__text {
    font-size: 1.5rem;
  }
}
.c-header-btn--blue .c-header-btn__text {
  font-size: 17px;
}
@media screen and (min-width: 1024px) {
  .c-header-btn--blue .c-header-btn__text {
    margin-right: 0;
    margin-bottom: 5px;
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
    font-size: 14px;
    line-height: 1.5;
  }
}
.c-header-btn__play {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .c-header-btn__play {
    width: 24px;
    height: 24px;
  }
}
.c-header-btn__play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  margin-left: 2px;
}
@media screen and (min-width: 1024px) {
  .c-header-btn__play::after {
    border-width: 5px 0 5px 7px;
    margin-left: 3px;
  }
}
@media screen and (min-width: 1280px) {
  .c-header-btn__play::after {
    border-width: 6px 0 6px 9px;
  }
}
.c-header-btn__play--red::after {
  border-color: transparent transparent transparent var(--color-red);
}
.c-header-btn__play--blue::after {
  border-color: transparent transparent transparent var(--color-blue);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.c-btn {
  display: inline-flex;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: auto;
  }
}
.c-btn {
  align-items: stretch;
  gap: 4px;
  /* ボタン全体の隙間 */
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn__main, .c-btn__icon {
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.c-btn__main {
  flex: 1;
  color: var(--color-blue);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .c-btn__main {
    padding: 20px 80px;
    font-size: 30px;
  }
}
.c-btn__icon {
  width: 60px;
}
@media screen and (min-width: 1024px) {
  .c-btn__icon {
    width: 80px;
  }
}
.c-btn__icon img {
  width: 30px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .c-btn__icon img {
    width: 40px;
  }
}

/* 白ボタンバリエーション */
.c-btn--white .c-btn__main {
  background-color: #fff;
  border: 0.56px solid var(--color-blue);
}
.c-btn--white .c-btn__icon {
  background-color: #fff;
  border: 0.56px solid var(--color-blue);
}

/* 青ボタンバリエーション */
.c-btn--blue .c-btn__main,
.c-btn--blue .c-btn__icon {
  background-color: var(--color-blue);
  border: none;
}
.c-btn--blue .c-btn__main {
  color: #fff;
}
.c-btn--blue .c-btn__icon img {
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
[data-animate=fade-up] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-animate=fade-in] {
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

[data-animate=clip-reveal] .c-sec-title__en {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: clip-path;
}

[data-animate=fade-up].is-animated,
[data-animate=fade-in].is-animated {
  opacity: 1;
  transform: none;
}

[data-animate=clip-reveal].is-animated .c-sec-title__en {
  clip-path: inset(0 0% 0 0);
}

[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="150"] {
  transition-delay: 0.15s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="250"] {
  transition-delay: 0.25s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

/* ==========================================================================
   Footer Catchcopy
   ========================================================================== */
.p-footer-catchcopy {
  background-color: var(--color-blue);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-footer-catchcopy {
    font-size: 25px;
    padding: 24px;
  }
}

/* ==========================================================================
   Footer CTA
   ========================================================================== */
.l-footer-cta {
  background-image: url(../images/common/cta-bg.jpg);
  background-size: cover;
  background-position: left bottom;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .l-footer-cta {
    padding: 80px 0 100px;
  }
}
.l-footer-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.l-footer-cta__icon {
  margin: 0 auto 24px;
}
@media screen and (min-width: 1024px) {
  .l-footer-cta__icon {
    margin-bottom: 30px;
  }
}
.l-footer-cta__icon img {
  width: 120px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-footer-cta__icon img {
    width: 170px;
  }
}
.l-footer-cta__sub {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .l-footer-cta__sub {
    font-size: 25px;
  }
}
.l-footer-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1024px) {
  .l-footer-cta__title {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}
.l-footer-cta__btn .c-btn {
  color: var(--color-blue);
  min-width: 280px;
}
@media screen and (min-width: 1024px) {
  .l-footer-cta__btn .c-btn {
    min-width: 340px;
  }
}

/* ==========================================================================
   SP Fixed CTA
   ========================================================================== */
.p-top-spcta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .p-top-spcta {
    display: none;
  }
}
.p-top-spcta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-top-spcta__link:hover {
  opacity: 0.9;
}
.p-top-spcta__link--blue {
  flex: 1;
  background-color: var(--color-blue);
  padding: 0 15px;
}
.p-top-spcta__link--top {
  width: 60px;
  flex-direction: column;
  background-color: #b68b19;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.p-top-spcta__text {
  font-weight: 700;
  font-size: 13px;
  margin-right: 15px;
}
.p-top-spcta__play {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-spcta__play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent var(--color-blue);
  margin-left: 1.5px;
}
.p-top-spcta__arrow {
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(45deg);
  margin-bottom: 3px;
  margin-top: 6px;
}
.p-top-spcta__top-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.l-footer {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .l-footer {
    margin-bottom: 0;
  }
}
.l-footer__main {
  background-color: #fff;
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}
@media screen and (min-width: 1024px) {
  .l-footer__main {
    padding: 80px 0 80px;
  }
}
.l-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .l-footer__grid {
    flex-direction: row;
    align-items: flex-end;
    gap: 50px;
  }
}
.l-footer__info {
  flex: 0 0 auto;
}
@media screen and (min-width: 1024px) {
  .l-footer__info {
    min-width: 280px;
  }
}
.l-footer__logo {
  margin-bottom: 30px;
}
.l-footer__logo img {
  height: 36px;
  width: auto;
  margin-left: -6px;
}
.l-footer__shops {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.l-footer__shop-name {
  font-size: 0.9rem;
  font-weight: 700;
}
.l-footer__shop-address {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0px;
}
.l-footer__shop-tel {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
}
.l-footer__cta-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .l-footer__cta-cards {
    flex-direction: row;
    gap: 20px;
  }
}
.l-footer__cta-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
  flex: 1;
}
.l-footer__cta-card:hover {
  opacity: 0.85;
}
.l-footer__cta-card img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 450px;
}
.l-footer__bottom {
  background-color: #fff;
}
.l-footer__bottom .l-container {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.l-footer__bottom .l-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: #e5e5e5;
}
@media screen and (min-width: 1024px) {
  .l-footer__bottom .l-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.l-footer__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-footer__nav a {
  font-size: 0.8rem;
  color: var(--color-text);
  text-decoration: none;
}
.l-footer__nav a:hover {
  text-decoration: underline;
}
.l-footer__nav span {
  font-size: 0.8rem;
  color: #999;
}
.l-footer__chintai-link {
  font-size: 0.8rem;
}
.l-footer__chintai-link a {
  color: var(--color-blue);
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.l-footer__chintai-link a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .l-footer__chintai-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.l-footer__chintai-icon {
  width: 14px;
  height: auto;
}
.l-footer__copy {
  font-size: 0.75rem;
  color: #000;
  margin: 0;
}
.l-footer__totop {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .l-footer__totop {
    display: flex !important;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-color: #b68b19;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
  }
}
.l-footer__totop-arrow {
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-bottom: 4px;
}
.l-footer__totop-text {
  font-size: 0.6rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .l-footer__totop-text {
    font-size: 14px;
  }
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.p-page-header {
  background-color: var(--color-bg);
  background-image: url(../images/header/header-bg.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: 3.2rem 20px;
  text-align: center;
  width: 100%;
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .p-page-header {
    padding: 4rem 20px 3.8rem;
    margin-top: 120px;
  }
}
.p-page-header__inner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-page-header__title {
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.5;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-page-header__title {
    font-size: 45px;
  }
}
.p-page-header__subtitle {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  margin-top: 8px;
  color: var(--color-blue);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .p-page-header__subtitle {
    font-size: 18px;
    margin-top: 12px;
  }
}
.p-page-header {
  /* 404 page specific */
}
.p-page-header__ttl {
  display: inline-flex;
  flex-direction: column;
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.5;
}
.p-page-header__ttl-en {
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .p-page-header__ttl-en {
    font-size: 32px;
  }
}
.p-page-header__ttl-ja {
  font-size: 14px;
  margin-top: 4px;
}
@media screen and (min-width: 1024px) {
  .p-page-header__ttl-ja {
    font-size: 16px;
  }
}
body.is-residen-family .p-page-header {
  background-color: var(--color-bg2);
  background-image: url(../images/header/header-bg.svg);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.p-breadcrumb {
  padding: 8px 0;
}
@media screen and (min-width: 1024px) {
  .p-breadcrumb {
    padding: 10px 0;
  }
}
.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}
.p-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: var(--color-text);
}
@media screen and (min-width: 1024px) {
  .p-breadcrumb__item {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: ">";
  display: inline-block;
  margin: 0 12px;
  color: var(--color-text);
}
.p-breadcrumb__link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-breadcrumb__link:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Slash Deco Component (c-slash-deco)
   ========================================================================== */
.c-slash-deco {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.c-slash-deco::before {
  content: "＼";
  font-weight: 700;
  color: inherit;
}
.c-slash-deco::after {
  content: "／";
  font-weight: 700;
  color: inherit;
}

/* ==========================================================================
   Parking Image Component (c-parking-img)
   ========================================================================== */
.c-parking-img {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .c-parking-img {
    margin-top: 60px;
  }
}
.c-parking-img picture,
.c-parking-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Responsive Visibility Utilities
   ========================================================================== */
.sm-up {
  display: none;
}
@media screen and (min-width: 640px) {
  .sm-up {
    display: block;
  }
}

.sm-down {
  display: block;
}
@media screen and (min-width: 640px) {
  .sm-down {
    display: none;
  }
}

.md-up {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-up {
    display: block;
  }
}

.md-down {
  display: block;
}
@media screen and (min-width: 768px) {
  .md-down {
    display: none;
  }
}

.lg-up {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg-up {
    display: block;
  }
}

.lg-down {
  display: block;
}
@media screen and (min-width: 1024px) {
  .lg-down {
    display: none;
  }
}

.xl-up {
  display: none;
}
@media screen and (min-width: 1280px) {
  .xl-up {
    display: block;
  }
}

.xl-down {
  display: block;
}
@media screen and (min-width: 1280px) {
  .xl-down {
    display: none;
  }
}

.xxl-up {
  display: none;
}
@media screen and (min-width: 1536px) {
  .xxl-up {
    display: block;
  }
}

.xxl-down {
  display: block;
}
@media screen and (min-width: 1536px) {
  .xxl-down {
    display: none;
  }
}