body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 2rem;
    color: #0F62a8;
    font: bold;
    text-align: center;
    padding: 60px 0;
    margin: 0;
}

h3 {
    font-size: 1.25rem;
    margin: 0;
    padding: 30px 0;
}

aside {
    font-size: 0.9rem;
}

p {
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: #FFFFFF;
}

img {
    width: 100%;
}
/* 全画面表示のため別で使われているクラスを無効化 */
.layout_menu, .layout_right{
    display: none;
}

/* PC/スマホで表示 */
.pc-only{
    display: block;
}
.sp-only{
    display: none;
}
.space {
    margin: 0 60px;
}

.container-content {
    padding-bottom: 60px;
}
.top{
    text-align: center;
}
/* 2列表示するコンテンツ部 */
.column-number_1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    align-items: center;
}
/* 4列表示するコンテンツ部 */
.column-number_2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
/* 4列表示するコンテンツ部(列間の余白追加) */
.column-number_3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 5px;
}
/* 1列表示するコンテンツ部 */
.column-number_4 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    row-gap: 30px;
}
/* 2列表示するコンテンツ部(中央揃え) */
.column-number_5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
    /* 電話番号部分の背景色設定 */
    .column-number_5:nth-child(n+1) {
        background-color: #0F62a8;
    }
    /* 申込み部分の背景色設定 */
    .column-number_5:nth-child(2) {
        background-color: #29a3da;
    }

.bubble {
    background-image: url("https://www.ec-life.co.jp/ufbdual/img/bg_bubble.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0 60px 0;
}

.fotter-bubble {
    background-image: url("https://www.ec-life.co.jp/ufbdual/img/footer_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.ufb-blue {
    background-color: #e6f2fa;
    padding-top: 30px;
}

/* Youtube部分のデザイン設定ここから */
.video {
    text-align: center;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 アスペクト比 */
    height: 0;
    overflow: hidden;
    width: calc(100% - 120px);
    /* 画面幅100%から左右の余白分(60px*2)を引いた幅 */
    margin: 0 auto;
    /* 自動で中央揃え */
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Youtube部分のデザイン設定ここまで */


.lightblue {
    color: #FFFFFF;
    background-color: #29a3da;
    padding: 30px 0;
}

.darkblue {
    color: #FFFFFF;
    background-color: #0F62a8;
    padding: 30px 0;
}

.ecolife {
    color: #009245;
    font-size: 1.5rem;
}

.check {
    font-size: 1.5rem;
    text-align: center;
    padding-bottom: 15px;
}

.point {
    color: #FFFFFF;
    background-color: #29a3da;
    text-align: center;
}

.ufb-explanation {
    padding: 30px 0;
    text-align: center;
}

.highlight {
    font-size: 2rem;
    font-weight: bold;
}

/* Fontawesomeからアイコン取得 */
.tell::before {
    content: '\f095';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 7px 0 0;
}
.mail::before {
    content: '\f0e0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 7px 0 0;
}
.inquiry{
    margin-top:30px;
}

@media screen and (max-width:768px){
    h2{
        padding: 30px 0;
    }
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    }
    .space {
        margin: 0;
    }
    .container-content {
        padding-bottom: 30px;
    }
    .column-number_1 {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 60px;
        row-gap: 30px;
        align-items: center;
        text-align: center;
    }
    .column-number_2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;

    }
    .column-number_3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5px;
        text-align: center;

    }
    .video{
        width: 100%;
    }
    .highlight{
        font-size: 1.2rem;
    }
}