@charset "UTF-8";

/* =========================================
   Base
========================================= */
:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-num: "Alata", sans-serif;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-blue1: #1E366D;
  --color-blue2: #0054A7;
  --color-blue3: #007FC2;
  --color-blue4: #124471;
  --color-blue5: #7BAFD4;
  --color-blue6: #AFE0FF;
  --color-blue7: #EDF9FF;
  --color-blue8: #F2FAFF;
  --color-cyan1: #00AEBB;
  --color-gray1: #B2B2B2;
  --color-gray2: #D9D9D9;
  --color-gray3: #F8F8F8;
  --color-red1: #B11E39;
  --color-red2: #B30000;
  --color-red3: #D6001C;
  --color-yellow1: #FFEA00;
  --color-green1: #0A9602;
  --color-green2: #1D7101;

  --color-text: #333333;
  --color-bg-light: #f5f5f5;
  --color-btn-green: #009900;

  --pm-radius: 18px;
  --pm-contents-width: 1416px;
  --pm-inner-max: 1280px;
  --pm-pad-pc-x: 52px;
  --pm-pad-sp-x: 20px;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.pc-none{
  display: none;
}
@media screen and (max-width: 1350px) {
  html {
    font-size: calc(10 / 1350 * 100vw);
  }
}
@media screen and (max-width: 840px) {
  html {
    font-size: calc(10 / 840 * 100vw);
  }
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.7;
}
.bold{
  font-weight: bold;
}
.marker{
  background: linear-gradient(transparent 85%, var(--color-yellow1) 10%);
  font-weight: bold;
}
.marker2 {
    background: var(--color-yellow1);
    color: var(--color-black);
    font-weight: bold;
    padding: 0 0.5rem;
}
.red{
  color: var(--color-red2);
  font-weight: bold;
}
.red2{
  color: var(--color-red3);
  font-weight: bold;
}
.cyan{
  color: var(--color-cyan1);
  font-weight: bold;
}
.blue{
  color: var(--color-blue3);
  font-weight: bold;
}
.blue2{
  color: var(--color-blue2);
  font-weight: bold;
}

/* =========================================
   Layout / Common
========================================= */
.l-inner {
    max-width: var(--pm-inner-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.c-heading-main {
    font-size: 6rem;
    font-weight: bold;
    text-align: center;
    color: var(--color-blue1);
    margin-bottom: 5rem;
    position: relative;
}

/* =========================================
   Swiper
========================================= */
.swiper-button-prev, .swiper-button-next {
    color: var(--color-white);
    background: #edf9ff;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    transition: background 0.3s;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    opacity: 0.4;
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-blue1);
}
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

/* =========================================
   Header
========================================= */
.l-header {
    width: 100%;
    height: 10rem;
    background: var(--color-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 2rem 0;
}
.l-header__inner {
    /*max-width: 1200px;*/
    max-width: var(--pm-contents-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.l-header__logo{
    width: 38.6rem;
}
.l-header__logo img {
    width: 77.2rem;
}
.l-header__action {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.header-tel {
    text-align: left;
}
.header-tel .label {
    font-size: 1.4rem;
    color: var(--color-blue2);
    font-weight: bold;
    line-height: 1;
    text-align: center;
    margin-bottom: -0.75rem;
}
.header-tel .num {
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--color-blue2);
    line-height: 1.1;
    display: flex;
    align-items: center;
}
.header-tel .num .icon {
    width: 5.3rem;
    height: auto;
    margin-right: 1rem;
}
.header-tel .time {
  font-size: 1.2rem;
  color: var(--color-blue2);
  line-height: 1;
  text-align: center;
  font-weight: 500;
  margin-top: -0.5rem;
}
.header-btn .c-btn-header {
    display: block;
    background: linear-gradient(to bottom, var(--color-green1), var(--color-green2));
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 2rem;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    outline: 3px solid #ffffff;
}

/* =========================================
   KV
========================================= */
.p-hero {
    margin-top: 10rem;
    background: var(--color-white);
    width: 100%;
    position: relative;
}
.p-hero__inner {
    width: 100%;
    text-align: center;
    background: var(--color-black);
}
.p-hero__inner img {
    width: 100%;
    max-width: 1920px;
    vertical-align: bottom;
}

/* FV Bottom Bar */
.p-hero__bottom {
  background: var(--color-white);
  padding: 3.5rem 0;
  position: relative;
  z-index: 10;
}
.p-hero__contact-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    width: 100rem;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 0;
}
.p-hero__contact-bar .illust {
    width: 25.1rem;
    margin-left: -10rem;
    margin-top: -2rem;
}
.p-hero__contact-bar .illust img {
    width: 100%;
    height: auto;
}
.p-hero__contact-bar .tel-area {
    text-align: left;
}
.p-hero__contact-bar .tel-area .label {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-blue2);
    line-height: 1;
    margin-bottom: -0.25rem;
}
.p-hero__contact-bar .tel-area .num {
    font-weight: 900;
    font-size: 4rem;
    color: var(--color-blue2);
    line-height: 1.1;
    display: flex;
    align-items: center;
}
.p-hero__contact-bar .tel-area .num .icon {
    width: 5.3rem;
    margin-right: 0.5rem;
}
.p-hero__contact-bar .tel-area .time {
    font-size: 1.3rem;
    color: var(--color-blue2);
    font-weight: 500;
    margin-top: -0.5rem;
}
.p-hero__contact-bar .btn-area .c-btn-green {
    display: block;
    background: linear-gradient(to bottom, var(--color-green1), var(--color-green2));
    color: var(--color-white);
    padding: 1.5rem 5rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 3.2rem;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    outline: 3px solid #ffffff;
}


/* =========================================
   Troubles
========================================= */
.p-troubles {
    padding: 13rem 0 6rem;
    background: var(--color-blue8);
    margin-top: -10rem;
    position: relative;
    z-index: 2;
}
.p-troubles::after{
  content: "";
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  height: 19.1rem;
  background: inherit;
  margin-bottom: -25rem;
  margin-top: -5rem;
  position: relative;
  z-index: -1;
}

.p-troubles .en-label {
    font-size: 2rem;
    color: var(--color-blue3);
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 0;
    display: block;
    text-align: center;
}
.p-troubles .p-troubles__title {
    font-size: 6rem;
    font-weight: bold;
    text-align: center;
    color: var(--color-blue1);
    margin-bottom: 2rem;
}
.p-troubles__lead {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 5rem;
    text-align: center;
}
.p-troubles__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    width: 113.3rem;
    margin-left: auto;
    margin-right: auto;
}

.p-troubles__left {
    /*width: 45%;*/
}

.p-troubles__left .illust {
    text-align: right;
}
.p-troubles__left .illust img {
    width: 42.1rem;
}

.p-troubles__right {
    /*width: 55%;*/
    flex: 1;
}
.c-list-trouble li {
    background: var(--color-white);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    border-bottom: none;
    color: var(--color-black);
}
.c-list-trouble li .icon {
    margin-right: 1.5rem;
    width: 3.4rem;
}
.c-list-trouble li .red {
    margin: 0 0.3rem;
}

.p-troubles__message {
    text-align: center;
    display: inline-block;
    padding: 0 1rem;
    font-size: 3.6rem;
    font-weight: bold;
    color: var(--color-black);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================================
   Risk
========================================= */
.p-risk {
    padding: 25rem 0 10rem;
    background: url('../img/pc/risks-bg001.png') center/cover no-repeat;
    position: relative;
    color: var(--color-white);
    text-align: center;
}
.p-risk .l-inner {
    position: relative;
    z-index: 2;
}
.p-risk .en-label {
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    display: block;
}
.p-risk__title {
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-yellow1);
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.p-risk__title .icon img {
    width: 9.6rem;
    height: auto;
}
.p-risk__lead {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 5rem;
    line-height: 1.6;
}

/* Risk List */
.p-risk__list {
    width: 62rem;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}
.p-risk__list .item {
    display: flex;
    align-items: center;
    gap: 7rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}
.p-risk__list .item:last-child {
    margin-bottom: 0;
}
.p-risk__list .num-area {
    width: 12rem;
    text-align: right;
    flex-shrink: 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}
.p-risk__list .num-area .label {
    display: block;
    font-weight: bold;
    font-size: 3.6rem;
    line-height: 1;
}
.p-risk__list .num-area .num {
    display: block;
    font-family: var(--font-num);
    font-weight: 900;
    font-size: 9.6rem;
    line-height: 0.8;
}
.p-risk__list .text-area h3 {
    font-size: 3.6rem;
    font-weight: bold;
    color: var(--color-yellow1);
    margin-bottom: 5px;
}
.p-risk__list .text-area p {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-white);
}

/* =========================================
   Failure
========================================= */
.p-failure {
    padding: 8rem 0;
    background: var(--color-blue1);
    color: var(--color-white);
    text-align: center;
}
.p-failure__title {
    font-size: 4.8rem;
    font-weight: bold;
    color: var(--color-yellow1);
    margin-bottom: 5rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Swiper Card Design */
.failure-slider {
    width: 100%;
    margin: 0 auto 6rem;
    padding: 0 4rem;
    position: relative;
}

.failure-slider .swiper-slide {
    width: 65rem;
    height: auto;
}

.failure-slider .swiper-button-prev {
  left: calc(50% - 40rem);
}
.failure-slider .swiper-button-next {
  right: calc(50% - 40rem);
}

.p-failure__card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background-color: var(--color-white);
    padding: 2rem 3rem;
}

.p-failure__card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Warning Area */
.p-failure__warning {
  position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.p-failure__warning .warning-text {
    width: 85.6rem;
    margin-left: auto;
    margin-right: auto;
}
.p-failure__warning .warning-text h3 {
    font-size: 4.8rem;
    font-weight: bold;
    color: var(--color-yellow1);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}
.p-failure__warning .warning-text p {
    font-size: 2.4rem;
    line-height: 1.8;
    font-weight: bold;
}
.p-failure__warning .warning-img {
    width: 28rem;
    position: absolute;
    top: -2rem;
    right: 10rem;
}
.p-failure__warning .warning-img img {
    width: 100%;
    height: auto;
}

/* =========================================
   Failure Card Inner
========================================= */

.p-failure__card-label-wrap {
  display: block;
  background: var(--color-blue3);
  width: max-content;
  padding: 1rem 3.5rem;
    border-radius: 0.75rem;
}

.p-failure__card-label {
  font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.p-failure__card-head {
  padding: 1.5rem 0;
}
.p-failure__card-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--color-blue2);
  line-height: 1.5;
  text-align: left;
}

.p-failure__card-content {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.p-failure__card-img {
  flex-shrink: 0;
  width: 45%;
}
.p-failure__card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-failure__card-text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--color-text);
  text-align: left;
  font-weight: 500;
}

.p-failure__card-footer {
  background: var(--color-red3);
  padding: 0.5rem 2rem;
  text-align: center;
}
.p-failure__card-footer p {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.75;
}

/* =========================================
   Solution
========================================= */
.p-solution {
    padding: 8rem 0 12rem;
    background: #fff url('../img/pc/solution-bg001.png') center/cover no-repeat;
    text-align: center;
}
.p-solution .en-label {
    font-size: 2rem;
    color: var(--color-blue3);;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 0;
    display: block;
}
.p-solution .p-solution__title {
    font-size: 6rem;
    font-weight: bold;
    text-align: center;
    color: var(--color-blue1);
    margin-bottom: 2rem;
}
.p-solution__lead {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 5rem;
}
.p-solution__list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 7rem;
    width: 114.6rem;
    margin-left: auto;
    margin-right: auto;
}
.p-solution__item {
    width: 35.4rem;
    background: var(--color-white);
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    overflow: hidden;
    background: var(--color-blue7);
}
.p-solution__item .thumb img {
    width: 100%;
}
.p-solution__item .body {
    padding: 2.5rem 2rem;
    
}
.p-solution__item h3 {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-blue2);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}
.p-solution__item p {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
}

/* =========================================
   CTA
========================================= */
.p-cta-area {
    padding: 8rem 0;
    background-image: url(../img/pc/cta-bg001.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.p-cta-area__box {
    width: 100rem;
    margin: 0 auto;
    background: var(--color-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.p-cta-area__box .cta-head {
    background: var(--color-blue3);
    color: var(--color-white);
    text-align: center;
    padding: 1rem 2rem;
}
.p-cta-area__box .cta-head h2 {
    font-size: 4rem;
    font-weight: bold;
}

.p-cta-area__box .cta-body {
    padding: 0rem 2rem 1rem;
    
}
.p-cta-area__box .cta-body .cta-top{
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 1rem;
    width: 69.2rem;
    margin-left: auto;
    margin-right: auto;
}
.p-cta-area__box .cta-illust {
    width: 16rem;
}
.p-cta-area__box .cta-illust img {
    width: 100%;
    height: auto;
}
.p-cta-area__box .cta-content {
    width: 100%;
}
.p-cta-area__box .cta-lead {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}
.p-cta-area__box .cta-sub {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-blue1);
}
.p-cta-area__box .cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.btn-cta-green {
    display: block;
    max-width: 100%;
    width: 60.7rem;
    background: linear-gradient(to bottom, var(--color-green1), var(--color-green2));
    color: var(--color-white);
    text-align: center;
    padding: 1.5rem;
    border-radius: 6px;
    font-size: 3.2rem;
    font-weight: bold;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    outline: 3px solid #ffffff;
}
.p-cta-area__box .tel-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-blue2);
}
.p-cta-area__box .tel-link .contact-area{

}
.p-cta-area__box .tel-link .label {
    font-size: 2rem;
    font-weight: bold;
}
.p-cta-area__box .tel-link .time {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    margin-top: -0.25rem;
}
.p-cta-area__box .tel-link .num {
    font-weight: 900;
    font-size: 4rem;
    display: flex;
    align-items: center;
    color: var(--color-blue2);
}
.p-cta-area__box .tel-link .num .icon {
    width: 5.3rem;
    margin-right: 0.5rem;
}

/* =========================
   Promise / Merit 全体背景
========================= */
.p-promise,
.p-merit{
  background: var(--color-cyan1);
  position: relative;
  overflow: hidden;
}

.p-promise{
  padding: 10rem 0 0;
}

.p-merit{
  /*padding: 0 0 25rem;*/
  padding: 0 0 10rem;
}
/*
.p-merit::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20rem;
  background: var(--color-white);
  clip-path: polygon(0 0%, 100% 100%, 100% 100%, 0 100%);
  z-index: 0;
}
*/

.p-promise > .l-inner,
.p-merit > .l-inner{
  background: var(--color-white);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100rem;
}

.p-promise > .l-inner{
  border-radius: var(--pm-radius) var(--pm-radius) 0 0;
  padding: 1.8rem 5rem 1.8rem;
}

.p-merit{
  margin-top: -1.6rem;
  padding-top: 1.6rem;
}
.p-merit > .l-inner{
  border-radius: 0 0 var(--pm-radius) var(--pm-radius);
  padding: 1.8rem var(--pm-pad-pc-x) 6rem;
  z-index: 2;
}

/* =========================
   Promise
========================= */
.p-promise__head{
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 1rem;
  margin-left: 16.3rem;
  margin-right: auto;
  text-align: center;
  width: fit-content;
  margin-bottom: 1rem;
}

.p-promise__head .text{
  flex: 1 1 52%;
  min-width: 320px;
}

.p-promise__head .en-label{
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--color-blue3);
  margin: 0 0 0.8rem;
}

.p-promise__head .p-promise__title{
  font-size: 6rem;
  line-height: 1.25;
  font-weight: bold;
  color: var(--color-cyan1);
  margin: 0 0 1.4rem;
}

.p-promise__head .img{
    width: 15.3rem;
}

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

.p-promise__lead{
  font-size: 2.4rem;
  line-height: 1.9;
  color: var(--color-black);
  margin: 0;
  text-align: center;
}

.p-promise__list{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  position: relative;
  padding: 3.4rem 0 2.6rem;
}
/*
.p-promise__list::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--pm-pad-pc-x) * -1);
  right: calc(var(--pm-pad-pc-x) * -1);
  background: var(--color-blue7);
  border-radius: 12px;
  z-index: 0;
}
*/

.p-promise__list .item{
  flex: 1 1 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.p-promise__list .thumb{
  width: 20rem;
  height: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.p-promise__list .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-promise__list .item h3{
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-cyan1);
    margin: 0.8rem;
}

.p-promise__list .item p{
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-black);
  margin: 0;
}

/* =========================
   Merit
========================= */
.p-merit__head{
  display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    margin: 1.4rem 0 1.2rem;
}

.p-merit__head .p-merit__title{
  font-size: 6rem;
  line-height: 1.25;
  font-weight: bold;
  color: var(--color-cyan1);;
  margin: 0;
}

.p-merit__head .img-wrap{
  line-height: 1;
}

.p-merit__head .illust{
  display: block;
  width: auto;
  height: 12rem;
}

.p-merit__lead{
  font-size: 2.4rem;
  line-height: 1.85;
  font-weight: bold;
  color: var(--color-black);
  margin: 0 0 2.2rem;
  text-align: center;
}

.p-merit__table-area{
  text-align: center;
  margin-top: -7rem;
}

.p-merit__table-area img{
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   Media
========================================= */
.p-media-list {
    padding: 10rem 0 15rem 0;
    background: var(--color-white);
}

.p-media-list__head {
    margin-bottom: 4rem;
    text-align: left;
}

.p-media-list__head .en-label {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-blue3);;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    display: block;
    text-align: center;
}

.p-media-list__head .title {
    font-size: 6rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 1.5rem;
}

.p-media-list .p-media__title {
    font-size: 6rem;
    font-weight: bold;
    text-align: center;
    color: var(--color-blue1);
    margin-bottom: 2rem;
}

.p-media-list__head .p-media__lead {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-black);
    text-align: center;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 10rem;
    width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

.media-item {
    background: #20356C;
    position: relative;
}

.media-item .media-label {
    background: var(--color-blue3);
    color: var(--color-white);
    text-align: center;
    padding: 1.2rem 0;
    font-weight: bold;
    font-size: 2.4rem;
}

.media-item .media-thumb {
    width: 100%;
    background: #20356C;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.media-item .media-thumb img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
}

.media-badge {
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-blue3);
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.65;
}
.media-badge::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  width: 0.2rem;
  height: 115%;
  background-color: var(--color-blue3);
  transform: rotate3d(1, 1, 1, -45deg);
}
.media-badge::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  width: 0.2rem;
  height: 115%;
  background-color: var(--color-blue3);
  transform: rotate3d(1, 1, 1, 45deg);
}

/* =========================================
   Method
========================================= */
.p-method {
    padding: 8rem 0;
    background: var(--color-blue7);
    color: var(--color-white);
    overflow: hidden;
    background: url('../img/pc/erasemethod-bg001.png') no-repeat center top / cover;
}

.p-method__head {
    text-align: center;
    margin-bottom: 6rem;
}
.p-method__head .en-label {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-blue3);
    letter-spacing: 0.1em;
    margin-bottom: 0;
}
.p-method__head .p-method__title {
    font-size: 6rem;
    font-weight: bold;
    color: var(--color-blue1);
}

.p-method__items {
  /*
    margin: 0 auto;
    width: 100rem;
  */
  width: 116.1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 0 auto;
}

.method-item {
    position: relative;
    display: flex;
}
.method-item:last-child {
    margin-bottom: 0;
}

.method-card {
    background: var(--color-white);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    display: flex;
}

.method-body {
  display: flex;
  /*
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
  */
}

.method-item:nth-of-type(2n) .method-body {
    flex-direction: row-reverse;
}

.text-area {
    display: flex;
    flex-direction: column;
    color: var(--color-black);
}

.method-title {
  font-size: 3.6rem;
  font-weight: bold;
  color: var(--color-blue3);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: -7rem;
  /*
  display: flex;
  align-items: center;
  gap: 2rem;
  */
}

.method-logo {
    margin-bottom: 1.5rem;
    max-width: 150px;
}
.method-logo img { width: 100%; }

.p-method .desc {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: justify;
}

.p-method .img-area {
    flex: 0 0 20rem;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.p-method .img-area img {
    max-width: 100%;
}

.p-method .item-01 .img-area{
  margin-right: -2rem;
}

.bg-num {
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 10rem;
  color: var(--color-blue3);
  line-height: 1;
  opacity: 1;
  text-align: left;
}

/* =========================================
   Point
========================================= */
.p-point {
    padding: 10rem 0;
    background: var(--color-white);
    background: url('../img/pc/point-bg001.png') no-repeat center top / cover;
}

.p-point__head {
    margin-bottom: 5rem;
    padding-left: 2rem;
    text-align: center;
}
.p-point__head .en-label {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-blue3);;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}
.p-point__head .p-point__title {
    font-size: 6rem;
    font-weight: bold;
    color: var(--color-blue1);
    line-height: 1.4;
}

.p-point__list {
    margin: 0 auto;
    width: 100rem;
}

.point-item {
    position: relative;
    margin-bottom: 10rem;
    padding-top: 4rem;
}
.point-item:last-child {
    margin-bottom: 0;
}

.point-bg-num {
    position: absolute;
    top: -4rem;
    left: 0;
    font-family: var(--font-num);
    font-weight: 900;
    font-size: 36rem;
    color: #EAF4FC;
    line-height: 1;
    z-index: 0;
}

.point-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.point-content .text-area {
    flex: 1;
}

.point-title {
    font-size: 3.6rem;
    font-weight: bold;
    color: var(--color-blue2);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.point-content .desc {
    font-size: 2rem;
    line-height: 1.8;
    color: var(--color-black);
    margin-bottom: 2.5rem;
}

.auth-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 2rem;
    color: var(--color-black);
    line-height: 1.4;
    font-weight: bold;
    padding-left: 1rem;
}
.auth-area .auth-img{
  display: flex;
  gap: 2rem;
}
.auth-area img {
    height: 7rem;
    width: auto;
}
.auth-area > span{
  flex: 1;
}

.point-content .img-area {
    flex: 0 0 37rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.point-content .img-area img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Customer Review
   ========================================= */
.p-customerreview {
    padding: 8rem 0;
    background: var(--color-blue7);
}

/* ヘッダー */
.p-customerreview__head {
    text-align: center;
    margin-bottom: 5rem;
}
.p-customerreview__head .en-label {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-blue3);;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    display: block;
}
.p-customerreview__head .p-customerreview__title {
    font-size: 6rem;
    font-weight: bold;
    color: var(--color-blue1);
}

.customerreview-slider {
  width: 100%;
    position: relative;
    padding-bottom: 6rem;
    margin: 0 auto;

    
}

.customerreview-slider .swiper-slide {
    width: 55rem;
    height: auto;
}
.customerreview-slider .swiper-slide-active {
    opacity: 1;
    z-index: 2;
}

.customerreview-card {
    background: var(--color-white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.customerreview-card .card-img {
    width: 100%;
    line-height: 0;
    padding: 4rem 4rem 0rem;
}
.customerreview-card .card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Customer Review Card - Img エリア
========================================= */

.customerreview-card .card-img {
  position: relative;
  width: 55rem;
  max-width: 100%;
  margin-bottom: 3rem;
}

.customerreview-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* 右上：業種ラベル */
.card-img__label {
  position: absolute;
    top: 1rem;
    right: 5rem;
    display: flex;
    flex-direction: row;
    z-index: 2;
    line-height: 1.2;
}
.card-img__label-industry {
  display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-blue2);
    letter-spacing: 0.05em;
    margin-top: 1rem;
}
.card-img__label-num {
  display: block;
    font-size: 7rem;
    font-weight: bold;
    color: var(--color-blue2);
    line-height: 1;
    font-style: italic;
}

/* 下部：青い斜め帯テキストエリア */
.card-img__footer {
  position: absolute;
  bottom: -5rem;
  left: -4rem;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../img/pc/customerreview-obi.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50rem;
  padding: 2rem 5rem 2rem;
}

.card-img__footer p {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 3;
}



.customerreview-card .card-body {
    padding: 2.4rem 4rem 3rem;
    flex: 1;
}
.customerreview-card .card-body p {
    font-size: 2rem;
    line-height: 1.8;
    color: var(--color-black);
    text-align: left;
    margin: 0;
}

.swiper-button-prev.customerreview-prev,
.swiper-button-next.customerreview-next {
    background: var(--color-blue1);
    color: var(--color-white);
}
.swiper-button-prev.customerreview-prev::after,
.swiper-button-next.customerreview-next::after {
  color: var(--color-blue7);
}

.customerreview-slider .swiper-button-prev {
  left: calc(50% - 35rem);
}
.customerreview-slider .swiper-button-next {
  right: calc(50% - 35rem);
}

/* =========================================
   Step
========================================= */
.p-step {
    padding: 10rem 0;
    background: var(--color-gray3);
    overflow: hidden;
}


.p-step__head {
    text-align: center;
    margin-bottom: 8rem;
}
.p-step__head .en-label {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-blue3);;
    letter-spacing: 0.1em;
    margin-bottom: -3rem;
}
.p-step__head .title-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  margin-left: -19.7rem;
  margin-bottom: 3rem;
}
.p-step__head .title-wrap .img-wrap{
  width: 19.7rem;
}
.p-step__head .p-step__title {
    font-size: 6rem;
    font-weight: bold;
    color: #003366;
    line-height: 1.4;
}
.p-step__head .p-step__title .small{
  font-size: 3.6rem;
}
.p-step__head .lead {
    font-size: 2.4rem;
    line-height: 1.9;
    color: var(--color-black);
}

.p-step__list {
  width: 123.2rem;
  margin-left: auto;
  margin-right: auto;
}

.step-top-row {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  margin-bottom: 8rem;
  position: relative;
}

.step-top-row::before {
  content: '';
  position: absolute;
  top: 12.7rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, 
    transparent 0%, 
    transparent 10%, 
    var(--color-blue3) 10%, 
    var(--color-blue3) 90%, 
    transparent 90%, 
    transparent 100%);
  z-index: 0;
}

.step-top-row .step-item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  flex: 1;
}

.step-top-row .step-item:first-child {
  margin-left: 0;
}

.step-top-row .step-item:last-child {
  margin-right: 0;
}
.step-top-row .step-item:nth-of-type(3){
  margin-top: -0.5rem;
}
.step-top-row .step-item-top{
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
  z-index: 1;
}
.step-icon-circle {
  width: 10rem;
  height: 10rem;
  margin: 0 auto 1.5rem;
}
.step-top-row .step-item:nth-of-type(3) .step-icon-circle{
  width: 13.4rem;
  height: 13.4rem;
}

.step-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-top-row .step-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-blue2);
  margin-bottom: 1.2rem;
  line-height: 1;
  min-height: calc(1.4em * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.step-top-row .step-item:nth-of-type(3) .step-title {
  font-size: 3rem;
  min-height: calc(1.4em);
}

.step-top-row .step-desc {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-black);
  text-align: left;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 2rem 1rem 1rem;
  outline: 0.2rem solid var(--color-blue3);
  min-height: calc(1.8em * 5);
  margin-top: -3rem;
}

.step-desc .small {
  font-size: 1.1rem;
  display: block;
  margin-top: 0.5rem;
}

.step-bottom-row {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 13rem;
}

.step-bottom-row .step-item {
  width: 54rem;
  background: var(--color-white);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.08);
  padding: 3rem 3rem 2rem;
  position: relative;
  z-index: 1;
}

.step-bottom-row .step-item::after{
  content: "";
  position: absolute;
  top: -14.2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 2.5rem 14.5rem 2.5rem;
  border-color: transparent transparent var(--color-white) transparent;
  filter: drop-shadow(0 -0.2rem 0.2rem rgba(0, 0, 0, 0.05));
  z-index: 1;
}
.step-bottom-row .step-item.item-left::after{
  left: 15rem;
}
.step-bottom-row .step-item.item-right::after{
  left: 4rem; 
}

.step-bottom-row .step-content {
  margin-bottom: 2.5rem;
}

.step-bottom-row .step-content:last-of-type {
  margin-bottom: 0;
}

.step-bottom-row .step-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-blue3);
  margin-bottom: 0.5rem;
  text-align: left;
}

.step-bottom-row .step-desc {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-black);
  text-align: left;
}

.step-bottom-row .step-item.item-left .illust-person {
  width: 14.1rem;
  position: absolute;
  top: -11.5rem;
  left: 0;
}
.step-bottom-row .step-item.item-right .illust-person {
  width: 12.4rem;
  position: absolute;
  top: -11rem;
  right: 0;
}

.illust-person img {
  width: 20rem;
  height: auto;
}

.step-note-img{
  display: block;
  width: 31.3rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -8rem;
  left: -5rem;
}

.step-note-wrap {
  background: var(--color-blue2);
  padding: 0.5rem;
  margin: 0 auto;
  width: 94.2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-top: 13rem;
}
.step-note {
    background: var(--color-blue7);
    padding: 3rem 2rem 4rem;
    text-align: center;
    border: 1px solid #fff;
}
.note-title {
    font-size: 6rem;
    font-weight: bold;
    color: var(--color-blue1);
    margin-bottom: 2rem;
}
.note-desc {
    font-size: 2.4rem;
    line-height: 1.5;
    color: var(--color-blue1);
}

/* =========================================
   FAQ 
========================================= */
.p-faq {
    padding: 8rem 0;
    background: var(--color-white);
}

.p-faq__head {
    text-align: center;
    margin-bottom: 5rem;
}
.p-faq__head .en-label {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-blue3);;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}
.p-faq__head .p-faq__title {
    font-size: 6rem;
    font-weight: bold;
    color: #003366;
}

.c-faq-list {
    margin: 0 auto;
    width: 128rem;
}

.faq-item {
    background: var(--color-blue7);
    margin-bottom: 2rem;
    border-radius: 4px;
}
.faq-item:last-child {
    margin-bottom: 0;
}

.faq-head {
    display: flex;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}
.faq-head:hover {
    opacity: 0.9;
}

.icon-q {
    flex: 0 0 6.2rem;
    width: 6.2rem;
    height: 6.2rem;
    background: var(--color-blue1);
    color: var(--color-white);
    font-size: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 4rem;
    font-family: var(--font-num);
}

.faq-question {
    flex: 1;
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-blue1);
    margin: 0;
    padding-right: 3rem;
}

.icon-toggle {
    position: absolute;
    right: 2.5rem;
    width: 2rem;
    height: 2rem;
}
.icon-toggle::before,
.icon-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-blue1);
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}
.icon-toggle::before {
    width: 100%;
    height: 0.4rem;
}
.icon-toggle::after {
    width: 0.4rem;
    height: 100%;
}

.faq-item.is-open .icon-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-body {
    display: none;
}

.faq-body-inner {
    padding: 2rem 2.5rem 3rem;
    display: flex;
    align-items: flex-start;
}

.icon-a {
    flex: 0 0 6.2rem;
    width: 6.2rem;
    height: 6.2rem;
    font-family: var(--font-num);
    font-size: 4rem;
    color: var(--color-blue1);
    text-align: center;
    line-height: 1;
    margin-right: 4rem;
    margin-top: -0.2rem;
}

.faq-answer {
    flex: 1;
    font-size: 2rem;
    line-height: 1.8;
    color: var(--color-black);
    margin-right: 10rem;
}

/* =========================================
   Footer
========================================= */
.l-footer {
    width: 100%;
}

.footer-logo-area {
    background: var(--color-white);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo-area .footer-logo{
    width: 39.3rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo img {
    width: 78.6rem;
    vertical-align: bottom;
}

.footer-copyright-area {
    background: var(--color-blue1);
    padding: 1.5rem 0;
    text-align: center;
}

.l-footer__copyright {
    color: var(--color-white);
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* =========================================
   floating-banner
========================================= */
.floating-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--color-blue6);
  padding: 2rem;
  z-index: 9999999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
}
.floating-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.floating-banner.is-visible.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none; /* クリック無効化 */
}
.floating-banner .btn-cta-green{
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   Responsive
========================================= */
@media screen and (max-width: 840px) {
  .sp-none{
    display: none;
  }
  .pc-none{
    display: block;
  }

  .en-label {
    font-weight: bold;
  }
  /** kv **/
  .p-hero__bottom{
    margin-top: 0rem;
  }
  .p-hero__contact-bar{
    flex-direction: column;
    position: relative;
    padding-bottom: 1rem;
    width: 64.4rem;
  }
  .p-hero__contact-bar .illust {
    width: 25.1rem;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0rem;
  }
  .p-hero__contact-bar .btn-area{
    position: absolute;
    top: 15rem;
  }
  .p-hero__contact-bar .btn-area .c-btn-green{
    border-radius: 5rem;
    padding: 2rem 1.5rem;
    font-size: 3.6rem;
    width: 64.4rem;
    text-align: center;
  }
  .p-hero__contact-bar .tel-area {
    margin-top: 4rem;
    text-align: center;
  }
  /** p-troubles **/
  .p-troubles{
    margin-top: 0;
    padding: 6rem 0 6rem;
  }
  .p-troubles .en-label{
    margin-bottom: 1rem;
  }
  .p-troubles .p-troubles__title{
    line-height: 1.21;
  }
  .p-troubles__lead{
    font-size: 3rem;
    margin-bottom: 0;
  }
  .p-troubles__content{
    display: block;
    width: 69.7rem;
  }
  .p-troubles__left{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-troubles__right{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-troubles__left .illust{
    text-align: center;
  }
  .p-troubles__left .illust img {
    max-width: 45.6rem;
  }
  /** p-risk **/
  .p-risk {
    padding: 28rem 0 5rem;
  }
  .p-risk__title .icon:first-of-type{
    position: absolute;
    left: 0;
    right: 0;
    top: -20rem;
  }
  .p-risk__title .icon:first-of-type img{
    width: 18.8rem;
  }
  .p-risk__title .icon:last-of-type{
    display: none;
  }
  .p-risk__lead{
    font-size: 3.2rem;
  }
  .p-risk__list{
    width: 67.8rem;
    margin-left: auto;
    margin-right: auto;
  }
  .p-risk__list .text-area p {
    font-size: 2.3rem;
    font-weight: bold;
  }
  /** failure **/
  .failure-slider{
    width: 100%;
  }
  .failure-slider .swiper-slide{
    width: 72.5rem;
  }
  .failure-slider .swiper-button-prev{
    left: 0;
  }
  .failure-slider .swiper-button-next{
    right: 0;
  }
  /** p-failure **/
  .p-failure__card{
    padding: 3rem 3rem 4rem;
  }
  .p-failure__warning{
    display: flex;
    flex-direction: column-reverse;
  }
  .p-failure__warning .warning-text{
    width: 70.4rem;
  }
  .p-failure__warning .warning-text h3{
    text-align: center;
  }
  .p-failure__warning .warning-text p{
    text-align: center;
  }
  .p-failure__warning .warning-img{
    width: 28rem;
    position: static;
    margin-left: auto;
    margin-right: auto;
    margin-top: -5rem;
  }
  .p-failure__card-label-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .p-failure__card-label {
    font-size: 3.3rem;
  }
  .p-failure__card-head {
    padding: 1.2rem 1.6rem 1rem;
  }
  .p-failure__card-title {
    font-size: 4.3rem;
    text-align: center;
  }
  .p-failure__card-content {
    flex-direction: column;
    padding: 0 1.6rem 1.6rem;
    gap: 3rem;
    margin-top: 1rem;
  }
  .p-failure__card-img {
    width: 100%;
  }
  .p-failure__card-text {
    font-size: 3rem;
  }
  .p-failure__card-footer p {
    font-size: 3.5rem;
  }
  .p-failure__card-footer p br {
    display: none;
  }
  /** p-cta-area **/
  .p-cta-area{
    padding: 5rem 0;
  }
  .p-cta-area__box{
    width: 75rem;
  }
  .p-cta-area__box .cta-body{
    display: block;
    padding-bottom: 4rem;
  }
  .p-cta-area__box .cta-body .cta-top{
    flex-direction: column;
    margin-top: 3rem;
    margin-bottom: 5rem;
    gap: 0;
  }
  .p-cta-area__box .cta-illust {
    width: 38.9rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .p-cta-area__box .cta-content{
    width: 100%;
  }
  .p-cta-area__box .cta-lead {
    font-size: 3rem;
    text-align: center;
  }
  .p-cta-area__box .cta-sub {
    font-size: 2.4rem;
  }
  .btn-cta-green{
    border-radius: 5rem;
    padding: 2rem 1.5rem;
    font-size: 3.6rem;
    width: 64.4rem;
  }
  .p-cta-area__box .tel-link{
    display: block;
    position: relative;
    margin-top: 1.5rem;
  }
  .p-cta-area__box .tel-link .label{
    display: block;
    text-align: center;
  }
  .p-cta-area__box .tel-link .time {
    font-size: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .p-cta-area__box .tel-link .num {
    font-size: 4.8rem;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
  }
  .p-cta-area__box .tel-link .num .icon{
    width: 6.3rem;
  }
  /** p-solution **/
  .p-solution {
    padding: 8rem 0 8rem;
    background: #fff url(../img/sp/solution-bg001.png) center / cover no-repeat;
  }
  .p-solution .en-label{
    margin-bottom: 1rem;
  }
  .p-solution .p-solution__title{
    line-height: 1.21;
    margin-bottom: 3rem;
  }
  .p-solution__lead{
    font-size: 3rem;
  }
  .p-solution__list {
    gap: 7rem;
    flex-wrap: wrap;
    width: 65.1rem;
    margin-left: auto;
    margin-right: auto;
  }
  .p-solution__item {
    width: 100%;
  }
  .p-solution__item h3{
    font-size: 4rem;
  }
  .p-solution__item p{
    font-size: 2.4rem;
  }
  .p-solution__item .body {
    padding: 2.5rem 3rem;
  }
  /** .p-promise **/
  .p-promise {
    padding: 20rem 0 0;
  }
  .p-promise > .l-inner{
    width: 78rem;
    padding: 5rem 2rem 2rem;
  }
  .p-promise__head {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    margin-top: -25rem;
    margin-left: auto;
  }
  .p-promise__head .img{
    width: 27.3rem;
    margin-left: auto;
    margin-right: auto;
  }
  .p-promise__head .text{
    text-align: center;
  }
  .p-promise__head .lead{
    font-size: 3rem;
    line-height: 1.6;
  }
  .p-promise__list::before{
    display: none;
  }
  .p-promise__list{
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.6rem;
    margin-top: 4rem;
  }
  .p-promise__list .item{
    margin-top: 0;
    max-width: 32.2rem;
  }
  .p-promise__list .thumb{
    width: 32.2rem;
    height: 32.2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .p-promise__list .item p{
    font-size: 2.4rem;
  }
  .p-promise__list .item p br{
    display: none;
  }
  /** p-merit **/
  .p-merit > .l-inner{
    width: 78rem;
    padding: 2rem 2rem 5rem;
  }
  .p-merit__lead{
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.6;
  }
  .p-merit__table-area {
    margin-top: -2rem;
  }
  /** p-media **/
  .p-media-list {
    padding: 5rem 0 8rem 0;
  }
  .p-media-list__head .p-media__lead{
    font-size: 3rem;
  }
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 71.9rem;
    gap: 4rem;
    margin-top: 8rem;
  }
  /** p-method **/
  .bg-num{
    font-size: 20rem;
  }
  .p-method__items {
    margin-top: 10rem;
    width: 78rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 15rem;
  }
  .method-item:nth-of-type(2n+1) .bg-num {
    top: -8rem;
    left: 3rem;
  }
  .method-item:nth-of-type(2n) .bg-num {
    top: -8rem;
    right: 3rem;
  }
  .method-card {
    padding: 2rem 2rem 7rem;
  }
  .method-body {
    gap: 3rem;
    flex-direction: column-reverse;
    position: relative;
  }
  .method-item:nth-of-type(2n) .method-body{
    flex-direction: column-reverse;
  }
  .method-title{
    gap: 10rem;
    flex-direction: row;
    align-items: baseline;
    font-size: 4.8rem;
    margin-top: -11rem;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .method-item:nth-of-type(2n+1) .method-title {

  }
  .method-item:nth-of-type(2n) .method-title{
    flex-direction: row-reverse;
  }
  .p-method .img-area {
    margin-top: 10rem;
  }
  .item-01 .method-card {
    padding-right: 4rem;
  }
  .p-method .item-01 .img-area{
    margin-right: -4rem;
  }
  .p-method .desc{
    font-size: 3rem;
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
  /** p-point **/
  .p-point {
    background: url(../img/sp/point-bg001.png) repeat-y center top / contain;
  }
  .p-point__head{
    padding-left: 0;
  }
  .p-point__head .p-point__title{
    line-height: 1.21;
  }
  .point-content{
    padding-left: 0;
    flex-direction: column-reverse;
    position: relative;
    gap: 4rem;
  }
  .point-title{
    font-size: 4.8rem;
    position: absolute;
    top: 0;
    text-align: center;
    left: 0;
    right: 0;
  }
  .p-point__list{
    width: 70rem;
  }
  .p-point__list .item-02 .point-title{
    top: 3rem;
  }
  .point-content .img-area{
    margin-top: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .point-bg-num{
    font-size: 30rem;
    text-align: center;
    top: -5rem;
    position: absolute;
    left: 0;
    right: 0;
    color: #deecf3;
  }
  .point-content .desc{
    font-size: 3rem;
    width: 69.4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .point-content .desc br{
    display: none;
  }
  .auth-area{
    flex-direction: column;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
  }
  .auth-area img {
    height: 10rem;
    width: auto;
  }
  /** p-customerreview **/
  .p-customerreview {
    padding: 5rem 0 0rem;
  }
  .customerreview-slider .swiper-slide{
    width: 70rem;
  }
  .customerreview-card .card-img{
    padding: 3rem;
    padding-bottom: 0;
    width: 70rem;
  }

  .card-img__footer {
    bottom: -5rem;
    left: 0;
    right: 0;
    background-size: cover;
    width: 65rem;
    padding: 2rem 4rem 2rem;
  }
  .card-img__footer p {
    font-size: 3.5rem;
  }



  .customerreview-card .card-body p{
    font-size: 3rem;
  }
  .customerreview-slider .swiper-button-prev {
    left: 0;
  }
  .customerreview-slider .swiper-button-next{
    right: 0;
  }
  /** .p-step **/
  .p-step {
    padding: 5rem 0 8rem;
  }
  .p-step__head .en-label{
    margin-bottom: -1rem;
  }
  .p-step__head .title-wrap{
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .p-step__head .title-wrap .img-wrap{
    display: none;
  }
  .p-step__head .p-step__title{
    line-height: 1.21;
  }
  .p-step__head .lead{
    font-size: 3rem;
    line-height: 1.6;
  }
  .p-step__list {
    width: 69.1rem;
    position: relative;
    z-index: 1;
  }

  .step-top-row,
  .step-bottom-row {
    display: block;
  }

  .step-top-row::before{
    top: 10rem;
    left: 6.5rem;
    right: 0;
    height: calc(100% - 25rem);
    width: 0.2rem;
  }

  .step-top-row .step-item{
    flex-direction: column;
    position: relative;
  }

  .step-top-row .step-item:first-child {
    margin-bottom: 73rem;
  }

  .step-top-row .step-item:nth-of-type(2) {
    margin-bottom: 70rem;
  }

  .step-top-row .step-item:nth-of-type(3){
    margin-top: 0;
  }

  .step-top-row .step-item-top {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 3rem;
  }

  .step-top-row .step-icon-circle {
    width: 13.4rem;
    height: 13.4rem;
    margin: 0;
  }

  .step-top-row .step-title {
    font-size: 3.6rem !important;
    text-align: left;
    min-height: auto !important;
  }

  .step-top-row .step-title br{
    display: none;
  }

  .step-top-row .step-desc {
    font-size: 3rem;
    text-align: left;
    width: 52.9rem;
    margin-left: auto;
    margin-right: 0;
    outline: none;
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }

  .step-top-row .step-desc br{
    display: none;
  }

  .step-desc .small {
    font-size: 2rem;
  }

  .step-bottom-row .step-item{
    width: 52.9rem;
    padding: 4rem 3rem;
    z-index: auto;
    box-shadow: none;
  }

  .step-bottom-row .step-item.item-left{
    position: absolute;
    top: 30rem;
    right: 0;
  }

  .step-bottom-row .step-item.item-right{
    position: absolute;
    top: 138rem;
    right: 0;
  }

  .step-bottom-row .step-item::after{
    content: "";
    position: absolute;
    top: auto;
    bottom: -12rem;
    z-index: -1;
    transform: rotate(230deg);
    border-width: 0px 8.5rem 20.5rem 2.5rem;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.08));
  }
  .step-bottom-row .step-item.item-left::after{
    left: 0;
    right: auto;
  }
  .step-bottom-row .step-item.item-right::after{
    left: 0;
    right: auto;
  }

  .step-bottom-row .step-title {
    font-size: 3.2rem;
  }

  .step-bottom-row .step-desc{
    font-size: 3rem;
  }

  .step-bottom-row .step-item.item-left .illust-person {
    width: 20.5rem;
    position: absolute;
    top: -8.5rem;
    left: auto;
    right: 0;
    z-index: -1;
  }
  .step-bottom-row .step-item.item-right .illust-person {
    width: 19.7rem;
    position: absolute;
    top: -13.5rem;
    left: auto;
    right: 0;
    z-index: -1;
  }
  .step-note-img{
    width: 36.6rem;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: -19rem;
  }
  .step-note-wrap{
    width: 71rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.7rem;
    margin-top: 23rem;
  }
  .step-note{
    padding: 7rem 3rem 5rem;
  }
  .note-title{
    font-size: 6rem;
  }
  .note-desc{
    font-size: 3rem;
    text-align: left;
    line-height: 1.6;
  }
  .note-desc br{
    display: none;
  }
  /** faq **/
  .c-faq-list {
    width: 75rem;
  }
  .faq-item {
    margin-bottom: 4rem;
  }
  .faq-question{
    font-size: 3.4rem;
  }
  .faq-answer {
    font-size: 3rem;
    margin-right: 1rem;
    line-height: 1.6;
  }
  .icon-q{
    font-size: 4.8rem;
    width: 7.4rem;
    height: 7.4rem;
    flex: 0 0 7.4rem;
  }
  .icon-a{
    font-size: 4.8rem;
    width: 7.4rem;
    height: 7.4rem;
    flex: 0 0 7.4rem;
  }
  .icon-toggle {
    width: 4rem;
    height: 4rem;
  }
}
