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

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  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;
}

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

:root {
  --color-font: #333;
  --color-primary: #64a0f0;
  --color-secondary: #e0ecfc;
  --font-NotoSansJP: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", YuGothic, sans-serif;
  --font-NotoSerifJP: "Noto Serif JP", "Hiragino Mincho Pro", "Yu Mincho", YuMincho, serif;
  --font-bebasNeue: "Bebas Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  background: #fff;
  color: var(--color-font);
  font-family: var(--font-NotoSansJP);
  font-weight: 400;
  line-height: 1;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 751px) {
  body {
    font-size: 27px;
    min-width: 750px;
  }
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
img {
  vertical-align: bottom;
}

img[height] {
  height: auto;
  width: 100%;
}

b, strong {
  font-weight: bolder;
}

.l-wrapper {
  position: relative;
}
@media screen and (max-width: 750px) {
  .l-wrapper {
    padding-block-end: 21.333vw;
  }
}
@media screen and (min-width: 751px) {
  .l-wrapper {
    margin-inline: auto;
    padding-block-end: 160px;
    width: 750px;
  }
}
.l-wrapper--confirm, .l-wrapper--thanks {
  padding-block-end: 0;
}

.l-header {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: space-between;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 750px) {
  .l-header {
    box-shadow: 0 1.333vw 2.667vw rgba(0, 113, 118, 0.3);
    height: 13.333vw;
    padding-inline: 5.333vw 4.667vw;
    width: 100%;
  }
}
@media screen and (min-width: 751px) {
  .l-header {
    box-shadow: 0 10px 30px -10px rgba(0, 113, 118, 0.3);
    height: 100px;
    margin-inline: auto;
    padding-inline: 40px 35px;
    width: 750px;
  }
}

@media screen and (max-width: 750px) {
  .l-header__logo {
    width: 30.667vw;
  }
}
@media screen and (min-width: 751px) {
  .l-header__logo {
    width: 230px;
  }
}

@media screen and (max-width: 750px) {
  .l-header__tel {
    width: 34.933vw;
  }
}
@media screen and (min-width: 751px) {
  .l-header__tel {
    width: 262px;
  }
}

.l-sticky {
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}
@media screen and (max-width: 750px) {
  .l-sticky {
    padding-block: 1.333vw;
  }
}
@media screen and (min-width: 751px) {
  .l-sticky {
    padding-block: 10px;
  }
}
.l-sticky.is-show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.l-sticky__btn-list {
  align-items: flex-end;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .l-sticky__btn-list {
    gap: 1.333vw;
  }
}
@media screen and (min-width: 751px) {
  .l-sticky__btn-list {
    gap: 10px;
  }
}

@media screen and (max-width: 750px) {
  .l-sticky__btn {
    width: 45.333vw;
  }
}
@media screen and (min-width: 751px) {
  .l-sticky__btn {
    width: 340px;
  }
}

.c-cta {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .c-cta {
    width: 89.333vw;
  }
}
@media screen and (min-width: 751px) {
  .c-cta {
    width: 670px;
  }
}

.c-cta__note {
  color: #fff;
  letter-spacing: 0.02em;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .c-cta__note {
    font-size: 3.2vw;
    margin-block-start: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .c-cta__note {
    font-size: 24px;
    margin-block-start: 15px;
  }
}

.c-title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .c-title {
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .c-title {
    width: 680px;
  }
}

.c-content {
  background: rgba(255, 255, 255, 0.9);
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .c-content {
    border-radius: 2.667vw;
    box-shadow: 0 1.333vw 2.667vw rgba(0, 113, 118, 0.3);
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .c-content {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 113, 118, 0.3);
    width: 680px;
  }
}

.p-kv {
  background: url(../images/kv_bg.jpg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 750px) {
  .p-kv {
    padding-block: 19.333vw 0;
  }
}
@media screen and (min-width: 751px) {
  .p-kv {
    padding-block: 145px 0;
  }
}

.p-kv__price {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-kv__price {
    margin-block-start: 10vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__price {
    margin-block-start: 75px;
  }
}
.p-kv__price .p-kv-price-roll-wrap {
  position: absolute;
  z-index: 10;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .p-kv__price .p-kv-price-roll-wrap {
    top: 2.4vw;
    right: 4vw;
    min-width: 48.133vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__price .p-kv-price-roll-wrap {
    top: 18px;
    right: 30px;
    min-width: 361px;
  }
}
.p-kv__price .p-kv-price-roll {
  position: relative;
  /* Gradient Setup */
  display: inline-block;
  background-color: #fff;
  background-image: linear-gradient(135deg, rgb(249, 169, 75) 6.17357%, rgb(255, 77, 36) 50.122288%, rgb(245, 128, 55) 72.996055%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.p-kv__price .p-kv-price-roll:after {
  content: "";
  position: absolute;
  z-index: 10;
  display: block;
  background: url("../images/dots.png") no-repeat;
  background-size: 100% 100%;
  background-color: #ffea71;
}
@media screen and (max-width: 750px) {
  .p-kv__price .p-kv-price-roll:after {
    top: 13.2vw;
    right: 30.4vw;
    width: 3.067vw;
    height: 5.867vw;
    border: 0.8vw solid #ffea71;
    border-right-width: 0.4vw;
    border-left-width: 0.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__price .p-kv-price-roll:after {
    top: 99px;
    right: 228px;
    width: 23px;
    height: 44px;
    border: 6px solid #ffea71;
    border-right-width: 3px;
    border-left-width: 3px;
  }
}
.p-kv__price .p-kv-nedan {
  color: transparent;
  letter-spacing: -0.025em;
}
@media screen and (max-width: 750px) {
  .p-kv__price .p-kv-nedan {
    font-size: 19.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__price .p-kv-nedan {
    font-size: 146px;
  }
}
.p-kv__price .p-kv-yen {
  display: inline-block;
  color: transparent;
  font-weight: 700;
  vertical-align: super;
}
@media screen and (max-width: 750px) {
  .p-kv__price .p-kv-yen {
    font-size: 7.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__price .p-kv-yen {
    margin-bottom: 10px;
    font-size: 56px;
  }
}

@media screen and (max-width: 750px) {
  .p-kv__cta {
    margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-kv__cta {
    margin-block-start: 50px;
  }
}

@media screen and (max-width: 750px) {
  .p-record {
    padding-block: 16vw 6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-record {
    padding-block: 120px 45px;
  }
}

.p-record__title {
  align-items: baseline;
  background: url(../images/record_title_bg.png) no-repeat;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-record__title {
    background-position: 50% 3.333vw;
    background-size: 77.333vw auto;
  }
}
@media screen and (min-width: 751px) {
  .p-record__title {
    background-position: 50% 25px;
  }
}

.p-record__title-image {
  width: auto;
}
@media screen and (max-width: 750px) {
  .p-record__title-image {
    height: 5.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-record__title-image {
    height: 42px;
  }
}

.p-record__title-num {
  color: #f7931e;
}
@media screen and (max-width: 750px) {
  .p-record__title-num {
    font-size: 15.2vw;
    margin-inline: 2.667vw 1.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-record__title-num {
    font-size: 114px;
    margin-inline: 20px 10px;
  }
}

@media screen and (max-width: 750px) {
  .p-record-list {
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-record-list {
    margin-block-start: 30px;
  }
}

@media screen and (max-width: 750px) {
  .p-record-list__image {
    width: 37.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-record-list__image {
    width: 280px;
  }
}

@media screen and (max-width: 750px) {
  .p-intro {
    padding-block: 6vw 18vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro {
    padding-block: 45px 135px;
  }
}

.p-intro__balloon-list {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .p-intro__balloon-list {
    height: 44vw;
    margin-block-start: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__balloon-list {
    height: 330px;
    margin-block-start: 15px;
  }
}

.p-intro__balloon-item {
  align-items: center;
  background: 0 0/contain no-repeat;
  display: flex;
  font-weight: 500;
  line-height: 1.333;
  justify-content: center;
  position: absolute;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-intro__balloon-item {
    font-size: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__balloon-item {
    font-size: 30px;
  }
}
.p-intro__balloon-item--01 {
  background-image: url(../images/intro_bg_01.png);
}
@media screen and (max-width: 750px) {
  .p-intro__balloon-item--01 {
    height: 22vw;
    left: 9.333vw;
    padding-block-end: 3.333vw;
    top: 4.667vw;
    width: 38.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__balloon-item--01 {
    height: 165px;
    left: 70px;
    padding-block-end: 25px;
    top: 35px;
    width: 290px;
  }
}
.p-intro__balloon-item--02 {
  background-image: url(../images/intro_bg_02.png);
  color: #fff;
  top: 0;
}
@media screen and (max-width: 750px) {
  .p-intro__balloon-item--02 {
    height: 20.533vw;
    padding-block-end: 2.933vw;
    right: 6.667vw;
    width: 41.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__balloon-item--02 {
    height: 154px;
    padding-block-end: 22px;
    right: 50px;
    width: 312px;
  }
}
.p-intro__balloon-item--03 {
  background-image: url(../images/intro_bg_03.png);
  color: #fff;
}
@media screen and (max-width: 750px) {
  .p-intro__balloon-item--03 {
    bottom: -6vw;
    height: 20.533vw;
    left: 7.6vw;
    padding-block-end: 2.933vw;
    width: 41.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__balloon-item--03 {
    bottom: -45px;
    height: 154px;
    left: 57px;
    padding-block-end: 22px;
    width: 312px;
  }
}
.p-intro__balloon-item--04 {
  background-image: url(../images/intro_bg_04.png);
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .p-intro__balloon-item--04 {
    height: 22vw;
    padding-block-end: 3.333vw;
    right: 4.8vw;
    width: 38.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__balloon-item--04 {
    height: 165px;
    padding-block-end: 25px;
    right: 36px;
    width: 290px;
  }
}

.p-intro__list {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-intro__list {
    margin-block-start: 3.333vw;
    width: 88vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__list {
    margin-block-start: 25px;
    width: 660px;
  }
}

.p-intro__list-item {
  background: url(../images/intro_icon.png) no-repeat;
  border-bottom: 1px solid #ccc;
  line-height: 2.857;
}
@media screen and (max-width: 750px) {
  .p-intro__list-item {
    background-position: 0.667vw 50%;
    background-size: 6.667vw auto;
    font-size: 3.733vw;
    padding-inline-start: 10vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__list-item {
    background-position: 5px 50%;
    font-size: 28px;
    padding-inline-start: 75px;
  }
}

.p-intro__list-em {
  color: #3d427c;
}

.p-intro__summary {
  align-items: center;
  background: url(../images/intro_bg_05.jpg) 0/contain no-repeat;
  display: flex;
  margin-inline: auto;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .p-intro__summary {
    height: 34.667vw;
    margin-block-start: 6.667vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__summary {
    height: 260px;
    margin-block-start: 50px;
    width: 680px;
  }
}

.p-intro__summary-text {
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.514;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-intro__summary-text {
    font-size: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__summary-text {
    font-size: 30px;
  }
}

@media screen and (max-width: 750px) {
  .p-intro__summary-em {
    font-size: 4.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-intro__summary-em {
    font-size: 35px;
  }
}

.p-solution {
  background: url(../images/solution_bg.png) 0 0/cover no-repeat;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .p-solution {
    height: 222.4vw;
    padding-block: 29.333vw 20vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution {
    height: 1668px;
    padding-block: 220px 150px;
  }
}

.p-solution__lead {
  left: 0;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-solution__lead {
    top: -14.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution__lead {
    top: -110px;
  }
}

.p-solution__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-solution__title {
    width: 84vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution__title {
    width: 630px;
  }
}

.p-solution__catch {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-solution__catch {
    margin-block-start: 4vw;
    width: 58.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution__catch {
    margin-block-start: 30px;
    width: 440px;
  }
}

.p-solution__text {
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.733;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-solution__text {
    font-size: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution__text {
    font-size: 30px;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__text--01 {
    margin-block-start: 6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution__text--01 {
    margin-block-start: 45px;
  }
}
@media screen and (max-width: 750px) {
  .p-solution__text--02 {
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution__text--02 {
    margin-block-start: 30px;
  }
}

.p-solution__text-em {
  color: #ffea71;
}
@media screen and (max-width: 750px) {
  .p-solution__text-em {
    font-size: 4.4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution__text-em {
    font-size: 33px;
  }
}

.p-solution__image {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-solution__image {
    margin-block-start: 6.667vw;
    width: 80vw;
  }
}
@media screen and (min-width: 751px) {
  .p-solution__image {
    margin-block-start: 50px;
    width: 600px;
  }
}

.p-middle {
  background: var(--color-secondary);
}
@media screen and (max-width: 750px) {
  .p-middle {
    margin-block-start: -29.333vw;
    padding-block: 32vw 17.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-middle {
    margin-block-start: -220px;
    padding-block: 240px 130px;
  }
}

@media screen and (max-width: 750px) {
  .p-reason {
    padding-block-end: 8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason {
    padding-block-end: 60px;
  }
}

.p-reason__list {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-reason__list {
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__list {
    width: 680px;
  }
}

.p-reason__item {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-reason__item {
    border-radius: 2.667vw;
    margin-block-start: 19.333vw;
    padding-block-end: 9.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item {
    border-radius: 20px;
    margin-block-start: 145px;
    padding-block-end: 70px;
  }
}

.p-reason__item-title {
  background: 0/contain no-repeat;
  color: #fff;
  font-weight: 700;
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-reason__item-title {
    font-size: 6.667vw;
    height: 20.133vw;
    padding-block-start: 8vw;
    padding-inline-start: 12vw;
    top: -12.133vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item-title {
    font-size: 50px;
    height: 151px;
    padding-block-start: 60px;
    padding-inline-start: 90px;
    top: -91px;
  }
}

.p-reason__item-catch {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.421;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-reason__item-catch {
    font-size: 5.067vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item-catch {
    font-size: 38px;
  }
}

.p-reason__item-text {
  line-height: 2;
  margin-inline: auto;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .p-reason__item-text {
    margin-block-start: 3.333vw;
    width: 77.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item-text {
    margin-block-start: 25px;
    width: 580px;
  }
}

@media screen and (max-width: 750px) {
  .p-reason__item--leave {
    padding-block-start: 13.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item--leave {
    padding-block-start: 100px;
  }
}
.p-reason__item--leave .p-reason__item-title {
  background-image: url(../images/reason_bg_01.png);
}
@media screen and (max-width: 750px) {
  .p-reason__item--leave .p-reason__item-catch {
    margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item--leave .p-reason__item-catch {
    margin-block-start: 20px;
  }
}

@media screen and (max-width: 750px) {
  .p-reason__item--price {
    padding-block-start: 12vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item--price {
    padding-block-start: 90px;
  }
}
.p-reason__item--price .p-reason__item-title {
  background-image: url(../images/reason_bg_02.png);
}
.p-reason__item--price .p-reason__item-image {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-reason__item--price .p-reason__item-image {
    width: 58.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item--price .p-reason__item-image {
    width: 440px;
  }
}
@media screen and (max-width: 750px) {
  .p-reason__item--price .p-reason__item-catch {
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item--price .p-reason__item-catch {
    margin-block-start: 30px;
  }
}

@media screen and (max-width: 750px) {
  .p-reason__item--results {
    padding-block-start: 10.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item--results {
    padding-block-start: 80px;
  }
}
.p-reason__item--results .p-reason__item-title {
  background-image: url(../images/reason_bg_03.png);
}
@media screen and (max-width: 750px) {
  .p-reason__item--results .p-reason__item-catch {
    margin-block-start: 5.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-reason__item--results .p-reason__item-catch {
    margin-block-start: 40px;
  }
}

.p-ctr {
  background: url(../images/reason_img_01.jpg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 750px) {
  .p-ctr {
    height: 115.2vw;
    padding-block-start: 12.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-ctr {
    height: 864px;
    padding-block-start: 95px;
  }
}

@media screen and (max-width: 750px) {
  .p-ctr__word-list {
    margin-inline-start: 26.667vw;
    width: 33.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-ctr__word-list {
    margin-inline-start: 200px;
    width: 250px;
  }
}

.p-ctr__word {
  font-weight: 300;
  line-height: 2.667;
}
@media screen and (max-width: 750px) {
  .p-ctr__word {
    font-size: 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-ctr__word {
    font-size: 15px;
  }
}

.p-ctr__catch {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-ctr__catch {
    margin-block-start: 68vw;
    width: 80vw;
  }
}
@media screen and (min-width: 751px) {
  .p-ctr__catch {
    margin-block-start: 510px;
    width: 600px;
  }
}

@media screen and (max-width: 750px) {
  .p-comparison {
    padding-block: 9.333vw 10vw;
  }
}
@media screen and (min-width: 751px) {
  .p-comparison {
    padding-block: 70px 75px;
  }
}

@media screen and (max-width: 750px) {
  .p-comparison__table {
    margin-block-start: 5.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-comparison__table {
    margin-block-start: 40px;
  }
}

.p-comparison__note {
  color: #666;
  margin-inline: auto;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .p-comparison__note {
    font-size: 2.667vw;
    width: 86.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-comparison__note {
    font-size: 20px;
    width: 650px;
  }
}

.p-comparison__text {
  letter-spacing: 0.04em;
  line-height: 1.857;
  margin-inline: auto;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .p-comparison__text {
    font-size: 3.733vw;
    margin-block-start: 6.667vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-comparison__text {
    font-size: 28px;
    margin-block-start: 50px;
    width: 680px;
  }
}

@media screen and (max-width: 750px) {
  .p-comparison__cta {
    margin-block-start: 6.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-comparison__cta {
    margin-block-start: 50px;
  }
}
.p-comparison__cta .c-cta__note {
  color: var(--color-font);
}

.p-pro {
  background: #fffdef;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-pro {
    padding-block-end: 10vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro {
    padding-block-end: 75px;
  }
}
.p-pro::before {
  background: url(../images/pro_bg_01.png) 0 100%/contain no-repeat;
  content: "";
  display: block;
  margin-block-start: 1px;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-pro::before {
    height: 17.333vw;
    top: -17.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro::before {
    height: 130px;
    top: -130px;
  }
}

.p-pro__lead {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-pro__lead {
    width: 87.2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__lead {
    width: 654px;
  }
}

.p-pro__title {
  background: url(../images/pro_title_01_bg.png) 50% 100%/contain no-repeat;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-pro__title {
    margin-block-start: 2.667vw;
    min-height: 17.867vw;
    width: 80.533vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__title {
    margin-block-start: 20px;
    min-height: 134px;
    width: 604px;
  }
}

.p-pro__title-num {
  color: #f7931e;
  letter-spacing: 0.015em;
}
@media screen and (max-width: 750px) {
  .p-pro__title-num {
    font-size: 16vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__title-num {
    font-size: 120px;
  }
}

.p-pro__title-word01,
.p-pro__title-word02 {
  vertical-align: baseline;
  width: auto;
}

@media screen and (max-width: 750px) {
  .p-pro__title-word01 {
    height: 7.2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__title-word01 {
    height: 54px;
  }
}

@media screen and (max-width: 750px) {
  .p-pro__title-word02 {
    height: 6.133vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__title-word02 {
    height: 46px;
  }
}

.p-pro__text {
  line-height: 1.857;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-pro__text {
    font-size: 3.733vw;
    margin-block-start: 5.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__text {
    font-size: 28px;
    margin-block-start: 40px;
  }
}

.p-pro__list {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-pro__list {
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__list {
    width: 680px;
  }
}

.p-pro__item {
  border-style: solid;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-pro__item {
    border-radius: 2.667vw;
    border-width: 0.8vw;
    padding-block: 22.667vw 5.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item {
    border-radius: 20px;
    border-width: 6px;
    padding-block: 170px 40px;
  }
}

.p-pro__item-title {
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-pro__item-title {
    left: -0.8vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item-title {
    left: -6px;
    width: 680px;
  }
}

.p-pro__item-lead {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-pro__item-lead {
    width: 80vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item-lead {
    width: 600px;
  }
}

.p-pro__item-note {
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-pro__item-note {
    font-size: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item-note {
    font-size: 20px;
  }
}

.p-pro__item-text {
  line-height: 2.077;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-pro__item-text {
    font-size: 3.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item-text {
    font-size: 26px;
  }
}

.p-pro__item--in-house {
  background: #f2f2f2;
  border-color: #b3b3b3;
}
@media screen and (max-width: 750px) {
  .p-pro__item--in-house {
    margin-block-start: 7.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item--in-house {
    margin-block-start: 55px;
  }
}
@media screen and (max-width: 750px) {
  .p-pro__item--in-house .p-pro__item-title {
    top: -6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item--in-house .p-pro__item-title {
    top: -45px;
  }
}
@media screen and (max-width: 750px) {
  .p-pro__item--in-house .p-pro__item-text {
    margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item--in-house .p-pro__item-text {
    margin-block-start: 20px;
  }
}

.p-pro__item--request {
  background: #eff5fd;
  border-color: #a2c6f6;
}
@media screen and (max-width: 750px) {
  .p-pro__item--request {
    margin-block-start: 13.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item--request {
    margin-block-start: 100px;
  }
}
.p-pro__item--request::before {
  background: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .p-pro__item--request::before {
    height: 4vw;
    top: -9.333vw;
    width: 20vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item--request::before {
    height: 30px;
    top: -70px;
    width: 150px;
  }
}
@media screen and (max-width: 750px) {
  .p-pro__item--request .p-pro__item-title {
    top: -8.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item--request .p-pro__item-title {
    top: -65px;
  }
}
@media screen and (max-width: 750px) {
  .p-pro__item--request .p-pro__item-note {
    margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item--request .p-pro__item-note {
    margin-block-start: 10px;
  }
}
@media screen and (max-width: 750px) {
  .p-pro__item--request .p-pro__item-text {
    margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-pro__item--request .p-pro__item-text {
    margin-block-start: 25px;
  }
}

.p-case {
  background: url(../images/case_bg_01.png) 0 0/100% auto no-repeat var(--color-primary);
  margin-block-start: -1px;
}
@media screen and (max-width: 750px) {
  .p-case {
    padding-block: 24.667vw 9.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case {
    padding-block: 185px 70px;
  }
}

.p-case__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-case__title {
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__title {
    width: 680px;
  }
}

@media screen and (max-width: 750px) {
  .p-case__text-wrap {
    margin-block-start: 8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__text-wrap {
    margin-block-start: 60px;
  }
}

.p-case__text {
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.857;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-case__text {
    font-size: 3.733vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__text {
    font-size: 28px;
  }
}
.p-case__text + .p-case__text {
  margin-block-start: 1.85em;
}

.p-case__list {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-case__list {
    margin-block-start: 6.667vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__list {
    margin-block-start: 50px;
    width: 680px;
  }
}

.p-case__item {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-case__item {
    border-radius: 2.667vw;
    box-shadow: 0 1.333vw 2.667vw rgba(0, 113, 118, 0.3);
    padding-block-end: 5.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__item {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 113, 118, 0.3);
    padding-block-end: 40px;
  }
}
@media screen and (max-width: 750px) {
  .p-case__item:not(:nth-of-type(1)) {
    margin-block-start: 9.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__item:not(:nth-of-type(1)) {
    margin-block-start: 70px;
  }
}

.p-case__item-digest {
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-case__item-digest {
    right: -2vw;
    top: -8vw;
    width: 32vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__item-digest {
    right: -15px;
    top: -60px;
    width: 240px;
  }
}

.p-case__item-header {
  display: flex;
  justify-content: space-between;
}

.p-case__item-pic {
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-case__item-pic {
    border-bottom-right-radius: 2.667vw;
    border-top-left-radius: 2.667vw;
    width: 32.933vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__item-pic {
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    width: 247px;
  }
}

@media screen and (max-width: 750px) {
  .p-case__item-data {
    width: 52vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__item-data {
    width: 390px;
  }
}

@media screen and (max-width: 750px) {
  .p-case__item-num {
    width: 14.133vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__item-num {
    width: 106px;
  }
}

@media screen and (max-width: 750px) {
  .p-case__item-name {
    margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__item-name {
    margin-block-start: 25px;
  }
}

.p-case__item-text {
  line-height: 2;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-case__item-text {
    font-size: 3.467vw;
    margin-block-start: 4vw;
    width: 81.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__item-text {
    font-size: 26px;
    margin-block-start: 30px;
    width: 610px;
  }
}

@media screen and (max-width: 750px) {
  .p-case__cta {
    margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-case__cta {
    margin-block-start: 35px;
  }
}

.p-campaign {
  background: url(../images/campaign_bg.png) 0 0/100% auto no-repeat #ffea71;
}
@media screen and (max-width: 750px) {
  .p-campaign {
    padding-block: 10vw 2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign {
    padding-block: 75px 15px;
  }
}

.p-campaign__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-campaign__title {
    width: 89.867vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__title {
    width: 674px;
  }
}

.p-campaign__limited {
  background: url(../images/campaign_limited_bg.png) 50% 50%/contain no-repeat;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-campaign__limited {
    height: 32vw;
    margin-block-start: 3.333vw;
    padding-block-start: 3.333vw;
    width: 80vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__limited {
    height: 240px;
    margin-block-start: 25px;
    padding-block-start: 25px;
    width: 600px;
  }
}

.p-campaign__limited-text {
  color: #ffea71;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-campaign__limited-text {
    font-size: 6.667vw;
    margin-block-start: 0.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__limited-text {
    font-size: 50px;
    margin-block-start: 5px;
  }
}

.p-campaign__limited-num {
  display: inline-block;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-inline-start: -0.2em;
  text-align: right;
  vertical-align: baseline;
}
@media screen and (max-width: 750px) {
  .p-campaign__limited-num {
    font-size: 16vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__limited-num {
    font-size: 120px;
  }
}

.p-campaign__catch01 {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-campaign__catch01 {
    margin-block-start: 5.067vw;
    width: 80vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__catch01 {
    margin-block-start: 38px;
    width: 600px;
  }
}

.p-campaign__catch02 {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-campaign__catch02 {
    margin-block-start: 6vw;
    width: 80vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__catch02 {
    margin-block-start: 45px;
    width: 600px;
  }
}

.p-campaign__catch03 {
  align-items: baseline;
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-campaign__catch03 {
    margin-block-start: 2vw;
    margin-inline-start: 7.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__catch03 {
    margin-block-start: 15px;
    margin-inline-start: 55px;
  }
}

.p-campaign__catch03-img {
  width: auto;
}
@media screen and (max-width: 750px) {
  .p-campaign__catch03-img {
    height: 12vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__catch03-img {
    height: 90px;
  }
}

.p-campaign__catch03-price {
  color: #f15a24;
  letter-spacing: -0.005em;
  margin-inline-end: 0.05em;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .p-campaign__catch03-price {
    font-size: 15.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__catch03-price {
    font-size: 116px;
  }
}

.p-campaign__note {
  margin-inline: auto;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .p-campaign__note {
    font-size: 2.667vw;
    margin-block-start: -0.667vw;
    width: 86.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__note {
    font-size: 20px;
    margin-block-start: -5px;
    width: 650px;
  }
}

.p-campaign__text {
  line-height: 1.75;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-campaign__text {
    font-size: 2.667vw;
    margin-block-start: 6vw;
    width: 81.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-campaign__text {
    font-size: 20px;
    margin-block-start: 45px;
    width: 610px;
  }
}

.p-plan {
  background: url(../images/plan_bg_01.png) 0 0/100% auto no-repeat var(--color-secondary);
  margin-block-start: -1px;
}
@media screen and (max-width: 750px) {
  .p-plan {
    padding-block: 24vw 13.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan {
    padding-block: 180px 100px;
  }
}

.p-plan__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-plan__title {
    width: 81.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__title {
    width: 610px;
  }
}

.p-plan__text-wrap {
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-plan__text-wrap {
    margin-block-start: 9.333vw;
    width: 81.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__text-wrap {
    margin-block-start: 70px;
    width: 610px;
  }
}
.p-plan__text-wrap::before, .p-plan__text-wrap::after {
  border: 1px solid var(--color-primary);
  content: "";
  display: flex;
  height: 100%;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 750px) {
  .p-plan__text-wrap::before, .p-plan__text-wrap::after {
    width: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__text-wrap::before, .p-plan__text-wrap::after {
    width: 20px;
  }
}
.p-plan__text-wrap::before {
  border-right: 0;
  left: 0;
}
.p-plan__text-wrap::after {
  border-left: 0;
  right: 0;
}

.p-plan__text {
  letter-spacing: 0.06em;
  line-height: 1.857;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-plan__text {
    font-size: 3.733vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__text {
    font-size: 28px;
  }
}

.p-plan__list {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-plan__list {
    margin-block-start: 8vw;
    padding-block-end: 4.667vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__list {
    margin-block-start: 60px;
    padding-block-end: 35px;
    width: 680px;
  }
}

.p-plan__item {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-plan__item {
    border-radius: 2.667vw;
    box-shadow: 0 1.333vw 2.667vw rgba(0, 113, 118, 0.3);
    margin-block-start: 6.667vw;
    padding-block-end: 3.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__item {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 113, 118, 0.3);
    margin-block-start: 50px;
    padding-block-end: 26px;
  }
}
.p-plan__item::before {
  background: #ffea71;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-plan__item::before {
    height: 17.333vw;
    left: -2vw;
    top: -2.667vw;
    width: 17.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__item::before {
    height: 130px;
    left: -15px;
    top: -20px;
    width: 130px;
  }
}

.p-plan__item-title {
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-plan__item-title {
    border-top-left-radius: 2.667vw;
    border-top-right-radius: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__item-title {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

.p-plan__item-lead {
  letter-spacing: 0.06em;
  margin-block-start: 1em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-plan__item-lead {
    font-size: 3.733vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__item-lead {
    font-size: 28px;
  }
}

.p-plan__item-price {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-plan__item-price {
    margin-block-start: 4vw;
    width: 85.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan__item-price {
    margin-block-start: 30px;
    width: 640px;
  }
}

.p-plan-table {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-plan-table {
    padding-inline-start: 4.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table {
    padding-inline-start: 35px;
  }
}

.p-plan-table__wrap {
  cursor: pointer;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
  user-select: none;
}
@media screen and (max-width: 750px) {
  .p-plan-table__wrap {
    padding-block: 11.333vw 10vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__wrap {
    padding-block: 85px 75px;
  }
}
.p-plan-table__wrap::-webkit-scrollbar {
  display: none;
}
.p-plan-table__wrap:active {
  cursor: grabbing;
}
.p-plan-table__wrap.is-dragging {
  scroll-behavior: auto;
}

.p-plan-table__guide {
  cursor: pointer;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  z-index: 100;
}
@media screen and (max-width: 750px) {
  .p-plan-table__guide {
    width: 17.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__guide {
    width: 180px;
  }
}
.p-plan-table__guide.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.p-plan-table__inner {
  border-collapse: separate;
  border-spacing: 0;
  transform: translateZ(0);
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-plan-table__inner {
    filter: drop-shadow(0 1.333vw 2.667vw rgba(0, 113, 118, 0.3));
    margin-inline-end: 4.667vw;
    min-width: 114.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__inner {
    filter: drop-shadow(0 10px 20px rgba(0, 113, 118, 0.3));
    margin-inline-end: 35px;
    min-width: 860px;
  }
}

.p-plan-table__header:first-child,
.p-plan-table__cell-head {
  left: 0;
  position: sticky;
  z-index: 10;
}

.p-plan-table__header:first-child {
  background: #fff;
}
@media screen and (max-width: 750px) {
  .p-plan-table__header:first-child {
    border-top-left-radius: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__header:first-child {
    border-top-left-radius: 20px;
  }
}
@media screen and (max-width: 750px) {
  .p-plan-table__header:last-child {
    border-top-right-radius: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__header:last-child {
    border-top-right-radius: 20px;
  }
}

.p-plan-table__header-inner {
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-plan-table__header-inner {
    height: 13.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__header-inner {
    height: 100px;
  }
}

.p-plan-table__header-label {
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-plan-table__header-label {
    left: 1.333vw;
    top: -5.333vw;
    width: 26.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__header-label {
    left: 10px;
    top: -40px;
    width: 200px;
  }
}

.p-plan-table__cell-head,
.p-plan-table__cell {
  border-bottom: 1px solid #d3d3d3;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .p-plan-table__cell-head,
  .p-plan-table__cell {
    height: 17.333vw;
    padding-block: 0.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__cell-head,
  .p-plan-table__cell {
    height: 130px;
    padding-block: 5px;
  }
}

.p-plan-table__cell-head {
  background: #64a0f0;
  color: #fff;
  line-height: 1.111;
}
@media screen and (max-width: 750px) {
  .p-plan-table__cell-head {
    font-size: 3.6vw;
    width: 26.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__cell-head {
    font-size: 27px;
    width: 200px;
  }
}

@media screen and (max-width: 750px) {
  .p-plan-table__cell {
    width: 29.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__cell {
    width: 220px;
  }
}

@media screen and (max-width: 750px) {
  .p-plan-table__mark {
    height: 7.2vw;
    width: 7.2vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__mark {
    height: 54px;
    width: 54px;
  }
}

@media screen and (max-width: 750px) {
  .p-plan-table__keyword {
    width: 20vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__keyword {
    width: 150px;
  }
}

@media screen and (max-width: 750px) {
  .p-plan-table__month {
    width: 13.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__month {
    width: 102px;
  }
}

.p-plan-table__row .p-plan-table__header:nth-child(2),
.p-plan-table__row .p-plan-table__cell:nth-child(2) {
  background: #def4f2;
}
.p-plan-table__row .p-plan-table__header:nth-child(2) .p-plan-table__mark,
.p-plan-table__row .p-plan-table__cell:nth-child(2) .p-plan-table__mark {
  fill: #5ac7c0;
}
.p-plan-table__row .p-plan-table__header:nth-child(3),
.p-plan-table__row .p-plan-table__cell:nth-child(3) {
  background: #e0ecfc;
}
.p-plan-table__row .p-plan-table__header:nth-child(3) .p-plan-table__mark,
.p-plan-table__row .p-plan-table__cell:nth-child(3) .p-plan-table__mark {
  fill: #64a0f0;
}
.p-plan-table__row .p-plan-table__header:nth-child(4),
.p-plan-table__row .p-plan-table__cell:nth-child(4) {
  background: #dfdaf9;
}
.p-plan-table__row .p-plan-table__header:nth-child(4) .p-plan-table__mark,
.p-plan-table__row .p-plan-table__cell:nth-child(4) .p-plan-table__mark {
  fill: #a68eff;
}
@media screen and (max-width: 750px) {
  .p-plan-table__row:last-child .p-plan-table__cell-head {
    border-bottom-left-radius: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__row:last-child .p-plan-table__cell-head {
    border-bottom-left-radius: 20px;
  }
}
@media screen and (max-width: 750px) {
  .p-plan-table__row:last-child .p-plan-table__cell:last-child {
    border-bottom-right-radius: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-plan-table__row:last-child .p-plan-table__cell:last-child {
    border-bottom-right-radius: 20px;
  }
}

@media screen and (max-width: 750px) {
  .p-support {
    padding-block-start: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-support {
    padding-block-start: 30px;
  }
}

.p-support__title {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-support__title {
    width: 85.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-support__title {
    width: 640px;
  }
}

.p-support__text {
  letter-spacing: 0.06em;
  line-height: 1.926;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-support__text {
    margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-support__text {
    margin-block-start: 25px;
  }
}

.p-step {
  background: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .p-step {
    padding-block: 13.333vw 14.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step {
    padding-block: 100px 110px;
  }
}

.p-step__lead {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-step__lead {
    width: 56.533vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__lead {
    width: 424px;
  }
}

@media screen and (max-width: 750px) {
  .p-step__title {
    margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__title {
    margin-block-start: 25px;
  }
}

.p-step__list {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-step__list {
    margin-block-start: 8.667vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__list {
    margin-block-start: 65px;
    width: 680px;
  }
}

.p-step__item {
  background: 0 0/100% auto no-repeat #fff;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-step__item {
    border-radius: 2.667vw;
    margin-block-start: 6.667vw;
    min-height: 18.667vw;
    padding-block: 5.333vw 4vw;
    padding-inline-start: 18vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__item {
    border-radius: 20px;
    margin-block-start: 50px;
    min-height: 140px;
    padding-block: 40px 30px;
    padding-inline-start: 135px;
  }
}
.p-step__item:nth-of-type(1) {
  background-image: url(../images/step_bg_01.png);
}
.p-step__item:nth-of-type(2) {
  background-image: url(../images/step_bg_02.png);
}
.p-step__item:nth-of-type(3) {
  background-image: url(../images/step_bg_03.png);
}
.p-step__item:nth-of-type(4) {
  background-image: url(../images/step_bg_04.png);
}
.p-step__item:nth-of-type(5) {
  background-image: url(../images/step_bg_05.png);
}
.p-step__item:not(:last-child)::after {
  background: url(../images/step_arrow.png) 50% 50% no-repeat;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  transform: translateY(100%);
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-step__item:not(:last-child)::after {
    background-size: 7.2vw auto;
    height: 6.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__item:not(:last-child)::after {
    height: 50px;
  }
}

.p-step__item--flex {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-step__item--flex {
    gap: 5.333vw;
    padding-block: 5.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__item--flex {
    gap: 40px;
    padding-block: 40px;
  }
}

.p-step__item-num {
  position: absolute;
}
@media screen and (max-width: 750px) {
  .p-step__item-num {
    left: -2.667vw;
    top: -4.667vw;
    width: 17.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__item-num {
    left: -20px;
    top: -35px;
    width: 130px;
  }
}

.p-step__item-title {
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.471;
}
@media screen and (max-width: 750px) {
  .p-step__item-title {
    font-size: 4.533vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__item-title {
    font-size: 34px;
  }
}

.p-step__item-free {
  background: #ffea71;
  border-radius: 100vw;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1.667;
}
@media screen and (max-width: 750px) {
  .p-step__item-free {
    font-size: 4vw;
    padding-inline: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__item-free {
    font-size: 30px;
    padding-inline: 25px;
  }
}

.p-step__item-text {
  letter-spacing: 0.06em;
  line-height: 1.37;
}
@media screen and (max-width: 750px) {
  .p-step__item-text {
    font-size: 3.6vw;
    margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-step__item-text {
    font-size: 27px;
    margin-block-start: 20px;
  }
}

@media screen and (max-width: 750px) {
  .p-faq {
    padding-block: 14.667vw 13.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-faq {
    padding-block: 110px 100px;
  }
}

.p-faq__list {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-faq__list {
    margin-block-start: 9.333vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-faq__list {
    margin-block-start: 70px;
    width: 680px;
  }
}

.p-faq__item {
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .p-faq__item {
    border-radius: 2.667vw;
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-faq__item {
    border-radius: 20px;
    margin-block-start: 30px;
  }
}

.p-faq__question {
  align-items: center;
  background: url(../images/faq_icon_q.png) no-repeat var(--color-primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  line-height: 1.353;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-faq__question {
    background-position: 4vw 2.933vw;
    background-size: 4.533vw auto;
    font-size: 4.533vw;
    min-height: 13.333vw;
    padding-block: 2.667vw;
    padding-inline: 13.333vw 8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-faq__question {
    background-position: 30px 22px;
    background-size: 34px auto;
    font-size: 34px;
    min-height: 100px;
    padding-block: 20px;
    padding-inline: 100px 60px;
  }
}

.p-faq__icon {
  border: solid #fff;
  position: absolute;
  transform: rotate(135deg);
  transition: transform 0.3s;
}
@media screen and (max-width: 750px) {
  .p-faq__icon {
    border-width: 0.4vw 0.4vw 0 0;
    height: 1.867vw;
    right: 4vw;
    top: 5.333vw;
    width: 1.867vw;
  }
}
@media screen and (min-width: 751px) {
  .p-faq__icon {
    border-width: 3px 3px 0 0;
    height: 14px;
    right: 30px;
    top: 40px;
    width: 14px;
  }
}

.p-faq__question--active .p-faq__icon {
  transform: rotate(315deg);
}

.p-faq__answer {
  background: url(../images/faq_icon_a.png) no-repeat var(--color-secondary);
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
@media screen and (max-width: 750px) {
  .p-faq__answer {
    background-position: 4vw 5.333vw;
    background-size: 4.533vw auto;
  }
}
@media screen and (min-width: 751px) {
  .p-faq__answer {
    background-position: 30px 40px;
    background-size: 34px auto;
  }
}

@media screen and (max-width: 750px) {
  .p-faq__answer-inner {
    padding-block: 4vw;
    padding-inline: 13.333vw 5.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-faq__answer-inner {
    padding-block: 30px;
    padding-inline: 100px 40px;
  }
}

.p-faq__answer-text {
  line-height: 2;
}

.p-faq__answer-text + .p-faq__answer-text {
  margin-block-start: 1em;
}

.p-contact {
  background: var(--color-secondary);
}
@media screen and (max-width: 750px) {
  .p-contact {
    padding-block: 15.333vw 13.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact {
    padding-block: 115px 100px;
  }
}

.p-contact__lead {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-contact__lead {
    width: 80vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact__lead {
    width: 600px;
  }
}

@media screen and (max-width: 750px) {
  .p-contact__title {
    margin-block-start: 4.8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact__title {
    margin-block-start: 36px;
  }
}

.p-contact__text-wrap {
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .p-contact__text-wrap {
    margin-block-start: 6vw;
    width: 82.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact__text-wrap {
    margin-block-start: 45px;
    width: 620px;
  }
}
.p-contact__text-wrap::before, .p-contact__text-wrap::after {
  border: 1px solid #a2c6f6;
  content: "";
  display: flex;
  height: 100%;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 750px) {
  .p-contact__text-wrap::before, .p-contact__text-wrap::after {
    width: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact__text-wrap::before, .p-contact__text-wrap::after {
    width: 20px;
  }
}
.p-contact__text-wrap::before {
  border-right: 0;
  left: 0;
}
.p-contact__text-wrap::after {
  border-left: 0;
  right: 0;
}

.p-contact__text {
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-contact__text {
    font-size: 3.467vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact__text {
    font-size: 26px;
  }
}

@media screen and (max-width: 750px) {
  .p-contact-form {
    margin-block-start: 14.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form {
    margin-block-start: 110px;
  }
}

.p-contact-form__group {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-contact-form__group {
    padding-block-end: 4.667vw;
    width: 88vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__group {
    padding-block-end: 35px;
    width: 660px;
  }
}

.p-contact-form__title {
  letter-spacing: 0.06em;
  line-height: 1.481;
  padding-inline-start: 0.5em;
}
@media screen and (max-width: 750px) {
  .p-contact-form__title {
    font-size: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__title {
    font-size: 30px;
  }
}
.p-contact-form__title::after {
  background: var(--color-primary);
  color: #fff;
  content: "必須";
  display: inline-block;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-inline-start: 0.5em;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .p-contact-form__title::after {
    border-radius: 0.667vw;
    font-size: 2.667vw;
    width: 8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__title::after {
    border-radius: 5px;
    font-size: 20px;
    width: 60px;
  }
}

@media screen and (max-width: 750px) {
  .p-contact-form__data {
    margin-block-start: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__data {
    margin-block-start: 20px;
  }
}

.p-contact-form__input,
.p-contact-form__textarea {
  background: #fff;
  border: 1px solid var(--color-primary);
  font-size: 100%;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-contact-form__input,
  .p-contact-form__textarea {
    border-radius: 1.333vw;
    padding-block: 3.6vw;
    padding-inline: 2.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__input,
  .p-contact-form__textarea {
    border-radius: 10px;
    padding-block: 27px;
    padding-inline: 20px;
  }
}
.p-contact-form__input::placeholder,
.p-contact-form__textarea::placeholder {
  color: #ccc;
}

.p-contact-form__textarea {
  field-sizing: content;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .p-contact-form__textarea {
    height: 33.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__textarea {
    height: 250px;
  }
}

.p-textarea-container {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-textarea-container {
    height: 33.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-textarea-container {
    height: 250px;
  }
}

.p-custom-placeholder {
  color: #ccc;
  letter-spacing: 0.06em;
  line-height: 2;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.2s;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .p-custom-placeholder {
    left: 2.667vw;
    top: 3.6vw;
  }
}
@media screen and (min-width: 751px) {
  .p-custom-placeholder {
    left: 20px;
    top: 27px;
  }
}
.p-custom-placeholder.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 750px) {
  .p-contact-form__action {
    margin-block-start: 9.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__action {
    margin-block-start: 70px;
  }
}

.p-contact-form__btn {
  background: 0/contain no-repeat;
  cursor: pointer;
  display: block;
  margin-inline: auto;
  text-indent: -9999px;
}
@media screen and (max-width: 750px) {
  .p-contact-form__btn {
    height: 20vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__btn {
    height: 150px;
    width: 670px;
  }
}
@media (any-hover: hover) {
  .p-contact-form__btn:hover {
    opacity: 0.8;
  }
}
.p-contact-form__btn--confirm {
  background-image: url(../images/btn_confirm.png);
}
.p-contact-form__btn--submit {
  background-image: url(../images/btn_submit.png);
}
.p-contact-form__btn--revise {
  background-image: url(../images/btn_revise.png);
}
@media screen and (max-width: 750px) {
  .p-contact-form__btn--revise {
    margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__btn--revise {
    margin-block-start: 35px;
  }
}

.p-contact-form__note {
  color: #666;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-contact-form__note {
    font-size: 3.467vw;
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact-form__note {
    font-size: 26px;
    margin-block-start: 30px;
  }
}

@media screen and (max-width: 750px) {
  .p-contact--confirm {
    padding-block: 18vw 14.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact--confirm {
    padding-block: 135px 110px;
  }
}
.p-contact--confirm .p-contact-form__data {
  border-bottom: 1px solid var(--color-primary);
  line-height: 1.733;
}
@media screen and (max-width: 750px) {
  .p-contact--confirm .p-contact-form__data {
    font-size: 4vw;
    padding-block: 1.333vw;
    padding-inline-start: 6.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact--confirm .p-contact-form__data {
    font-size: 30px;
    padding-block: 10px;
    padding-inline-start: 50px;
  }
}

.p-contact__error {
  color: #f00;
}

@media screen and (max-width: 750px) {
  .p-contact--thanks {
    padding-block: 18vw 14.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact--thanks {
    padding-block: 135px 110px;
  }
}
.p-contact--thanks .p-contact-form__data {
  border-bottom: 1px solid var(--color-primary);
  line-height: 1.733;
}
@media screen and (max-width: 750px) {
  .p-contact--thanks .p-contact-form__data {
    font-size: 4vw;
    padding-block: 1.333vw;
    padding-inline-start: 6.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact--thanks .p-contact-form__data {
    font-size: 30px;
    padding-block: 10px;
    padding-inline-start: 50px;
  }
}
.p-contact--thanks .p-contact__thanks-btn {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-contact--thanks .p-contact__thanks-btn {
    margin-block-start: 16vw;
    width: 89.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-contact--thanks .p-contact__thanks-btn {
    margin-block-start: 120px;
    width: 670px;
  }
}

.p-bottom {
  background: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .p-bottom {
    padding-block: 8.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-bottom {
    padding-block: 65px;
  }
}

@media screen and (max-width: 750px) {
  .p-company {
    padding-block: 7.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-company {
    padding-block: 55px;
  }
}

@media screen and (max-width: 750px) {
  .p-companay__content {
    margin-block-start: 4vw;
    padding-block: 4vw 8.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-companay__content {
    margin-block-start: 30px;
    padding-block: 30PX 65PX;
  }
}

.p-company__table {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-company__table {
    width: 82.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-company__table {
    width: 620px;
  }
}

.p-company__table-row:last-child .p-company__table-th,
.p-company__table-row:last-child .p-company__table-td {
  border-bottom: 0;
}

.p-company__table-th,
.p-company__table-td {
  border-bottom: 1px solid #ccc;
  letter-spacing: 0.06em;
  line-height: 1.538;
}
@media screen and (max-width: 750px) {
  .p-company__table-th,
  .p-company__table-td {
    font-size: 3.467vw;
    padding-block: 3.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-company__table-th,
  .p-company__table-td {
    font-size: 26px;
    padding-block: 25px;
  }
}

.p-company__table-th {
  text-align: right;
}
@media screen and (max-width: 750px) {
  .p-company__table-th {
    width: 20vw;
  }
}
@media screen and (min-width: 751px) {
  .p-company__table-th {
    width: 150px;
  }
}

@media screen and (max-width: 750px) {
  .p-company__table-td {
    padding-inline-start: 4.267vw;
  }
}
@media screen and (min-width: 751px) {
  .p-company__table-td {
    padding-inline-start: 32px;
  }
}

.p-company__note {
  background: #c1d9f9;
  border-radius: 100vw;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-company__note {
    font-size: 2.667vw;
    margin-block-start: 5.333vw;
    padding-block: 3.333vw;
    width: 84vw;
  }
}
@media screen and (min-width: 751px) {
  .p-company__note {
    font-size: 20px;
    margin-block-start: 40px;
    padding-block: 25px;
    width: 630px;
  }
}

@media screen and (max-width: 750px) {
  .p-message {
    padding-block: 7.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-message {
    padding-block: 55px;
  }
}

.p-message__lead {
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-message__lead {
    margin-block-start: 4.667vw;
    width: 90.667vw;
  }
}
@media screen and (min-width: 751px) {
  .p-message__lead {
    margin-block-start: 35px;
    width: 680px;
  }
}

@media screen and (max-width: 750px) {
  .p-message__content {
    margin-block-start: 6vw;
    padding-block: 8vw;
  }
}
@media screen and (min-width: 751px) {
  .p-message__content {
    margin-block-start: 45px;
    padding-block: 60px;
  }
}

.p-message__text,
.p-message__sign {
  line-height: 1.926;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .p-message__text,
  .p-message__sign {
    width: 77.333vw;
  }
}
@media screen and (min-width: 751px) {
  .p-message__text,
  .p-message__sign {
    width: 580px;
  }
}

.p-message__sign {
  text-align: right;
}

@media screen and (min-width: 751px) {
  .u-only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .u-only-pc {
    display: none !important;
  }
}
.u-font-bebasNeue {
  font-family: var(--font-bebasNeue);
}

.u-ls-100 {
  letter-spacing: 0.1em;
}

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

.u-text-70 {
  font-size: 0.7em;
}

/*# sourceMappingURL=style.css.map */
