

@charset "utf-8";

/* ========================================================
   1. Variables (CSS変数定義)
   サイト全体の共通設定です。ここを変更すれば全体に反映されます。
   ======================================================== */
:root {
  /* --- Typography: Font Family (ft_) --- */
  --ft_base: "Zen Maru Gothic", "Noto Sans JP", "Yu Gothic Medium", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  /* 英語フォント */
  --ft_pop: "Poppins", sans-serif;
  --ft_osw: "Oswald", sans-serif;
  --ft_man: "Manrope", sans-serif;

  /* --- Colors (cl_) --- */
  --cl_text: #333333;
  /* 基本文字色 */
  --cl_link: #000000;
  /* リンク色 */
  --cl_main: #2582D0;
  /* メインカラー */
  --cl_main_bg: #D4F3F8;
  /* メインカラー */
  --cl_accent: #C00000;
  /* アクセントカラー */
  --cl_bg: #ffffff;
  /* 背景色 */
  /* --- Layout: Sizes (wd_) --- */
  --wd_pc: 1080px;
}

/* ========================================================
   2. Base Style (基本設定)
   ======================================================== */
html {
  font-size: 62.5%;
  /* 1rem = 10px */
}
@media screen and (min-width:750px) and ( max-width:1600px) {
  html {
    font-size: 0.625vw;
    /* 1rem = 10px */
  }
}
body {
  font-family: var(--ft_base);
  font-size: 1.6rem;
  /* 16px */
  line-height: 1.8;
  color: var(--cl_text);
  background-color: var(--cl_bg);
  text-align: justify;

  /* 文字詰め・レンダリング最適化 */
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}
main {
  overflow: hidden;
}
/* リンク設定 */
a {
  color: var(--cl_link);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* 画像のレスポンシブ対応 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ========================================================
   3. Layout (レイアウト共通)
   ======================================================== */

/* コンテンツ幅制限用ラッパー */
.l-inner {
  width: 90%;
  max-width: var(--wd_pc);
  margin: 0 auto;
}

/* ========================================================
   4. Utility (汎用クラス)
   ======================================================== */

/* --- Display Switching (PC/SP切り替え) --- */
@media screen and (min-width: 751px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
  .l-float-cta.c-cta-btn {
    display: none!important;
}
}

/* --- Font Helpers (英語フォント指定) --- */
.u-font-en-poppins {
  font-family: var(--ft_pop);
}

.u-font-en-oswald {
  font-family: var(--ft_osw);
}

.u-font-en-manrope {
  font-family: var(--ft_man);
}

/* --- Text Alignment --- */
.u-text-center {
  text-align: center;
}

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

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

.u-text-indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}


/* --- Flex Helpers (横並び)  --- */
.u-flex {
  display: flex;
}

.u-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.u-flex_col1 {
  width: calc(100%/1);
}

.u-flex_col2 {
  width: calc(100%/2);
}

.u-flex_col3 {
  width: calc(100%/3);
}

.u-flex_col4 {
  width: calc(100%/4);
}

/* --- overデザイン  --- */
.u-over-center {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}


/* ========================================================
   5. Component (コンポーネントの基底)
   ======================================================== */

/* ボタンのベーススタイル */
main .c-cta-btn {
    width: 48rem;
    margin: 0 auto;
}

.c-cta-btn a {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  padding: 1.5rem;
  background: #f83e2b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  margin: 6rem auto;
  position: relative;
  filter: drop-shadow(0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.4));
  gap: 1.5rem;
}

.c-cta-btn a:after {
  content: '';
  display: block;
  width: 2.6rem;
  height: 0.6rem;
  background: url(../img/cta-arrow.svg) no-repeat center/contain;
  margin-right: -3.8rem;
}

.c-sns__btn {
  width: 7rem;
  background: #fff;
  border-radius: 50%;
}

.c-wave {
  position: relative;
}

.c-wave:before {
  content: '';
  display: block;
  width: 100%;
  height: 7vw;
  position: absolute;
  top: calc(-7vw + 2px);
  background: var(--cl_main_bg);
  mask: url(
  ../img/wave-top.webp) no-repeat center top/100%;
}
.c-wave__reverse::before {
    mask-image: url(../img/wave-top__reverse.webp);
}

/* CPデザイン */
.c-cp {
  overflow: hidden;
}
.c-cp__banner {
    width: 75rem;
    padding: 10rem 0;
}
.c-cp__banner-area {
    margin: 1rem auto;
}
.c-cp__point {
    background: var(--cl_main_bg);
    padding-bottom: 14rem;
}
.c-cp__point-title {
    transform: translateY(-4rem);
    position: relative;
    padding-bottom: 10rem;
    margin-bottom: -6rem;
}
.c-cp__point-title:after {
    content: '';
    display: block;
    width: 160rem;
    height: 4rem;
    background: url(../img/cp-point-arrow.webp) no-repeat center/contain;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.c-cp__point .c-cta-btn {
    margin: 8rem auto -5rem;
}


/* アコーディオン 基礎デザイン */
.c-accordion {
    overflow: hidden;
}
.c-accordion input {
  display: none;
}
.c-accordion label {
  display: block;
  cursor :pointer;
  transition: all 0.5s;
  position: relative;
}
.c-accordion label .toggle {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}
.c-accordion label .toggle:before, .c-accordion label .toggle:after {
    content: '';
    display: block;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s transform;
}
.c-accordion label .toggle:after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.c-accordion__check:checked + label .toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.c-accordion__show {
  height: 1px;
  padding: 0;
  overflow: hidden;
  transition: 0.5s;
}
.c-accordion__check:checked + label + .c-accordion__show {
  height: auto;
  padding: 1rem 0;
} 

/* リスト 基礎デザイン */
.c-all-atten-list.u-flex-wrap {
    gap: 0 1rem;
}
.c-all-atten-list li:before {
  content: attr(data-type);
  display: block;
  margin-right: 0.5em;
}
.c-all-atten-list li {
  display: flex;
  font-size: 1.4rem;
}
.c-list-type-number {
  counter-reset: number 0;
}
.c-list-type-number li:before {
  counter-increment: number 1;
  content: attr(data-type) "" counter(number);
  min-width: 2em;
}

/* ヘッダーデザイン */
.l-header {
  top: 0;
  z-index: 9999;
  position: fixed;
  padding: 1.1rem 0;
  width: 100%;
  transition: 0.3s opacity;
  justify-content: end;
  gap: 0 4rem;
  align-items: center;
}
.l-header:before {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transition: 0.3s height;
}
body.is-scroll .l-header:before {
    height: 100%;
}
.l-header__logo {
  position: relative;
  z-index: 999;
  width: 15.2rem;
  margin: 0 auto 0 14vw;
}


/* --- ヘッダー ナビメニュー --- */
.p-gnav {
  transition: transform 0.4s ease, visibility 0.4s ease;
  padding-right: 18rem;
}
.p-gnav__inner {
  position: relative;
  z-index: 2;
  display: flex;
  transition: opacity 0.4s ease;
}
.p-gnav__body {
  width: 100%;
  margin: 0 auto;
}
.p-gnav__links {
  margin: 0;
}
.p-gnav__list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  color: #fff;
  transition: color 0.3s;
}
.p-gnav a:hover {
    opacity: 0.7;
}
.p-gnav__apply {
    position: fixed;
    z-index: 1;
    right: 0;
    top: 0;
    width: 18rem;
}
.p-gnav__apply::before {
    content: '';
    display: block;
    width: 100%;
    height: 13.6rem;
    background: var(--cl_main);
    position: absolute;
    top: 0;
    right: 0;
    mask: url(../img/nav-bg.webp) no-repeat center top / 100%;
    transition: 0.3s background;
    z-index: -1;
}
.p-gnav__apply a {
    font-size: 1.8rem;
    font-weight: 500;
    padding: 3.2rem 0 4.6rem;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.p-gnav__list a span {
  display: block;
}
.p-gnav__list .icon,.p-gnav__list .text {
  transition: 0.3s background,0.3s filter;
}
.p-gnav__list .icon {
  width: 4rem;
  aspect-ratio: 1/1;
  background: #fff;
  mask: no-repeat center/contain;
}
.p-gnav__list .text {
  height: 3.6rem;
  max-width: 14rem;
  overflow: hidden;
}
.p-gnav__list .text.full {
    max-width: 100%;
}
body.is-scroll .p-gnav__list .icon {
  background: #000;
}
body.is-scroll .p-gnav__list .text {
  filter: brightness(0);
}
.p-gnav__list .text img {
  height: 100%;
  width: fit-content;
  max-width: fit-content;
}


/* --- フッター --- */
.l-footer {
  padding: 8rem 0;
  color: #fff;
}

.l-footer,
footer.l-footer.c-wave:before {
  /* background: var(--cl_main); */
  background: linear-gradient(90deg,rgba(37, 130, 208, 1) 0%, rgba(91, 185, 238, 1) 90%);
}
.l-footer .l-inner {
  width: 76%;
  gap: 0 16rem;
  justify-content: space-between;
}
.l-footer__logo {
  margin: 0;
  width: fit-content;
  filter: contrast(0) brightness(200%);
}
.l-footer_nav__list {
  margin: 0 auto;
}
.l-footer_nav__list li {
  margin: 0 0 1.5rem;
}
.l-footer_nav__list a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}
.l-footer__sns {
  align-items: center;
  justify-content: center;
  gap: 2.9rem;
  margin: 4rem 0;
}
.l-footer__sns .c-sns__btn {
  width: 7rem;
}
.copy {
  font-size: 1.4rem;
  text-align: right;
}




/* FVデザイン */
.p-fv {
  position: relative;
}

.p-fv__pick,
.p-fv__point {
  position: absolute;
}

.p-fv__pick {
  width: 16.25%;
  right: 30%;
  top: 11%;
}

.p-fv__point {
  bottom: 0;
  right: 10%;
  margin: 0 auto;
  width: 51.25%;
}



/* ランキング　デザイン */
.p-ranking,.p-awars {
    background: url(../img/ranking-bg.webp) center top/160rem;
    padding: 10rem 0;
}
.p-ranking .l-inner {
    padding: 0 5rem;
}
.p-ranking__title {
    position: relative;
}
.p-ranking__title:before {
    content: '';
    display: block;
    width: 26rem;
    aspect-ratio: 1/1;
    background: url(../img/ranking-title_bg.webp) no-repeat center/contain;
    mix-blend-mode: 	color-burn;
    position: absolute;
    left: -7rem;
    top: 50%;
    transform: translateY(-50%);
}
.p-ranking__title img {
    position: relative;
}


.p-ranking__nav .u-flex-wrap {
    align-items: end;
    justify-content: space-between;
    border-bottom: 3px solid var(--cl_main);
    box-sizing: border-box;
    margin: 1rem auto;
}
.p-ranking__nav li:nth-child(1) {
   width: 38%;
   order: 2;
}
.p-ranking__nav li:nth-child(2),.p-ranking__nav li:nth-child(3) {
    width: 29.5%;
}
.p-ranking__nav li:nth-child(2) {
    order: 1;
}
.p-ranking__nav li:nth-child(3) {
    order: 3;
}


.p-ranking__section, .p-awars__table:before,.p-awars__table:after {
    background-image: radial-gradient(circle, var(--cl_main) 0.15rem, transparent 0.15rem), radial-gradient(circle,  var(--cl_main)  0.15rem, transparent 0.15rem);
    background-position: 2.5px 2.5px, 6px 7.5px;
    background-size: 7px 10px;

  }
.p-ranking__section {
    margin-bottom: 7rem;
    padding: 1.4rem;
  
    background-color: #fff;
}
.p-ranking__section .l-inner {
    padding: 0;
    background: #fff;
    width: 100%;
}
.p-ranking__section-price {
    width: 92%;
    margin: 0 auto;
}
.p-ranking__section-price h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--cl_main);
    color: #fff;
    padding: 0.5rem;
}
.p-ranking__section-price .border-wrap {
    border: 3px solid var(--cl_main);
    margin: 3rem auto;
}
.p-ranking__section-price .border-wrap:last-child {
  margin-bottom: 0;
}
.p-ranking__section-price label {
    filter: drop-shadow(0 0.5rem 0 rgba(230,230,230,1));
}
.p-ranking__section-price label .toggle {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: #F95140;
    right: 20%;
}
.p-ranking__section-price label .toggle:before,.p-ranking__section-price label .toggle:after {
    content: '';
    display: block;
    width: 50%;
    background: #fff;
}






/* ユーザーボイス　デザイン */
.p-voice {
   padding: 9rem 0;
   overflow: hidden;
   background: url(../img/voice-bg.webp) repeat-X center bottom/cover;
}
.p-voice h2 {
    margin-bottom: 9rem;
    position: relative;
}
.p-voice h2:before {
    content:'';
    display: block;
    width: 32.8rem;
    height: 29rem;
    background: url(../img/voice-title_bg.webp) no-repeat center/contain;
    position: absolute;
    top: -3.6rem;
    left: -3.6rem;
    opacity:0.4;
}
.p-voice__slider {
    margin-bottom: -5rem;
}
.p-voice .slick-track {
  display: flex;
}
.p-voice__slider .slide-item {
  padding: 0 3rem 3.5rem;
  height: auto !important;
  position: relative;
}
.p-voice__slider .slide-item:after {
    content: '';
    width: 100%;
    height: 8rem;
    background: url(../img/voice-card_bg.webp) no-repeat center/contain;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}
.p-voice__slider .card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.05); 
  height: 100%;
  transition: transform 0.3s;
}
.p-voice__slider .card-img {
  width: 100%;
  overflow: hidden;
}
.p-voice__slider .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.p-voice__slider .card-body {
  padding: 2rem;
}
.p-voice__slider .text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
}
.p-voice__slider .author {
  font-size: 1.4rem;
  color: #7c7c7c;
}


/* 受賞　デザイン */
.p-awars {
    padding-bottom: 25rem;
}
.p-awars .c-all-atten-list {
    margin: 8rem auto;
    max-width: 88rem;
}
.p-awars__table {
    position: relative;
    padding: 10rem 0 5rem;
}
.p-awars__table:before, .p-awars__table:after {
    content: '';
    display: block;
    height: 1.5rem;
    width: 100%;
    position: absolute;
    left: 0;
}
.p-awars__table:before {
    top: 0;
}
.p-awars__table:after {
    bottom: 0;
}



/* 受賞　デザイン */
.p-safety,.p-safety.c-wave:before {
    background: url(../img/border_bg.webp) repeat center top/5.4rem;
}
.p-safety {
    padding: 5rem 0 25rem;
}
.p-safety__item {margin: 8rem auto;gap: 4.4rem;}
.p-safety__item li {
    width: calc((100% - 4.4rem)/2 );
}

/* お申し込みの流れ　デザイン */
.p-flow {
    background: var(--cl_main_bg);
    padding: 15rem 0 25rem;
}


/* よくある質問　デザイン */
.p-qa {
    background: #FEECEA;
    padding: 15rem 0;
    position: relative;
}
.p-qa:before {
    content: '';
    display: block;
    width: 100%;
    height: 1rem;
    background: url(../img/qa-top_bg.webp) center top/160rem;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
}
.p-qa .c-accordion {
    margin: 11rem auto;
    width: 90%;
}
.p-qa__item {
    margin: 2rem auto;
}
.p-qa label {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cl_main);
    background: #fff;
    padding: 1.8rem 9.5rem;
    border-radius: 10rem;
    box-sizing: border-box;
}
.p-qa label,.p-qa .c-accordion__show {
    position: relative;
}
.p-qa label:before, .p-qa .c-accordion__show:before {
    content: '';
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background: no-repeat center/contain;
    position: absolute;
    left: 5rem;
    top: 2.7rem;
}
.p-qa label:before {
    background-image: url(../img/q-icon.webp);
}
.p-qa label .toggle {
    width: 1.8rem;
    right: 5rem;
}
.p-qa label .toggle::before,.p-qa label .toggle::after {
    background: var(--cl_main);
    width: 100%;
}
.p-qa .c-accordion__show:before {
    background-image: url(../img/a-icon.webp);
}
.p-qa .c-accordion__show {
    padding: 0 9.5rem;
    padding-right: 5rem!important;
    font-size: 1.8rem;
    font-weight: 500;
}
.p-qa .c-accordion__check:checked + label + .c-accordion__show {
    padding: 3rem 9.5rem;
}
