@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;
}

/*
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
*/
img {
  height: auto;
  max-width: inherit;
  vertical-align: bottom;
  width: 100%;
}

a:not([class]) {
  color: var(--color-font);
}
@media (any-hover: hover) {
  a:not([class]):hover {
    opacity: 0.8;
  }
}

b, strong {
  font-weight: bolder;
}

main > section {
  padding: 0;
}

:root {
  --color-font: #1d1d1d;
  --color-primary: #c88b0e;
  --color-secondary: #d85a00;
  --color-tertiary: #fcfb21;
  --color-quaternary: #6fc400;
  --font-NotoSansJP: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", YuGothic, sans-serif;
}

body {
  background: #fff;
  color: var(--color-font);
  font-family: var(--font-NotoSansJP);
  font-weight: 400;
  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: 1179px) {
  body {
    font-size: 1.864vw;
  }
}
@media screen and (min-width: 1180px) {
  body {
    font-size: 22px;
    min-width: 1180px;
  }
}

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

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

.l-header {
  background: #fff;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}
.l-header::after {
  background: linear-gradient(0deg, rgba(114, 65, 0, 0) 0%, rgb(114, 65, 0) 100%);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.2;
  position: absolute;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .l-header::after {
    height: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-header::after {
    height: 0.847vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-header::after {
    height: 10px;
  }
}

.l-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-block: 2.667vw;
    padding-inline: 2.4vw 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-header__inner {
    padding-block: 0.932vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-header__inner {
    padding-block: 11px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 38.533vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-header__logo {
    width: 17.627vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-header__logo {
    width: 208px;
  }
}

.l-header__list {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .l-header__list {
    gap: 1.733vw;
  }
}
@media screen and (min-width: 769px) {
  .l-header__list {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-header__list {
    gap: 0.593vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-header__list {
    gap: 7px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__item {
    width: 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-header__item--tel {
    width: 22.881vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-header__item--tel {
    width: 270px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-header__item--line, .l-header__item--contact {
    width: 19.492vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-header__item--line, .l-header__item--contact {
    width: 230px;
  }
}

.l-footer {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer {
    background: url(../images/footer_bg_sp.jpg) 0 0/100% auto no-repeat var(--color-primary);
  }
}
@media screen and (min-width: 769px) {
  .l-footer {
    background: url(../images/footer_bg_pc.jpg) 50% 0 no-repeat var(--color-primary);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-footer {
    background-size: 186.441vw auto;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding-block: 12.667vw 14vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-footer__inner {
    padding-block: 5.932vw 5.508vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-footer__inner {
    padding-block: 70px 65px;
  }
}

.l-company {
  display: flex;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-company {
    gap: 4vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-company {
    gap: 2.966vw;
    -webkit-margin-start: 12.712vw;
            margin-inline-start: 12.712vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-company {
    gap: 35px;
    -webkit-margin-start: 150px;
            margin-inline-start: 150px;
  }
}

.l-company__title {
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-company__title {
    font-size: 3.467vw;
    width: 29.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-company__title {
    font-size: 2.203vw;
    width: 12.712vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-company__title {
    font-size: 26px;
    width: 150px;
  }
}
.l-company__title::after {
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .l-company__title::after {
    height: 23.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-company__title::after {
    height: 16.441vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-company__title::after {
    height: 194px;
  }
}

.l-company__group {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-company__group {
    font-size: 3.2vw;
    gap: 1.333vw;
    line-height: 1.583;
    -webkit-margin-before: -1.333vw;
            margin-block-start: -1.333vw;
    width: 70vw;
  }
}
@media screen and (min-width: 769px) {
  .l-company__group {
    line-height: 1.7;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-company__group {
    font-size: 1.695vw;
    gap: 0.847vw;
    -webkit-margin-before: -0.424vw;
            margin-block-start: -0.424vw;
    width: 59.322vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-company__group {
    font-size: 20px;
    gap: 10px;
    -webkit-margin-before: -5px;
            margin-block-start: -5px;
    width: 700px;
  }
}
@media screen and (max-width: 768px) {
  .l-company__group:not(:nth-of-type(1)) {
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-company__group:not(:nth-of-type(1)) {
    -webkit-margin-before: 1.695vw;
            margin-block-start: 1.695vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-company__group:not(:nth-of-type(1)) {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.l-company__sub-title {
  display: flex;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-company__sub-title {
    gap: 1.333vw;
    width: 20vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-company__sub-title {
    gap: 0.847vw;
    width: 13.136vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-company__sub-title {
    gap: 10px;
    width: 155px;
  }
}
.l-company__sub-title::after {
  border-bottom: 2px dotted #e3c586;
  content: "";
  display: block;
  height: 1.2em;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .l-company__data {
    width: calc(100% - 20vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-company__data {
    width: calc(100% - 13.136vw);
  }
}
@media screen and (min-width: 1180px) {
  .l-company__data {
    width: calc(100% - 155px);
  }
}

.l-copyright {
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-copyright {
    font-size: 2.667vw;
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-copyright {
    font-size: 1.186vw;
    -webkit-margin-before: 3.814vw;
            margin-block-start: 3.814vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-copyright {
    font-size: 14px;
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
  }
}

.l-fixed {
  background: #fff;
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  transition: 0.3s;
  width: 100%;
  z-index: 100;
}
.l-fixed::before {
  background: linear-gradient(0deg, rgb(114, 65, 0) 0%, rgba(114, 65, 0, 0) 100%);
  content: "";
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .l-fixed::before {
    height: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-fixed::before {
    height: 1.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-fixed::before {
    height: 16px;
  }
}
.l-fixed.is-show {
  display: inherit;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-fixed__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-fixed__inner {
    align-items: flex-start;
    height: 18.667vw;
    justify-content: space-between;
    -webkit-padding-before: 2vw;
            padding-block-start: 2vw;
    padding-inline: 4vw 3.333vw;
  }
}
@media screen and (min-width: 769px) {
  .l-fixed__inner {
    align-items: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-fixed__inner {
    height: 8.475vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-fixed__inner {
    height: 100px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-fixed__logo {
    width: 17.627vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-fixed__logo {
    width: 208px;
  }
}

.l-fixed__btn {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-fixed__btn {
    width: 73.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-fixed__btn {
    -webkit-margin-start: 7.288vw;
            margin-inline-start: 7.288vw;
    width: 43.22vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-fixed__btn {
    -webkit-margin-start: 86px;
            margin-inline-start: 86px;
    width: 510px;
  }
}
@media (any-hover: hover) {
  .l-fixed__btn:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 768px) {
  .l-fixed__pagetop {
    width: 14.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .l-fixed__pagetop {
    margin-inline: auto 0;
    width: 7.119vw;
  }
}
@media screen and (min-width: 1180px) {
  .l-fixed__pagetop {
    margin-inline: auto 0;
    width: 84px;
  }
}

@media screen and (max-width: 768px) {
  .c-cta {
    background: url(../images/cta_bg_01_sp.jpg) 0 0/100% auto no-repeat #8cd033;
  }
}
@media screen and (min-width: 769px) {
  .c-cta {
    background: url(../images/cta_bg_01_pc.jpg) 50% 0 no-repeat #8cd033;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta {
    background-size: 169.492vw auto;
  }
}

@media screen and (max-width: 768px) {
  .c-cta__inner {
    padding-block: 6vw 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__inner {
    padding-block: 4.237vw 0.424vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__inner {
    padding-block: 50px 5px;
  }
}

.c-cta__content {
  background: url(../images/cta_bg_02.png) 100% 0 no-repeat rgba(255, 255, 255, 0.9);
  margin-inline: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .c-cta__content {
    background-size: 33.733vw auto;
    padding-block: 3.333vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__content {
    background-size: auto 100%;
    padding-block: 1.695vw 2.119vw;
    width: 88.136vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__content {
    padding-block: 20px 25px;
    width: 1040px;
  }
}

@media screen and (max-width: 768px) {
  .c-cta__title {
    -webkit-margin-start: 4.667vw;
            margin-inline-start: 4.667vw;
    width: 56.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__title {
    -webkit-margin-start: 7.627vw;
            margin-inline-start: 7.627vw;
    width: 55.932vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__title {
    -webkit-margin-start: 90px;
            margin-inline-start: 90px;
    width: 660px;
  }
}

.c-cta__btn-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-cta__btn-list {
    gap: 0.667vw;
    flex-direction: column;
    -webkit-margin-before: 2vw;
            margin-block-start: 2vw;
    margin-inline: auto;
    position: relative;
    width: 85.333vw;
    z-index: 5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__btn-list {
    gap: 0.847vw;
    -webkit-margin-before: 1.271vw;
            margin-block-start: 1.271vw;
    -webkit-margin-start: 3.39vw;
            margin-inline-start: 3.39vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__btn-list {
    gap: 10px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    -webkit-margin-start: 40px;
            margin-inline-start: 40px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__btn-item--tel {
    width: 22.881vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__btn-item--tel {
    width: 270px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__btn-item--line, .c-cta__btn-item--contact {
    width: 19.492vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__btn-item--line, .c-cta__btn-item--contact {
    width: 230px;
  }
}

.c-cta__btn {
  cursor: pointer;
  display: block;
}
@media (any-hover: hover) {
  .c-cta__btn:hover {
    opacity: 0.8;
  }
}

.c-cta__image {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .c-cta__image--man {
    right: 12vw;
    top: -5.333vw;
    width: 19.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__image--man {
    bottom: 0;
    right: 4.237vw;
    width: 16.102vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__image--man {
    bottom: 0;
    right: 50px;
    width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .c-cta__image--car {
    right: -6vw;
    top: 2.933vw;
    width: 27.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__image--car {
    bottom: -2.542vw;
    right: -5.932vw;
    width: 21.441vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__image--car {
    bottom: -30px;
    right: -70px;
    width: 253px;
  }
}

.c-cta__deco {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-cta__deco {
    -webkit-margin-before: -4.533vw;
            margin-block-start: -4.533vw;
    width: 93.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-cta__deco {
    -webkit-margin-before: -2.542vw;
            margin-block-start: -2.542vw;
    width: 86.441vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-cta__deco {
    -webkit-margin-before: -30px;
            margin-block-start: -30px;
    width: 1020px;
  }
}

.c-modal {
  height: 100vh;
  height: 100dvh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  visibility: hidden;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .c-modal {
    padding-block: 10.75vh;
  }
}
@media screen and (min-width: 769px) {
  .c-modal {
    padding-block: 10vh;
  }
}
.c-modal.is-show {
  opacity: 1;
  visibility: visible;
}

.c-modal__bg {
  backdrop-filter: blur(10px);
  background: rgba(200, 139, 14, 0.8);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.c-modal__close {
  cursor: pointer;
  position: fixed;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .c-modal__close {
    right: 4vw;
    top: 8.667vw;
    top: 5vh;
    width: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .c-modal__close {
    left: 50%;
    position: absolute;
    top: 10vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__close {
    -webkit-transform: translateX(37.119vw);
            transform: translateX(37.119vw);
    width: 3.051vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__close {
    -webkit-transform: translateX(438px);
            transform: translateX(438px);
    width: 36px;
  }
}

.c-modal__content {
  height: 100%;
  margin-inline: auto;
  overflow-y: auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .c-modal__content {
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__content {
    width: 84.746vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__content {
    width: 1000px;
  }
}
@media screen and (min-width: 769px) {
  .c-modal__content {
    scrollbar-color: #666 #fff;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
  }
  .c-modal__content::-webkit-scrollbar {
    width: 10px;
  }
  .c-modal__content::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
  }
  .c-modal__content::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
  }
}

.c-modal__inner {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-modal__inner {
    padding-block: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__inner {
    padding-block: 0.847vw 4.237vw;
    width: 82.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__inner {
    padding-block: 10px 50px;
    width: 974px;
  }
}

.c-modal__group {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-modal__group {
    padding-block: 6.667vw;
    width: 85.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__group {
    -webkit-margin-before: 4.237vw;
            margin-block-start: 4.237vw;
    width: 76.271vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__group {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
    width: 900px;
  }
}

.c-modal__title {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.c-modal__title::before, .c-modal__title::after {
  background: url(../images/modal_title_bg.png) 0 50% no-repeat;
  content: "";
  display: block;
  height: 1em;
}
@media screen and (max-width: 768px) {
  .c-modal__title::before, .c-modal__title::after {
    background-size: auto 0.533vw;
    width: 22.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__title::before, .c-modal__title::after {
    background-size: 100% auto;
    width: 27.119vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__title::before, .c-modal__title::after {
    width: 320px;
  }
}

.c-modal__title-label {
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .c-modal__title-label {
    font-size: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__title-label {
    font-size: 2.712vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__title-label {
    font-size: 32px;
  }
}

.c-modal__btn-list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .c-modal__btn-list {
    gap: 3.333vw 2.667vw;
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .c-modal__btn-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__btn-list {
    gap: 1.695vw;
    -webkit-margin-before: 2.966vw;
            margin-block-start: 2.966vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__btn-list {
    gap: 20px;
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
}

.c-modal__btn {
  align-items: center;
  background: 0/contain no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-modal__btn {
    gap: 0.8vw;
    height: 20vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__btn {
    gap: 0.424vw;
    height: 7.627vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__btn {
    gap: 5px;
    height: 90px;
  }
}
@media (any-hover: hover) {
  .c-modal__btn:hover {
    opacity: 0.8;
  }
}

.c-modal__area {
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__area {
    font-size: 1.441vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__area {
    font-size: 17px;
  }
}

.c-modal__cell {
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .c-modal__cell {
    text-shadow: 0.4vw 0.4vw 0.533vw #cf2500, -0.4vw -0.4vw 0.533vw #cf2500;
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__cell {
    font-size: 1.864vw;
    text-shadow: 0.254vw 0.254vw 0.339vw #cf2500, -0.254vw -0.254vw 0.339vw #cf2500;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__cell {
    font-size: 22px;
    text-shadow: 3px 3px 4px #cf2500, -3px -3px 4px #cf2500;
  }
}

.c-modal__time {
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .c-modal__time {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal__time {
    font-size: 1.186vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal__time {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .c-modal--tel .c-modal__btn {
    background-image: url(../images/modal_tel_btn_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .c-modal--tel .c-modal__btn {
    background-image: url(../images/modal_tel_btn_pc.png);
  }
}

.c-modal--line .c-modal__btn-item {
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .c-modal--line .c-modal__btn-item {
    font-size: 5.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .c-modal--line .c-modal__btn-item {
    font-size: 2.034vw;
  }
}
@media screen and (min-width: 1180px) {
  .c-modal--line .c-modal__btn-item {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .c-modal--line .c-modal__btn {
    background-image: url(../images/modal_line_btn_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .c-modal--line .c-modal__btn {
    background-image: url(../images/modal_line_btn_pc.png);
  }
}

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

.p-kv__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-kv__inner {
    height: 181.867vw;
    padding-block: 20.667vw 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-kv__inner {
    height: 67.797vw;
    padding-block: 12.712vw 2.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-kv__inner {
    height: 800px;
    padding-block: 150px 30px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-kv__title {
    -webkit-margin-start: 39.407vw;
            margin-inline-start: 39.407vw;
    width: 56.61vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-kv__title {
    -webkit-margin-start: 465px;
            margin-inline-start: 465px;
    width: 668px;
  }
}

@media screen and (max-width: 768px) {
  .p-kv__catch {
    -webkit-margin-before: -6.667vw;
            margin-block-start: -6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-kv__catch {
    -webkit-margin-before: -4.068vw;
            margin-block-start: -4.068vw;
    -webkit-margin-start: 47.881vw;
            margin-inline-start: 47.881vw;
    width: 38.136vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-kv__catch {
    -webkit-margin-before: -48px;
            margin-block-start: -48px;
    -webkit-margin-start: 565px;
            margin-inline-start: 565px;
    width: 450px;
  }
}

@media screen and (max-width: 768px) {
  .p-kv__image {
    -webkit-margin-before: -8.533vw;
            margin-block-start: -8.533vw;
  }
}
@media screen and (min-width: 769px) {
  .p-kv__image {
    bottom: 0;
    position: absolute;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-kv__image {
    left: -5.508vw;
    width: 53.39vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-kv__image {
    left: -65px;
    width: 630px;
  }
}

.p-kv__list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-kv__list {
    gap: 2.667vw;
    justify-content: center;
    -webkit-margin-before: -10.133vw;
            margin-block-start: -10.133vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-kv__list {
    gap: 1.186vw;
    -webkit-margin-start: 43.729vw;
            margin-inline-start: 43.729vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-kv__list {
    gap: 14px;
    -webkit-margin-start: 516px;
            margin-inline-start: 516px;
  }
}

.p-kv__item {
  background: #fff;
  border: solid #9fd416;
}
@media screen and (max-width: 768px) {
  .p-kv__item {
    border-radius: 1.715vw;
    border-width: 0.686vw;
    box-shadow: 1.029vw 1.029vw 0 rgba(121, 79, 14, 0.5);
    padding-block: 2vw;
    padding-inline: 1.333vw;
    width: 28.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-kv__item {
    border-radius: 0.847vw;
    border-width: 0.339vw;
    box-shadow: 0.508vw 0.508vw 0 rgba(121, 79, 14, 0.5);
    padding-block: 1.144vw;
    padding-inline: 0.678vw;
    width: 13.898vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-kv__item {
    border-radius: 10px;
    border-width: 4px;
    box-shadow: 6px 6px 0 rgba(121, 79, 14, 0.5);
    padding-block: 13.5px;
    padding-inline: 8px;
    width: 164px;
  }
}

@media screen and (max-width: 768px) {
  .p-problem {
    background: url(../images/problem_bg_sp.jpg) 0 0/100% auto no-repeat #f4e8cf;
  }
}
@media screen and (min-width: 769px) {
  .p-problem {
    background: url(../images/problem_bg_pc.jpg) 50% 0 no-repeat #f4e8cf;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem {
    background-size: 186.441vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-problem__inner {
    padding-block: 17.6vw 15.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__inner {
    padding-block: 7.627vw 8.051vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__inner {
    padding-block: 90px 95px;
  }
}

@media screen and (max-width: 768px) {
  .p-problem__title {
    -webkit-margin-start: 3.733vw;
            margin-inline-start: 3.733vw;
    width: 54.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__title {
    -webkit-margin-start: 13.39vw;
            margin-inline-start: 13.39vw;
    width: 45.593vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__title {
    -webkit-margin-start: 158px;
            margin-inline-start: 158px;
    width: 538px;
  }
}

.p-problem__list {
  display: grid;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-problem__list {
    gap: 2.667vw;
    grid-template-columns: 1fr;
    -webkit-margin-before: 13.333vw;
            margin-block-start: 13.333vw;
    width: 86.4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-problem__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__list {
    gap: 0.847vw;
    -webkit-margin-before: 5.085vw;
            margin-block-start: 5.085vw;
    width: 83.898vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__list {
    gap: 10px;
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
    width: 990px;
  }
}

.p-problem__item {
  align-items: center;
  background: url(../images/problrem_icon.svg) no-repeat #fff;
  color: #1c1c1c;
  display: grid;
}
@media screen and (max-width: 768px) {
  .p-problem__item {
    background-position: 4.267vw 50%;
    background-size: 4.093vw auto;
    border-radius: 1.44vw;
    box-shadow: 0.577vw 1.154vw 1.154vw rgba(124, 83, 24, 0.2);
    height: 12.933vw;
    -webkit-padding-start: 10vw;
            padding-inline-start: 10vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__item {
    background-size: 2.034vw auto;
    border-radius: 0.847vw;
    box-shadow: 0.339vw 0.678vw 0.678vw rgba(124, 83, 24, 0.2);
    height: 7.627vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__item {
    background-size: 24px auto;
    border-radius: 10px;
    box-shadow: 4px 8px 8px rgba(124, 83, 24, 0.2);
    height: 90px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__item:nth-child(2n+1) {
    background-position: 2.542vw 50%;
    -webkit-padding-start: 5.508vw;
            padding-inline-start: 5.508vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__item:nth-child(2n+1) {
    background-position: 30px 50%;
    -webkit-padding-start: 65px;
            padding-inline-start: 65px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__item:nth-child(2n) {
    background-position: 5.085vw 50%;
    -webkit-padding-start: 8.051vw;
            padding-inline-start: 8.051vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__item:nth-child(2n) {
    background-position: 60px 50%;
    -webkit-padding-start: 95px;
            padding-inline-start: 95px;
  }
}

.p-problem__item-text {
  color: #1c1c1c;
}
@media screen and (max-width: 768px) {
  .p-problem__item-text {
    font-size: 4.533vw;
    line-height: 1.412;
  }
}
@media screen and (min-width: 769px) {
  .p-problem__item-text {
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__item-text {
    font-size: 2.373vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__item-text {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .p-problem__catch {
    -webkit-margin-before: 9.333vw;
            margin-block-start: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__catch {
    -webkit-margin-before: 3.814vw;
            margin-block-start: 3.814vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__catch {
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
  }
}

.p-problem__text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-problem__text {
    font-size: 2.933vw;
    line-height: 1.727;
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-problem__text {
    line-height: 1.864;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-problem__text {
    -webkit-margin-before: 3.39vw;
            margin-block-start: 3.39vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-problem__text {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.p-service {
  background: url(../images/service_bg@2x.png) no-repeat;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service {
    background-position: 50% 21.333vw;
    background-size: 86.667vw auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service {
    background-position: 50% 9.746vw;
    background-size: 55.085vw auto;
  }
}
@media screen and (min-width: 1180px) {
  .p-service {
    background-position: 50% 115px;
    background-size: 650px auto;
  }
}

@media screen and (max-width: 768px) {
  .p-service__inner {
    padding-block: 28vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service__inner {
    padding-block: 13.136vw 11.017vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service__inner {
    padding-block: 155px 130px;
  }
}

.p-service__title {
  display: inline-block;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-service__title {
    font-size: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service__title {
    font-size: 6.78vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service__title {
    font-size: 80px;
  }
}

.p-service__title-lead {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-service__title-lead {
    left: -12vw;
    top: -14.667vw;
    width: 30.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service__title-lead {
    left: -8.475vw;
    top: -8.898vw;
    width: 19.492vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service__title-lead {
    left: -100px;
    top: -105px;
    width: 230px;
  }
}

.p-service__pickup {
  display: grid;
}
@media screen and (max-width: 768px) {
  .p-service__pickup {
    gap: 1.733vw 3.333vw;
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 13.333vw;
            margin-block-start: 13.333vw;
    margin-inline: auto;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) {
  .p-service__pickup {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service__pickup {
    gap: 1.356vw 1.525vw;
    -webkit-margin-before: 6.78vw;
            margin-block-start: 6.78vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service__pickup {
    gap: 16px 18px;
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}

.p-service__pickup-item {
  position: relative;
}

.p-service__pickup-image {
  border: solid var(--color-primary);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-service__pickup-image {
    border-radius: 1.696vw 0;
    border-width: 0.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service__pickup-image {
    border-radius: 0.847vw 0;
    border-width: 0.339vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service__pickup-image {
    border-radius: 10px 0;
    border-width: 4px;
  }
}

.p-service__pickup-caption {
  background: var(--color-primary);
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding-inline: 0.7em;
}
@media screen and (max-width: 768px) {
  .p-service__pickup-caption {
    font-size: 4.533vw;
    line-height: 1.647;
    -webkit-transform: translateY(-2.667vw);
            transform: translateY(-2.667vw);
  }
}
@media screen and (min-width: 769px) {
  .p-service__pickup-caption {
    line-height: 1.63;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service__pickup-caption {
    font-size: 2.288vw;
    -webkit-transform: translateY(-1.441vw);
            transform: translateY(-1.441vw);
  }
}
@media screen and (min-width: 1180px) {
  .p-service__pickup-caption {
    font-size: 27px;
    -webkit-transform: translateY(-17px);
            transform: translateY(-17px);
  }
}

.p-service-lineup {
  background: #faf5da;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-service-lineup {
    -webkit-margin-before: 18.667vw;
            margin-block-start: 18.667vw;
    padding-block: 12.667vw 12vw;
    padding-inline: 4%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service-lineup {
    -webkit-margin-before: 7.203vw;
            margin-block-start: 7.203vw;
    padding-block: 6.356vw 2.119vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service-lineup {
    -webkit-margin-before: 85px;
            margin-block-start: 85px;
    padding-block: 75px 25px;
  }
}

.p-service-lineup__title {
  background: url(../images/service_lineup_bg@2x.png) 50% 50%/contain no-repeat;
  font-weight: 700;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-service-lineup__title {
    font-size: 5.333vw;
    line-height: 2.083;
    width: 55.6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-service-lineup__title {
    line-height: 2.083;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service-lineup__title {
    font-size: 3.051vw;
    width: 31.864vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service-lineup__title {
    font-size: 36px;
    width: 376px;
  }
}

.p-service-lineup__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-service-lineup__list {
    gap: 2.667vw 2.4vw;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service-lineup__list {
    gap: 1.271vw;
    -webkit-margin-start: 1.949vw;
            margin-inline-start: 1.949vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service-lineup__list {
    gap: 15px;
    -webkit-margin-start: 23px;
            margin-inline-start: 23px;
  }
}

.p-service-lineup__item {
  background: #fff;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-service-lineup__item {
    border-radius: 1.022vw;
    line-height: 1.571;
    padding-inline: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-service-lineup__item {
    line-height: 2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service-lineup__item {
    border-radius: 0.508vw;
    padding-inline: 1.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service-lineup__item {
    border-radius: 6px;
    padding-inline: 16px;
  }
}

.p-service-lineup__text {
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service-lineup__text {
    font-size: 3.2vw;
    line-height: 1.75;
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-service-lineup__text {
    line-height: 1.773;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-service-lineup__text {
    -webkit-margin-before: 2.542vw;
            margin-block-start: 2.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-service-lineup__text {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-price {
    background: url(../images/price_bg_sp.jpg) 0 0/100% auto no-repeat #c88b0e;
  }
}
@media screen and (min-width: 769px) {
  .p-price {
    background: url(../images/price_bg_pc.jpg) 50% 0 no-repeat #c88b0e;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price {
    background-size: 169.492vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-price__inner {
    -webkit-padding-before: 10.933vw;
            padding-block-start: 10.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__inner {
    height: 96.61vw;
    -webkit-padding-before: 5.508vw;
            padding-block-start: 5.508vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__inner {
    height: 1140px;
    -webkit-padding-before: 65px;
            padding-block-start: 65px;
  }
}

.p-price__title {
  align-items: center;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-price__title {
    background: url(../images/price_title_bg_sp.png) 50% 50%/contain no-repeat;
    font-size: 7.2vw;
    height: 23.2vw;
    -webkit-padding-after: 2vw;
            padding-block-end: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-price__title {
    background: url(../images/price_title_bg_pc.png) 50% 50%/contain no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__title {
    font-size: 5.254vw;
    height: 14.746vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__title {
    font-size: 62px;
    height: 174px;
  }
}

.p-price__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-price__list {
    gap: 4vw;
    -webkit-margin-before: 0.667vw;
            margin-block-start: 0.667vw;
    width: 91.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__list {
    gap: 1.695vw;
    -webkit-margin-before: -0.424vw;
            margin-block-start: -0.424vw;
    width: 76.271vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__list {
    gap: 20px;
    -webkit-margin-before: -5px;
            margin-block-start: -5px;
    width: 900px;
  }
}

.p-price__item {
  align-items: center;
  background: 0 0/auto 100% no-repeat #fff;
  display: grid;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-price__item {
    border-radius: 1.3vw;
    grid-template-columns: 26vw 1fr;
    height: 30.133vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__item {
    border-radius: 0.847vw;
    grid-template-columns: 16.949vw 1fr;
    height: 13.559vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__item {
    border-radius: 10px;
    grid-template-columns: 200px 1fr;
    height: 160px;
  }
}
@media screen and (max-width: 768px) {
  .p-price__item:nth-of-type(1) {
    background-image: url(../images/price_list_bg_01_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-price__item:nth-of-type(1) {
    background-image: url(../images/price_list_bg_01_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .p-price__item:nth-of-type(2) {
    background-image: url(../images/price_list_bg_02_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-price__item:nth-of-type(2) {
    background-image: url(../images/price_list_bg_02_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .p-price__item:nth-of-type(3) {
    background-image: url(../images/price_list_bg_03_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-price__item:nth-of-type(3) {
    background-image: url(../images/price_list_bg_03_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .p-price__item:nth-of-type(4) {
    background-image: url(../images/price_list_bg_04_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-price__item:nth-of-type(4) {
    background-image: url(../images/price_list_bg_04_pc.png);
  }
}

.p-price__sub-title {
  color: #fff;
  display: grid;
  font-weight: 700;
  letter-spacing: 0.04em;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .p-price__sub-title {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__sub-title {
    font-size: 2.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__sub-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-price__content {
    -webkit-padding-start: 5.333vw;
            padding-inline-start: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__content {
    -webkit-padding-start: 3.39vw;
            padding-inline-start: 3.39vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__content {
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
  }
}

.p-price__header {
  align-items: center;
  display: flex;
}

.p-price__catch {
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-price__catch {
    font-size: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__catch {
    font-size: 2.712vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__catch {
    font-size: 32px;
  }
}

.p-price__unit {
  background: var(--color-secondary);
  border-radius: 100vw;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-price__unit {
    font-size: 4.4vw;
    line-height: 1.455;
    -webkit-margin-end: 2.667vw;
            margin-inline-end: 2.667vw;
    padding-inline: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-price__unit {
    line-height: 1.462;
    padding-inline: 1em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__unit {
    font-size: 2.203vw;
    -webkit-margin-end: 1.271vw;
            margin-inline-end: 1.271vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__unit {
    font-size: 26px;
    -webkit-margin-end: 15px;
            margin-inline-end: 15px;
  }
}

.p-price__cost {
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-price__cost {
    font-size: 6.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__cost {
    font-size: 3.22vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__cost {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .p-price__cost-yen {
    font-size: 4.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__cost-yen {
    font-size: 2.203vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__cost-yen {
    font-size: 26px;
  }
}

.p-price__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-price__text {
    font-size: 3.467vw;
    line-height: 1.385;
    -webkit-margin-before: 2vw;
            margin-block-start: 2vw;
    -webkit-margin-start: 0.667vw;
            margin-inline-start: 0.667vw;
    width: 55.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-price__text {
    line-height: 1.45;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__text {
    font-size: 1.695vw;
    -webkit-margin-before: 0.847vw;
            margin-block-start: 0.847vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__text {
    font-size: 20px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.p-price__note {
  color: #4d4d4d;
  letter-spacing: 0.04em;
  -webkit-margin-before: 0.5em;
          margin-block-start: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-price__note {
    font-size: 2.4vw;
    -webkit-margin-start: 0.667vw;
            margin-inline-start: 0.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__note {
    font-size: 1.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__note {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .p-price__message {
    background: url(../images/price_message_bg_sp.png) 0 0/100% auto no-repeat;
    height: 33.867vw;
    -webkit-margin-before: 7.467vw;
            margin-block-start: 7.467vw;
    -webkit-padding-before: 2vw;
            padding-block-start: 2vw;
    -webkit-padding-start: 39.067vw;
            padding-inline-start: 39.067vw;
  }
}
@media screen and (min-width: 769px) {
  .p-price__message {
    background: url(../images/price_message_bg_pc.png) 0 0/auto 100% no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__message {
    height: 16.78vw;
    -webkit-margin-before: 0.932vw;
            margin-block-start: 0.932vw;
    -webkit-margin-start: 5.508vw;
            margin-inline-start: 5.508vw;
    -webkit-padding-before: 4.237vw;
            padding-block-start: 4.237vw;
    width: 74.407vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__message {
    height: 198px;
    -webkit-margin-before: 11px;
            margin-block-start: 11px;
    -webkit-margin-start: 65px;
            margin-inline-start: 65px;
    -webkit-padding-before: 50px;
            padding-block-start: 50px;
    width: 878px;
  }
}

.p-price__message-text {
  align-items: center;
  color: #fff;
  display: flex;
  font-weight: 500;
  letter-spacing: 0.04em;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-price__message-text {
    font-size: 4.8vw;
    line-height: 1.417;
    height: 20.267vw;
    width: 56.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-price__message-text {
    font-size: 2.542vw;
    height: 5.932vw;
    margin-inline: auto 0;
    width: 52.712vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-price__message-text {
    font-size: 30px;
    height: 70px;
    margin-inline: auto 0;
    width: 622px;
  }
}

@media screen and (max-width: 768px) {
  .p-area {
    background: url(../images/area_bg_sp.jpg) 0 0/100% auto no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-area {
    background: url(../images/area_bg_pc.jpg) 50% 0 no-repeat #eedcb7;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-area {
    background-size: 169.492vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-area__inner {
    height: 116.533vw;
    -webkit-padding-before: 14vw;
            padding-block-start: 14vw;
  }
}
@media screen and (min-width: 769px) {
  .p-area__inner {
    align-items: center;
    display: flex;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-area__inner {
    height: 49.153vw;
    -webkit-padding-start: 5.085vw;
            padding-inline-start: 5.085vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-area__inner {
    height: 580px;
    -webkit-padding-start: 60px;
            padding-inline-start: 60px;
  }
}

.p-area__title {
  align-items: center;
  background: url(../images/area_title_bg@2x.png) 50% 50%/contain no-repeat;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-area__title {
    font-size: 9.333vw;
    height: 22.4vw;
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-area__title {
    font-size: 6.61vw;
    height: 16.102vw;
    -webkit-margin-after: 2.542vw;
            margin-block-end: 2.542vw;
    width: 36.271vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-area__title {
    font-size: 78px;
    height: 190px;
    -webkit-margin-after: 30px;
            margin-block-end: 30px;
    width: 428px;
  }
}

.p-area__map {
  background: url(../images/area_map@2x.png) no-repeat;
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-area__map {
    height: 63.2vw;
    -webkit-margin-before: -0.8vw;
            margin-block-start: -0.8vw;
    -webkit-margin-start: 14.667vw;
            margin-inline-start: 14.667vw;
    width: 71.6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-area__map {
    background-position: 0 13.8%;
    height: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-area__map {
    width: 49.576vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-area__map {
    width: 585px;
  }
}

.p-area__catch {
  color: #ff9e0e;
  font-weight: 700;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-area__catch {
    font-size: 4.533vw;
    left: 18vw;
    line-height: 1.235;
    top: 18.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-area__catch {
    line-height: 1.278;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-area__catch {
    font-size: 3.051vw;
    left: 12.712vw;
    top: 13.983vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-area__catch {
    font-size: 36px;
    left: 150px;
    top: 165px;
  }
}

.p-area__text {
  letter-spacing: 0.05em;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-area__text {
    font-size: 2.933vw;
    line-height: 1.25;
    left: 15.333vw;
    top: 59.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-area__text {
    line-height: 1.364;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-area__text {
    left: 10.593vw;
    top: 40.678vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-area__text {
    left: 125px;
    top: 480px;
  }
}

@media screen and (min-width: 769px) {
  .p-point {
    background: url(../images/point_bg_pc.jpg) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point {
    background-size: 254.237vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-point__inner {
    padding-block: 14.667vw 15.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__inner {
    height: 219.322vw;
    -webkit-padding-before: 7.627vw;
            padding-block-start: 7.627vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__inner {
    height: 2588px;
    -webkit-padding-before: 90px;
            padding-block-start: 90px;
  }
}

.p-point__title {
  align-items: center;
  background: url(../images/point_title_bg@2x.png) 50% 50%/contain no-repeat;
  font-weight: 700;
  display: flex;
  justify-content: center;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-point__title {
    font-size: 8.8vw;
    height: 23.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__title {
    font-size: 5.593vw;
    height: 15.932vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__title {
    font-size: 66px;
    height: 188px;
  }
}

.p-point__title-small {
  letter-spacing: 0.04em;
  -webkit-margin-end: 0.2em;
          margin-inline-end: 0.2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-point__title-small {
    font-size: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__title-small {
    font-size: 3.39vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__title-small {
    font-size: 40px;
  }
}
.p-point__title-small::after {
  bottom: -0.4em;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-point__title-small::after {
    border-bottom: 0.15em dotted var(--color-primary);
  }
}
@media screen and (min-width: 769px) {
  .p-point__title-small::after {
    border-bottom: 0.1em dotted var(--color-primary);
  }
}

.p-point__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-point__list {
    gap: 12vw;
    -webkit-margin-before: 13.333vw;
            margin-block-start: 13.333vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__list {
    gap: 8.475vw;
    -webkit-margin-before: 5.508vw;
            margin-block-start: 5.508vw;
    width: 88.136vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__list {
    gap: 100px;
    -webkit-margin-before: 65px;
            margin-block-start: 65px;
    width: 1040px;
  }
}

.p-point__item {
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-point__item {
    align-items: flex-start;
    display: flex;
  }
}

.p-point__image {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-point__image {
    border-radius: 2.773vw 0;
    width: 81.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__image {
    border-radius: 1.695vw 0;
    width: 47.458vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__image {
    border-radius: 20px 0;
    width: 560px;
  }
}

.p-point__num {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-point__num {
    top: -2.667vw;
    width: 13.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__num {
    top: -1.695vw;
    width: 8.305vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__num {
    top: -20px;
    width: 98px;
  }
}

.p-point__content {
  background: #fff;
  border: solid var(--color-primary);
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-point__content {
    border-radius: 1.387vw;
    border-width: 0.555vw;
    box-shadow: 2.22vw 2.22vw 0 rgba(229, 203, 71, 0.3);
    -webkit-margin-before: -6vw;
            margin-block-start: -6vw;
    padding-block: 1.333vw 4.667vw;
    padding-inline: 5.067vw;
    width: 81.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__content {
    border-radius: 0.847vw;
    border-width: 0.339vw;
    -webkit-margin-before: 3.39vw;
            margin-block-start: 3.39vw;
    padding-block: 2.119vw 2.966vw;
    padding-inline: 4.661vw;
    width: 49.153vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__content {
    border-radius: 10px;
    border-width: 4px;
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    padding-block: 25px 35px;
    padding-inline: 55px;
    width: 580px;
  }
}

.p-point__sub-title {
  align-items: center;
  font-weight: 700;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-point__sub-title {
    border-bottom: 2px dotted var(--color-primary);
    font-size: 6.933vw;
    line-height: 1.269;
    min-height: 18.667vw;
    padding-block: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-point__sub-title {
    border-bottom: 3px dotted var(--color-primary);
    line-height: 1.35;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__sub-title {
    font-size: 4.237vw;
    min-height: 8.898vw;
    padding-block: 1.695vw 2.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__sub-title {
    font-size: 50px;
    min-height: 105px;
    padding-block: 20px 30px;
  }
}
.p-point__sub-title::after {
  background: 0/contain no-repeat;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-point__sub-title::after {
    height: 18.667vw;
    width: 21.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__sub-title::after {
    height: 12.034vw;
    width: 12.034vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__sub-title::after {
    height: 142px;
    width: 142px;
  }
}

@media screen and (max-width: 768px) {
  .p-point__text {
    line-height: 1.643;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    -webkit-margin-start: 0.667vw;
            margin-inline-start: 0.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-point__text {
    line-height: 1.818;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-start: 0.3em;
            margin-inline-start: 0.3em;
  }
}

@media screen and (max-width: 768px) {
  .p-point__item:nth-child(2n+1) .p-point__num {
    left: 5.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__item:nth-child(2n+1) .p-point__num {
    left: 3.22vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__item:nth-child(2n+1) .p-point__num {
    left: 38px;
  }
}
@media screen and (max-width: 768px) {
  .p-point__item:nth-child(2n+1) .p-point__content {
    -webkit-margin-start: 8.267vw;
            margin-inline-start: 8.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__item:nth-child(2n+1) .p-point__content {
    box-shadow: 1.356vw 1.356vw 0 rgba(229, 203, 71, 0.3);
    -webkit-margin-start: -8.475vw;
            margin-inline-start: -8.475vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__item:nth-child(2n+1) .p-point__content {
    box-shadow: 16px 16px 0 rgba(229, 203, 71, 0.3);
    -webkit-margin-start: -100px;
            margin-inline-start: -100px;
  }
}
@media screen and (min-width: 769px) {
  .p-point__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 768px) {
  .p-point__item:nth-child(2n) .p-point__image {
    margin-inline: auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-point__item:nth-child(2n) .p-point__num {
    right: 5.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__item:nth-child(2n) .p-point__num {
    right: 3.22vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__item:nth-child(2n) .p-point__num {
    right: 38px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-point__item:nth-child(2n) .p-point__content {
    box-shadow: -1.356vw 1.356vw 0 rgba(229, 203, 71, 0.3);
    -webkit-margin-end: -8.475vw;
            margin-inline-end: -8.475vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-point__item:nth-child(2n) .p-point__content {
    box-shadow: -16px 16px 0 rgba(229, 203, 71, 0.3);
    -webkit-margin-end: -100px;
            margin-inline-end: -100px;
  }
}
@media screen and (max-width: 768px) {
  .p-point__item:nth-of-type(1) .p-point__sub-title::after {
    background-image: url(../images/point_deco_01_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-point__item:nth-of-type(1) .p-point__sub-title::after {
    background-image: url(../images/point_deco_01_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .p-point__item:nth-of-type(2) .p-point__sub-title::after {
    background-image: url(../images/point_deco_02_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-point__item:nth-of-type(2) .p-point__sub-title::after {
    background-image: url(../images/point_deco_02_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .p-point__item:nth-of-type(3) .p-point__sub-title::after {
    background-image: url(../images/point_deco_03_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-point__item:nth-of-type(3) .p-point__sub-title::after {
    background-image: url(../images/point_deco_03_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .p-point__item:nth-of-type(4) .p-point__sub-title::after {
    background-image: url(../images/point_deco_04_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-point__item:nth-of-type(4) .p-point__sub-title::after {
    background-image: url(../images/point_deco_04_pc.png);
  }
}

@media screen and (max-width: 768px) {
  .p-diff {
    background: url(../images/diff_bg_sp.jpg) 0 100%/100% auto no-repeat #efe5cc;
  }
}
@media screen and (min-width: 769px) {
  .p-diff {
    background: url(../images/diff_bg_pc.jpg) 50% 100% no-repeat #efe5ce;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff {
    background-size: 177.966vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-diff__inner {
    padding-block: 11.333vw 16vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff__inner {
    padding-block: 8.475vw 10.169vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff__inner {
    padding-block: 100px 120px;
  }
}

.p-diff__content {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-diff__content {
    border-radius: 2.473vw;
    margin-inline: auto;
    padding-block: 5.333vw 9.333vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff__content {
    border-radius: 1.695vw;
    padding-block: 2.966vw 6.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff__content {
    border-radius: 20px;
    padding-block: 35px 75px;
  }
}

.p-diff-title {
  align-items: center;
  display: flex;
  font-weight: 700;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-diff-title {
    gap: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-title {
    gap: 0.847vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-title {
    gap: 10px;
  }
}
.p-diff-title::before {
  background: #f5eab5;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-diff-title::before {
    height: 7.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-title::before {
    height: 5.085vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-title::before {
    height: 60px;
  }
}

.p-diff-title__lead {
  letter-spacing: 0.05em;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-diff-title__lead {
    font-size: 5.867vw;
    line-height: 1.25;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-title__lead {
    font-size: 3.729vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-title__lead {
    font-size: 44px;
  }
}

@media screen and (max-width: 768px) {
  .p-diff-title__lead-particle {
    font-size: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-title__lead-particle {
    font-size: 3.39vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-title__lead-particle {
    font-size: 40px;
  }
}

.p-diff-title__main {
  letter-spacing: 0.02em;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-diff-title__main {
    font-size: 13.333vw;
    -webkit-margin-after: 2.667vw;
            margin-block-end: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-title__main {
    font-size: 6.949vw;
    -webkit-margin-after: 1.271vw;
            margin-block-end: 1.271vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-title__main {
    font-size: 82px;
    -webkit-margin-after: 15px;
            margin-block-end: 15px;
  }
}

.p-diff-table {
  align-items: flex-end;
  display: flex;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-diff-table {
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    width: 84vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table {
    -webkit-margin-before: 2.542vw;
            margin-block-start: 2.542vw;
    width: 77.119vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    width: 910px;
  }
}

.p-diff-table__column {
  background: #fff;
  overflow: hidden;
}

.p-diff-table__row {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
.p-diff-table__row::after {
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
}
.p-diff-table__row:last-child::after {
  display: none;
}

.p-diff-table__row-header {
  align-items: center;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-diff-table__column--labels {
    -webkit-margin-after: 2.667vw;
            margin-block-end: 2.667vw;
    width: 20.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--labels {
    -webkit-margin-after: 1.695vw;
            margin-block-end: 1.695vw;
    width: 14.407vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--labels {
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
    width: 170px;
  }
}
.p-diff-table__column--labels .p-diff-table__row {
  background: linear-gradient(90deg, rgb(221, 188, 16) 71.16%, rgb(217, 183, 20) 80.62%, rgb(205, 170, 32) 91.25%, rgb(191, 153, 47) 100%);
  color: #fff;
  font-weight: 500;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--labels .p-diff-table__row {
    font-size: 2.667vw;
    height: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--labels .p-diff-table__row {
    font-size: 1.695vw;
    height: 6.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--labels .p-diff-table__row {
    font-size: 20px;
    height: 75px;
  }
}
.p-diff-table__column--labels .p-diff-table__row::after {
  background: #ffeccf;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--labels .p-diff-table__row::after {
    left: 1.867vw;
    width: 16.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--labels .p-diff-table__row::after {
    left: 1.271vw;
    width: 11.864vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--labels .p-diff-table__row::after {
    left: 15px;
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--labels .p-diff-table__row:nth-of-type(2) {
    border-top-left-radius: 2.476vw;
    height: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--labels .p-diff-table__row:nth-of-type(2) {
    border-top-left-radius: 1.695vw;
    height: 5.424vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--labels .p-diff-table__row:nth-of-type(2) {
    border-top-left-radius: 20px;
    height: 64px;
  }
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--labels .p-diff-table__row:last-child {
    border-bottom-left-radius: 2.476vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--labels .p-diff-table__row:last-child {
    border-bottom-left-radius: 1.695vw;
    height: 6.78vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--labels .p-diff-table__row:last-child {
    border-bottom-left-radius: 20px;
    height: 80px;
  }
}

.p-diff-table__column--main {
  background: linear-gradient(90deg, rgb(221, 188, 16) 71.16%, rgb(217, 183, 20) 80.62%, rgb(205, 170, 32) 91.25%, rgb(191, 153, 47) 100%);
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--main {
    border-radius: 2.476vw;
    box-shadow: 0 0.743vw 0.743vw rgba(158, 94, 0, 0.4);
    padding: 0.733vw;
    width: 26vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--main {
    border-radius: 1.695vw;
    box-shadow: 0 0.508vw 0.508vw rgba(158, 94, 0, 0.4);
    padding: 0.508vw;
    width: 23.729vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--main {
    border-radius: 20px;
    box-shadow: 0 6px 6px rgba(158, 94, 0, 0.4);
    padding: 6px;
    width: 280px;
  }
}
.p-diff-table__column--main .p-diff-table__row-header {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--main .p-diff-table__row-header {
    font-size: 4vw;
    height: 11.667vw;
    -webkit-padding-before: 1.333vw;
            padding-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--main .p-diff-table__row-header {
    font-size: 3.22vw;
    height: 7.966vw;
    -webkit-padding-before: 0.847vw;
            padding-block-start: 0.847vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--main .p-diff-table__row-header {
    font-size: 38px;
    height: 94px;
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
  }
}
.p-diff-table__column--main .p-diff-table__row-header::before {
  background: #ff9e0e;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--main .p-diff-table__row-header::before {
    border-top-left-radius: 2.476vw;
    border-top-right-radius: 2.476vw;
    height: calc(100% + 0.733vw);
    left: -0.733vw;
    width: calc(100% + 1.467vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--main .p-diff-table__row-header::before {
    border-top-left-radius: 1.695vw;
    border-top-right-radius: 1.695vw;
    height: calc(100% + 0.508vw);
    left: -0.508vw;
    width: calc(100% + 1.017vw);
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--main .p-diff-table__row-header::before {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: calc(100% + 6px);
    left: -6px;
    width: calc(100% + 12px);
  }
}
.p-diff-table__column--main .p-diff-table__row-header .p-diff-table__cell {
  position: relative;
  z-index: 5;
}
.p-diff-table__column--main .p-diff-table__row {
  background: #fff;
  color: #b44a00;
  font-weight: 700;
  line-height: 1.154;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--main .p-diff-table__row {
    font-size: 3.467vw;
    height: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--main .p-diff-table__row {
    font-size: 2.373vw;
    height: 6.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--main .p-diff-table__row {
    font-size: 28px;
    height: 75px;
  }
}
.p-diff-table__column--main .p-diff-table__row::after {
  background: #ffe2b7;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--main .p-diff-table__row::after {
    left: 1.6vw;
    width: 20.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--main .p-diff-table__row::after {
    left: 1.271vw;
    width: 20.339vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--main .p-diff-table__row::after {
    left: 15px;
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--main .p-diff-table__row:last-child {
    border-bottom-left-radius: 1.867vw;
    border-bottom-right-radius: 1.867vw;
    height: 11.6vw;
    -webkit-padding-after: 1.333vw;
            padding-block-end: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--main .p-diff-table__row:last-child {
    border-bottom-left-radius: 1.186vw;
    border-bottom-right-radius: 1.186vw;
    height: 8.051vw;
    -webkit-padding-after: 1.356vw;
            padding-block-end: 1.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--main .p-diff-table__row:last-child {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    height: 95px;
    -webkit-padding-after: 16px;
            padding-block-end: 16px;
  }
}

@media screen and (max-width: 768px) {
  .p-diff-table__column--sub {
    box-shadow: 0 0.753vw 0.753vw rgba(76, 76, 76, 0.3);
    border-radius: 2.473vw;
    -webkit-margin-after: 0.733vw;
            margin-block-end: 0.733vw;
    -webkit-margin-start: 1.2vw;
            margin-inline-start: 1.2vw;
    width: 17.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--sub {
    border-radius: 1.695vw;
    box-shadow: 0 0.508vw 0.508vw rgba(76, 76, 76, 0.3);
    -webkit-margin-after: 0.508vw;
            margin-block-end: 0.508vw;
    -webkit-margin-start: 0.847vw;
            margin-inline-start: 0.847vw;
    width: 18.644vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--sub {
    border-radius: 20px;
    box-shadow: 0 6px 6px rgba(76, 76, 76, 0.3);
    -webkit-margin-after: 6px;
            margin-block-end: 6px;
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    width: 220px;
  }
}
.p-diff-table__column--sub .p-diff-table__row-header {
  background: #9c9589;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--sub .p-diff-table__row-header {
    font-size: 3.467vw;
    height: 9.867vw;
    -webkit-padding-before: 1.333vw;
            padding-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--sub .p-diff-table__row-header {
    font-size: 2.203vw;
    height: 6.356vw;
    -webkit-padding-before: 0.847vw;
            padding-block-start: 0.847vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--sub .p-diff-table__row-header {
    font-size: 26px;
    height: 75px;
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
  }
}
.p-diff-table__column--sub .p-diff-table__row {
  color: #3f3f3f;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--sub .p-diff-table__row {
    font-size: 2.933vw;
    height: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--sub .p-diff-table__row {
    font-size: 1.864vw;
    height: 6.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--sub .p-diff-table__row {
    font-size: 22px;
    height: 75px;
  }
}
.p-diff-table__column--sub .p-diff-table__row::after {
  background: #e6e6e6;
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--sub .p-diff-table__row::after {
    left: 1.867vw;
    width: 14.133vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--sub .p-diff-table__row::after {
    left: 1.271vw;
    width: 16.102vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--sub .p-diff-table__row::after {
    left: 15px;
    width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .p-diff-table__column--sub .p-diff-table__row:last-child {
    height: 11.333vw;
    -webkit-padding-after: 1.333vw;
            padding-block-end: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-diff-table__column--sub .p-diff-table__row:last-child {
    height: 8.051vw;
    -webkit-padding-after: 1.864vw;
            padding-block-end: 1.864vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-diff-table__column--sub .p-diff-table__row:last-child {
    height: 95px;
    -webkit-padding-after: 22px;
            padding-block-end: 22px;
  }
}

@media screen and (max-width: 768px) {
  .p-voice {
    background: url(../images/voice_bg_01_sp.png) 0 0/100% auto no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-voice {
    background: url(../images/voice_bg_01_pc.png) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice {
    background-size: 169.492vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-voice__inner {
    padding-block: 24vw 17.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice__inner {
    padding-block: 11.441vw 9.746vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-voice__inner {
    padding-block: 135px 115px;
  }
}

.p-voice__lead {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  text-decoration-color: var(--color-primary);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.4em;
}
@media screen and (max-width: 768px) {
  .p-voice__lead {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice__lead {
    font-size: 3.051vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-voice__lead {
    font-size: 36px;
  }
}

.p-voice__title {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-voice__title {
    font-size: 9.2vw;
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice__title {
    font-size: 5.593vw;
    -webkit-margin-before: 2.119vw;
            margin-block-start: 2.119vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-voice__title {
    font-size: 66px;
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
  }
}

@media screen and (max-width: 768px) {
  .p-voice__voice-small {
    font-size: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice__voice-small {
    font-size: 5.254vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-voice__voice-small {
    font-size: 62px;
  }
}

.p-voice__list {
  display: flex;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-voice__list {
    flex-direction: column;
    gap: 4vw;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) {
  .p-voice__list {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice__list {
    gap: 1.695vw;
    -webkit-margin-before: 5.085vw;
            margin-block-start: 5.085vw;
    width: 93.22vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-voice__list {
    gap: 20px;
    -webkit-margin-before: 60px;
            margin-block-start: 60px;
    width: 1100px;
  }
}

.p-voice__item {
  align-items: center;
  background: url(../images/voice_bg_02@2x.png) 0 0/100% auto no-repeat;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-voice__item {
    border: 2px solid var(--color-primary);
    border-radius: 3.333vw 0;
    gap: 3.333vw;
    padding-block: 4vw;
    -webkit-padding-start: 4vw;
            padding-inline-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice__item {
    border: 3px solid var(--color-primary);
    border-radius: 1.695vw 0;
    gap: 2.119vw;
    padding-block: 2.119vw 2.966vw;
    -webkit-padding-start: 2.119vw;
            padding-inline-start: 2.119vw;
    width: 45.763vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-voice__item {
    border: 3px solid var(--color-primary);
    border-radius: 20px 0;
    gap: 25px;
    padding-block: 25px 35px;
    -webkit-padding-start: 25px;
            padding-inline-start: 25px;
    width: 540px;
  }
}

@media screen and (max-width: 768px) {
  .p-voice__avatar {
    width: 21.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice__avatar {
    width: 10.847vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-voice__avatar {
    width: 128px;
  }
}

@media screen and (max-width: 768px) {
  .p-voice__text {
    line-height: 1.714;
    width: 62vw;
  }
}
@media screen and (min-width: 769px) {
  .p-voice__text {
    line-height: 1.85;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-voice__text {
    font-size: 1.695vw;
    width: 27.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-voice__text {
    font-size: 20px;
    width: 325px;
  }
}

@media screen and (max-width: 768px) {
  .p-step {
    background: url(../images/step_bg_sp.png) 0 0/100% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-step {
    background: url(../images/step_bg_pc.png) 50% 0 no-repeat #faf3d0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step {
    background-size: 169.492vw auto;
  }
}

.p-step__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-step__inner {
    padding-block: 23.333vw 17.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__inner {
    padding-block: 12.288vw 10.593vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__inner {
    padding-block: 145px 125px;
  }
}

.p-step__title {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-step__title {
    font-size: 9.333vw;
    -webkit-margin-start: 14vw;
            margin-inline-start: 14vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__title {
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__title {
    font-size: 6.441vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__title {
    font-size: 76px;
  }
}

.p-step__catch {
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-step__catch {
    right: 4vw;
    top: 14.667vw;
    width: 21.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__catch {
    right: 13.136vw;
    top: 7.627vw;
    width: 11.864vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__catch {
    right: 155px;
    top: 90px;
    width: 140px;
  }
}

.p-step__text {
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-step__text {
    line-height: 1.518;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__text {
    line-height: 1.773;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__text {
    -webkit-margin-before: 2.542vw;
            margin-block-start: 2.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__text {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.p-step__list {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-step__list {
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__list {
    -webkit-margin-before: 3.39vw;
            margin-block-start: 3.39vw;
    width: 84.746vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__list {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    width: 1000px;
  }
}

.p-step__item {
  background: 0 0/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-step__item {
    -webkit-padding-before: 4.667vw;
            padding-block-start: 4.667vw;
    padding-inline: 30.667vw 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item {
    -webkit-padding-before: 2.966vw;
            padding-block-start: 2.966vw;
    padding-inline: 28.39vw 2.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item {
    -webkit-padding-before: 35px;
            padding-block-start: 35px;
    padding-inline: 335px 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-step__item:not(:first-child) {
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item:not(:first-child) {
    -webkit-margin-before: 2.542vw;
            margin-block-start: 2.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item:not(:first-child) {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.p-step__item-title {
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-step__item-title {
    font-size: 5.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item-title {
    font-size: 3.22vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .p-step__item-text {
    line-height: 1.5;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__item-text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item-text {
    font-size: 1.78vw;
    -webkit-margin-before: 1.271vw;
            margin-block-start: 1.271vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item-text {
    font-size: 21px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item-small {
    font-size: 1.61vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item-small {
    font-size: 19px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item-note {
    font-size: 1.441vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item-note {
    font-size: 17px;
  }
}

@media screen and (max-width: 768px) {
  .p-step__item:nth-of-type(1) {
    background-image: url(../images/step_list_01_sp.png);
    height: 42.533vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__item:nth-of-type(1) {
    background-image: url(../images/step_list_01_pc.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item:nth-of-type(1) {
    height: 17.966vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item:nth-of-type(1) {
    height: 212px;
  }
}
@media screen and (max-width: 768px) {
  .p-step__item:nth-of-type(2) {
    background-image: url(../images/step_list_02_sp.png);
    height: 47.867vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__item:nth-of-type(2) {
    background-image: url(../images/step_list_02_pc.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item:nth-of-type(2) {
    height: 21.356vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item:nth-of-type(2) {
    height: 252px;
  }
}
@media screen and (max-width: 768px) {
  .p-step__item:nth-of-type(3) {
    background-image: url(../images/step_list_03_sp.png);
    height: 46.533vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__item:nth-of-type(3) {
    background-image: url(../images/step_list_03_pc.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item:nth-of-type(3) {
    height: 17.966vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item:nth-of-type(3) {
    height: 212px;
  }
}
@media screen and (max-width: 768px) {
  .p-step__item:nth-of-type(4) {
    background-image: url(../images/step_list_04_sp.png);
    height: 45.733vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__item:nth-of-type(4) {
    background-image: url(../images/step_list_04_pc.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-step__item:nth-of-type(4) {
    height: 16.102vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-step__item:nth-of-type(4) {
    height: 190px;
  }
}

.p-qa__inner {
  background: url(../images/qa_bg_01@2x.png) no-repeat;
}
@media screen and (max-width: 768px) {
  .p-qa__inner {
    background-position: 6vw 14.933vw;
    background-size: 36.533vw auto;
    padding-block: 22.667vw 19.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-qa__inner {
    background-position: 10vw 6.78vw;
    background-size: 19.661vw auto;
    padding-block: 10.593vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-qa__inner {
    background-position: 118px 80px;
    background-size: 232px auto;
    padding-block: 125px;
  }
}

.p-qa__title {
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-qa__title {
    font-size: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-qa__title {
    font-size: 5.593vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-qa__title {
    font-size: 66px;
  }
}

.p-qa__list {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-qa__list {
    -webkit-margin-before: 16vw;
            margin-block-start: 16vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-qa__list {
    -webkit-margin-before: 6.356vw;
            margin-block-start: 6.356vw;
    width: 79.661vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-qa__list {
    -webkit-margin-before: 75px;
            margin-block-start: 75px;
    width: 940px;
  }
}

@media screen and (max-width: 768px) {
  .p-qa__item {
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-qa__item {
    -webkit-margin-before: 3.39vw;
            margin-block-start: 3.39vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-qa__item {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.p-qa__question {
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-qa__question {
    background: url(../images/qa_icon_q@2x.png) no-repeat, url(../images/qa_bg_02_sp.png) no-repeat #c88b0e;
    background-position: 5.333vw 2.667vw, 0 0;
    background-size: 4.533vw auto, 100% auto;
    font-size: 4.267vw;
    line-height: 1.344;
    min-height: 10.667vw;
    padding-block: 2.133vw;
    padding-inline: 11.333vw 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-qa__question {
    background: url(../images/qa_icon_q@2x.png) no-repeat, url(../images/qa_bg_02_pc.png) no-repeat #c88b0e;
    line-height: 1.4;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-qa__question {
    background-position: 9.661vw 0.847vw, 0 0;
    background-size: 2.966vw auto, 100% auto;
    font-size: 2.373vw;
    min-height: 5.085vw;
    padding-block: 0.847vw;
    padding-inline: 13.983vw 6.78vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-qa__question {
    background-position: 114px 10px, 0 0;
    background-size: 35px, auto, 100% auto;
    font-size: 28px;
    min-height: 60px;
    padding-block: 10px;
    padding-inline: 165px 80px;
  }
}

.p-qa__icon {
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-qa__icon {
    height: 0.533vw;
    right: 3.6vw;
    top: 4.8vw;
    width: 3vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-qa__icon {
    height: 0.339vw;
    right: 3.22vw;
    top: 2.373vw;
    width: 1.864vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-qa__icon {
    height: 4px;
    right: 38px;
    top: 28px;
    width: 22px;
  }
}
.p-qa__icon::before, .p-qa__icon::after {
  background: #fff;
  border-radius: 100vw;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  width: 100%;
}
.p-qa__icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-qa__question--active .p-qa__icon::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.p-qa__answer {
  background: url(../images/qa_icon_a@2x.png) no-repeat #f9f3e7;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .p-qa__answer {
    background-position: 5.333vw 5.333vw;
    background-size: 4.533vw auto;
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .p-qa__answer {
    line-height: 1.773;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-qa__answer {
    background-position: 9.661vw 2.373vw;
    background-size: 2.966vw auto;
  }
}
@media screen and (min-width: 1180px) {
  .p-qa__answer {
    background-position: 114px 28px;
    background-size: 35px auto;
  }
}

@media screen and (max-width: 768px) {
  .p-qa__answer-inner {
    padding-block: 4.667vw;
    padding-inline: 11.333vw 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-qa__answer-inner {
    padding-block: 2.373vw 1.949vw;
    padding-inline: 13.983vw 6.78vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-qa__answer-inner {
    padding-block: 28px 23px;
    padding-inline: 165px 80px;
  }
}

@media screen and (max-width: 768px) {
  .p-greeting {
    background: url(../images/greeting_bg_sp.jpg) 0 100%/100% auto no-repeat #e5cb47;
  }
}
@media screen and (min-width: 769px) {
  .p-greeting {
    background: url(../images/greeting_bg_pc.jpg) 50% 100% no-repeat #e6cd49;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting {
    background-size: 169.492vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-greeting__inner {
    padding-block: 9.333vw 11.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-greeting__inner {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__inner {
    padding-block: 6.78vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__inner {
    padding-block: 80px;
  }
}

.p-greeting__photo {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-greeting__photo {
    -webkit-margin-start: 6.4vw;
            margin-inline-start: 6.4vw;
    width: 83.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__photo {
    width: 50vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__photo {
    width: 590px;
  }
}

.p-greeting__photo-bg {
  opacity: 0.5;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-greeting__photo-bg {
    bottom: -2.933vw;
    right: -4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__photo-bg {
    bottom: -1.695vw;
    right: -2.542vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__photo-bg {
    bottom: -20px;
    right: -30px;
  }
}
.p-greeting__photo-bg::before {
  background: rgba(221, 188, 16, 0.7);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-greeting__photo-image {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-greeting__photo-image {
    box-shadow: 1.129vw 1.129vw 1.129vw rgba(107, 74, 0, 0.3);
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__photo-image {
    box-shadow: 0.678vw 0.678vw 0.678vw rgba(107, 74, 0, 0.3);
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__photo-image {
    box-shadow: 8px 8px 8px rgba(107, 74, 0, 0.3);
  }
}

@media screen and (max-width: 768px) {
  .p-greeting__content {
    -webkit-margin-before: 11.333vw;
            margin-block-start: 11.333vw;
    margin-inline: auto;
    width: 86.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__content {
    -webkit-margin-before: 1.271vw;
            margin-block-start: 1.271vw;
    width: 37.288vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__content {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    width: 440px;
  }
}

.p-greeting__company {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-greeting__company {
    -webkit-margin-start: 2vw;
            margin-inline-start: 2vw;
    -webkit-padding-start: 4vw;
            padding-inline-start: 4vw;
    width: 40.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__company {
    -webkit-padding-start: 2.119vw;
            padding-inline-start: 2.119vw;
    width: 23.729vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__company {
    -webkit-padding-start: 25px;
            padding-inline-start: 25px;
    width: 280px;
  }
}
.p-greeting__company::before {
  background: var(--color-font);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  width: 100%;
}

.p-greeting__company-label {
  color: #f5ebb7;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-greeting__company-label {
    font-size: 6.086vw;
    line-height: 1.284;
  }
}
@media screen and (min-width: 769px) {
  .p-greeting__company-label {
    line-height: 1.286;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__company-label {
    font-size: 3.559vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__company-label {
    font-size: 42px;
  }
}

.p-greeting__name {
  align-items: flex-end;
  border-bottom: 1px solid var(--color-font);
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-greeting__name {
    -webkit-margin-before: 3.733vw;
            margin-block-start: 3.733vw;
    margin-inline: auto 0;
    -webkit-padding-after: 2vw;
            padding-block-end: 2vw;
    width: 55.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__name {
    -webkit-margin-before: 1.525vw;
            margin-block-start: 1.525vw;
    -webkit-padding-after: 0.847vw;
            padding-block-end: 0.847vw;
    width: 35.593vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__name {
    -webkit-margin-before: 18px;
            margin-block-start: 18px;
    -webkit-padding-after: 10px;
            padding-block-end: 10px;
    width: 420px;
  }
}

.p-greeting__name-job {
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-greeting__name-job {
    font-size: 4.955vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__name-job {
    font-size: 3.051vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__name-job {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .p-greeting__name-sign {
    -webkit-margin-start: 1.333vw;
            margin-inline-start: 1.333vw;
    width: 39.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__name-sign {
    -webkit-margin-start: 0.847vw;
            margin-inline-start: 0.847vw;
    width: 23.39vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__name-sign {
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    width: 276px;
  }
}

@media screen and (max-width: 768px) {
  .p-greeting__text {
    line-height: 1.929;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-greeting__text {
    line-height: 2.167;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-greeting__text {
    font-size: 2.034vw;
    -webkit-margin-before: 2.119vw;
            margin-block-start: 2.119vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-greeting__text {
    font-size: 24px;
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
  }
}

@media screen and (max-width: 768px) {
  .p-contact__inner {
    padding-block: 16.267vw 18vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact__inner {
    padding-block: 7.627vw 11.441vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact__inner {
    padding-block: 90px 135px;
  }
}

.p-contact__title {
  align-items: center;
  background: url(../images/contact_bg@2x.png) 50% 50%/contain no-repeat;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 8vw;
    height: 22.667vw;
    -webkit-padding-before: 2vw;
            padding-block-start: 2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact__title {
    font-size: 4.746vw;
    height: 14.746vw;
    -webkit-padding-before: 0.847vw;
            padding-block-start: 0.847vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact__title {
    font-size: 56px;
    height: 174px;
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
  }
}
.p-contact__title::after {
  background: var(--color-primary);
  content: "";
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-contact__title::after {
    height: 0.461vw;
    -webkit-margin-before: 1.867vw;
            margin-block-start: 1.867vw;
    width: 24.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact__title::after {
    height: 0.339vw;
    -webkit-margin-before: 1.695vw;
            margin-block-start: 1.695vw;
    width: 17.797vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact__title::after {
    height: 4px;
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
    width: 210px;
  }
}

.p-contact-form {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-contact-form {
    -webkit-margin-before: 14.667vw;
            margin-block-start: 14.667vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form {
    -webkit-margin-before: 9.322vw;
            margin-block-start: 9.322vw;
    width: 82.203vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form {
    -webkit-margin-before: 110px;
            margin-block-start: 110px;
    width: 970px;
  }
}

@media screen and (max-width: 768px) {
  .p-contact-form__group {
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-contact-form__group {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__group {
    -webkit-margin-before: 4.237vw;
            margin-block-start: 4.237vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__group {
    -webkit-margin-before: 50px;
            margin-block-start: 50px;
  }
}

.p-contact-form__title {
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-contact-form__title {
    font-size: 4.533vw;
  }
}
@media screen and (min-width: 769px) {
  .p-contact-form__title {
    line-height: 1.696;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__title {
    font-size: 1.949vw;
    -webkit-padding-before: 1.271vw;
            padding-block-start: 1.271vw;
    width: 19.492vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__title {
    font-size: 23px;
    -webkit-padding-before: 15px;
            padding-block-start: 15px;
    width: 230px;
  }
}

.p-contact-form__data {
  align-items: flex-start;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-contact-form__data {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__data {
    width: 56.61vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__data {
    width: 668px;
  }
}
.p-contact-form__data::before {
  background: var(--color-secondary);
  color: #fff;
  content: "必須";
  display: inline-block;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact-form__data::before {
    font-size: 3.2vw;
    line-height: 1.417;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    -webkit-margin-end: 2.667vw;
            margin-inline-end: 2.667vw;
    width: 8.533vw;
  }
}
@media screen and (min-width: 769px) {
  .p-contact-form__data::before {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__data::before {
    font-size: 1.695vw;
    -webkit-margin-before: 1.525vw;
            margin-block-start: 1.525vw;
    -webkit-margin-end: 1.695vw;
            margin-inline-end: 1.695vw;
    width: 4.915vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__data::before {
    font-size: 20px;
    -webkit-margin-before: 18px;
            margin-block-start: 18px;
    -webkit-margin-end: 20px;
            margin-inline-end: 20px;
    width: 58px;
  }
}

.p-contact-form__input,
.p-contact-form__select,
.p-contact-form__textarea {
  background-color: #fff;
  border: 1px solid var(--color-font);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-contact-form__input,
  .p-contact-form__select,
  .p-contact-form__textarea {
    font-size: 4.533vw;
    padding-block: 2vw;
    padding-inline: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__input,
  .p-contact-form__select,
  .p-contact-form__textarea {
    font-size: 100%;
    padding-block: 1.186vw;
    padding-inline: 2.119vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__input,
  .p-contact-form__select,
  .p-contact-form__textarea {
    font-size: 100%;
    padding-block: 14px;
    padding-inline: 25px;
  }
}
.p-contact-form__input::-webkit-input-placeholder, .p-contact-form__select::-webkit-input-placeholder, .p-contact-form__textarea::-webkit-input-placeholder {
  color: #ccc;
}
.p-contact-form__input:-ms-input-placeholder, .p-contact-form__select:-ms-input-placeholder, .p-contact-form__textarea:-ms-input-placeholder {
  color: #ccc;
}
.p-contact-form__input::-ms-input-placeholder, .p-contact-form__select::-ms-input-placeholder, .p-contact-form__textarea::-ms-input-placeholder {
  color: #ccc;
}
.p-contact-form__input::placeholder,
.p-contact-form__select::placeholder,
.p-contact-form__textarea::placeholder {
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .p-contact-form__input,
  .p-contact-form__textarea {
    width: 80.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__input,
  .p-contact-form__textarea {
    width: 50vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__input,
  .p-contact-form__textarea {
    width: 590px;
  }
}

.p-contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath fill='%231d1d1d' d='M10 12 0 0h20z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-contact-form__select {
    background-position: 46.667vw 50%;
    background-size: auto 2.267vw;
    width: 53.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__select {
    background-position: 19.068vw 50%;
    background-size: 1.695vw auto;
    width: 22.034vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__select {
    background-position: 225px 50%;
    background-size: 20px auto;
    width: 260px;
  }
}

.p-contact-form__textarea {
  field-sizing: content;
}
@media screen and (max-width: 768px) {
  .p-contact-form__textarea {
    height: 40vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__textarea {
    height: 22.034vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__textarea {
    height: 260px;
  }
}

@media screen and (max-width: 768px) {
  .p-contact-form__action {
    -webkit-margin-before: 18.667vw;
            margin-block-start: 18.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__action {
    -webkit-margin-before: 8.051vw;
            margin-block-start: 8.051vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__action {
    -webkit-margin-before: 95px;
            margin-block-start: 95px;
  }
}

.p-contact-form__btn {
  background: url(../images/contact_btn@2x.png) 0 0/contain no-repeat;
  cursor: pointer;
  display: block;
  margin-inline: auto;
  text-indent: -9999px;
}
@media screen and (max-width: 768px) {
  .p-contact-form__btn {
    height: 16vw;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact-form__btn {
    height: 7.458vw;
    width: 37.288vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact-form__btn {
    height: 88px;
    width: 440px;
  }
}
@media (any-hover: hover) {
  .p-contact-form__btn:hover {
    opacity: 0.8;
  }
}

.p-contact__text {
  letter-spacing: 0.075em;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__text {
    font-size: 4vw;
    line-height: 1.857;
    -webkit-margin-before: 8.667vw;
            margin-block-start: 8.667vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) {
  .p-contact__text {
    line-height: 1.773;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact__text {
    -webkit-margin-before: 9.322vw;
            margin-block-start: 9.322vw;
    width: 82.203vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact__text {
    -webkit-margin-before: 110px;
            margin-block-start: 110px;
    width: 970px;
  }
}
.p-contact__text + .p-contact__text {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}

.p-contact__error {
  color: #f00;
}

@media screen and (max-width: 768px) {
  .p-contact--thanks .p-contact__inner {
    padding-block: 18vw 14.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact--thanks .p-contact__inner {
    padding-block: 7.627vw 13.559vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact--thanks .p-contact__inner {
    padding-block: 90px 160px;
  }
}
.p-contact--thanks .p-contact-form__action {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-contact--thanks .p-contact-form__action {
    -webkit-margin-before: 22.667vw;
            margin-block-start: 22.667vw;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .p-contact--thanks .p-contact-form__action {
    -webkit-margin-before: 14.407vw;
            margin-block-start: 14.407vw;
    width: 37.288vw;
  }
}
@media screen and (min-width: 1180px) {
  .p-contact--thanks .p-contact-form__action {
    -webkit-margin-before: 170px;
            margin-block-start: 170px;
    width: 440px;
  }
}

@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-color-primary {
  color: var(--color-primary);
}

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

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

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

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

.u-align-center {
  text-align: center;
}/*# sourceMappingURL=style.css.map */