@charset "UTF-8";
/* stylelint-disable-next-line no-duplicate-selectors */
* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
}

body {
  font-family: var(--font-family-base);
  color: var(--text-primary, #45322B);
  font-feature-settings: "palt";
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: transform;
}

:root {
  --font-family-base: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, "Yu Gothic", meiryo, sans-serif;
  --depth-level-1: 0px 1px 3px 1px rgba(245, 71, 103, 0.15);
  --depth-level-2: 0px 1px 2px 0px rgba(245, 71, 103, 0.15), 0px 2px 8px 2px rgba(245, 71, 103, 0.15);
  --depth-level-3: 0px 4px 8px 3px rgba(245, 71, 103, 0.15), 0px 1px 3px 0px rgba(245, 71, 103, 0.30);
  --depth-level-4: 0px 6px 10px 4px rgba(245, 71, 103, 0.15), 0px 2px 3px 0px rgba(245, 71, 103, 0.30);
  --depth-level-5: 0px 8px 12px 6px rgba(245, 71, 103, 0.15), 0px 4px 4px 0px rgba(245, 71, 103, 0.30);
}
/* Header */
.l-header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--depth-level-2);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 4px 12px 4px 16px;
  max-width: 1920px;
}
.l-header__logo {
  display: flex;
  align-items: center;
  min-height: 12.8vw;
}
.l-header__img {
  display: block;
  vertical-align: middle;
  width: auto;
  height: 9.07vw;
}
/* contents */
.main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 160px);
}
.p-fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12.31vw;
  flex: 1;
  padding: 12.31vw 4.1vw 10.26vw;
  background: url(/static/assets/images/lpTop/bg_fv_sp.webp) no-repeat center
    center/cover;
}
.p-fv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.08vw;
  text-align: center;
}
.p-fv__title-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.51vw;
  font-family:
    "Hiragino Kaku Gothic Std", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic,
    "Helvetica Neue", Arial;
  font-size: 6.15vw;
  font-weight: 800;
  color: #F54767;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.p-fv__title-main--announce {
  font-size: 7.18vw;
}
.p-fv__title-thanks {
  font-size: 5.64vw;
  font-weight: 600;
  color: #36231b;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.p-announce-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4vw;
  padding: 6.15vw 4.1vw 4.1vw;
  width: 100%;
  max-width: 1128px;
  background-color: #fff;
  border-radius: 2.05vw;
  box-shadow: 0 4px 20px 3px rgba(245, 71, 103, 0.15);
}
.p-announce-info__text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.08vw;
  width: 100%;
}
.p-announce-info__title {
  font-size: 4.1vw;
  font-weight: 700;
  color: #F54767;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.p-announce-info__text {
  width: 100%;
  color: #F54767;
  font-size: 3.59vw;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.p-announce-info__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.03vw;
  padding: 4.1vw 5.13vw;
  width: 100%;
  text-align: center;
  background-color: #FEF6F7;
  border-radius: 2.05vw;
}
.p-announce-info__contact-label {
  font-size: 3.59vw;
  font-weight: 700;
  color: #F54767;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.p-announce-info__link {
  font-size: 3.59vw;
  color: #F54767;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-decoration: underline;
}
.p-announce-info__link:hover {
  opacity: 0.6;
}
.p-announce-info__contact-text {
  font-size: 3.59vw;
  color: #F54767;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
/* footer */
.l-footer {
  margin: 0 auto;
  width: 100%;
  max-width: 1128px;
  padding: 5.13vw 4.1vw;
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 4.1vw;
  width: 100%;
}
.l-footer__nav {
  color: #666;
  font-size: 3.08vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media (min-width: 375px){
  .l-header__logo {
    min-height: 48px;
  }
  .l-header__img {
    height: 34px;
  }
  .l-footer__nav {
    font-size: 10px;
  }
}
@media (min-width: 750px){
  .sp {
    display: none;
  }
  /* header */
  .l-header__inner {
    padding: var(--dimension-heightwidth-xsm, 16px) var(--spacing-fixed-vertical-side-padding, 32px);
  }
  /* contents */
  .p-fv {
    gap: 4.6875vw;
    padding: 5.625vw;
    min-height: 751px;
  }
  .p-fv__title {
    gap: 0.9375vw;
  }
  .p-fv__title-main {
    gap: 0.3125vw;
    font-size: 3.125vw;
    letter-spacing: 0.1em;
  }
  .p-fv__title-main--announce {
    font-size: 3.75vw;
  }
  .p-fv__title-thanks {
    font-size: 2.8125vw;
  }
  .p-announce-info {
    gap: 1.875vw;
    padding: 1.875vw 2.8125vw;
    border-radius: 0.9375vw;
  }
  .p-announce-info__text-area {
    gap: 0.9375vw;
  }
  .p-announce-info__title {
    font-size: 1.40625vw;
  }
  .p-announce-info__text {
    font-size: 1.25vw;
  }
  .p-announce-info__contact {
    gap: 0.3125vw;
    padding: 1.875vw 0.78125vw;
    border-radius: 0.9375vw;
  }
  .p-announce-info__contact-label {
    font-size: 1.25vw;
  }
  .p-announce-info__link {
    font-size: 1.25vw;
  }
  .p-announce-info__contact-text {
    font-size: 1.25vw;
  }
  /* footer */
  .l-footer {
    padding: 30px 40px;
  }
  .l-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: unset;
  }
  .l-footer__nav {
    font-size: calc(0.0037807183 * 100vw + 7.1644612476px);
  }
}
@media (min-width: 1280px){
  .l-header__img {
    height: 50px;
  }
  .p-fv {
    gap: 60px;
    padding: 72px;
    background: url(/static/assets/images/lpTop/bg_fv_pc.webp) no-repeat center
      center/cover;
  }
  .p-fv__title {
    gap: 12px;
  }
  .p-fv__title-main {
    gap: 4px;
    font-size: 40px;
  }
  .p-fv__title-main--announce {
    font-size: 48px;
  }
  .p-fv__title-thanks {
    font-size: 36px;
  }
  .p-announce-info {
    gap: 24px;
    padding: 24px 36px;
    border-radius: 12px;
  }
  .p-announce-info__text-area {
    gap: 12px;
  }
  .p-announce-info__title {
    font-size: 18px;
  }
  .p-announce-info__text {
    font-size: 16px;
  }
  .p-announce-info__contact {
    gap: 4px;
    padding: 24px 10px;
    border-radius: 12px;
  }
  .p-announce-info__contact-label {
    font-size: 16px;
  }
  .p-announce-info__link {
    font-size: 16px;
  }
  .p-announce-info__contact-text {
    font-size: 16px;
  }
  .l-footer__nav {
    font-size: 12px;
  }
}
