@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* スタイルを当てやすいように追加 */
picture,
img,
a,
span {
  display: inline-block;
}

a {
  color: inherit;
  text-decoration: none;
}

video,
img,
svg {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  color: #2f3e55;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #eef3fa;
  background-image: radial-gradient(ellipse 115% 65% at 100% -5%, rgba(64, 114, 179, 0.09), transparent 55%), radial-gradient(ellipse 90% 55% at -5% 30%, rgba(174, 196, 229, 0.38), transparent 48%), -webkit-gradient(linear, left top, left bottom, from(#eef3fa), color-stop(45%, #fafcfe), to(#f1f6fb));
  background-image: radial-gradient(ellipse 115% 65% at 100% -5%, rgba(64, 114, 179, 0.09), transparent 55%), radial-gradient(ellipse 90% 55% at -5% 30%, rgba(174, 196, 229, 0.38), transparent 48%), linear-gradient(180deg, #eef3fa 0%, #fafcfe 45%, #f1f6fb 100%);
}

@media screen and (max-width: 1099px) {
  body.is-checked {
    overflow: hidden;
    -ms-touch-action: none;
        touch-action: none;
  }
}
body:not(.home) {
  padding-top: 100px;
}

.hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: block;
  }
}

.hidden-sp {
  display: block;
}
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 648px;
    padding: 0 1.5rem;
  }
}

.l-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .l-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.c-title__ja {
  display: block;
  font-size: clamp(26px, 5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f3e55;
}
.c-title__en {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #4072b3;
  margin-top: 0.625rem;
}
.c-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #4072b3;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(4px, 0.6vw, 8px);
  padding: clamp(12px, 1.2vw, 18px);
  font-size: clamp(14px, 1.111vw, 16px);
  font-weight: 500;
  color: #ffffff;
  border: 2px solid #4072b3;
  border-radius: 9999px;
  position: relative;
  background: #4072b3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
@media (any-hover: hover) {
  .c-btn:hover {
    background: #ffffff;
    color: #4072b3;
    border-color: #4072b3;
    -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  }
}

.c-cta {
  padding: 4rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--bg-gradient, linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%));
}
.c-cta__inner {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 12px 32px rgba(64, 114, 179, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
          box-shadow: 0 12px 32px rgba(64, 114, 179, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  max-width: 720px;
  text-align: center;
}
.c-cta {
  /* タイトル */
}
.c-cta__title {
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  color: var(--color-main);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.c-cta__title span {
  font-weight: 700;
  color: #4072b3;
  display: inline;
  padding: 0 4px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, rgba(235, 134, 134, 0.3)));
  background: linear-gradient(transparent 65%, rgba(235, 134, 134, 0.3) 65%);
}
.c-cta {
  /* テキスト */
}
.c-cta__text {
  color: var(--color-main);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.c-section {
  padding-block: clamp(50px, 7vw, 100px);
}

.c-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #4072b3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
}
.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.c-pagetop svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-pagetop:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.c-pagetop:hover svg {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.p-header__pc {
  z-index: 101;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%);
}
@media screen and (max-width: 1099px) {
  .p-header__pc {
    display: none;
  }
}

.p-header__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  padding: 0.75rem 1.25rem 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0;
}

.p-header-top .p-drawer__icon {
  background: none;
  border: none;
  padding: 0;
}

.p-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 120px;
    height: 60px;
  }
}

.p-header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 3.75rem;
  margin: 0;
  min-height: 0;
  width: 100%;
}
@media screen and (max-width: 1099px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 3.5rem;
}
.p-header__list li a {
  font-size: 1rem;
  font-weight: 500;
  color: #2f3e55;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.p-header__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__list li a:hover {
    opacity: 0.6;
  }
  .p-header__list li a:hover::after {
    width: 100%;
  }
}

.p-header__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.p-header__sp {
  display: none;
}
@media screen and (max-width: 1099px) {
  .p-header__sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%);
  }
}

.p-header-top__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1.5rem;
}

.p-header-top__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-header-top__logo img {
  height: 70px;
  width: auto;
}

.p-header-top__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.p-header-top .p-drawer__icon {
  position: static;
}

.p-header-top__contact {
  font-size: clamp(0.875rem, 1.111vw, 1rem);
  padding: 1.125rem;
  border-radius: 999px;
  background: #4072b3;
  border: 2px solid #4072b3;
}

.p-header-page {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  border-bottom: 1px solid #e5e8ef;
  background: linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%);
}

.p-header-page__inner {
  position: relative;
  min-height: 70px;
  max-width: 1320px;
  padding: 0 2.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1099px) {
  .p-header-page__inner {
    padding: 0 1.5rem;
  }
}

/* ロゴ（TOP の SP ヘッダーと同じ 70px 相当） */
.p-header-page__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-header-page__logo img {
  height: 70px;
  width: auto;
}

/* ナビ */
.p-header-page__nav {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1099px) {
  .p-header-page__nav {
    display: none;
  }
}

.p-header-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.p-header-page__list li a {
  font-size: 1rem;
  font-weight: 500;
  color: #4072b3;
  position: relative;
  padding-bottom: 0.25rem;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.p-header-page__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #4072b3;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (any-hover: hover) {
  .p-header-page__list li a:hover {
    opacity: 0.6;
  }
  .p-header-page__list li a:hover::after {
    width: 100%;
  }
}

.header-page__btn {
  margin-left: auto;
}

.p-drawer__icon {
  display: none;
}
@media screen and (max-width: 1099px) {
  .p-drawer__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 102;
  }
}

.p-drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #2f3e55;
}

.p-drawer__icon.is-checked .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.p-drawer__icon.is-checked .p-drawer__icon--bar:nth-of-type(2) {
  opacity: 0;
}
.p-drawer__icon.is-checked .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.p-drawer__backdrop {
  display: none;
}
@media screen and (max-width: 1099px) {
  .p-drawer__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47, 62, 85, 0.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .p-drawer__backdrop.is-checked {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.p-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 300px;
  height: 100dvh;
  background: #d9e7f6;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-drawer.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-drawer__body {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%);
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.125rem;
  margin-block: 2.5rem;
  -webkit-transform: translateY(2.25rem);
          transform: translateY(2.25rem);
}
.p-drawer__list li a {
  color: #2f3e55;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
}
.p-drawer__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (any-hover: hover) {
  .p-drawer__list li a:hover::after {
    width: 100%;
  }
}

.p-drawer__btn {
  padding: 0.5rem 1.125rem;
  border: 1px solid #4072b3;
  color: #4072b3;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 44px;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.p-fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: auto;
  }
}
.p-fv__emergency {
  position: absolute;
  top: clamp(1.5rem, 2vw, 5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(0.875rem, 2vw, 1.25rem);
  border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  z-index: 10;
}
@media screen and (max-width: 1099px) {
  .p-fv__emergency {
    top: calc(var(--header-height, 80px) + clamp(1rem, 2vw, 2.5rem));
  }
}
@media screen and (max-width: 767px) {
  .p-fv__emergency {
    position: static;
    margin: clamp(0.75rem, 4vw, 1rem);
    padding: 1.25rem 1rem;
    text-align: center;
  }
}
.p-fv__emergency-title {
  position: relative;
  font-weight: 700;
  color: #2f3e55;
  margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
}
.p-fv__emergency-title::before {
  width: 3px;
  height: clamp(0.875rem, 1.5vw, 1rem);
}
.p-fv__emergency-note {
  display: inline-block;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
  padding: clamp(0.25rem, 0.8vw, 0.375rem) clamp(0.625rem, 1.2vw, 0.875rem);
  border-radius: 999px;
  background: rgba(64, 114, 179, 0.1);
  color: #4072b3;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-fv__emergency-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.3125rem;
     -moz-column-gap: 0.3125rem;
          column-gap: 0.3125rem;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  padding-block: clamp(0.5rem, 3vw, 0.625rem);
}
.p-fv__emergency-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 8vw, 2.5rem);
  right: clamp(1.5rem, 8vw, 2.5rem);
  height: 1px;
  background: #e5e8ef;
}
.p-fv__emergency-item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: clamp(1.5rem, 8vw, 2.5rem);
  right: clamp(1.5rem, 8vw, 2.5rem);
  height: 1px;
  background: #e5e8ef;
}
.p-fv__emergency-item span {
  color: #6b7280;
}
.p-fv__emergency-item a {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #eb8686;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .p-fv__emergency-item a:hover {
    opacity: 0.85;
    text-decoration: underline;
  }
}
.p-fv__emergency-link {
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
  border-radius: clamp(0.375rem, 1vw, 0.5rem);
}
.p-fv__image {
  width: 100%;
  height: 100%;
  position: relative;
  isolation: isolate;
}
.p-fv__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(47, 62, 85, 0.18)), color-stop(38%, transparent), color-stop(58%, transparent), to(rgba(47, 62, 85, 0.5)));
  background: linear-gradient(180deg, rgba(47, 62, 85, 0.18) 0%, transparent 38%, transparent 58%, rgba(47, 62, 85, 0.5) 100%);
}
.p-fv-copy {
  position: absolute;
  bottom: clamp(1.5rem, 6vw, 7.5rem);
  left: clamp(1rem, 4vw, 5.375rem);
  max-width: min(33.75rem, 90vw);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.22);
  padding: 1.625rem 1.875rem;
  border-radius: 0.75rem;
  z-index: 5;
}
.p-fv-copy__lead {
  font-size: clamp(14px, 1.1vw, 16px);
  margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}
.p-fv-copy__catch {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.3;
}
.p-fv-copy__sub {
  margin-top: clamp(0.75rem, 2vw, 1rem);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.7;
}

.p-news {
  background: #ffffff;
}

.p-news__box {
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2.5rem);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.p-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

/* 1件 */
.p-news__item {
  position: relative;
  padding: 1rem 0;
  border-bottom: 1px solid #e5edf5;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.p-news__item:last-child {
  border-bottom: none;
}
.p-news__item {
  /* ←これがポイント（左ライン） */
}
.p-news__item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #4072b3;
  border-radius: 2px;
}
.p-news__item:hover {
  -webkit-box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  background: rgba(64, 114, 179, 0.05);
}
.p-news__item:last-child {
  border-bottom: none;
}

.p-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.375rem;
  }
}
.p-news__link:hover {
  opacity: 0.7;
}

.p-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  min-width: 120px;
}
@media screen and (max-width: 767px) {
  .p-news__meta {
    min-width: auto;
  }
}

.p-news__label {
  background: #eb8686;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

/* 日付 */
.p-news__date {
  font-size: 0.875rem;
  color: #c0c0c0;
  white-space: nowrap;
}

/* タイトル */
.p-news__title {
  font-size: clamp(0.9375rem, 1.18vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.6;
  color: #2f3e55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

/* hoverでタイトルだけ強調 */
.p-news__link:hover .p-news__title {
  color: #eb8686;
}

.p-news__more {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-news-archive__list {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.p-news-archive__item {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.75rem;
}

.p-news-archive__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-decoration: none;
  color: inherit;
}
.p-news-archive__link:hover {
  opacity: 0.7;
}

.p-news-archive__date {
  font-size: 0.875rem;
  color: #2f3e55;
  white-space: nowrap;
}

.p-news-archive__title {
  font-size: 1rem;
}

.p-news-archive__pagination {
  margin-top: 3rem;
  text-align: center;
}
.p-news-archive__pagination .page-numbers {
  margin: 0 0.25rem;
}
.p-news-archive__pagination .current {
  font-weight: 700;
}

.p-news-archive__empty {
  margin-top: 2rem;
  text-align: center;
  color: #2f3e55;
}

.p-news-single__inner {
  max-width: 720px;
  margin-inline: auto;
}

.p-news-single__header {
  margin-bottom: 2rem;
}

.p-news-single__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-news-single__date {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #2f3e55;
}

.p-news-single__content {
  font-size: 1rem;
  line-height: 1.8;
}
.p-news-single__content p {
  margin-bottom: 1.5em;
}
.p-news-single__content a {
  color: #eb8686;
  text-decoration: underline;
}
.p-news-single__content ul,
.p-news-single__content ol {
  margin-left: 1.2em;
  margin-bottom: 1.5em;
}

.p-news-single__back {
  margin-top: 3rem;
  text-align: center;
}

.p-contact__inner {
  width: min(729px, 100%);
  margin-inline: auto;
}

/* ======================
   フォーム全体
====================== */
.contact {
  /* ======================
     行
  ====================== */
}
.contact__row {
  display: grid;
  grid-template-columns: 212px minmax(0, 1fr);
  -webkit-column-gap: clamp(1rem, 3vw, 1.875rem);
     -moz-column-gap: clamp(1rem, 3vw, 1.875rem);
          column-gap: clamp(1rem, 3vw, 1.875rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .contact__row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.contact__row > * {
  min-width: 0;
}
.contact__row.--aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__data {
  min-width: 0;
  max-width: 100%;
}
.contact__data .wpcf7-form-control-wrap {
  display: block;
  max-width: 100%;
}
.contact {
  /* ======================
     ラベル
  ====================== */
}
.contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .contact__head {
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
  }
}
.contact__head span.--must {
  position: relative;
  display: inline-block;
}
.contact__head span.--must::after {
  content: "必須";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: calc(100% + 10px);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #4072b3;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.contact {
  /* ======================
     フォーム / 入力系
  ====================== */
}
.contact__form {
  min-width: 0;
  max-width: 100%;
}
.contact__form .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(1rem, 3vw, 1.875rem);
  min-width: 0;
  max-width: 100%;
}
.contact__form input[type=text],
.contact__form input[type=email],
.contact__form input[type=tel],
.contact__form select,
.contact__form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 0;
  border: 1px solid #2f3e55;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(0.75rem, 2vw, 1rem);
  background: #f9fbfd;
  color: rgba(47, 62, 85, 0.55);
  font-size: clamp(0.875rem, 1.111vw, 1rem);
  line-height: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__form input[type=text]::-webkit-input-placeholder, .contact__form input[type=email]::-webkit-input-placeholder, .contact__form input[type=tel]::-webkit-input-placeholder, .contact__form select::-webkit-input-placeholder, .contact__form textarea::-webkit-input-placeholder {
  color: #c0c0c0;
}
.contact__form input[type=text]::-moz-placeholder, .contact__form input[type=email]::-moz-placeholder, .contact__form input[type=tel]::-moz-placeholder, .contact__form select::-moz-placeholder, .contact__form textarea::-moz-placeholder {
  color: #c0c0c0;
}
.contact__form input[type=text]:-ms-input-placeholder, .contact__form input[type=email]:-ms-input-placeholder, .contact__form input[type=tel]:-ms-input-placeholder, .contact__form select:-ms-input-placeholder, .contact__form textarea:-ms-input-placeholder {
  color: #c0c0c0;
}
.contact__form input[type=text]::-ms-input-placeholder, .contact__form input[type=email]::-ms-input-placeholder, .contact__form input[type=tel]::-ms-input-placeholder, .contact__form select::-ms-input-placeholder, .contact__form textarea::-ms-input-placeholder {
  color: #c0c0c0;
}
.contact__form input[type=text]::placeholder,
.contact__form input[type=email]::placeholder,
.contact__form input[type=tel]::placeholder,
.contact__form select::placeholder,
.contact__form textarea::placeholder {
  color: #c0c0c0;
}
.contact__form input[type=text]:focus,
.contact__form input[type=email]:focus,
.contact__form input[type=tel]:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: #4072b3;
  background: #fff;
  color: rgba(47, 62, 85, 0.75);
  outline: none;
}
.contact__form textarea {
  min-height: clamp(7.5rem, 15vw, 10rem);
  resize: vertical;
}
.contact {
  /* ======================
     セレクト
  ====================== */
}
.contact__select-wrap {
  position: relative;
}
.contact__select-wrap svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: clamp(0.375rem, 1vw, 0.625rem);
  width: 17px;
  height: 8px;
  pointer-events: none;
}
@media (any-hover: hover) {
  .contact__select-wrap:hover {
    cursor: pointer;
  }
}
.contact select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.contact {
  /* ======================
     チェックボックス
  ====================== */
}
.contact input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.contact__data-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.625rem, 2vw, 1.25rem) clamp(1.25rem, 4vw, 2.5rem);
}
.contact__data-checkbox .wpcf7-list-item {
  width: calc(50% - clamp(0.625rem, 2vw, 1.25rem));
  margin: 0;
}
@media screen and (max-width: 767px) {
  .contact__data-checkbox .wpcf7-list-item {
    width: calc(50% - 0.625rem);
  }
}
.contact__data-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.25rem, 1vw, 0.5rem);
}
.contact__data-checkbox .wpcf7-list-item-label {
  font-size: clamp(0.875rem, 1.111vw, 1rem);
}
.contact__data-checkbox input[type=checkbox] {
  position: static;
  width: 22px;
  height: 22px;
  clip: auto;
}
.contact {
  /* ======================
     ラジオ
  ====================== */
}
.contact input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.contact__data-radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.contact__data-radio span {
  display: block;
  font-size: clamp(0.875rem, 1.111vw, 1rem);
  text-align: center;
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.5rem, 1.5vw, 0.625rem);
  border: 1px solid #000;
}
.contact__data-radio label:not(:last-of-type) span {
  border-right: none;
}
.contact input[type=radio]:checked + span {
  background: #000;
  color: #fff;
}
.contact {
  /* ======================
     同意
  ====================== */
}
.contact__acceptance {
  text-align: center;
  margin-bottom: clamp(0.625rem, 2vw, 1rem);
}
.contact__acceptance a {
  font-weight: 700;
  color: #000;
}
.contact__acceptance input[type=checkbox] {
  position: static;
  width: 20px;
  height: 20px;
  clip: auto;
}
.contact__acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact {
  /* ======================
     送信ボタン
  ====================== */
}
.contact__form .contact__submit {
  text-align: center;
  width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
}
.contact__form .contact__submit p {
  position: relative;
  display: inline-block;
  margin: 0;
  text-align: center;
}
.contact__form .contact__submit .wpcf7-form-control-wrap {
  display: inline-block;
}
.contact__form .contact__submit input[type=submit],
.contact__form .contact__submit .wpcf7-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  cursor: pointer;
}
.contact__form .contact__submit .wpcf7-spinner {
  position: absolute;
  left: 100%;
  top: 50%;
  translate: 0 -50%;
  margin: 0 0 0 0.5rem;
}

.p-swiper-container,
.p-swiper,
.p-swiper-wrapper,
.p-swiper-slide {
  position: relative;
}

.p-swiper-container {
  height: 100vh;
  overflow: hidden;
}

.p-swiper {
  overflow: hidden;
  height: 100%;
}

.p-swiper-wrapper {
  width: 100%;
  height: 100%;
}

.p-swiper-slide {
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  background-blend-mode: lighten;
  opacity: 0.8;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.p-swiper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 7s ease-out;
  transition: -webkit-transform 7s ease-out;
  transition: transform 7s ease-out;
  transition: transform 7s ease-out, -webkit-transform 7s ease-out;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

.swiper-slide-active img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05); /* 拡大状態 */
  z-index: 1; /* スライドの重なりを上に */
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
  -webkit-animation: zoomUp 7s ease-out forwards;
          animation: zoomUp 7s ease-out forwards;
}

.p-strength {
  background: #e9f1fa;
  text-align: center;
}

.p-strength__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.p-strength__lead {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(174, 196, 229, 0.6)));
  background: linear-gradient(transparent 60%, rgba(174, 196, 229, 0.6) 60%);
  padding: 0 clamp(0.25rem, 0.5vw, 0.625rem);
  line-height: 2;
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
}
@media screen and (max-width: 767px) {
  .p-strength__lead {
    margin-top: 0.75rem;
  }
}

.p-strength__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
@media screen and (max-width: 1099px) {
  .p-strength__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-strength__list .p-strength__item:nth-child(3) {
    grid-column: 1/-1;
    max-width: 400px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-strength__list {
    grid-template-columns: 1fr;
  }
}

.p-strength__item {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.p-strength__img {
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.p-strength__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-strength__item-title {
  font-size: 1.25rem;
  display: inline;
  font-weight: 700;
  line-height: 1.4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, rgba(235, 134, 134, 0.3)));
  background: linear-gradient(transparent 65%, rgba(235, 134, 134, 0.3) 65%);
}

.p-strength__item-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: 0.625rem;
  color: rgba(47, 62, 85, 0.8);
  text-align: left;
}

.p-about {
  background: linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%);
}
.p-about__card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 3rem);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 767px) {
  .p-about__card {
    border-radius: 16px;
  }
}
.p-about__card::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 0;
  width: 4px;
  background: #0a7bc2;
}
@media screen and (max-width: 767px) {
  .p-about__card::before {
    display: none;
  }
}
.p-about__block {
  display: grid;
  grid-template-columns: 260px 1fr;
  -webkit-column-gap: clamp(1rem, 3vw, 2.5rem);
     -moz-column-gap: clamp(1rem, 3vw, 2.5rem);
          column-gap: clamp(1rem, 3vw, 2.5rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about__block {
    grid-template-columns: 1fr;
    row-gap: clamp(1rem, 4vw, 1.5rem);
  }
}
.p-about__img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    max-width: 200px;
    margin-inline: auto;
  }
}
.p-about__img img {
  width: 100%;
  max-height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-about__text {
  font-size: 1rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    text-align: center;
  }
}
.p-about__name {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__name {
    font-size: 1.5rem;
  }
}
.p-about__role {
  font-size: 0.875rem;
  color: #4072b3;
}
.p-about__lead {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}
.p-about__body {
  font-size: 0.9375rem;
}
.p-about__link {
  margin-left: clamp(0.375rem, 1vw, 0.5rem);
  font-size: 0.875rem;
  color: #4072b3;
  border-bottom: 1px solid rgba(64, 114, 179, 0.3);
}

.p-about-page {
  /* ======================
     見出し
  ====================== */
}
.p-about-page__heading {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.p-about-page__heading .c-heading__en {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #4072b3;
}
.p-about-page__heading .c-heading__jp {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-about-page__heading .c-heading__jp {
    font-size: 1.5rem;
  }
}
.p-about-page__heading .c-heading__jp {
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}
.p-about-page__heading .c-heading__jp::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #4072b3;
}
@media screen and (max-width: 767px) {
  .p-about-page__heading .c-heading__jp::after {
    width: 32px;
    height: 2px;
  }
}
.p-about-page {
  /* ======================
     ブロック
  ====================== */
}
.p-about-page__block {
  display: grid;
  grid-template-columns: 380px 1fr;
  -webkit-column-gap: clamp(2rem, 6vw, 5rem);
     -moz-column-gap: clamp(2rem, 6vw, 5rem);
          column-gap: clamp(2rem, 6vw, 5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1100px;
  margin-inline: auto;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(3.75rem, 8vw, 8.75rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1099px) {
  .p-about-page__block {
    grid-template-columns: 300px 1fr;
    row-gap: clamp(2rem, 5vw, 3rem);
  }
}
@media screen and (max-width: 767px) {
  .p-about-page__block {
    grid-template-columns: 1fr;
    row-gap: clamp(1.5rem, 4vw, 2rem);
  }
}
.p-about-page {
  /* ======================
     画像
  ====================== */
}
.p-about-page__img {
  position: relative;
}
.p-about-page__img img {
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
.p-about-page__img::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: #e9f1fa;
  border-radius: 16px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-about-page__img::before {
    top: 10px;
    left: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-page__img {
    max-width: 280px;
    margin-inline: auto;
  }
}
.p-about-page {
  /* ======================
     テキスト
  ====================== */
}
.p-about-page__text {
  max-width: 640px;
}
@media screen and (max-width: 767px) {
  .p-about-page__text {
    max-width: 100%;
    text-align: left;
  }
}
.p-about-page__name {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-about-page__name {
    font-size: 1.5rem;
  }
}
.p-about-page__role {
  font-size: 1rem;
  color: #4072b3;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1099px) {
  .p-about-page__role {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-page__role {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
}
.p-about-page {
  /* リード */
}
.p-about-page__lead {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #2f3e55;
}
@media screen and (max-width: 767px) {
  .p-about-page__lead {
    font-size: 1rem;
  }
}
.p-about-page {
  /* 本文 */
}
.p-about-page__body {
  font-size: 1.0625rem;
  line-height: 2;
  color: #2f3e55;
}
@media screen and (max-width: 767px) {
  .p-about-page__body {
    font-size: 0.875rem;
  }
}
.p-about-page__body p + p {
  margin-top: clamp(0.75rem, 2vw, 1rem);
}
.p-about-page {
  /* ======================
     署名
  ====================== */
}
.p-about-page__sign {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  text-align: right;
}
.p-about-page__company {
  font-size: 1rem;
  color: #2f3e55;
}
.p-about-page__sign-name {
  font-family: "Shippori Mincho", serif;
  font-size: 1.375rem;
  margin-top: 0.5rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-about-page__sign-name {
    font-size: 1.125rem;
  }
}
.p-about-page {
  /* ======================
     スタッフ
  ====================== */
}
.p-about-page__staff-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  -webkit-column-gap: clamp(2rem, 6vw, 5rem);
     -moz-column-gap: clamp(2rem, 6vw, 5rem);
          column-gap: clamp(2rem, 6vw, 5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 900px;
  margin-inline: auto;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1099px) {
  .p-about-page__staff-block {
    grid-template-columns: 200px 1fr;
    row-gap: clamp(2rem, 5vw, 3rem);
  }
}
.p-about-page__staff-block {
  /* 🔥 追加（ここが重要） */
}
@media screen and (max-width: 767px) {
  .p-about-page__staff-block {
    grid-template-columns: 1fr;
    row-gap: clamp(1.25rem, 4vw, 1.75rem);
    text-align: center;
  }
}
.p-about-page__img--staff img {
  border-radius: 12px;
  max-width: 240px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about-page__img--staff img {
    max-width: 200px;
  }
}
.p-about-page__img--staff::before {
  display: none;
}
.p-about-page__lead--staff {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-about-page__lead--staff {
    font-size: 0.875rem;
  }
}

.p-company {
  background: linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%);
}
.p-company__card {
  background: #ffffff;
  padding: clamp(1.5rem, 4vw, 4rem) clamp(1.25rem, 4vw, 3.75rem);
  border-radius: 20px;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.p-company__table {
  width: 100%;
}
.p-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 3vw, 1.25rem);
  border-radius: 12px;
  background: #e9f1fa;
  border: 1px solid #edf1f5;
  margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
@media (any-hover: hover) {
  .p-company__row:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  }
}
.p-company__row:first-child {
  background: transparent;
  border: none;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.p-company__row:first-child dt {
  font-size: clamp(14px, 0.831rem + 0.188vw, 16px);
  color: #4072b3;
}
.p-company__row:first-child dd {
  font-size: clamp(18px, 1.038rem + 0.376vw, 22px);
  font-weight: 700;
}
.p-company__row dt {
  min-width: 140px;
  font-weight: 700;
  color: #4072b3;
  font-size: clamp(14px, 0.852rem + 0.094vw, 15px);
  letter-spacing: 0.08em;
}
.p-company__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #2f3e55;
  font-size: clamp(14px, 0.831rem + 0.188vw, 16px);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .p-company__row dt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(14px, 0.831rem + 0.188vw, 16px);
    padding: 4px 10px;
    background: rgba(64, 114, 179, 0.1);
    border-radius: 6px;
    text-align: center;
  }
}
.p-company__tel {
  display: inline-block;
  background: #4072b3;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  padding: clamp(0.5rem, 1.5vw, 0.625rem) clamp(0.875rem, 2.5vw, 1.125rem);
  font-size: clamp(14px, 0.831rem + 0.188vw, 16px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-company__tel:hover {
    background: #4072b3;
  }
}
.p-company__map {
  background: #ffffff;
  padding: clamp(0.75rem, 2vw, 1rem);
  border-radius: 16px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.p-company__map-title {
  font-size: clamp(14px, 0.831rem + 0.188vw, 16px);
  font-weight: 700;
  color: #4072b3;
  margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}
.p-company__map iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 40vw, 420px);
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.p-faq-top {
  background: linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%);
}
.p-faq-top__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}
@media screen and (max-width: 1099px) {
  .p-faq-top__cards {
    grid-template-columns: 1fr;
  }
}
.p-faq-top__card {
  position: relative;
  background: #ffffff;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 12px;
  border: 1px solid #e5e8ef;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.p-faq-top__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(1rem, 1.5vw, 1.25rem);
  bottom: clamp(1rem, 1.5vw, 1.25rem);
  width: 4px;
  background: #4072b3;
  border-radius: 2px;
}
.p-faq-top__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.375rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}
.p-faq-top__q span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #4072b3;
  font-weight: 700;
}
.p-faq-top__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.375rem;
  color: #2f3e55;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin-top: clamp(0.5rem, 1vw, 0.625rem);
  padding-top: clamp(0.5rem, 1vw, 0.625rem);
  border-top: 1px solid #e5e8ef;
}
.p-faq-top__a span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  color: #eb8686;
}
.p-faq-top__more {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.p-faq-top__more a {
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.p-faq {
  background: linear-gradient(118deg, #e4eef8 0%, #ffffff 42%, #f0f6fd 100%);
}
.p-faq__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 1.5vw, 1.5rem);
  -webkit-margin-before: clamp(2rem, 4vw, 4rem);
          margin-block-start: clamp(2rem, 4vw, 4rem);
}
@media screen and (max-width: 767px) {
  .p-faq__items {
    grid-template-columns: 1fr;
    -webkit-margin-before: clamp(1.5rem, 3vw, 2rem);
            margin-block-start: clamp(1.5rem, 3vw, 2rem);
  }
}
.p-faq__item {
  position: relative;
  background: #ffffff;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 12px;
  border: 1px solid #e5e8ef;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.p-faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(1rem, 1.5vw, 1.25rem);
  bottom: clamp(1rem, 1.5vw, 1.25rem);
  width: 4px;
  background: #4072b3;
  border-radius: 2px;
}
.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.75rem, 1vw, 1rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  cursor: pointer;
}
.p-faq__question-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-faq__question-label {
  color: #4072b3;
  margin-right: 0.375rem;
  font-weight: 700;
  font-family: "Jost", sans-serif;
}
.p-faq__icon {
  position: relative;
  width: clamp(0.875rem, 1vw, 1rem);
  height: clamp(0.875rem, 1vw, 1rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.25rem;
}
.p-faq__icon::before, .p-faq__icon::after {
  content: "";
  position: absolute;
  background: #4072b3;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-faq__icon::before {
  width: 100%;
  height: 2px;
}
.p-faq__icon::after {
  width: 2px;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-faq__icon.is-opened::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__answer-text {
  color: #2f3e55;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin-top: clamp(0.5rem, 1vw, 0.625rem);
  padding-top: clamp(0.5rem, 1vw, 0.625rem);
  border-top: 1px solid #e5e8ef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(0.375rem, 0.5vw, 0.5rem);
     -moz-column-gap: clamp(0.375rem, 0.5vw, 0.5rem);
          column-gap: clamp(0.375rem, 0.5vw, 0.5rem);
}
.p-faq__answer-label {
  color: #eb8686;
  font-weight: 700;
  margin-right: 0.375rem;
  font-family: "Jost", sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
}
.p-faq__answer-body {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

/* JS用 */
.js-content {
  overflow: hidden;
  will-change: height;
}

.p-insurance {
  background: #e9f1fa;
  text-align: center;
}
.p-insurance__lead {
  display: inline-block;
  padding-bottom: 0.375rem;
  font-size: 1rem;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-insurance__lead {
    font-size: 0.875rem;
    padding-inline: 0.625rem;
  }
}
.p-insurance__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  justify-items: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1099px) {
  .p-insurance__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }
  .p-insurance__list .p-insurance__item:last-child {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .p-insurance__list {
    grid-template-columns: 1fr;
  }
}
.p-insurance__item {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.p-insurance {
  /* ★カード見た目だけ削除 */
}
.p-insurance__card {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
.p-insurance__body {
  margin-top: -1.25rem;
  padding: 1.5625rem;
  border: 1px solid #d6dbe6;
  border-radius: 12px;
  background: #ffffff;
}
.p-insurance {
  /* 画像 */
}
.p-insurance__card img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
.p-insurance {
  /* タイトル */
}
.p-insurance__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f3e55;
  margin-top: 1rem;
  position: relative;
}
.p-insurance__name::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #4072b3;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.p-insurance {
  /* コピー（タグ） */
}
.p-insurance__copy {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: rgba(64, 114, 179, 0.1);
  color: #4072b3;
  display: inline-block;
}
.p-insurance__more {
  margin-top: 2rem;
  text-align: center;
}

.p-insurance-page {
  background: #ffffff;
  /* ======================
     リード
  ====================== */
}
.p-insurance-page__lead {
  max-width: 720px;
  margin-inline: auto;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  border-left: 4px solid rgba(64, 114, 179, 0.6);
  line-height: 1.9;
  text-align: left;
  color: #2f3e55;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #e9f1fa;
  border-radius: 12px;
}
@media screen and (max-width: 1099px) {
  .p-insurance-page__lead {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-insurance-page__lead {
    font-size: 0.875rem;
    line-height: 1.8;
    padding: 1rem;
    border-left: 3px solid rgba(64, 114, 179, 0.5);
  }
}
.p-insurance-page {
  /* 強調（マーカー統一） */
}
.p-insurance-page__em {
  font-weight: 700;
  color: #eb8686;
}
.p-insurance-page {
  /* ======================
     リスト
  ====================== */
}
.p-insurance-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
@media screen and (max-width: 1099px) {
  .p-insurance-page__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-insurance-page__list {
    grid-template-columns: 1fr;
  }
}
.p-insurance-page {
  /* ======================
     アイテム
  ====================== */
}
.p-insurance-page__item {
  width: 100%;
}
.p-insurance-page {
  /* ======================
     カード（しっかり見せる）
  ====================== */
}
.p-insurance-page__card {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5eaf2;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-insurance-page__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.p-insurance-page {
  /* ======================
     画像
  ====================== */
}
.p-insurance-page__img {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
}
.p-insurance-page__img img {
  width: 100%;
  border-radius: 12px;
}
@media screen and (max-width: 1099px) {
  .p-insurance-page__img {
    max-width: 90%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-insurance-page__img {
    max-width: 80%;
  }
}
.p-insurance-page {
  /* ======================
     タイトル
  ====================== */
}
.p-insurance-page__name {
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: #2f3e55;
  margin-bottom: 1rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 1099px) {
  .p-insurance-page__name {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-insurance-page__name {
    font-size: 1.125rem;
  }
}
.p-insurance-page__name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(235, 134, 134, 0.3)));
  background: linear-gradient(transparent 60%, rgba(235, 134, 134, 0.3) 60%);
  border-radius: 4px;
}
.p-insurance-page {
  /* ======================
     テキスト
  ====================== */
}
.p-insurance-page__text {
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  line-height: 1.8;
  color: #2f3e55;
  text-align: left;
}
@media screen and (max-width: 1099px) {
  .p-insurance-page__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-insurance-page__text {
    font-size: 0.875rem;
    text-align: center;
  }
}

#recommend {
  scroll-margin-top: 5.5rem;
}

.p-recommend {
  background: #ffffff;
  text-align: center;
}
.p-recommend__lead {
  display: inline-block;
  padding-bottom: 0.375rem;
  font-size: 1rem;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-recommend__lead {
    font-size: 0.875rem;
    padding-inline: 0.625rem;
  }
}
.p-recommend__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recommend__grid {
    gap: 2rem;
    margin-top: 1.5rem;
  }
}
.p-recommend__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-recommend__list--products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .p-recommend__list--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-recommend__list--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }
}
.p-recommend__item {
  width: 100%;
  min-width: 0;
}
.p-recommend__item--mypage {
  max-width: 100%;
}
.p-recommend__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #d6dbe6;
  background: #f7f9fc;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.p-recommend__link:hover {
  opacity: 0.92;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.p-recommend__link:focus-visible {
  outline: 3px solid rgba(64, 114, 179, 0.45);
  outline-offset: 3px;
}
.p-recommend__link--product {
  aspect-ratio: 8/5;
}
.p-recommend__link--mypage {
  aspect-ratio: 16/5;
  max-height: 7.5rem;
  margin-inline: auto;
  background: #fff;
  border-color: #cfd8e8;
}
@media screen and (max-width: 767px) {
  .p-recommend__link--mypage {
    max-height: 6.25rem;
    aspect-ratio: 16/6;
  }
}
.p-recommend__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
  display: block;
}
.p-recommend__mypage {
  padding-top: 2.25rem;
  border-top: 1px solid #e2e8f0;
}
@media screen and (max-width: 767px) {
  .p-recommend__mypage {
    padding-top: 1.75rem;
  }
}
.p-recommend__mypage-inner {
  max-width: 35rem;
  margin-inline: auto;
}
.p-recommend__mypage-label {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f3e55;
}
.p-recommend__mypage-lead {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #5a6578;
}
@media screen and (max-width: 767px) {
  .p-recommend__mypage-lead {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.p-recommend__list--mypage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  justify-items: stretch;
}

.p-voice {
  text-align: center;
  background: #e9f1fa;
}
.p-voice__lead {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(174, 196, 229, 0.6)));
  background: linear-gradient(transparent 60%, rgba(174, 196, 229, 0.6) 60%);
  padding: 0 4px;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-voice__lead {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    padding-inline: 0.625rem;
  }
}
.p-voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1099px) {
  .p-voice__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__list {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
}
.p-voice__bg {
  position: absolute;
  inset: 0;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  z-index: 0;
  /* デフォルト（男性） */
  background: rgba(64, 114, 179, 0.08);
}
.p-voice {
  /* 女性だけ上書き */
}
.p-voice__card.is-female .p-voice__bg {
  background: rgba(235, 134, 134, 0.08);
}
.p-voice__card {
  position: relative;
  padding-top: 80px;
  padding: 80px 24px 32px;
  background: #fff;
  border-radius: 24px;
  text-align: center;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  -webkit-box-shadow: 0 12px 30px rgba(64, 114, 179, 0.15);
          box-shadow: 0 12px 30px rgba(64, 114, 179, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-voice__card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.p-voice__icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.p-voice__icon img {
  width: 36px;
}
.p-voice__meta {
  font-size: 14px;
  margin-bottom: 12px;
}
.p-voice__meta span {
  margin: 0 4px;
}
.p-voice__tag {
  display: inline-block;
  background: #e6f4ef;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 999px;
}
.p-voice {
  /* 男性 */
}
.p-voice .p-voice__tag--男性 {
  color: #2f3e55;
}
.p-voice {
  /* 女性 */
}
.p-voice .p-voice__tag--女性 {
  color: #eb8686;
}
.p-voice__text {
  font-size: 14px;
  line-height: 1.6;
}
.p-voice__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto 0;
}

.p-voice-page {
  /* ======================
     list
  ====================== */
}
.p-voice-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
@media screen and (max-width: 1099px) {
  .p-voice-page__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-voice-page__list {
    grid-template-columns: 1fr;
  }
}
.p-voice-page {
  /* ======================
     card
  ====================== */
}
.p-voice-page__card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(47, 62, 85, 0.08);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
}
@media (any-hover: hover) {
  .p-voice-page__card:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
    -webkit-box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  }
}
.p-voice-page__card {
  /* 男女分岐（ネスト化） */
}
.p-voice-page__card.is-male {
  background: rgba(64, 114, 179, 0.06);
}
.p-voice-page__card.is-female {
  background: rgba(235, 134, 134, 0.06);
}
.p-voice-page {
  /* ======================
     bg
  ====================== */
}
.p-voice-page__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(64, 114, 179, 0.15), transparent 70%);
  pointer-events: none;
}
.p-voice-page {
  /* ======================
     icon
  ====================== */
}
.p-voice-page__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0f6fc;
  display: grid;
  place-items: center;
}
.p-voice-page__icon img {
  width: 32px;
}
.p-voice-page {
  /* ======================
     body
  ====================== */
}
.p-voice-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
  line-height: 1.5;
}
.p-voice-page {
  /* ======================
     meta
  ====================== */
}
.p-voice-page__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #2f3e55;
  border-bottom: 1px solid rgba(47, 62, 85, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.p-voice-page__tag {
  display: inline-block;
  background: #e6f4ef;
  font-size: 0.875rem;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
}
.p-voice-page__tag--男性 {
  color: #2f3e55;
}
.p-voice-page__tag--女性 {
  color: #eb8686;
}
.p-voice-page {
  /* ======================
     text
  ====================== */
}
.p-voice-page__text {
  font-size: clamp(0.9375rem, 1.2vw, 1rem);
  line-height: 1.9;
  color: #2f3e55;
  max-width: 30em;
}
.p-voice-page__text::before {
  content: "ご感想";
  display: block;
  font-size: 16px;
  color: #4072b3;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.p-voice-single__card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.p-voice-single__card.is-male {
  background: rgba(64, 114, 179, 0.06);
}
.p-voice-single__card.is-female {
  background: rgba(235, 134, 134, 0.06);
}
.p-voice-single__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.p-voice-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.p-voice-single__tag {
  display: inline-block;
  background: #e6f4ef;
  font-size: 0.875rem;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
}
.p-voice-single__tag--男性 {
  color: #2f3e55;
}
.p-voice-single__tag--女性 {
  color: #eb8686;
}
.p-voice-single__content {
  line-height: 2;
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
}
.p-voice-single__back {
  text-align: center;
  margin-top: 2.5rem;
}

.l-main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-top-links__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1099px) {
  .p-top-links__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-top-links__grid {
    grid-template-columns: 1fr;
  }
}
.p-top-links__item {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-links__bg {
  position: absolute;
  inset: 0;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.p-top-links__item--contact .p-top-links__bg {
  -webkit-filter: blur(2px) brightness(0.7);
          filter: blur(2px) brightness(0.7);
}
.p-top-links__item:nth-child(1) .p-top-links__bg {
  background: -webkit-gradient(linear, left top, right top, from(rgba(64, 114, 179, 0.8)), to(rgba(64, 114, 179, 0.4))), url("../img/top-links-company.jpg") center/cover no-repeat;
  background: linear-gradient(90deg, rgba(64, 114, 179, 0.8) 0%, rgba(64, 114, 179, 0.4) 100%), url("../img/top-links-company.jpg") center/cover no-repeat;
}
.p-top-links__item--contact .p-top-links__bg {
  background: -webkit-gradient(linear, right top, left top, from(rgba(47, 62, 85, 0.85)), to(rgba(47, 62, 85, 0.5))), url("../img/top-links-contact.jpg") center/cover no-repeat;
  background: linear-gradient(270deg, rgba(47, 62, 85, 0.85) 0%, rgba(47, 62, 85, 0.5) 100%), url("../img/top-links-contact.jpg") center/cover no-repeat;
}
.p-top-links__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
}
.p-top-links__content--contact {
  width: 100%;
}
.p-top-links__title {
  position: relative;
  display: inline-block;
  font-size: 1.5625rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 767px) {
  .p-top-links__title {
    font-size: 1.5rem;
  }
}
.p-top-links__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: #fff;
  margin: 10px auto 0;
}
.p-top-links__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top-links__meta span {
  font-size: 0.8125rem;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  white-space: nowrap;
}
.p-top-links__lead {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .p-top-links__lead {
    font-size: 0.875rem;
  }
}
.p-top-links__text {
  font-size: 0.875rem;
  margin-bottom: 16px;
  opacity: 0.9;
}
.p-top-links__btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 0.875rem;
  border-radius: 50px;
  background: #fff;
  color: #4072b3;
  border: 1px solid #4072b3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.p-top-links__item:hover .p-top-links__btn {
  background: #4072b3;
  color: #fff;
}
.p-top-links__btn--contact {
  background: #fff;
  color: #4072b3;
  border: 1px solid #fff;
  font-weight: bold;
}
.p-top-links__item--contact:hover .p-top-links__btn--contact {
  background: #eb8686;
  color: #fff;
}
.p-top-links__item:hover .p-top-links__bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-top-links__contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 34px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-top-links__contact-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 30px;
  }
}
.p-top-links__contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.p-top-links__label {
  font-size: 0.8125rem;
  line-height: 1.5;
  opacity: 0.8;
}
.p-top-links__tel {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-top-links__tel {
    font-size: 1.25rem;
  }
}
.p-top-links__fax {
  font-size: 0.875rem;
}
.p-top-links__time {
  font-size: 0.8125rem;
  margin-top: 6px;
}
.p-top-links__contact-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-links__cta-text {
  margin-bottom: 12px;
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 300px;
}

.p-footer {
  border-top: 1px solid #dfe5ec;
  background: -webkit-gradient(linear, left top, left bottom, from(#e9f1fa), to(#dfe8f4));
  background: linear-gradient(180deg, #e9f1fa 0%, #dfe8f4 100%);
  color: #2f3e55;
  padding: clamp(40px, 4vw, 64px) 0 clamp(24px, 3vw, 40px);
  font-size: clamp(14px, 0.831rem + 0.188vw, 16px);
}
.p-footer__inner {
  max-width: 1100px;
}
.p-footer__nav {
  margin-bottom: clamp(16px, 2vw, 28px);
}
.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(12px, 2vw, 30px);
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    display: grid;
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: clamp(6px, 2vw, 8px);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__list li:nth-child(4) {
    grid-column: 1/-1;
  }
  .p-footer__list li:nth-child(-n+3):not(:nth-child(3))::after {
    content: "｜";
    margin-left: clamp(6px, 1vw, 12px);
    color: #2f3e55;
    opacity: 0.5;
  }
}
.p-footer__list li a {
  font-size: clamp(14px, 0.831rem + 0.188vw, 16px);
  font-weight: 500;
  color: #2f3e55;
  text-decoration: none;
  position: relative;
  padding-bottom: clamp(2px, 0.3vw, 4px);
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.p-footer__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__list li a:hover {
    opacity: 0.6;
  }
  .p-footer__list li a:hover::after {
    width: 100%;
  }
}
.p-footer .current-menu-item > a {
  font-weight: 700;
}
.p-footer__border {
  border: none;
  border-top: 1px solid rgba(47, 62, 85, 0.12);
  margin: clamp(16px, 2vw, 28px) 0;
}
.p-footer__notice {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
  text-align: left;
  color: rgba(47, 62, 85, 0.85);
}
@media screen and (max-width: 767px) {
  .p-footer__notice {
    line-height: 1.9;
  }
}
.p-footer__company {
  text-align: center;
  margin-top: clamp(20px, 3vw, 32px);
}
.p-footer__company-name {
  font-weight: 700;
  margin-bottom: clamp(6px, 1vw, 10px);
  font-size: clamp(14px, 0.787rem + 0.376vw, 18px);
  letter-spacing: 0.08em;
}
.p-footer__company-info {
  margin-bottom: clamp(10px, 2vw, 16px);
  line-height: 1.8;
  font-weight: 600;
}
.p-footer__company-info a {
  color: inherit;
  text-decoration: none;
}
.p-footer__company-info a:hover {
  text-decoration: underline;
}
.p-footer__copyright {
  display: block;
  text-align: center;
  margin-top: clamp(20px, 3vw, 32px);
  padding-top: clamp(10px, 2vw, 16px);
  border-top: 1px solid rgba(47, 62, 85, 0.1);
  font-size: clamp(12px, 0.9vw, 12px);
  color: rgba(47, 62, 85, 0.6);
}

.p-policy {
  background: #f7f9fc;
}

.p-policy__title {
  text-align: center;
  font-size: clamp(1.625rem, 2.22vw, 2rem);
  margin-bottom: 3rem;
}

/* ▼ カードのラッパー */
.p-policy__content {
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  font-size: clamp(0.875rem, 1.111vw, 1rem);
  line-height: 1.9;
}

/* ▼ 各カード（Gutenbergのグループ） */
.p-policy__content .wp-block-group {
  background: #ffffff;
  -webkit-box-shadow: 0 12px 30px rgba(64, 114, 179, 0.1);
          box-shadow: 0 12px 30px rgba(64, 114, 179, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  line-height: 1.9;
}

/* 見出し */
.p-policy__content h2,
.p-policy__content h3 {
  margin-bottom: 16px;
  font-size: clamp(1rem, 1.38vw, 1.25rem);
  color: #2f3e55;
}

/* リスト */
.p-policy__content ul {
  padding-left: 1.2em;
}

.p-policy__content li {
  margin-bottom: 0.5rem;
}

.p-policy__content .wp-block-group {
  position: relative;
}

.p-policy__content .wp-block-group::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 3px;
  background: rgba(10, 123, 194, 0.15);
  border-radius: 2px;
}

.p-policy__contact {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  row-gap: 0.75rem;
  max-width: 640px;
  margin-inline: auto;
}

.p-policy__contact dt {
  font-weight: 600;
}

.p-policy__contact dd {
  margin: 0;
}/*# sourceMappingURL=style.css.map */