@charset "UTF-8";
/* リキッドレイアウト対応 */
/**
 * 数字にカンマを付けて返す強引な関数
 * ※もっとスマートにしたい
 * @param  {number} $num [元の数字]
 * @return {string} [カンマ付きの数字を文字列として返す]
 */
/* 数値上昇完了後に実行する（本筋とは無関係です） */
@keyframes zoom-in-out {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px), print {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: text;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    -webkit-text-decoration-skip-ink: inherit;
            text-decoration-skip-ink: inherit;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  a:hover {
    opacity: 0.8;
  }
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  background: #fff;
  color: #333;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  body {
    overflow-wrap: break-word;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

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

/* Remove default padding */
ul,
ol {
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-size: 1.6rem;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

picture {
  display: block;
}

.l-body {
  position: relative;
}

#l-wrapper {
  overflow: hidden;
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
}
.l-header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 3rem;
  align-items: center;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 1rem;
    height: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 12rem;
  }
}
.l-header__items {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__items {
    display: none;
  }
}
.l-header__tel {
  margin: 0 3rem 0 0;
}
.l-header__tel-img {
  width: 31rem;
}
.l-header__tel-time {
  color: #fff;
  margin: 1rem -0.3em 0 0;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
body.complete .l-header__tel-time, body.confirm .l-header__tel-time {
  color: #333;
}
.l-header__btn + .l-header__btn {
  margin-left: 1rem;
}

@media screen and (min-width: 768px), print {
  .l-inner {
    max-width: 110rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1rem;
  }
}

.l-footer {
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 2.5rem 0 5rem;
  }
}
@media screen and (min-width: 768px), print {
  .l-footer__box {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__box {
    border-top: 1px solid rgba(51, 51, 51, 0.3);
    padding-top: 2rem;
  }
}
.l-footer__logo, .l-footer__text {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .l-footer__logo::before, .l-footer__text::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(51, 51, 51, 0.3);
  }
}
.l-footer__logo {
  width: 20.9%;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 19.8rem;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
}
.l-footer__logo::before {
  right: 0;
}
.l-footer__add, .l-footer__text {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.8;
}
.l-footer__add {
  width: 37.7%;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__add {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
  }
}
.l-footer__text {
  width: 41.4%;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__text {
    width: 100%;
    padding-left: 0;
  }
}
.l-footer__text::before {
  left: 0;
}

.l-copy {
  text-align: center;
  font-size: 1rem;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
  background-image: url(../images/common/bg_copy01.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .l-copy {
    padding: 1rem 0;
  }
}

.c-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100rem;
  width: 26rem;
  height: 6rem;
  font-size: 1.8rem;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}
.c-btn--reserve a:after, .c-btn--line a:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  animation: shine 6s ease-in-out infinite;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  opacity: 0;
}
@keyframes shine {
  80% {
    transform: translateX(-100%);
    opacity: 0;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
.c-btn--reserve a {
  background: linear-gradient(135deg, #F581A8 14.64%, #F30052 85.36%);
  color: #fff;
}
.c-btn--reserve a:before {
  width: 2rem;
  aspect-ratio: 20/15;
  display: inline-block;
  margin: 0 1rem -0.1rem 0;
  background: url(../images/common/ico_mail01.svg) center/contain no-repeat;
  content: "";
}
.c-btn--line a {
  background: linear-gradient(135deg, #05DA5C 14.64%, #00A042 85.36%);
  color: #fff;
}
.c-btn--line a:before {
  width: 2rem;
  aspect-ratio: 1;
  display: inline-block;
  margin: 0 1rem -0.2rem 0;
  background: url(../images/common/ico_line01.svg) center/contain no-repeat;
  content: "";
}
.c-btn--line a:after {
  animation-delay: 0.1s;
}
.c-btn--tel a {
  background: linear-gradient(135deg, #FF8C21 14.64%, #E04000 85.36%);
  color: #fff;
}
.c-btn--tel a:before {
  width: 2rem;
  aspect-ratio: 1;
  display: inline-block;
  margin: 0 1rem -0.2rem 0;
  background: url(../images/common/ico_tel02.svg) center/contain no-repeat;
  content: "";
}

.c-cap {
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-cap {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }
}

.c-sec__catch {
  text-align: center;
}
.c-sec__catch-sub {
  font-weight: 700;
  color: #222583;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.c-sec__catch-sub--slash {
  display: flex;
  justify-content: center;
}
.c-sec__catch-sub--slash:before, .c-sec__catch-sub--slash:after {
  width: 1px;
  height: 2rem;
  display: inline-block;
  background: #222583;
  position: relative;
  bottom: -0.5rem;
  content: "";
}
.c-sec__catch-sub--slash:before {
  transform: rotate(-35deg);
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-sec__catch-sub--slash:before {
    margin-right: 1rem;
  }
}
.c-sec__catch-sub--slash:after {
  transform: rotate(35deg);
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .c-sec__catch-sub--slash:after {
    margin-left: 1rem;
  }
}
.c-sec__catch-ttl {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-sec__catch-ttl {
    font-size: 2.5rem;
  }
}

.p-hero {
  background: url(../images/common/bg_hero01.png) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-hero {
    background: url(../images/common/bg_hero01_sp.png) center top/cover no-repeat;
  }
}
.p-hero .l-inner {
  position: relative;
  padding: 14rem 0 40rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-hero .l-inner {
    padding: 7rem 2rem 0;
  }
}
.p-hero .l-inner:after {
  width: 130rem;
  aspect-ratio: 2610/1354;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: url(../images/common/pic_hero01.png) center bottom/cover no-repeat;
  transform: translate(-50%, 0%);
  content: "";
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-hero .l-inner:after {
    width: 100vw;
    aspect-ratio: 750/582;
    position: static;
    background: url(../images/common/pic_hero01_sp.png) center 0.5rem/100% auto no-repeat;
    transform: none;
    margin: 1rem -2rem 0;
  }
}
.p-hero__catch {
  font-size: 7rem;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-hero__catch {
    font-size: 5.4rem;
    letter-spacing: 0;
  }
}
.p-hero__catch .is-stroke {
  background: radial-gradient(circle at center, #fff 12%, transparent 2%) top right/0.95em 0.3em repeat-x;
  padding-top: 0.05em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-hero__catch .is-stroke {
    background-size: 0.85em 0.3em;
  }
}
.p-hero__achieve {
  background: linear-gradient(90deg, #fff 75%, rgba(255, 255, 255, 0) 100%);
  padding: 0.3rem 1.5rem 0;
  font-size: 2.4rem;
  width: 55rem;
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-hero__achieve {
    padding: 0.5rem 2rem 0.3rem;
    font-size: 1.6rem;
    width: auto;
    margin: 1.5rem -2rem 0;
  }
}
.p-hero__achieve-total {
  color: #D61518;
  margin: 0 0.5rem;
}
.p-hero__achieve-total span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 135%;
  line-height: 1;
}
.p-hero__achieve-cap {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-hero__achieve-cap {
    font-size: 0.9rem;
    margin: 0 -0.5em;
  }
}
.p-hero__point {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.p-hero__points {
  width: 50rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-hero__points {
    width: auto;
    margin: 2rem 0 0;
  }
}
.p-hero__point + .p-hero__point {
  border-left: 1px solid #fff;
}
.p-hero__point-sub {
  color: #fff;
  font-feature-settings: "palt";
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero__point-sub {
    font-size: 1.1rem;
  }
}
.p-hero__point-ttl {
  color: #FDF001;
  line-height: 1.1;
  font-size: 2.3rem;
  margin: 0.5rem 0 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-hero__point-ttl {
    font-size: 1.6rem;
  }
}
.p-hero__cap {
  background: #222583;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .p-hero__cap {
    text-align: left;
    padding: 1rem;
  }
}

.p-case {
  background: url(../images/common/bg_case01.png) center top/cover no-repeat;
  padding: 8rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-case {
    background: url(../images/common/bg_case01_sp.png) center top/cover no-repeat;
    padding: 5rem 0;
  }
}
.p-case__headline {
  position: relative;
  padding: 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-case__headline {
    padding: 0;
  }
}
.p-case__headline-ttl {
  color: #222583;
  font-weight: 600;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .p-case__headline-ttl {
    font-size: 2.4rem;
    text-align: center;
  }
}
.p-case__headline-ttl--upper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-case__headline-ttl--upper {
    justify-content: center;
  }
}
.p-case__headline-ttl--lower {
  display: inline-block;
  font-weight: 800;
  margin: 1rem 0 0;
}
.p-case__headline-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .p-case__headline-ico {
    color: #fff;
    background: #222583;
    width: 6.6rem;
    aspect-ratio: 1;
    border-radius: 50%;
    font-size: 50%;
    line-height: 1;
    margin: 0 1rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-case__headline-ico {
    width: 100%;
    flex-basis: 100%;
    font-size: 2rem;
  }
  .p-case__headline-ico:before, .p-case__headline-ico:after {
    width: 1px;
    height: 2rem;
    display: inline-block;
    background: #222583;
    position: relative;
    content: "";
  }
  .p-case__headline-ico:before {
    transform: rotate(-35deg);
    margin-right: 2rem;
  }
  .p-case__headline-ico:after {
    transform: rotate(35deg);
    margin-left: 2rem;
  }
}
.p-case__headline-logo {
  width: 20rem;
  display: inline-block;
  margin: 0 0.5rem 0 0;
  position: relative;
  top: -0.8rem;
}
@media screen and (max-width: 767px) {
  .p-case__headline-logo {
    width: 15rem;
    top: -0.3rem;
  }
}
.p-case__headline-label {
  background: #fff;
  line-height: 1;
  display: inline-block;
  padding: 0 0.5rem 0 1rem;
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-case__headline-label {
    font-size: 3.6rem;
    padding: 0 0.5rem 0.5rem 1rem;
  }
}
.p-case__headline-label span {
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 145%;
  display: inline-block;
  position: relative;
  bottom: -0.3rem;
}
@media screen and (max-width: 767px) {
  .p-case__headline-label span {
    font-weight: 700;
  }
}
.p-case__headline-emphasis {
  font-size: 6rem;
  border-bottom: 2px solid #222583;
  line-height: 1.3;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-case__headline-emphasis {
    font-size: 4.6rem;
  }
}
.p-case__headline-cap {
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case__headline-cap {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: 1.2rem;
  }
}
.p-case__headline-amb {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 28rem;
}
@media screen and (max-width: 767px) {
  .p-case__headline-amb {
    width: 30rem;
    position: relative;
    right: auto;
    margin: 1.5rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-case__headline-amb-img {
    aspect-ratio: 300/220;
  }
}
@media screen and (max-width: 767px) {
  .p-case__headline-amb-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}
.p-case__headline-amb-catch {
  background: url(../images/common/bg_balloon01.png) center top/contain no-repeat;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: #222583;
  position: absolute;
  top: 5rem;
  left: -13rem;
  width: 17rem;
  aspect-ratio: 222/135;
  padding: 2rem 0 0;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case__headline-amb-catch {
    font-size: 1.6rem;
    top: 3rem;
    left: 1rem;
    width: 12rem;
    padding: 1rem 0 0;
  }
}
.p-case__headline-amb-desc {
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  top: 4rem;
  right: -6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-case__headline-amb-desc {
    top: 10rem;
    right: auto;
    left: -1rem;
  }
}
.p-case__example {
  background: #fff;
  padding: 8rem 5rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-case__example {
    padding: 8rem 2rem 5rem;
  }
}
.p-case__example-ico {
  width: 9rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #222583;
  background: #fff;
  outline: 1px solid #222583;
  outline-offset: -0.5rem;
  border-radius: 50%;
  position: absolute;
  top: -2rem;
  left: -2rem;
}
@media screen and (max-width: 767px) {
  .p-case__example-ico {
    width: 8rem;
    font-size: 1.6rem;
    left: -1rem;
  }
}
.p-case__example-ttl {
  background: #222583;
  color: #fff;
  text-align: center;
  padding: 0.5rem 2rem;
  min-width: 22rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-case__example-ttl {
    font-size: 2rem;
    min-width: 18rem;
  }
}
.p-case__example-item {
  display: grid;
  grid-template-columns: 17rem auto;
  align-items: center;
  gap: 2rem;
  padding: 0 3rem 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, #EBF1FB 100%);
  border-bottom: 1px solid #222583;
}
.p-case__example-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 3rem;
  padding: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case__example-items {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-case__example-item {
    display: block;
    padding: 0 1rem 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px), print {
  .p-case__example-meta {
    grid-column: 1/3;
    grid-row: 1/2;
    display: grid;
    grid-template-columns: auto 15rem;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case__example-meta {
    margin: 1.5rem 0 0;
  }
}
.p-case__example-meta-name {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-case__example-meta-name {
    font-size: 2.2rem;
    text-align: center;
  }
}
.p-case__example-meta-cate {
  color: #222583;
  padding: 0.3rem 1rem;
  box-sizing: border-box;
  border-radius: 1.5rem;
  font-size: 1.3rem;
  border: 1px solid #222583;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-case__example-meta-cate {
    display: inline-block;
    min-width: 15rem;
    margin: 1rem auto 0;
  }
}
.p-case__example-img {
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-case__example-img {
    width: 20rem;
    margin: 0 auto;
  }
}
.p-case__example-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar {
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-case__example-compar-ttl {
  background: #333;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  padding: 0.5rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-ttl {
    grid-column: 1/4;
  }
}
.p-case__example-compar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-item:not(.p-case__example-compar-item--margin) {
    display: block;
  }
}
@media screen and (min-width: 768px), print {
  .p-case__example-compar-item + .p-case__example-compar-item {
    margin: 0.5rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-item + .p-case__example-compar-item:not(.p-case__example-compar-item + .p-case__example-compar-item--margin) {
    border-left: 1px solid #333;
  }
}
.p-case__example-compar-line {
  min-width: 1.5rem;
  height: 1px;
  margin: 0 1rem;
  background: #333;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-line {
    display: none;
  }
}
.p-case__example-compar-name {
  font-weight: 700;
}
.p-case__example-compar-amount {
  font-weight: 700;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-amount {
    font-size: 1.1rem;
  }
}
.p-case__example-compar-amount-num {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  font-size: 150%;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  bottom: -0.05em;
}
.p-case__example-compar-item--own {
  color: #222583;
}
.p-case__example-compar-item--own .p-case__example-compar-name {
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px), print {
  .p-case__example-compar-item--own .p-case__example-compar-name {
    font-size: 1.8rem;
  }
}
.p-case__example-compar-item--own .p-case__example-compar-amount-num {
  font-size: 190%;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-item--own .p-case__example-compar-amount-num {
    font-size: 170%;
  }
}
.p-case__example-compar-item--margin {
  padding: 2rem 0 0.5rem;
  margin: 0.5rem 0 0;
  position: relative;
  border-bottom: 1px solid #D61518;
  color: #D61518;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-item--margin {
    grid-column: 1/4;
    margin: 1rem 1rem 0;
  }
}
.p-case__example-compar-item--margin:before {
  display: block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 0.8rem;
  aspect-ratio: 24/8;
  border: 0.8rem solid transparent;
  border-top: 0.8rem solid #D61518;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  content: "";
}
.p-case__example-compar-item--margin .p-case__example-compar-name {
  position: relative;
  padding: 0 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-item--margin .p-case__example-compar-name {
    font-size: 1.8rem;
  }
}
.p-case__example-compar-item--margin .p-case__example-compar-name:after {
  vertical-align: middle;
  width: 0.8rem;
  aspect-ratio: 1;
  border-top: 1px solid #D61518;
  border-right: 1px solid #D61518;
  transform: rotate(45deg) translate(0%, -50%);
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
}
.p-case__example-compar-item--margin .p-case__example-compar-amount {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-item--margin .p-case__example-compar-amount {
    display: flex;
    align-items: baseline;
  }
}
.p-case__example-compar-item--margin .p-case__example-compar-amount-num {
  font-size: 188%;
}
@media screen and (max-width: 767px) {
  .p-case__example-compar-item--margin .p-case__example-compar-amount-num {
    font-size: 200%;
  }
}
.p-case__example-compar-item--margin .p-case__example-compar-amount-max {
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}
.p-case__example-cap {
  position: absolute;
  top: 100%;
  right: 0;
  padding: 1rem 0 0;
}
.p-case__other {
  padding: 7rem 0 0;
}
.p-case__other-item {
  background: #fff;
  border-bottom: 1px solid #222583;
  padding: 2rem;
  text-align: center;
  box-sizing: border-box;
}
.p-case__other-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case__other-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-case__other-item {
    padding: 2rem 1rem;
  }
}
.p-case__other-img {
  aspect-ratio: 1/1.1;
  margin: 0 auto;
  width: 90%;
}
.p-case__other-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-case__other-name {
  text-align: center;
  font-weight: 700;
  margin: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case__other-name {
    font-size: 1.3rem;
  }
}
.p-case__other-cate {
  color: #222583;
  padding: 0.3rem 1rem;
  box-sizing: border-box;
  border-radius: 1.5rem;
  font-size: 1.3rem;
  border: 1px solid #222583;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
  min-width: 15rem;
  margin: 0.5rem auto 0;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-case__other-cate {
    font-size: 1rem;
    min-width: 10rem;
    padding: 0.2rem 1rem;
  }
}
.p-case__other-val {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  color: #222583;
  margin: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case__other-val {
    margin: 1rem 0 0;
    gap: 0.8rem;
  }
}
.p-case__other-val-name {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  position: relative;
  padding: 0 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case__other-val-name {
    font-size: 1rem;
    padding: 0 0.8rem 0 0;
  }
}
.p-case__other-val-name:after {
  vertical-align: middle;
  width: 0.8rem;
  aspect-ratio: 1;
  border-top: 1px solid #222583;
  border-right: 1px solid #222583;
  transform: rotate(45deg) translate(0%, -50%);
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .p-case__other-val-name:after {
    width: 0.6rem;
  }
}
.p-case__other-val-amount {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-case__other-val-amount {
    font-size: 1.2rem;
  }
}
.p-case__other-val-amount-num {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  font-size: 175%;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  bottom: -0.05em;
}
@media screen and (max-width: 767px) {
  .p-case__other-val-amount-num {
    font-size: 155%;
  }
}
.p-case__other-cap {
  text-align: right;
  padding: 2rem 0 0;
}
.p-case__brand {
  margin: 5rem 0 0;
  padding: 5rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-case__brand {
    padding: 3rem 2rem;
  }
}
.p-case__brand-item {
  border: 1px solid #E7E7E7;
  aspect-ratio: 160/110;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-case__brand-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case__brand-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0 0;
  }
}
.p-case__brand-item img {
  width: 75%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-case__brand-catch {
  text-align: center;
  font-weight: 700;
  margin: 2rem 0 0;
}
@media screen and (min-width: 768px), print {
  .p-case__brand-catch {
    font-size: 1.8rem;
  }
}
.p-subject {
  background: url(../images/common/bg_subject01.png) center top/cover no-repeat;
  padding: 8rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-subject {
    padding: 5rem 0;
  }
}
.p-subject__headline {
  position: relative;
  padding: 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-subject__headline {
    padding: 0 0 2rem;
  }
}
.p-subject__headline-label {
  background: #AB967A;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 0.3rem 1.5rem;
  position: relative;
}
.p-subject__headline-labels {
  margin: 0 0 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-subject__headline-labels {
    margin: 0 0 1rem;
    gap: 1rem;
    align-items: flex-start;
    width: 23rem;
  }
}
@media screen and (max-width: 767px) {
  .p-subject__headline-label {
    font-size: 1.2rem;
    padding: 0.8rem 0.8rem;
    text-align: center;
    line-height: 1.3;
  }
  .p-subject__headline-label:nth-child(1) {
    margin-left: 8rem;
  }
  .p-subject__headline-label:nth-child(3) {
    margin-top: 1rem;
  }
}
.p-subject__headline-label:before {
  display: block;
  vertical-align: middle;
  box-sizing: border-box;
  width: 1.2rem;
  border-right: 1.2rem solid transparent;
  border-top: 1.2rem solid #AB967A;
  aspect-ratio: 24/8;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translate(-50%, 0%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-subject__headline-label:before {
    width: 1rem;
    border-right: 1rem solid transparent;
    border-top: 1rem solid #AB967A;
  }
}
.p-subject__headline-ttl {
  font-size: 4.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-weight: 700;
  color: #222583;
}
@media screen and (max-width: 767px) {
  .p-subject__headline-ttl {
    font-size: 2.2rem;
    display: block;
  }
}
.p-subject__headline-logo {
  width: 24rem;
  display: inline-block;
  margin: 0 0.5rem 0 -1.5rem;
  position: relative;
  top: -0.8rem;
}
@media screen and (max-width: 767px) {
  .p-subject__headline-logo {
    width: 14rem;
    top: -0.3rem;
    margin: 0.7rem 0 -0.7rem 0;
  }
}
.p-subject__headline-img {
  width: 20rem;
  position: absolute;
  top: -4rem;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-subject__headline-img {
    width: 12rem;
    top: -1rem;
  }
}
.p-subject__box {
  background: #fff;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .p-subject__box {
    padding: 2rem;
  }
}
.p-subject__item {
  background: #EFF4FC;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.p-subject__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-subject__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-subject__item {
    padding: 1.5rem 1rem;
    font-size: 1.4rem;
  }
}
.p-subject__item-emphasis {
  font-size: 122%;
  border-bottom: 1px solid #222583;
  color: #222583;
}
@media screen and (max-width: 767px) {
  .p-subject__item-emphasis {
    font-size: 115%;
  }
}
.p-subject__guarantee {
  border: 1px solid #222583;
  padding: 8rem 4rem 4rem;
  margin: 4rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee {
    padding: 6rem 2rem 3rem;
    margin: 3rem 0 0;
  }
}
.p-subject__guarantee-ttl {
  background: #222583;
  color: #fff;
  text-align: center;
  padding: 0.5rem 2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-ttl {
    font-size: 2rem;
    min-width: 18rem;
  }
}
.p-subject__guarantee-lead {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-lead {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-lead br {
    display: none;
  }
}
.p-subject__guarantee-item {
  border-bottom: 2px dotted #222583;
  padding: 0 0 0 2rem;
  position: relative;
  color: #222583;
  display: flex;
  justify-content: space-between;
  gap: 0 1rem;
}
.p-subject__guarantee-items {
  display: grid;
  grid-template-columns: repeat(2, 36rem);
  gap: 1.5rem 10rem;
  justify-content: center;
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-item {
    border-bottom-width: 1px;
    gap: 0 0.5rem;
    padding: 0 0 0.5rem 2rem;
  }
}
.p-subject__guarantee-item:before {
  width: 1.6rem;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  background: #222583;
  color: #fff;
  position: absolute;
  top: 0.7rem;
  left: 0;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-item:before {
    width: 1.3rem;
    top: 0.5rem;
  }
}
.p-subject__guarantee-item:after {
  vertical-align: middle;
  width: 0.6rem;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-item:after {
    width: 0.4rem;
    top: 1rem;
  }
}
.p-subject__guarantee-name {
  font-weight: 600;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-name {
    font-size: 1.5rem;
  }
}
.p-subject__guarantee-amount {
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-amount {
    font-size: 1.1rem;
  }
}
.p-subject__guarantee-amount-num {
  font-size: 200%;
  line-height: 1;
  font-family: "Heebo", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  bottom: -0.2rem;
}
@media screen and (max-width: 767px) {
  .p-subject__guarantee-amount-num {
    font-size: 180%;
    bottom: 0;
  }
}
.p-subject__sorry {
  background: #FFF2F2;
  padding: 3rem 4rem;
  margin: 4rem 0 0;
  display: grid;
  grid-template-columns: 40rem auto;
  align-items: center;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-subject__sorry {
    padding: 3rem 2rem;
    margin: 3rem 0 0;
    display: block;
  }
}
.p-subject__sorry-catch {
  color: #D61518;
  font-size: 2.4rem;
  font-weight: 600;
  text-decoration: underline;
  padding: 0 0 0 14rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-underline-offset: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-subject__sorry-catch {
    position: relative;
    padding: 0 0 0 8rem;
    font-size: 1.9rem;
    letter-spacing: 0.02em;
  }
}
.p-subject__sorry-catch:before {
  width: 13rem;
  aspect-ratio: 133/169;
  display: block;
  position: absolute;
  left: 4rem;
  bottom: 0;
  background: url(../images/common/pic_subject02.png) center bottom/100% auto no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-subject__sorry-catch:before {
    width: 7rem;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-subject__sorry-list {
    margin: 2rem 0 0;
  }
}
.p-subject__sorry-list li {
  padding-left: 1.5rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-subject__sorry-list li {
    padding-left: 1.4rem;
    font-size: 1.4rem;
  }
}
.p-subject__sorry-list li:before {
  width: 0.8rem;
  aspect-ratio: 1;
  display: block;
  background: #333;
  position: absolute;
  top: 0.8rem;
  left: 0;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-subject__sorry-list li:before {
    width: 0.6rem;
  }
}
.p-subject__sorry-list li + li {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-subject__sorry-list li + li {
    margin-top: 1rem;
  }
}
.p-subject__caution {
  border: 1px solid #D61518;
  padding: 3rem 4rem 3rem 13rem;
  margin: 4rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-subject__caution {
    margin: 3rem 0 0;
    padding: 1.5rem;
  }
}
.p-subject__caution-catch {
  font-size: 2.4rem;
  color: #D61518;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-subject__caution-catch {
    font-size: 1.6rem;
    position: relative;
    padding: 0 0 0 5rem;
    letter-spacing: -0.03em;
  }
}
.p-subject__caution-catch:before {
  width: 7rem;
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 4rem;
  transform: translate(0%, -50%);
  background: url(../images/common/img_subject01.png) center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-subject__caution-catch:before {
    width: 4rem;
    left: 0;
  }
}
.p-subject__caution-lead {
  margin: 1rem 0 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-subject__caution-lead {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-subject__caution-lead--emphasis {
  color: #D61518;
}

.p-cta {
  background: url(../images/common/bg_cta01.png) center top/cover no-repeat;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-cta {
    background: url(../images/common/bg_cta01_sp.png) center top/cover no-repeat;
  }
}
.p-cta .l-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta .l-inner {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-cta__headline {
    display: grid;
    grid-template-columns: 33rem auto;
    gap: 1.5rem 3rem;
  }
}
.p-cta__headline-catch {
  grid-column: 1/2;
  grid-row: 1/3;
}
.p-cta__headline-award {
  grid-column: 2/3;
  grid-row: 1/2;
  border-bottom: 1px solid #fff;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__headline-award {
    margin: 2rem 0 0;
  }
}
.p-cta__headline-achieve {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-cta__headline-achieve {
    margin: 3rem 0 0;
    border: none;
    padding: 0;
    flex-flow: column;
  }
}
.p-cta__headline-achieve.play .p-cta__headline-sum--num {
  -webkit-animation: "zoom-in-out" 0.3s ease 2s;
}
.p-cta__headline-achieve.play .p-cta__headline-sum--num::after {
  content: "0";
  -webkit-animation: "sum_number-roll" 2s ease 0s forwards;
}
.p-cta__headline-achieve.play .p-cta__headline-user--num {
  -webkit-animation: "zoom-in-out" 0.3s ease 2s;
}
.p-cta__headline-achieve.play .p-cta__headline-user--num::after {
  content: "0";
  -webkit-animation: "user_number-roll" 2s ease 0s forwards;
}
.p-cta__headline-text {
  color: #fff;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-cta__headline-text {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__headline-sum {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__headline-user {
    margin-bottom: 1rem;
  }
}
.p-cta__headline-sum, .p-cta__headline-user {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-cta__headline-sum, .p-cta__headline-user {
    align-items: flex-end;
  }
}
.p-cta__headline-sum--ttl, .p-cta__headline-sum--num, .p-cta__headline-sum--small, .p-cta__headline-user--ttl, .p-cta__headline-user--num, .p-cta__headline-user--small {
  color: #fff;
}
.p-cta__headline-sum--ttl, .p-cta__headline-user--ttl {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.p-cta__headline-sum--num, .p-cta__headline-user--num {
  font-size: 4.4rem;
  font-weight: 700;
  margin: 0 0.5rem 0 1rem;
  line-height: 1;
}
.p-cta__headline-sum--small, .p-cta__headline-user--small {
  font-size: 1.4rem;
  font-weight: 500;
}
.p-cta__bnr {
  margin: 3rem 0 0;
}
.p-cta__bnr-ttl {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.p-cta__bnr-ttl:before, .p-cta__bnr-ttl:after {
  background: #fff;
}
.p-cta__box {
  background: #fff;
  padding: 2rem 25rem 3rem 3rem;
  margin: 2rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-cta__box {
    padding: 1.5rem 1.5rem 12.5rem;
    position: relative;
  }
}
.p-cta__box:before {
  width: 38rem;
  aspect-ratio: 560/600;
  display: block;
  position: absolute;
  bottom: -5rem;
  right: -13rem;
  background: url(../images/common/pic_cta01.png) center bottom/100% auto no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-cta__box:before {
    width: 32rem;
    aspect-ratio: 637/225;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 0%);
    background: url(../images/common/pic_cta01_sp.png) center bottom/100% auto no-repeat;
  }
}
.p-cta__box-catch {
  text-align: center;
  color: #D61518;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-cta__box-catch {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
  }
}
.p-cta.timercontent__hide .p-cta__box::before {
  background: url(../images/common/pic_cta01_close.png) center bottom/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-cta.timercontent__hide .p-cta__box::before {
    background: url(../images/common/pic_cta01_sp_close.png) center bottom/100% auto no-repeat;
  }
}
.p-cta__tel {
  border: 2px solid #222583;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-cta__tel {
    padding: 0 3rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__tel {
    padding: 0 2rem 2rem;
  }
}
.p-cta__tel-ttl {
  background: #222583;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem 1rem;
  line-height: 1.3;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  grid-column: 1/3;
  margin: 0 -3rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-ttl {
    padding: 0.8rem 1rem 1rem;
    margin: 0 -2rem 1.5rem;
    font-size: 1.4rem;
  }
}
.p-cta__tel-ttl:before {
  width: 1.8rem;
  aspect-ratio: 1;
  display: inline-block;
  margin: 0 1rem 0 0;
  background: url(../images/common/ico_tel02.svg) center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-cta__tel-ttl:before {
    width: 1.4rem;
  }
}
.p-cta__tel-lead {
  font-weight: 700;
  font-size: 1.8rem;
  position: relative;
  padding: 0 2.8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-lead {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    padding: 0;
    text-align: center;
    padding: 0 0 1rem;
    margin: 0 0 2rem;
  }
}
.p-cta__tel-lead:after {
  vertical-align: middle;
  width: 3.7rem;
  aspect-ratio: 1;
  border-top: 1px solid #222583;
  border-right: 1px solid #222583;
  content: "";
  position: absolute;
  right: 0;
  top: 60%;
  transform: rotate(45deg) translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-cta__tel-lead:after {
    width: 1.2rem;
    top: auto;
    bottom: 0;
    right: 50%;
    border-top: none;
    border-bottom: 1px solid #222583;
    transform: rotate(45deg) translate(50%, -50%);
  }
}
.p-cta__tel-lead--red {
  color: #D61518;
  font-size: 122%;
  margin: 0.3rem 0 0;
  display: inline-block;
}
.p-cta__tel-lead--stroke {
  background: radial-gradient(circle at center, #D61518 17%, transparent 2%) top right/1em 0.3em repeat-x;
  padding-top: 0.1em;
  display: inline-block;
}
.p-cta__tel-time {
  font-size: 1.3rem;
  text-align: right;
  font-weight: 500;
  margin: 0.5rem -0.75em -0.5em 0;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-time {
    font-size: 1.2rem;
    text-align: center;
    margin: 0.5rem -0.75em 0 0;
  }
}
.p-cta__tel-balloon {
  text-align: center;
  border: 0.2rem solid #222583;
  position: absolute;
  padding: 0.5rem 0;
  width: 12.2rem;
  color: #222583;
  background-color: #fff;
  right: 4rem;
  top: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cta__tel-balloon {
    display: none;
  }
}
.p-cta__tel-balloon::after {
  content: "";
  width: 1.2rem;
  height: 0.8rem;
  background: url(../images/common/ico_balloon01.png) center bottom/contain no-repeat;
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-cta__btn {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-cta__btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 3rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__btns {
    margin: 2.5rem 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__btns .p-cta__btn + .p-cta__btn {
    margin-top: 2rem;
  }
}
.p-cta__btn a {
  width: 100%;
  height: 8rem;
  position: relative;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btn a {
    height: 5.5rem;
    font-size: 1.6rem;
  }
}
.p-cta__btn--emphasis {
  font-size: 135%;
}
@media screen and (max-width: 767px) {
  .p-cta__btn--emphasis {
    font-size: 120%;
  }
}
.p-cta__btn-label {
  font-size: 1.3rem;
  font-weight: 900;
  text-align: center;
  padding: 0 1rem;
  border-radius: 1rem;
  background: #fff;
  transform: translate(-50%, -50%);
  display: inline-block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  color: #333;
  z-index: 1;
}
.p-cta__btn--reserve .p-cta__btn-label {
  border: 1px solid #EB6B96;
}
.p-cta__btn--reserve a:before {
  width: 2.3rem;
}
.p-cta__btn--line .p-cta__btn-label {
  border: 1px solid #05DA5C;
}
.p-cta__btn--line a:before {
  width: 2.6rem;
}
.p-cta__btn--tel .p-cta__btn-label {
  border: 1px solid #F47116;
}
@media screen and (max-width: 767px) {
  .p-cta__btn--tel a {
    font-size: 2rem;
    height: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__btn--tel .p-cta__btn--emphasis {
    position: relative;
    bottom: 0.05rem;
  }
}
.p-cta__cap {
  color: #fff;
  line-height: 1.6rem;
  margin: 1rem 0 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-cta__cap {
    margin: 1.5rem 0 0;
  }
}
@media screen and (min-width: 768px), print {
  .p-cta .timercontent {
    display: grid;
    grid-template-columns: 28rem auto;
    align-items: center;
    gap: 0 3rem;
  }
}
.p-cta .timercontent--offhouer {
  grid-column: 1/3;
}

/* 買取累計 数字上昇アニメーション */
@keyframes sum_number-roll {
  0% {
    content: "0";
    opacity: 0;
  }
  1% {
    content: "7,500";
    opacity: 0.01;
  }
  2% {
    content: "15,000";
    opacity: 0.02;
  }
  3% {
    content: "22,500";
    opacity: 0.03;
  }
  4% {
    content: "30,000";
    opacity: 0.04;
  }
  5% {
    content: "37,500";
    opacity: 0.05;
  }
  6% {
    content: "45,000";
    opacity: 0.06;
  }
  7% {
    content: "52,500";
    opacity: 0.07;
  }
  8% {
    content: "60,000";
    opacity: 0.08;
  }
  9% {
    content: "67,500";
    opacity: 0.09;
  }
  10% {
    content: "75,000";
    opacity: 0.1;
  }
  11% {
    content: "82,500";
    opacity: 0.11;
  }
  12% {
    content: "90,000";
    opacity: 0.12;
  }
  13% {
    content: "97,500";
    opacity: 0.13;
  }
  14% {
    content: "105,000";
    opacity: 0.14;
  }
  15% {
    content: "112,500";
    opacity: 0.15;
  }
  16% {
    content: "120,000";
    opacity: 0.16;
  }
  17% {
    content: "127,500";
    opacity: 0.17;
  }
  18% {
    content: "135,000";
    opacity: 0.18;
  }
  19% {
    content: "142,500";
    opacity: 0.19;
  }
  20% {
    content: "150,000";
    opacity: 0.2;
  }
  21% {
    content: "157,500";
    opacity: 0.21;
  }
  22% {
    content: "165,000";
    opacity: 0.22;
  }
  23% {
    content: "172,500";
    opacity: 0.23;
  }
  24% {
    content: "180,000";
    opacity: 0.24;
  }
  25% {
    content: "187,500";
    opacity: 0.25;
  }
  26% {
    content: "195,000";
    opacity: 0.26;
  }
  27% {
    content: "202,500";
    opacity: 0.27;
  }
  28% {
    content: "210,000";
    opacity: 0.28;
  }
  29% {
    content: "217,500";
    opacity: 0.29;
  }
  30% {
    content: "225,000";
    opacity: 0.3;
  }
  31% {
    content: "232,500";
    opacity: 0.31;
  }
  32% {
    content: "240,000";
    opacity: 0.32;
  }
  33% {
    content: "247,500";
    opacity: 0.33;
  }
  34% {
    content: "255,000";
    opacity: 0.34;
  }
  35% {
    content: "262,500";
    opacity: 0.35;
  }
  36% {
    content: "270,000";
    opacity: 0.36;
  }
  37% {
    content: "277,500";
    opacity: 0.37;
  }
  38% {
    content: "285,000";
    opacity: 0.38;
  }
  39% {
    content: "292,500";
    opacity: 0.39;
  }
  40% {
    content: "300,000";
    opacity: 0.4;
  }
  41% {
    content: "307,500";
    opacity: 0.41;
  }
  42% {
    content: "315,000";
    opacity: 0.42;
  }
  43% {
    content: "322,500";
    opacity: 0.43;
  }
  44% {
    content: "330,000";
    opacity: 0.44;
  }
  45% {
    content: "337,500";
    opacity: 0.45;
  }
  46% {
    content: "345,000";
    opacity: 0.46;
  }
  47% {
    content: "352,500";
    opacity: 0.47;
  }
  48% {
    content: "360,000";
    opacity: 0.48;
  }
  49% {
    content: "367,500";
    opacity: 0.49;
  }
  50% {
    content: "375,000";
    opacity: 0.5;
  }
  51% {
    content: "382,500";
    opacity: 0.51;
  }
  52% {
    content: "390,000";
    opacity: 0.52;
  }
  53% {
    content: "397,500";
    opacity: 0.53;
  }
  54% {
    content: "405,000";
    opacity: 0.54;
  }
  55% {
    content: "412,500";
    opacity: 0.55;
  }
  56% {
    content: "420,000";
    opacity: 0.56;
  }
  57% {
    content: "427,500";
    opacity: 0.57;
  }
  58% {
    content: "435,000";
    opacity: 0.58;
  }
  59% {
    content: "442,500";
    opacity: 0.59;
  }
  60% {
    content: "450,000";
    opacity: 0.6;
  }
  61% {
    content: "457,500";
    opacity: 0.61;
  }
  62% {
    content: "465,000";
    opacity: 0.62;
  }
  63% {
    content: "472,500";
    opacity: 0.63;
  }
  64% {
    content: "480,000";
    opacity: 0.64;
  }
  65% {
    content: "487,500";
    opacity: 0.65;
  }
  66% {
    content: "495,000";
    opacity: 0.66;
  }
  67% {
    content: "502,500";
    opacity: 0.67;
  }
  68% {
    content: "510,000";
    opacity: 0.68;
  }
  69% {
    content: "517,500";
    opacity: 0.69;
  }
  70% {
    content: "525,000";
    opacity: 0.7;
  }
  71% {
    content: "532,500";
    opacity: 0.71;
  }
  72% {
    content: "540,000";
    opacity: 0.72;
  }
  73% {
    content: "547,500";
    opacity: 0.73;
  }
  74% {
    content: "555,000";
    opacity: 0.74;
  }
  75% {
    content: "562,500";
    opacity: 0.75;
  }
  76% {
    content: "570,000";
    opacity: 0.76;
  }
  77% {
    content: "577,500";
    opacity: 0.77;
  }
  78% {
    content: "585,000";
    opacity: 0.78;
  }
  79% {
    content: "592,500";
    opacity: 0.79;
  }
  80% {
    content: "600,000";
    opacity: 0.8;
  }
  81% {
    content: "607,500";
    opacity: 0.81;
  }
  82% {
    content: "615,000";
    opacity: 0.82;
  }
  83% {
    content: "622,500";
    opacity: 0.83;
  }
  84% {
    content: "630,000";
    opacity: 0.84;
  }
  85% {
    content: "637,500";
    opacity: 0.85;
  }
  86% {
    content: "645,000";
    opacity: 0.86;
  }
  87% {
    content: "652,500";
    opacity: 0.87;
  }
  88% {
    content: "660,000";
    opacity: 0.88;
  }
  89% {
    content: "667,500";
    opacity: 0.89;
  }
  90% {
    content: "675,000";
    opacity: 0.9;
  }
  91% {
    content: "682,500";
    opacity: 0.91;
  }
  92% {
    content: "690,000";
    opacity: 0.92;
  }
  93% {
    content: "697,500";
    opacity: 0.93;
  }
  94% {
    content: "705,000";
    opacity: 0.94;
  }
  95% {
    content: "712,500";
    opacity: 0.95;
  }
  96% {
    content: "720,000";
    opacity: 0.96;
  }
  97% {
    content: "727,500";
    opacity: 0.97;
  }
  98% {
    content: "735,000";
    opacity: 0.98;
  }
  99% {
    content: "742,500";
    opacity: 0.99;
  }
  100% {
    content: "750,000";
    opacity: 1;
  }
}
/* 年間利用者 数字上昇アニメーション */
@keyframes user_number-roll {
  0% {
    content: "0";
    opacity: 0;
  }
  1% {
    content: "900";
    opacity: 0.01;
  }
  2% {
    content: "1,800";
    opacity: 0.02;
  }
  3% {
    content: "2,700";
    opacity: 0.03;
  }
  4% {
    content: "3,600";
    opacity: 0.04;
  }
  5% {
    content: "4,500";
    opacity: 0.05;
  }
  6% {
    content: "5,400";
    opacity: 0.06;
  }
  7% {
    content: "6,300";
    opacity: 0.07;
  }
  8% {
    content: "7,200";
    opacity: 0.08;
  }
  9% {
    content: "8,100";
    opacity: 0.09;
  }
  10% {
    content: "9,000";
    opacity: 0.1;
  }
  11% {
    content: "9,900";
    opacity: 0.11;
  }
  12% {
    content: "10,800";
    opacity: 0.12;
  }
  13% {
    content: "11,700";
    opacity: 0.13;
  }
  14% {
    content: "12,600";
    opacity: 0.14;
  }
  15% {
    content: "13,500";
    opacity: 0.15;
  }
  16% {
    content: "14,400";
    opacity: 0.16;
  }
  17% {
    content: "15,300";
    opacity: 0.17;
  }
  18% {
    content: "16,200";
    opacity: 0.18;
  }
  19% {
    content: "17,100";
    opacity: 0.19;
  }
  20% {
    content: "18,000";
    opacity: 0.2;
  }
  21% {
    content: "18,900";
    opacity: 0.21;
  }
  22% {
    content: "19,800";
    opacity: 0.22;
  }
  23% {
    content: "20,700";
    opacity: 0.23;
  }
  24% {
    content: "21,600";
    opacity: 0.24;
  }
  25% {
    content: "22,500";
    opacity: 0.25;
  }
  26% {
    content: "23,400";
    opacity: 0.26;
  }
  27% {
    content: "24,300";
    opacity: 0.27;
  }
  28% {
    content: "25,200";
    opacity: 0.28;
  }
  29% {
    content: "26,100";
    opacity: 0.29;
  }
  30% {
    content: "27,000";
    opacity: 0.3;
  }
  31% {
    content: "27,900";
    opacity: 0.31;
  }
  32% {
    content: "28,800";
    opacity: 0.32;
  }
  33% {
    content: "29,700";
    opacity: 0.33;
  }
  34% {
    content: "30,600";
    opacity: 0.34;
  }
  35% {
    content: "31,500";
    opacity: 0.35;
  }
  36% {
    content: "32,400";
    opacity: 0.36;
  }
  37% {
    content: "33,300";
    opacity: 0.37;
  }
  38% {
    content: "34,200";
    opacity: 0.38;
  }
  39% {
    content: "35,100";
    opacity: 0.39;
  }
  40% {
    content: "36,000";
    opacity: 0.4;
  }
  41% {
    content: "36,900";
    opacity: 0.41;
  }
  42% {
    content: "37,800";
    opacity: 0.42;
  }
  43% {
    content: "38,700";
    opacity: 0.43;
  }
  44% {
    content: "39,600";
    opacity: 0.44;
  }
  45% {
    content: "40,500";
    opacity: 0.45;
  }
  46% {
    content: "41,400";
    opacity: 0.46;
  }
  47% {
    content: "42,300";
    opacity: 0.47;
  }
  48% {
    content: "43,200";
    opacity: 0.48;
  }
  49% {
    content: "44,100";
    opacity: 0.49;
  }
  50% {
    content: "45,000";
    opacity: 0.5;
  }
  51% {
    content: "45,900";
    opacity: 0.51;
  }
  52% {
    content: "46,800";
    opacity: 0.52;
  }
  53% {
    content: "47,700";
    opacity: 0.53;
  }
  54% {
    content: "48,600";
    opacity: 0.54;
  }
  55% {
    content: "49,500";
    opacity: 0.55;
  }
  56% {
    content: "50,400";
    opacity: 0.56;
  }
  57% {
    content: "51,300";
    opacity: 0.57;
  }
  58% {
    content: "52,200";
    opacity: 0.58;
  }
  59% {
    content: "53,100";
    opacity: 0.59;
  }
  60% {
    content: "54,000";
    opacity: 0.6;
  }
  61% {
    content: "54,900";
    opacity: 0.61;
  }
  62% {
    content: "55,800";
    opacity: 0.62;
  }
  63% {
    content: "56,700";
    opacity: 0.63;
  }
  64% {
    content: "57,600";
    opacity: 0.64;
  }
  65% {
    content: "58,500";
    opacity: 0.65;
  }
  66% {
    content: "59,400";
    opacity: 0.66;
  }
  67% {
    content: "60,300";
    opacity: 0.67;
  }
  68% {
    content: "61,200";
    opacity: 0.68;
  }
  69% {
    content: "62,100";
    opacity: 0.69;
  }
  70% {
    content: "63,000";
    opacity: 0.7;
  }
  71% {
    content: "63,900";
    opacity: 0.71;
  }
  72% {
    content: "64,800";
    opacity: 0.72;
  }
  73% {
    content: "65,700";
    opacity: 0.73;
  }
  74% {
    content: "66,600";
    opacity: 0.74;
  }
  75% {
    content: "67,500";
    opacity: 0.75;
  }
  76% {
    content: "68,400";
    opacity: 0.76;
  }
  77% {
    content: "69,300";
    opacity: 0.77;
  }
  78% {
    content: "70,200";
    opacity: 0.78;
  }
  79% {
    content: "71,100";
    opacity: 0.79;
  }
  80% {
    content: "72,000";
    opacity: 0.8;
  }
  81% {
    content: "72,900";
    opacity: 0.81;
  }
  82% {
    content: "73,800";
    opacity: 0.82;
  }
  83% {
    content: "74,700";
    opacity: 0.83;
  }
  84% {
    content: "75,600";
    opacity: 0.84;
  }
  85% {
    content: "76,500";
    opacity: 0.85;
  }
  86% {
    content: "77,400";
    opacity: 0.86;
  }
  87% {
    content: "78,300";
    opacity: 0.87;
  }
  88% {
    content: "79,200";
    opacity: 0.88;
  }
  89% {
    content: "80,100";
    opacity: 0.89;
  }
  90% {
    content: "81,000";
    opacity: 0.9;
  }
  91% {
    content: "81,900";
    opacity: 0.91;
  }
  92% {
    content: "82,800";
    opacity: 0.92;
  }
  93% {
    content: "83,700";
    opacity: 0.93;
  }
  94% {
    content: "84,600";
    opacity: 0.94;
  }
  95% {
    content: "85,500";
    opacity: 0.95;
  }
  96% {
    content: "86,400";
    opacity: 0.96;
  }
  97% {
    content: "87,300";
    opacity: 0.97;
  }
  98% {
    content: "88,200";
    opacity: 0.98;
  }
  99% {
    content: "89,100";
    opacity: 0.99;
  }
  100% {
    content: "90,000";
    opacity: 1;
  }
}
.p-reason {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-reason {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason .l-inner {
    padding: 0 2rem;
  }
}
.p-reason__sub {
  text-align: center;
}
.p-reason .p-reason__ttl {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .p-reason .p-reason__ttl {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason .p-reason__ttl {
    line-height: 1.2;
  }
}
.p-reason .p-reason__ttl-inner {
  color: #222583;
}
@media screen and (max-width: 767px) {
  .p-reason .p-reason__ttl-inner {
    display: block;
  }
}
.p-reason .p-reason__ttl-num {
  font-size: 5.4rem;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-reason .p-reason__ttl-num {
    font-size: 5.2rem;
    position: relative;
    bottom: -0.22rem;
  }
}
.p-reason__item {
  display: grid;
}
.p-reason__items {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-reason__items {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-reason__item {
    grid-template-columns: auto 50.4rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-reason__item:nth-child(2) {
    grid-template-columns: 50.4rem auto;
  }
}
.p-reason__item + * {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item + * {
    margin-top: 5rem;
  }
}
.p-reason__item-img {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__item-img {
    margin-top: 3rem;
  }
}
.p-reason__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-reason__item-img figcaption {
  color: #fff;
  font-weight: 700;
  background-color: #222583;
  display: inline-flex;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 5rem;
  align-items: center;
  padding: 0 1.5rem 0 1rem;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (min-width: 768px), print {
  .p-reason__item-img figcaption {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__item-img figcaption {
    height: 4rem;
  }
}
.p-reason__item-img figcaption::before, .p-reason__item-img figcaption::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  display: block;
}
.p-reason__item-img figcaption::before {
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 5rem 2rem;
  border-color: transparent transparent #222583 transparent;
  left: -1.9rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item-img figcaption::before {
    border-width: 0 0 4rem 2rem;
  }
}
.p-reason__item-img figcaption::after {
  width: calc(25rem + 50vw - 13.6vw);
  height: 10.5rem;
  background: #DBE6F7;
  clip-path: polygon(4.5rem 0%, 100% 0%, 100% 100%, 0% 100%);
  bottom: -5.5rem;
  z-index: -1;
}
@media screen and (min-width: 768px), print {
  .p-reason__item-img figcaption::after {
    left: -4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__item-img figcaption::after {
    width: 28rem;
    height: 10rem;
    right: -2rem;
    bottom: -3rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-reason__item:nth-child(2) .p-reason__item-img {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.p-reason__item:nth-child(2) .p-reason__item-img figcaption {
  left: 0;
  right: auto;
}
.p-reason__item:nth-child(2) .p-reason__item-img figcaption::before {
  left: auto;
  right: -1.9rem;
  transform: scale(-1, 1);
}
.p-reason__item:nth-child(2) .p-reason__item-img figcaption::after {
  left: auto;
  right: -4.5rem;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(2) .p-reason__item-img figcaption::after {
    left: -2rem;
    right: auto;
  }
}
@media screen and (min-width: 768px), print {
  .p-reason:nth-child(2) .p-reason-body {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.p-reason__headline-inner {
  display: flex;
  align-items: center;
}
.p-reason__headline-ja {
  font-size: 1.4rem;
  color: #222583;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-reason__headline-ja {
    background-color: #222583;
    color: #fff;
    font-size: 1.2rem;
    height: 2.2rem;
    padding: 0 0.75rem 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__headline-ja::before {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    display: block;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.2rem 0 0 1.2rem;
    border-color: transparent transparent transparent #222583;
    right: -1.1rem;
    transform: translate(0, -50%);
    top: 50%;
  }
}
.p-reason__headline-en {
  color: #222583;
  font-size: 3.4rem;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  margin-left: 1rem;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-reason__headline-en {
    margin-left: 2rem;
  }
}
.p-reason__headline-ttl {
  font-size: 3.2rem;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  color: #222583;
  margin-top: 1rem;
  padding: 2rem 7rem 0 0;
  border-top: 1px solid #222583;
}
@media screen and (max-width: 767px) {
  .p-reason__headline-ttl {
    font-size: 2.4rem;
    padding: 1rem 0 0 0;
    margin-top: 0.5rem;
    line-height: 1.3;
  }
}
.p-reason__headline-sub {
  font-weight: 700;
  font-size: 2rem;
  margin: 1rem 7rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-reason__headline-sub {
    margin-right: 0;
    font-size: 1.8rem;
  }
}
.p-reason__headline-text {
  margin: 1rem 7rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-reason__headline-text {
    margin-right: 0;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px), print {
  .p-reason__item:nth-child(2) .p-reason__headline-inner {
    padding: 0 0 0 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(2) .p-reason__headline-inner {
    margin: 0 0 0 auto;
    justify-content: flex-end;
  }
}
.p-reason__item:nth-child(2) .p-reason__headline-ttl {
  margin: 0;
  padding: 2rem 0 0 7rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(2) .p-reason__headline-ttl {
    padding-left: 0;
  }
}
.p-reason__item:nth-child(2) .p-reason__headline-sub {
  margin: 1rem 0 0 7rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(2) .p-reason__headline-sub {
    margin-left: 0;
  }
}
.p-reason__item:nth-child(2) .p-reason__headline-text {
  margin: 1rem 0 0 7rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item:nth-child(2) .p-reason__headline-text {
    margin-left: 0;
  }
}
.p-reason__user {
  border: 2px solid #222583;
  padding-bottom: 0;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-reason__user {
    margin: 7rem -1rem 0;
  }
}
.p-reason__user-headline {
  padding: 4rem 0 0 0;
  margin: 0 5rem 0 3rem;
  place-content: center;
  display: grid;
  grid-template-columns: 30.2rem auto;
  grid-gap: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline {
    grid-template-columns: auto 16.6rem;
    padding-top: 2rem;
    margin: 0 1rem 0 2rem;
    grid-gap: 0 0.5rem;
  }
}
.p-reason__user-headline-icon {
  grid-row: 1/3;
  grid-column: 1/2;
  margin-top: -8rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline-icon {
    grid-row: 1/2;
    grid-column: 2/3;
    margin-top: -3rem;
  }
}
.p-reason__user-headline-icon::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  width: 75%;
  height: 100%;
  background-color: #fff;
  transform: translate(-50%, 0);
  left: 50%;
  top: 0;
  z-index: -1;
}
.p-reason__user-headline-ttl {
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px), print {
  .p-reason__user-headline-ttl {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline-ttl {
    line-height: 1.2;
    font-size: 1.4rem;
  }
}
.p-reason__user-headline-ttl-inner {
  color: #222583;
  font-size: 3rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline-ttl-inner {
    font-size: 1.8rem;
  }
}
.p-reason__user-headline-ttl-percent {
  font-size: 4rem;
  color: #222583;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline-ttl-percent {
    margin-right: 0.5rem;
  }
}
.p-reason__user-headline-ttl-age {
  font-size: 4rem;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline-ttl-age {
    font-size: 2.4rem;
  }
}
.p-reason__user-headline-ttl-num {
  font-size: 7rem;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline-ttl-num {
    font-size: 5.5rem;
    position: relative;
    bottom: -0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline-ttl-rec {
    font-size: 2.4rem;
    color: #222583;
    letter-spacing: -0.01em;
  }
}
.p-reason__user-headline-text {
  grid-row: 2/3;
  grid-column: 2/3;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-reason__user-headline-text {
    display: none;
  }
}
.p-reason__user-imgs {
  margin: 3rem 4rem 0 4rem;
}
@media screen and (min-width: 768px), print {
  .p-reason__user-imgs {
    grid-row: 2/3;
    grid-column: 1/3;
    display: grid;
    grid-template-columns: 53.4rem auto;
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__user-imgs {
    margin: 2rem 1rem 0 1rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-reason__user-img:nth-child(1) {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__user-img:nth-child(1) {
    margin: 0 2rem 0;
  }
}
.p-reason__user-img:last-child {
  margin: 0 -7rem -2rem 0;
}
@media screen and (max-width: 767px) {
  .p-reason__user-img:last-child {
    margin: 0;
    position: relative;
    bottom: -2rem;
  }
}
.p-reason__message {
  position: relative;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-reason__message {
    margin-top: 5rem;
  }
}
.p-reason__message::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 54rem;
  background-image: url(../../assets/images/common/bg_reason01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  bottom: 0;
  z-index: -1;
  transform: translate(-50%, 0);
  left: 50%;
}
@media screen and (min-width: 768px), print {
  .p-reason__message-inner {
    margin: 0 5rem;
    display: grid;
    grid-template-columns: 53rem auto;
    grid-gap: 0;
    align-items: center;
  }
}
@media screen and (min-width: 768px), print {
  .p-reason__message-ttl {
    display: flex;
    align-items: center;
  }
}
.p-reason__message-ttl dt {
  color: #222583;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-reason__message-ttl dt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
  }
}
.p-reason__message-ttl dt span {
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-reason__message-ttl dt span {
    font-size: 2.4rem;
  }
}
.p-reason__message-ttl dd {
  font-weight: 700;
  font-size: 3rem;
  color: #222583;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-reason__message-ttl dd {
    font-size: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.p-reason__message-ttl dd span {
  font-size: 8rem;
  font-family: "Heebo", sans-serif;
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-reason__message-ttl dd span {
    font-size: 6.8rem;
  }
}
.p-reason__message-ttl dd span.play {
  -webkit-animation: "zoom-in-out" 0.3s ease 2s;
}
.p-reason__message-ttl dd span.play::after {
  content: "0";
  -webkit-animation: "number-roll" 2s ease 0s forwards;
}
.p-reason__message-note {
  border-top: 1px solid #222583;
  padding-top: 1rem;
  font-size: 1rem;
  text-align: right;
  margin-top: 2rem;
  color: #222583;
}
@media screen and (max-width: 767px) {
  .p-reason__message-note {
    margin: 0.5rem 3rem 0 3rem;
  }
}
.p-reason__message-sub {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-reason__message-sub {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 1rem;
  }
}
.p-reason__message-sub dt {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-reason__message-sub dt {
    justify-content: center;
  }
}
.p-reason__message-sub img {
  width: 16.4rem;
}
@media screen and (max-width: 767px) {
  .p-reason__message-sub img {
    width: 15rem;
  }
}
.p-reason__message-logo {
  margin: 0 1rem;
}
.p-reason__message-img {
  margin: 0 0 -3rem -5rem;
}
@media screen and (max-width: 767px) {
  .p-reason__message-img {
    margin: 1rem 2rem -2rem;
  }
}

/* 数字上昇アニメーション */
@keyframes number-roll {
  0% {
    content: "0";
    opacity: 0;
  }
  1% {
    content: "900";
    opacity: 0.01;
  }
  2% {
    content: "1,800";
    opacity: 0.02;
  }
  3% {
    content: "2,700";
    opacity: 0.03;
  }
  4% {
    content: "3,600";
    opacity: 0.04;
  }
  5% {
    content: "4,500";
    opacity: 0.05;
  }
  6% {
    content: "5,400";
    opacity: 0.06;
  }
  7% {
    content: "6,300";
    opacity: 0.07;
  }
  8% {
    content: "7,200";
    opacity: 0.08;
  }
  9% {
    content: "8,100";
    opacity: 0.09;
  }
  10% {
    content: "9,000";
    opacity: 0.1;
  }
  11% {
    content: "9,900";
    opacity: 0.11;
  }
  12% {
    content: "10,800";
    opacity: 0.12;
  }
  13% {
    content: "11,700";
    opacity: 0.13;
  }
  14% {
    content: "12,600";
    opacity: 0.14;
  }
  15% {
    content: "13,500";
    opacity: 0.15;
  }
  16% {
    content: "14,400";
    opacity: 0.16;
  }
  17% {
    content: "15,300";
    opacity: 0.17;
  }
  18% {
    content: "16,200";
    opacity: 0.18;
  }
  19% {
    content: "17,100";
    opacity: 0.19;
  }
  20% {
    content: "18,000";
    opacity: 0.2;
  }
  21% {
    content: "18,900";
    opacity: 0.21;
  }
  22% {
    content: "19,800";
    opacity: 0.22;
  }
  23% {
    content: "20,700";
    opacity: 0.23;
  }
  24% {
    content: "21,600";
    opacity: 0.24;
  }
  25% {
    content: "22,500";
    opacity: 0.25;
  }
  26% {
    content: "23,400";
    opacity: 0.26;
  }
  27% {
    content: "24,300";
    opacity: 0.27;
  }
  28% {
    content: "25,200";
    opacity: 0.28;
  }
  29% {
    content: "26,100";
    opacity: 0.29;
  }
  30% {
    content: "27,000";
    opacity: 0.3;
  }
  31% {
    content: "27,900";
    opacity: 0.31;
  }
  32% {
    content: "28,800";
    opacity: 0.32;
  }
  33% {
    content: "29,700";
    opacity: 0.33;
  }
  34% {
    content: "30,600";
    opacity: 0.34;
  }
  35% {
    content: "31,500";
    opacity: 0.35;
  }
  36% {
    content: "32,400";
    opacity: 0.36;
  }
  37% {
    content: "33,300";
    opacity: 0.37;
  }
  38% {
    content: "34,200";
    opacity: 0.38;
  }
  39% {
    content: "35,100";
    opacity: 0.39;
  }
  40% {
    content: "36,000";
    opacity: 0.4;
  }
  41% {
    content: "36,900";
    opacity: 0.41;
  }
  42% {
    content: "37,800";
    opacity: 0.42;
  }
  43% {
    content: "38,700";
    opacity: 0.43;
  }
  44% {
    content: "39,600";
    opacity: 0.44;
  }
  45% {
    content: "40,500";
    opacity: 0.45;
  }
  46% {
    content: "41,400";
    opacity: 0.46;
  }
  47% {
    content: "42,300";
    opacity: 0.47;
  }
  48% {
    content: "43,200";
    opacity: 0.48;
  }
  49% {
    content: "44,100";
    opacity: 0.49;
  }
  50% {
    content: "45,000";
    opacity: 0.5;
  }
  51% {
    content: "45,900";
    opacity: 0.51;
  }
  52% {
    content: "46,800";
    opacity: 0.52;
  }
  53% {
    content: "47,700";
    opacity: 0.53;
  }
  54% {
    content: "48,600";
    opacity: 0.54;
  }
  55% {
    content: "49,500";
    opacity: 0.55;
  }
  56% {
    content: "50,400";
    opacity: 0.56;
  }
  57% {
    content: "51,300";
    opacity: 0.57;
  }
  58% {
    content: "52,200";
    opacity: 0.58;
  }
  59% {
    content: "53,100";
    opacity: 0.59;
  }
  60% {
    content: "54,000";
    opacity: 0.6;
  }
  61% {
    content: "54,900";
    opacity: 0.61;
  }
  62% {
    content: "55,800";
    opacity: 0.62;
  }
  63% {
    content: "56,700";
    opacity: 0.63;
  }
  64% {
    content: "57,600";
    opacity: 0.64;
  }
  65% {
    content: "58,500";
    opacity: 0.65;
  }
  66% {
    content: "59,400";
    opacity: 0.66;
  }
  67% {
    content: "60,300";
    opacity: 0.67;
  }
  68% {
    content: "61,200";
    opacity: 0.68;
  }
  69% {
    content: "62,100";
    opacity: 0.69;
  }
  70% {
    content: "63,000";
    opacity: 0.7;
  }
  71% {
    content: "63,900";
    opacity: 0.71;
  }
  72% {
    content: "64,800";
    opacity: 0.72;
  }
  73% {
    content: "65,700";
    opacity: 0.73;
  }
  74% {
    content: "66,600";
    opacity: 0.74;
  }
  75% {
    content: "67,500";
    opacity: 0.75;
  }
  76% {
    content: "68,400";
    opacity: 0.76;
  }
  77% {
    content: "69,300";
    opacity: 0.77;
  }
  78% {
    content: "70,200";
    opacity: 0.78;
  }
  79% {
    content: "71,100";
    opacity: 0.79;
  }
  80% {
    content: "72,000";
    opacity: 0.8;
  }
  81% {
    content: "72,900";
    opacity: 0.81;
  }
  82% {
    content: "73,800";
    opacity: 0.82;
  }
  83% {
    content: "74,700";
    opacity: 0.83;
  }
  84% {
    content: "75,600";
    opacity: 0.84;
  }
  85% {
    content: "76,500";
    opacity: 0.85;
  }
  86% {
    content: "77,400";
    opacity: 0.86;
  }
  87% {
    content: "78,300";
    opacity: 0.87;
  }
  88% {
    content: "79,200";
    opacity: 0.88;
  }
  89% {
    content: "80,100";
    opacity: 0.89;
  }
  90% {
    content: "81,000";
    opacity: 0.9;
  }
  91% {
    content: "81,900";
    opacity: 0.91;
  }
  92% {
    content: "82,800";
    opacity: 0.92;
  }
  93% {
    content: "83,700";
    opacity: 0.93;
  }
  94% {
    content: "84,600";
    opacity: 0.94;
  }
  95% {
    content: "85,500";
    opacity: 0.95;
  }
  96% {
    content: "86,400";
    opacity: 0.96;
  }
  97% {
    content: "87,300";
    opacity: 0.97;
  }
  98% {
    content: "88,200";
    opacity: 0.98;
  }
  99% {
    content: "89,100";
    opacity: 0.99;
  }
  100% {
    content: "90,000";
    opacity: 1;
  }
}
.p-total {
  background-color: #E7E9F2;
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  .p-total {
    padding: 5rem 0;
  }
}
.p-total__sub {
  text-align: center;
}
.p-total__ttl {
  text-align: center;
  color: #222583;
}
.p-total__lead {
  text-align: center;
  font-weight: 500;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-total__lead {
    font-size: 1.4rem;
  }
}
.p-total__item {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.p-total__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.p-total__items dt {
  color: #D61518;
}
.p-total__items dt span {
  font-size: 3.7rem;
  font-family: "Heebo", sans-serif;
  position: relative;
}
.p-total__items dt span::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../../../assets/images/common/icon_total01.png);
  width: 1.2rem;
  height: 1.2rem;
  top: 0.2rem;
  right: -0.5rem;
}
@media screen and (max-width: 767px) {
  .p-total__item {
    font-size: 1.8rem;
  }
}
.p-total__img {
  background-color: #fff;
  position: relative;
}
.p-total__imgs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-total__imgs {
    grid-template-rows: 18rem 18rem 18rem;
  }
}
@media screen and (max-width: 767px) {
  .p-total__imgs {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    margin-top: 2rem;
  }
}
.p-total__img-inner {
  display: block;
  width: 16rem;
  height: 13rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-total__img-inner {
    width: 8rem;
    height: 10rem;
    margin: 0 auto;
  }
}
.p-total__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-total__img img {
    margin-top: -2rem;
  }
}
.p-total__img figcaption {
  text-align: center;
  font-weight: 700;
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 2rem;
  letter-spacing: -0.03em;
  display: block;
  width: 100%;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-total__img figcaption {
    font-size: 1.1rem;
    bottom: 1rem;
  }
}

.p-flow {
  padding: 12rem 0 8rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 5rem 0;
  }
}
.p-flow__sub {
  text-align: center;
}
.p-flow .p-flow__ttl {
  font-size: 4rem;
  text-align: center;
}
.p-flow__item {
  position: relative;
}
.p-flow__items {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__items {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-flow__item {
    display: grid;
    grid-template-columns: 13rem auto;
    grid-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    border-bottom: 2px solid #222583;
  }
}
.p-flow__item + * {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item + * {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__item::after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.2rem 1.4rem 0 1.4rem;
    border-color: #222583 transparent transparent transparent;
    transform: translate(-50%, 0);
    left: 50%;
    bottom: -1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__item:last-child::after {
    display: none;
  }
}
.p-flow__item-body {
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 30rem;
  grid-gap: 2rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-flow__item-body {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__item-headline {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.p-flow__item-num {
  background-color: #222583;
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: "Heebo", sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__item-num {
    flex-direction: row;
    font-size: 1.8rem;
    padding: 1rem 0;
  }
}
.p-flow__item-num::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 1.4rem 0 1.4rem;
  border-color: #222583 transparent transparent transparent;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: -1rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-num::after {
    display: none;
  }
}
.p-flow__item-num span {
  font-size: 6rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-flow__item-num span {
    width: auto;
    font-size: 1.8rem;
  }
}
.p-flow__item:last-child .p-flow__item-num::after {
  display: none;
}
.p-flow__item-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: #222583;
}
@media screen and (max-width: 767px) {
  .p-flow__item-ttl {
    font-size: 1.8rem;
    text-align: center;
  }
}
.p-flow__item-text {
  line-height: 1.7;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-text {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}
.p-flow__item-text span {
  color: #D61518;
}
@media screen and (max-width: 767px) {
  .p-flow__item-img {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.p-flow__preparation {
  background-color: #fff;
  padding: 5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation {
    padding: 2rem;
  }
}
.p-flow__preparation-headline {
  display: grid;
  grid-template-columns: 10.8rem auto;
  grid-gap: 0 3rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-headline {
    grid-gap: 0 1rem;
  }
}
.p-flow__preparation-ttl {
  font-size: 2.4rem;
  text-align: center;
  grid-row: 1/2;
  grid-column: 1/3;
}
.p-flow__preparation-icon {
  grid-row: 2/3;
  grid-column: 1/2;
  margin-top: 2rem;
}
.p-flow__preparation-sub {
  font-size: 3.2rem;
  color: #222583;
  font-weight: 700;
  grid-row: 2/3;
  grid-column: 2/3;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-sub {
    font-size: 1.8rem;
  }
}
.p-flow__preparation-lead {
  font-weight: 500;
  margin-top: 3rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .p-flow__preparation-lead {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-lead {
    line-height: 1.6;
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}
.p-flow__preparation-id {
  margin-top: 3rem;
  border: 1px solid #222583;
  padding: 0 0 3rem;
}
@media screen and (min-width: 768px), print {
  .p-flow__preparation-id {
    display: grid;
    grid-gap: 2rem 3rem;
    grid-template-columns: 55rem auto;
  }
}
.p-flow__preparation-id-ttl {
  background-color: #222583;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 2.4rem;
  padding: 1rem 0;
  grid-row: 1/2;
  grid-column: 1/3;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-id-ttl {
    font-size: 1.8rem;
  }
}
.p-flow__preparation-id-text {
  font-weight: 500;
  margin: 0 5rem;
  grid-row: 2/3;
  grid-column: 1/3;
}
@media screen and (min-width: 768px), print {
  .p-flow__preparation-id-text {
    text-align: center;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-id-text {
    font-size: 1.4rem;
    margin: 0 1.5rem;
    padding: 2rem 0;
  }
}
.p-flow__preparation-id-img {
  margin-left: 7rem;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-id-img {
    margin: 0 1.5rem;
  }
}
.p-flow__preparation-id-list {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-id-list {
    margin: 2rem 1.5rem 0 1.5rem;
    grid-gap: 0 0.5rem;
  }
}
.p-flow__preparation-id-list li {
  min-width: 8em;
  display: flex;
  font-size: 1.4rem;
  flex-direction: column;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-id-list li {
    padding-left: 1.5rem;
    font-size: 1.3rem;
  }
}
.p-flow__preparation-id-list li::before {
  content: "";
  display: block;
  margin: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../../assets/images/common/icon_arrow01.png);
  width: 1.6rem;
  aspect-ratio: 1;
  position: absolute;
  left: 0;
  top: 0.1rem;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-id-list li::before {
    width: 1.2rem;
    top: 0.4rem;
  }
}
.p-flow__preparation-id-list li span {
  font-size: 1.2rem;
  width: 100%;
  margin: 0 -0.6em;
}
@media screen and (max-width: 767px) {
  .p-flow__preparation-id-list li span {
    font-size: 0.9rem;
    letter-spacing: -0.03em;
  }
}

.p-area {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-area {
    margin: 5rem 0;
  }
}
.p-area__ttl {
  text-align: center;
}
.p-area__sub {
  text-align: center;
}
.p-area__img {
  margin-top: 7rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .p-area__img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-area__img {
    margin-top: 1rem;
  }
}
.p-area__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
.p-area__items {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-area__items {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-area__item {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem 0;
  }
}
.p-area__item-inner {
  display: grid;
  grid-template-columns: 13rem auto;
  grid-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-area__item-inner {
    grid-template-columns: 8rem auto;
    grid-gap: 0.5rem;
  }
}
.p-area__item-ttl {
  font-weight: 700;
  color: #222583;
}
@media screen and (max-width: 767px) {
  .p-area__item-ttl {
    font-size: 1.2rem;
  }
}
.p-area__item-text {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-area__item-text {
    font-size: 1.2rem;
  }
}
.p-area__item-note {
  font-size: 1.2rem;
  text-align: right;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-area__item-note {
    font-size: 1rem;
  }
}
.p-area__note {
  font-weight: 700;
  font-size: 2.1rem;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-area__note {
    font-size: 1.8rem;
    margin-top: 3rem;
  }
}
.p-area__note span {
  display: inline-block;
  padding-bottom: 1rem;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 767px) {
  .p-area__note span {
    padding-bottom: 0.1rem;
    line-height: 1.8;
  }
}

.p-additional {
  padding: 10rem 0;
  background-image: url(../images/common/bg_additional01.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-additional {
    padding: 5rem 1rem;
  }
}
.p-additional .swiper {
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .p-additional .swiper {
    padding: 1.5rem;
    margin: 0 -1.5rem;
  }
}
.p-additional__ttl, .p-additional__sub {
  text-align: center;
}
.p-additional__slider {
  margin: 5rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-additional__slider {
    margin-top: 2rem;
  }
}
.p-additional__item {
  height: 100%;
  display: flex;
  flex-flow: wrap;
  position: relative;
  z-index: 0;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}
.p-additional__item::before {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.25);
  z-index: -1;
}
.p-additional__item-upper {
  background-color: #fff;
  padding: 5rem 5rem 3.5rem;
  position: relative;
  display: grid;
  grid-template-columns: auto 11rem;
  align-items: flex-start;
  align-content: center;
}
@media screen and (max-width: 767px) {
  .p-additional__item-upper {
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 26.67vw;
    grid-gap: 0 0.5rem;
  }
}
.p-additional__item-upper--label {
  background-color: #222583;
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.75rem 1.5rem 0.05rem;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}
.p-additional__item-upper--label span {
  font-size: 200%;
  vertical-align: middle;
  padding-left: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-family: "Heebo", sans-serif;
}
.p-additional__item-upper--ttl {
  font-weight: 700;
  font-size: 2.2rem;
  color: #222583;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-additional__item-upper--ttl {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .p-additional__item-upper--ttl {
    grid-row: 1/2;
    grid-column: 1/2;
    margin-bottom: 0;
    font-size: 1.7rem;
    padding-top: 3rem;
    line-height: 1.4;
  }
}
.p-additional__item-upper--text {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .p-additional__item-upper--text {
    font-size: 1.4rem;
    margin-right: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-additional__item-upper--text {
    grid-row: 2/3;
    grid-column: 1/3;
    margin-top: 2.5rem;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px), print {
  .p-additional__item-upper--photo {
    width: 11rem;
    height: 11rem;
  }
}
@media screen and (max-width: 767px) {
  .p-additional__item-upper--photo {
    grid-row: 1/2;
    grid-column: 2/3;
    width: 25vw;
    height: 25vw;
  }
}
.p-additional__item-upper--photo figcaption {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-additional__item-upper--photo figcaption {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
}
.p-additional__item-lower {
  padding: 3.5rem 1rem 0 5rem;
  background-color: #EFF4FC;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: auto 12rem;
  grid-gap: 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-additional__item-lower {
    padding: 2rem 2rem 0;
    grid-template-columns: auto 23.73vw;
  }
}
.p-additional__item-lower--text {
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px), print {
  .p-additional__item-lower--text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-additional__item-lower--text {
    grid-row: 1/2;
    grid-column: 1/3;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.p-additional__item-lower--photo {
  margin: auto 0 0;
}
@media screen and (max-width: 767px) {
  .p-additional__item-lower--photo {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.p-additional__item-lower--photo img {
  width: 12rem;
}
@media screen and (max-width: 767px) {
  .p-additional__item-lower--photo img {
    width: 23vw;
    margin: 0 0 0 auto;
  }
}
.p-additional__item-lower--name {
  text-align: right;
  font-weight: 700;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-additional__item-lower--name {
    margin: 0 25vw 0 0;
    padding: 6rem 0 1rem;
    font-size: 1.2rem;
  }
}
.p-additional__review .c-section-title-top {
  text-align: center;
  margin: 10rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-additional__review .c-section-title-top {
    margin: 5rem 0 2rem;
  }
}
.p-additional .swiper-wrapper {
  width: auto;
}
.p-additional .swiper-button-prev,
.p-additional .swiper-button-next {
  background-color: #222583;
  border-radius: 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
}
.p-additional .swiper-button-prev::before,
.p-additional .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid;
}
.p-additional .swiper-button-prev svg,
.p-additional .swiper-button-next svg {
  display: none;
}
.p-additional .swiper-button-prev {
  left: auto;
  right: -2rem;
}
@media screen and (max-width: 767px) {
  .p-additional .swiper-button-prev {
    right: -1rem;
  }
}
.p-additional .swiper-button-prev::before {
  border-color: #fff #fff transparent transparent;
  transform: translate(-50%, -50%) rotate(45deg);
  left: calc(50% - 0.2rem);
}
.p-additional .swiper-button-next {
  right: auto;
  left: -2rem;
}
@media screen and (max-width: 767px) {
  .p-additional .swiper-button-next {
    left: -1rem;
  }
}
.p-additional .swiper-button-next::before {
  border-color: transparent transparent #fff #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  left: calc(50% + 0.2rem);
}
.p-additional .swiper-pagination {
  bottom: -5rem;
}
@media screen and (max-width: 767px) {
  .p-additional .swiper-pagination {
    bottom: -3rem;
  }
}
.p-additional .swiper-wrapper {
  align-items: stretch;
}
.p-additional .swiper-pagination-bullet {
  background: #D6D6D6;
  opacity: 1;
}
.p-additional .swiper-pagination-bullet-active {
  background: #222583;
}

.p-faq {
  background-color: #e7e9f2;
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 5rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .p-faq .l-inner {
    max-width: 92rem;
  }
}
.p-faq__sub, .p-faq__ttl {
  text-align: center;
}
.p-faq__ttl {
  margin-bottom: 5rem;
}
.p-faq__btns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-faq__btns {
    margin-bottom: 3rem;
  }
}
.p-faq__btns li {
  cursor: pointer;
  width: 23.9%;
  text-align: center;
  color: #aaaaaa;
  padding-bottom: 1.5rem;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .p-faq__btns li {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__btns li {
    line-height: 1.3;
    padding-bottom: 1rem;
  }
}
.p-faq__btns li::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #aaaaaa;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-faq__btns li.active {
  color: #222583;
}
.p-faq__btns li.active::before {
  background-color: #222583;
}
.p-faq__btns li.active::after {
  content: "";
  background-color: #222583;
  height: 1.5rem;
  width: 1.5rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-faq__btns li span {
    font-size: 1.4rem;
  }
}
.p-faq__content dl {
  padding: 1.5rem 2.5rem;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__content dl {
    padding: 1.5rem;
  }
}
.p-faq__content dl + dl {
  margin-top: 1rem;
}
.p-faq__content dl dt,
.p-faq__content dl dd {
  padding-left: 3rem;
  position: relative;
}
.p-faq__content dl dt span,
.p-faq__content dl dd span {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Heebo", sans-serif;
  position: absolute;
  left: 0;
  top: -0.5rem;
}
.p-faq__content dl dt {
  color: #222583;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .p-faq__content dl dt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__content dl dt {
    padding-right: 3rem;
  }
}
.p-faq__content dl dt::before, .p-faq__content dl dt::after {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #222583;
}
.p-faq__content dl dt::before {
  width: 1.6rem;
  height: 2px;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-faq__content dl dt::before {
    right: 0;
  }
}
.p-faq__content dl dt::after {
  width: 2px;
  height: 1.6rem;
  right: 2.7rem;
  transition: transform 0.5s 0s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__content dl dt::after {
    right: 0.65rem;
  }
}
.p-faq__content dl dt.active::before {
  display: none;
}
.p-faq__content dl dt.active::after {
  top: 30%;
  transform: rotate(90deg);
}
.p-faq__content dl dd {
  padding: 2rem 2.5rem 2rem 6rem;
  background-color: #F8F8F8;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__content dl dd {
    padding: 1rem 2rem 2rem 5rem;
  }
}
.p-faq__content dl dd span {
  line-height: 1;
  color: #D61518;
  top: 2rem;
  left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__content dl dd span {
    top: 1.5rem;
    left: 1.5rem;
  }
}

.p-company {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding: 5rem 0;
  }
}
.p-company__ttl {
  text-align: center;
}
.p-company__data {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 28.4rem auto;
  grid-gap: 2rem 3rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-company__data {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
.p-company__data-img {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-company__data-img--01 {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .p-company__data-img--01 {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 26rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px), print {
  .p-company__data-img--02 {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .p-company__data-img--02 {
    grid-row: 3/4;
    grid-column: 1/2;
    margin-top: 1rem;
  }
}
.p-company__data-img figcaption {
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  flex-direction: column;
}
.p-company__data-img figcaption span {
  font-size: 1rem;
}
.p-company__table {
  border-top: 1px solid #B4B4B4;
}
@media screen and (min-width: 768px), print {
  .p-company__table {
    grid-row: 1/3;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .p-company__table {
    grid-row: 2/3;
    grid-column: 1/2;
    margin-top: 1rem;
  }
}
.p-company__table th,
.p-company__table td {
  border-bottom: 1px solid #B4B4B4;
  padding: 2.2rem 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__table th,
  .p-company__table td {
    padding: 1rem 0;
    font-size: 1.3rem;
  }
}
.p-company__table th {
  text-align: left;
}
.p-company__table td {
  vertical-align: top;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__table td:first-child {
    width: 29.5%;
  }
}
.p-company__headline {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .p-company__headline {
    display: grid;
    grid-template-columns: auto 53rem;
    grid-gap: 3rem;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-company__headline {
    margin-top: 3rem;
  }
}
.p-company__headline-ttl {
  font-size: 3.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-company__headline-ttl {
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.4;
  }
}
.p-company__headline-ttl span {
  border-bottom: 1px solid #333;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-company__headline-ttl span {
    display: block;
    padding-bottom: 1rem;
  }
}
.p-company__headline-text {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 1rem;
}
.p-company__items {
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-company__items {
    display: grid;
    grid-template-columns: auto 53rem;
    grid-gap: 3rem;
  }
}
.p-company__item-staffs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company__item-staffs {
    grid-gap: 1rem 0;
    margin-top: 2rem;
  }
}
.p-company__item-staff img {
  display: block;
  width: 11rem;
  height: 11rem;
  border-radius: 11rem;
  overflow: hidden;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-company__item-staff img {
    width: 20.27vw;
    height: 20.27vw;
    border-radius: 20.27vw;
  }
}
.p-company__item-staff figcaption {
  text-align: center;
  margin-top: 1rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-company__item-staff figcaption {
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
}
.p-company__item-staff figcaption span {
  display: block;
  width: 100%;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .p-company__item-staff figcaption span {
    font-size: 0.9rem;
  }
}

.p-save-children {
  background-color: #EFF4FC;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-save-children {
    padding: 2rem 1rem;
  }
}
.p-save-children__inner {
  background-color: #fff;
  padding: 3rem 7rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-save-children__inner {
    padding: 2rem;
  }
}
.p-save-children__ttl {
  font-size: 3.1rem;
  color: #222583;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .p-save-children__ttl {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-save-children__ttl {
    font-size: 2.5rem;
    letter-spacing: -0.06em;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-save-children__logo {
    display: inline-block;
  }
}
.p-save-children__logo img {
  width: 19.6rem;
}
.p-save-children__items {
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-save-children__items {
    display: grid;
    grid-template-columns: 29rem auto;
    grid-gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-save-children__items {
    margin-top: 2rem;
  }
}
.p-save-children__sub {
  font-weight: 700;
  color: #222583;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-save-children__sub {
    font-size: 2rem;
    margin-top: 2rem;
    line-height: 1.5;
  }
}
.p-save-children__text {
  font-weight: 500;
  margin-top: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-save-children__text {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
}

.p-form {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-form {
    margin-top: 3rem;
  }
}
.p-form .c-sec__catch-ttl {
  font-size: 4rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-form .c-sec__catch-ttl {
    font-size: 2.8rem;
  }
}
.p-form__lead {
  text-align: center;
  font-weight: 500;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form__lead {
    font-size: 1.4rem;
    text-align: left;
  }
}
.p-form__lead-red {
  color: #D61518;
}
.p-form__bar {
  margin-bottom: 4rem;
}
.p-form__bar-item {
  flex-basis: 33.3333%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: #8E8E8E;
  background-color: #E9E9E9;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-form__bar-item {
    font-size: 1.8rem;
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__bar-item:nth-child(2) {
    padding: 0.5rem 1.5rem 1rem 2rem;
  }
}
.p-form__bar-item:last-child::before, .p-form__bar-item:last-child::after {
  display: none;
}
.p-form__bar-item.active {
  background-color: #F08140;
  color: #fff;
}
.p-form__bar-item.active::before {
  border-left-color: #F08140;
}
.p-form__bar-item::before, .p-form__bar-item::after {
  content: "";
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-right: 0;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  border-width: 5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__bar-item::before, .p-form__bar-item::after {
    border-width: 8rem 3.5rem;
  }
}
.p-form__bar-item::before {
  border-left-color: #E9E9E9;
  right: -1rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-form__bar-item::before {
    right: -1.5rem;
  }
}
.p-form__bar-item::after {
  border-left-color: #fff;
  right: -2rem;
  z-index: 1;
}
.p-form__bar-items {
  display: flex;
  flex-flow: wrap;
  overflow: hidden;
}
.p-form__bar-item span {
  position: relative;
  z-index: 2;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form__bar-item:nth-child(2) span {
    position: relative;
    right: -0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__bar-item:nth-child(3) span {
    position: relative;
    right: -0.75rem;
  }
}
.p-form__table {
  width: 100%;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form__table {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table tr {
    display: block;
  }
}
.p-form__table-title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-title {
    font-size: 1.8rem;
  }
}
.p-form__table-th, .p-form__table-td {
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-th, .p-form__table-td {
    display: block;
  }
}
.p-form__table-th {
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px), print {
  .p-form__table-th {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-th {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .p-form__table-td {
    width: 70%;
  }
}
.p-form__table-td .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-form__table-td .wpcf7-radio .mwform-radio-field {
  width: 49.5%;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form__table-td .wpcf7-radio .mwform-radio-field label {
    height: 100%;
  }
}
.p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text {
  background-color: #F8F8F8;
  position: relative;
  display: flex;
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text {
    flex-direction: column;
    font-size: 1.5rem;
    padding: 1rem 1rem 1rem 3rem;
    height: 100%;
    justify-content: center;
  }
}
.p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text::before, .p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text::after {
  content: "";
  position: absolute;
}
.p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text::before {
  width: 1.4rem;
  height: 1.4rem;
  transform: translateY(-50%);
  border-radius: 1.4rem;
  left: 2rem;
  top: 50%;
  border: 1px solid #333;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text::before {
    left: 1rem;
  }
}
.p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text span {
  font-size: 1.5rem;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-td .wpcf7-radio .mwform-radio-field label .mwform-radio-field-text span {
    font-size: 1.2rem;
  }
}
.p-form__table-td .wpcf7-radio .mwform-radio-field label input:checked + .mwform-radio-field-text::after {
  width: 0.65rem;
  height: 0.65rem;
  transform: translateY(-50%);
  border-radius: 0.65rem;
  left: 2.4rem;
  top: 50%;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .p-form__table-td .wpcf7-radio .mwform-radio-field label input:checked + .mwform-radio-field-text::after {
    left: 1.4rem;
  }
}
.p-form__table-td input,
.p-form__table-td select,
.p-form__table-td textarea,
.p-form__table-td input[type=date] {
  padding: 1.5rem 2.5rem;
  border: 1px solid #E9E9E9;
  border-radius: 0.6rem;
  background-color: #F8F8F8;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__table-td input,
  .p-form__table-td select,
  .p-form__table-td textarea,
  .p-form__table-td input[type=date] {
    font-size: 1.5rem;
  }
}
.p-form__table-td input {
  width: 100%;
}
.p-form__table-td select,
.p-form__table-td input[type=date] {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-form__table-td select,
  .p-form__table-td input[type=date] {
    color: #333;
  }
}
.p-form__table-td input[type=date] {
  margin-bottom: 1rem;
  position: relative;
  color: #F8F8F8;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form__table-td input[type=date] {
    text-align: left;
    min-height: 5.5rem;
    box-sizing: border-box;
  }
}
.p-form__table-td input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  opacity: 0;
}
.p-form__table-td input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
.p-form__table-td input[type=date].view {
  color: #333;
}
.p-form__table-td input[type=date].view::after {
  display: none;
}
.p-form__table-td input::-moz-placeholder {
  color: #cccccc;
}
.p-form__table-td input::placeholder {
  color: #cccccc;
}
.p-form__table-td textarea {
  width: 100%;
  height: 25.2rem;
}
.p-form__table-td textarea::-moz-placeholder {
  color: #cccccc;
}
.p-form__table-td textarea::placeholder {
  color: #cccccc;
}
.p-form__icon {
  font-size: 1.5rem;
  padding: 0.5rem 1.5rem 0.75rem;
  line-height: 1;
  border-radius: 0.3rem;
  margin-right: 2rem;
  color: #fff;
  background: #333;
}
@media screen and (min-width: 768px), print {
  .p-form__icon {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__icon {
    font-size: 1.3rem;
  }
}
.p-form__icon.hissu {
  background-color: #D61518;
}
.p-form__icon-wrap {
  display: flex;
  align-items: center;
}
.p-form__select-wrap {
  position: relative;
  width: 33rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form__select-wrap {
    width: 100%;
    display: block;
  }
}
.p-form__select-wrap::after {
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  top: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.8rem 0 0.8rem;
  border-color: #333 transparent transparent transparent;
  right: 2.5rem;
  bottom: 0;
}
.mw_wp_form_confirm .p-form__select-wrap::after {
  display: none;
}
.p-form__body {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-form__body {
    display: grid;
    grid-template-columns: auto 64vw;
    grid-gap: 1rem;
  }
}
.p-form__body > * + * {
  margin-top: 1.5rem;
}
.p-form__body .p-form__icon-wrap {
  display: block;
  margin-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__body .p-form__icon-wrap {
    margin-right: 1rem;
  }
}
.p-form__body .p-form__date-title {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__body .p-form__icon {
    margin-right: 0;
    text-align: center;
    display: inline-block;
  }
}
.p-form__date-title {
  flex-basis: 15.6rem;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-form__date-title {
    font-size: 1.8rem;
  }
}
.p-form__date-box {
  flex-basis: 42.7rem;
}
.p-form__date-wrap {
  width: 33rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form__date-wrap {
    width: 100%;
  }
}
.p-form__date-wrap::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../assets/images/common/ico_calendar01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  pointer-events: none;
  z-index: 1;
}
.p-form__date-wrap::after {
  content: "年 / 月 / 日";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2.5rem;
  color: #1a1a1a;
  pointer-events: none;
  font-weight: 700;
}
.p-form__date-wrap.view::after {
  display: none;
}
.p-form__date-wrap.view input {
  color: #333;
}
.p-form__desc {
  color: #D61518;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form__desc {
    font-size: 1.2rem;
  }
}
.p-form__frame {
  border: 1px solid #333;
  height: 33.8rem;
  overflow: hidden;
  overflow-y: auto;
}
.p-form__frame-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form__frame-title {
    margin-bottom: 2rem;
  }
}
.p-form__frame-inner {
  padding: 4rem 3.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__frame-inner {
    padding: 2rem;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .p-form__frame-inner > * {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-form__frame-inner h2 {
  margin: 2.5rem 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-form__frame-inner h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.p-form__row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-form__row {
    margin-top: 3rem;
  }
}
.p-form__submit-btn {
  background-color: #F08140;
  background: linear-gradient(to bottom, #fdf001 40%, #ebcb00);
  color: #fff;
  position: relative;
  width: 47.7rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 10rem;
}
.p-form__submit-btn input {
  width: 100%;
  padding: 2.5rem 0;
}
.p-form__submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.5rem;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 0.7rem solid transparent;
  border-right: 0 solid transparent;
  border-left: 1rem solid #333;
  border-bottom: 0.7rem solid transparent;
  box-sizing: border-box;
}
.p-form__submit-btn.no_active, .p-form__submit-btn.back {
  background: linear-gradient(180deg, #f5f5f5 0%, #f5f5f5 50%, #f5f5f5 100%);
  pointer-events: none;
  color: #8E8E8E;
}
.p-form__submit-btn.no_active {
  background: none;
  background-color: #e9e9e9;
  color: #8e8e8e;
}
.p-form__submit-btn.no_active::after {
  border-left: 1rem solid #8E8E8E;
}
.p-form__submit-btn.no_active input {
  color: #8e8e8e;
}
.p-form__submit-btn.back {
  display: none;
}
.p-form__submit-btn.back::after {
  right: auto;
  left: 2.5rem;
  border-left: none;
  border-right: 1rem solid #8E8E8E;
}
.mw_wp_form_confirm .p-form__submit-btn.back {
  display: block;
  pointer-events: all;
}
@media screen and (min-width: 768px), print {
  .mw_wp_form_confirm .p-form__submit-btn.back {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-form__submit-btn.back {
    margin-bottom: 1rem;
  }
}
.p-form__add {
  display: flex;
  background-color: #222583;
  align-items: center;
  padding: 1.5rem 1.5rem 1.5rem 0;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form__add {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    flex-flow: wrap;
    margin-bottom: 3rem;
  }
}
.p-form__add-ttl {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .p-form__add-ttl {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.p-form__add-text {
  width: 80%;
  padding: 2rem;
  background-color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__add-text {
    width: 100%;
    padding: 1.5rem;
  }
}
.p-form__btn {
  width: 47.7rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-form__btn {
    width: 100%;
  }
}
.p-form__btn > a {
  width: 100%;
  padding: 2.5rem 0;
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 10rem;
  display: block;
  background: linear-gradient(180deg, #f5f5f5 0%, #f5f5f5 50%, #f5f5f5 100%);
  color: #333;
}
.p-form__btn > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 0.7rem solid transparent;
  border-left: 0 solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-right: 1rem solid #333;
  box-sizing: border-box;
  left: 2.5rem;
}

.mw_wp_form_confirm, .mw_wp_form_complete {
  margin-top: 16rem;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm, .mw_wp_form_complete {
    margin-top: 8rem;
  }
}
.mw_wp_form_confirm .p-form__submit-btn.back {
  display: block;
}
.mw_wp_form_confirm .p-form__lead {
  display: none;
}
.mw_wp_form_confirm .p-form__frame {
  display: none;
}
.mw_wp_form_confirm .p-form__frame-title {
  display: none;
}
.mw_wp_form_confirm .p-form__table-td {
  padding: 1.5rem 0;
  font-weight: 500;
}
@media screen and (min-width: 768px), print {
  .mw_wp_form_confirm .p-form__table-td {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-form__table-td {
    padding-top: 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-form__table-td.date_wrap {
    margin-top: 1rem;
  }
}
.mw_wp_form_confirm .p-form__date-wrap {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-form__date-wrap {
    margin-bottom: 0.5rem;
  }
}
.mw_wp_form_confirm .p-form__date-wrap::before, .mw_wp_form_confirm .p-form__date-wrap::after {
  display: none;
}
.mw_wp_form_confirm .p-form__date-wrap input {
  display: none;
}
.mw_wp_form_confirm .p-form__date-box {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-form__date-box {
    padding-top: 0;
  }
}
.mw_wp_form_confirm .p-form__desc {
  display: none;
}
.mw_wp_form_confirm .p-form__body {
  align-items: flex-start;
}
.mw_wp_form_confirm .p-form__body + .p-form__body {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .p-form__body + .p-form__body {
    margin-top: 0.5rem;
  }
}

.p-fixcta {
  position: fixed;
  right: 0;
  bottom: -6rem;
  width: 29rem;
  height: 32rem;
  padding-top: 18.5rem;
  box-sizing: border-box;
  border-radius: 32rem;
  z-index: 9999;
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  .p-fixcta {
    display: none;
  }
}
.p-fixcta.fixhide {
  bottom: -50%;
}
.p-fixcta::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/img_banner01.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.p-fixcta.timercontent__hide::before {
  background-image: url(../images/common/img_banner01_close.png);
}
.p-fixcta::after {
  content: "";
  width: 100%;
  height: 90%;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 32rem;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  z-index: -2;
}
.p-fixcta__tel > a {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Heebo", sans-serif;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  line-height: 1.1;
}
.p-fixcta__tel > a::before {
  content: "";
  width: 2.6rem;
  height: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
  background-image: url(../images/common/ico_tel01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.1rem;
}
.p-fixcta__tel > a span {
  font-size: 135%;
  list-style: 1;
}
.p-fixcta__desc {
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}
.p-fixcta__close {
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 2rem;
  top: 7rem;
  background-image: url(../images/common/ico_close01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  border-radius: 3rem;
  cursor: pointer;
}

.p-fixnav {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  padding: 1rem 9.5rem 1rem 1rem;
  transition: all 0.75s;
}
@media screen and (min-width: 768px), print {
  .p-fixnav {
    display: none;
  }
}
.p-fixnav::after {
  content: "";
  background-image: url(../images/common/pic_fixnav01.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12rem;
  height: 11rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.p-fixnav__ttl {
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222583;
}
.p-fixnav__ttl:before, .p-fixnav__ttl:after {
  width: 1px;
  height: 2rem;
  display: inline-block;
  background: #222583;
  position: relative;
  bottom: -0.5rem;
  content: "";
}
.p-fixnav__ttl:before {
  transform: rotate(-35deg);
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-fixnav__ttl:before {
    margin-right: 1rem;
  }
}
.p-fixnav__ttl:after {
  transform: rotate(35deg);
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-fixnav__ttl:after {
    margin-left: 1rem;
  }
}
.p-fixnav__item {
  width: 32.3%;
}
.p-fixnav__items {
  display: flex;
}
.p-fixnav__item > a {
  color: #fff;
  font-size: 1.8rem;
  border-radius: 0.8rem;
  width: 100%;
  height: 4rem;
}
.p-fixnav__item > a::before {
  margin-right: 0.5rem;
}
.p-fixnav__item.c-btn--tel > a::before {
  background-image: url(../images/common/ico_tel03.svg);
}
.p-fixnav__item + .p-fixnav__item {
  margin-left: 0.5rem;
}
.p-fixnav.timercontent__hide .p-fixnav__item {
  width: 49.3%;
}
.p-fixnav.timercontent__hide .p-fixnav__item.c-btn--tel {
  display: none;
}
.p-fixnav.fixhide {
  bottom: -50%;
  opacity: 0;
}/*# sourceMappingURL=styles.css.map */