@charset "UTF-8";
/*リセットcss
***************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* rem使用時のルートフォント設定(SPファースト)
***************************************************************/
/* rem使用時のルートフォント設定(PCファースト)
***************************************************************/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1070px) and (min-width: 768px) {
  html {
    font-size: calc(10 / 1070 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

/* base（基本）設定
***************************************************************/
body {
  color: #182753;
  font-family: "Noto Sans JP", sans-serif;
}
body.no-scroll {
  overflow: hidden !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a {
  display: inline-block;
}

video,
img,
svg {
  height: 100%;
  width: 100%;
}

.test {
  color: #a30707;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .test {
    font-size: 1.6rem;
  }
}

/*下からふわっ（強め） */
.fade-in-up--strong {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up--strong.js-show {
  opacity: 1;
  transform: translateY(0);
}

/*下からふわっ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.js-show {
  opacity: 1;
  transform: translateY(0);
}

/*時間差でふわっふわっ（GSAP用） */
.fadeIn-delay {
  opacity: 0;
  transform: translateY(30px);
}

/*その場でふわっ */
.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.js-show {
  opacity: 1;
}

/*左下からパタ */
.flipLeftTop.js-show {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: flipLeftTopAnime;
  opacity: 0;
}
@keyframes flipLeftTopAnime {
  from {
    opacity: 0;
    transform: translate(-20px, 60px) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}

/*Y軸（横へくるっ） */
.rotateY.js-show {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: rotateYAnime;
}
@keyframes rotateYAnime {
  from {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  to {
    opacity: 1;
    transform: rotateY(-360deg);
  }
}

/*ホバーでキラっ*/
.kira {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.kira::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  height: 100%;
  left: -60%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  transition: 0.5s;
  width: 50%;
}
.kira:hover::before {
  animation: flash 0.75s;
}

@keyframes flash {
  100% {
    left: 120%;
  }
}
/* 左からしゅっと出現 */
.fadeLeft.js-show {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeLeftAnime;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右からしゅっと出現 */
.fadeRight.js-show {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeRightAnime;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 共通inner
***************************************************************/
.l-inner {
  height: inherit;
  margin-inline: auto;
  max-width: 1070px;
  padding: 0 4rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1.25rem;
    width: 100%;
  }
}

/* 共通ボタン
***************************************************************/
.c-button {
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.24);
  color: transparent;
  font-weight: bold;
  height: 11.9rem;
  max-width: 100%;
  overflow: hidden;
  padding: 3rem 8.5rem 3rem 5rem;
  position: relative;
  width: 69.5rem;
  z-index: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-button {
    height: 7.9rem;
    width: 35rem;
  }
}
.c-button::before {
  background: url(../img/btn-pc.webp) no-repeat center center/cover;
  border-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-button::before {
    background: url(../img/btn-sp.webp) no-repeat center center/cover;
  }
}
.c-button::after {
  background: url(../img/btn-hover-pc.webp) no-repeat center center/cover;
  border-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .c-button::after {
    background: url(../img/btn-hover-sp.webp) no-repeat center center/cover;
  }
}
@media (any-hover: hover) {
  .c-button:hover::before {
    content: "";
    opacity: 0;
  }
}

/* セクション共通見出し
***************************************************************/
.c-section-head__title {
  color: #124287;
  font-size: 4rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-head__title {
    font-size: 2.4rem;
  }
}
.c-section-head__title span {
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-section-head__title span {
    font-size: 3.2rem;
  }
}
.c-section-head__title.p-strength__title {
  line-height: 1.31;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-head__title.p-reason__title {
    font-size: 2.8rem;
  }
}
.c-section-head__title.p-point__title {
  color: #FFFFFF;
}

/* (FV)
***************************************************************/
.p-fv__cta {
  background: #FFFFFF;
  padding: 3.2rem 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-fv__cta {
    padding: 2.4rem 1.25rem;
  }
}

/* (reason)
***************************************************************/
.p-reason {
  background: #E8EDF2;
  padding-block: 9.5rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding-block: 5.7rem 3.6rem;
  }
}

.p-reason__title {
  position: relative;
}
.p-reason__title::before {
  color: #124287;
  content: "REASON";
  font-family: "Roboto", serif;
  font-size: 10rem;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.2em;
  opacity: 0.05;
  position: absolute;
  top: -7rem;
  translate: -48.5%;
}
@media screen and (max-width: 767px) {
  .p-reason__title::before {
    font-size: 6.4rem;
    letter-spacing: 0.2em;
    top: -4.6rem;
  }
}

.p-reason__contents {
  margin-inline: auto;
  margin-top: 3.2rem;
  max-width: 90.9rem;
}
@media screen and (max-width: 767px) {
  .p-reason__contents {
    margin-top: 1.6rem;
  }
}

.p-reason__contents-head {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reason__contents-head {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.p-reason__contents-head span {
  color: #F5941B;
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-reason__contents-head span {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}

.p-reason__contents-img {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-reason__contents-img {
    margin-top: 1.6rem;
  }
}

.p-reason__contents-description {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
  margin-top: 0.5rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-reason__contents-description {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }
}

.p-reason__contents-text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reason__contents-text {
    font-size: 1.6rem;
    margin-top: 1.6rem;
    text-align: left;
  }
}
.p-reason__contents-text span {
  color: #F5941B;
  font-weight: 500;
}

/* (CTA)
***************************************************************/
.p-cta {
  background: linear-gradient(90deg, #172651 0%, #124287 100%);
  overflow: hidden;
  padding-block: 2.8rem 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-block: 5rem 3.2rem;
  }
}
.p-cta.bg-light {
  background: #E8EDF2;
}

.p-cta__inner {
  margin-inline: auto;
  max-width: 100%;
  position: relative;
  width: 100rem;
}

.p-cta__contents {
  max-width: 69.5rem;
}

.p-cta__comments {
  color: #FFFFFF;
  font-size: 4rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__comments {
    font-size: 2.4rem;
    padding-inline: 0.8rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-cta__comments span {
    display: none;
  }
}
.bg-light .p-cta__comments {
  color: #182753;
}

.p-cta__link {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-cta__link {
    margin-top: 4.2rem;
    text-align: center;
  }
}

.p-cta__img {
  position: absolute;
  right: 4rem;
  top: -2.5rem;
  width: 20.7rem;
}
@media screen and (max-width: 767px) {
  .p-cta__img {
    right: 2rem;
    top: -4.3rem;
    width: 12.9rem;
  }
}

/* (strength)
***************************************************************/
.p-strength {
  padding-block: 6.4rem 6.2rem;
}
@media screen and (max-width: 767px) {
  .p-strength {
    padding-block: 4rem;
  }
}

.p-strength__inner {
  max-width: 107.5rem;
}

.p-strength__contents {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-strength__contents {
    gap: 5.6rem;
    margin-top: 3.2rem;
  }
}

.p-strength__item {
  align-items: flex-end;
  display: flex;
  gap: 3.4rem;
  justify-content: space-between;
}
.p-strength__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-strength__item {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }
  .p-strength__item:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.p-strength__body {
  width: 48.2412060302%;
}
@media screen and (max-width: 767px) {
  .p-strength__body {
    width: 100%;
  }
}

.p-strength__item-number {
  align-items: baseline;
  color: #199FDA;
  display: flex;
  font-family: "Roboto", serif;
  font-size: 3.2rem;
  font-weight: 700;
  gap: 0.8rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-strength__item-number {
    font-size: 1.6rem;
  }
}
.p-strength__item-number span {
  color: rgba(25, 159, 218, 0.4);
  font-size: 10rem;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-strength__item-number span {
    font-size: 4.8rem;
  }
}

.p-strength__item-title {
  background: #199FDA;
  color: #FFFFFF;
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 0.8rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-strength__item-title {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    margin-top: 0.4rem;
    padding: 0.4rem 2rem;
  }
  .item02 .p-strength__item-title, .item03 .p-strength__item-title {
    margin-top: 0.8rem;
  }
}
.p-strength__item-title:not(:first-of-type) {
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-strength__item-title:not(:first-of-type) {
    margin-top: 0.4rem;
  }
}

.p-strength__item-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 1.7rem;
  padding-left: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-strength__item-text {
    font-size: 1.4rem;
    margin-top: 0.8rem;
    padding-left: 0;
  }
}
.p-strength__item-text span {
  display: inline;
  font-feature-settings: "palt" 1;
}

.p-strength__img {
  width: 47.7386934673%;
}
.p-strength__img img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-strength__img {
    width: 100%;
  }
}

/* (suggestion)
***************************************************************/
.p-suggestion {
  background: #E8EDF2;
  padding-block: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-suggestion {
    padding-block: 4rem;
  }
}

.p-suggestion__contents {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-suggestion__contents {
    gap: 1.6rem;
  }
}

.p-suggestion__text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-suggestion__text {
    font-size: 1.8rem;
  }
}

.p-suggestion__arrow {
  padding-top: 1.2rem;
  text-align: center;
}
.p-suggestion__arrow img {
  width: 14.4rem;
}
@media screen and (max-width: 767px) {
  .p-suggestion__arrow {
    padding-top: 0.83rem;
  }
  .p-suggestion__arrow img {
    width: 10.5rem;
  }
}

.p-suggestion__main-copy {
  font-size: 4rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-suggestion__main-copy {
    font-size: 2.1rem;
    line-height: 1.6;
  }
}
.p-suggestion__main-copy span {
  font-size: 4.7rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-suggestion__main-copy span {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
.p-suggestion__main-copy .only-sp-big {
  font-size: 4rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-suggestion__main-copy .only-sp-big {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}

.p-suggestion__img {
  margin-inline: auto;
  max-width: 91rem;
}

/* (price)
***************************************************************/
.p-price {
  padding-block: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-price {
    padding-block: 4rem;
  }
}

.p-price__contents {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  margin-top: 3.1rem;
  max-width: 91rem;
}
@media screen and (max-width: 767px) {
  .p-price__contents {
    gap: 1.6rem;
    grid-template-columns: 1fr;
    margin-top: 3.2rem;
  }
}

.p-price__item-head {
  border-radius: 5px 5px 0px 0px;
  padding: 1.2rem;
}
.item01 .p-price__item-head {
  background-color: #199FDA;
}
.item02 .p-price__item-head {
  background-color: #124287;
}

.p-price__item-title {
  color: #FFFFFF;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__item-title {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}

.p-price__item-body {
  align-items: center;
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-radius: 0px 0px 5px 5px;
  border-right: 3px solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.6rem 3.7rem 4rem 3.7rem;
}
@media screen and (max-width: 767px) {
  .p-price__item-body {
    padding: 0;
  }
}
.item01 .p-price__item-body {
  border-color: #199FDA;
}
@media screen and (max-width: 767px) {
  .item01 .p-price__item-body {
    padding-bottom: 1.8rem;
  }
}
.item02 .p-price__item-body {
  border-color: #124287;
}
@media screen and (max-width: 767px) {
  .item02 .p-price__item-body {
    padding: 0.5rem 2rem 1.7rem 2rem;
  }
}

.p-price__item-text {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-price__item-text {
    font-size: 3.2rem;
  }
}
.p-price__item-text span {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-price__item-text span {
    font-size: 4rem;
  }
}

.p-price__item-text--02 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .p-price__item-text--02 {
    font-size: 2.4rem;
    margin-top: 0.5rem;
    top: 0;
  }
}

.p-price__item-attention {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  position: relative;
  top: -0.8rem;
}
@media screen and (max-width: 767px) {
  .p-price__item-attention {
    gap: 0.9rem;
    margin-top: 1.2rem;
    top: 0;
  }
}
.p-price__item-attention span {
  font-size: 6.4rem;
  font-weight: 300;
  line-height: 1.2;
}

.p-price__item-attention-text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__item-attention-text {
    font-size: 1.8rem;
  }
}

.p-price__item-attention-price {
  font-size: 6.4rem;
  font-weight: 700;
}
.p-price__item-attention-price span {
  font-size: 3.2rem;
  font-weight: 700;
}

.p-price__item-price {
  background: linear-gradient(90deg, #F5941B 0%, #FB4406 100%);
  background-clip: text;
  color: transparent;
  font-size: 10.2rem;
  font-weight: 700;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-price__item-price {
    font-size: 7.2rem;
  }
}
.p-price__item-price span {
  font-size: 4rem;
  font-weight: 700;
}

.p-price__more {
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__more {
    margin-top: 3.2rem;
  }
}

.p-price__more-sub {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-price__more-sub {
    font-size: 2.4rem;
  }
}

.p-price__more-main {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-price__more-main {
    font-size: 3.2rem;
    margin-top: 0.7rem;
  }
}
.p-price__more-main .gradation {
  background: linear-gradient(90deg, #F5941B 0%, #FB4406 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-price__more-main .gradation {
    font-size: 4.8rem;
  }
}
.p-price__more-main .gradation .num {
  font-size: 7.4rem;
  letter-spacing: -0.1em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-price__more-main .gradation .num {
    font-size: 5.6rem;
    line-height: 1;
  }
}

/* (ServicePoint)
***************************************************************/
.p-point {
  background: linear-gradient(90deg, #172651 0%, #124287 100%);
  padding-block: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-point {
    padding-block: 4rem;
  }
}

.p-point__container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-point__container {
    gap: 1.6rem;
    margin-top: 3.2rem;
  }
}

.p-point__item-head {
  align-items: baseline;
  background: #D3EDFA;
  border-radius: 5px 5px 0px 0px;
  display: flex;
  gap: 2.8rem;
  padding: 1.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-head {
    align-items: center;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    padding: 0.8rem;
  }
}

.p-point__item-number {
  font-family: "Roboto", serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-point__item-number {
    align-items: center;
    display: flex;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.p-point__item-number span {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 0.1rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-number span {
    font-size: 3.2rem;
  }
}

.p-point__item-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-point__item-title {
    font-size: 2.2rem;
    line-height: 1.6;
    text-align: center;
  }
}

.p-point__item-body {
  align-items: center;
  background: #FFFFFF;
  border-radius: 0px 0px 5px 5px;
  display: flex;
  gap: 4.3rem;
  margin-top: -1px;
  padding-inline: 4.7rem 9.5rem;
}
.item01 .p-point__item-body {
  padding-block: 3.3rem 2.5rem;
}
.item02 .p-point__item-body {
  padding-block: 2.9rem 2.9rem;
}
.item03 .p-point__item-body {
  padding-block: 4.2rem 3.9rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-body {
    flex-direction: column-reverse;
    gap: 0.8rem;
    padding-inline: 1.5rem;
  }
  .item01 .p-point__item-body, .item02 .p-point__item-body, .item03 .p-point__item-body {
    padding-block: 1rem 2rem;
  }
}

.p-point__item-text-wrap {
  width: 61.320754717%;
}
@media screen and (max-width: 767px) {
  .p-point__item-text-wrap {
    width: 100%;
  }
}

.p-point__item-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-point__item-text {
    font-size: 1.6rem;
  }
}

.p-point__item-attention {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-attention {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
}

.p-point__item-img {
  width: 33.608490566%;
}
@media screen and (max-width: 767px) {
  .p-point__item-img {
    margin-inline: auto;
    max-width: 100%;
    width: 30rem;
  }
}

/* (support)
***************************************************************/
.p-support {
  padding-block: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-support {
    padding-block: 4rem;
  }
}

.p-support__container {
  display: flex;
  gap: 7.6rem;
  margin-inline: auto;
  max-width: 91rem;
}
@media screen and (max-width: 767px) {
  .p-support__container {
    align-items: center;
    flex-direction: column-reverse;
    gap: 0.8rem;
  }
}

.p-support__img {
  height: auto;
  width: 9.3rem;
}
.p-support__img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-support__img {
    width: 5.3rem;
  }
}

.p-support__contents {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding-top: 2.1rem;
  width: 74.6153846154%;
}
@media screen and (max-width: 767px) {
  .p-support__contents {
    gap: 0.8rem;
    padding-top: 0;
    width: 100%;
  }
}

.p-support__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-support__title {
    font-size: 3.2rem;
    text-align: center;
  }
}

.p-support__text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-support__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* (closing)
***************************************************************/
.p-closing {
  background: linear-gradient(rgba(18, 66, 135, 0.4), rgba(18, 66, 135, 0.4)), url(../img/bg_closing-pc.png) no-repeat center center/cover;
  padding-block: 3rem 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-closing {
    background: linear-gradient(rgba(18, 66, 135, 0.4), rgba(18, 66, 135, 0.4)), url(../img/bg_closing-sp.png) no-repeat center center/cover;
    padding-block: 4rem;
  }
}

.p-closing__contents {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-closing__contents {
    gap: 1.5rem;
  }
}

.p-closing__title {
  color: #FFFFFF;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(23, 38, 81, 0.8);
}
.p-closing__title span {
  color: #FFF959;
}
@media screen and (max-width: 767px) {
  .p-closing__title {
    font-size: 3.2rem;
    text-shadow: 1px 1px 6px rgba(23, 38, 81, 0.8);
  }
}

.p-closing__text {
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(23, 38, 81, 0.8);
}
@media screen and (max-width: 767px) {
  .p-closing__text {
    font-size: 1.8rem;
    text-shadow: 1px 1px 6px rgba(23, 38, 81, 0.8);
  }
}

/* 共通ディスプレイ表示
***************************************************************/
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
/* テキスト装飾
***************************************************************/
.u-text-center {
  text-align: center;
}

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

.u-text-under {
  border-bottom: 1px solid currentColor;
  font-size: inherit;
  font-weight: inherit;
}

.u-text-bold {
  font-weight: 700;
}

.u-text-marker {
  background: linear-gradient(transparent 60%, #ffff75 40%);
  font-weight: inherit;
}

.u-text-orange {
  color: #F5941B;
}