@charset "UTF-8";

/* ==========================================================================
   Foundation - Variables
   ========================================================================== */
:root {
  --color-orange: #fc7142;
  --color-blue: #036eb8;
  --color-text: #333;
  --color-white: #fff;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --inner-max: 1100px;
  --inner-pad-pc: 24px;
  --inner-pad-sp: 4%;
}

/* ==========================================================================
   Foundation - Reset / Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text);
  font-weight: 500;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

h1, h2, h3, h4, h5, h6, p, figure {
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

picture {
  display: block;
}

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

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

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.en{
  font-weight: 700!important;
font-family: "acumin-variable",sans-serif;
font-variation-settings: 'wght' 700, 'wdth' 80, 'slnt' 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.l-inner {
  width: 90%;
  max-width: var(--inner-max);
  margin-inline: auto;
  /* padding-inline: var(--inner-pad-pc); */
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 0;
    width: 100%;
  }
}

/* ----- Header ----- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: #00abe2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.l-header__logo {
  width: 364px;
  flex-shrink: 0;
}

.l-header__logo img {
  width: 100%;
}

.l-header__action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.l-header__caution {
  width: 363px;
}

.l-header__caution img {
  width: 100%;
}

.l-header__btn {
  width: 363px;
  border-radius: 10px;
  /* シャドウ */
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
}

.l-header__btn img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 1200px) {
.l-header__logo {
  width: 220px;
}
.l-header__caution {
  width: 220px;
}
.l-header__btn {
  width: 220px;
}
}

@media screen and (max-width: 767px) {
  .l-header {
    padding:3vw 4vw;
  }

  .l-header__logo {
    width: 52vw;
  }

  .l-header__action {
    display: none;
  }
}

/* ==========================================================================
   Object - Project
   ========================================================================== */

/* ----- p-mv ----- */
.p-mv {
  position: relative;
  margin-top: 94px;
  padding-bottom: 60px;
}

.p-mv__main-txt img {
  width: 100%;
}

.p-mv__bnr {
width: 90%;
  max-width: 1100px;
  margin: -40px auto 0;

}

.p-mv__bnr a {
  display: block;
  border-radius: 0 25px ;
}

.p-mv__bnr img {
  width: 100%;
  border-radius: 0 25px ;
}

@media screen and (max-width: 1200px) {
.p-mv {
  margin-top: 63px;
}
.p-mv__bnr {
  margin: -2vw auto 0;
}  
}

@media screen and (max-width: 767px) {
    .p-mv {
    margin-top: 11.2vw;
    padding-bottom: 0;
  }
  .p-mv__bnr {
    width: 92%;
    margin-top: 20px;
  }
  .p-mv__main-txt img {
  aspect-ratio: 690/1306;
  object-fit: cover;
  object-position: bottom center;
}
.p-mv__bnr img {
  border-radius: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}
.p-mv__bnr a {
  border-radius: 0;
}
.p-mv__bnr {
  margin: -11vw auto 0;
  border-radius: 0;
  box-shadow: none;
}
}

/* ----- p-new ----- */
.p-new {
  position: relative;
  background-color: #d6f7fa;
  padding: 110px 0 80px;
  overflow: hidden;
  border-radius: 50px;
}

.p-new__ttl {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.p-new__ttl::before {
  content: "new";
  position: absolute;
    font-weight: 700!important;
font-family: "acumin-variable",sans-serif;
font-variation-settings: 'wght' 700, 'wdth' 80, 'slnt' 0;
  top: -65px;
  left: -10px;
  font-size: 125px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
  z-index: 0;
}

.p-new__ttl .txt {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.p-new__card {
  position: relative;
  z-index: 1;
  margin: 0 auto 16px;
}

.p-new__card img {
  width: 102%;
  max-width: 102%;
  transform: translateX(-1%);
}

.p-new__note {
  position: relative;
  z-index: 1;
  margin-top: -10px;
  font-size: 12px;
  color: #444;
}

@media screen and (max-width: 767px) {
 .p-new {
    padding: 22vw 0 15vw;
    border-radius: 9vw;
  }

.p-new__ttl::before {
  top: -16vw;
  left: -2vw;
  font-size: 26vw;
}

  .p-new__ttl {
    width: 90%;
    margin: 0 auto 1vw;
  }

  .p-new__ttl .txt {
    padding: 0;
    font-size: 5vw;
  }

.p-new__note {
    font-size: 2.8vw;
    margin-bottom: 36px;
    width: 95%;
    margin: -5vw auto 0px;
  }
}

/* ----- p-what ----- */
.p-what {
  position: relative;
  background-color: #d8eef5;
  background-image: url("../img/what_bg.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 80px 0 80px;
  overflow: hidden;
  background-size: cover;
}

.p-what__head {
  position: relative;
  /* text-align: center; */
  margin-bottom: 70px;
  padding-top: 40px;
}

.p-what__en {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 125px;
  color: #fff;
  line-height: 0.9;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.p-what__sub {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-what__ttl {
  position: relative;
  z-index: 1;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  transform: translateX(-20px);
}

.p-what__ttl .u-orange {
  font-size: 40px;
}

.p-what__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "before arrow after"
    "lead lead lead";
  align-items: center;
  column-gap: 28px;
  row-gap: 32px;
  margin: 0 auto 10px;
}

.p-what__group--before {
  grid-area: before;
}

.p-what__arrow {
  grid-area: arrow;
  width: 56px;
  transform: translateY(35px);
}

.p-what__arrow img {
  width: 100%;
  animation: arrowFloatX 1.2s ease-in-out infinite;
  will-change: transform;
}

@keyframes arrowFloatX {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-what__arrow img {
    animation: none;
  }
}

.p-what__group--after {
  grid-area: after;
}

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

.p-what__group-label {
  position: relative;
  display: inline-block;
  background-color: #808080;
  color: #fff;
  padding: 4px 28px;
  border-radius: 6px;
font-size: 25px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* .p-what__group-label::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #7f8c95;
} */

.p-what__group--after .p-what__group-label {
  background-color: var(--color-orange);
}

/* .p-what__group--after .p-what__group-label::after {
  border-top-color: var(--color-orange);
} */

.p-what__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  z-index: 2;
}


.p-what__cards::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 3px;
  background-color: var(--color-blue);
  z-index: -1;
  display: block;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.p-what__group--before .p-what__card {
  background-color: #E8FFFF;
}

.p-what__cards.p2::before {
  background-color: var(--color-orange);
}

.p-what__card {
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(40, 90, 150, 0.1);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}

.p-what__cards.p2 .p-what__card {
  box-shadow: 0 0 14px rgba(255, 47, 0, 0.5);
}

.p-what__group--after .p-what__card {
  border-color: rgba(252, 113, 66, 0.32);
}

.p-what__card-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
margin-bottom: 0;
  padding-bottom: 10px;
  /* border-bottom: 1px solid var(--color-blue); */
}

.p-what__group--after .p-what__card-icon {
  border-bottom-color: var(--color-orange);
}

.p-what__card-icon img {
  max-height: 100%;
  width: auto;
}

.p-what__card-txt {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: #1a1a1a;
}

.p-what__lead {
  grid-area: lead;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: var(--color-orange);
}

.p-what__desc {
  text-align: center;
  font-size: 25px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--color-text);
}

.p-what__desc .u-orange{
  font-weight: 700;
}

.sp{
  display: none;
}

@media screen and (max-width: 1100px) {
.p-what__card-txt {
  font-size: 1.5vw;
}
}

@media screen and (max-width: 767px) {
  
  .p-what {
    background-image: url("../img/what_bg_sp.webp");
    padding: 15vw 0 22vw;
  }

  .p-what__head {
padding-top: 10vw;
    margin-bottom: 7vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-what__en {
    font-size: 20vw;
  }

  .p-what__sub {
    margin-top: 2vw;
    font-size: 4.8vw;
  }

  .p-what__ttl {
    font-size: 4.5vw;
    transform: translateX(-1vw);
  }

  .p-what__ttl .u-orange {
  font-size: 7vw;
}

  .p-what__compare {
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 0;
row-gap: 5vw;
    max-width: 94vw;
    margin: 0 auto 4vw;
  }

  .p-what__group--before,
  .p-what__group--after {
    width: 100%;
  }

  .p-what__group-label {
    font-size: 4.6vw;
    padding: 1vw 4vw;
    margin-bottom: 4vw;
  }

  .p-what__cards {
    gap: 2vw;
  }

.p-what__card {
    padding: 3vw 2vw;
    border-radius: 8px;
  }

.p-what__card-icon {
    height: 14vw;
    margin-bottom: 1vw;
    padding-bottom: 1vw;
  }

  .p-what__card-txt {
    font-size: 3.6vw;
    line-height: 1.4;
  }

  .p-what__arrow {
    width: 11vw;
    transform: rotate(90deg);
  }

  .p-what__lead {
    font-size: 6.2vw;
  }

  .p-what__desc {
    font-size: 4.8vw;
    line-height: 1.8;
  }
}

/* ----- p-point ----- */
.p-point {
  position: relative;
  background-color: #EFFCFD;
  background-image: url("../img/point_bg.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 80px 0 17vw;
  overflow: hidden;
}

.p-point__head {
  position: relative;
  margin-bottom: 50px;
  padding-top: 40px;
}

.p-point__en {
position: absolute;
  top: 0;
  left: 0;
  font-size: 125px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.p-point__sub {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-point__ttl {
  position: relative;
  z-index: 1;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}

.p-point__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.p-point__item {
  display: flex;
}

.p-point__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0 34px 34px 34px;
  padding: 30px 19px 24px;
  box-shadow: 0 8px 22px rgba(20, 50, 90, 0.14);
}

.p-point__card-ttl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.55;
  color: #1a1a1a;
}

.p-point__card-num,
.p-point__card-text {
  background: linear-gradient(90deg, #ff5680 0%, #fc7142 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.p-point__card-num {
  flex-shrink: 0;
  font-size: 50px;
  line-height: 1.1;
}

.p-point__card-bar {
  flex-shrink: 0;
  align-self: center;
  width: 3px;
  height: 90%;
  font-size: 0;
  background: linear-gradient(180deg, #ff5680 0%, #fc7142 100%);
  border-radius: 2px;
}

.p-point__card-text {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-size: 25px;
}

.p-point__card-desc {
  flex: 1;
  margin-bottom: 18px;
  font-size:18px;
  line-height: 1.85;
  color: #333;
}

.p-point__card-img {
  margin-top: auto;
  text-align: center;
}

.p-point__card-img img {
  width: auto;
  max-width: 100%;
  max-height: 160px;
  margin: 0 auto;
  padding-bottom: 40px;
}

@media screen and (max-width: 1250px) {
 .p-point__card-text {
    font-size: 1.8vw;
  }
.p-point__card-num {
  font-size: 3.5vw;
}
.p-point__card-ttl {
  gap: 1vw;
}
.p-point__card-ttl {
  margin-bottom: 1vw;
}
.p-point__card-desc {
  font-size: 16px;
}
}

@media screen and (max-width: 767px) {
  .p-point {
    padding: 10vw 0 14vw;
    background-image: none;
  }

  .p-point__head {
    padding-top: 10vw;
    margin-bottom: 7vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-point__en {
    font-size: 20vw;
  }

  .p-point__sub {
    margin-top: 2vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-point__ttl {
    padding-left: 0;
    font-size: 4.5vw;
  }

  .p-point__ttl .u-orange {
    font-size: 7vw;
  }

  .p-point__list {
    grid-template-columns: 1fr;
    gap: 5vw;
    max-width: 100%;
    margin: 0 auto;
  }

  .p-point__card {
    padding: 6vw;
    margin: 0 0 0 auto;
    border-radius: 5vw 0 0 5vw;
    width: 96%;
    box-shadow: 0 6px 10px rgba(20, 50, 90, 0.3);
  }

  .p-point__item:nth-child(2n) .p-point__card{
    margin: 0 auto 0 0;
    border-radius: 0 5vw 5vw 0;
  }

  .p-point__card-ttl {
    font-size: 6.5vw;
    margin-bottom: 2vw;
    gap: 3vw;
  }

  .p-point__card-num {
    font-size: 13vw;
  }

    .p-point__card-text {
    font-size: 6.5vw;
  }

  .p-point__card-desc {
    font-size: 4.2vw;
    line-height: 1.8;
  }

  .p-point__card-img img {
    max-height: 45vw;
  }
}

/* ----- p-feeling ----- */
.p-feeling {
  position: relative;
}

.p-feeling__wrapper{
  padding: 115px 0 120px;
  background-size: cover;
  background-image: url(../img/feeling_bg.webp);
}

.p-feeling__head {
  position: relative;
  margin-bottom: 60px;
  padding-top: 30px;
}

.p-feeling__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 125px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.p-feeling__sub {
  position: relative;
  z-index: 1;
  margin-top: 52px;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-feeling__ttl {
  position: relative;
  z-index: 1;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}

.p-feeling__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 36px;
  margin: 0 auto;
}

.p-feeling__item {
  width: calc((100% - 36px) / 2);
  aspect-ratio: 523/120;
}

.p-feeling__item:nth-child(2),
.p-feeling__item:nth-child(4) {
  margin-top: 50px;
}

.p-feeling__bubble {
  position: relative;
  padding: 11px 76px 26px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.p-feeling__item:nth-child(odd) .p-feeling__bubble {
  background-image: url("../img/fukidashi01.webp");
}

.p-feeling__item:nth-child(even) .p-feeling__bubble {
  background-image: url("../img/fukidashi02.webp");
}

.p-feeling__bubble-ttl {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
}

.p-feeling__bubble-txt {
  font-size: 18px;
  line-height: 1.65;
  color: #444;
}

.p-feeling__action {
  position: relative;
  background: url("../img/bg_blue.webp") center / cover no-repeat var(--color-blue);
  padding: 0 0 72px;
  text-align: center;
}

.p-feeling__ribbon {
  max-width: 540px;
  margin: 0 auto;
  transform: translateY(-30px);
  position: relative;
  z-index: 2;
}

.p-feeling__ribbon img {
  width: 100%;
}

.p-feeling__msg {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #000;
}

.p-feeling__msg strong {
  font-weight: 900;
  font-size: 40px;
  color: #fff;
  text-shadow: 0 3px 31px rgba(27, 94, 229, 0.9), 0 0px 20px rgba(0, 23, 214, 0.9);
}

.p-feeling__arrow {
  margin-bottom: 20px;
}

.p-feeling__arrow img {
  width: 36px;
  margin: 0 auto;
  animation: arrowFloat 1s ease-in-out infinite;
  will-change: transform;
}

@keyframes arrowFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-feeling__arrow img {
    animation: none;
  }
}

.p-feeling__final {
  color: #000;
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 1250px) {
.p-feeling__bubble {
  padding: 1vw 7vw 2vw;
}
.p-feeling__bubble-ttl {
  font-size: 2vw;
}
.p-feeling__bubble-txt {
  font-size: 1.5vw;
}
.p-feeling__list {
  gap: 1vw 2vw;
}
}

@media screen and (max-width: 767px) {
  .p-feeling {
    padding: 40px 0 0;
  }

  .p-feeling__wrapper{
    padding: 15vw 0;
  background-image: url(../img/feeling_bg_sp.webp);
  }

  .p-feeling__head {
    padding-top: 10vw;
    margin-bottom: 7vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-feeling__en {
    font-size: 20vw;
  }

  .p-feeling__sub {
    margin-top: 2vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-feeling__ttl {
    padding-left: 0;
    font-size: 4.5vw;
    margin-top: 1vw;
  }

  .p-feeling__list {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 94%;
    padding-bottom: 30px;
  }

  .p-feeling__item:nth-child(2),
  .p-feeling__item:nth-child(4) {
    margin-top: 0;
  }

  .p-feeling__bubble {
    padding: 5vw 7vw 9vw;
  }

  .p-feeling__item {
  aspect-ratio: 298/120;
  width: 80%;
}

  .p-feeling__item:nth-child(odd) .p-feeling__bubble {
    background-image: url("../img/fukidashi_sp01.webp");
  }

  .p-feeling__item:nth-child(odd){
margin: 0 auto 0 0;
  }

  .p-feeling__item:nth-child(even) .p-feeling__bubble {
    background-image: url("../img/fukidashi_sp02.webp");
  }

  .p-feeling__item:nth-child(even) {
    margin: 0 0 0 auto;
  }

  .p-feeling__bubble-ttl {
    font-size: 4vw;
  }

  .p-feeling__bubble-txt {
    font-size: 3vw;
    line-height: 1.55;
  }

  .p-feeling__action {
    padding: 0 4% 50px;
    background: url("../img/blue_bg_sp.webp") center / cover no-repeat var(--color-blue);
  }

  .p-feeling__ribbon {
max-width: 100%;
    margin: -7vw auto 0;
  }

  .p-feeling__msg {
    font-size: 5.5vw;
    margin-bottom: 3vw;
    margin-top: -6vw;
  }

  .p-feeling__msg strong {
    display: block;
   font-size: 8vw;
    margin: 1vw 0;
  }

  .p-feeling__arrow img {
    width: 9vw;
  }

  .p-feeling__arrow{
    margin-bottom: 3vw;
  }

  .p-feeling__final {
    font-size: 6vw;
  }
}

/* ----- p-system ----- */

.p-system {
  position: relative;
  background-color: #d4eaf5;
  padding: 100px 0 135px;
}

.p-system__head {
  position: relative;
  margin-bottom: 30px;
  padding-top: 40px;
}

.p-system__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 107px;
  font-weight:700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.p-system__sub {
position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-system__ttl {
  position: relative;
  z-index: 1;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
}

.p-system__lead {
margin: 0 auto 36px;
  font-size: 20px;
  line-height: 1.9;
  font-weight: bold;
}

.p-system__cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
}

.p-system__card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  /* shadow */
  box-shadow: 0 0px 15px rgba(255, 117, 43, 0.7);
  border-radius: 14px;
  padding: 20px 22px;
  width: calc(50% - 32px);
}

.p-system__card-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.p-system__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-system__card-body {
  flex: 1;
}

.p-system__card-label {
display: inline-block;
  background-color: var(--color-orange);
  color: #fff;
  padding: 3px 35px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.p-system__card-ttl {
margin-bottom: 6px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-orange);
}

.p-system__card-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.p-system__plus {
  flex-shrink: 0;
  align-self: center;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
}

.p-system__conclusion {
  text-align: center;
  margin-top: -35px;
}

.p-system__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
width: 104px;
  height: 104px;
  border-radius: 50%;
  background-color: var(--color-orange);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1;
}

.p-system__badge-txt {
font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.p-system__badge-arrow {
display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

.p-system__final {
font-size: 30px;
  font-weight: 700;
  line-height: 1.55;
  background: linear-gradient(90deg, #ff5b8a 0%, #ff5b8a 35%, var(--color-orange) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

@media screen and (max-width: 1024px) {
.p-system__card-label {
  padding: 0.3vw 2vw;
  font-size: 2vw;
}
.p-system__card-ttl {
  font-size: 2vw;
}
}

@media screen and (max-width: 767px) {
  .p-system {
    padding: 50px 0 60px;
  }

  .p-system__head {
    padding-top: 10vw;
    margin-bottom: 7vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-system__en {
    font-size: 20vw;
  }

  .p-system__sub {
    margin-top: 2vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-system__ttl {
    padding-left: 0;
    font-size: 4.5vw;
  }

  .p-system__ttl .u-orange {
    font-size: 7vw;
  }

  .p-system__lead {
margin-bottom: 7vw;
    font-size: 4vw;
    line-height: 1.85;
    width: 94%;
  }

  .p-system__cards {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 94%;
    position: relative;
    z-index: 2;
  }

  .p-system__card {
    width: 100%;
    max-width: 100%;
padding: 5vw;
    gap: 5vw;
  }

  .p-system__card-icon {
    width: 21vw;
  }

  .p-system__card-label {
font-size: 4vw;
    padding: 0.5vw 3vw;
  }

  .p-system__card-ttl {
    font-size: 4.6vw;
  }

  .p-system__card-desc {
    font-size: 4vw;
    line-height: 1.65;
  }

  .p-system__plus {
    font-size: 8vw;
  }

  .p-system__conclusion {
    margin-top: -5vw;
  }

  .p-system__badge {
width: 22vw;
    height: 22vw;
    margin-bottom: 4vw;
    padding-top: 2vw;
  }

  .p-system__badge-txt {
    font-size: 4vw;
    margin-bottom: 0;
  }

  .p-system__final {
    font-size: 6vw;
    line-height: 1.7;
  }

  .p-system__badge-arrow {
  width: 5vw;
  height: 5vw;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  margin-top: 0;
}
}

/* ----- p-why ----- */
.p-why {
  position: relative;
  background-color: #d4eaf5;
  background-image: url("../img/why_bg.webp");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: repeat-y;
  padding: 80px 0 140px;
  overflow: hidden;
  width: 90%;
  margin: 80px auto 0;
}

/* .p-why::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../img/why_bg2.svg") center bottom / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
} */

.p-why__head {
  position: relative;
  margin-bottom: 60px;
  padding-top: 40px;
}

.p-why__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 107px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.p-why__sub {
position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-why__ttl {
position: relative;
  z-index: 1;
  padding-left: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
}

.p-why__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.p-why__item {
  padding: 0 24px;
  border-right: 1px solid #666666;
}

.p-why__item:first-of-type {
  padding-left: 0;
}

.p-why__item:last-child {
  border-right: none;
  padding-right: 0;
}

.p-why__num {
  font-size: 26px;
  font-weight: 700;
  color: rgba(60, 100, 160, 0.55);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 0.3em;
}

.p-why__num .num{
  font-size: 40px;
}

.p-why__item-ttl {
margin-bottom: 12px;
  font-size: 25px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.4;
}

.p-why__item-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
}

.p-why__arrow {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 30px 0 18px;
}

.p-why__arrow img {
  width: 36px;
  margin: 0 auto;
  animation: arrowFloat 1s ease-in-out infinite;
  will-change: transform;
}

.p-why__statement {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
  background: linear-gradient(90deg, #ff5b8a 0%, #ff5b8a 35%, var(--color-orange) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

/* .p-why__statement .u-pink {
  background: inherit;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
} */

@media screen and (max-width: 1250px) {
.p-why__item {
  padding: 0 2vw;;
}
.p-why__item-ttl {
  font-size: 2vw;
}
.p-why__item-desc {
  font-size: 16px;
}
.p-why__statement {
  font-size: 2.8vw;
}
}

@media screen and (max-width: 767px) {
  .p-why {
    padding: 5vw 0 30vw;
    width: 94%;
  margin: 4vw auto 0;
  }

  .p-why__head {
    padding-top: 10vw;
    margin-bottom: 0;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-why__en {
    font-size: 20vw;
  }

  .p-why__sub {
    margin-top: 2vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-why__ttl {
    padding-left: 0;
    margin-top: 1vw;
    font-size: 4.5vw;
  }

  .p-why__ttl .u-orange {
    font-size: 7vw;
  }

  .p-why__list {
    grid-template-columns: 1fr;
    max-width: 94%;
    gap: 0;
    margin-bottom: 0;
  }

  .p-why__item {
    padding: 5vw 0;
    border-right: none;
    border-radius: 0;
    border-bottom: 1px solid #666;
  }

  .p-why__num {
    font-size: 5vw;
    margin-bottom: 3vw;
  }

  .p-why__num .num {
  font-size: 8vw;
}

  .p-why__item-ttl {
font-size: 6vw;
    margin-bottom: 2vw;
  }

  .p-why__item-desc {
    font-size: 4.2vw;
    line-height: 1.7;
  }

  .p-why__arrow {
    margin: -4vw 0 4vw;
  }

  .p-why__arrow img {
    width: 9vw;
  }

  .p-why__statement {
    font-size: 6vw;
    line-height: 1.7;
  }

  .p-why__item:last-child{
    border-bottom: none;
  }
}

/* ----- p-merit ----- */
.p-merit {
  position: relative;
  background-image: url("../img/merit_bg.svg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0 130px;
  margin-top: -150px;
  overflow: hidden;
}

.p-merit__head {
  position: relative;
  margin-bottom: 40px;
  padding-top: 50px;
}

.p-merit__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 107px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.p-merit__ttl {
  position: relative;
  z-index: 1;
margin-top: 10px;
  font-size: 35px;
  font-weight: 700;
  color: #fff;
}

.p-merit__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 0 auto 32px;
}

.p-merit__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #E8FFFF;
  border-radius: 30px;
  padding: 26px 16px 22px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.p-merit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  height: 80px;
  margin-bottom: 14px;
}

.p-merit__icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.p-merit__txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
}

.p-merit__cta {
  background-color: #fff;
  border-radius: 999px;
  padding: 15px 32px 18px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-blue);
  margin: 0 auto 16px;
  max-width: 626px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.p-merit__cta::before {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 20%;
 width: 180%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 230, 80, 0.45) 0%, rgba(255, 230, 80, 0.22) 35%, rgba(255, 230, 80, 0) 70%);
  filter: blur(10px);
  z-index: -1;
}
.p-merit__note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  width: 626px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
.p-merit__txt {
  font-size: 17px;
}
}

@media screen and (max-width: 767px) {
  .pc{
    display: none;
  }
  .p-merit {
    background-image: url("../img/merit_bg_sp.webp");
    padding: 30vw 0 15vw;
    margin-top: -35vw;
  }

  .p-merit__head {
    padding-top: 10vw;
    margin-bottom: 7vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-merit__en {
    font-size: 20vw;
  }

  .p-merit__ttl {
    margin-top: 3vw;
    font-size: 4.5vw;
    line-height: 1.5;
  }

  .p-merit__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    max-width: 94%;
    margin-bottom: 6vw;
  }

  .p-merit__item {
padding: 4vw 2vw;
    border-radius: 4vw;
  }

  .p-merit__icon {
height: 14vw;
    margin-bottom: 3vw;
  }

  .p-merit__txt {
    font-size: 4vw;
    line-height: 1.55;
  }

  .p-merit__cta {
padding: 4vw;
    font-size: 5.6vw;
    max-width: 94%;
    aspect-ratio: 1090/267;
    background-image: url(../img/hayai_bg_sp.webp);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
  }

  .p-merit__note {
    font-size: 3.12vw;
    width: 94%;
  }
}

/* ----- p-difference ----- */
.p-difference {
  position: relative;
  background-color: #d8eef5;
  background-image: url("../img/diff_bg.webp");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 120px;
  overflow: hidden;
}

.p-difference__head {
  position: relative;
  margin-bottom: 22px;
  padding-top: 40px;
}

.p-difference__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 107px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.p-difference__sub {
position: relative;
  z-index: 1;
  margin-top: 23px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-difference__ttl {
  position: relative;
  z-index: 1;
  padding-left: 0;
  margin-top: 16px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}

.p-difference__lead {
  margin-bottom: 29px;
  font-size: 20px;
  line-height: 1.85;
  color: #333;
}

.p-difference__table-wrap {
  margin: 0 auto;
}

.p-difference__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
  table-layout: fixed;
}

.p-difference__table th,
.p-difference__table td {
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  border-radius: 4px;
  vertical-align: middle;
  line-height: 1.5;
  width: 22%;
  /* shadow */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-difference__table thead th {
  background-color: #808080;
  color: #fff;
  font-size: 18px;
  padding: 6px 10px;
  height: 30px;
}

.p-difference__table thead th:first-child {
  background-color: #fff;
  color: var(--color-blue);
  font-size: 20px;
  padding: 6px 10px;
}

.p-difference__table thead th:nth-child(2) {
  background-color: var(--color-orange);
  position: relative;
  width: 31%;
}

.p-difference__table thead th:nth-child(2)::after{
  width: 100%;
  height: 63px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-orange);
  display: block;
  border-radius: 5px;
}

.p-difference__table thead th:nth-child(2)::before{
  content: "SMARG Wealth";
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 3;
}

.p-difference__table tbody th {
  background-color: #fff;
  color: var(--color-blue);
  font-size: 20px;
}

.p-difference__table tbody td {
  background-color: #fff;
  color: #333;
  font-size: 20px;
}

.p-difference__table tbody td:nth-child(2) {
  background-color: #ffffcc;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 23px;
}

.p-difference__conclusion {
  text-align: center;
  margin-top: 36px;
}

.p-difference__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background-color: var(--color-orange);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1;
}

.p-difference__badge-txt {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.p-difference__badge-arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -2px;
}

.p-difference__final {
  font-size: 30px;
  font-weight: 800;
  /* テキストグラデーション */
  background: linear-gradient(90deg, #ff5b8a 0%, #ff5b8a 20%, var(--color-orange) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  line-height: 1.7;
}

@media screen and (max-width: 1250px) {
.p-difference__table thead th {
  font-size: 18px;
}
.p-difference__table tbody td {
  font-size: 18px;
}
.p-difference__table tbody td:nth-child(2) {
  font-size: 19px;
}
.p-difference__table tbody th {
  font-size: 18px;
}
.p-difference__table th, .p-difference__table td {
  padding: 14px 5px;
}
}

@media screen and (max-width: 767px) {
  .p-difference {
    background-image: url("../img/diff_bg_sp.webp");
    padding: 50px 0 60px;
  }

  .p-difference__head {
    padding-top: 10vw;
    margin-bottom: 4vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-difference__en {
    font-size: 18vw;
  }

  .p-difference__sub {
    margin-top: 1vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-difference__ttl {
    padding-left: 0;
    font-size: 4.5vw;
  }

  .p-difference__ttl .u-orange {
    font-size: 7vw;
  }

  .p-difference__lead {
margin-bottom: 20px;
    font-size: 4vw;
    line-height: 1.7;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-difference__table {
    border-spacing: 3px;
  }

  .p-difference__table th,
  .p-difference__table td {
    padding: 8px 4px;
    line-height: 1.4;
  }

  .p-difference__table thead th:nth-child(2)::before {
font-size: 4vw;
    top: 1.7vw;
    transform: translate(-50%, 0);
}

.p-difference__table thead th:nth-child(2)::after {
  height: 15vw;
}

  .p-difference__table thead th {
    font-size: 3.4vw;
    padding: 8px 4px;
  }

    .p-difference__table tbody td:nth-child(2) {
    font-size: 3.5vw;
  }

  .p-difference__table tbody th {
    font-size: 3.2vw;
  }

  .p-difference__table tbody td {
    font-size: 3.2vw;
  }

  .p-difference__table thead th:first-child {
  font-size: 3.2vw;
}

  .p-difference__conclusion {
    margin-top: 4vw;
  }

  .p-difference__badge {
width: 22vw;
    height: 22vw;
    margin-bottom: 3vw;
    padding-top: 2vw;
  }

  .p-difference__badge-txt {
    font-size: 3.6vw;
  }

  .p-difference__badge-arrow {
  width: 4vw;
  height: 4vw;
  margin-top: -1vw;
}

  .p-difference__final {
font-size: 6vw;
    line-height: 1.5;
  }
}

@media screen and (max-width: 550px) {
  .p-difference__table thead th:nth-child(2)::before {
    top: 2.5vw;
  }
}

@media screen and (max-width: 420px) {
  .p-difference__table thead th:nth-child(2)::before {
    top: 3.2vw;
  }
}

/* ----- p-reason ----- */
.p-reason {
  position: relative;
  background-color: #fff;
  background-image: url("../img/reason_bg.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
  padding: 80px 0 260px;
  overflow: hidden;
}

.p-reason::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20.5vw;
  background-size: contain;
  background: url("../img/point_bg.svg") center bottom / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}

.p-reason__head {
  position: relative;
  margin-bottom: 50px;
  padding-top: 40px;
}

.p-reason__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 115px;
  font-weight: 700;
  color: rgba(3,110,184,0.3);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.p-reason__sub {
position: relative;
  z-index: 1;
  margin-top: 30px;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-reason__ttl {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.p-reason__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.p-reason__item {
  display: flex;
  align-items: center;
  gap: 36px;
  background-color: #93d0e366;
  border-radius: 20px;
  padding: 0 5% 24px;
}

.p-reason__item:nth-child(even) {
  flex-direction: row-reverse;
}

.p-reason__img {
  flex: 0 0 46%;
}

.p-reason__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: -20px;
}

.p-reason__body {
  flex: 1;
}

.p-reason__item-ttl {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(90deg, #ff5b8a 0%, #ff5b8a 35%, var(--color-orange) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

.p-reason__num {
  flex-shrink: 0;
  font-size: 47px;
  line-height: 1.1;
  background: inherit;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

.p-reason__bar {
flex-shrink: 0;
  align-self: stretch;
  width: 2px;
  margin: 0.1em 0.3em;
  background: linear-gradient(90deg, #ff5b8a 0%, #ff5b8a 35%, var(--color-orange) 100%);
}

.p-reason__txt {
  display: inline;
  background: inherit;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.p-reason__desc {
  font-size: 20px;
  line-height: 1.85;
  color: #333;
}

@media screen and (max-width: 1250px) {
.p-reason__item-ttl {
  font-size: 2.5vw;
}
.p-reason__num {
  font-size: 3.5vw;
}
.p-reason__desc {
  font-size: 18px;
}
}

@media screen and (max-width: 900px) {
.p-reason__img img {
  margin-top: -60px;
}
.p-reason__item {
  padding: 20px 4% 24px;
}
.p-reason__item:nth-child(2) .p-reason__img img {
  margin-top: -80px;
}
.p-reason__item:nth-child(3) .p-reason__img img,
.p-reason__item:nth-child(4) .p-reason__img img {
  margin-top: -40px;
}
}

@media screen and (max-width: 767px) {
   .p-reason__img img {
    margin-top: 0;
  }
    .p-reason__item:nth-child(2) .p-reason__img img {
    margin-top: 0;
  }
  .p-reason__item:nth-child(3) .p-reason__img img, .p-reason__item:nth-child(4) .p-reason__img img{
    margin-top: 0;
  }
  .p-reason {
    background-image: url("../img/reason_bg_sp.webp");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 7vw 0 28vw;
  }

  .p-reason::after {
  height: 28.5vw;
  background: url("../img/point_bg.svg") center bottom / 140% 100% no-repeat;
}

  .p-reason__head {
    padding-top: 10vw;
    margin-bottom: 7vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-reason__en {
    font-size: 20vw;
  }

  .p-reason__sub {
    margin-top: 3vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-reason__ttl {
    padding-left: 0;
    font-size: 5vw;
  }

  .p-reason__ttl .u-orange {
    font-size: 7vw;
  }

  .p-reason__list {
gap: 6vw;
    max-width: 94%;
  }

  .p-reason__item,
  .p-reason__item:nth-child(even) {
    flex-direction: column;
    gap: 3vw;
    padding: 4vw 4vw 5vw;
    border-radius: 4vw;
  }

  .p-reason__img {
    flex: 0 0 auto;
    width: 100%;
  }

  .p-reason__body {
    width: 100%;
  }

  .p-reason__item-ttl {
    font-size: 5.5vw;
    margin-bottom: 2vw;
  }

  .p-reason__num {
    font-size: 10vw;
  }

  .p-reason__desc {
    font-size: 4vw;
    line-height: 1.75;
  }
}

/* ----- p-cta (standalone CTA section) ----- */
.p-cta {
  background-color: #fff;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .p-cta {
    padding: 40px 0;
  }
}

/* ----- p-about ----- */
.p-about {
  position: relative;
  background-color: #effcfd;
  padding: 130px 0;
  overflow: hidden;
}

.p-about__head {
  position: relative;
  margin-bottom: 36px;
  padding-top: 40px;
}

.p-about__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 107px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.p-about__sub {
position: relative;
  z-index: 1;
  margin-top: 22px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-about__ttl {
  position: relative;
  z-index: 1;
  padding-left: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.55;
}

.p-about__ttl .u-orange{
  font-size: 40px;
}

.p-about__body {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
}

.p-about__img {
  flex: 0 0 38%;
}

.p-about__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.p-about__content {
  flex: 1;
}

.p-about__reason + .p-about__reason {
  margin-top: 24px;
}

.p-about__reason-num {
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 700;
  color: rgba(60, 100, 160, 0.6);
  letter-spacing: 0.01em;
  line-height: 1;
}

.p-about__reason-num .num{
  font-size: 40px;
}

.p-about__reason-ttl {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-blue);
}

.p-about__reason-desc {
  font-size: 18px;
  line-height: 1.85;
  color: #333;
}

.tab-only{
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
.tab-only{
  display: inline;
}
}

@media screen and (max-width: 767px) {
  .p-about {
    padding: 8vw 0 17vw;
  }

  .p-about__img img{
    border-radius: 0;
  }

  .p-about__head {
    padding-top: 10vw;
    margin-bottom: 7vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-about__en {
    font-size: 20vw;
  }

  .p-about__sub {
    margin-top: 2vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-about__ttl {
    padding-left: 0;
    font-size: 4.5vw;
  }

  .p-about__ttl .u-orange {
    font-size: 7vw;
  }

  .p-about__body {
    flex-direction: column;
    gap: 22px;
  }

  .p-about__img {
    flex: 0 0 auto;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-about__content {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    gap: 4vw;
    display: grid;
  }

  .p-about__reason + .p-about__reason {
    margin-top: 18px;
  }

  .p-about__reason-num {
    font-size: 4.6vw;
  }

  .p-about__reason-num .num {
  font-size: 8vw;
}

  .p-about__reason-ttl {
font-size: 6vw;
    margin-bottom: 3vw;
  }

  .p-about__reason-desc {
    font-size: 4vw;
    line-height: 1.8;
  }
}

/* ----- p-voice ----- */
.p-voice {
  position: relative;
  background-color: #D7F7FA;
  padding: 130px 0;
  overflow: hidden;
  border-radius: 60px;
  margin-top: -60px;
  margin-bottom: -60px;
  z-index: 3;
}

.p-voice__head {
  position: relative;
  margin-bottom: 50px;
  padding-top: 40px;
}

.p-voice__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 107px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.p-voice__sub {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-voice__ttl {
  position: relative;
  z-index: 1;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
}

.p-voice__ttl .u-orange {
  font-size: 40px;
}

.p-voice__slider {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding-top: 60px;
}

/* 767px以上 */
@media screen and (min-width: 768px) {
  .p-voice__slider {
    overflow: visible;
  }
}

.p-voice__list {
  align-items: stretch;
}

.p-voice__item {
  height: auto;
  display: flex;
}

.p-voice__card {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 0 14px;
  padding: 100px 22px 24px;
  box-shadow: 0 6px 18px rgba(20, 50, 90, 0.2);
}

.p-voice__avatar {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background-color: #c8e4f4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.p-voice__avatar img {
  width: 100%;
  height: 100%;
}

.p-voice__quote {
  background: linear-gradient(135deg, #ffe9b3 0%, #fffecc 50%, #ffeb8c 100%);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 10px;
  position: relative;
  padding-left: 50px;
}

.p-voice__quote img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  position: absolute;
  left: 18px;
  top: 13px;
}

.p-voice__demo {
  font-size: 15px;
  color: #808080;
}

.p-voice__body {
  font-size:18px;
  line-height: 1.85;
  color: #333;
}

.p-voice__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.p-voice__prev,
.p-voice__next {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  transition: opacity 0.2s ease;
}

.p-voice__prev:hover,
.p-voice__next:hover {
  opacity: 0.75;
}

.p-voice__prev img,
.p-voice__next img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 2枚の画像（青/白）を同じ位置に重ねる */
.p-voice__nav-active,
.p-voice__nav-disabled {
  position: absolute;
  top: 0;
  left: 0;
}

/* prev側は両方の画像を水平反転（next_btn・prev_btn は元々右/左向きのため） */
.p-voice__prev .p-voice__nav-active {
  transform: scaleX(-1);
}

/* next側のdisabled画像（prev_btn=元々左向き）は反転して右向きに */
.p-voice__next .p-voice__nav-disabled {
  transform: scaleX(-1);
}

/* 通常時：白ボタンを隠して青ボタンを表示 */
.p-voice__nav-disabled {
  opacity: 0;
}

/* 端まで来た時：青ボタンを隠して白ボタンを表示 */
.swiper-button-disabled .p-voice__nav-active {
  opacity: 0;
}
.swiper-button-disabled .p-voice__nav-disabled {
  opacity: 1;
}

.p-voice__prev.swiper-button-disabled,
.p-voice__next.swiper-button-disabled {
  cursor: default;
}

.p-voice__prev.swiper-button-disabled:hover,
.p-voice__next.swiper-button-disabled:hover {
  opacity: 1;
}

.p-voice__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.p-voice__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #b6d3e3;
  opacity: 1;
  transition: background-color 0.2s ease;
}

.p-voice__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-blue);
}

.p-voice__note {
  text-align: center;
  font-size: 15px;
}

@media screen and (max-width: 1200px) {
.p-voice__card {
  padding: 100px 15px 24px;
}
.p-voice__quote {
  padding: 12px 14px;
  padding-left: 40px;
}
.p-voice__quote {
  font-size: 16px;
}
.p-voice__quote img {
  width: 20px;
  height: 20px;
  left: 13px;
}
.p-voice__demo {
  font-size: 13px;
}
.p-voice__body {
  font-size: 15px;
}
}

@media screen and (min-width: 768px) {
  .p-voice__controls {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-voice {
    padding: 7vw 3%;
    border-radius: 7vw;
    margin-top: -7vw;
  }

  .p-voice__head {
    padding-top: 10vw;
    margin-bottom: 2vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-voice__en {
    font-size: 20vw;
  }

  .p-voice__sub {
    margin-top: 2vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-voice__ttl {
    padding-left: 0;
    font-size: 4.5vw;
  }

  .p-voice__ttl .u-orange {
    font-size: 7vw;
  }

  .p-voice__slider {
    padding-top: 12vw;
  }

  .p-voice__card {
    padding: 23vw 4vw 4vw;
    box-shadow: none;
  }

  .p-voice__avatar {
top: -9vw;
    width: 28vw;
    height: 28vw;
  }

  .p-voice__quote {
    font-size: 4.6vw;
    padding: 3vw 3vw 3vw 11vw;
  }

  .p-voice__quote img {
    width: 6vw;
    height: 6vw;
    left: 3vw;
    top: 3vw;
  }

  .p-voice__demo {
    font-size: 3.6vw;
  }

  .p-voice__body {
    font-size: 4.2vw;
    line-height: 1.8;
  }

  .p-voice__prev, .p-voice__next {
    width: 10vw;
    height: 10vw;
    left: auto;
    right: 0;
    position: absolute;
  }

  .p-voice__prev{
    left: auto;
  right: 11vw;
  }

  .p-voice__controls{
    position: relative;
  }

  .p-voice__note {
    font-size: 3vw;
    text-align: left;
    margin-top: 6vw;
  }

  .p-voice__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  position: absolute!important;
  left: 0!important;
  top: 5vw!important;
  bottom: auto!important;
  top: -0.5vw!important;
  width: 73%!important;
}

.p-voice__pagination .swiper-pagination-bullet {
  width: 21vw;
  border-radius: 2vw;
}

.p-voice__slider {
  margin: 0 auto 11vw;
}
}

/* ----- p-privilege ----- */
.p-privilege {
  position: relative;
  background-color: var(--color-blue);
  background-image: url("../img/pri_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 180px 0 120px;
  overflow: hidden;
}

.p-privilege__head {
  position: relative;
  margin-bottom: 18px;
  padding-top: 40px;
}

.p-privilege__en {
position: absolute;
  top: 0;
  left: 0;
  font-size: 115px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.p-privilege__sub {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.p-privilege__ttl {
  position: relative;
  z-index: 1;
  padding-left: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
}

.p-privilege__highlight {
  color: #ffff00;
  font-size: 40px;
}

.p-privilege__lead {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
}

.p-privilege__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto 50px;
}

.p-privilege__card {
  display: flex;
  align-items: center;
  gap: 22px;
  background-color: #EFFCFD;
  border-radius: 20px;
  padding: 18px 30px;
  min-height: 178px;
  /* shadow */
  box-shadow: 0 6px 18px rgba(20, 50, 90, 0.2);
}

.p-privilege__icon {
  flex-shrink: 0;
  width: 100px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-privilege__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.p-privilege__body {
  flex: 1;
}

.p-privilege__label {
  display: block;
  background-color: var(--color-orange);
  color: #fff;
  padding: 3px 18px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}

.p-privilege__card-ttl {
  margin-bottom: 4px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-orange);
}

.p-privilege__card-desc {
  font-size: 18px;
  line-height: 1.65;
}

.p-privilege__steps-lead {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.p-privilege__steps-lead::before,
.p-privilege__steps-lead::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 50px;
  background-color: var(--color-orange);
  vertical-align: middle;
  margin: 0 30px 0 0;
  transform: rotate(-20deg);
}

.p-privilege__steps-lead::after {
  transform: rotate(20deg);
  margin: 0 0 0 30px;
}

.p-privilege__steps-lead strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-orange);
  margin: 0 4px;
}

.p-privilege__steps-lead strong .num{
  font-size: 45px;
}

.p-privilege__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.p-privilege__step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-privilege__step-head::after{
width: 150px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue) 0%, transparent 100%);
  content: "";
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translateY(-50%);
  z-index: 1;
  display: block;
}

.p-privilege__step:last-child .p-privilege__step-head::after {
  display: none;
}

.p-privilege__step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #b8d8f0 0%, #e1ffcd 45%, #ffd31d 100%);
  border-radius: 30px;
  padding: 8px 16px;
  margin-bottom: 8px;
  justify-content: center;
  position: relative;
}

.p-privilege__step-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.p-privilege__step-icon {
  display: flex;
  align-items: center;
}

.p-privilege__step-icon img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  object-position: center;

}

.p-privilege__step-desc {
padding: 0;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

@media screen and (max-width: 1200px) {
.p-privilege__card-ttl {
  font-size: 20px;
}
.p-privilege__step-desc {
  font-size: 15px;
}
.p-privilege__step-head::after {
    width: 100px;
    left: 92%;
}
}

@media screen and (max-width: 767px) {
  .p-privilege {
    padding: 20vw 0 15vw;
  }

  .p-privilege__head {
    padding-top: 10vw;
    margin-bottom: 4vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-privilege__en {
    font-size: 20vw;
  }

  .p-privilege__sub {
    margin-top: 2vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-privilege__ttl {
    padding-left: 0;
    font-size: 4.5vw;
  }

  .p-privilege__highlight {
    font-size: 7vw;
  }

  .p-privilege__lead {
    margin-bottom: 4vw;
    font-size: 4vw;
    line-height: 1.7;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-privilege__cards {
    gap: 2vw;
    max-width: 94%;
    margin-bottom: 7vw;
  }

  .p-privilege__card {
    padding: 15vw 3vw 4vw;
    gap: 2vw;
    border-radius: 3vw;
    flex-direction: column;
    position: relative;
  }

  .p-privilege__icon {
    width: auto;
  }

.p-privilege__icon img {
    max-height: 13vw;
  }

  .p-privilege__label {
    font-size: 4vw;
    padding: 1vw 4vw;
    position: absolute;
    width: calc(100% - 6vw);
    top: 3vw;
    left: 3vw;
  }

  .p-privilege__card-ttl {
font-size: 4.6vw;
    line-height: 1.3
  }

  .p-privilege__card-desc {
    font-size: 4.2vw;
    line-height: 1.55;
  }

  .p-privilege__steps-lead {
    font-size: 4.2vw;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .p-privilege__steps-lead strong {
    font-size: 1.8rem;
  }

  .p-privilege__steps-lead::before,
  .p-privilege__steps-lead::after {
    height: 15vw;
    margin: 0;
    position: absolute;
    top: 3vw;
  }

  .p-privilege__steps-lead::before{
    left: -6vw;
  }
  .p-privilege__steps-lead::after {
    right: -6vw;
  }
  .p-privilege__steps {
    grid-template-columns: 1fr;
    gap: 3vw;
    max-width: 94%;
    position: relative;
    z-index: 2;
    margin-top: 5vw;
  }

  .p-privilege__steps::before{
    content: "";
    position: absolute;
    top: 1vw;
    left: 11.5vw;
    width: 2px;
    height: calc(100% - 2vw);
    background: linear-gradient(180deg, var(--color-blue) 0%, transparent 100%);
    z-index: -1;
  }

  .p-privilege__step{
    display: flex;
    gap: 2vw;
    flex-direction: row;
    align-items: center;
  }

  .p-privilege__step-head{
    width: 35%;
    margin-bottom: 0;
  }

  .p-privilege__step-desc{
    width: calc(65% - 2vw);
    font-size: 3.8vw;
  }

  .p-privilege__step-icon img {
  height: 7vw;
  width: 7vw;
}

.p-privilege__step-num{
  font-size: 8vw;
  line-height: 1;
}

  /* .p-privilege__step {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #fff8b5 0%, #f9d65f 100%);
    border-radius: 6px;
    padding: 6px 14px;
  }

  .p-privilege__step-head {
    flex-shrink: 0;
    background: none;
    padding: 0;
    margin-bottom: 0;
    min-width: 60px;
  }

  .p-privilege__step-num {
    font-size: 1.6rem;
  }

  .p-privilege__step-icon img {
    height: 20px;
  }

  .p-privilege__step-desc {
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #2a2a2a;
  } */

  .p-privilege__body {
  flex: initial;
  width: 100%;
}

.p-privilege__steps-lead strong .num {
  font-size: 8vw;
  line-height: 1;
}

.p-privilege__step-head::after{
  display: none;
}
}

/* ----- p-faq ----- */
.p-faq {
  position: relative;
  background-color: #fff;
  background-image: url("../img/q_bg.webp");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: repeat-y;
  padding: 100px 0 160px;
  overflow: hidden;
}

.p-faq__head {
  position: relative;
  margin-bottom: 30px;
  padding-top: 40px;
}

.p-faq__en {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 107px;
  font-weight: 700;
  color: rgba(3,110,184,0.3);
  line-height: 1;
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.p-faq__sub {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-blue);
}

.p-faq__ttl {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-orange);
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

.p-faq__item {
  border-radius: 6px;
  overflow: hidden;
}

.p-faq__q {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, #99DDF4 0%, #dafbc4 45%, #ffd31d 100%);
  padding: 14px 22px;
  cursor: pointer;
  list-style: none;
}

.p-faq__q::-webkit-details-marker {
  display: none;
}

.p-faq__q-mark {
flex-shrink: 0;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1;
  letter-spacing: 0.02em;
}

.p-faq__q-text {
flex: 1;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.p-faq__q-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.p-faq__q-icon::before,
.p-faq__q-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #1a1a1a;
  transform: translate(-50%, -50%);
}

.p-faq__q-icon::before {
  width: 18px;
  height: 2px;
}

.p-faq__q-icon::after {
  width: 2px;
  height: 18px;
}

.p-faq__item[open] .p-faq__q-icon {
  transform: rotate(45deg);
}

.p-faq__a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(193, 234, 253, 0.6);
  padding: 16px 22px;
}

.p-faq__a-mark {
  flex-shrink: 0;
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  color: var(--color-orange);
  line-height: 1;
  letter-spacing: 0.01em;
}

.p-faq__a-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.85;
}

@media screen and (max-width: 767px) {
  .p-faq {
    background-image: url("../img/q_bg_sp.webp");
    padding: 12vw 0 15vw;
  }

  .p-faq__head {
    padding-top: 10vw;
    margin-bottom: 7vw;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-faq__en {
    font-size: 20vw;
  }

  .p-faq__sub {
    margin-top: 2.5vw;
    padding-left: 0;
    font-size: 4.8vw;
  }

  .p-faq__ttl {
    padding-left: 0;
    font-size: 5vw;
  }

.p-faq__list {
    gap: 5vw;
    max-width: 94%;
  }

  .p-faq__q {
padding: 4vw 3vw;
    gap: 2vw;
  }

  .p-faq__q-mark {
    font-size: 7vw;
  }

  .p-faq__q-text {
    font-size: 4.4vw;
    line-height: 1.5;
  }

  .p-faq__q-icon {
    width: 18px;
    height: 18px;
  }

  .p-faq__q-icon::before {
    width: 14px;
  }

  .p-faq__q-icon::after {
    height: 14px;
  }

  .p-faq__a {
padding: 4vw 3vw;
    gap: 2vw;
  }

  .p-faq__a-mark {
    font-size: 7vw;
  }

  .p-faq__a-text {
    font-size: 4vw;
    line-height: 1.75;
  }
}

/* ----- Footer ----- */
.l-footer {
  background-color: var(--color-blue);
  padding: 50px 0 30px;
  color: #fff;
}

.l-footer__info {
  max-width: 720px;
  margin: 0 auto 24px;
}

.l-footer__row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 8px;
  border-bottom: 1px solid #fff;
  position: relative;
}

.l-footer__row::before{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 190px;
  height: 1px;
  background-color: var(--color-orange);
}

.l-footer__label {
  flex: 0 0 160px;
  font-size: 15px;
}

.l-footer__value {
  flex: 1;
  font-size: 15px;
  margin: 0;
  padding-left: 20px;
}

.l-footer__copyright {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 5vw 3% 37vw;
  }

  .l-footer__row {
    gap: 5vw;
    padding: 4vw 2vw;
  }

  .l-footer__row::before{
    width: 20vw;
  }

  .l-footer__label {
    flex: 0 0 20vw;
    font-size: 3.9vw;
  }

  .l-footer__value {
    font-size: 3.9vw;
    line-height: 1.6;
    padding-left: 0;
  }

  .l-footer__copyright {
    font-size: 3vw;
  }
}

/* ----- p-fixed-btn (SP-only floating CTA) ----- */
.p-fixed-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-fixed-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 90;
    transition: opacity 0.3s ease;
  }

  .p-fixed-btn img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  }
}

/* ==========================================================================
   Object - Component
   ========================================================================== */

/* ----- c-cta ----- */
.c-cta {
  text-align: center;
  padding: 60px 0;
  background-color: #fff;
}

.c-cta__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 80px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 942px;
}

.c-cta__item {
  max-width: 431px;
  width: 100%;
  border-radius: 10px;
}

.c-cta__item img{
  border-radius: 13px;
}

.c-cta__caution {
  max-width: 431px;
  margin: 0 auto;
}

.c-cta__caution img {
  width: 100%;
}

.c-cta__btn {
  display: block;
  border-radius: 100vmax;
  box-shadow: 0 8px 18px rgba(20, 50, 90, 0.18);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
  will-change: transform;
}

.c-cta__btn:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 24px rgba(20, 50, 90, 0.25);
}

.c-cta__btn:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 4px;
}

.c-cta__btn img {
  width: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .c-cta__btn {
    transition: none;
  }
  .c-cta__btn:hover {
    transform: none;
  }
}

.c-cta__note {
  margin-top: 18px;
  font-size: 20px;
  color: #666666;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
.c-cta__list {
  align-items: center;
  gap: 40px;
  flex-direction: column;
}
}


@media screen and (max-width: 767px) {
  .c-cta {
  padding: 12vw 0;
}
  .c-cta__list {
    gap: 7vw;
    max-width: 90%;
  }

  .c-cta__item {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .c-cta__caution {
    max-width: 90%;
    margin-bottom: 8px;
  }

  .c-cta__note {
    margin-top: 3vw;
    font-size: 3.5vw;
  }
}

/* ==========================================================================
   Object - Utility
   ========================================================================== */
.u-orange {
  color: var(--color-orange);
}

.u-pink {
  color: #ff5b8a;
}

.u-sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-sp-only {
    display: revert;
  }

  .u-pc-only {
    display: none;
  }

    .sp{
    display: inline-block;
  }
}

/* ==========================================================================
   Animation - js-fadeUp
   ※ .js-anim-ready が html に付いた時だけ初期非表示にする（JS失敗時の保険）
   ========================================================================== */
.js-anim-ready .js-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}

.js-anim-ready .js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadeUp {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Animation - js-fadeDown (上からふわっと降りてくる)
   ========================================================================== */
.js-anim-ready .js-fadeDown {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.js-anim-ready .js-fadeDown.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  /* SP は上の要素と重ならないよう移動量を抑える */
  .js-anim-ready .js-fadeDown {
    transform: translateY(-20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-fadeDown {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Animation - js-fadeUpGroup (PC: 左から順にフェードアップ / SP: 右左右交互スライドイン)
   ========================================================================== */
.js-anim-ready .js-fadeUpGroup > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.js-anim-ready .js-fadeUpGroup.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.js-anim-ready .js-fadeUpGroup.is-visible > *:nth-child(1) { transition-delay: 0s; }
.js-anim-ready .js-fadeUpGroup.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.js-anim-ready .js-fadeUpGroup.is-visible > *:nth-child(3) { transition-delay: 0.4s; }
.js-anim-ready .js-fadeUpGroup.is-visible > *:nth-child(4) { transition-delay: 0.6s; }
.js-anim-ready .js-fadeUpGroup.is-visible > *:nth-child(5) { transition-delay: 0.8s; }
.js-anim-ready .js-fadeUpGroup.is-visible > *:nth-child(6) { transition-delay: 1.0s; }

@media screen and (max-width: 767px) {
  .js-anim-ready .js-fadeUpGroup > *:nth-child(odd) {
    transform: translateX(50px);
  }
  .js-anim-ready .js-fadeUpGroup > *:nth-child(even) {
    transform: translateX(-50px);
  }
  .js-anim-ready .js-fadeUpGroup.is-visible > * {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-fadeUpGroup > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Animation - js-popup (single + group with stagger)
   ========================================================================== */
.js-anim-ready .js-popup,
.js-anim-ready .js-popupGroup > * {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  will-change: opacity, transform;
}

.js-anim-ready .js-popup.is-visible,
.js-anim-ready .js-popupGroup.is-visible > * {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js-anim-ready .js-popupGroup.is-visible > *:nth-child(1) { animation-delay: 0s; }
.js-anim-ready .js-popupGroup.is-visible > *:nth-child(2) { animation-delay: 0.3s; }
.js-anim-ready .js-popupGroup.is-visible > *:nth-child(3) { animation-delay: 0.6s; }
.js-anim-ready .js-popupGroup.is-visible > *:nth-child(4) { animation-delay: 0.9s; }
.js-anim-ready .js-popupGroup.is-visible > *:nth-child(5) { animation-delay: 1.2s; }
.js-anim-ready .js-popupGroup.is-visible > *:nth-child(6) { animation-delay: 1.5s; }
.js-anim-ready .js-popupGroup.is-visible > *:nth-child(7) { animation-delay: 1.8s; }
.js-anim-ready .js-popupGroup.is-visible > *:nth-child(8) { animation-delay: 2.1s; }

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-popup,
  .js-popupGroup > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* .p-feeling__ribbon は元々 PC で translateY(-30px) が掛かっているので、
   popup アニメーションの最終位置をそれに合わせる */
.js-anim-ready .p-feeling__ribbon.js-popup {
  transform: translateY(10px) scale(0.8);
}

.js-anim-ready .p-feeling__ribbon.js-popup.is-visible {
  animation: popupRibbon 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popupRibbon {
  0% {
    transform: translateY(10px) scale(0.8);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-30px) scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-feeling__ribbon.js-popup {
    transform: translateY(-30px);
    opacity: 1;
    animation: none;
  }
}



.p-feeling__item:nth-child(3):last-child {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .p-feeling__item:nth-child(3):last-child {
    margin-left: 0;
    margin-right: auto;
  }
}

.p-system__card-note {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

@media screen and (max-width: 767px) {
  .p-system__card-note {
    margin-top: 2vw;
    font-size: 3vw;
    line-height: 1.6;
  }
}


/* 1件表示時 */
.p-why__list:has(.is-single) {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto 30px;
}

.p-why__item.is-single {
  border-right: none;
  padding: 30px 20px;
  text-align: center;
}

/* タイトル強調 */
.p-why__item.is-single .p-why__item-ttl {
  font-size: 28px;
}

/* 説明文も少し広め */
.p-why__item.is-single .p-why__item-desc {
  font-size: 18px;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {

  .p-why__item.is-single {
    padding: 6vw 4vw;
  }

  .p-why__item.is-single .p-why__item-ttl {
    font-size: 6.5vw;
    line-height: 1.4;
  }

  .p-why__item.is-single .p-why__item-desc {
    font-size: 4.2vw;
    line-height: 1.8;
  }

  .p-why__item.is-single .p-why__num {
    font-size: 5vw;
  }

  .p-why__item.is-single .p-why__num .num {
    font-size: 9vw;
  }
}

.p-feeling__msg ruby {
  ruby-position: over;
}

.p-feeling__msg rt {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .p-feeling__msg rt {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 767px) {
  .l-header {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 0;
  }
}



@media screen and (max-width: 767px) {
.p-fixed-btn {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px; /* LP幅に合わせて調整 */
  z-index: 90;
  background: #036DB8;
  border-radius: 10px 10px 0 0;
  padding: 2px 0; /* ←ここで高さ調整 */
}

/* 上の帯 */
.p-fixed-btn__top img {
  width: 90%;
  display: block;
  margin: 0 auto;
}

/* ボタン */
.p-fixed-btn__cta {
  display: block;
}

.p-fixed-btn__cta img {
  width: 100%;
  display: block;
}
.p-fixed-btn__cta img {
  filter: drop-shadow(0 -4px 10px rgba(0,0,0,0.2));
}

}

/* PC追従CTA */
.p-pc-fixed-btn {
  animation: pcCtaZoom 1.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes pcCtaZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

/* SP追従CTA：ボタンだけアニメーション */
@media screen and (max-width: 767px) {
  .p-fixed-btn {
    animation: none;
  }

  .p-fixed-btn__cta {
    display: block;
    animation: spCtaZoom 1.8s ease-in-out infinite;
    transform-origin: center bottom;
    will-change: transform;
  }

  .p-fixed-btn__cta img {
    width: 100%;
    display: block;
  }
}

@keyframes spCtaZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}


/* PCヘッダーCTAだけ拡大アニメーション */
.l-header__btn a {
  display: block;
  animation: headerCtaZoom 1.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes headerCtaZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}



@media screen and (max-width: 375px) {
  .p-voice__note {
    font-size: 3vw;
    text-align: left;
     margin-top: 18vw;
  }
}