@charset "UTF-8";

.common-title-box {

    .en-title {
        font-size: 4.6rem;

        @media screen and (max-width: 767px) {
          font-size: 2.6rem;
        }
    }
}

/* About */

.section-about{

    .content-box{

        & p:first-child {
            margin: 4rem 0 7rem 0;
            margin-top: 2.5rem;

            & span {
                display: block;
                font-size: 1.8rem;
                font-weight: bold;
                color: var(--primary-color);
            }
        }
    
    }
}

/* 保険料・保険金 */

.section-insurance {

    & p:first-child {
        margin-bottom: 7rem;

    }

    & h3 {
        margin-bottom: 4rem;
    }

}

/* 付帯保険のご案内 */

.section-add-insurance {

    .content-box {

        & p:first-child {
            margin: 4rem 0;

            & span {
                display: block;
                font-size: 1.8rem;
                font-weight: bold;
                color: var(--primary-color);
            }
        }

        .add-list{
            display: flex;
            gap: 2.5rem;

            @media screen and (max-width: 767px) {
              flex-direction: column;
            }

            .add-item{
                flex: 1;

                &:nth-child(2) {
                    flex: 0 0 46rem;

                    @media screen and (max-width: 767px) {
                      flex: 0 0 auto;
                    }
                }
            
                .common-elip-button{
                    width: 100%;
                    height: auto;
                    border-radius: 60px;
                    padding: 2rem 3rem;
                    gap: 1rem;

                    @media screen and (max-width: 767px) {
                      height: 6rem;
                      border-radius: 30px;
                    }
                
                    .btn-text{
                        line-height: 1.6;
                    
                    }
                    .btn-icon{
                    
                    }
                }
            }
        }

    }
}


/* 個人情報の取扱について */
.section-privacy {

    .content-box {

        & ol {
            margin: 1.2rem 0;
            line-height: 1.8;
            padding-left: 2rem;
        }
        & ol li {
            list-style: decimal !important;
        }
    }
}