@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
html {
  color: #333333;
  background: #f0f0f0;
  scroll-behavior: auto;
}

body {
  background: #FFFFFF; !important;
  background-color: #FFFFFF; !important;
}


div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

li,
ul{
  list-style: none;
}





/* Hero_area　header位置調整 */
.Page {
  padding-top: 165px !important;
}


/* Heroエリア */
.hero-section {
    display: flex;
    margin: 0 auto;
    background-color: #fff;
    min-height: 600px;
    position: relative;
}

/* --- 左側コンテンツ --- */
.hero-content-left {
    flex: 1; 
    z-index: 2;
    padding: 80px 40px 80px 12.5%;
}

.logo-area {
    margin: 29px 0 80px;
}

.logo-text {
    max-width: 80%;
}


.main-catch {
    margin-bottom: 60px;
    line-height: 1.6;
    font-weight: bold;
}

.catch-line1 {
    font-size: 3rem;
    margin: 0;
}

.catch-line2 {
    font-size: 3rem;
    color: #fccf00;
    margin: 0;
}


.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
}

.features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}




/* --- 右側ビジュアル/CTA --- */
.hero-visual-right {
    flex: 1.2; 
    padding: 40px 5% 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative; /* 擬似要素の基準位置 */
    /*overflow: hidden; /* 円形がはみ出しても隠す */
    z-index: 1; /* 円形背景の上にコンテンツが来るように調整 */
}

.hero-visual-right::after {
    content: '';
    position: absolute;   
    left: auto; /* leftの指定を解除 */ 
    width: 1200px;   /* 円の幅 */
    height: 1200px;  /* 円の高さ */
    border-radius: 50%; 
    background-color: #f0f0f0;    
    transform: rotate(15deg); 
    transform-origin: bottom right; /* 傾き（rotate）の中心を右下に設定 */
    z-index: 0; /* 他のコンテンツの下に配置 */
}

/* 擬似要素の上にコンテンツを表示させるための z-index 調整 */
.hero-visual-right .visual-wrapper, 
.hero-visual-right .cta-group {
    position: relative;
    z-index: 2; /* 円形背景より前面に */
}

/* --- レスポンシブ対応の調整 --- */
@media (max-width: 992px) {
    .hero-visual-right::before {
        /* モバイルでは円形背景のサイズや位置を調整する */
        bottom: -150px;
        right: -150px;
        width: 700px;
        height: 700px;
        transform: rotate(5deg); /* 角度も小さく */
    }
}

.visual-wrapper {
    position: relative;
    width: 100%;
}

.main-illustration {
    max-width: 100%;
    height: auto;
    display: block;
}

.reduction-label {
    position: absolute;
    top: 5%;
    right: 20%;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1.2;
    transform: rotate(-10deg); /* 斜めの配置を再現 */
    z-index: 10;
}

.reduction-label::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 2px;
    height: 120%;
    background-color: #333;
    transform: translateX(-50%) rotate(90deg); /* 線の傾きを調整 */
    z-index: -1;
}

.reduction-percent {
    font-size: 2.5rem;
    color: #dc3545; /* 赤色 */
    margin: 5px 0;
}

.reduction-percent span {
    font-size: 1.5rem;
}


/* --- CTAボタン --- */
.cta-group {
    display: flex;
    gap: 15px;
}

.cta-button {
    position: relative;
    display: flex;
    justify-content: center;
    /*align-items: center;
    margin: 0 auto;*/
    width: 400px;
    padding: 10px 5% 12.5px 15%;
    color: #ffffff;
    font-size: 1.2rem;
    /*transition: 0.3s ease-in-out;*/
    font-weight: bold;
    background: #333;
    border-radius: 0px;
    z-index:0;
    /*overflow: hidden;*/
    text-decoration: none;
}

/*.trial-button {
    background-color: #333;
    color: #fff;
    position: relative;
}*/


.cta-button:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    /*display: block;*/
    background: #fccf00;
    transition: .3s;
    left:0;
}

.cta-button:hover {
    color: #333333;
    text-decoration: none;
}

.cta-button:hover:after {
    width: 100%;
    z-index: -1;
}

.cta-button.contact-button {
    width: 250px;
    padding: 10px 5% 10px 5%;
}

.cta-badge {
    content: "\f005";
    line-height: 1;
    position: absolute;
    left: 5px;
    top: 5px;
    background: #ffffff;
    color: #333333;
    padding: 10px 11px 12.5px 11px;
    border-radius: 60px;
    z-index: 2;
}


.mail-icon {
    margin-left: 8px;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-content-left {
        padding: 40px 20px;
        text-align: center;
    }

    .logo-text {
        margin: 0 auto 20px;
    }

    .features-list {
        text-align: left;
        margin: 0 auto;
        max-width: 400px;
    }

    .hero-visual-right {
        padding: 40px 20px;
    }
    
    .reduction-label {
        top: 0;
        right: 5%;
        transform: none;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-top: 20px;
    }
}



/* タイトルエリア位置下げ */
@media screen and (max-width:819px) {
    .Hero-info {
        padding-top: 95px;
    }    
}

/* hero-titleの高さ */
.Hero-title:first-child {
    margin-top: 20px;
}

@media screen and (max-width: 819px){
    .case_main_title {
        display: none!important;
 }
}

@media screen and (max-width: 819px){
    .lp-case-area {
        display: none!important;
 }
}

@media screen and (min-width:820px) and ( max-width:876px){
    .header_title {
        font-size: 16px !important;
        width: 200px;
 }
}

@media screen and (min-width:820px) and ( max-width:876px){
     .Header-nav ul.menu {
        font-size: 12px !important;
 }
}

@media screen and (min-width:820px) and ( max-width:876px){
     .Header-nav {
        font-size: 12px !important;
 }
}