@charset "utf-8";
/* --------------------------------------------- */
/* 強力リセット（.main 配下専用）               */
/* --------------------------------------------- */
body {
  background: none;
}

.main,
.main * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #000;
}

/* ブラウザ特有の装飾を削除 */
.main img,
.main picture,
.main video,
.main canvas,
.main svg {
  display: block;
  max-width: 100%;
}

.main a {
  text-decoration: none;
  cursor: pointer;
}

.main ul,
.main ol {
  list-style: none;
}

.main button,
.main input,
.main textarea,
.main select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* テーブルのリセット */
.main table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 見出しのサイズや太さを継承（LP では独自に指定するため） */
.main h1,
.main h2,
.main h3,
.main h4,
.main h5,
.main h6 {
  line-height: 1.5;
  font-weight: bold;
}

.main p {
  line-height: 1.5;
  font-weight: bold;
}

/* --------------------------------------------- */
/* 共通               */
/* --------------------------------------------- */
:root {
  --color-blue: #004aad;
  --color-red: #ff3131;
  --color-mark: #ebb42c;
  --bg-gray: #d9d9d9;
  --bg-pink: #ffd6d6;
  --bg-blue: #c2dcff;
  --bg-red: #b62017;
  --btn-yellow: #ebb42c;
  --font-heading: clamp(24px, 6.4vw, 36px);
}

.bg-red {
  background-color: var(--bg-red);
}

.bg-yellow {
  background-color: var(--btn-yellow);
}

.bg-blue {
  background-color: var(--color-blue);
}

.txt-blue {
  color: var(--color-blue);
}

.txt-red {
  color: var(--color-red);
}

.wrap__img {
  display: flex;
  justify-content: center;
}

.marker {
  position: relative;
  display: inline-block;
}

.marker:before {
  position: absolute;
  content: "";
  background: var(--color-mark);
  width: 100%;
  height: 70%;
  bottom: 0;
}

.marker span {
  position: relative;
  z-index: 1;
}

@media (max-width: 999px) {
  .marker:before {
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    left: 50%;
  }
}

.main > section,
.cta_btn {
  margin-bottom: clamp(50px,13.3vw,100px);
}

.heading_wrap {
  font-size: clamp(16px, 4.2vw, 20px);
}

.heading_wrap > h2 {
  text-align: center;
  font-size: var(--font-heading);
  padding-bottom: 8px;
}

.heading_wrap__txt {
  text-align: center;
  padding-bottom: 32px;
}

.heading_wrap .large {
  font-size: clamp(20px, 5.3vw, 28px);
}

.heading_wrap-type2 {
  text-align: center;
  padding-bottom: 20px;
  font-size: clamp(16px, 4.2vw, 20px);
}

.heading_wrap-type2 h3 {
  text-decoration: underline;
  font-size: clamp(20px, 5.3vw, 28px);
  padding-bottom: 16px;
}

.btn {
  display: block;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: white !important;
  font-size: clamp(16px, 4.2vw, 20px);
  padding: 24px;
  font-weight: 600;
  border-radius: 100vh;
  position: relative;
}

.btn::after {
  content: "";
  position: absolute;
  width: clamp(20px,5.3vw,32px);
  height: clamp(20px,5.3vw,32px);
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  right: 30px;
}

/* 丸の中の矢印 */
.btn::before {
  content: "";
  position: absolute;
  width: clamp(4px,1vw,8px);
  height: clamp(4px,1vw,8px);
  border-right: 2px solid #00479d; /* 矢印の色 */
  border-top: 2px solid #00479d;
  transform: rotate(45deg);
  position: absolute;
  right: 42px; /* 丸の内側中央になるよう調整 */
  z-index: 2;
  top: 45%;
}

.btn.bg-red {
    padding: 12px;
}
.btn.bg-red:before {
    top: 36px;
}

.btn.bg-red:after {
    top: 25px;
}


.btn.btn--type2:before {
    top: 47%;
}

.btn.bg-red::before {
  border-right: 2px solid var(--bg-red);
  border-top: 2px solid var(--bg-red);
}

.btn.btn--type2.bg-yellow:before {
  border-right: 2px solid var(--btn-yellow);
  border-top: 2px solid var(--btn-yellow);
}

.btn span {
  color: white !important;
}

@media(max-width:999px){
  .btn::before {
    right: 43px;
}

.btn.bg-red {
    font-size: 14px;
}  
}

@media(max-width:499px){
    .btn::after {
    top: 6.6vw;
}

.btn::before {
    right: 8.2vw;
}
    .btn::after {
    right: 6.1vw;
}

.btn.bg-red:after {
    top: 6.1vw;
}

.btn.bg-red:before {
    top: 8vw;
}

}

.note {
  text-align: center;
  font-size: clamp(16px, 4.2vw, 20px);
  margin-bottom: 32px;
}

.br-sp {
  display: none;
}

@media (max-width: 999px) {
  .br-sp {
    display: block;
  }

  .br-pc {
    display: none;
  }
}

.container {
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
}

.container--border {
  padding: 10px 16px 36px;
  border: 1px solid #c3c2c3;
}

@media (max-width: 1066px) {
  .container {
    padding: 16px;
  }
}

/* --------------------------------------------- */
/* 個別               */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* top
/* --------------------------------------------- */

.mainVisual.lp5 {
  margin-bottom: clamp(30px,8vw,60px);
}

/* --------------------------------------------- */
/* cta
/* --------------------------------------------- */
#main .cta {
  margin-bottom: clamp(60px, 16vw, 180px);
}

.cta h2 {
  font-size: var(--font-heading);
  text-align: center;
  color: var(--color-blue);
  margin-bottom: clamp(20px, 5.3vw, 40px);
}

.cta__items {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: space-evenly;
}

.cta__items li {
  background: var(--bg-gray);
  border-radius: 12px;
  padding: clamp(20px, 5.3vw, 50px) 0 clamp(20px, 5.3vw, 50px)
    clamp(60px, 16vw, 80px);
  width: 33%;
  display: flex;
  align-items: center;
  position: relative;
}

.cta__items li p {
  font-size: clamp(16px, 4.2vw, 28px);
  font-weight: bold;
}

.cta__items li:first-child {
  padding: clamp(19px, 5.3vw, 50px) clamp(20px, 5.3vw, 25px)
    clamp(20px, 5.3vw, 50px) clamp(60px, 16vw, 80px);
}

.cta__items li p:before {
  position: absolute;
  content: "";
  background: url("../img/index/icon-cta-1.png");
  width: clamp(24px, 6.4vw, 50px);
  aspect-ratio: 50/47;
  object-fit: contain;
  top: 30%;
  left: 20px;
  transform: translateY(50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.cta__txt {
  text-align: center;
  font-weight: bold;
  font-size: clamp(20px, 4.2vw, 32px);
}

.cta__txt {
  padding-top: 24px;
}

@media (max-width: 999px) {
  .cta__items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta__items li {
    width: 100%;
  }
}
/* --------------------------------------------- */
/* service
/* --------------------------------------------- */

.service h2 {
  text-align: center;
  color: white;
  font-size: clamp(20px, 5.3vw, 30px);
  font-weight: bold;
}

.service__wrapHeading {
  background: var(--color-blue);
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: clamp(24px, 6.4vw, 52px);
}

.service h3 {
  text-align: center;
  font-size: clamp(16px, 4.2vw, 35px);
  padding-bottom: 24px;
}

.service__txt {
  text-align: center;
  font-size: clamp(16px, 4.2vw, 20px);
  padding-bottom: 8px;
}

@media(max-width:998px){
  .service__txt{
    text-align:left;
  }
}

/* --------------------------------------------- */
/* dekiru 
/* --------------------------------------------- */

.dekiru .wrap__img {
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.mieru__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 32px;
}

.mieru__items li {
  background: var(--bg-red);
  padding: 8px 0;
  padding-right: 36px;
  padding-bottom: 24px;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

.mieru__items li p {
  text-align: center;
  color: white;
  font-size: 20px;
}

.mieru .wrap__img {
  margin-top: 16px;
}

.mieru .wrap__img img {
  max-width: 260px;
  width: 100%;
  height: 140px;
  object-fit: contain;
}

@media (max-width: 999px) {
  .mieru__items {
    display: flex;
    flex-direction: column;
  }

      .mieru__items li {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 85%,
      50% 100%,
      0 85%
    );
    padding-right: 0;
}

.mieru .wrap__img img {
    height: auto;
}

.mieru .wrap__img {
    margin-bottom: 24px;
}

     .heading_wrap__txt > div p {
    text-align: left;
}

.heading_wrap-type2 > p {
    text-align: left;
}

.note {
    text-align: left;
} 
}



/* --------------------------------------------- */
/*case
/* --------------------------------------------- */

.case h2 {
  font-size: var(--font-heading);
  text-align: center;
  color: var(--color-blue);
  padding-bottom: 8px;
}

.case__imgWrap {
  max-width: 210px;
  width: 100%;
  margin: 0 auto 12px;
}

.case__txt {
  text-align: center;
  font-size: clamp(16px, 4.2vw, 20px);
  padding-bottom: 40px;
}

.cease__items {
  display: flex;
  gap: 20px;
}

.cease__items li {
  width: 50%;
  border-radius: 16px;
  padding: 16px 20px;
}

.cease__items li:first-child {
  background: var(--bg-pink);
}

.cease__items li:last-child {
  background: var(--bg-blue);
}

.cease__item .txt {
  font-size: clamp(16px, 4.2vw, 19px);
}

.txt_heading {
  text-align: center;
  font-size: clamp(20px, 5.3vw, 30px);
  padding-bottom: 8px;
}

.txt_wrap {
  text-align: center;
  font-size: 18px;
}

.txt_wrap .large {
  font-size: clamp(20px, 5.3vw, 28px);
}

.cease__img {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding-bottom: 30px;
}

.case .txt_wrap {
  margin-bottom: clamp(16px, 4.2vw, 24px);
}

@media (max-width: 999px) {
  .cease__items {
    display: flex;
    flex-direction: column;
  }

  .cease__items li {
    width: 100%;
  }

  .cease__img {
    display: flex;
    flex-direction: column;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 999px) {
.dekiru,.mieru,.case {
    padding: 0 8px;
}
}


/* --------------------------------------------- */
/*cta_btn
/* --------------------------------------------- */

.cta_btn__wrap {
  display: flex;
}

.cta_btn__wrap .btn {
  max-width: 440px;
  padding: 12px;
}

.cta_btn__wrap .btn::after {
  top: 34%;
}

@media (max-width: 999px) {
  .cta_btn__wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

     .cta_btn__wrap .btn::before {
    right: 43px;
    top: 40px;
} 

  .case__txt {
    text-align: left;
}
}

@media (max-width: 999px) {
    .cta_btn__wrap .btn::before {
    right: 8vw;
    top: 8.5vw;
}
}