@charset "UTF-8";

/* =================== */
/*  variable             */
/* =================== */

:root {

  /* inner */
  --innerPadingInline: 20px;
  --innerWidth: 1120px;

  /* font */
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;

  /* カラー */
  --color-white: #fff;
  --color-black: #000;
  --color-black2: #333;
  --color-gray: #828282;
  --color-gray2: #8d8d8d;
  --color-gray3: #f2f2f2;
  --color-yellow: #ffeb55;
  --color-main: #39a7ff;
  --color-blue: #036eb8;
  --color-blue2: #edf7ff;
  --color-blue3: #bde2ff;
  --color-white2: #e5edf0;
  --color-red: #f31559;

  /* weight */
  --font-weight-regular: 400;
  --font-weight-normal: 500;
  --font-weight-medium: 600;
  --font-weight-bold: 700;

  /* lineheight */
  --leading-tight: 1.25;
  --leading-snug: 1.5;
  --leading-normal: 1.618;
  --leading-relaxed: 1.8;
  --leading-loose: 2;
  --leading-trim: calc((1em - 1lh)/2);

  /* letter-spacing */
  --tracking-tight: .025em;
  --tracking-normal: .05em;
  /* hover */
  --hover-opacity: 0.8;

  --aspect-video: 16/9;
  --aspect-thumbnail: 1.91/1;

  --z-top-layer: calc(infinity);
  --z-head-layer: 200;
  --z-foot-layer: 100;

  --rounded-sm: 4px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-full: calc(infinity * 1px);
}


/* =================== */
/*  base             */
/* =================== */

a {
  -webkit-transition: opacity 0.3s;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}


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

  }
}


@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;

  }
}


* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


body {
  margin: 0 auto;
  color: var(--color-black);
  font-family: var(--font-family-base);
  word-break: break-all;
  letter-spacing: 0;
}

:where(button, [type='button'], [type='reset'], [type='submit']) {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

:where( :-moz-any-link,
  button,
  [type='button'],
  [type='reset'],
  [type='submit'],
  label[for],
  select,
  summary,
  [role='tab'],
  [role='button']) {
  cursor: pointer;
}

:where( :-webkit-any-link,
  button,
  [type='button'],
  [type='reset'],
  [type='submit'],
  label[for],
  select,
  summary,
  [role='tab'],
  [role='button']) {
  cursor: pointer;
}

:where( :any-link,
  button,
  [type='button'],
  [type='reset'],
  [type='submit'],
  label[for],
  select,
  summary,
  [role='tab'],
  [role='button']) {
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: none;
}


/* =================== */
/*  utilitiy         */
/* =================== */

.u-br-sp {
  display: block;

}

@media (min-width: 992px) {
  .u-br-sp {
    display: none;
  }
}

.u-br-pc {
  display: none;

}

@media (min-width: 992px) {
  .u-br-pc {
    display: block;
  }
}


.u-sp-none {
  display: none !important;

}

@media (min-width: 768px) {
  .u-sp-none {
    display: block !important;

  }
}

.u-pc-none {
  display: block !important;

}

@media (min-width: 768px) {
  .u-pc-none {
    display: none !important;

  }
}

.u-visually-hidden {
  position: fixed !important;
  inset: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  padding: 0 !important;
  margin: 0 !important;
  contain: strict !important;
  pointer-events: none !important;
  visibility: visible !important;
  border: none !important;
  opacity: 0 !important;
}




/* =================== */
/*  layout         */
/* =================== */

.l-container {
  margin: 0 auto;
  background-color: var(--color-white);

}


.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-inline: var(--innerPadingInline);
}

@media (min-width: 768px) {
  .l-inner {
    --innerPadingInline: 28px;
    max-width: calc(var(--innerWidth) + (var(--innerPadingInline) * 2));

  }
}

.l-shadow {
  position: relative;
}

.l-shadow::before {
  content: "";
  width: 100%;
  height: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.12)), to(rgba(0, 0, 0, 0.00)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.00) 100%);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}


.l-header {
  position: relative;
}

.l-header::before {
  content: "";
  width: 100%;
  height: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.12)), to(rgba(0, 0, 0, 0.00)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.00) 100%);
  mix-blend-mode: multiply;
  position: absolute;
  bottom: -8px;
  left: 0;
}


/* =================== */
/*  component      */
/* =================== */

/* 共通テキスト */
.c-commonText {
  --fontSize: 14px;
  font-size: var(--fontSize);
  font-weight: var(--font-weight-medium);
}

@media (min-width: 992px) {
  .c-commonText {
    --fontSize: 20px;
  }
}

.c-commonText.c-commonText--middle {
  --fontSize: 14px;
}

@media (min-width: 992px) {
  .c-commonText.c-commonText--middle {
    --fontSize: 24px;
  }
}

.c-commonText.c-commonText--blue {
  color: var(--color-blue);
}

.c-commonLargeText {
  font-size: 14px;
  color: var(--color-blue);
  font-weight: var(--font-weight-bold);
}

@media (min-width: 992px) {
  .c-commonLargeText {
    font-size: 32px;
  }
}


/* 共通タイトル */

.c-title {
  --fontSize: 44px;
  font-size: var(--fontSize);
  font-weight: var(--font-weight-bold);
  color: var(--color-main);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--color-main);
  text-align: center;
}

.c-title.c-title--middle {
  --fontSize: 16px;
}

@media (min-width: 992px) {
  .c-title.c-title--middle {
    --fontSize: 32px;
    padding-bottom: 18px;
  }
}

.c-title.c-title--colorWhite {
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);

}

.c-title.c-title--normal {
  --fontSize: 13px;
}


@media (min-width: 992px) {
  .c-title.c-title--normal {
    --fontSize: 26px;
    padding-bottom: 22px;
  }
}

.c-titleEdge {
  color: #39a7ff;
  text-align: center;
  -webkit-text-stroke: 4px #FFF;
  text-stroke: 4px #FFF;
  paint-order: stroke;
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-base);
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0 0 0/0.25));
  filter: drop-shadow(0px 0px 4px rgba(0 0 0/0.25));
}


@media (min-width: 992px) {
  .c-titleEdge {
    font-size: 44px;
  }
}

/* 共通画像 */
.c-commonImg {
  height: auto;
  display: block;
}

.c-commonImg img {
  display: block;
  width: 100%;
  height: auto;
}


/* カード */
.c-card__img {
  width: 100%;
}

.c-card__img img {
  aspect-ratio: 1;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  border-radius: 50%;
}

.c-card__textBox {
  margin-top: -10px;
  position: relative;
}


.c-card__label {
  display: block;
  background: rgb(173, 218, 254);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(173, 218, 254, 1)), to(rgba(93, 183, 255, 1)));
  background: linear-gradient(180deg, rgba(173, 218, 254, 1) 0%, rgba(93, 183, 255, 1) 100%);
  border-radius: 8px;
  padding: 2px;
  max-width: 92px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  -webkit-box-shadow: 0 0 4px rgb(0 0 0/ 0.25);
  box-shadow: 0 0 4px rgb(0 0 0/ 0.25);
}

.c-card__labelInner {
  padding: 4px 8px 3px;
  background-color: var(--color-main);
  border-radius: 6px;
}

.c-card__labelText {
  color: var(--color-white);
  font-family: var(--font-family-roboto);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  text-transform: capitalize;
}

.c-card__title {
  font-size: 20px;
  color: var(--color-blue);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-top: 10px;
}


.c-card__text {
  margin-top: 10px;
  font-size: 16px;
  color: var(--color-black);
  font-weight: var(--font-weight-medium);
}


.c-middleCard {
  background-color: var(--color-white);
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 8px;

}

.c-middleCard__inner {
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 16px;
  text-align: center;
}

.c-middleCard__img {
  max-width: 408px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.c-middleCard__textBox {
  text-align: center;
}

.c-middleCard__title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-main);
  text-align: center;
  margin-top: 11px;
}

@media (min-width: 992px) {
  .c-middleCard__title {
    font-size: 32px;

  }

}

.c-middleCard__text {
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  color: var(--color-black);
  text-align: center;
  margin-top: 7px;
}

@media (min-width: 992px) {
  .c-middleCard__text {
    font-size: 20px;

  }

}


.c-middleCard__label {
  background-color: var(--color-yellow);
  color: var(--color-main);
  display: inline-block;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  padding: 4px 12px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .c-middleCard__label {
    font-size: 24px;

  }
}

@media (min-width: 992px) {
  .c-middleCard__label {
    font-size: 32px;
  }
}


.c-flowBox {
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 16px;
  border-radius: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .c-flowBox {
    padding: 8px;
  }

}

.c-flowBox.c-flowBox--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.c-flowBox__inner {
  display: block;

}

@media (min-width: 768px) {
  .c-flowBox__inner {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}


.c-flowBox__inner.c-flowBox__inner--center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}


.c-flowBox__img {
  max-width: 183px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .c-flowBox__img {
    margin-left: 0;
  }
}

.c-flowBox__img img {
  display: block;
}

.c-flowBox__title {
  color: var(--color-blue);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  text-align: center;
}


@media (min-width: 768px) {
  .c-flowBox__title {
    text-align: left;
  }
}

.c-flowBox__title.c-flowBox__title--textLarge {
  font-size: 40px;
}

.c-flowBox__text {
  margin-top: 6px;
  font-weight: var(--font-weight-regular);
  font-size: 14px;
}

@media (min-width: 768px) {
  .c-flowBox__text {
    font-size: 20px;
  }
}

.c-flowBox__numBox {
  font-size: 20px;
  background-color: var(--color-white);
  color: var(--color-main);
  font-weight: var(--font-weight-bold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 8px solid var(--color-main);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  left: -8px;
}

/* ボタン */
.c-commonButton {
  font-size: 16px;
  color: var(--color-main);
  font-weight: var(--font-weight-bold);
  text-align: center;
  -webkit-box-shadow: 0px 2px 8px 0px rgb(0 0 0/ 0.25);
  box-shadow: 0px 2px 8px 0px rgb(0 0 0/ 0.25);
  border: 4px solid var(--color-main);
  border-radius: 36px;
  display: block;
  padding: 8px 11px;
  background-color: var(--color-white);
}


@media (min-width: 992px) {
  .c-commonButton {
    font-size: 24px;
    padding: 8px 11px;
  }
}

.c-commonButton.c-commonButton--colorBlack {
  color: var(--color-black);
}


/* よくある質問 */
.c-box__head,
.c-box__body {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  align-items: center;
}


@media (min-width: 992px) {

  .c-box__head,
  .c-box__body {
    -webkit-column-gap: 49px;
    -moz-column-gap: 49px;
    column-gap: 49px;
  }
}

.c-box__head {
  background-color: #f2f2f2;
  border: 1px solid #e0e0e0;
  padding: 23px 18px;
}

.c-box__head span,
.c-box__body span {
  max-width: 30px;
  width: 100%;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-box__headText {
  font-size: 14px;
  color: var(--color-main);
  font-weight: var(--font-weight-bold);
}

@media (min-width: 992px) {
  .c-box__headText {
    font-size: 20px;
  }
}



.c-box__body {
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  padding: 23px 18px;
}

.c-box__body span {
  max-width: 30px;
  width: 100%;
  display: block;
}


.c-box__bodyText {
  font-size: 14px;
  color: var(--color-black);
  font-weight: var(--font-weight-regular);
}

@media (min-width: 992px) {
  .c-box__bodyText {
    font-size: 20px;
  }
}


.c-required {
  color: var(--color-white);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  border-radius: 8px;
  background-color: var(--color-red);
  padding: 3px 10px;
}

@media (min-width: 992px) {
  .c-required {
    font-size: 16px;
    padding: 3px 19px;
  }
}


/* =================== */
/*  ヘッダー　　　      */
/* =================== */
.p-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background-color: var(--color-white);
}



.p-header__nav {
  width: 100%;
}


.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: inherit;
  padding: 12px 12px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .p-header__inner {
    padding: 12px 20px;
    max-width: 957px;
  }
}


.p-header__title {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin-right: 16px;
}

@media (min-width: 768px) {
  .p-header__title {
    max-width: 200px;
  }
}

@media (min-width: 992px) {
  .p-header__title {
    max-width: 400px;
  }
}


.p-header__title a {
  display: block;
  width: 100%;
  height: auto;
}


.p-header__title a img {
  height: auto;
}




/* =================== */
/*  ナビメニュー      */
/* =================== */

.p-nav__list {
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  background: lightblue;
}


.p-nav__item {
  position: relative;
  width: 100%;
  max-width: 232px;
  margin-left: auto;
}

.p-nav__link {
  padding: 13px 16px;
  font-size: 15px;
}


@media (min-width: 768px) {
  .p-nav__link {
    padding: 13px 16px;
    font-size: 24px;
  }
}



/* =================== */
/*  fv  　　　　　　    */
/* =================== */

.p-fv {
  padding-top: 96px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ADDAFE), to(#5DB7FF));
  background: linear-gradient(180deg, #ADDAFE 0%, #5DB7FF 100%);
}

.p-fv__imgWrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(160px, 1fr);
}


.p-fv__img--1 {
  grid-row: span 2 / span 2;
}


.p-fv__img--4 {
  grid-row: span 3 / span 3;
}

.p-fv__img--5 {
  grid-column: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 2;
}

.p-fv__img--6 {
  grid-row-start: 3;
}

.p-fv__img--7 {
  grid-column-start: 1;
  grid-row-start: 4;
}

.p-fv__img--8 {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 3;
}

.p-fv__img--9 {
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 3;
}

.p-fv__img--10 {
  grid-column-start: 4;
  grid-row-start: 4;
}

.p-fv__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}



@media (min-width: 992px) {
  .p-fv__img.p-fv__img--9 img {
    height: auto;

  }
}

.p-fv__textBox {
  border: 1px solid #FFF;
  background: linear-gradient(266deg, #ADDAFE 0.59%, #5DB7FF 99.69%);
  padding: 8px 10px 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .p-fv__textBox {
    padding: 17px 18px 7px;
  }
}

.p-fv__textBoxInner {
  width: 100%;
}

.p-fv__copy {
  color: var(--color-white);
  text-align: center;
  text-shadow: 0px 0px 4px var(--color-main);
}

.p-fv__copy.p-fv__copy--ja {
  font-size: 12px;
  font-weight: 900;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-white);

}

@media (min-width: 992px) {
  .p-fv__copy.p-fv__copy--ja {
    padding-bottom: 13px;
    font-size: 24px;
  }
}


.p-fv__copy.p-fv__copy--en {
  font-size: 16px;
  font-weight: 900;
}


@media (min-width: 768px) {
  .p-fv__copy.p-fv__copy--en {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .p-fv__copy.p-fv__copy--en {
    font-size: 64px;
  }
}


/* =================== */
/*  セクション   　　   */
/* =================== */

.p-sectionContaier {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ADDAFE), to(#5DB7FF));
  background: linear-gradient(180deg, #ADDAFE 0%, #5DB7FF 100%);
}

.p-sectionContaier__inner {
  -webkit-filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.25));
  border-radius: 16px;
}

.p-section {
  position: relative;
  margin-top: -65px;
}

@media (min-width: 768px) {
  .p-section {
    margin-top: -80px;
  }
}


.p-section__title {
  background-color: var(--color-white);
  width: 100%;
  padding: 9px 10px 9px;
  border-radius: 12px 12px 0 0;
  z-index: 1;
  max-width: 300px;
  padding-bottom: 0;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .p-section__title {
    max-width: 400px;
  }

}

@media (min-width: 992px) {
  .p-section__title {
    border-radius: 24px 24px 0 0;
    padding: 9px 20px 18px;
    max-width: 704px;
    padding-bottom: 6px;
  }
}


.p-section__title.p-section__title--bgBlue {
  background-color: var(--color-blue2);
}

.p-section__title.p-section__title--bgBlue2 {
  background-color: var(--color-blue3);
}

.p-section__title.p-section__title--bgGray {
  background-color: var(--color-gray3);
}


.p-section__contents {
  padding-top: 24px;
  padding-bottom: 100px;
  background-color: var(--color-white);
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}

@media (min-width: 992px) {
  .p-section__contents {
    max-width: initial;
    padding-bottom: 135px;
  }
}


.p-section__contents.p-section__contents--bgBlue {
  background-color: var(--color-blue2);
}

.p-section__contents.p-section__contents--bgBlue2 {
  background-color: var(--color-blue3);
}

.p-section__contents.p-section__contents--bgGray {
  background-color: var(--color-gray3);
}




/* =================== */
/*  こんなお悩み      */
/* =================== */
.p-worries {
  margin-top: -30px;
}

@media (min-width: 576px) {
  .p-worries {
    margin-top: -60px;
  }

}

@media (min-width: 992px) {
  .p-worries {
    margin-top: -160px;
  }
}

.p-worries__contents {
  border-radius: 8px 8px 0 0;
}

@media (min-width: 992px) {
  .p-worries__contents {
    border-radius: 16px 16px 0 0;
  }
}


.p-worries__title {
  max-width: 300px;
  padding-top: 8px;
  padding-bottom: 11px;
}

@media (min-width: 992px) {
  .p-worries__title {
    max-width: 600px;
  }
}


.p-worries__img {
  max-width: 880px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}


.p-worries__text {
  font-weight: var(--font-weight-bold);
  font-size: 22px;
  text-align: center;
  margin-top: 39px;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 992px) {
  .p-worries__text {
    font-size: 44px;
    margin-top: 39px;
  }
}


.p-worries__text span {
  color: var(--color-main);
}

.p-worries__textLarge {
  font-size: 32px;
}

@media (min-width: 992px) {
  .p-worries__textLarge {
    font-size: 64px;
  }
}

.p-worries__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: 38px;
  margin-top: 37px;
}

@media (min-width: 992px) {
  .p-worries__cards {
    grid-template-columns: repeat(auto-fill, minmax(min(296px, 100%), 1fr));
    gap: 76px;
  }
}

.p-worries__block {
  position: relative;
  padding-top: 43px;
  margin-top: 32px;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 992px) {
  .p-worries__block {
    padding-top: 86px;
    padding-left: 40px;
    padding-right: 40px;
  }
}



.p-worries__block::before {
  content: "";
  width: 120px;
  height: 30px;
  background: url(../images/triangle.png) no-repeat center / contain;
  position: absolute;
  top: 4px;
  left: 50%;
  translate: -50%;
  z-index: 1;
}

@media (min-width: 992px) {
  .p-worries__block::before {
    width: 238px;
    height: 62px;

  }
}

.p-worries__block::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--color-main);
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
}


.p-worries__text2 {
  text-align: center;
}



/* =================== */
/* 選定士とは      */
/* =================== */

.p-about__contents {
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 992px) {
  .p-about__contents {
    padding-right: 80px;
    padding-left: 80px;
  }
}


.p-about__img {
  margin-top: 39px;
  max-width: 330px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .p-about__img {
    max-width: 661px;
  }
}

.p-about__largeText {
  margin-top: 33px;
  text-align: center;
}




/* =================== */
/* 接触領域について      */
/* =================== */

.p-group__contents {
  padding-left: 20px;
  padding-right: 20px;

}

@media (min-width: 992px) {
  .p-group__contents {
    padding-left: 80px;
    padding-right: 80px;
  }
}


.p-group__cardsWrap {
  position: relative;
}


.p-group__cards {
  margin-top: 32px;
  display: grid;
  row-gap: 24px;
}

@media (min-width: 768px) {
  .p-group__cards {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }
}

@media (min-width: 992px) {
  .p-group__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 48px;
  }
}




.p-group__logoBox {
  width: 100px;
  height: 100px;
  background-color: var(--color-white);
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
  border-radius: 50%;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  display: none;
}

@media (min-width: 768px) {
  .p-group__logoBox {
    width: 120px;
    height: 120px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}


@media (min-width: 992px) {
  .p-group__logoBox {
    width: 234px;
    height: 234px;
  }
}

.p-group__img {
  max-width: 80px;
  width: 100%;
  display: block;
}

@media (min-width: 992px) {
  .p-group__img {
    max-width: 170px;
  }
}



/* =================== */
/* サービスの流れについて */
/* =================== */

.p-flow__contents {
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 37px;
  border-radius: 0 0 8px 8px;
}


@media (min-width: 992px) {
  .p-flow__contents {
    padding-right: 156px;
    padding-left: 156px;
    border-radius: 0 0 16px 16px;
    padding-bottom: 75px;
  }
}


.p-flow__list {
  margin-top: 27px;
}

.p-flow__block {
  max-width: 810px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}


.p-flowList {
  counter-reset: number 0;
  display: grid;
  row-gap: 36px;
  text-align: left;
}

.p-flowList__item .c-flowBox__numBox::before {
  counter-increment: number 1;
  content: counter(number) " ";
}

.p-flowList__item {
  position: relative;
}

.p-flowList__item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 12px;
  background: url(../images/triangle2.svg) no-repeat center / contain;
  left: 50%;
  bottom: -24px;
  translate: -50%;
}

.p-flowList__item:last-of-type::before {
  display: none;
}



/* =================== */
/* ご利用料金　　　　　　 */
/* =================== */

.p-price {
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 0;
}

@media (min-width: 992px) {
  .p-price {
    padding-top: 55px;
    padding-bottom: 56px;
  }
}


.p-price__title {
  background-color: transparent;
  border-radius: initial;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;

}

.p-price__contents {
  background-color: transparent;
  padding-bottom: 0;
}



.p-priceBox {
  background-color: var(--color-white);
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  row-gap: 0;
}

.p-priceBox__head {
  background-color: #4f75ff;
  color: var(--color-white);
  border-radius: 8px 8px 0 0;
  border: 2px solid var(--color-white);
  padding: 7px 16px;
  text-align: center;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-priceBox__head.p-priceBox__head--bgPurple {
  background-color: #4c3bcf;
}

.p-priceBox__head.p-priceBox__head--bgBlue {
  background-color: #161d6f;
}

.p-priceBox__title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}


.p-priceBox__body {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  padding: 14px 16px 26px;
  row-gap: 0;
}

.p-priceBox__price {
  font-size: 20px;
  color: var(--color-black);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.p-priceBox__price span {
  font-size: 32px;
}

.p-priceBox__listBox {
  margin-top: 29px;

}

.p-priceBox__subTitle {
  font-size: 16px;
  color: var(--color-gray);
  font-weight: var(--font-weight-normal);
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-gray);
}

.p-priceBox__list {
  margin-top: 15px;
}

.p-priceBox__item {
  color: var(--color-black);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);

}

.p-priceBox__item+.p-priceBox__item {
  margin-top: 22px;
}

.p-priceBox__text {
  color: var(--color-black);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  padding-bottom: 18px;
  margin-top: 18px;
}


.p-price__button {
  margin-top: 29px;
  max-width: 246px;
  margin-right: auto;
  margin-left: auto;
}

.p-price__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(304px, 100%), 1fr));
  gap: 24px;
  margin-top: 35px;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}






/* =================== */
/* よくある質問　　　　 */
/* =================== */

.p-question {
  background-color: var(--color-white);
  padding-top: 40px;
  padding-bottom: 40px;
}

.p-question__contents {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .p-question__contents {
    max-width: 960px;
  }
}



.p-question__block {
  margin-top: 42px;
}

.p-questionBox {
  display: grid;
  row-gap: 8px;
}





/* =================== */
/* 資料請求　　　　 */
/* =================== */

.p-contact {
  position: relative;
  background-color: var(--color-gray3);
  padding-top: 48px;
  padding-bottom: 40px;
  z-index: 0;
}

.p-contact.p-contact--thanks {
  padding-top: 96px;
  margin-top: 96px;
  padding-bottom: 96px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}


.p-contact__thanksText {
  text-align: center;
}


.p-contact::before {
  content: "";
  background: url(../images/bg-layer1.png) no-repeat center / cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-contact__text {
  margin-top: 39px;
}

.p-contact__contents {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .p-contact__contents {
    max-width: 960px;

  }
}


.p-contact__form {
  margin-top: 40px;
  background-color: var(--color-white);
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0 0 0 /0.25);
  box-shadow: 0px 0px 4px 0px rgba(0 0 0 /0.25);
  padding: 8px;
}

.p-contact__formInner {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 14px 20px 15px 20px;
}

@media (min-width: 992px) {
  .p-contact__formInner {
    padding: 27px 66px 30px 78px;
  }
}

.p-contact__formInner.p-contact__formInner--thanks {
  height: 50dvh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__box {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (min-width: 992px) {
  .p-form__box {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.p-form__box+.p-form__box {
  border-top: 1px solid #e0e0e0;
}

.p-form__box.p-form__box--2+.p-form__box.p-form__box--2 {
  border-top: transparent;
  padding-top: 0;
}


.p-form__box:last-child {
  padding-top: 40px;
  padding-bottom: 0;
}


.p-form__boxInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

}

@media (min-width: 992px) {
  .p-form__boxInner {
    display: grid;
    grid-template-columns: 200px 104px auto;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;

  }
}


@media (min-width: 992px) {
  .p-form__boxInner.p-form__boxInner--start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}


.p-form__title {
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  margin-right: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 992px) {
  .p-form__title {
    margin-right: 16px;
    font-size: 20px;
  }
}



.p-form__subTitle {
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  margin-top: 5px;
  white-space: nowrap;
}


@media (min-width: 992px) {
  .p-form__subTitle {
    font-size: 16px;

  }
}



.p-form__title2 {
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  width: 30px;
  text-align: right;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 9px;
}

@media (min-width: 992px) {
  .p-form__title2 {
    width: 45px;
    font-size: 20px;
  }
}



.p-form__required {
  margin-right: 17px;
  height: 100%;
}

@media (min-width: 992px) {
  .p-form__required {
    margin-right: 34px;
    height: auto;
  }
}

.p-form__subBox {
  width: 100%;

  margin-left: auto;

}

@media (min-width: 992px) {
  .p-form__subBox {
    max-width: 459px;
  }
}

.p-form__subText {
  display: block;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  margin-top: 9px;
}

.p-form__input {
  background-color: var(--color-gray3);
  border: 1px solid #bdbdbd;
  height: 30px;
  width: 100%;
  margin-left: auto;
  padding: 8px;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .p-form__input {
    max-width: 460px;
    height: 44px;
    margin-top: 0;

  }
}


.p-form__box textarea {
  field-sizing: content;
  width: 100%;
  min-height: 200px;
}


.p-form__blockWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 11px;
  -moz-column-gap: 11px;
  column-gap: 11px;
  row-gap: 24px;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .p-form__blockWrap {
    margin-top: 0;
  }
}

.p-form__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__block .p-form__input {
  width: 100%;
  margin-top: 0;
}

@media (min-width: 992px) {
  .p-form__block .p-form__input {
    width: 184px;

  }
}

.p-form__checkboxGroup {
  display: grid;
  row-gap: 10px;
  width: 100%;
  margin-left: auto;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .p-form__checkboxGroup {
    margin-top: 0;
    row-gap: 18px;
    max-width: 459px;
  }
}


.p-form__checkboxGroup a {
  font-size: 14px;
  font-weight: var(--font-weight-normal);
  text-decoration: underline;
  margin-top: 12px;
  display: inline-block;
  margin-left: 40px;
}

@media (min-width: 992px) {
  .p-form__checkboxGroup a {
    font-size: 16px;
  }
}

.p-form__checkboxItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-form__check {
  width: 24px;
  height: 24px;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  position: relative;
  background-color: var(--color-gray3);
  margin-right: 16px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-form__check::before {
  width: 16px;
  height: 16px;
  background-color: var(--color-red);
  border: 1px solid #bdbdbd;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: none;
}


.p-form__check:checked::before {
  display: block;
}


.p-form__button {
  width: 100%;
  max-width: 232px;
  margin-left: auto;
  margin-right: auto;
}





/* =================== */
/* フッター　　　　　　　 */
/* =================== */

.p-footer {
  background-color: var(--color-main);
  padding-top: 32px;
  padding-bottom: 32px;
}

.p-footer__inner {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.p-footer__nav {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-white);
}

.p-footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-footer__item {
  border-right: 1px solid var(--color-white);
  padding-right: 16px;
  padding-left: 16px;
}

.p-footer__item:last-child {
  border-right: transparent;
}

.p-footer__item a {
  font-size: 12px;
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  display: block;
}

.p-footer__text {
  font-size: 12px;
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  text-align: center;
  display: block;
  margin-top: 16px;
}