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

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

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

a, button {
  cursor: revert;
}

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

ol {
  counter-reset: revert;
}

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

table {
  border-collapse: collapse;
}

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

textarea {
  white-space: revert;
}

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

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

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

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

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

::placeholder {
  color: unset;
}

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

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

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

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

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

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

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

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

b, strong {
  font-weight: bolder;
}

:root {
  --color-font: #4d4d4d;
  --color-note: #333;
  --color-primary: #285078;
  --color-secondary: #f06464;
  --color-tertiary: #4187b4;
  --font-NotoSansJP: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", YuGothic, sans-serif;
  --font-NotoSerifJP: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "BiZ UDMincho", "MS Mincho", serif;
}

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.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  body {
    font-size: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  body {
    font-size: 18px;
    min-width: 1080px;
  }
}

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

@media screen and (min-width: 769px) {
  .l-inner {
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-inner {
    width: 92.593%;
  }
}
@media screen and (min-width: 1080px) {
  .l-inner {
    width: 1000px;
  }
}

.l-header {
  background: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media screen and (min-width: 1080px) {
  .l-header__outer {
    margin-inline: auto;
    max-width: 1800px;
    position: relative;
    width: 90%;
  }
}

.l-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    -webkit-padding-start: 2.133vw;
            padding-inline-start: 2.133vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__inner {
    padding-block: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__inner {
    padding-block: 10px;
  }
}

.l-header__left {
  align-items: center;
  display: flex;
}

@media screen and (max-width: 768px) {
  .l-header__logo {
    -webkit-margin-end: 2vw;
            margin-inline-end: 2vw;
    width: 20.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__logo {
    -webkit-margin-end: 1.481vw;
            margin-inline-end: 1.481vw;
    width: 13.889vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__logo {
    -webkit-margin-end: 16px;
            margin-inline-end: 16px;
    width: 150px;
  }
}

.l-header-available {
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .l-header-available {
    min-height: 9.333vw;
    -webkit-padding-before: 0.933vw;
            padding-block-start: 0.933vw;
    -webkit-padding-start: 2.667vw;
            padding-inline-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header-available {
    min-height: 5.556vw;
    -webkit-padding-before: 0.278vw;
            padding-block-start: 0.278vw;
    -webkit-padding-start: 1.852vw;
            padding-inline-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header-available {
    min-height: 60px;
    -webkit-padding-before: 3px;
            padding-block-start: 3px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .l-header-available__lead {
    width: 36.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header-available__lead {
    width: 25.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header-available__lead {
    width: 275px;
  }
}

.l-header-available__text {
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .l-header-available__text {
    font-size: 1.916vw;
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header-available__text {
    font-size: 1.296vw;
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header-available__text {
    font-size: 14px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.l-header__right {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__right {
    -webkit-transform: translateX(2.778vw);
            transform: translateX(2.778vw);
  }
}
@media screen and (min-width: 1080px) {
  .l-header__right {
    position: absolute;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-header__tel-button {
    background: #f06464;
    width: 14.667vw;
  }
}

@media screen and (max-width: 768px) {
  .l-hamburger {
    background: #143278;
    cursor: pointer;
    height: 14.667vw;
    -webkit-margin-start: 2px;
            margin-inline-start: 2px;
    position: relative;
    width: 14.667vw;
  }
}

@media screen and (max-width: 768px) {
  .l-hamburger__line {
    background: #fff;
    border-radius: 100vw;
    display: block;
    height: 0.8vw;
    left: 3.867vw;
    position: absolute;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    width: 7.067vw;
  }
  .l-hamburger__line:nth-of-type(1) {
    top: 4.8vw;
  }
  .l-hamburger__line:nth-of-type(2) {
    top: 7vw;
  }
  .l-hamburger__line:nth-of-type(3) {
    top: 9.333vw;
  }
}

@media screen and (max-width: 768px) {
  .l-hamburger.is-active .l-hamburger__line:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translate(1.6vw, 1.6vw);
            transform: rotate(45deg) translate(1.6vw, 1.6vw);
  }
  .l-hamburger.is-active .l-hamburger__line:nth-of-type(2) {
    display: none;
  }
  .l-hamburger.is-active .l-hamburger__line:nth-of-type(3) {
    -webkit-transform: rotate(-45deg) translate(1.6vw, -1.6vw);
            transform: rotate(-45deg) translate(1.6vw, -1.6vw);
  }
}

.l-header-tel {
  align-items: center;
  display: flex;
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header-tel__num {
    width: 27.963vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header-tel__num {
    width: 302px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header-tel__guide {
    -webkit-margin-start: 2.407vw;
            margin-inline-start: 2.407vw;
    width: 15.741vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header-tel__guide {
    -webkit-margin-start: 26px;
            margin-inline-start: 26px;
    width: 170px;
  }
}

.l-header-tel__guide-item:nth-of-type(2) {
  -webkit-margin-before: 2px;
          margin-block-start: 2px;
}

@media screen and (max-width: 768px) {
  .l-nav {
    max-height: calc(100vh - 14.667vw);
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    right: -100vw;
    top: 14.667vw;
    transition: all 0.3s linear;
    visibility: hidden;
    width: 100vw;
    z-index: 110;
  }
  .l-nav.is-active {
    opacity: 1;
    right: 0;
    visibility: visible;
  }
}

@media screen and (max-width: 768px) {
  .l-nav__inner {
    background: #143278;
    color: #fff;
    -webkit-padding-after: 8vw;
            padding-block-end: 8vw;
  }
}

@media screen and (max-width: 768px) {
  .l-nav__list {
    padding-inline: 13.333vw;
  }
}

@media screen and (max-width: 768px) {
  .l-nav__item {
    font-size: 3.733vw;
    letter-spacing: 0.04em;
    line-height: 2;
  }
  .l-nav__item:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}

@media screen and (max-width: 768px) {
  .l-nav__link {
    color: #fff;
    display: block;
    padding-block: 1em;
  }
}
@media screen and (max-width: 768px) and (any-hover: hover) {
  .l-nav__link:hover {
    background: rgba(255, 255, 255, 0.8);
  }
}

body.is-menu-opened::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 90;
}

@media screen and (max-width: 768px) {
  .l-main {
    -webkit-padding-before: 14.667vw;
            padding-block-start: 14.667vw;
  }
}

.l-footer {
  background: #f09182;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding-block: 8vw;
    padding-inline: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer__inner {
    padding-block: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer__inner {
    padding-block: 40px;
  }
}

.l-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.5em;
  justify-content: center;
}

.l-footer-nav__item {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer-nav__item {
    font-size: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav__item {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .l-footer-nav__item:hover {
    text-decoration: underline;
  }
}

.l-copyright {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .l-copyright {
    font-size: 2.933vw;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-copyright {
    font-size: 1.296vw;
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-copyright {
    font-size: 14px;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.c-cta__lead {
  background: #f09182;
}

@media screen and (max-width: 768px) {
  .c-cta {
    background-image: repeating-linear-gradient(-45deg, #f9f5ea 0, #f9f5ea 3px, #fff 4px, #fff 5px);
    -webkit-padding-after: 9.6vw;
            padding-block-end: 9.6vw;
  }
}
@media screen and (min-width: 769px) {
  .c-cta {
    background-image: repeating-linear-gradient(-45deg, #f9f5ea 0, #f9f5ea 5px, #fff 6px, #fff 7px);
  }
}

.c-cta__main {
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta__main {
    padding-block: 6.944vw 6.019vw;
    padding-inline: 3.704vw 36.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta__main {
    padding-block: 75px 65px;
    padding-inline: 40px 390px;
  }
}

@media screen and (max-width: 768px) {
  .c-cta__main-top {
    border-bottom: 1px solid #b3b3b3;
    margin-inline: auto;
    position: relative;
    padding-block: 8.667vw 6vw;
    -webkit-padding-start: 48vw;
            padding-inline-start: 48vw;
    width: 92vw;
  }
}

.c-cta__image {
  bottom: 0;
  overflow: hidden;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .c-cta__image {
    height: 35.333vw;
    left: -4.667vw;
    width: 61.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta__image {
    height: 35.185vw;
    right: -5.556vw;
    width: 46.296vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta__image {
    height: 380px;
    right: -60px;
    width: 500px;
  }
}
.c-cta__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.c-cta__catch {
  color: #1a1a1a;
}
@media screen and (max-width: 768px) {
  .c-cta__catch {
    font-size: 3.813vw;
    line-height: 5.909vw;
    position: relative;
    z-index: 5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta__catch {
    border-bottom: 1px solid #b3b3b3;
    font-size: 2.037vw;
    -webkit-padding-after: 0.926vw;
            padding-block-end: 0.926vw;
    -webkit-padding-start: 0.926vw;
            padding-inline-start: 0.926vw;
    width: 52.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta__catch {
    border-bottom: 1px solid #b3b3b3;
    font-size: 22px;
    -webkit-padding-after: 10px;
            padding-block-end: 10px;
    -webkit-padding-start: 10px;
            padding-inline-start: 10px;
    width: 570px;
  }
}

@media screen and (max-width: 768px) {
  .c-cta-tel {
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
    -webkit-margin-start: 4.667vw;
            margin-inline-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta-tel {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    -webkit-margin-start: 0.926vw;
            margin-inline-start: 0.926vw;
    width: 50.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-tel {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    width: 550px;
  }
}

.c-cta-tel__num {
  display: block;
}
@media screen and (max-width: 768px) {
  .c-cta-tel__num {
    width: 91.067vw;
  }
}

.c-cta-tel__guide {
  display: grid;
}
@media screen and (max-width: 768px) {
  .c-cta-tel__guide {
    gap: 1.6vw;
    grid-template-columns: repeat(2, 44.533vw);
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta-tel__guide {
    gap: 0.926vw;
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 2.315vw;
            margin-block-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-tel__guide {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
  }
}

.c-cta-tel__note {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-cta-tel__note {
    font-size: 2.08vw;
    -webkit-margin-before: 2vw;
            margin-block-start: 2vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta-tel__note {
    font-size: 1.111vw;
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-tel__note {
    font-size: 12px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.c-cta-benefits {
  display: grid;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-cta-benefits {
    gap: 6.667vw;
    grid-template-columns: 100%;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    width: 81.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta-benefits {
    gap: 2.778vw;
    grid-template-columns: repeat(2, 1fr);
    width: 89.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-benefits {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    width: 970px;
  }
}

.c-cta-benefits__item {
  background-color: #f0be32;
  background-position: 100% 0;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta-benefits__item {
    border-radius: 1.333vw;
    background-size: 46.667vw auto;
    padding-block: 31.333vw 6vw;
    -webkit-padding-start: 6vw;
            padding-inline-start: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta-benefits__item {
    border-radius: 0.926vw;
    background-size: 25vw auto;
    padding-block: 16.204vw 3.241vw;
    -webkit-padding-start: 3.241vw;
            padding-inline-start: 3.241vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-benefits__item {
    border-radius: 10px;
    background-size: 270px auto;
    padding-block: 175px 35px;
    -webkit-padding-start: 35px;
            padding-inline-start: 35px;
  }
}
.c-cta-benefits__item:nth-of-type(1) {
  background-image: url(../images/cta_benefits_bg_01@2x.jpg);
}
.c-cta-benefits__item:nth-of-type(2) {
  background-image: url(../images/cta_benefits_bg_02@2x.jpg);
}

.c-cta-benefits__title {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .c-cta-benefits__title {
    left: -3.467vw;
    top: -1.733vw;
    width: 84.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta-benefits__title {
    left: -1.852vw;
    top: -0.926vw;
    width: 45.37vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-benefits__title {
    left: -20px;
    top: -10px;
    width: 490px;
  }
}

.c-cta-benefits__text {
  color: #333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .c-cta-benefits__text {
    font-size: 3.467vw;
    line-height: 1.385;
    width: 69.333vw;
  }
}
@media screen and (min-width: 769px) {
  .c-cta-benefits__text {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta-benefits__text {
    font-size: 1.852vw;
    width: 37.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-benefits__text {
    font-size: 20px;
    width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .c-cta--hero {
    -webkit-padding-after: 13.6vw;
            padding-block-end: 13.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta--hero {
    -webkit-padding-after: 6.481vw;
            padding-block-end: 6.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta--hero {
    -webkit-padding-after: 70px;
            padding-block-end: 70px;
  }
}
.c-cta--hero .c-cta__lead {
  background: var(--color-tertiary);
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta--hero .c-cta__main {
    -webkit-padding-after: 4.167vw;
            padding-block-end: 4.167vw;
    padding-inline: 36.111vw 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta--hero .c-cta__main {
    -webkit-padding-after: 45px;
            padding-block-end: 45px;
    padding-inline: 390px 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta--hero .c-cta__image {
    left: -1.852vw;
    right: inherit;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta--hero .c-cta__image {
    left: -20px;
    right: inherit;
  }
}

@media screen and (max-width: 768px) {
  .c-cta--compare {
    -webkit-padding-after: 24vw;
            padding-block-end: 24vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta--compare .c-cta__main {
    -webkit-padding-after: 9.259vw;
            padding-block-end: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta--compare .c-cta__main {
    -webkit-padding-after: 100px;
            padding-block-end: 100px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta--compare .c-cta__image {
    height: 37.963vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta--compare .c-cta__image {
    height: 410px;
  }
}

.p-hero {
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-hero {
    -webkit-margin-before: 7.407vw;
            margin-block-start: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-hero {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}

@media screen and (max-width: 768px) {
  .p-hero__slide {
    background: 0 0/cover no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-hero__slide {
    background: 50% 0/auto 100% no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__slide--01 {
    background-image: url("../images/hero_bg_sp_01.jpg");
  }
}
@media screen and (min-width: 769px) {
  .p-hero__slide--01 {
    background-image: url("../images/hero_bg_pc_01.jpg");
  }
}
@media screen and (max-width: 768px) {
  .p-hero__slide--02 {
    background-image: url("../images/hero_bg_sp_02.jpg");
  }
}
@media screen and (min-width: 769px) {
  .p-hero__slide--02 {
    background-image: url("../images/hero_bg_pc_02.jpg");
  }
}
@media screen and (max-width: 768px) {
  .p-hero__slide--03 {
    background-image: url("../images/hero_bg_sp_03.jpg");
  }
}
@media screen and (min-width: 769px) {
  .p-hero__slide--03 {
    background-image: url("../images/hero_bg_pc_03.jpg");
  }
}
@media screen and (max-width: 768px) {
  .p-hero__slide--04 {
    background-image: url("../images/hero_bg_sp_04.jpg");
  }
}
@media screen and (min-width: 769px) {
  .p-hero__slide--04 {
    background-image: url("../images/hero_bg_pc_04.jpg");
  }
}
@media screen and (min-width: 1080px) {
  .p-hero__slide--01 {
    background-color: #e1f4f6;
  }
}
@media screen and (min-width: 1080px) {
  .p-hero__slide--02 {
    background-color: #a3cada;
  }
}
@media screen and (min-width: 1080px) {
  .p-hero__slide--03 {
    background-color: #82c3e6;
  }
}
@media screen and (min-width: 1080px) {
  .p-hero__slide--04 {
    background-color: #d7f9ff;
  }
}

.p-hero__arrow {
  cursor: pointer;
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-hero__arrow {
    top: 80vw;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    width: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-hero__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-hero__arrow {
    width: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-hero__arrow {
    width: 60px;
  }
}
.p-hero__arrow--prev {
  left: 0;
}
.p-hero__arrow--next {
  right: 0;
}
@media (any-hover: hover) {
  .p-hero__arrow:hover {
    opacity: 0.8;
  }
}

.p-hero__pagination {
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-hero__pagination {
    bottom: 4vw;
    gap: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-hero__pagination {
    bottom: 1.852vw;
    gap: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-hero__pagination {
    bottom: 20px;
    gap: 20px;
  }
}

.p-hero__pagination-page {
  background: #969696;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-hero__pagination-page {
    height: 1.6vw;
    width: 1.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-hero__pagination-page {
    height: 0.926vw;
    width: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-hero__pagination-page {
    height: 10px;
    width: 10px;
  }
}
.p-hero__pagination-page.is-active {
  background: #000;
}

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

@media screen and (max-width: 768px) {
  .p-process__inner {
    padding-block: 19.733vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process__inner {
    height: 92.593vw;
    -webkit-padding-before: 10.556vw;
            padding-block-start: 10.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process__inner {
    height: 1000px;
    -webkit-padding-before: 114px;
            padding-block-start: 114px;
  }
}

.p-process__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-process__title {
    width: 81.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process__title {
    width: 43.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process__title {
    width: 470px;
  }
}

.p-process__list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .p-process__list {
    gap: 6.667vw;
    grid-template-columns: 100vw;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-process__list {
    grid-template-columns: 42% 56%;
    grid-template-rows: repeat(3, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process__list {
    gap: 3.241vw 2%;
    -webkit-margin-before: 8.333vw;
            margin-block-start: 8.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process__list {
    gap: 35px 2%;
    -webkit-margin-before: 90px;
            margin-block-start: 90px;
  }
}

.p-process-fist {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-process-fist {
    background: url(../images/process_img_01_sp.png) 0 100%/100% auto no-repeat;
    min-height: 57.333vw;
    -webkit-padding-before: 22.4vw;
            padding-block-start: 22.4vw;
    -webkit-padding-start: 38.667vw;
            padding-inline-start: 38.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-process-fist {
    grid-area: 1/1/4/2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-fist {
    -webkit-padding-before: 0.926vw;
            padding-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-fist {
    -webkit-padding-before: 10px;
            padding-block-start: 10px;
  }
}
.p-process-fist::before, .p-process-fist::after {
  background: #82c3e6;
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-process-fist::before {
    bottom: 2.533vw;
    height: 14.667vw;
    right: 12.533vw;
    width: 5.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-fist::before {
    height: 2.778vw;
    right: 1.389vw;
    top: 7.593vw;
    width: 7.87vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-fist::before {
    height: 30px;
    right: 15px;
    top: 82px;
    width: 85px;
  }
}
@media screen and (max-width: 768px) {
  .p-process-fist::after {
    bottom: -0.267vw;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    height: 3.467vw;
    right: 10.933vw;
    width: 8.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-process-fist::after {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-fist::after {
    height: 4.63vw;
    top: 6.667vw;
    width: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-fist::after {
    height: 50px;
    top: 72px;
    width: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-process-fist__header {
    left: 2.4vw;
    position: absolute;
    top: 1.067vw;
    width: 14.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-fist__header {
    -webkit-margin-start: 1.852vw;
            margin-inline-start: 1.852vw;
    width: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-fist__header {
    -webkit-margin-start: 20px;
            margin-inline-start: 20px;
    width: 60px;
  }
}

@media screen and (max-width: 768px) {
  .p-process-fist__sub-title {
    -webkit-margin-before: 1.067vw;
            margin-block-start: 1.067vw;
    margin-inline: auto;
    width: 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-fist__sub-title {
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-fist__sub-title {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

.p-process-fist__text {
  color: #009be6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-process-fist__text {
    font-size: 4vw;
    line-height: 1.733;
  }
}
@media screen and (min-width: 769px) {
  .p-process-fist__text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-fist__text {
    font-size: 2.222vw;
    -webkit-margin-before: 22.222vw;
            margin-block-start: 22.222vw;
    -webkit-margin-start: 2.778vw;
            margin-inline-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-fist__text {
    font-size: 24px;
    -webkit-margin-before: 240px;
            margin-block-start: 240px;
    -webkit-margin-start: 30px;
            margin-inline-start: 30px;
  }
}

.p-process-fist__text-mark {
  background: #fff;
}

.p-process-fist__text-space {
  display: inline-block;
  width: 0.3em;
}

.p-process-item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-process-item {
    -webkit-margin-start: 12.267vw;
            margin-inline-start: 12.267vw;
    padding-block: 5.333vw 1.333vw;
    width: 73.467vw;
  }
}
@media screen and (min-width: 769px) {
  .p-process-item {
    align-items: center;
    display: grid;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-item {
    grid-template-columns: 25vw 1fr;
    -webkit-padding-before: 1.852vw;
            padding-block-start: 1.852vw;
    -webkit-padding-start: 1.852vw;
            padding-inline-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-item {
    grid-template-columns: 270px 1fr;
    -webkit-padding-before: 20px;
            padding-block-start: 20px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}
.p-process-item:not(:last-child)::after {
  background: #82c3e6;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-process-item:not(:last-child)::after {
    bottom: -4.667vw;
    height: 3.467vw;
    left: 33.333vw;
    width: 8.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-item:not(:last-child)::after {
    bottom: -3.241vw;
    height: 1.852vw;
    left: 12.037vw;
    width: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-item:not(:last-child)::after {
    bottom: -35px;
    height: 20px;
    left: 130px;
    width: 50px;
  }
}
@media screen and (min-width: 769px) {
  .p-process-item:nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 769px) {
  .p-process-item:nth-of-type(3) {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 769px) {
  .p-process-item:nth-of-type(4) {
    grid-area: 3/2/4/3;
  }
}

.p-process-item__num {
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-process-item__num {
    width: 14.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-item__num {
    width: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-item__num {
    width: 60px;
  }
}

.p-process-item__image {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-process-item__image {
    border-radius: 1.067vw;
    -webkit-margin-start: 3.867vw;
            margin-inline-start: 3.867vw;
    width: 69.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-item__image {
    border-radius: 0.741vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-item__image {
    border-radius: 8px;
  }
}

@media screen and (max-width: 768px) {
  .p-process-item__sub-title {
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    -webkit-margin-start: 4.4vw;
            margin-inline-start: 4.4vw;
    width: 34.533vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-item__sub-title {
    -webkit-margin-start: 2.778vw;
            margin-inline-start: 2.778vw;
    width: 14.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-item__sub-title {
    -webkit-margin-start: 30px;
            margin-inline-start: 30px;
    width: 154px;
  }
}

.p-process-item__text {
  border-top: 1px solid #82c3e6;
}
@media screen and (max-width: 768px) {
  .p-process-item__text {
    line-height: 1.667;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    -webkit-margin-start: 2.933vw;
            margin-inline-start: 2.933vw;
    -webkit-padding-before: 3.333vw;
            padding-block-start: 3.333vw;
    padding-inline: 1.067vw;
    width: 69.6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-process-item__text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-process-item__text {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    -webkit-padding-before: 1.389vw;
            padding-block-start: 1.389vw;
    padding-inline: 2.778vw 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-process-item__text {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    -webkit-padding-before: 15px;
            padding-block-start: 15px;
    padding-inline: 30px 10px;
  }
}

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

@media screen and (max-width: 768px) {
  .p-problem__inner {
    padding-block: 11.333vw 68vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-problem__inner {
    padding-block: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-problem__inner {
    padding-block: 80px;
  }
}

.p-problem__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-problem__title {
    width: 92.933vw;
  }
}
@media screen and (min-width: 769px) {
  .p-problem__title {
    width: 66.2%;
  }
}

.p-problem__list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .p-problem__list {
    gap: 5.6vw 2.933vw;
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
    margin-inline: auto;
    width: 85.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-problem__list {
    gap: 1.6%;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-problem__list {
    -webkit-margin-before: 3.889vw;
            margin-block-start: 3.889vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-problem__list {
    -webkit-margin-before: 42px;
            margin-block-start: 42px;
  }
}

@media screen and (max-width: 768px) {
  .p-problem__item:nth-child(2n) {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-problem__item:nth-child(2n) {
    -webkit-margin-before: 1.852vw;
            margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-problem__item:nth-child(2n) {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-problem__item-card {
    box-shadow: 0.8vw 0.8vw 0.8vw rgba(81, 81, 81, 0.2);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-problem__item-card {
    box-shadow: 0.556vw 0.556vw 0.556vw rgba(81, 81, 81, 0.2);
  }
}
@media screen and (min-width: 1080px) {
  .p-problem__item-card {
    box-shadow: 6px 6px 6px rgba(81, 81, 81, 0.2);
  }
}

@media screen and (max-width: 768px) {
  .p-problem-consult {
    -webkit-margin-before: 13.333vw;
            margin-block-start: 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-problem-consult {
    -webkit-margin-before: 9.259vw;
            margin-block-start: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-problem-consult {
    -webkit-margin-before: 100px;
            margin-block-start: 100px;
  }
}

.p-problem-consult__lead {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-problem-consult__lead {
    width: 62.4vw;
  }
}
@media screen and (min-width: 769px) {
  .p-problem-consult__lead {
    width: 36%;
  }
}

.p-problem-consult__catch {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-problem-consult__catch {
    -webkit-margin-before: 4.267vw;
            margin-block-start: 4.267vw;
    width: 87.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-problem-consult__catch {
    -webkit-margin-before: 2.315vw;
            margin-block-start: 2.315vw;
    width: 46.8%;
  }
}
@media screen and (min-width: 1080px) {
  .p-problem-consult__catch {
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
    width: 46.8%;
  }
}

.p-problem-consult__text {
  letter-spacing: 0.04em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-problem-consult__text {
    font-size: 3.467vw;
    line-height: 1.7;
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
    width: 90.933vw;
  }
}
@media screen and (min-width: 769px) {
  .p-problem-consult__text {
    line-height: 1.7;
    width: 40%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-problem-consult__text {
    font-size: 1.852vw;
    -webkit-margin-before: 2.315vw;
            margin-block-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-problem-consult__text {
    font-size: 20px;
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
  }
}

.p-reason {
  background: #faf0d2;
}

@media screen and (max-width: 768px) {
  .p-reason__inner {
    padding-block: 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__inner {
    padding-block: 6.481vw 8.796vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__inner {
    padding-block: 70px 95px;
  }
}

@media screen and (min-width: 769px) {
  .p-reason__title {
    margin-inline: auto;
    width: 83%;
  }
}

.p-reason__list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .p-reason__list {
    gap: 4vw;
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-before: 5.333vw;
            margin-block-start: 5.333vw;
    margin-inline: auto;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) {
  .p-reason__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__list {
    gap: 2.315vw 2.5%;
    -webkit-margin-before: 3.241vw;
            margin-block-start: 3.241vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__list {
    gap: 25px 2.5%;
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
}

.p-reason__item {
  background: url(../images/reason_bg@2x.png) 0 0/100% auto no-repeat #fff;
}
@media screen and (max-width: 768px) {
  .p-reason__item {
    border-radius: 0.96vw;
    box-shadow: 0.667vw 0.667vw 0.667vw rgba(132, 124, 97, 0.2);
    -webkit-padding-before: 3.467vw;
            padding-block-start: 3.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__item {
    border-radius: 0.556vw;
    box-shadow: 0.463vw 0.463vw 0.463vw rgba(132, 124, 97, 0.2);
    -webkit-padding-before: 1.481vw;
            padding-block-start: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__item {
    border-radius: 6px;
    box-shadow: 5px 5px 5px rgba(132, 124, 97, 0.2);
    -webkit-padding-before: 16px;
            padding-block-start: 16px;
  }
}

.p-reason__num {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-reason__num {
    width: 16.64vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__num {
    width: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__num {
    width: 80px;
  }
}

.p-reason__icon {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-reason__icon {
    -webkit-margin-before: 2.933vw;
            margin-block-start: 2.933vw;
    width: 18.72vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__icon {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    width: 8.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__icon {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    width: 90px;
  }
}

.p-reason__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-reason__content {
    height: 17.333vw;
    -webkit-margin-before: 4.267vw;
            margin-block-start: 4.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__content {
    height: 8.333vw;
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__content {
    height: 90px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
  }
}

.p-reason__label {
  color: #333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-reason__label {
    font-size: 3.467vw;
    line-height: 1.385;
  }
}
@media screen and (min-width: 769px) {
  .p-reason__label {
    line-height: 1.3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__label {
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__label {
    font-size: 20px;
  }
}

.p-reason__note {
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-reason__note {
    font-size: 2.496vw;
    line-height: 1.25;
    -webkit-margin-before: 0.3em;
            margin-block-start: 0.3em;
  }
}
@media screen and (min-width: 769px) {
  .p-reason__note {
    line-height: 1.25;
    -webkit-margin-before: 0.5em;
            margin-block-start: 0.5em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__note {
    font-size: 1.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__note {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .p-flow {
    background: url(../images/flow_bg_sp.jpg) 0 0/100% auto no-repeat #e1f5fe;
  }
}
@media screen and (min-width: 769px) {
  .p-flow {
    background: url(../images/flow_bg_pc.jpg) 50% 0 no-repeat #e1f5fe;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-flow {
    background-size: 203.704vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-flow__inner {
    -webkit-padding-before: 16vw;
            padding-block-start: 16vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-flow__inner {
    -webkit-padding-before: 10.648vw;
            padding-block-start: 10.648vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-flow__inner {
    -webkit-padding-before: 115px;
            padding-block-start: 115px;
  }
}

.p-flow__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-flow__title {
    width: 81.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-flow__title {
    width: 47%;
  }
}

.p-step {
  display: grid;
  grid-template-columns: 1fr;
  margin-inline: auto 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-step {
    gap: 13.6vw;
    -webkit-margin-before: 8.267vw;
            margin-block-start: 8.267vw;
    -webkit-transform: translateY(10.667vw);
            transform: translateY(10.667vw);
    width: 82.8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step {
    width: 92%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step {
    gap: 7.407vw;
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
    -webkit-transform: translateY(7.407vw);
            transform: translateY(7.407vw);
  }
}
@media screen and (min-width: 1080px) {
  .p-step {
    gap: 80px;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
}

.p-step__item {
  position: relative;
}
.p-step__item:not(:last-child)::after {
  border-right: dotted var(--color-tertiary);
  content: "";
  display: block;
  position: absolute;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .p-step__item:not(:last-child)::after {
    border-right-width: 2px;
    height: calc(100% - 6.533vw);
    left: -5.6vw;
    top: 10.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__item:not(:last-child)::after {
    border-right-width: 2px;
    height: calc(100% - 3.704vw);
    left: -2.778vw;
    top: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__item:not(:last-child)::after {
    border-right-width: 4px;
    height: calc(100% - 40px);
    left: -30px;
    top: 60px;
  }
}

.p-step__num {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-step__num {
    left: -14vw;
    top: -8.667vw;
    width: 17.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__num {
    left: -7.407vw;
    top: -4.63vw;
    width: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__num {
    left: -80px;
    top: -50px;
    width: 100px;
  }
}

.p-step__card {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-step__card {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 88%, rgba(255, 255, 255, 0) 100%);
    border-bottom-left-radius: 6.667vw;
    border-top-left-radius: 1.333vw;
    -webkit-padding-after: 6.667vw;
            padding-block-end: 6.667vw;
    -webkit-padding-start: 6.667vw;
            padding-inline-start: 6.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__card {
    align-items: center;
    background: #fff;
    display: grid;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__card {
    border-bottom-left-radius: 4.63vw;
    border-top-left-radius: 0.926vw;
    gap: 2.778vw;
    grid-template-columns: 37.037vw 43.056vw;
    -webkit-padding-start: 4.63vw;
            padding-inline-start: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__card {
    border-bottom-left-radius: 50px;
    border-top-left-radius: 10px;
    gap: 30px;
    grid-template-columns: 400px 465px;
    -webkit-padding-start: 50px;
            padding-inline-start: 50px;
  }
}
@media screen and (min-width: 769px) {
  .p-step__card::before {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__card::before {
    right: -17.593vw;
    width: 17.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__card::before {
    right: -190px;
    width: 190px;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__card::after {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: -500px;
    top: 0;
    width: 310px;
  }
}

@media screen and (max-width: 768px) {
  .p-step__image {
    box-shadow: 1.333vw 1.333vw 1.333vw rgba(81, 81, 81, 0.3);
    -webkit-transform: translateY(-4.667vw);
            transform: translateY(-4.667vw);
    width: 70.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__image {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__image {
    box-shadow: 0.926vw 0.926vw 0.926vw rgba(81, 81, 81, 0.3);
    -webkit-transform: translate(2.315vw, -2.778vw);
            transform: translate(2.315vw, -2.778vw);
  }
}
@media screen and (min-width: 1080px) {
  .p-step__image {
    box-shadow: 10px 10px 10px rgba(81, 81, 81, 0.3);
    -webkit-transform: translate(25px, -30px);
            transform: translate(25px, -30px);
  }
}

@media screen and (max-width: 768px) {
  .p-step__content {
    width: 70.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__content {
    grid-area: 1/1/2/2;
  }
}

@media screen and (max-width: 768px) {
  .p-step__title {
    -webkit-margin-before: 4.667vw;
            margin-block-start: 4.667vw;
  }
}

.p-step__text {
  color: #666;
}
@media screen and (max-width: 768px) {
  .p-step__text {
    line-height: 1.667;
    -webkit-margin-before: 2.667vw;
            margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__text {
    line-height: 1.667;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
  }
}

.p-trouble {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-trouble {
    background-color: #ebeeea;
    background-image: url(../images/trouble_bg_sp_01.jpg), url(../images/trouble_bg_sp_02.jpg);
    background-position: 0 0, 0 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (min-width: 769px) {
  .p-trouble {
    background: url(../images/trouble_bg_pc.jpg) 50% 100% no-repeat #ebeeea;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-trouble {
    background-size: auto 88.889vw;
  }
}

@media screen and (max-width: 768px) {
  .p-trouble__inner {
    padding-block: 22vw 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-trouble__inner {
    padding-block: 18.519vw 8.796vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-trouble__inner {
    padding-block: 200px 95px;
  }
}

.p-trouble__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-trouble__title {
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-trouble__title {
    width: 76.4%;
  }
}

.p-trouble__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-trouble__list {
    gap: 0 2.4vw;
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-trouble__list {
    gap: 0.926vw 3%;
    -webkit-margin-before: 3.241vw;
            margin-block-start: 3.241vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-trouble__list {
    gap: 10px 3%;
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
}

.p-trouble__item {
  align-items: center;
  aspect-ratio: 1/1;
  background: 50% 50%/contain no-repeat;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-trouble__item {
    height: 43.68vw;
    -webkit-padding-before: 19.333vw;
            padding-block-start: 19.333vw;
    width: 43.68vw;
  }
}
@media screen and (min-width: 769px) {
  .p-trouble__item {
    width: 28%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-trouble__item {
    height: 25.926vw;
    -webkit-padding-before: 11.574vw;
            padding-block-start: 11.574vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-trouble__item {
    height: 280px;
    -webkit-padding-before: 125px;
            padding-block-start: 125px;
  }
}
.p-trouble__item:nth-of-type(1) {
  background-image: url(../images/trouble_list_01@2x.png);
}
.p-trouble__item:nth-of-type(2) {
  background-image: url(../images/trouble_list_02@2x.png);
}
.p-trouble__item:nth-of-type(3) {
  background-image: url(../images/trouble_list_03@2x.png);
}
@media screen and (max-width: 768px) {
  .p-trouble__item:nth-of-type(3) {
    margin-block: -2.667vw;
    width: 100%;
  }
}
.p-trouble__item:nth-of-type(4) {
  background-image: url(../images/trouble_list_04@2x.png);
}
.p-trouble__item:nth-of-type(5) {
  background-image: url(../images/trouble_list_05@2x.png);
}

.p-trouble__label {
  color: #333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-trouble__label {
    font-size: 3.733vw;
    line-height: 1.393;
  }
}
@media screen and (min-width: 769px) {
  .p-trouble__label {
    line-height: 1.364;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-trouble__label {
    font-size: 2.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-trouble__label {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .p-clear-billing {
    background: url(../images/clear-billing_bg_sp.jpg) 0 0/100% auto no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-clear-billing {
    background: url(../images/clear-billing_bg_pc.jpg) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-clear-billing {
    background-size: 203.704vw auto;
  }
}

.p-clear-billing__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-clear-billing__inner {
    -webkit-padding-before: 13.867vw;
            padding-block-start: 13.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-clear-billing__inner {
    -webkit-padding-before: 15.741vw;
            padding-block-start: 15.741vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-clear-billing__inner {
    -webkit-padding-before: 170px;
            padding-block-start: 170px;
  }
}

.p-clear-billing__image {
  overflow: hidden;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-clear-billing__image {
    box-shadow: 1.333vw 1.333vw 1.333vw rgba(64, 111, 132, 0.3);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-clear-billing__image {
    box-shadow: 0.926vw 0.926vw 0.926vw rgba(64, 111, 132, 0.3);
  }
}
@media screen and (min-width: 1080px) {
  .p-clear-billing__image {
    box-shadow: 10px 10px 10px rgba(64, 111, 132, 0.3);
  }
}

.p-clear-billing__image--large {
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-clear-billing__image--large {
    border-bottom-right-radius: 2.667vw;
    height: 77.333vw;
    right: 0;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-clear-billing__image--large {
    border-bottom-left-radius: 1.852vw;
    border-bottom-right-radius: 1.852vw;
    right: -14.815vw;
    width: 75vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-clear-billing__image--large {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    right: -160px;
    width: 810px;
  }
}
@media screen and (max-width: 768px) {
  .p-clear-billing__image--large img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left top;
       object-position: left top;
    width: auto;
  }
}

.p-clear-billing__lead {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-clear-billing__lead {
    -webkit-margin-start: 5.333vw;
            margin-inline-start: 5.333vw;
    width: 74.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-clear-billing__lead {
    width: 56%;
  }
}

.p-clear-billing__image--small {
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-clear-billing__image--small {
    border-radius: 1.333vw;
    left: 6.667vw;
    top: 73.333vw;
    width: 52vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-clear-billing__image--small {
    border-radius: 0.926vw;
    left: 4.63vw;
    top: 42.593vw;
    width: 36.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-clear-billing__image--small {
    border-radius: 10px;
    left: 50px;
    top: 460px;
    width: 390px;
  }
}

.p-clear-billing__title {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-clear-billing__title {
    -webkit-margin-before: 31.733vw;
            margin-block-start: 31.733vw;
    margin-inline: auto 4.667vw;
    width: 38.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-clear-billing__title {
    margin-inline: auto 10%;
    width: 33%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-clear-billing__title {
    -webkit-margin-before: 7.407vw;
            margin-block-start: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-clear-billing__title {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
  }
}

@media screen and (max-width: 768px) {
  .p-plan {
    -webkit-margin-before: 10vw;
            margin-block-start: 10vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan {
    -webkit-margin-before: 5.093vw;
            margin-block-start: 5.093vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan {
    -webkit-margin-before: 55px;
            margin-block-start: 55px;
  }
}

@media screen and (max-width: 768px) {
  .p-plan__inner {
    -webkit-padding-after: 12vw;
            padding-block-end: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__inner {
    -webkit-padding-after: 7.407vw;
            padding-block-end: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__inner {
    -webkit-padding-after: 80px;
            padding-block-end: 80px;
  }
}

.p-plan__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-plan__title {
    width: 84.933vw;
  }
}
@media screen and (min-width: 769px) {
  .p-plan__title {
    width: 47%;
  }
}

@media screen and (max-width: 768px) {
  .p-plan__list {
    margin-inline: auto;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) {
  .p-plan__list {
    display: grid;
    gap: 2%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__list {
    -webkit-margin-before: 3.519vw;
            margin-block-start: 3.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__list {
    -webkit-margin-before: 38px;
            margin-block-start: 38px;
  }
}

@media screen and (max-width: 768px) {
  .p-plan__item {
    border-radius: 1.067vw;
    -webkit-margin-before: 6.667vw;
            margin-block-start: 6.667vw;
    padding: 2px;
  }
}
@media screen and (min-width: 769px) {
  .p-plan__item {
    padding: 3px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__item {
    border-radius: 0.741vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__item {
    border-radius: 8px;
  }
}

.p-plan__item--communal {
  background: #78c8eb;
}

.p-plan__item--private {
  background: #46b4d2;
}

.p-plan__item--attended {
  background: #aaa0c8;
}

@media screen and (max-width: 768px) {
  .p-plan__header {
    padding-block: 2.667vw 3.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__header {
    padding-block: 1.389vw 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__header {
    padding-block: 15px 18px;
  }
}

.p-plan__name {
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-plan__name {
    font-size: 5.893vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__name {
    font-size: 3.148vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__name {
    font-size: 34px;
  }
}

.p-plan__body {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-plan__body {
    border-bottom-left-radius: 0.8vw;
    border-bottom-right-radius: 0.8vw;
    padding-block: 1.333vw 5.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__body {
    border-bottom-left-radius: 0.556vw;
    border-bottom-right-radius: 0.556vw;
    -webkit-padding-after: 1.852vw;
            padding-block-end: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__body {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    -webkit-padding-after: 20px;
            padding-block-end: 20px;
  }
}

.p-plan__table {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-plan__table {
    width: 68vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__table {
    width: 25.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__table {
    width: 280px;
  }
}

.p-plan__table-head,
.p-plan__table-cell {
  color: #666;
  font-weight: 400;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p-plan__table-head,
  .p-plan__table-cell {
    font-size: 2.773vw;
    line-height: 1.529;
    padding-block: 2.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-plan__table-head,
  .p-plan__table-cell {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__table-head,
  .p-plan__table-cell {
    font-size: 1.481vw;
    padding-block: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__table-head,
  .p-plan__table-cell {
    font-size: 16px;
    padding-block: 15px;
  }
}

@media screen and (max-width: 768px) {
  .p-plan__table-head {
    -webkit-padding-end: 2.133vw;
            padding-inline-end: 2.133vw;
    width: 16vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__table-head {
    padding-inline: 0.556vw;
    width: 8.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__table-head {
    padding-inline: 6px;
    width: 92px;
  }
}

@media screen and (max-width: 768px) {
  .p-plan__table-cell {
    width: 51.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__table-cell {
    width: 17.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__table-cell {
    width: 190px;
  }
}

.p-plan__table-row:not(:last-child) .p-plan__table-head,
.p-plan__table-row:not(:last-child) .p-plan__table-cell {
  border-bottom: 1px solid #ccc;
}

.p-plan__price {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-plan__price {
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    width: 68vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-plan__price {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    width: 25.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-plan__price {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    width: 280px;
  }
}

.p-compare__inner {
  border-top: 1px solid #b3b3b3;
}
@media screen and (max-width: 768px) {
  .p-compare__inner {
    margin-inline: auto;
    padding-block: 10.4vw 14.933vw;
    width: 92vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-compare__inner {
    padding-block: 5.093vw 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-compare__inner {
    padding-block: 55px 100px;
  }
}

.p-compare__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-compare__title {
    width: 87.733vw;
  }
}
@media screen and (min-width: 769px) {
  .p-compare__title {
    width: 50.6%;
  }
}

.p-compare__table {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-compare__table {
    -webkit-margin-before: 8vw;
            margin-block-start: 8vw;
    width: 90.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-compare__table {
    -webkit-margin-before: 4.167vw;
            margin-block-start: 4.167vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-compare__table {
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
  }
}

.p-prepare {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-prepare {
    background: url(../images/prepare_bg_sp_02.jpg) 0 100%/100% auto no-repeat #beebfa;
  }
}
@media screen and (min-width: 769px) {
  .p-prepare {
    background: url(../images/prepare_bg_pc_01.png) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare {
    background-size: auto 100%;
    -webkit-margin-before: -14.352vw;
            margin-block-start: -14.352vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare {
    -webkit-margin-before: -155px;
            margin-block-start: -155px;
  }
}
@media screen and (max-width: 768px) {
  .p-prepare::before {
    background: url(../images/prepare_bg_sp_01.png) 0 0/100% 100% no-repeat;
    content: "";
    display: block;
    height: 20.133vw;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-99%);
            transform: translateY(-99%);
    width: 100%;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare::before, .p-prepare::after {
    background: url(../images/prepare_bg_pc_02.png) 0 0 repeat-x;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: calc(50% - 1000px);
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare::before {
    left: 0;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare::after {
    right: 0;
  }
}

.p-prepare__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-prepare__inner {
    -webkit-padding-after: 18.667vw;
            padding-block-end: 18.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__inner {
    height: 87.037vw;
    -webkit-padding-before: 22.685vw;
            padding-block-start: 22.685vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__inner {
    height: 940px;
    -webkit-padding-before: 245px;
            padding-block-start: 245px;
  }
}

.p-prepare__lead {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-prepare__lead {
    width: 57.2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-prepare__lead {
    width: 33%;
  }
}

.p-prepare__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-prepare__title {
    -webkit-margin-before: 5.067vw;
            margin-block-start: 5.067vw;
    width: 90.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__title {
    -webkit-margin-before: 2.593vw;
            margin-block-start: 2.593vw;
    width: 61.6%;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__title {
    -webkit-margin-before: 28px;
            margin-block-start: 28px;
    width: 61.6%;
  }
}

.p-prepare__list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .p-prepare__list {
    gap: 9.333vw;
    grid-template-columns: 1fr;
    -webkit-margin-before: 8.667vw;
            margin-block-start: 8.667vw;
    margin-inline: auto;
    width: 55.467vw;
  }
}
@media screen and (min-width: 769px) {
  .p-prepare__list {
    gap: 2%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__list {
    -webkit-margin-before: 4.167vw;
            margin-block-start: 4.167vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__list {
    -webkit-margin-before: 45px;
            margin-block-start: 45px;
  }
}

.p-prepare__item {
  position: relative;
}

.p-prepare__image {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .p-prepare__image {
    -webkit-filter: drop-shadow(1.333vw 1.333vw 1.333vw rgba(79, 154, 191, 0.4));
            filter: drop-shadow(1.333vw 1.333vw 1.333vw rgba(79, 154, 191, 0.4));
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__image {
    -webkit-filter: drop-shadow(0.926vw 0.926vw 0.926vw rgba(79, 154, 191, 0.4));
            filter: drop-shadow(0.926vw 0.926vw 0.926vw rgba(79, 154, 191, 0.4));
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__image {
    -webkit-filter: drop-shadow(10px 10px 10px rgba(79, 154, 191, 0.4));
            filter: drop-shadow(10px 10px 10px rgba(79, 154, 191, 0.4));
  }
}

.p-prepare__deco {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-prepare__deco {
    width: 10.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__deco {
    width: 5.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__deco {
    width: 60px;
  }
}

@media screen and (max-width: 768px) {
  .p-prepare__label {
    -webkit-margin-before: 3.467vw;
            margin-block-start: 3.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__label {
    -webkit-margin-start: 1.852vw;
            margin-inline-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__label {
    -webkit-margin-before: 20px;
            margin-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-prepare__item:nth-of-type(1) .p-prepare__deco {
    left: 5.2vw;
    top: 45.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__item:nth-of-type(1) .p-prepare__deco {
    left: 2.778vw;
    top: 24.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__item:nth-of-type(1) .p-prepare__deco {
    left: 30px;
    top: 260px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__item:nth-of-type(2) {
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__item:nth-of-type(2) {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-prepare__item:nth-of-type(2) .p-prepare__deco {
    right: 5.2vw;
    top: -2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__item:nth-of-type(2) .p-prepare__deco {
    right: 2.778vw;
    top: -0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__item:nth-of-type(2) .p-prepare__deco {
    right: 30px;
    top: -10px;
  }
}
@media screen and (max-width: 768px) {
  .p-prepare__item:nth-of-type(3) .p-prepare__deco {
    right: 3.333vw;
    top: 43.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-prepare__item:nth-of-type(3) .p-prepare__deco {
    right: 1.852vw;
    top: 23.148vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-prepare__item:nth-of-type(3) .p-prepare__deco {
    right: 20px;
    top: 250px;
  }
}

@media screen and (max-width: 768px) {
  .p-recommend__inner {
    -webkit-padding-before: 12.667vw;
            padding-block-start: 12.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__inner {
    -webkit-padding-before: 9.259vw;
            padding-block-start: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__inner {
    -webkit-padding-before: 100px;
            padding-block-start: 100px;
  }
}

.p-recommend__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-recommend__title {
    width: 92.533vw;
  }
}
@media screen and (min-width: 769px) {
  .p-recommend__title {
    width: 58%;
  }
}

.p-recommend__list {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-recommend__list {
    gap: 14.667vw;
    -webkit-margin-before: 1.6vw;
            margin-block-start: 1.6vw;
    margin-inline: auto;
    -webkit-transform: translateY(16vw);
            transform: translateY(16vw);
    width: 90.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__list {
    gap: 13.889vw;
    -webkit-margin-before: 6.481vw;
            margin-block-start: 6.481vw;
    -webkit-transform: translateY(6.944vw);
            transform: translateY(6.944vw);
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__list {
    gap: 150px;
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
    -webkit-transform: translateY(75px);
            transform: translateY(75px);
  }
}

.p-recommend__item {
  position: relative;
}

.p-recommend__num {
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-recommend__num {
    top: -9.333vw;
    width: 17.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__num {
    top: -5.093vw;
    width: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__num {
    top: -55px;
    width: 100px;
  }
}

.p-recommend__card {
  background: #ecf6fb;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recommend__card {
    border-radius: 3.097vw;
    padding-block: 15.333vw 8.667vw;
    width: 82.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__card {
    border-radius: 1.852vw;
    padding-block: 8.333vw 3.704vw;
    width: 70.37vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__card {
    border-radius: 20px;
    padding-block: 90px 40px;
    width: 76%;
  }
}

@media screen and (max-width: 768px) {
  .p-recommend__sub-title {
    margin-inline: auto;
    width: 69.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__sub-title {
    width: 37.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__sub-title {
    width: 400px;
  }
}

.p-recommend__image {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-recommend__image {
    border-radius: 1.122vw;
    box-shadow: 1.333vw 1.333vw 1.333vw rgba(0, 0, 0, 0.2);
    -webkit-margin-before: 6vw;
            margin-block-start: 6vw;
    width: 84vw;
  }
}
@media screen and (min-width: 769px) {
  .p-recommend__image {
    position: absolute;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__image {
    border-radius: 0.926vw;
    box-shadow: 0.926vw 0.926vw 0.926vw rgba(0, 0, 0, 0.2);
    top: -6.481vw;
    width: 53.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__image {
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    top: -70px;
    width: 576px;
  }
}

.p-recommend__text {
  color: #333;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-recommend__text {
    font-size: 3.467vw;
    line-height: 1.8;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    margin-inline: auto;
    width: 69.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-recommend__text {
    line-height: 1.8;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__text {
    font-size: 1.852vw;
    -webkit-margin-before: 2.315vw;
            margin-block-start: 2.315vw;
    width: 37.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__text {
    font-size: 20px;
    -webkit-margin-before: 25px;
            margin-block-start: 25px;
    width: 400px;
  }
}

.p-recommend__item:nth-child(2n+1) .p-recommend__card {
  margin-inline: auto 0;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__item:nth-child(2n+1) .p-recommend__card {
    -webkit-padding-start: 26.852vw;
            padding-inline-start: 26.852vw;
    -webkit-transform: translateX(3.704vw);
            transform: translateX(3.704vw);
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__item:nth-child(2n+1) .p-recommend__card {
    -webkit-padding-start: 290px;
            padding-inline-start: 290px;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
}
@media screen and (max-width: 768px) {
  .p-recommend__item:nth-child(2n+1) .p-recommend__num {
    left: 14.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__item:nth-child(2n+1) .p-recommend__num {
    left: 52.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__item:nth-child(2n+1) .p-recommend__num {
    left: 570px;
  }
}
@media screen and (max-width: 768px) {
  .p-recommend__item:nth-child(2n+1) .p-recommend__image {
    -webkit-transform: translateX(-8vw);
            transform: translateX(-8vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__item:nth-child(2n+1) .p-recommend__image {
    left: -31.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__item:nth-child(2n+1) .p-recommend__image {
    left: -340px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__item:nth-child(2n) .p-recommend__card {
    -webkit-padding-start: 6.481vw;
            padding-inline-start: 6.481vw;
    -webkit-transform: translateX(-3.704vw);
            transform: translateX(-3.704vw);
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__item:nth-child(2n) .p-recommend__card {
    -webkit-padding-start: 70px;
            padding-inline-start: 70px;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
}
@media screen and (max-width: 768px) {
  .p-recommend__item:nth-child(2n) .p-recommend__num {
    left: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__item:nth-child(2n) .p-recommend__num {
    left: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__item:nth-child(2n) .p-recommend__num {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-recommend__item:nth-child(2n) .p-recommend__image {
    -webkit-transform: translateX(6.667vw);
            transform: translateX(6.667vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-recommend__item:nth-child(2n) .p-recommend__image {
    right: -31.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-recommend__item:nth-child(2n) .p-recommend__image {
    right: -340px;
  }
}

.p-area {
  background-color: #a0dcfa;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-area {
    background-image: url(../images/area_bg_sp_01.jpg);
    background-position: 0 0;
    background-size: 100% auto;
  }
}
@media screen and (min-width: 769px) {
  .p-area {
    background-image: url(../images/area_bg_pc_01.jpg), url(../images/area_bg_pc_02.jpg);
    background-position: 50% 0, 50% 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area {
    background-size: 203.704vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-area__inner {
    -webkit-padding-before: 30vw;
            padding-block-start: 30vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area__inner {
    padding-block: 12.037vw 8.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area__inner {
    padding-block: 130px 90px;
  }
}

@media screen and (min-width: 769px) {
  .p-area__top {
    display: grid;
    gap: 0;
    grid-template-columns: 43% 56%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area__text-area {
    -webkit-padding-before: 6.019vw;
            padding-block-start: 6.019vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area__text-area {
    -webkit-padding-before: 65px;
            padding-block-start: 65px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area__title {
    -webkit-transform: translateX(-0.926vw);
            transform: translateX(-0.926vw);
    width: 38.889vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area__title {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    width: 420px;
  }
}

.p-area__text {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-area__text {
    font-size: 3.467vw;
    line-height: 1.7;
    -webkit-margin-before: -23.333vw;
            margin-block-start: -23.333vw;
    -webkit-margin-start: 4.667vw;
            margin-inline-start: 4.667vw;
    width: 52.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-area__text {
    line-height: 1.7;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area__text {
    font-size: 1.852vw;
    -webkit-margin-before: 2.037vw;
            margin-block-start: 2.037vw;
    width: 37.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area__text {
    font-size: 20px;
    -webkit-margin-before: 22px;
            margin-block-start: 22px;
    width: 400px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area__image {
    -webkit-margin-before: 2.593vw;
            margin-block-start: 2.593vw;
    -webkit-transform: translateX(-3.241vw);
            transform: translateX(-3.241vw);
    width: 47.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area__image {
    -webkit-margin-before: 28px;
            margin-block-start: 28px;
    -webkit-transform: translateX(-35px);
            transform: translateX(-35px);
    width: 510px;
  }
}

.p-area-region {
  background: url(../images/area_bg_03@2x.png) no-repeat;
}
@media screen and (max-width: 768px) {
  .p-area-region {
    background-position: 50% 0;
    background-size: 100.533vw auto;
    -webkit-margin-before: 0vw;
            margin-block-start: 0vw;
    -webkit-padding-before: 4vw;
            padding-block-start: 4vw;
    -webkit-padding-start: 4.667vw;
            padding-inline-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-area-region {
    background-position: 0 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area-region {
    background-size: 53.704vw auto;
    -webkit-padding-before: 6.481vw;
            padding-block-start: 6.481vw;
    -webkit-padding-start: 3.704vw;
            padding-inline-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area-region {
    background-size: 580px auto;
    -webkit-padding-before: 70px;
            padding-block-start: 70px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
  }
}

.p-area-region__head {
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-area-region__head {
    font-size: 3.467vw;
    -webkit-margin-start: 1.733vw;
            margin-inline-start: 1.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area-region__head {
    font-size: 1.852vw;
    -webkit-margin-start: 0.5em;
            margin-inline-start: 0.5em;
  }
}
@media screen and (min-width: 1080px) {
  .p-area-region__head {
    font-size: 20px;
    -webkit-margin-start: 0.5em;
            margin-inline-start: 0.5em;
  }
}

.p-area-region__data + .p-area-region__head {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}

@media screen and (max-width: 768px) {
  .p-area-region__data {
    -webkit-margin-before: 1.6vw;
            margin-block-start: 1.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area-region__data {
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area-region__data {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.p-area-region__list {
  display: grid;
}
@media screen and (max-width: 768px) {
  .p-area-region__list {
    gap: 0.8vw;
    grid-template-columns: repeat(5, 17.333vw);
  }
}
@media screen and (min-width: 769px) {
  .p-area-region__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area-region__list {
    gap: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area-region__list {
    gap: 5px;
  }
}

.p-area-region__item {
  border-radius: 100vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-area-region__item {
    font-size: 3.12vw;
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) {
  .p-area-region__item {
    line-height: 1.667;
  }
}

.p-area-region__list--hokkaido .p-area-region__item {
  background: #7478c2;
}

.p-area-region__list--tohoku .p-area-region__item {
  background: #4388d3;
}

.p-area-region__list--kanto .p-area-region__item {
  background: #31beca;
}

.p-area-region__list--chubu .p-area-region__item {
  background: #4ab969;
}

.p-area-region__list--kinki .p-area-region__item {
  background: #b0b72f;
}

.p-area-region__list--chugoku .p-area-region__item {
  background: #ef9f27;
}

.p-area-region__list--shikoku .p-area-region__item {
  background: #d08f68;
}

.p-area-region__list--kyushu .p-area-region__item {
  background: #ff7575;
}

.p-area-region__list--okinawa .p-area-region__item {
  background: #ff7bac;
}

@media screen and (max-width: 768px) {
  .p-area-message {
    background: url(../images/area_bg_sp_02.jpg) 0 100%/100% auto no-repeat;
    height: 120vw;
    -webkit-padding-before: 22vw;
            padding-block-start: 22vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-area-message {
    -webkit-margin-before: 14.815vw;
            margin-block-start: 14.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-area-message {
    -webkit-margin-before: 160px;
            margin-block-start: 160px;
  }
}

.p-area-message__text {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-area-message__text {
    width: 81.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-area-message__text {
    width: 47.2%;
  }
}

.p-follow {
  background: #ebfaff;
}

.p-follow__title {
  background: var(--color-tertiary);
}

@media screen and (max-width: 768px) {
  .p-follow__inner {
    padding-block: 8.667vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-follow__inner {
    padding-block: 6.481vw 8.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-follow__inner {
    padding-block: 70px 90px;
  }
}

.p-follow__list {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-follow__list {
    gap: 5.333vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-follow__list {
    gap: 2.778vw;
    width: 90%;
  }
}
@media screen and (min-width: 1080px) {
  .p-follow__list {
    gap: 30px;
    width: 90%;
  }
}

.p-follow-item {
  border: dotted #82c3e6;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-follow-item {
    background: #fff;
    border-radius: 3.467vw;
    border-width: 2px;
    -webkit-padding-after: 5.333vw;
            padding-block-end: 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-follow-item {
    background: 0 0/auto 100% no-repeat #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-follow-item {
    border-radius: 1.852vw;
    border-width: 3px;
    height: 27.778vw;
    -webkit-padding-start: 31.019vw;
            padding-inline-start: 31.019vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-follow-item {
    border-radius: 20px;
    border-width: 4px;
    height: 300px;
    -webkit-padding-start: 335px;
            padding-inline-start: 335px;
  }
}

@media screen and (max-width: 768px) {
  .p-follow-item__header {
    background: 0 0/auto 100% no-repeat;
    display: flex;
    flex-direction: column;
    height: 40vw;
    justify-content: center;
    -webkit-padding-before: 1.333vw;
            padding-block-start: 1.333vw;
    -webkit-padding-start: 43.333vw;
            padding-inline-start: 43.333vw;
  }
}

@media screen and (max-width: 768px) {
  .p-follow-item__title {
    width: 40vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-follow-item__title {
    width: 49.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-follow-item__title {
    width: 530px;
  }
}

.p-follow-item__example {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-follow-item__example {
    font-size: 3.813vw;
    line-height: 1.364;
    -webkit-margin-before: 1.333vw;
            margin-block-start: 1.333vw;
    width: 41.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-follow-item__example {
    line-height: 1.364;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-follow-item__example {
    font-size: 2.037vw;
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
    -webkit-margin-start: 0.463vw;
            margin-inline-start: 0.463vw;
    width: 49.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-follow-item__example {
    font-size: 22px;
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
    -webkit-margin-start: 5px;
            margin-inline-start: 5px;
    width: 530px;
  }
}

@media screen and (max-width: 768px) {
  .p-follow-item__text {
    line-height: 1.667;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    margin-inline: auto;
    width: 77.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-follow-item__text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-follow-item__text {
    -webkit-margin-before: 1.389vw;
            margin-block-start: 1.389vw;
    -webkit-margin-start: 0.463vw;
            margin-inline-start: 0.463vw;
    width: 49.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-follow-item__text {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    -webkit-margin-start: 5px;
            margin-inline-start: 5px;
    width: 530px;
  }
}

@media screen and (min-width: 769px) {
  .p-follow-item:nth-of-type(1) {
    background-image: url(../images/follow_bg_01.jpg);
  }
}
@media screen and (max-width: 768px) {
  .p-follow-item:nth-of-type(1) .p-follow-item__header {
    background-image: url(../images/follow_bg_01.jpg);
  }
}
.p-follow-item:nth-of-type(1) .p-follow-item__example {
  color: #4187b4;
}
@media screen and (min-width: 769px) {
  .p-follow-item:nth-of-type(2) {
    background-image: url(../images/follow_bg_02.jpg);
  }
}
@media screen and (max-width: 768px) {
  .p-follow-item:nth-of-type(2) .p-follow-item__header {
    background-image: url(../images/follow_bg_02.jpg);
  }
}
.p-follow-item:nth-of-type(2) .p-follow-item__example {
  color: #46b4d2;
}
@media screen and (min-width: 769px) {
  .p-follow-item:nth-of-type(3) {
    background-image: url(../images/follow_bg_03.jpg);
  }
}
@media screen and (max-width: 768px) {
  .p-follow-item:nth-of-type(3) .p-follow-item__header {
    background-image: url(../images/follow_bg_03.jpg);
  }
}
.p-follow-item:nth-of-type(3) .p-follow-item__example {
  color: #4187b4;
}
@media screen and (min-width: 769px) {
  .p-follow-item:nth-of-type(4) {
    background-image: url(../images/follow_bg_04.jpg);
  }
}
@media screen and (max-width: 768px) {
  .p-follow-item:nth-of-type(4) .p-follow-item__header {
    background-image: url(../images/follow_bg_04.jpg);
  }
}
.p-follow-item:nth-of-type(4) .p-follow-item__example {
  color: #46b4d2;
}
@media screen and (min-width: 769px) {
  .p-follow-item:nth-of-type(5) {
    background-image: url(../images/follow_bg_05.jpg);
  }
}
@media screen and (max-width: 768px) {
  .p-follow-item:nth-of-type(5) .p-follow-item__header {
    background-image: url(../images/follow_bg_05.jpg);
  }
}
.p-follow-item:nth-of-type(5) .p-follow-item__example {
  color: #4187b4;
}

@media screen and (max-width: 768px) {
  .p-qa__inner {
    padding-block: 8.667vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-qa__inner {
    padding-block: 8.333vw 11.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-qa__inner {
    padding-block: 90px 120px;
  }
}

@media screen and (max-width: 768px) {
  .p-qa__title {
    -webkit-margin-start: 10.133vw;
            margin-inline-start: 10.133vw;
    width: 65.067vw;
  }
}
@media screen and (min-width: 769px) {
  .p-qa__title {
    -webkit-margin-start: 27%;
            margin-inline-start: 27%;
    width: 37.5%;
  }
}

.p-qa__list {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-qa__list {
    -webkit-margin-before: 8.8vw;
            margin-block-start: 8.8vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-qa__list {
    -webkit-margin-before: 6.944vw;
            margin-block-start: 6.944vw;
    width: 90%;
  }
}
@media screen and (min-width: 1080px) {
  .p-qa__list {
    -webkit-margin-before: 75px;
            margin-block-start: 75px;
    width: 90%;
  }
}

.p-qa__item {
  background: #f5f2eb;
}
@media screen and (max-width: 768px) {
  .p-qa__item {
    border-radius: 1.817vw;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-qa__item {
    border-radius: 0.926vw;
    -webkit-margin-before: 2.778vw;
            margin-block-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-qa__item {
    border-radius: 10px;
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.p-qa__question {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-qa__question {
    gap: 3.467vw;
    min-height: 15.467vw;
    padding-block: 2.667vw;
    -webkit-padding-start: 5.2vw;
            padding-inline-start: 5.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-qa__question {
    gap: 1.852vw;
    min-height: 8.333vw;
    padding-block: 1.852vw;
    -webkit-padding-start: 2.778vw;
            padding-inline-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-qa__question {
    gap: 20px;
    min-height: 90px;
    padding-block: 20px;
    -webkit-padding-start: 30px;
            padding-inline-start: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-qa__question-icon,
  .p-qa__answer-icon {
    width: 8.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-qa__question-icon,
  .p-qa__answer-icon {
    width: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-qa__question-icon,
  .p-qa__answer-icon {
    width: 50px;
  }
}

@media screen and (max-width: 768px) {
  .p-qa__question-text {
    font-size: 3.813vw;
    line-height: 1.455;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-qa__question-text {
    line-height: 1.455;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-qa__question-text {
    font-size: 2.037vw;
    width: 70.37vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-qa__question-text {
    font-size: 22px;
    width: 760px;
  }
}

.p-qa__answer {
  align-items: flex-start;
  border-top: 2px solid #fff;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-qa__answer {
    border-top-width: 1px;
    gap: 3.467vw;
    padding-block: 4.133vw 2.933vw;
    -webkit-padding-start: 5.2vw;
            padding-inline-start: 5.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-qa__answer {
    gap: 1.852vw;
    padding-block: 2.315vw;
    -webkit-padding-start: 2.778vw;
            padding-inline-start: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-qa__answer {
    gap: 20px;
    padding-block: 25px;
    -webkit-padding-start: 30px;
            padding-inline-start: 30px;
  }
}

.p-qa__answer-text {
  color: #666;
}
@media screen and (max-width: 768px) {
  .p-qa__answer-text {
    font-size: 3.467vw;
    line-height: 1.6;
    -webkit-margin-before: 0.667vw;
            margin-block-start: 0.667vw;
    width: 66.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-qa__answer-text {
    line-height: 1.6;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-qa__answer-text {
    font-size: 1.852vw;
    -webkit-margin-before: 0.463vw;
            margin-block-start: 0.463vw;
    width: 70.37vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-qa__answer-text {
    font-size: 20px;
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
    width: 760px;
  }
}

@media screen and (max-width: 768px) {
  .p-payment {
    background: url(../images/payment_bg_sp.jpg) 0 0/100% auto no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-payment {
    background: url(../images/payment_bg_pc.jpg) 50% 0 no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-payment {
    background-size: 203.704vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-payment__inner {
    padding-block: 15.733vw 8.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-payment__inner {
    padding-block: 8.519vw 6.019vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-payment__inner {
    padding-block: 92px 65px;
  }
}

.p-payment__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-payment__title {
    width: 90.133vw;
  }
}
@media screen and (min-width: 769px) {
  .p-payment__title {
    width: 52%;
  }
}

@media screen and (max-width: 768px) {
  .p-payment__list {
    -webkit-margin-before: 10.667vw;
            margin-block-start: 10.667vw;
    margin-inline: auto;
    width: 90.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-payment__list {
    display: grid;
    gap: 2%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-payment__list {
    -webkit-margin-before: 5.093vw;
            margin-block-start: 5.093vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-payment__list {
    -webkit-margin-before: 55px;
            margin-block-start: 55px;
  }
}

.p-payment__item {
  background: #fff;
  border: solid #82c3e6;
}
@media screen and (max-width: 768px) {
  .p-payment__item {
    border-radius: 1.529vw;
    box-shadow: 1.333vw 1.333vw 1.333vw rgba(0, 0, 0, 0.1);
    border-width: 2px;
    -webkit-margin-before: 4vw;
            margin-block-start: 4vw;
    padding-block: 1.467vw 4vw;
    padding-inline: 1.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-payment__item {
    border-radius: 0.741vw;
    box-shadow: 0.926vw 0.926vw 0.926vw rgba(0, 0, 0, 0.1);
    border-width: 3px;
    padding-block: 4px 1.852vw;
    padding-inline: 4px;
  }
}
@media screen and (min-width: 1080px) {
  .p-payment__item {
    border-radius: 8px;
    border-width: 4px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    padding-block: 6px 20px;
    padding-inline: 6px;
  }
}

.p-payment__text {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-payment__text {
    font-size: 3.12vw;
    line-height: 1.667;
    -webkit-margin-before: 3.333vw;
            margin-block-start: 3.333vw;
    width: 78.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-payment__text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-payment__text {
    -webkit-margin-before: 0.926vw;
            margin-block-start: 0.926vw;
    width: 24.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-payment__text {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
    width: 260px;
  }
}

@media screen and (max-width: 768px) {
  .p-coupon {
    -webkit-margin-before: 12vw;
            margin-block-start: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-coupon {
    -webkit-margin-before: 9.259vw;
            margin-block-start: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-coupon {
    -webkit-margin-before: 100px;
            margin-block-start: 100px;
  }
}

.p-coupon__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-coupon__title {
    width: 83.467vw;
  }
}
@media screen and (min-width: 769px) {
  .p-coupon__title {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .p-coupon__ticket {
    -webkit-margin-before: 0.667vw;
            margin-block-start: 0.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-coupon__ticket {
    margin-inline: auto;
    width: 92%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-coupon__ticket {
    -webkit-margin-before: -1.852vw;
            margin-block-start: -1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-coupon__ticket {
    -webkit-margin-before: -20px;
            margin-block-start: -20px;
  }
}

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

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

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

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

.u-font-notoSerif {
  font-family: var(--font-NotoSerifJP);
}

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

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

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

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

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

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

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