@charset "UTF-8";
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

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

img {
  height: auto;
  max-width: inherit;
  vertical-align: bottom;
  width: 100%;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

a:not([class]) {
  color: var(--color-font);
}

b, strong {
  font-weight: bolder;
}

:root {
  --color-font: #1a1a1a;
  --color-sub: #333;
  --color-primary: #013048;
  --color-secondary: #bd9539;
  --color-tertiary: #c1272d;
  --font-NotoSansJP: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", YuGothic, sans-serif;
  --font-NotoSerifJP: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "BiZ UDMincho", "MS Mincho", serif;
  --font-YuGothic: "Yu Gothic", YuGothic, -apple-system, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-YuMincho: "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", "BiZ UDMincho", "MS Mincho", serif;
}

body {
  background: #fff;
  color: var(--color-font);
  font-family: var(--font-YuGothic);
  font-weight: 500;
  line-height: 1;
  margin-inline: auto;
  overflow-wrap: break-word;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 18px;
    min-width: 1200px;
  }
}

.l-wrapper {
  overflow: hidden;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .l-inner {
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-inner {
    width: 91.667%;
  }
}
@media screen and (min-width: 1200px) {
  .l-inner {
    width: 1100px;
  }
}

.l-header {
  background: var(--color-primary);
}

.l-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    height: 13.333vw;
    padding-inline: 3.067vw 3.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-header__inner {
    height: 7vw;
    -webkit-padding-start: 0.833vw;
            padding-inline-start: 0.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__inner {
    height: 84px;
    -webkit-padding-start: 10px;
            padding-inline-start: 10px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 20.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-header__logo {
    width: 11.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__logo {
    width: 142px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__title {
    width: 40vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-header__title {
    width: 23.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__title {
    width: 280px;
  }
}

.l-footer {
  background: var(--color-primary);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-footer__inner {
    margin-inline: auto;
    padding-block: 11.333vw 8vw;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-footer__inner {
    padding-block: 3.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__inner {
    padding-block: 40px;
  }
}

.l-footer__logo {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 22.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-footer__logo {
    width: 11.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__logo {
    width: 142px;
  }
}

.l-footer__company-name {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .l-footer__company-name {
    font-size: 3.467vw;
    line-height: 1.385;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__company-name {
    line-height: 1.625;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-footer__company-name {
    font-size: 1.333vw;
    -webkit-margin-before: 2.083vw;
            margin-block-start: 2.083vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__company-name {
    font-size: 16px;
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
  }
}

.l-footer__addr {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .l-footer__addr {
    font-size: 3.2vw;
    line-height: 1.75;
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__addr {
    line-height: 1.714;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-footer__addr {
    font-size: 1.167vw;
    -webkit-margin-before: 0.417vw;
            margin-block-start: 0.417vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__addr {
    font-size: 14px;
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
  }
}

.l-fixed {
  display: none;
  left: 0;
  position: fixed;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .l-fixed {
    bottom: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-fixed {
    bottom: 3.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-fixed {
    bottom: 40px;
  }
}
.l-fixed.is-show {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-fixed__button {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-fixed__button {
    width: 76vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .l-fixed__button {
    width: 48.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-fixed__button {
    width: 580px;
  }
}

.c-button {
  margin-inline: auto;
}

.c-button__link {
  border-radius: 100vw;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-button__link {
    box-shadow: 2vw 2vw 0.933vw rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .c-button__link {
    box-shadow: 1.25vw 1.25vw 0.583vw rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 1200px) {
  .c-button__link {
    box-shadow: 15px 15px 7px rgba(0, 0, 0, 0.3);
  }
}

@media screen and (max-width: 768px) {
  .p-kv {
    background: url(../images/kv_bg_sp.jpg) 0 0/100% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-kv {
    background: url(../images/kv_bg_pc.jpg) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-kv {
    background-size: auto 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-kv__inner {
    height: 130.933vw;
    -webkit-padding-before: 16vw;
            padding-block-start: 16vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-kv__inner {
    height: 61.667vw;
    -webkit-padding-before: 11.25vw;
            padding-block-start: 11.25vw;
    -webkit-padding-start: 42.667vw;
            padding-inline-start: 42.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-kv__inner {
    height: 740px;
    -webkit-padding-before: 135px;
            padding-block-start: 135px;
    -webkit-padding-start: 512px;
            padding-inline-start: 512px;
  }
}

@media screen and (max-width: 768px) {
  .p-kv__catch {
    -webkit-margin-start: 33.067vw;
            margin-inline-start: 33.067vw;
    width: 62.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-kv__catch {
    width: 50vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-kv__catch {
    width: 600px;
  }
}

.p-kv__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-kv__text {
    font-size: 4vw;
    line-height: 2;
    -webkit-margin-before: 12vw;
            margin-block-start: 12vw;
    -webkit-padding-start: 1.2vw;
            padding-inline-start: 1.2vw;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .p-kv__text {
    line-height: 2.1;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-kv__text {
    font-size: 1.667vw;
    -webkit-margin-before: 3.75vw;
            margin-block-start: 3.75vw;
    -webkit-margin-start: 1vw;
            margin-inline-start: 1vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-kv__text {
    font-size: 20px;
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
    -webkit-margin-start: 12px;
            margin-inline-start: 12px;
  }
}

.p-inquiry {
  background: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .p-inquiry__inner {
    -webkit-padding-after: 15.333vw;
            padding-block-end: 15.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-inquiry__inner {
    -webkit-padding-after: 6.25vw;
            padding-block-end: 6.25vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-inquiry__inner {
    -webkit-padding-after: 75px;
            padding-block-end: 75px;
  }
}

.p-inquiry__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-inquiry__title {
    width: 82.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-inquiry__title {
    width: 59.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-inquiry__title {
    width: 710px;
  }
}

.p-inquiry__text {
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-inquiry__text {
    line-height: 2;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-inquiry__text {
    line-height: 2.222;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-inquiry__text {
    -webkit-margin-before: 2.5vw;
            margin-block-start: 2.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-inquiry__text {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.p-inquiry__button {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-inquiry__button {
    -webkit-margin-before: 10.667vw;
            margin-block-start: 10.667vw;
    width: 76vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-inquiry__button {
    -webkit-margin-before: 2.917vw;
            margin-block-start: 2.917vw;
    width: 48.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-inquiry__button {
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
    width: 580px;
  }
}

@media screen and (max-width: 768px) {
  .p-intro {
    background: url(../images/intro_bg_sp.jpg) 0 0/100% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-intro {
    background: url(../images/intro_bg_pc.jpg) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro {
    background-size: auto 100%;
  }
}

.p-intro__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-intro__inner {
    height: 190.267vw;
    -webkit-padding-before: 18vw;
            padding-block-start: 18vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__inner {
    height: 70.5vw;
    -webkit-padding-before: 8.75vw;
            padding-block-start: 8.75vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__inner {
    height: 846px;
    -webkit-padding-before: 105px;
            padding-block-start: 105px;
  }
}
.p-intro__inner::after {
  background: url(../images/intro_arrow.svg) 0/contain no-repeat;
  bottom: 0;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-1px, 50%);
          transform: translate(-1px, 50%);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-intro__inner::after {
    height: 14.267vw;
    width: 2.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__inner::after {
    height: 8.917vw;
    width: 1.917vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__inner::after {
    height: 107px;
    width: 23px;
  }
}

.p-intro__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-intro__title {
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__title {
    width: 67.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__title {
    width: 810px;
  }
}

.p-intro__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-intro__list {
    gap: 4vw;
    -webkit-margin-before: 9.333vw;
            margin-block-start: 9.333vw;
    -webkit-margin-start: 12.667vw;
            margin-inline-start: 12.667vw;
    width: 76vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__list {
    align-items: flex-start;
    gap: 1.5vw;
    -webkit-margin-before: 4.333vw;
            margin-block-start: 4.333vw;
    -webkit-margin-start: 9.167vw;
            margin-inline-start: 9.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__list {
    align-items: flex-start;
    gap: 18px;
    -webkit-margin-before: 52px;
            margin-block-start: 52px;
    -webkit-margin-start: 110px;
            margin-inline-start: 110px;
  }
}

.p-intro__item {
  background: #fff;
  letter-spacing: 0.02em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-intro__item {
    font-size: 4vw;
    line-height: 1.667;
    padding-block: 1.6vw;
    -webkit-padding-start: 8vw;
            padding-inline-start: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-intro__item {
    line-height: 2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__item {
    font-size: 1.667vw;
    padding-block: 1.167vw;
    padding-inline: 3.833vw 0.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__item {
    font-size: 20px;
    padding-block: 14px;
    padding-inline: 46px 10px;
  }
}
.p-intro__item::before {
  background: url(../images/intro_icon.svg) 0/contain no-repeat;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-intro__item::before {
    height: 6.667vw;
    width: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__item::before {
    height: 3.5vw;
    width: 3.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__item::before {
    height: 42px;
    width: 42px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__item-large {
    font-size: 1.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__item-large {
    font-size: 22px;
  }
}

.p-intro__text {
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-intro__text {
    font-size: 5.067vw;
    line-height: 1.3;
    -webkit-margin-before: 12vw;
            margin-block-start: 12vw;
  }
}
@media screen and (min-width: 769px) {
  .p-intro__text {
    line-height: 1.389;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__text {
    font-size: 2.333vw;
    -webkit-margin-before: 5.833vw;
            margin-block-start: 5.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__text {
    font-size: 28px;
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
  }
}

@media screen and (max-width: 768px) {
  .p-intro__text-large {
    font-size: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-intro__text-large {
    font-size: 3vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-intro__text-large {
    font-size: 36px;
  }
}

.p-about {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about {
    background: url(../images/about_bg_sp.jpg) 0 0/100% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-about {
    background: url(../images/about_bg_pc.jpg) 50% 0 no-repeat var(--color-primary);
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-about {
    background-size: auto 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-about__inner {
    height: 198vw;
    -webkit-padding-before: 24vw;
            padding-block-start: 24vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-about__inner {
    height: 87.25vw;
    -webkit-padding-before: 11.333vw;
            padding-block-start: 11.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__inner {
    height: 1047px;
    -webkit-padding-before: 136px;
            padding-block-start: 136px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-about__title {
    margin-inline: auto;
    width: 66.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__title {
    margin-inline: auto;
    width: 800px;
  }
}

.p-about__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-about__text {
    line-height: 2.143;
  }
}
@media screen and (min-width: 769px) {
  .p-about__text {
    line-height: 2.778;
  }
}

@media screen and (max-width: 768px) {
  .p-about__text-large {
    font-size: 4.533vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about__text-large {
    line-height: 2.083;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-about__text-large {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__text-large {
    font-size: 24px;
  }
}

.p-about__text-mark {
  background: #fff;
  padding-inline: 0.5em;
}

.p-about__text--upper {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__text--upper {
    -webkit-margin-before: 9.333vw;
            margin-block-start: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-about__text--upper {
    -webkit-margin-before: 4.583vw;
            margin-block-start: 4.583vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__text--upper {
    -webkit-margin-before: 55px;
            margin-block-start: 55px;
  }
}

@media screen and (max-width: 768px) {
  .p-about__text--bottom {
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about__text--bottom {
    line-height: 2.222;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-about__text--bottom {
    -webkit-margin-before: 0.833vw;
            margin-block-start: 0.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__text--bottom {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.p-about-message {
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about-message {
    bottom: -76vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about-message {
    background: url(../images/about-message_bg_pc.png) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-about-message {
    background-size: auto 100%;
    bottom: -37.5vw;
    height: 64.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-message {
    bottom: -450px;
    height: 770px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-about-message__main {
    margin-inline: auto 0;
    -webkit-padding-before: 25vw;
            padding-block-start: 25vw;
    width: 44.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-message__main {
    margin-inline: auto 0;
    -webkit-padding-before: 300px;
            padding-block-start: 300px;
    width: 530px;
  }
}

@media screen and (max-width: 768px) {
  .p-structure {
    background: #e6e8ed;
    -webkit-padding-before: 92.267vw;
            padding-block-start: 92.267vw;
  }
}
@media screen and (min-width: 769px) {
  .p-structure {
    background: url(../images/structure_bg.jpg) 50% 100% no-repeat #e6e8ed;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-structure {
    background-size: 166.667vw auto;
    -webkit-padding-before: 46.25vw;
            padding-block-start: 46.25vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-structure {
    -webkit-padding-before: 555px;
            padding-block-start: 555px;
  }
}

@media screen and (min-width: 769px) {
  .p-structure__title-wrap {
    background: url(../images/structure_title_bg.png) 50% 100% no-repeat;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-structure__title-wrap {
    background-size: 166.667vw auto;
    height: 18.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-structure__title-wrap {
    height: 224px;
  }
}

.p-structure__text {
  -webkit-font-feature-settings: "palt" 0, "pkna" 0;
          font-feature-settings: "palt" 0, "pkna" 0;
  -webkit-font-variant-ligatures: no-contextual;
          font-variant-ligatures: no-contextual;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-structure__text {
    line-height: 2.143;
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
    width: 84.267vw;
  }
}
@media screen and (min-width: 769px) {
  .p-structure__text {
    line-height: 2.333;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-structure__text {
    -webkit-margin-before: 1.667vw;
            margin-block-start: 1.667vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-structure__text {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    width: 800px;
  }
}

.p-feature {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-feature {
    background: url(../images/feature_bg_sp_01.jpg) 0 0/100% auto no-repeat, url(../images/feature_bg_sp_02.jpg) 0 100%/100% auto no-repeat var(--color-primary);
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    padding-block: 8vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature {
    height: 116.25vw;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature {
    height: 1395px;
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}

.p-feature__title {
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-feature__title {
    left: 8.667vw;
    top: 71.333vw;
    width: 51.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__title {
    right: 15.833vw;
    top: 6.5vw;
    width: 24.917vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__title {
    right: 190px;
    top: 78px;
    width: 299px;
  }
}

@media screen and (max-width: 768px) {
  .p-feature__list {
    margin-inline: auto;
    width: 86.667vw;
  }
}

@media screen and (max-width: 768px) {
  .p-feature__item {
    -webkit-margin-before: 10.667vw;
            margin-block-start: 10.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-feature__item {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item {
    -webkit-margin-before: 5.833vw;
            margin-block-start: 5.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item {
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
  }
}

.p-feature__images-group {
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-feature__images-group {
    -webkit-filter: drop-shadow(2vw 2vw 0.933vw rgba(0, 0, 0, 0.2));
            filter: drop-shadow(2vw 2vw 0.933vw rgba(0, 0, 0, 0.2));
    margin-inline: auto;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__images-group {
    -webkit-filter: drop-shadow(1.25vw 1.25vw 0.583vw rgba(0, 0, 0, 0.2));
            filter: drop-shadow(1.25vw 1.25vw 0.583vw rgba(0, 0, 0, 0.2));
    width: 41.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__images-group {
    -webkit-filter: drop-shadow(15px 15px 7px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(15px 15px 7px rgba(0, 0, 0, 0.2));
    width: 500px;
  }
}

.p-feature__image {
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
  overflow: hidden;
}

.p-feature__content {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-feature__content {
    -webkit-margin-before: -5.333vw;
            margin-block-start: -5.333vw;
    padding-block: 10vw 5.333vw;
    padding-inline: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.9;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__content {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    min-height: 25.833vw;
    padding-block: 3.75vw 3.333vw;
    width: 57.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__content {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    min-height: 310px;
    padding-block: 45px 40px;
    width: 690px;
  }
}

.p-feature__num {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-feature__num {
    top: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__num {
    top: -6.25vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__num {
    top: -75px;
  }
}

@media screen and (max-width: 768px) {
  .p-feature__sub-title {
    font-size: 5.733vw;
    line-height: 1.391;
  }
}
@media screen and (min-width: 769px) {
  .p-feature__sub-title {
    line-height: 1.438;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__sub-title {
    font-size: 2.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__sub-title {
    font-size: 32px;
  }
}

.p-feature__text {
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-feature__text {
    line-height: 2;
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-feature__text {
    line-height: 1.9;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__text {
    font-size: 1.667vw;
    -webkit-margin-before: 1.25vw;
            margin-block-start: 1.25vw;
    width: 40.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__text {
    font-size: 20px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    width: 490px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item:nth-child(2n+1) .p-feature__images-group {
    -webkit-margin-end: -7.5vw;
            margin-inline-end: -7.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item:nth-child(2n+1) .p-feature__images-group {
    -webkit-margin-end: -90px;
            margin-inline-end: -90px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item:nth-child(2n+1) .p-feature__content {
    -webkit-padding-start: 9.167vw;
            padding-inline-start: 9.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item:nth-child(2n+1) .p-feature__content {
    -webkit-padding-start: 110px;
            padding-inline-start: 110px;
  }
}
@media screen and (max-width: 768px) {
  .p-feature__item:nth-child(2n+1) .p-feature__num {
    right: 0;
    width: 28.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item:nth-child(2n+1) .p-feature__num {
    right: 0;
    width: 15vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item:nth-child(2n+1) .p-feature__num {
    right: 0;
    width: 180px;
  }
}
@media screen and (min-width: 769px) {
  .p-feature__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item:nth-child(2n) .p-feature__images-group {
    -webkit-margin-start: -7.5vw;
            margin-inline-start: -7.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item:nth-child(2n) .p-feature__images-group {
    -webkit-margin-start: -90px;
            margin-inline-start: -90px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item:nth-child(2n) .p-feature__content {
    -webkit-padding-start: 5vw;
            padding-inline-start: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item:nth-child(2n) .p-feature__content {
    -webkit-padding-start: 60px;
            padding-inline-start: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-feature__item:nth-child(2n) .p-feature__num {
    left: -6.667vw;
    width: 30.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item:nth-child(2n) .p-feature__num {
    left: 0;
    width: 16.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item:nth-child(2n) .p-feature__num {
    left: 0;
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .p-feature__item:nth-child(2n) .p-feature__sub-title {
    -webkit-padding-start: 21.333vw;
            padding-inline-start: 21.333vw;
  }
}
.p-feature__item--access {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.p-feature__item--access .p-feature__images-group {
  align-items: flex-start;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-feature__item--access .p-feature__images-group {
    -webkit-margin-start: 8.533vw;
            margin-inline-start: 8.533vw;
    width: 71.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item--access .p-feature__images-group {
    -webkit-margin-end: -6.25vw;
            margin-inline-end: -6.25vw;
    width: 40.417vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item--access .p-feature__images-group {
    -webkit-margin-end: -75px;
            margin-inline-end: -75px;
    width: 485px;
  }
}
.p-feature__item--access .p-feature__image {
  clip-path: polygon(22% 0, 100% 0%, 78% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .p-feature__item--access .p-feature__image {
    width: 44vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item--access .p-feature__image {
    width: 22.917vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item--access .p-feature__image {
    width: 275px;
  }
}
@media screen and (max-width: 768px) {
  .p-feature__item--access .p-feature__image:nth-of-type(2) {
    -webkit-margin-before: 14.933vw;
            margin-block-start: 14.933vw;
    -webkit-margin-start: -17.333vw;
            margin-inline-start: -17.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item--access .p-feature__image:nth-of-type(2) {
    -webkit-margin-before: 7.917vw;
            margin-block-start: 7.917vw;
    -webkit-margin-start: -8.833vw;
            margin-inline-start: -8.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item--access .p-feature__image:nth-of-type(2) {
    -webkit-margin-before: 95px;
            margin-block-start: 95px;
    -webkit-margin-start: -106px;
            margin-inline-start: -106px;
  }
}
@media screen and (max-width: 768px) {
  .p-feature__item--access .p-feature__content {
    -webkit-margin-before: 9.333vw;
            margin-block-start: 9.333vw;
    -webkit-padding-before: 10.667vw;
            padding-block-start: 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-feature__item--access .p-feature__content {
    -webkit-margin-before: 11.25vw;
            margin-block-start: 11.25vw;
    -webkit-padding-before: 5vw;
            padding-block-start: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-feature__item--access .p-feature__content {
    -webkit-margin-before: 135px;
            margin-block-start: 135px;
    -webkit-padding-before: 60px;
            padding-block-start: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-feature__item--access .p-feature__num {
    right: -7.333vw !important;
    top: -10.667vw;
  }
}

@media screen and (max-width: 768px) {
  .p-continue {
    background: url(../images/continue_bg_sp.jpg) 0 0/100% auto no-repeat;
    padding-block: 84.667vw 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-continue {
    height: 67vw;
    -webkit-padding-before: 7.917vw;
            padding-block-start: 7.917vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-continue {
    height: 804px;
    -webkit-padding-before: 95px;
            padding-block-start: 95px;
  }
}

@media screen and (max-width: 768px) {
  .p-continue__title {
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-continue__title {
    width: 66.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-continue__title {
    width: 800px;
  }
}

@media screen and (max-width: 768px) {
  .p-continue__text {
    line-height: 2.143;
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    margin-inline: auto;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) {
  .p-continue__text {
    line-height: 2.333;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-continue__text {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-continue__text {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    width: 800px;
  }
}

.p-continue__button {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-continue__button {
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
    width: 76vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-continue__button {
    -webkit-margin-before: 5.833vw;
            margin-block-start: 5.833vw;
    width: 48.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-continue__button {
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
    width: 580px;
  }
}

@media screen and (max-width: 768px) {
  .p-offer {
    background: url(../images/offer_bg_sp.jpg) 0 0/100% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-offer {
    background: url(../images/offer_bg_pc.jpg) 50% 0 no-repeat #cebd7f;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer {
    background-size: 183.333vw auto;
  }
}

.p-offer__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-offer__inner {
    height: 245.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer__inner {
    height: 56.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-offer__inner {
    height: 680px;
  }
}

.p-offer__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-offer__title {
    width: 84.533vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer__title {
    width: 51.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-offer__title {
    width: 620px;
  }
}

@media screen and (min-width: 769px) {
  .p-offer__deco {
    pointer-events: none;
    position: absolute;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer__deco {
    right: -2.5vw;
    top: -9.833vw;
    width: 23.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-offer__deco {
    right: -30px;
    top: -118px;
    width: 282px;
  }
}

.p-offer__text {
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-offer__text {
    font-size: 4vw;
    line-height: 1.75;
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-offer__text {
    line-height: 1.727;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer__text {
    font-size: 1.667vw;
    -webkit-margin-start: 2.333vw;
            margin-inline-start: 2.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-offer__text {
    font-size: 20px;
    -webkit-margin-before: 28px;
            margin-block-start: 28px;
  }
}

@media screen and (max-width: 768px) {
  .p-offer__text-large {
    font-size: 4.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer__text-large {
    font-size: 1.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-offer__text-large {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .p-offer__list {
    -webkit-margin-before: 26.667vw;
            margin-block-start: 26.667vw;
    margin-inline: auto;
    width: 62.8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-offer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer__list {
    gap: 2.833vw 2vw;
    -webkit-margin-before: 4.167vw;
            margin-block-start: 4.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-offer__list {
    gap: 34px 24px;
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
  }
}

.p-offer__item {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-offer__item {
    -webkit-margin-before: 7.333vw;
            margin-block-start: 7.333vw;
    padding-block: 6vw 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer__item {
    padding-block: 2.083vw 1.667vw;
    width: 29.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-offer__item {
    padding-block: 25px 20px;
    width: 350px;
  }
}
.p-offer__item::before {
  background: url(../images/offer_icon.svg) 0/contain no-repeat;
  content: "";
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-offer__item::before {
    height: 4.8vw;
    top: -2.4vw;
    width: 4.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-offer__item::before {
    height: 2.167vw;
    top: -0.833vw;
    width: 2.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-offer__item::before {
    height: 26px;
    top: -10px;
    width: 26px;
  }
}

.p-offer__item-label {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-offer__item-label {
    line-height: 1.714;
  }
}
@media screen and (min-width: 769px) {
  .p-offer__item-label {
    line-height: 1.556;
  }
}

@media screen and (max-width: 768px) {
  .p-number {
    background: url(../images/number_bg_sp.png) 0 0/100% auto no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-number {
    background: url(../images/number_bg_pc.png) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-number {
    background-size: 166.667vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-number__inner {
    padding-block: 22.933vw 15.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-number__inner {
    padding-block: 7.083vw 8.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-number__inner {
    padding-block: 85px 100px;
  }
}

.p-number__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-number__title {
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-number__title {
    width: 57vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-number__title {
    width: 684px;
  }
}

.p-number__list {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-number__list {
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-number__list {
    -webkit-margin-before: 5vw;
            margin-block-start: 5vw;
    width: 83.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-number__list {
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
    width: 1000px;
  }
}

@media screen and (max-width: 768px) {
  .p-number__item {
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-number__item:nth-of-type(2) {
    -webkit-margin-before: 2.083vw;
            margin-block-start: 2.083vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-number__item:nth-of-type(2) {
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-number__item:nth-of-type(3) {
    -webkit-margin-before: 3.75vw;
            margin-block-start: 3.75vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-number__item:nth-of-type(3) {
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
  }
}

.p-flow {
  background: var(--color-primary);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-flow__inner {
    -webkit-padding-after: 20vw;
            padding-block-end: 20vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__inner {
    -webkit-padding-after: 6.667vw;
            padding-block-end: 6.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__inner {
    -webkit-padding-after: 80px;
            padding-block-end: 80px;
  }
}

.p-flow__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-flow__title {
    width: 76vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__title {
    width: 39.583vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__title {
    width: 475px;
  }
}

.p-flow__list {
  display: grid;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow__list {
    gap: 9.6vw;
    grid-template-columns: 1fr;
    -webkit-margin-before: 13.333vw;
            margin-block-start: 13.333vw;
    -webkit-margin-start: 12vw;
            margin-inline-start: 12vw;
    width: 81.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-flow__list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__list {
    gap: 2.25vw;
    -webkit-margin-before: 7.5vw;
            margin-block-start: 7.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__list {
    gap: 27px;
    -webkit-margin-before: 90px;
            margin-block-start: 90px;
  }
}
@media screen and (min-width: 769px) {
  .p-flow__list::after {
    background: #e6e8ed;
    content: "";
    display: block;
    left: 2.5%;
    position: absolute;
    width: 95%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__list::after {
    height: 0.25vw;
    top: 6.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__list::after {
    height: 3px;
    top: 78px;
  }
}

.p-flow__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow__item {
    align-items: center;
    display: grid;
    gap: 2.4vw;
    grid-template-columns: 29.867vw 1fr;
  }
}

.p-flow__item-num {
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-flow__item-num {
    left: 8.8vw;
    top: -4.667vw;
    width: 11.573vw;
  }
}
@media screen and (min-width: 769px) {
  .p-flow__item-num {
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__item-num {
    width: 5.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__item-num {
    width: 62px;
  }
}

.p-flow__item-icon {
  background: #e6e8ed;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__item-icon {
    margin-inline: auto;
    width: 13.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__item-icon {
    margin-inline: auto;
    width: 160px;
  }
}
.p-flow__item-icon img {
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__item-content {
    -webkit-margin-before: 0.833vw;
            margin-block-start: 0.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__item-content {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__item-label {
    font-size: 4vw;
    line-height: 1.367;
  }
}
@media screen and (min-width: 769px) {
  .p-flow__item-label {
    line-height: 1.556;
    min-height: 3.2em;
  }
}

.p-flow__notes {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow__notes {
    -webkit-margin-before: 1.6vw;
            margin-block-start: 1.6vw;
    margin-inline: auto;
    padding-block: 0.667vw 1.333vw;
    width: 35.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__notes {
    -webkit-margin-before: 1vw;
            margin-block-start: 1vw;
    padding-block: 0.417vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__notes {
    -webkit-margin-before: 12px;
            margin-block-start: 12px;
    padding-block: 5px;
  }
}
.p-flow__notes::before, .p-flow__notes::after {
  border: 1px solid #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-flow__notes::before, .p-flow__notes::after {
    width: 1.12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__notes::before, .p-flow__notes::after {
    width: 0.583vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__notes::before, .p-flow__notes::after {
    width: 7px;
  }
}
.p-flow__notes::before {
  border-right: 0;
  left: 0;
}
.p-flow__notes::after {
  border-left: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .p-flow__notes-text {
    font-size: 3.467vw;
    line-height: 1.615;
  }
}
@media screen and (min-width: 769px) {
  .p-flow__notes-text {
    line-height: 1.375;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__notes-text {
    font-size: 1.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__notes-text {
    font-size: 16px;
  }
}
.p-flow__notes-text + .p-flow__notes-text::before {
  background: #fff;
  content: "";
  display: block;
  height: 1px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-flow__notes-text + .p-flow__notes-text::before {
    margin-block: 0.8vw 2vw;
    width: 3.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-flow__notes-text + .p-flow__notes-text::before {
    margin-block: 0.417vw;
    width: 2vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__notes-text + .p-flow__notes-text::before {
    margin-block: 5px;
    width: 24px;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__item:not(:last-child) .p-flow__item-icon::before {
    background: #e6e8ed;
    content: "";
    display: block;
    height: calc(100% + 4.267vw);
    left: 14.4vw;
    position: absolute;
    top: 0;
    width: 0.4vw;
  }
}

@media screen and (max-width: 768px) {
  .p-download {
    -webkit-margin-before: 15.333vw;
            margin-block-start: 15.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-download {
    -webkit-margin-before: 5.833vw;
            margin-block-start: 5.833vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-download {
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
  }
}

@media screen and (max-width: 768px) {
  .p-download__button {
    width: 76vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-download__button {
    width: 48.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-download__button {
    width: 580px;
  }
}

@media screen and (max-width: 768px) {
  .p-download__note {
    font-size: 3.2vw;
    line-height: 1.75;
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-download__note {
    line-height: 1.75;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-download__note {
    font-size: 1.333vw;
    -webkit-margin-before: 1.667vw;
            margin-block-start: 1.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-download__note {
    font-size: 16px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.p-movies {
  background: #e6e8ed;
}

.p-movies__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-movies__inner {
    padding-block: 17.333vw 7.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-movies__inner {
    padding-block: 4.583vw 2.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-movies__inner {
    padding-block: 55px 30px;
  }
}

.p-movies__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-movies__title {
    width: 69.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-movies__title {
    width: 33.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-movies__title {
    width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .p-movies__text {
    line-height: 2.143;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-movies__text {
    line-height: 2.333;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-movies__text {
    -webkit-margin-before: 2.917vw;
            margin-block-start: 2.917vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-movies__text {
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
}

@media screen and (max-width: 768px) {
  .p-movies__arrow {
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    -webkit-margin-start: 49.6vw;
            margin-inline-start: 49.6vw;
    width: 1.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-movies__arrow {
    -webkit-margin-before: 1.667vw;
            margin-block-start: 1.667vw;
    -webkit-margin-start: 45.667vw;
            margin-inline-start: 45.667vw;
    width: 1.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-movies__arrow {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    -webkit-margin-start: 548px;
            margin-inline-start: 548px;
    width: 14px;
  }
}

.p-contact {
  background: #e6e8ed;
}

.p-contact__header {
  background: url(../images/contact_bg.jpg) 50% 0/auto 100% no-repeat #a6c4c4;
}
@media screen and (max-width: 768px) {
  .p-contact__header {
    height: 29.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-contact__header {
    height: 18.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact__header {
    height: 220px;
  }
}

.p-contact__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-contact__inner {
    -webkit-padding-after: 17.333vw;
            padding-block-end: 17.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-contact__inner {
    -webkit-padding-after: 8.75vw;
            padding-block-end: 8.75vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact__inner {
    -webkit-padding-after: 105px;
            padding-block-end: 105px;
  }
}

.p-contact__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    -webkit-margin-before: -0.267vw;
            margin-block-start: -0.267vw;
    width: 93.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-contact__title {
    -webkit-margin-before: -1px;
            margin-block-start: -1px;
    width: 48.75vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact__title {
    -webkit-margin-before: -1px;
            margin-block-start: -1px;
    width: 585px;
  }
}

.p-form {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-form {
    -webkit-margin-before: 20.667vw;
            margin-block-start: 20.667vw;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form {
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    width: 68.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
    width: 820px;
  }
}

@media screen and (max-width: 768px) {
  .p-form__group {
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-form__group {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__group {
    -webkit-margin-before: 1.25vw;
            margin-block-start: 1.25vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__group {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
  }
}

.p-form__title {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-form__title {
    -webkit-margin-start: 0.8vw;
            margin-inline-start: 0.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__title {
    -webkit-margin-before: 2.083vw;
            margin-block-start: 2.083vw;
    width: 20vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__title {
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
    width: 240px;
  }
}
.p-form__title::after {
  background: var(--color-tertiary);
  color: #fff;
  content: "必須";
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-form__title::after {
    display: inline-block;
    font-size: 3.467vw;
    line-height: 1;
    -webkit-margin-start: 5.333vw;
            margin-inline-start: 5.333vw;
    padding-block: 0.533vw;
    vertical-align: middle;
    width: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-form__title::after {
    line-height: 1.375;
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__title::after {
    font-size: 1.333vw;
    width: 3.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__title::after {
    font-size: 16px;
    width: 42px;
  }
}

@media screen and (max-width: 768px) {
  .p-form__data {
    -webkit-margin-before: 1.867vw;
            margin-block-start: 1.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__data {
    width: 46.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__data {
    width: 560px;
  }
}

.p-form__input,
.p-form__select {
  -webkit-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 0;
  color: #333;
  font-size: 100%;
  line-height: 1.6;
  height: inherit;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-form__input,
  .p-form__select {
    border-radius: 1.333vw;
    padding-block: 2vw;
    padding-inline: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__input,
  .p-form__select {
    border-radius: 0.833vw;
    padding-block: 1.5vw;
    padding-inline: 2.25vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__input,
  .p-form__select {
    border-radius: 10px;
    padding-block: 18px;
    padding-inline: 27px;
  }
}
.p-form__input::-webkit-input-placeholder, .p-form__select::-webkit-input-placeholder {
  color: #b3b3b3;
}
.p-form__input:-ms-input-placeholder, .p-form__select:-ms-input-placeholder {
  color: #b3b3b3;
}
.p-form__input::-ms-input-placeholder, .p-form__select::-ms-input-placeholder {
  color: #b3b3b3;
}
.p-form__input::placeholder,
.p-form__select::placeholder {
  color: #b3b3b3;
}

.p-form__select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2019.26%2010.67%22%3E%20%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%221.47%22%20d%3D%22M18.74.52%209.63%209.63.52.52%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-form__select {
    background-position: 97% 50%;
    background-size: 2.667vw auto;
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__select {
    background-position: 91.6% 50%;
    background-size: 1.167vw auto;
    width: 20vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__select {
    background-position: 91.6% 50%;
    background-size: 14px auto;
    width: 240px;
  }
}

@media screen and (max-width: 768px) {
  .p-form__button-wrap {
    -webkit-margin-before: 10.667vw;
            margin-block-start: 10.667vw;
    margin-inline: auto;
    width: 76vw;
  }
}
@media screen and (min-width: 769px) {
  .p-form__button-wrap {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__button-wrap {
    gap: 1.667vw;
    -webkit-margin-before: 5vw;
            margin-block-start: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__button-wrap {
    gap: 20px;
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
  }
}

.p-form__button {
  -webkit-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 100vw;
  cursor: pointer;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-form__button {
    box-shadow: 2vw 2vw 0.933vw rgba(0, 0, 0, 0.3);
    height: 16vw;
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__button {
    box-shadow: 1.25vw 1.25vw 0.583vw rgba(0, 0, 0, 0.3);
    height: 8.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__button {
    box-shadow: 15px 15px 7px rgba(0, 0, 0, 0.3);
    height: 100px;
  }
}
@media (any-hover: hover) {
  .p-form__button:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 768px) {
  .p-form__button--confirm {
    background-image: url(../images/btn_confirm_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-form__button--confirm {
    background-image: url(../images/btn_confirm_pc.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__button--confirm {
    width: 48.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__button--confirm {
    width: 580px;
  }
}

@media screen and (max-width: 768px) {
  .p-form__button--revise {
    background-image: url(../images/btn_revise_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-form__button--revise {
    background-image: url(../images/btn_revise_pc.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__button--revise {
    width: 31.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__button--revise {
    width: 380px;
  }
}

@media screen and (max-width: 768px) {
  .p-form__button--submit {
    background-image: url(../images/btn_submit_sp.png);
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-form__button--submit {
    background-image: url(../images/btn_submit_pc.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__button--submit {
    width: 31.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__button--submit {
    width: 380px;
  }
}

@media screen and (max-width: 768px) {
  .p-form__privacy {
    font-size: 3.467vw;
    line-height: 1.769;
    -webkit-margin-before: 9.333vw;
            margin-block-start: 9.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-form__privacy {
    line-height: 2.125;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-form__privacy {
    font-size: 1.333vw;
    -webkit-margin-before: 3.75vw;
            margin-block-start: 3.75vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-form__privacy {
    font-size: 16px;
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
  }
}

.p-form__privacy-link {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-form__privacy-link:hover {
    text-decoration: none;
  }
}

.p-contact--confirm {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-contact--confirm .p-contact__inner {
    padding-block: 0 19.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-contact--confirm .p-contact__inner {
    padding-block: 0 17.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact--confirm .p-contact__inner {
    padding-block: 0 210px;
  }
}
@media screen and (max-width: 768px) {
  .p-contact--confirm .p-form {
    -webkit-margin-before: 20vw;
            margin-block-start: 20vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-contact--confirm .p-form {
    -webkit-padding-after: 1.25vw;
            padding-block-end: 1.25vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact--confirm .p-form {
    -webkit-padding-after: 15px;
            padding-block-end: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-contact--confirm .p-form__group {
    -webkit-margin-before: 8.667vw;
            margin-block-start: 8.667vw;
  }
}
@media screen and (max-width: 768px) {
  .p-contact--confirm .p-form__data {
    line-height: 2;
    -webkit-margin-before: 2vw;
            margin-block-start: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-contact--confirm .p-form__data {
    line-height: 2.222;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-contact--confirm .p-form__data {
    -webkit-margin-before: 1.25vw;
            margin-block-start: 1.25vw;
    width: 43.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact--confirm .p-form__data {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    width: 520px;
  }
}

.p-contact--thanks {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-contact--thanks .p-contact__inner {
    padding-block: 0 19.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-contact--thanks .p-contact__inner {
    padding-block: 0 29.167vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact--thanks .p-contact__inner {
    padding-block: 0 350px;
  }
}

@media screen and (max-width: 768px) {
  .p-thanks__title {
    font-size: 8vw;
    -webkit-margin-before: 18.667vw;
            margin-block-start: 18.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-thanks__title {
    font-size: 3.667vw;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-thanks__title {
    font-size: 44px;
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}

@media screen and (max-width: 768px) {
  .p-thanks__text {
    line-height: 2.143;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-thanks__text {
    line-height: 2.556;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-thanks__text {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-thanks__text {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-thanks__button {
    -webkit-margin-before: 20.667vw;
            margin-block-start: 20.667vw;
    width: 76vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .p-thanks__button {
    -webkit-margin-before: 5.417vw;
            margin-block-start: 5.417vw;
    width: 48.333vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-thanks__button {
    -webkit-margin-before: 65px;
            margin-block-start: 65px;
    width: 580px;
  }
}

@media screen and (min-width: 769px) {
  .u-only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-only-pc {
    display: none !important;
  }
}
.u-sup {
  font-size: 58.3%;
  vertical-align: super;
}

.u-font-yumincho {
  font-family: var(--font-YuMincho);
}

.u-color-primary {
  color: var(--color-primary);
}

.u-color-secondary {
  color: var(--color-secondary);
}

.u-color-tertiary {
  color: var(--color-tertiary);
}

.u-color-sub {
  color: var(--color-sub);
}

.u-align-center {
  text-align: center;
}

.u-align-right {
  text-align: right;
}

.u-visibility-hidden {
  visibility: hidden;
}

.u-fw900 {
  font-weight: 900 !important;
}

.u-fw700 {
  font-weight: 700 !important;
}

.u-fw600 {
  font-weight: 600 !important;
}

.u-fw500 {
  font-weight: 500 !important;
}

.u-fw400 {
  font-weight: 400 !important;
}

.u-fw300 {
  font-weight: 300 !important;
}

.u-fz70 {
  font-size: 0.7em;
}/*# sourceMappingURL=style.css.map */