

@font-face {
    font-family: 'MPLUSRounded1c-Bold';
    src: url('../fonts/MPLUSRounded1c-Bold.ttf');
}
@font-face {
    font-family: 'MPLUSRounded1c-Black';
    src: url('../fonts/MPLUSRounded1c-Black.ttf');
}
@font-face {
    font-family: 'MPLUSRounded1c-ExtraBold';
    src: url('../fonts/MPLUSRounded1c-ExtraBold.ttf');
}
@font-face {
    font-family: 'MPLUSRounded1c-Light';
    src: url('../fonts/MPLUSRounded1c-Light.ttf');
}
@font-face {
    font-family: 'MPLUSRounded1c-Medium';
    src: url('../fonts/MPLUSRounded1c-Medium.ttf');
}
@font-face {
    font-family: 'MPLUSRounded1c-Regular';
    src: url('../fonts/MPLUSRounded1c-Regular.ttf');
}
@font-face {
    font-family: 'MPLUSRounded1c-Thin';
    src: url('../fonts/MPLUSRounded1c-Thin.ttf');
}

@font-face {
    font-family: 'AmeChanPopMaruLight-Regular';
    src: url('../fonts/AmeChanPopMaruLight-Regular.otf') format("opentype");
}
@font-face {
    font-family: 'Boku2-Regular';
    src: url('../fonts/Boku2-Regular.otf') format("opentype");
}

@font-face {
    font-family: 'CP_Font';
    src: url('../fonts/CP_Font.otf') format("opentype");
}

@font-face {
    font-family: 'keifont';
    src: url('../fonts/keifont.ttf');
}



* {
    box-sizing: border-box;
}

html {scroll-behavior: smooth;}


body {
/*    font-family: 'MPLUSRounded1c-Regular', sans-serif;*/
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    background-color: rgba(0, 0, 0, 0);
    color: inherit;
    text-decoration: none;
}


/* グローバルスクロールバーのスタイル */
::-webkit-scrollbar {
    width: 8px; /* スクロールバーの幅 */
}

::-webkit-scrollbar-thumb {
    background-color: #34d1bf; /* スクロールバーの色 */
    border-radius: 10px; /* スクロールバーの角を丸く */
}

::-webkit-scrollbar-track {
    background-color: #abe9d8; /* スクロールトラックの色 */
}

.m0_T {
    margin-top: 0px !important;
}
.m0_B {
    margin-bottom: 0px !important;
}
.m10_T {
    margin-top: 10px !important;
}
.m10_B {
    margin-bottom: 10px !important;
}

.m20_T {
    margin-top: 20px !important;
}
.m20_B {
    margin-bottom: 20px !important;
}
.m30_T {
    margin-top: 30px !important;
}
.m30_B {
    margin-bottom: 30px !important;
}
.m50_T {
    margin-top: 50px !important;
}
.m50_B {
    margin-bottom: 50px !important;
}
.m20_TB {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
.m30_TB {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}
.mAuto_LR {
    margin-left: auto;
    margin-right: auto;
}

.m0_LR {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.p0_TB {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.p20_LR {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.talign_center {    text-align: center !important;  }
.talign_left {      text-align: left !important;    }
.talign_right {     text-align: right !important;   }

.br_768_on {
    display: none;
}





















/*     ヘッダー     */
/* ヘッダー（スマホのみ表示） */
#header {
    display: none; /* デフォルトは非表示 */
    position: fixed;
    top: 0;
    width: 100%;
    height: 65px;
    background-color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
}

/* ロゴボタンのスタイル */
.logo-button img {
    transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション効果 */
    max-width: 130px;
}

button.header-button.icon-button img {
    max-width:50px;
    display: block;
    margin-top: 5px;
}

/* 右寄せ用のクラス */
.right-buttons {
    display: flex;
    gap: 10px; /* ボタン間のスペース調整 */
    margin-left: auto; /* 右寄せ */
    align-items: center;
}

/* ボタン共通スタイル */
.header-button {
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
}

/* トグルボタン */
.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    background-color: #5071ff;
    color: #e6e0e0;
}
/**********************************************************/


/*
    サイドメニュー
*/
#sidebar {
    background-color: #c7e9e8;
    color: white;
    width: 220px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 14px;
    z-index: 100;
}


/* サイドバーのスクロールバーのスタイル */
#sidebar::-webkit-scrollbar {
    width: 8px; /* スクロールバーの幅 */
}

#sidebar::-webkit-scrollbar-thumb {
    background-color: #9098c4; /* スクロールバーの色 */
    border-radius: 10px; /* スクロールバーの角を丸く */
}

#sidebar::-webkit-scrollbar-track {
    background-color: #c7e9e8; /* スクロールトラックの色 */
}


/* ロゴのスタイル */
#sidebar div.divLogoArea {
    background-color: white;
    padding-top: 20px;
    text-align: center;
}
#sidebar .logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

/*  メニューアイテム    */
.menu-title {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 13px 8px;
    color: #093e8f;
    border-bottom: 1px solid #eee;
    cursor: pointer;

    transition: background-color 0.5s ease-in-out;      /* 背景色の滑らかな変化 */
    position: relative;                                 /* アニメーションの基準位置 */
    overflow: hidden;                                   /* 子要素のオーバーフローを防ぐ */
}

.menu-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;                        /* 初期位置を左端に設定 */
    width: 100%;
    height: 100%;
    background-color: #1fbbcd;        /* ホバー時の背景色 */
    transition: left 0.3s ease-in-out;  /* 左から右へのアニメーション */
    z-index: 0;                         /* 背景がテキストの下に表示されるように設定 */
}

.menu-title:hover::before {
    left: 0; /* ホバー時に背景が左から表示される */
}

.menu-title img, .menu-title span {
    position: relative;
    z-index: 1; /* 背景色より上にテキストと画像が表示されるように調整 */
}

.menu-title img {
    width: 20px;
}

.menu-title span {
    margin-left: 10px;
}

.menu-title:hover span {
    color: #fff; /* ホバー時に文字色を白に変更 */
}

.menu-title.menu-simulation {
    background-color: #ffbd59;
    color: #FFFFFF;
}
.menu-title.menu-simulation img {
    width: 20%;
}
.menu-title.menu-simulation span {
    text-align: center;
}
.menu-title.menu-simulation::before {
    background-color: #ff8b00;
}


.menu-item.active .menu-title {
    background-color: #1fbbcd;
    color: #FFFFFF;
}


/* メインメニューリンクのスタイル */
#sidebar .menu-item > a {
    color: #000;
    text-decoration: none;
    margin: 10px 0;
    width: 100%;
    text-align: center;
    position: relative;
    transition: color 0.3s ease;
}



/* サブメニューのスタイル */
.submenu {
    position: fixed;
    left: 220px;                 /* 親要素の右側に配置 */
    width: 250px;
    background-color: #afb9e5;
    border: 1px solid #ddd;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
    z-index: 9999;              /* 競合を防ぐため十分高い値に設定 */
    margin-top: -47px;
    transform: translateY(0);   /* 追加: 垂直方向の位置を調整 */
    padding-left: 0px;
}


/* 親メニュー項目がホバーされた時にサブメニューを表示する */
.menu-item.active .submenu {
    visibility: visible !important;
    opacity: 1 !important;
}

/*
.menu-item:hover .submenu {
    visibility: visible !important;
    opacity: 1 !important;
}

.menu-item .submenu:hover {
    visibility: visible !important;
    opacity: 1 !important;
}
*/

.submenu li {
    border-bottom: 1px solid #eee;
    list-style: none;
}

.submenu li a {
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
}

.submenu li a:hover {
    background-color: #f2f2f2;
    color: #3498db;
}

/*  バーナー    */
div.divSideBannerArea {
    padding: 34px;
    text-align: center;
}
div.divSideBannerArea a img {
    width: 100%;
    margin-bottom: 20px;
}
div.divSideBannerArea div.divSNSICon img {
    border-radius: 5px;
    height: 40px;
    width: 45px;
}




/**スマホ画面でのメニュー関係　・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・*/
/* ポップアップ全体のスタイル */
/* ポップアップの全体のスタイル */
.popup {
    display: none;
    position: fixed;
    top: 7%; /* ヘッダーと重ならないように位置調整 */
    left: 0;
    width: 100%;
    height: 90%; /* コンテンツを画面内に収める */
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start; /* 上部に揃える */
    animation: fadeIn 0.5s ease-in-out;
}

.popup-content {
    background-color: #c7e9e8;
    color: white;
    font-family: 'Roboto', sans-serif;
    width: 90%;
    max-width: 400px;
    max-height: 85vh; /* 全体を画面内に収める */
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    padding: 20px;
    margin-top: 20px; /* ヘッダーとの間隔を確保 */
    text-align: center;
    position: relative;
}

es fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.popup-content::-webkit-scrollbar {
    width: 8px; /* スクロールバーの幅 */
}

.popup-content::-webkit-scrollbar-thumb {
    background-color: #1e90ff; /* スクロールバーの色 */
    border-radius: 4px; /* 丸みを追加 */
}

.popup-content::-webkit-scrollbar-track {
    background-color: #f5f5f5; /* スクロールバーの背景 */
}

.popup-content::-webkit-scrollbar {
    width: 8px; /* スクロールバーの幅 */
}

.popup-content::-webkit-scrollbar-thumb {
    background-color: #1e90ff; /* スクロールバーの色 */
    border-radius: 4px; /* 丸みを追加 */
}

.popup-content::-webkit-scrollbar-track {
    background-color: #f5f5f5; /* スクロールバーの背景 */
}

/* 閉じるボタン */
.close-btn {
    position: absolute;
    top: 15px; /* メニューより高い位置に配置 */
    right: 15px;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    background-color: #ff7f50; /* ボタンの背景色 */
    color: white;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10000; /* ボタンを最前面に */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.close-btn:hover {
    background-color: #e74c3c; /* ホバー時の強調色 */
    transform: scale(1.1); /* 少し拡大 */
}

.close-btn:active {
    transform: scale(0.95); /* クリック時に縮小 */
    background-color: #c0392b; /* クリック時の背景色 */
}

/* メニュー */
.popup-content nav {
    margin-top: 50px; /* 「×」ボタンとの重なりを防ぐための余白 */
}

/* 画像リンクセクションのスタイル */
.image-links {
    display: grid; /* グリッドレイアウトを使用 */
    grid-template-columns: repeat(2, 1fr); /* 2列に設定 */
    gap: 15px; /* 各画像間の間隔 */
    justify-content: center; /* 中央揃え */
    margin: 20px 0; /* 上下に余白を追加 */
}

.image-links a img {
    width: 100%; /* 幅を親要素に合わせる */
    max-width: 120px; /* 最大幅を設定 */
    height: auto; /* アスペクト比を維持 */
    border-radius: 8px; /* 角丸を追加 */
    transition: transform 0.3s ease, opacity 0.3s ease; /* ホバーアニメーション */
}

.image-links a img:hover {
    transform: scale(1.05); /* ホバー時に少し拡大 */
    opacity: 0.8; /* ホバー時に透明度を追加 */
}

/* SNSリンクセクションのスタイル */
.sns-links {
    display: flex; /* フレックスボックスで横並び */
    justify-content: center; /* 中央揃え */
    gap: 15px; /* 各アイコンの間隔 */
    margin-top: 20px; /* 余白を追加 */
}

.sns-links img {
    width: 40px; /* アイコンの幅 */
    height: 40px; /* アイコンの高さ */
    object-fit: cover; /* 比率を維持 */
    transition: transform 0.3s ease, opacity 0.3s ease; /* ホバーエフェクト */
}

.sns-links img:hover {
    transform: scale(1.1); /* ホバー時に拡大 */
    opacity: 0.8; /* ホバー時に透明度を追加 */
}

/* メニュー項目のスタイル */
.popup-content nav ul {
    list-style: none;
    padding: 0;
}

.popup-content nav ul li {
    margin: 10px 0;
}

.popup-content nav ul li a {
    display: flex; /* アイコンとテキストを並べる */
    align-items: center; /* 縦方向に中央揃え */
    gap: 10px; /* アイコンとテキストの間隔 */
    text-decoration: none;
    font-size: 18px;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #1e90ff; /* デフォルト背景色 */
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.popup-content nav ul li a:hover {
    background-color: #ff7f50; /* ホバー時のアクセントカラー */
    transform: scale(1.05); /* ホバー時に少し拡大 */
}

/* アイコンのスタイル */
.popup-content nav ul li a img {
    width: 20px;            /* 統一されたアイコンサイズ */
    object-fit: cover;      /* 比率を保持しながらフィット */
    margin-right: 10px;
}

/* サブメニューのスタイル */
.submenu3 {
    display: none; /* 初期状態で非表示 */
    margin-top: 10px;
    padding-left: 15px;
    border-left: 2px solid #ddd; /* 視覚的な区切り線 */
    overflow: hidden; /* 隠れる状態 */
    max-height: 0; /* 高さをゼロに */
    transition: max-height 0.3s ease-in-out; /* 開閉アニメーション */
}

.submenu3.open {
    display: block; /* 表示する */
    max-height: 430px; /* 必要な高さ */
    background-color: #ffffffa3;
    border-radius: 10px;
    padding: 3px;
}

.submenu3 li {
    margin: 5px 0;
}

.submenu3 li a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.submenu3 li a:hover {
    background-color: #74b9ff; /* ホバー効果 */
    color: white;
}
/**スマホ画面でのメニュー関係ここまで　・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・・*/

/**********************************************************/




/*
    フッター
*/
/* 全体スタイル */
footer {
    background-color: #c7e9e8;
    font-size: 14px;
    padding: 20px;
    text-align: center;
    margin-left: 220px;
    background-image: url("../images/footer_image_background.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

/* 一段目: 横長の画像 */
.footer-image img {
    width: 95%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

table.footer_company_addr {
    margin: auto;
    margin-bottom: 10px;
}
table.footer_company_addr td {
    text-align: left;
    padding: 0px 5px;
}
table.footer_company_addr td.name {
    text-align: center;
}
table.footer_company_addr.w425 {
    display: none;
}


.footer_copyright {
    font-size: 11px;
}

.footer_button_area {
    display: flex;
    margin: 20px 0px;
    justify-content: center;
}
.footer_button {
    position: relative;
    width: 160px;
    margin: 0 15px;
}

.footer_button>.footer_button_text {
    display: block;
    z-index: 38;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 12px;
    color: #093e8f;
    transition: all .2s;
    font-weight: bold;
}
.footer_button::before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    content: "";
}
.footer_button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #fff;
    content: "";
    transition: all .2s;
}
.footer_button:hover::after {
    top: 3px;
    left: 3px
}
.footer_button:hover .footer_button_text {
    top: 3px;
    left: 3px;
    color: #1abc9c
}

/* 四段目: メニュー */

.footer-menu a {
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.footer-menu a:hover {
    text-decoration: underline;
}
/**********************************************************/















/*
    メインエリア
*/
main {
    margin-left: 220px;
    flex-grow: 1;
}

/*  パンくず    */
.headline {
    text-align: center;
    color: white;
    padding: 1px;
    background: #c7e9e8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    list-style: none;
    display: flex;
    padding: 10px;
    background-color: #c7e9e8;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}
.breadcrumb li {
    margin-right: 10px;
}
.breadcrumb li a {
    text-decoration: none;
    color: #007bff;
}
.breadcrumb li a:hover {
    text-decoration: underline;
}
.breadcrumb li::after {
    content: ">";
    margin-left: 10px;
    color: #666;
}
.breadcrumb li:last-child::after {
    content: "";
}
.breadcrumb li:last-child a {
    color: #333;
    pointer-events: none;
    text-decoration: none;
}
/********/

.items-index-title {
    position: relative;
    padding-bottom: 2px;
    border-bottom: 7px dotted #c7e9e8;
}
.items-index-title .bk img {
    max-height: 300px;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 65% 50%;
    object-position: 65% 50%;
    font-family: "object-fit: cover; object-position: 65% 50%;";
}

.items-index-title .cp-name {
    position: absolute;
    top: 0px;
    left: 30%;
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 100px;
}
.items-index-title .cp-name img {
    width: 100%;
    max-width: 500px;
}


.items-index-title .iit_titleArea {
    display: flex;
    flex-flow: column;
    position: absolute;
    top: 0px;
    left: 0px;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100%;
    padding: 15px 15px 10px;
    background-color: rgba(255, 255, 255, .7);
}
.items-index-title .iit_icon {
    display: block;
    width: 100px;
    margin-right: 9px;
}
.items-index-title .iit_icon img {
    width: 100%;
}
.items-index-title .iit_title {
    color: #291200;
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.45;
    text-align: center;
}
.items-index-title .iit_subpage_title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    font-size: 28px;
    font-weight: bold;
}

.content .content_title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.content .content_title span {
    border-bottom: 3px dotted #5ce1e6;
}


.container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container div.image_link_guid {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
.container div.image_link_guid img {
    border-radius: 20px;
    transition:1s all;
}
.container a div.image_link_guid img:hover {
    transform: scale(1.2, 1.2);
    transition:1s all;
}

.block {
    flex: 1;
    width: 50%;
    box-sizing: border-box;
    margin: 10px;
    padding: 20px;
}


 /* メインエリアの標準スタイル */
.max_width_1000 {
    max-width: 1000px;
    margin: auto;
}
.max_width_900 {
    max-width: 900px;
    margin: auto;
}
.max_width_800 {
    max-width: 800px;
    margin: auto;
}
.max_width_700 {
    max-width: 700px;
    margin: auto;
}
.responsive-container {
    display: flex;
    flex-wrap: wrap;
    border: none;        /* ボーダーを削除 */
    border-radius: 0;    /* ボーダー半径を削除 */
    padding: 20px;
    margin: 0 auto;      /* 上下のマージンを削除 */
}
.responsive-container img {
    width: 100%;
}


.block_content_col1 {
    grid-template-columns: 1fr;
    gap: 10px;
    display: grid;
    margin-top: 20px;
}

.block_content_col2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    display: grid;
    margin-top: 20px;
}

.block_content_col2_series {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    display: grid;
    margin-top: 20px;
}

.block_content_col3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    display: grid;
    margin-top: 20px;
}

.block_content_col4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    display: grid;
    margin-top: 20px;
}


.block_content_col3_lock {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    display: grid;
    margin: auto;
}

.block_content_col4_lock {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    display: grid;
    margin: auto;
}


.content {
    flex: 1;
    min-width: 300px; /* 画面縮小時の最低幅を設定 */
}

.description {
    padding: 0px 10px 10px 10px;
    line-height: 1.6;
    color: #163968;
    text-align:left;
    font-weight: bold;
    display: inline-block;
}

h2.base_title {
    text-align: center;
}

.btnBase {
    border: 3px solid #c7e9e8;
    background-color: #FFFFFF;
    min-width: 300px;
    text-align: center;
    height: 50px;
    padding-top: 10px;
    padding-right: 40px;
    border-radius: 25px;
    font-weight: bold;
    color: #093e8f;
    background-image: url("../images/img_btn_arrow.png");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 35px 35px;
}
.btnBase:hover {
    background-color: #c6e0a4;
}
.btnNet10G_Link {
    display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    height: 87px;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url(../images/img_net10g_button_border.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
        padding-right: 37px;
}
.btnNet10G_Link:hover {
    color: #ffea31;
}
.btnNet10G_Link img {
    width: 30px;
    position: absolute;
    right: 42px;
}

.bk_bubble {
    background-image: url("../images/img_bk_bubble.png");
    background-repeat: repeat;
    background-size: cover;
    position: relative;
}
.bk_bubble::after {
    background-color: rgba(255, 255, 255, 0.6);
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.bk_bubble>.max_width_1000 {
    padding: 0px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.bk_bubble2 {
    background-image: url("../images/img_bk_bubble2.jpg");
    background-repeat: repeat;
    background-size: cover;
    position: relative;
}
.bk_bubble2::after {
    background-color: rgba(255, 255, 255, 0.6);
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.bk_bubble2>.max_width_1000 {
    padding: 0px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}


.block_service {
    color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% 100%;
    height: 120px;
}
.block_service.Various {
    background-image: url("../images/img_sevice_bk1.png");
}
.block_service.Discounts {
    background-image: url("../images/img_sevice_bk2.png");
}
.block_service>div {
    position: relative;
    top: 60px;
    font-size: 24px;
    line-height: 28px;
}
.block_service>div>span {
    font-size: 32px;
    font-weight: bold;
}

table.tblBlock_service {
    width: 95%;
    border: 2px solid #000000;
    border-radius: 20px;
    border-collapse: separate;
    border-spacing: 0px;
    margin: auto;
    overflow: hidden;
    height: calc(100% - 120px);
}
table.tblBlock_service.Various {
    border-color: #5ce1e6;
}
table.tblBlock_service.Discounts {
    border-color: #ffbae5;
}

table.tblBlock_service td {
    border-bottom: 2px solid #000000;
    font-size: 12px;
    background-color: #FFFFFF;
    width: 50%;
    position: relative;
    cursor: pointer;
}
table.tblBlock_service td:first-child {
    border-right: 2px solid #000000;
}
table.tblBlock_service tr.last_row td {
    border-bottom: 0px;
}
table.tblBlock_service.Various td {
    border-color: #5ce1e6;
}
table.tblBlock_service.Discounts td {
    border-color: #ffbae5;
    border: 0px;
}
table.tblBlock_service td div.service_item {
    padding: 15px 10px;
    height: 100%;
}
table.tblBlock_service td img {
    height: 50px;
    width: auto;
}
table.tblBlock_service td span {
    display: inline-block;
    position: relative;
    bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    line-height: 18px;
    color: #77ced9;
    text-align: left;
    padding-left: 3px;
}

table.tblBlock_service.Various td:after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #0000FF;
    bottom: 0px;                /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}

table.tblBlock_service.Discounts td:after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #f829ff;
    bottom: 0px;                /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}

table.tblBlock_service td:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

table.tblBlock_service.Discounts td {
    background-image: url("../images/img_sevice_discounts2.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    font-size: 18px;
    font-weight: bold;
    color: #77ced9;
    padding-bottom: 0px;
}
table.tblBlock_service.Discounts td img {
    width: 80%;
    height: auto;
    margin: auto;
}


/*  よくある質問    */
.qa_block {
    border-bottom: 3px dotted #093e8f;
    width: 100%;
}
.qa_block .qa_questions_block {
    background-image: url("../images/icon_qa_q.png");
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 77px;
    min-height: 72px;
    position: relative;
    cursor: pointer;
}
.qa_block .qa_questions_block:hover {
    color: #26cd1f;
    text-decoration: underline;
}

.qa_block .qa_questions_block .qa_questions_tag {
    font-size: 16px;
    font-weight: 500;
    color: #000000 !important;
    text-decoration: none !important;
    border: 2px solid #5ce1e6;
    border-radius: 18px;
    padding: 1px 10px;
    display: inline-block;
    min-width: 150px;
    text-align: center;
    margin: 0 8px 6px 0;
}
.qa_block .qa_questions_block a {
    position: relative;
    z-index: 20;
}
.qa_block .qa_questions_block .qa_questions_tag:hover {
    background-color: #b8fdff;
}
.qa_block .qa_answers_block {
    background-image: url("../images/icon_qa_a.png");
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 77px;
    min-height: 72px;
    border-top: 1px dashed #000000;
    display: none;
    /*pointer-events: none;*/
}
.qa_block .qa_value {
    font-size: 14px;
}
/*
.qa_block .qa_value::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}
*/
.qa_block .qa_value.Question:hover {
    color: #26cd1f;
    text-decoration: underline;
}
.qa_block.active .qa_answers_block {
    display: block;
}
.qa_block .qa_answers_block .faq_link {
    font-size: 16px;
    font-weight: bold;
    color: #0000FF;
    text-decoration: underline;
}
/**********************************************************/










/*
    トップページ
*/

/*  動画    */
.top-video-container {
    overflow: hidden;
    position: relative;
    padding: 0;
    margin: 0;
}
.top-video-container::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.top-video {
    width: auto;
    height: 100%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*  動画上のスライド    */
.slideshow-container {
    position: absolute; /* 中のスライドを重ねるために追加 */
    bottom: 0px;
    width: 300px;
    height: 150px;
    overflow: hidden;
    left: 30px;
    /* 元々のフレックス設定は中央揃え用ですが、絶対配置のスライドと組み合わせるため、
        内部コンテンツの位置は独自に調整します */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 10;
}
/* 各スライドを絶対配置して重ねる */
.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px); /* コンテナ内パディング分を引く */
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out; /* 1秒でじわっとフェード */
    z-index: 2;
}
/* 表示状態のスライド */
.slide.active {
    opacity: 1;
    visibility: visible;
}
.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide_arrow_prev, 
.slide_arrow_next {
    position: absolute;
    top: 50%;
}

.slide_arrow_next::after, 
.slide_arrow_prev::after {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    cursor: pointer;
    margin: auto;
    background: url("../images/icon_arrow-slide.svg") no-repeat center / contain;
    content: "";
}
.slide_arrow_prev::after {
    right: 110px;
    transform: rotate(180deg);
}
.slide_arrow_next::after {
    left: 110px;
}

.PhotographySupport {
    display: inline-block;
    position: absolute;
    right: 10px;
    bottom: 5px;
    background-color: #FFFFFF;
    padding: 2px 10px;
    border-radius: 10px;
}









/*  ご検討・ご加入中の方    */
.block_tabArea {
    display: none;
    position: relative;
}

.tab_Content_Consider,
.tab_Content_User {
    margin: 0px !important;
    border-radius: 45px;
    text-align: center;
    padding: 25px 40px;
    position: relative;
}
.tab_Content_Consider {
    background-color: #ffbd59;
}
.tab_Content_User {
    background-color: #c1ff72;
}
.tab_Content_Title {
    font-size: 30px;
    font-family: MSゴシック;
    font-weight: bold;
}
.tab_Content_Title img {
    width: 70px;
    position: absolute;
    top: -15px;
    left: 20px;
}

.block_content_menu {
    background-color: #FFFFFF;
    color: #093e8f;
    font-weight: bold;
    border-radius: 10px;
    position: relative;
    padding: 10px 5px;
    text-align: center;
    border: 1px solid #56e0e5;
}
.block_content_menu img {
    height: 50px;
    display: block;
    margin: auto;
}
.block_content_menu_simu img {
    width: 100%;
    display: block;
    margin: auto;
}

.block_content_image_text2 {
    display: flex;
    align-items: center;
}
.block_content_image_text2 img {
    height: 30px;
}
.block_content_image_text2 span {
    font-size: 12px;
    line-height: 12px;
    width: 100%;
}

.block_content_menu:hover {
    background-color: bisque;
}

/*  一関テレビ  */
.ititele_title {
    background-repeat: no-repeat;
    background-position:left;
    background-size: auto 80px;
    padding-left: 200px;
    padding-top: 40px;
    font-size: 24px;
    border-bottom: 5px dotted #5ce1e6;
}
.ititele_title.i10ch {
    background-image: url("../images/img_10ch.png");
}
.ititele_title.i11ch {
    background-image: url("../images/img_11ch.png");
}
.ichitele-block {
    width: 50%;
    box-sizing: border-box;
    padding: 5px;
}
.i10ch_point {
    background-image: url('../images/img_10ch_point.png');
    background-repeat: no-repeat;
    background-position:center;
    background-size: 100% 100%;
    text-align: center;
    padding-top: 20px;
}
.i10ch_point span {
    display: inline-block;
    text-align: left;
    padding: 0px 67px 40px 67px;
}

.i11ch_frame {
    padding: 40px;
    background-color: #baecee;
    border-radius: 40px;
    width: 45%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.i11ch_frame>a[href]>.i11ch_title {
    text-decoration: underline;
}
.i11ch_frame .i11ch_title {
    font-size: 32px;
    font-weight: bold;
    color: #093e8f;
    text-align: center;
}

/*  キャンペーン    */
.campaign a {
    width: 30%;
}
.block_campaign {
    background-color: #e1f8f4;
    height: 100%;
}
.block_campaign .campaign_content {
    padding: 5px 20px;
    font-size: 14px;
}

.swiper-slide {
    width: calc(100% / 3);
    padding: 0px 10px;
}

.icn_pr_video {
    padding: 0px 50px;
}
.icn_pr {
    background-image: url("../images/img_icn_pr_bk.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 150px;
    min-height: 220px;
    text-align: center;
}
.icn_pr span {
    display: inline-block;
    text-align: left;
    background-color: #FFFFFF;
}

/*  Information */
.scrollable-container {
    width: 100%;
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #cfe1ee66;
    margin-bottom: 20px;
}

.info-container {
    width: 100%;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info-header>.info-category {
    background-color: #1fbbcd;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 50px;
    margin-right: 10px;
}
.info-header>.info-category.info {
    background-color: #1fbbcd;
}
.info-header>.info-category.hindrance {
    background-color: #d32d00;
}
.info-header>.info-category.correction {
    background-color: #26cd1f;
}
.info-header>.info-category.maintenance {
    background-color: #FFFF00;
    color: #000000;
}

.info-header>.info-date {
    font-size: 14px;
    color: #555;
    width: 120px;
}


.info-content {
    font-size: 14px;
    color: #333;
}
.info-content .info-summary {
    cursor: pointer;
    color: #1fbbcd;
    font-weight: bold;
    padding: 10px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* ホバー時のエフェクト用トランジション */
}
.info-content>.info-summary:hover {
  background-color: #e6f7f9; /* ホバー時の背景色 */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* ホバー時のボックスシャドウ */
}
.info-content>.info-details {
    display: none;
    margin-top: 5px;
    padding: 10px;
    border-top: 1px solid #ddd;
    color: #302d2d;
    font-weight: bold;
}
.info-content>.info-details.visible {
  display: block;
}

/**********************************************************/





/*
    会社案内
*/

.block .item_title {
    font-weight: bold;
    text-align: center;
    margin: 0px;
    font-size: 22px;
}

.content.company_profile {
    margin: 30px 0px;
}
.content.company_profile dl {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
}
.content.company_profile dl dt {
    width: 30%;
    padding: 20px;
    padding-left: 50px;
    border-bottom: 3px dotted #cfd6e5;
    display: flex;
    align-items: center;
}
.content.company_profile dl dt:first-of-type {
    border-top: 3px dotted #cfd6e5;
}
.content.company_profile dl dd {
    width: 70%;
    padding: 20px 0px;
    border-bottom: 3px dotted #cfd6e5;
    margin: 0px;
    display: flex;
    align-items: center;
}
.content.company_profile dl dd:first-of-type {
    border-top: 3px dotted #cfd6e5;
}

.content.company_profile.facility_list {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
}
.content.facility_info {
    background-color: #e1f8f4;
    padding: 30px 0px;
    margin-bottom: 30px;
}
.content.facility_info .facility_title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
}
.content.facility_info dl {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
}
.content.facility_info dl dt {
    width: 30%;
    padding: 20px;
    padding-left: 50px;
    border-bottom: 3px dotted #8da9c3;
    display: flex;
    align-items: center;
}
.content.facility_info dl dt:first-of-type {
    border-top: 3px dotted #8da9c3;
}
.content.facility_info dl dd {
    width: 70%;
    padding: 20px 0px;
    border-bottom: 3px dotted #8da9c3;
    margin: 0px;
    display: flex;
    align-items: center;
}
.content.facility_info dl dd:first-of-type {
    border-top: 3px dotted #8da9c3;
}
.content.facility_info .facility_br {
    display: none;
}


/*  プライバシーポリシー    */
.company_declaration {
    text-align: center;
    margin: 20px 0px
}
.company_declaration>div.cd_title {
    font-size: 22px;
    margin-bottom: 20px;
}

.policy_block {
    margin: 20px 0px;
}
.policy_block .policy_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.policy_block .policy_content {
    
}
.policy_block .policy_content ol {
    padding: 0px;
    margin: 0px;
}
.policy_block .policy_content ol li {
    list-style-type: none;
    margin-left: 1.4em;
    text-indent: -1.4em;
}
.policy_block .policy_content ol.small_kakko li {
    counter-increment: small_cnt;
}
.policy_block .policy_content ol.small_kakko_alpha li {
    counter-increment: small_alpha_cnt;
}
.policy_block .policy_content ol.large_kakko li {
    counter-increment: large_cnt;
}
.policy_block .policy_content ol.small_kakko li::before {
    content: "("counter(small_cnt)")";
}
.policy_block .policy_content ol.small_kakko_alpha li::before {
    content: "("counter(small_alpha_cnt, lower-alpha)")";
}
.policy_block .policy_content ol.large_kakko li::before {
    content: "["counter(large_cnt)"]";
}


/*  契約約款    */
.tac_link {
    background-color: #e1f8f4;
    border-radius: 20px;
}
.tac_link a.link {
    display: inline-block;
    position: relative;
    padding-left: 65px;
    text-decoration: underline;
}
.tac_link a.link::after {
    display: block;
    position: absolute;
    top: 0;
    left: 32px;
    content: "＞　";
}
.tac_link ul {
    padding-left: 0px;
}
.tac_link ul li {
    list-style-type: none;
    padding: 5px 0px;
}


/*  カスハラ    */
.policy_content dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
}
.policy_content dl dt {
    width: 30%;
    padding: 20px;
    padding-left: 20px;
    border-bottom: 3px dotted #cfd6e5;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.policy_content dt:first-of-type {
    border-top: 3px dotted #cfd6e5;
}
.policy_content dl dd {
    width: 70%;
    padding: 20px 0px;
    border-bottom: 3px dotted #cfd6e5;
    margin: 0px;
    display: flex;
    align-items: center;
}
.policy_content dl dd:first-of-type {
    border-top: 3px dotted #cfd6e5;
}


/*  採用情報    */
.container.recruit_paisen span.title {
    background-color: #e1f8f4;
    margin-right: 30px;
    padding: 0px 10px;
}
.content .recruit_title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 3px dotted #5ce1e6;
}
.content .recruit_title.no_border {
    border: 0px;
}

.content.recruit_detail {
    background-color: #e1f8f4;
    border-radius: 50px;
    padding: 30px 0px;
    padding-bottom: 40px;
    margin-bottom: 30px;
}
.content.recruit_detail dl {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
}
.content.recruit_detail dl dt {
    width: 30%;
    padding: 20px;
    padding-left: 50px;
    border-bottom: 3px dotted #8da9c3;
    display: flex;
    align-items: center;
}
.content.recruit_detail dl dt:first-of-type {
    border-top: 3px dotted #8da9c3;
}
.content.recruit_detail dl dd {
    width: 70%;
    padding: 20px 0px;
    border-bottom: 3px dotted #8da9c3;
    margin: 0px;
    display: flex;
    align-items: center;
}
.content.recruit_detail dl dd:first-of-type {
    border-top: 3px dotted #8da9c3;
}

.content.icn_msg {
    text-align: center;
    background-image: url("../images/img_recruit_msg_bk.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 50% 50%;
    padding: 24px 0px;
}
.content.icn_msg .recruit_title {
    font-size: 24px;
    font-weight: bold;
}
.content.icn_msg .recruit_title span {
    border: 0px;
}





/*
    ご検討中の方
*/
.what_icn .icn_benefits {
    text-align: center;
    margin-bottom: 45px;
}

.block_content_col3_lock.pg-consider,
.block_content_col4_lock.pg-consider {
    background-color: #c7e9e8;
    padding: 15px;
    border-radius: 40px;
}
.block_content_contract_about {
    background-color: #FFFFFF;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    border-radius: 40px;
    position: relative;
    padding: 10px 5px;
    text-align: center;
    border: 1px solid #56e0e5;
}
.block_content_contract_about img {
    width: auto;
    height: 80px;
    display: block;
    margin: auto;
}
.block_content_contract_about:hover {
    background-color: bisque;
}

/*  サービス提供エリア  */
.container.service_area {
    max-width: 800px;
    margin: auto;
}
.container.service_area>div:first-child {
    width: 80%;
    margin: auto;
}
.service_start_block {
    font-weight: bold;
    margin-bottom: 15px;
}

/*  サービス開始までの流れ  */
.service_launch_block {
    background-color: #e1f8f4;
    border-radius: 40px;
    margin-bottom: 30px;
    padding: 35px 35px 35px 150px;
    display: block;
    position: relative;
}
.service_launch_block>.no {
    font-size: 81px;
    font-weight: bold;
    position: absolute;
    top: 35px;
    left: 35px;
    height: 100%;
}
.service_launch_block:nth-child(n+2)>.no::before {
    display: block;
    z-index: 9;
    position: absolute;
    font-size: 57px;
    content: ">";
    transform: rotate(90deg);
    top: -50px;
    left: calc((92px - 83px) / 2);
    color: #ffffff;
}
.service_launch_block:nth-last-child(n+2)>.no::after {
    display: block;
    z-index: 9;
    position: absolute;
    top: 90px;
    left: calc((92px - 53px) / 2);
    width: 5px;
    height: calc(100% - 70px);
    background-color: #ffffff;
    content: "";
}
.service_launch_block>.title {
    font-size: 22px;
    font-weight: bold;
}
.service_launch_block>.responsible {
    display: inline-block;
    position: absolute;
    top: 35px;
    right: 35px;
}
.service_launch_block>.responsible>.responsible_block {
    text-align: center;
    font-weight: bold;
    width: 80px;
    height: 32px;
    margin-left: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.service_launch_block>.responsible>.responsible_block.customer {
    color: #ff914d;
    border: 3px solid #ff914d;
}
.service_launch_block>.responsible>.responsible_block.icn {
    color: #77ced9;
    border: 3px solid #77ced9;
}

.service_launch_block>.other_content {
    margin-top: 40px;
    text-align: center;
}
.service_launch_block>.other_content>a>img.simulation {
    max-width: 450px;
}

.service_launch_block_start {
    text-align: center;
    font-size: 14px;
}
.service_launch_block_start>div {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 140px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

/*  導入工事のご案内  */
.block_40p {
    width: 40%;
    box-sizing: border-box;
    padding: 5px;
}
.block_60p {
    width: 60%;
    box-sizing: border-box;
    padding: 5px;
}

.block_60p>.block_title {
    font-size: 18px;
    font-weight: bold;
}
.block_60p>ul {
    text-align: left;
    padding-left: 20px;
}

.pg_consider_installvideo {
    border: 2px solid #f21127;
    border-radius: 30px;
    display: inline-flex;
    flex-wrap: wrap;
}
.pg_consider_installvideo dt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    text-decoration: underline;
    color: #0000FF;
    font-weight: bold;
}
.pg_consider_installvideo dd {
    background-color: #f21127;
    padding: 10px;
    display: inline-flex;
    justify-content: center;
    width: 70px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin: 0px;
}
.pg_consider_installvideo dd img {
    width: 30px;
}

/*  新築を建てる方へ    */
.iit_titleArea.pg_consider_newhome span.iit_icon {
    width: 150px;
}

.pg_consider_newhome-block {
    background-color: #c7e9e8;
    border-radius: 40px;
    margin: 20px;
}
.pg_consider_newhome-block>.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    margin: 20px auto;
}
.pg_consider_newhome-block>img {
    max-width: unset;
}
.pg_consider_newhome-block>.value {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    margin: 20px auto;
}
.pg_consider_newhome-block div .btnBase {
    font-size: 18px;
}









/*  ご加入中の方    */
/*  各種申込手続き  */
.pg_user_link {
    
}
.block_25p {
    width: 25%;
    box-sizing: border-box;
    padding: 5px;
}

.block_25p.pg-user {
    text-align: center;
}
.block_25p.pg-user>a {
    font-size: 22px;
    color: #093e8f;
    font-weight: bold;
}

.pg_user_content {
    display: grid;
    justify-content: center;
    text-align: center;
}
.pg_user_content div,
.pg_user_content a {
    margin: auto;    
}
.pg_user_link {
    background-image: url("../images/icon_link_hand.png");
    background-repeat: no-repeat;
    background-size: 31px;
    padding-left: 33px;
    color: #093e8f;
    font-weight: bold;
    font-size: 18px;
    margin: 20px auto !important;
}
.pg_user_contact {
    padding: 10px 30px;;
    border: 8px solid #c7e9e8;
    border-radius: 30px;
    text-align: center;
    font-family: "MPLUSRounded1c-ExtraBold", sans-serif ;
    background-color: #FFFFFF;
}
.pg_user_contact .pg_user_contact_title {
    font-weight: bold;
    line-height: 18px;
}
.pg_user_contact .pg_user_contact_telno {
    background-image: url("../images/icon_contact_tel.png");
    background-repeat: no-repeat;
    background-position: left;
    background-size: 40px;
    padding-left: 55px;
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    height: 48px;
    white-space: nowrap;
}
.pg_user_contact .pg_user_contact_opening_hours {
    font-family: "MPLUSRounded1c-Light", sans-serif;
    font-size: 14px;
    position: relative;
    top: -9px;
}
.tbl_user_other_contact {
    width: fit-content;
    margin: auto;
    margin-top: 30px;
    font-weight: bold;
}
.tbl_user_other_contact td.title {
    text-align: left;
}
.tbl_user_other_contact td.fee {
    text-align: right;
}
.qa_block_user {
    border-color: #c7e9e8;
}


/*  サービス解約について    */
img.pg_user_cancellation_pc {
    display: block;
}
img.pg_user_cancellation_sp {
    display: none;
}

.pg_user_contact_block {
    background-color: #c7e9e8;
    border-radius: 30px;
    font-family: "MPLUSRounded1c-ExtraBold", sans-serif;
}
div.gp_user_contact_word {
    margin-top: 10px;
    margin-bottom: 2px;
}

.block_user_cancel {
    flex: 1;
    width: 50%;
    box-sizing: border-box;
    margin: 20px;
    padding: 20px;
    background-color: #baecee;
    border-radius: 40px;
}
.block_user_cancel>.title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}
.block_user_cancel>.image {
    text-align: center;
    margin: 15px 0px;
}
.block_user_cancel>.image>img {
    max-width: 184px;
}
.block_user_cancel>.value a.link {
    margin: auto;
    margin-top:10px;
    margin-bottom: 10px;
    display: inline-block;
}

.gp_user_ptn_block {
    width: 100%;
}
.gp_user_ptn_block>.title {
    background-image: url("../images/img_block_mark.png");
    background-repeat: no-repeat;
    font-size: 18px;
    background-position: left;
    background-size: 22px;
    padding-left: 40px;
    font-size: 18px;
    font-weight: bold;
}
.gp_user_ptn_block>.value {
    padding-left: 40px;
    margin: 20px 0px;
}
.gp_user_ptn_block>.cancel_fee {
    width: 100%;
    background-color: #baecee;
    padding: 40px 30px;
    border-radius: 40px;
}
.gp_user_ptn_block>.cancel_fee>table {
    width: 100%;
    background-color: #FFFFFF;
    border-collapse: collapse;
}
.gp_user_ptn_block>.cancel_fee>table td {
    padding: 24px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #000000;
    width: 50%;
}

.gp_user_things_separate {
    border-top: 3px dotted #9eadca;
    padding-top: 20px;
}
.gp_user_things_separate a {
    text-decoration: underline;
    color: #0000FF;
}

/*  auスマートバリュー  */
.pg-smart_value {
    justify-content: center;
    background-image: url("../images/img_bk_bubble_light.jpg");
    background-position: bottom -450px left 0px;
    background-repeat: repeat-x;
    background-size: auto;
}
.gp_user_sv_conditions {
    background-color: #baecee;
    border-radius: 40px;
}
.gp_user_sv_conditions>.gp_user_sv_conditions_value {
    background-color: #FFFFFF;
    border-radius: 20px;
    margin: 30px;
    text-align: center;
}
.gp_user_sv_conditions>.gp_user_sv_conditions_value>.title {
    font-size: 18px;
    font-weight: bold;
}
.gp_user_sv_conditions>.gp_user_sv_conditions_value a.link {
    margin: auto;
    margin-top:10px;
    margin-bottom: 10px;
    display: inline-block;
}

.pg_user_sv_content {
    color: #e95504;
    font-size: 28px;
    font-weight: bold;
}

.pg_user_sv_discount>div {
    font-size: 20px;
    font-weight: bold;
    line-height: 27px;
}
.pg_user_sv_discount>img {
    max-width: 300px;
}

.pg_svprocess_value {
    display: grid;
}
.explanation.pg_svprocess_value a.link {
    margin: auto;
    margin-top:10px;
    margin-bottom: 10px;
    display: inline-block;
}
.explanation.pg_svprocess_value div.pg_user_contact {
    display: inline-block;
    width: fit-content;
    margin: auto;
}
.explanation.pg_svprocess_value a.link_decoration {
    text-decoration: underline #0000FF;
    color: #0000FF;
}

/*  STBについて  */
.pg_user_stb_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.pg_user_stb_title .gp_user_stb_title_sub {
    font-size: 14px;
}
.pg_user_stb_value {
    font-size: 14px;
    text-align: left;
}
.pg_user_stb_link {
    display: inline-block;
    margin-top: 100px;
}
.pg_user_stb_link2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.pg_user_stb_oldtype_title {
    border: 0px !important;
    line-height: 22px;
    position: relative;
}
.pg_user_stb_oldtype_title>div.message {
    font-size: 20px;
    position: absolute;
    top: 11px;
    right: -140px;
}

.pg_user_stb_contact {
    background-color: #c7e9e8;
    border-radius: 20px;
    padding: 20px;
    margin: auto;
}
.pg_user_stb_contact>.title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}
.block_content_contract_stb {
    background-color: #FFFFFF;
    color: #093e8f;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    position: relative;
    padding: 10px 20px;
    text-align: center;
    border: 1px solid #56e0e5;
}
a.block_content_contract_stb {
    font-size: 18px;
    line-height: 24px;
}
.block_content_contract_stb img {
    width: auto;
    height: 50px;
    display: block;
    margin: auto;
    margin-bottom: 5px;
}
a.block_content_contract_stb:hover {
    background-color: bisque;
}

/*  NHK衛星受信料団体一括支払い  */
.pg_user_nhk_container {
    display: block;
    text-align:center;
}
.pg_user_nhk_container>.title1 {
    font-size: 20px;
    font-weight: bold;
}
.pg_user_nhk_container>.title2 {
    font-size: 32px;
    font-weight: bold;
    color: #e52d27;
}

.pg_user_nhk_container table {
    font-weight: bold;
    text-align: center;
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
}
.pg_user_nhk_container table td {
    border: 1px solid #000000;
    padding: 15px 5px;
}
.pg_user_nhk_container ul {
    padding-left: 19px;
}
.pg_user_nhk_container a {
    text-decoration: underline;
    color: #0000FF;
    margin-left: 20px;
}

.pg_user_nhk_block_col2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    display: grid;
}

/*  安心サポート    */
.gp_user_support_value {
    display: inline-flex;
    margin: auto;
}
.gp_user_support_value img {
    max-width: 150px;
    margin: 0px 30px;
}
.gp_user_support_value div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    font-size: 22px;
}

.gp_user_support_value div.support_fee {
    max-width: 540px;
}
.gp_user_support_value div.support_fee dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
}
.gp_user_support_value div.support_fee dl dt {
    width: 45%;
}
.gp_user_support_value div.support_fee dd {
    width: 55%;
    margin: 0px;
}

.container.gp_user_support_apply {
    margin: 0px 0px;
    font-size: 22px;
}
.container.gp_user_support_apply dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
}
.container.gp_user_support_apply dl dt {
    width: 30%;
    padding: 20px;
    padding-left: 50px;
    border-bottom: 3px dotted #baecee;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.container.gp_user_support_apply dl dt:first-of-type {
    border-top: 3px dotted #baecee;
}
.container.gp_user_support_apply dl dd {
    width: 70%;
    padding: 20px 0px;
    border-bottom: 3px dotted #baecee;
    margin: 0px;
    display: flex;
    align-items: center;
}
.container.gp_user_support_apply dl dd:first-of-type {
    border-top: 3px dotted #baecee;
}

/*  接続・設定方法    */
.pg_user_howto-block {
    background-color: #c7e9e8;
    border-radius: 40px;
    margin: 30px;
}
.pg_user_howto-block div {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
}
.pg_user_howto-block div .btnBase {
    font-size: 18px;
}
.pg_user_howto-block .pg_user_howto_icon {
    display: block;
    margin: auto;
    max-height: 100px;
    width: auto;
}
.pg_user_howto-block .pg_user_howto_link a div.btnBase {
    margin-bottom: 20px;
}

.block_content_col4.pg_user_howto {
    background-color: #c7e9e8;
    border-radius: 20px;
    padding: 20px;
    margin: auto;
    gap: 20px;
    width: 100%;
}
.block_content_contract_howto {
    background-color: #FFFFFF;
    color: #093e8f;
    font-size: 22px;
    font-weight: bold;
    border-radius: 20px;
    position: relative;
    padding: 10px 20px;
    text-align: center;
    border: 1px solid #56e0e5;
    display: inline-grid;
}
.block_content_contract_howto img {
    max-width: 120px;
    margin: auto;
}
a.block_content_contract_howto:hover {
    background-color: bisque;
}

/*  WEB口座振替    */
.pg_user_webdirectdebit_apply {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #093e8f;
    line-height: 28px;
    text-decoration: underline;
    margin-top: 50px;
    padding: 10px 50px;
    border: 13px solid #c7e9e8;
    border-radius: 45px;
    background-color: #FFFFFF;
}
.pg_user_webdirectdebit_bank {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin: 20px 0px 30px;
}
.pg_user_webdirectdebit_content {
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
}
.pg_user_webdirectdebit_content ul {
    margin: 0px;
    padding-left: 3px;
}

.pg_user_webdirectdebit_process-block {
    font-weight: bold;
    text-align: left;
    background-color: #c7e9e8;
    margin: 20px 10px;
    padding: 20px 40px;
    border-radius: 20px;
}
.pg_user_webdirectdebit_process-block table td.left {
    max-width: 410px;
}
.pg_user_webdirectdebit_process-block .step {
    font-size: 22px;
    margin-bottom: 20px;
}
.pg_user_webdirectdebit_process-block img {
    width: 80px;
}









/*  サービス内容    */
/*  ICNとは  */
.container div.image_link_guid div {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #FFFFFF;
    color: #093e8f;
    font-weight: bold;
    font-size: 24px;
    padding: 5px 10px;
}

.pg_sevice_tv_osusume {
    text-align: center;
}

.pg_sevice_tv_osusume img {
    width: calc(24% - 40px);
    margin: 0px 20px;
}

.block_pg_service {
    flex: 1;
    width: 50%;
    box-sizing: border-box;
    margin: 20px;
    padding: 20px;
    background-color: #baecee;
    border-radius: 40px;
    position: relative;
    padding-bottom: 100px;
}
.block_pg_service>.title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
}
.block_pg_service>.image {
    text-align: center;
    margin: 15px 0px;
}
.block_pg_service>.image>img {
    max-width: 90%;
}
.block_pg_service>.value {
    line-height: 20px;
}
.block_pg_service>.svc_button_area {
    text-align: center;
    position: absolute;
    bottom: 15px;
    margin: auto;
    left: 0;
    right: 0;
}
.block_pg_service>.svc_button_area a.link {
    margin: auto;
    margin-top:10px;
    margin-bottom: 10px;
    display: inline-block;
}

/*  チャンネル紹介  */
.pg_service_channel_block {
    padding: 10px 15px 50px 15px;
    background-color: #c7e9e8;
    border-radius: 50px;
}
.pg_service_channel_block>.title {
    font-size: 22px;
    font-weight: bold;
    border-bottom: 3px dotted #5ce1e6;
    padding: 10px 0px 10px 50px;
    margin-bottom: 10px;
    width: 100%;
}

.pg_service_channel_block>.channel_area {
    display: grid;                              /* グリッドレイアウトを使用 */
    grid-template-columns: repeat(5, 1fr);      /* 2列に設定 */
    gap: 5px;                                   /* 各画像間の間隔 */
    justify-content: center;                    /* 中央揃え */
}
.pg_service_channel_block>.channel_area>.channel_block {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
}
.channel_block>.image {
    width: 100%;
    height: 80px;
}
.channel_block>.image>img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
}
.channel_block>.channel_no {
    margin: 10px 0px;
}
.channel_block>.link {
    line-height: 15px;
    height: 30px;
    font-size: 14px;
    font-weight: bold;
}
.channel_block>.link>a {
    color: #093e8f;
}
.channel_block>.link>a[href] {
    text-decoration: underline;
}


table.tblOptionChannel {
    width: 100%;
    border-spacing: 4px;
}
table.tblOptionChannel>thead th, 
table.tblOptionChannel>tbody td {
    background-color: #FFFFFF;
}
table.tblOptionChannel>thead th {
    
}
table.tblOptionChannel>tbody td {
    padding: 20px;
    text-align: center;
}
table.tblOptionChannel>tbody td.title {
    font-weight: bold;
    width: 15%;
}
table.tblOptionChannel>tbody td.image {
    padding: 10px;
    width: 26%;
}
table.tblOptionChannel>tbody td.image div.name {
    display: none;
}

table.tblOptionChannel>tbody td.name {
    text-align: left;
}
table.tblOptionChannel>tbody td a {
    color: #093e8f;
    text-decoration: underline;
}
table.tblOptionChannel>tbody td.fee {
    width: 25%;
}
table.tblOptionChannel>tbody td img {
    max-width: 100%;
    max-height: 70px;
    width: auto;    
}

/*  コミュニティチャンネル  */
.pg_service_komichan_title {
    background-repeat: no-repeat;
    background-size: 160px;
    padding-left: 180px;
    height: 80px;
}
.pg_service_komichan_title span {
    display: flex;
    height: 67px;
    line-height: 33px;
    align-items: end;
}

.pg_service_komichan_timeslip {
    background-color: #baecee;
    padding: 40px 30px;
    border-radius: 40px;
}
.pg_service_komichan_timeslip>.block_40p>div {
    font-size: 22px;
    font-weight: bold;
    color: #093e8f;
    border: 3px solid #093e8f;
    border-radius: 40px;
    background-color: #FFFFFF;
    padding: 30px;
    margin-right: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}
.pg_service_komichan_timeslip>.block_60p>div {
    margin-left: 20px;
    text-align: center;
}
.pg_service_komichan_timeslip>.block_60p>div>img {
    max-height: 300px;
    max-width: max-content;
}

/*  インターネット ICNひかり    */
.pg_service_internet_comment {
    width: 100%;
    text-align: center;
    font-weight: bold;
    line-height: 20px;
}

.pg_service_internet_course {
    background-color: #baecee;
    border-radius: 40px;
    padding: 30px;
    font-weight: bold;
    margin: auto;
}
.pg_service_internet_course .btnBase {
    min-width: unset;
}

.pg_service_internet_course>table {
    padding: 20px 25px;
    font-size: 18px;
    text-align: center;
    width: 100%;
}

.pg_service_internet_course>table.tblMain {
    background-color: #FFFFFF;
    border-radius: 30px;
}
.pg_service_internet_course>table td.features {
    font-size: 12px;
}
.pg_service_internet_course>table td.title {
    font-family: 'CP_Font';
    text-align: left;
    padding-right: 40px;
}
.pg_service_internet_course>table td.fee {
    text-align: right;
}

.block_pg_service_net {
    flex: 1;
    width: 50%;
    box-sizing: border-box;
    margin: 20px;
    padding: 20px;
    border-radius: 40px;
    position: relative;
}
.block_pg_service_net>.image {
    text-align: center;
    margin: 15px 0px;
}
.block_pg_service_net>.image>img {
    max-width: 200px;
}
.block_pg_service_net>.value {
    line-height: 20px;
    font-weight: bold;
}

.pg_service_net_groupgrid {
    background-color: #d9eeed;
    border-radius: 40px;
    padding: 10px;
    margin-top: 30px;
}
.pg_service_net_groupgrid>.block>img {
    border-radius: 20px;
}
.pg_service_net_groupgrid>.block.net_groupgrid {
    font-weight: bold;
    text-align: center;
    display: grid;
}
.pg_service_net_groupgrid>.block.net_groupgrid>.title {
    font-size: 22px;
}
.pg_service_net_groupgrid>.block.net_groupgrid>.value {
    font-size: 14px;
    line-height: 18px;
    margin: auto;
}

.pg_service_net_groupgrid>.block {
    padding: 10px;
    text-align: center;
}
.pg_service_net_groupgrid>.block img {
    max-width: 300px;
}
.pg_service_net_groupgrid>.block.net_groupgrid>.svc_button_area {
    margin: auto auto 0px auto;
    width: 100%;
}


/*  インターネット ICNひかり10G    */
.pg_service_net10g_color {          color: #ffea31;       }
.pg_service_net10g_bgcolor {
    background-color: #ffea31;
    color: #000000;
    font-family: 'CP_Font';
    font-size: 22px;
    text-align: center;
    padding: 10px;
}

.items-index-title.pg_service_net10g {
    border: 0px;
}
.items-index-title.pg_service_net10g .bk img {
    object-position: 50% 50%;
}

.recruit_title.pg_service_net10g>.title10g_1 {
    font-family: 'CP_Font';
    font-size: 30px;
    color: #ffea31;
    position: absolute;
    left: 0;
    transform: rotate(-20deg);
}
.recruit_title.pg_service_net10g>.title10g_2 {
    font-family: 'CP_Font';
    font-size: 50px;
    letter-spacing: 7px;
    text-shadow: 
        5px 5px 0px #ffffff, 
        -5px 5px 0px #ffffff, 
        5px -5px 0px #ffffff, 
        -5px -5px 0px #ffffff, 
        5px 0px 0px #ffffff, 
        0px 5px 0px #ffffff, 
        -5px 0px 0px #ffffff, 
        0px -5px 0px #ffffff;        /* 文字の影 */
    margin-left: 136px;
}
.recruit_title.pg_service_net10g>.title10g_2>.clrICN {
    color: #093e8f;
}
.recruit_title.pg_service_net10g>.title10g_2>.clrHikari {
    color: #fab20a;
}
.recruit_title.pg_service_net10g>.title10g_2>.clr10G {
    font-size: 75px;
}

.pg_service_net10g_block {
    border: 3px solid #cbcfd3;
    padding: 15px 25px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    width: 100%;
}
.pg_service_net10g_block .contents {
    margin-bottom: 15px;
}
.pg_service_net10g_block .contents>.title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}
.pg_service_net10g_block .contents>.value {
    font-size: 14px;
    line-height: 18px;
}
.pg_service_net10g_block .contents.connect {
    width: 64%;
}
.pg_service_net10g_block .timewatch {
    max-width: 100px;
    margin-right: 30px;
}

.pg_service_net10g_block>.paformance>.block {   flex: unset;    }
.pg_service_net10g_block>.paformance>.block .value {
    padding-right: 20px;
    font-weight: bold;
}
.pg_service_net10g_block>.paformance>.block img {
    max-width: 160px;
}

.pg_service_net10g_block>.headphones {
    position: absolute;
    width: 70px;
    top: -68px;
    left: 68px;
}


/*  インターネット ICNひかり10G    */

/*  ライフサポート    */
.pb_lifesupport_menu_title {
    font-size: 18px;
    font-weight: bold;
    margin: auto;
    color: #FFFFFF;
    background-color: #00bf63;
    padding: 5px 10px;
    border-radius: 10px;
}
.pb_lifesupport_menu_value {
    font-size: 12px;
}
.pb_lifesupport_menu_value table {
    width: 100%;
    background-color: #00bf63;
    margin-top: 20px;
    margin-bottom: 20px;
}
.pb_lifesupport_menu_value table th,
.pb_lifesupport_menu_value table td {
    background-color: #FFFFFF;
    padding: 5px;
}

/*  メッシュWi-Fi    */
.pg_meshwifi_block_title {
    font-size: 30px !important;
    line-height: 24px;
}
.pg_meshwifi_block_title>span {
    font-size: 14px;
}

.pg_meshwifi_movie_button {
    position: relative;
    padding-left: 53px;
}
.pg_meshwifi_movie_button>img {
    width: 70px;
    position: absolute;
    left: -35px;
}
.pg_meshwifi_movie_button div.btnDiv {
    font-weight: bold;
    text-align: center;
    color: #093e8f;
    text-decoration: underline;
    line-height: 20px;
    border: 5px solid #77ced9;
    border-radius: 40px;
    padding: 10px 20px;
    min-width: 280px;
}

.pg_meshwifi_fee_table table {
    width: 100%;
    background-color: #77ced9;
    margin-top: 20px;
    margin-bottom: 20px;
        border-spacing: 4px;
}
.pg_meshwifi_fee_table table th,
.pg_meshwifi_fee_table table td {
    background-color: #FFFFFF;
    padding: 5px;
    text-align: center;
    font-weight: bold;
}

/*  その他サービス    */
.pg_other_service_block_title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    min-height: 83.3px;
    line-height: 36px;
    margin-top: 20px;
}

/*  番組表  */
.pg_programguide table.ButtonArea input[type="button"] {
	height:30px;
	width:100px;
	font-size:18px;
	font-weight:bold;
}

.pg_programguide table#TimeTable_Weekly {
	border-collapse:collapse;
	border:1px solid #000;
}
.pg_programguide table#TimeTable_Weekly td{
	border-left:1px solid #000;
	border-right:1px solid #000;
	border-top:1px dotted #F00;
	border-bottom:1px dotted #F00;
	min-height:30px;
}

.pg_programguide table#TimeTable_Weekly td.Date {
	border:1px solid #000;
	height:50px;
	font-size:20px;
	font-weight:bold;
	text-align:center;
}
.pg_programguide table#TimeTable_Weekly td.Week {
	border:1px solid #000;
	font-weight:bold;
	text-align:center;
	padding:5px;
}

.pg_programguide table#TimeTable_Weekly td.Sunday {
	background-color:#FF99CC;
	color:#FFF;
}
.pg_programguide table#TimeTable_Weekly td.Saturday {
	background-color:#00CCFF;
	color:#FFF;
}

.pg_programguide table#TimeTable_Weekly td.WSunday {
	color:#FF99CC;
}
.pg_programguide table#TimeTable_Weekly td.WSaturday {
	color:#00CCFF;
}

.pg_programguide table#TimeTable_Weekly td.TileLane {
	background-color:#00B058;
	color:#FFF;
	padding:2px 5px;
	text-align:center;
	font-weight:bold;
}

.pg_programguide table#TimeTable_Weekly td.TimeS {
	vertical-align:top;
	width:20px;
	text-align:center;
	border-right:0px;
}

.pg_programguide table#TimeTable_Weekly td.PTitle {
	vertical-align:top;
	border-left:0px;
	width:110px;
}














.ul_kome li {
    list-style: "※ ";
}
.ul_maru li {
    list-style: "● ";
}










































@media print {
    .pg_programguide table.ButtonArea {
        display:none;
    }
}



@media only screen and (max-width: 1223px) {
    html {
        scroll-padding-top: 40px;
    }
    html.comichan {
        scroll-padding-top: 80px;
    }

    #header {
        display: flex; /* スマホ画面時に表示 */
    }

    .top-video-container{
        margin-top: 65px;
    }

    #sidebar {
        display: none;
        transition: all 0.3s ease; /* スムーズな表示切り替え */
    }

    div.divSideBannerArea a img {
        width: 60%;
    }

    /*  ▼▼▼   フッター関係   ▼▼▼  */
    footer {
        margin-left: 0px;
        padding: 20px 0px;
    }

    
    /*  ▼▼▼   メインエリア   ▼▼▼  */
    main {
        margin-left: 0;
    }

    .block_content_col3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .block_content_col2_series {
        grid-template-columns: 1fr;
    }


    .br_1223 {
        display: none;
    }

    table.tblBlock_service td span {
        display: block;
        text-align: center;
        bottom: 0px !important;
        margin-bottom: 7px;
    }




}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 40px;
    }
    html.comichan {
        scroll-padding-top: 80px;
    }

    /*  ▼▼▼   メニュー関係   ▼▼▼  */
    .popup-content {
        margin-top: 15px; /* モバイル用の余白 */
        font-size: 1rem; /* フォントサイズを調整 */
        padding: 15px;
    }

    .close-btn {
        top: 10px; /* モバイル画面での高さ調整 */
        right: 10px;
    }

    .popup-content nav {
        margin-top: 40px; /* モバイル用余白 */
    }

    .menu-item3 > a {
        font-size: 16px; /* メニュー項目の文字サイズを調整 */
    }

    .submenu3 {
        position: static; /* スマホ画面で位置固定を解除 */
    }



    /*  ▼▼▼   フッター関係   ▼▼▼  */
    .footer_button {
        position: relative;
        width: 160px;
        margin: 10px 5px;
    }

    .footer-menu {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }


    /*  ▼▼▼   メインエリア   ▼▼▼  */
    .items-index-title img {
        max-height: none;
        object-position: 20% 50%;
        font-family: "object-fit: cover; object-position: 20% 50%;";
    }
    .items-index-title .iit_titleArea {
        top: auto;
        bottom: 0px;
        width: 100%;
        height: auto;
        flex-flow: wrap;
    }
    .items-index-title .cp-name {
        top: 0px;
        left: 0px;
        width: 100%;
        height: 78%;
        padding: 0px;
    }
    .items-index-title .iit_icon {
        width: 40px;
    }
    .items-index-title .iit_title {
        font-size: 30px;
        margin: 0px;
    }
    .items-index-title .iit_subpage_title {
        height: 75px;
        font-size: 20px;
    }


    .responsive-container {
        padding: 5px;
    }

    .container {
        flex-direction: column;
    }

    .block {
        width: auto !important;
        margin: 10px 0;
    }


    .block_service {
        background-size: 100% 100%;
    }

    .br_768 {
        display: none;
    }

    .br_768_on {
        display: block;
    }

    .block_content_col4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .block_content_col4_lock {
        grid-template-columns: repeat(2, 1fr);
    }


    /*  ▼▼▼   トップ画面   ▼▼▼  */
    .slideshow-container {
        bottom: 50px;
    }
    .PhotographySupport {
        bottom: 26px;
    }

    .block_tabArea {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: 70px;
    }

    .tab_Content_Title {
        display: none;
    }

    .tab_tab_Title {
        font-size: 18px;
        font-family: MSゴシック;
        font-weight: bold;
        position: relative;
        text-align: center;
        border-radius: 45px 45px 0px 0px;
        padding-top: 25px;
        cursor: pointer;
    }
    .tab_tab_Title_Consider.active{
        background-color: #ffbd59;
    }
    .tab_tab_Title_User.active {
        background-color: #c1ff72;
    }
    .tab_Content_Consider,
    .tab_Content_User {
        border-radius: 0px 0px 45px 45px;
        display: none;
    }
    .tab_Content_Consider.active {
        display: inline-block;
    }
    .tab_Content_User.active {
        display: inline-block;
    }

    .tab_tab_Title img {
        width: 50px;
        position: absolute;
        top: -20px;
        left: 40%;
    }

    .ititele_title {
        background-size: auto 40px;
        padding-left: 100px;
        padding-top: 14px;
        font-size: 18px;
    }
    .ichitele-block {
        width: 100%;
    }
    .i10ch_point {
        padding-top: 20px;
        /*height: 200px;*/
    }
    .i11ch_frame {
        margin-top: 0px;
    }

    
    .container.campaign {
        flex-direction: unset;
    }

    .swiper-slide {
        width: 250px;
        padding: 0px 10px;
    }

    .icn_pr_video {
        padding: 0px 10px;
    }


    /*  ▼▼▼   会社概要   ▼▼▼  */
    .content.company_profile dl {
        width: 100%;
    }
    .content.company_profile dl dt {
        padding: 20px 0px;
    }
    .content.company_profile dl dd {
        padding: 20px 0px;
    }

    .content.facility_info dl {
        width: 100%;
    }
    .content.facility_info dl dt {
        padding: 20px 0px;
    }
    .content.facility_info dl dd {
        padding: 20px 0px;
    }
    .content.facility_info .facility_br {
        display: inline;
    }

    .tac_link a.link {
        padding-left: 32px;
    }
    .tac_link a.link::after {
        left: 0px;
    }

    .policy_content dl {
        width: 100%;
    }
    .policy_content dl dt {
        padding: 20px 0px;
    }
    .policy_content dl dd {
        padding: 20px 0px;
    }

    /*  採用情報    */
    .container.recruit_paisen .left-block {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    .container.recruit_paisen .right-block {
        margin-top: 0px;
        padding-top: 0px;
        margin-bottom: 50px;
    }

    .content.recruit_detail dl {
        width: 100%;
    }
    .content.recruit_detail dl dt {
        padding: 20px 5px;
    }
    .content.recruit_detail dl dd {
        padding: 20px 0px;
    }

    /*
        ご検討中の方
    */
    .what_icn .block {
        padding: 0px;
    }
    .what_icn .right-block {
        margin-top: 0px !important;
    }

    .block_content_col3_lock.pg-consider {
        border-radius: 20px;
    }
    .block_content_contract_about {
        border-radius: 20px;
    }

    .container.service_area>div:first-child {
        width: 100%;
    }

    /*  サービス開始までの流れ  */
    .service_launch_block {
        border-radius: 20px;
        padding: 25px 25px 25px 60px;
    }

    .service_launch_block>.no {
        font-size: 24px;
        top: 25px;
        left: 25px;
    }
    .service_launch_block:nth-child(n+2)>.no::before {
        font-size: 46px;
        content: ">";
        top: -37px;
        left: calc((92px - 106px) / 2);
    }
    .service_launch_block:nth-last-child(n+2)>.no::after {
        top: 33px;
        left: calc((92px - 84px) / 2);
        height: calc(100% - 10px);
    }
    .service_launch_block>.title {
        font-size: 18px;
    }
    .service_launch_block>.responsible {
        display: inline-block;
        position: absolute;
        top: 26px;
        right: 25px;
    }
    .service_launch_block>.responsible>.responsible_block {
        width: 50px;
        height: 22px;
        font-size: 12px;
        margin-left: 10px;
    }
    .service_launch_block>.explanation {
        font-size: 14px;
    }
    .service_launch_block>.other_content {
        margin-top: 5px;
    }
    .service_launch_block>.other_content>a>.btnBase {
        min-width: 200px;
        font-size: 16px;
    }
    .service_launch_block_start>div {
        font-size: 24px;
    }

    /*  導入工事のご案内  */
    .block_40p {
        width: 100%;
    }
    .block_60p {
        width: 100%;
    }

    .pg_user_pglink {
        flex-direction: row;
    }

    .block_25p {
        width: 50%;
    }
    .block_25p.pg-user>a {
        font-size: 18px;
    }
    .pg_consider_installvideo dt {
        width: 230px;
    }
    .pg_consider_installvideo dd {
        width: 60px;
    }
    /*  新築を建てる方へ    */
    .iit_titleArea.pg_consider_newhome span.iit_icon {
        width: 60px;
    }
    .pg_consider_newhome-block div .btnBase {
        min-width: auto;
    }


    /*  ご加入中の方    */
    /*  サービス解約について    */
    img.pg_user_cancellation_pc {
        display: none;
    }
    img.pg_user_cancellation_sp {
        display: block;
    }
    .block_user_cancel {
        width: 100%;
        margin: 10px 0px;
        box-sizing: border-box;
    }
    .block_user_cancel a>.btnBase {
        min-width: 250px;
        font-size: 16px;
    }

    /*  auスマートバリュー    */
    .gp_user_sv_conditions>.gp_user_sv_conditions_value {
        margin: 15px;
    }
    .gp_user_sv_conditions>.gp_user_sv_conditions_value>div>a>div.btnBase {
        min-width: 250px;
    }
    .pg_svprocess_value {
        display: block;
    }
    .explanation.pg_svprocess_value>a>.btnBase {
        min-width: 250px;
    }
    .explanation.pg_svprocess_value div.pg_user_contact {
        padding: 10px
    }
    .explanation.pg_svprocess_value div.pg_user_contact>.pg_user_contact_telno {
        background-image: unset;
        padding-left: 0px;
    }

    /*  STBについて    */
    .pg_user_stb_oldtype_title>div.message {
        top: 51px;
        right: 67px;
    }
    .pg_user_stb_link a>.btnBase {
        min-width: 250px;
        font-size: 16px;
    }
    .pg_user_stb_contact.block_content_col3_lock {
        display: contents;
    }
    .pg_user_stb_contact.block_content_col3_lock .block_content_contract_stb {
        margin: 10px 0px;
    }

    .pg_user_nhk_block_col2 {
        display: contents;
    }
    .pg_user_nhk_block_col2 .block_content_contract_stb {
        margin: 10px 0px;
    }

    /*  安心サポート    */
    .gp_user_support_value {
        display: inline-block;
    }
    .gp_user_support_value div {
        font-size: 18px;
    }

    .container.gp_user_support_apply {
        font-size: 18px;
    }
    .container.gp_user_support_apply dl {
        width: 100%;
    }
    .container.gp_user_support_apply dl dt {
        padding: 20px 0px 0px 0px;
        border: 0px;
        width: 100%;
    }
    .container.gp_user_support_apply dl dd {
        padding: 0px 0px 20px 0px;
        width: 100%;
        padding-left: 30px;
    }
    .container.gp_user_support_apply dl dd:first-of-type {
        border-top: 0px;
    }

    /*  WEB口座振替 */
    .pg_user_webdirectdebit_process-block {
        padding: 20px 20px;
    }


    /*  サービス内容    */
    /*  ICNとは  */
    .pg_sevice_tv_osusume img {
        width: 49%;
        margin: 0px;
    }

    /*  テレビ  */
    .block_pg_service {
        width: 100%;
        margin: 10px 0px;
        box-sizing: border-box;
    }
    .block_pg_service a>.btnBase {
        min-width: 250px;
        font-size: 16px;
    }

    /*  チャンネル紹介  */
    .pg_service_channel_block {
        padding: 10px 15px 50px 15px;
        background-color: #c7e9e8;
        border-radius: 50px;
    }
    .pg_service_channel_block>.channel_area>.channel_block {
        padding: 10px;
        margin: 5px;
    }
    .channel_block>.image {
        width: 100%;
        height: 65px;
    }

    .pg_service_channel_block>.channel_area {
        grid-template-columns: repeat(3, 1fr);      /* 3列に設定 */
    }

    table.tblOptionChannel>tbody td.image div.name {
        display: block;
    }

    table.tblOptionChannel>tbody td.name {
        display: none;
    }

    /*  コミュニティチャンネル  */
    .pg_service_komichan_title {
        background-repeat: no-repeat;
        background-size: 90px;
        padding-left: 100px;
        background-position: left 28px;
        height: 80px;
    }
    .pg_service_komichan_timeslip>.block_40p>div {
        margin-right: 0px;
    }
    .pg_service_komichan_timeslip>.block_60p>div {
        margin-left: 0px;
    }

    .pg_service_internet_course {
        padding: 15px;
    }
    .pg_service_internet_course>table {
        padding: 20px 0px;
    }
    .pg_service_internet_course>table td.title {
        padding-right: 0px;
    }

    .block_pg_service_net {
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    .pg_service_net_groupgrid>.block.net_groupgrid>.svc_button_area {
        margin: 20px auto 0px auto;
    }
    .pg_service_net_groupgrid>.block.net_groupgrid>.svc_button_area .btnBase {
        min-width: unset;
    }

    /*  IICCNNひかり10G  */
    .recruit_title.pg_service_net10g>.title10g_1 {
        position: unset;
        transform: rotate(0deg);
    }

    .recruit_title.pg_service_net10g>.title10g_2 {
        font-size: 45px;
        margin-left: 0px;
    }
    .recruit_title.pg_service_net10g>.title10g_2>.clr10G {
        font-size: 45px;
    }

    .pg_service_net10g_block>.headphones {
        display: none;
    }




}


@media (max-height: 600px) {
    .popup-content {
        max-height: 80vh; /* 高さをさらに縮小 */
    }

}


@media (max-width: 600px) {
    .pg_service_channel_block>.channel_area {
        grid-template-columns: repeat(2, 1fr);      /* 2列に設定 */
    }
}




@media (max-width: 425px) {
    .br_425 {
        display: none;
    }




    table.footer_company_addr.basic {
        display: none;
    }
    table.footer_company_addr.w425 {
        display: inline-block;
    }

    .content.company_profile dl {
        width: 100%;
    }
    .content.company_profile dl dt {
        padding-bottom: 0px;
        border: 0px;
        width: 100%;
    }
    .content.company_profile dl dd {
        width: 100%;
        padding-left: 30px;
    }
    .content.company_profile dl dd:first-of-type {
        border-top: 0px;
    }

    .policy_content dl {
        width: 100%;
    }
    .policy_content dl dt {
        padding-bottom: 0px;
        border: 0px;
        width: 100%;
    }
    .policy_content dl dd {
        width: 100%;
        padding-left: 30px;
    }
    .policy_content dl dd:first-of-type {
        border-top: 0px;
    }

    /*  採用情報    */
    .content.recruit_detail dl {
        width: 100%;
    }
    .content.recruit_detail dl dt {
        padding-bottom: 0px;
        border: 0px;
        width: 100%;
    }
    .content.recruit_detail dl dd {
        width: 100%;
        padding-left: 30px;
    }
    .content.recruit_detail dl dd:first-of-type {
        border-top: 0px;
    }



    /*  安心サポート    */
    .gp_user_support_value div.support_fee dl {
        width: 100%;
    }
    .gp_user_support_value div.support_fee dl dt {
        width: 100%;
    }
    .gp_user_support_value div.support_fee dd {
        width: 100%;
        padding-left: 90px;
    }


    
}




