@charset "utf-8";

/* ===== style.css ===== */
/* -- body -- */
body {
    font-family: "Jost", "dnp-shuei-gothic-kin-std", "Yu-Gothic", "游ゴシック", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #1F3AA7;
    background-color: #F7F2D1;
}
@media screen and ( max-width: 900px ) {
    body {
        font-size: 14px;
        line-height: 1.857;
    }
}


/*
    tag
*/
a {
    text-decoration: none;
    transition: opacity 0.6s;
}
@media screen and ( min-width: 901px ) {
    a:hover {
        opacity: 0.6;
    }
}

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


/*
    common
*/
/* -- hide -- */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media screen and ( min-width: 901px ) {
    .pc_hide { display: none!important; }
}
@media screen and ( max-width: 900px ) {
    .sp_hide { display: none!important; }
}
/* -- margin -- */
.mb0 { margin-bottom: 0!important; }

.disable_link {
    pointer-events: none !important;
    cursor: default !important;
    color: inherit !important;
    text-decoration: none !important;
}


/*  
    wrapper
*/


/*  mv  */
.hero-intro {
    position: relative;
    z-index: 8;
    min-height: 320vh;
}
.hero-intro__sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #484C4C;
}
#lp_mv {
    inset: 0;
    z-index: 0;
    height: auto;
    background-color: #484C4C;
}
.mv_img {
  position: relative;
  height: 100%;
  min-height: 100vh;
  background-color: #484C4C;
  background-image: url('../img01/mv_pc.webp');
  background-size: cover;
  background-position: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mv_overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.mv_overlay img {
    width: 20%;
    height: auto;
}
.mv_overlay p {
    position: absolute;
    bottom: 39px;
    left: 50%;
    color: #fff;
    transform: translateX(-50%);
    font-size: 15px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
@media screen and ( max-width: 900px ) {
    .mv_img {
    background-image: url('../img01/mv_sp.webp');
    }
    .mv_overlay img {
        width: 53%;
    }
    .mv_overlay p {
        font-size: 12px;
    }
}


/*
     lead section
*/
#lp_lead {
    position: relative;
    padding: 110px 0 117px;
    text-align: center;
}
#lp_lead .lp_lead_main {
    font-size: 21px;
    letter-spacing: 0.02em;
    font-weight: 500;
}
#lp_lead img {
    width: 400px;
    margin: 50px auto 50px;
}
#lp_lead .lp_lead_sub {
    letter-spacing: 0.05em;
    line-height: 2;
    font-weight: 500;
}
@media screen and ( max-width: 900px ) {
    #lp_lead {
        padding: 84px 0 110px;
    }
    #lp_lead .lp_lead_main {
        font-size: 14px;
        margin: 0 2%;
    }
    #lp_lead .lp_lead_sub {
        margin: 0 2%;
    }
    #lp_lead img {
        width: 304px;
    }
}
/*
     lp_contents
*/

#lp_contents .profile {
    width: 633px;
    margin: 105px auto 120px;
}
#lp_contents .profile_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 700;
    width: 99px;
    height: 29px;
    border-radius: 10px 10px 0 0;
    background-color: #1F3AA7;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.02em;
}
#lp_contents .profile_title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}
#lp_contents .profile_item {
    border: solid 1px #1F3AA7;
    border-radius: 0 15px 15px 15px;
    background-color: #fff;
}
#lp_contents .profile_item {
    display: flex;
    gap: 41px;
    padding: 30px 41px 24px 30px;
}
#lp_contents .profile_item img {
    width: 248px;
}
#lp_contents .profile_text {
    margin-top: 30px;
}
#lp_contents .text_brand {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.2;
    font-weight: 500;
}
#lp_contents .text_name {
    font-size: 28px;
    letter-spacing: 0;
    margin-bottom: 10px;
    font-weight: 600;
}
#lp_contents .text_lead {
    font-size: 13px;
    line-height: 1.84;
}
@media screen and ( max-width: 900px ) {
    #lp_contents .profile {
        margin: 90px auto;
    }
    #lp_contents .profile_item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 26px 26px 35px;
        gap: 0;
    }
    #lp_contents .profile {
        width: 304px;
    }
}
/*
     lp_history
*/
#lp_history {
    width: 97.79%;
    margin: 0 auto 0;
    border-radius: 30px 30px 30px 30px;
    background-color: #fff;
    overflow: hidden;
    transform: translateZ(0);
}
@media screen and ( max-width: 900px ) {
    #lp_history {
        width: 100%;
        border-radius: 18px;
    }
    #lp_history .radius_img {
        filter: drop-shadow(0 -3px 10px rgba(0, 0, 0, 0.2));
    }
}
/*
     interview
*/
#interview {
    padding-bottom: 0;
}
#interview .interview_warap {
    max-width: 1068px;
    color: #3C3C3C;
    margin: 0 auto;
    color: #3C3C3C;
}
#interview .imgbox_large {
    width: 100%;
    max-width: 1068px;
    margin: 0 auto;
}
#interview .imgbox_flex {
    display: flex;
    gap: 44px;
    justify-content: center;
}
#interview .imgbox_flex img {
    width: calc((100% - 44px) / 2);
}
#interview .topic {
    margin: 120px 0 56px;
    color: #1F3AA7;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
#interview .topic::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #1F3AA7;
    background: radial-gradient(circle, #1F3AA7 0%, #1F3AA7 2px, transparent 2.5px);
}
#interview .faq__question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}
#interview .faq__answer {
    margin-bottom: 70px;
    line-height: 2;
}
#interview .topic,
#interview .faq_item,
#interview .imgbox_mid {
    width: 560px;
    margin-right: 7%;
    margin-left: auto;
    margin-bottom: 70px;
}
@media screen and ( max-width: 900px ) {
    #interview .interview_warap {
        max-width: 304px;
    }
    #interview .imgbox_flex {
        flex-direction: column;
        gap: 10px;
    }
    #interview .imgbox_flex img {
        width: 100%;
    }
    #interview .topic,
    #interview .faq_item,
    #interview .imgbox_mid {
    width: 304px;
    margin-bottom: 90px;
    }
    #interview .imgbox_mid.mb-sp-10{
    margin-bottom: 10px;
    }

    #interview .topic {
        font-size: 18px;
        margin: 95px 0 53px;
        font-weight: 500;
    }
    #interview .faq__answer {
        margin-bottom: 90px;
    }
}
/*
     lp_item
*/
#lp_item {
    margin: 123px auto 165px;
    text-align: center;

}
#lp_item h2 {
    font-size: 30px;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 50px;
}
#lp_item .lp_item_lead {
    margin-bottom: 80px;
}
#lp_item h2 span {
    display: block;
    font-size: 15px;
    letter-spacing: 0.02em;
    font-weight: 500;
}
#lp_item .products__grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    width: 880px;
    margin: 0 auto;
}
#lp_item .products__item {
    width: 410px;
    height: 770px;
    border: solid 1px #1F3AA7;
    border-radius: 32px;
    padding: 20px 20px 20px;
}
#lp_item .product-card__slider {
    margin: 0 0 25px;
    position: relative;
    width: 100%;
    margin: 0 0 25px;
    overflow: hidden;
    border-radius: 10px;
    outline: 8px solid #fff;
}
#lp_item .product-card__body {
    margin-left: 16px;
}
#lp_item .product-card__title {
    font-size: 25px;
    text-align: left;
    font-weight: 500;
    margin-bottom: 9px;
    line-height: 1.24;
}
#lp_item .product-card__price {
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 30px;
}
#lp_item .product-card__price-link {
    text-decoration: underline;
    text-underline-offset: 4px;
}
#lp_item .product-card__desc {
    text-align: left;
    font-size: 14px;
    line-height: 2.14;
}
.product-card__slider.swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
  }
  .product-card__slider .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }
  .product-card__slider .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
  }
#lp_item .swiper-slide img {
    width: 360px;
    border-radius: 10px;
}
.product-card__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#lp_item .product-card__slider .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-sizing: border-box;
}
#lp_item .swiper-pagination {
    position: absolute;
    bottom: 16px !important;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

/* ドット自体をクリック可能にする */
#lp_item .swiper-pagination-bullet {
    pointer-events: auto;
    width: 4px !important;
    height: 4px !important;
    margin: 0 4px !important;
    border-radius: 50%;
    background: #1F3AA7 !important;
    opacity: 0.5 !important;
    transition: opacity 0.3s, transform 0.3s;
    cursor: pointer;
}

/* アクティブ（現在表示中）のドット */
#lp_item .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #1F3AA7 !important;
    transform: scale(1.2);
}
@media screen and ( max-width: 900px ) {
    #lp_item {
        margin: 104px auto 110px;
    }
    #lp_item h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    #lp_item .lp_item_lead {
        margin-bottom: 40px;
    }
    #lp_item h2 span {
        font-size: 14px;
    }
    #lp_item .product-card__title {
        font-size: 21px;
    }
    #lp_item .product-card__price {
        font-size: 14px;
    }
    #lp_item .products__grid {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        width: 100%;
    }
    #lp_item .products__item {
        width: 90%;
        max-width: 328px;
        height: auto;
        padding-bottom: 40px;
    }
    #lp_item .product-card__slider {
        margin-bottom: 40px;
    }
}

/*
lp_bnr
*/
#lp_bnr {
    background: #1F3AA7;
    position: relative;
}
#lp_bnr .lp_bnr_wrap a {
    display: block;
    position: relative;
    height: 28vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
#lp_bnr .lp_bnr_wrap .lp_bnr_img {
    width: 18vw;
}
#lp_bnr .lp_bnr_img_arrow {
    position: absolute;
    width: 2%;
    right: 3%;
    top: 10.6%;
}
@media screen and ( max-width: 900px ) {
    #lp_bnr .lp_bnr_wrap a {
        height: 250px;
    }
    #lp_bnr .lp_bnr_wrap .lp_bnr_img {
        width: 175px;
    }
    #lp_bnr .lp_bnr_wrap .lp_bnr_img_arrow {
        width: 20px;
        top: auto;
        bottom: 20px;
        right: 20px;
    }
}

/* - footer - */
#footer {
    padding: 43px 0;
    font-family: "avenir-next-lt-pro", sans-serif;
    font-weight: 400;
    background: #fff;
}
#footer .footer_inner {
    display: flex;
    justify-content: space-between;
    margin: 0 70px;
}
#footer .sns_link {
    display: flex;
    gap: 50px;
    font-size: 14px;
    color: #000 ;
}
.copy {
    color: #797979;
    font-size: 14px;
    margin-top: -2px;
}
@media screen and ( max-width: 900px ) {
    #footer {
        padding: 45px 0 42px;
    }
    #footer .footer_inner {
        width: 86.66%;
        align-items: end;
        margin: 0 auto;
    }
    #footer .sns_link {
        display: block;
        font-size: 13px;
    }
    #footer .sns_link li {
        margin-bottom: 10px;
    }
    #footer .sns_link li:last-child {
        margin-bottom: 0;
    }
    .copy {
        font-size: 13px;
        margin-top: 0;
    }
}
/* ==========================================
   固定追従ロゴ
   ========================================== */
   .fixed_logo {
    width: 146.36px;
    position: fixed;
    top: 49.8px;
    left: 67.6px;
    z-index: 100;
    pointer-events: none;
    cursor: default;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fixed_logo.is-show {
    opacity: 1;
    visibility: visible;
}

.fixed_logo img {
    width: 160px;
    height: auto;
    display: block;
}

@media screen and (max-width: 900px) {
    .fixed_logo {
        width: 83.96px;
        top: 15px;
        left: 17px;
    }
    .fixed_logo img {
        width: 120px;
    }
}