@charset "UTF-8";
:root{
    --jcom-red:#E93817;
    --jcom-blue:#406FAF;
}

html{
    scroll-behavior: smooth;
}

/* common */
body {
    font-family: 'Noto Sans JP', 'meiryo', 'メイリオ', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', 'sans-serif';
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #444;
    line-height: 1.7;
}
a {
    text-decoration: none;
}

.sp_only{
    display: none;
}

.page-inner {
    margin: 0 auto;
    background-color: #fff;
    overflow: hidden;
}

main{
    display: grid;
    row-gap: 30px;
    place-items: center;
}

.section{
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

img{
    max-width: 100%;
}
.img{
    place-self: center;
}
.sp-img{
    display: none;
}

/* commmon_title */
h1 {
    padding: 20px 0;
    font-size: 28px;
    font-weight: bold;
}
h5 {
    display: inline-block;
    width: fit-content;
    margin: auto;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    border-bottom: 2px solid var(--jcom-red);
}
h6.guide-item_h6 {
    font-size: 18px;
    font-weight: 600;
}
h6.guide-item_num{
    width: 100%;
    margin-bottom: 10px;
}
h6.guide-item_num .num{
    display: inline-block;
    height: 34px;
    width: 34px;
    color: white;
    font-size: 20px;
    text-align: center;
    background-color: var(--jcom-red);
    border-radius: 5px;
}
h6.guide-item_num .txt{
    padding-left: 0.5em;
    font-size: 20px;
}
.b{
    font-weight: bold;
}
.s{
    font-size: 12px;
}

.section-title{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 10px;
}
.section-title img {
    width: 30px;
}
.section-title h2 {
    padding: 8px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #444;
    border-left: 6px solid #ccc;
}
.section-title .s {
    font-size: 14px;
    color: var(--jcom-red);
}
.section-title .btn_call{
    position: relative;
    display: block;
    padding: 10px 30px 10px 38px;
    color: #444;
    font-size: 13px;
    text-decoration: none;
    background: white url(../img/common/icon_call.png) no-repeat left 10px center;
    background-size: 18px auto;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.section-title .btn_call:hover {
    color: var(--jcom-red);
    border: 1px solid var(--jcom-red);
}
.section-title .btn_call::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--jcom-red);
    border-right: 2px solid var(--jcom-red);
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* commmon_テキストリンク */
.text-link{
    color: var(--jcom-blue);
}
.text-link:hover {
    text-decoration: underline;
}

.text_link_self{
    display: inline-grid;
    grid-template-columns: auto auto;
    column-gap: 0.25em;
    margin: 0 auto;
    place-items: center;
    font-weight: 600;
}
.text_link_self::after{
    content: "";
    width: 1em;
    height: 1em;
    background-image: url(../img/common/arrow_right.png);
    background-size: contain;
}

.text_link_blank{
    display: inline-grid;
    grid-template-columns: auto auto;
    column-gap: 0.25em;
    margin: 0 auto;
    place-items: center;
    font-weight: 600;
}
.text_link_blank::after{
    content: "";
    width: 1em;
    height: 1em;
    background-image: url(../img/common/icon_blank_bk.png);
    background-size: contain;
}

.anc_back{
    position: relative;
    display: block;
    padding-right: 20px;
    font-size: 14px;
    color: #444;
    text-align: right;
    text-decoration: underline;
}
.anc_back:hover{
    text-decoration: none;
}
.anc_back::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 3px solid #aaa;
    border-right: 3px solid #aaa;
    position: absolute;
    top: 50%;
    right: 2px;
    margin-top: -4px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* congestion */
#congestion{
    display: grid;
    row-gap: 22px;
}
#congestion .contact{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
#congestion .box_contact {
    position: relative;
    width: 100%;
    padding: 0 15px;
    background-color: white;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
}
#congestion .box_contact:hover {
    border: 1px solid var(--jcom-red);
}
#congestion .box_contact > a {
    display: block;
    padding: 20px 0 120px;
    color: #444;
}
#congestion .box_contact a .head {
    padding-bottom: 135px;
    font-size: 16px;
    text-align: center;
}
#congestion .service .head {
    background: url(../img/common/symbol_service.png) center top 70px no-repeat;
}
#congestion .tv .head {
    background: url(../img/common/symbol_tv.png) center top 70px no-repeat;
}
#congestion .net .head {
    background: url(../img/common/symbol_net.png) center top 70px no-repeat;
}
#congestion .box_contact a .head span{
    font-size: 28px;
    color: var(--jcom-red);
}
#congestion .box_contact .time {
    padding: 5px 0;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}
#congestion .box_contact .time table{
    width: 100%;
}
#congestion .box_contact table td {
    padding: 0 10px;
    vertical-align: middle;
}
#congestion .box_contact table .txt {
    font-size: 12px;
}
#congestion .box_contact table .takeTime {
    text-align: right;
    font-size: 24px;
}
#congestion .box_contact table .num {
    font-size: 36px;
}
#congestion .box_contact .desc {
    position: absolute;
    top: 325px;
    left: 20px;
    width: 260px;
}
#congestion .box_contact .desc p {
    font-size: 12px;
    padding-left: 1em;
    text-indent: -1em;
}
#congestion .box_contact .txt_link_a {
    display: inline;
    padding: 0;
    padding-left: 3px;
    text-decoration: underline;
}
#congestion .box_contact .txt_link_a:hover {
    text-decoration: none !important;
}

#congestion .anchor_link {
    position: relative;
    display: block;
    padding: 10px 30px 10px 10px;
    margin-bottom: 20px;
    text-align: center;
    color: #444;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: white;
    background-size: 18px auto;
}
#congestion .anchor_link:hover{
    color: var(--jcom-red);
    border: 1px solid var(--jcom-red);
}
#congestion .anchor_link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--jcom-red);
    border-right: 2px solid var(--jcom-red);
    position: absolute;
    top: calc(50% - 3px);
    right: 2em;
    margin-top: -4px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* prospect */
#prospect .content_wrap{
    padding: 2em;
    background: #FFF;
}
#prospect .header{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 10px;
}
#prospect h3 {
    min-height: 65px;
    margin-right: auto;
    padding-top: 17px;
    padding-left: 70px;
    font-size: 18px;
    font-weight: bold;
    background: url(../img/common/symbol_service.png) no-repeat left center;
    background-size: auto 65px;
}

#prospect .container > div {
    display: grid;
    grid-template-columns: 1fr auto auto;
}
#prospect .container h4 {
    display: inline;
    font-size: 18px;
}
#prospect .container > div p {
    font-size: 14px;
    line-height: 2;
}
#prospect .container .img{
    padding-left: 20px;
}

#prospect .congestion-table{
    width: 720px;
    margin: 15px auto;
}
#prospect table th{
    vertical-align: middle;
    text-align: center;
    font-size: 13px;
    font-weight: lighter;
}
#prospect table thead th{
    font-weight: bold;
    line-height: 2.5;
}
#prospect table tbody tr:nth-child(odd) {
    background: #f5f7f7;
}
#prospect table tbody tr:nth-child(even) {
    background: #ebeef0;
}
#prospect table tbody td {
    padding: 8px 15px;
    font-size: 13px;
    text-align: center;
}
#prospect table tbody td img {
    width: 26px;
    height: auto;
}
#prospect .note {
    width: 720px;
    margin: 10px auto 0;
    font-size: 12px;
    font-weight: lighter;
}

/* info */
#info .content_wrap{
    display: grid;
    grid-template-rows: auto;
    row-gap: 30px;
    padding: 2em;
    background: #FFF;
}
#info .flex{
    display: grid;
    grid-template-columns: 1fr auto;
}
#info .child.desc{
    padding-right: 2em;
}
#info .child.desc h3 {
    border-left: #ccc 6px solid;
    padding: 5px 12px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
}
#info .child.desc p{
    font-size: 14px;
}
#info .child.dtn{
    flex: 1;
}
#info .flex .list li {
    display: inline-block;
    vertical-align: middle;
}
#info .flex .list li .btn_orange {
    display: inline-block;
    width: 250px;
    margin-right: 12px;
    padding: .65em 2em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--jcom-red);
    border-radius: 7px;
    transition: linear .3s;
    background-position: right .75em center;
    color: var(--jcom-red);
    background-color: white !important;
    background-image: url(../img/common/icon_blank_red.png);
    background-size: 22px;
    background-repeat: no-repeat;
}
#info .flex .list li a:hover {
    opacity: .6;
}
#info .flex .list li img {
    height: 84px;
}

/* faq */
#faq .content_wrap {
    padding: 2em;
    background: #FFF;
}
#faq .content_wrap ul {
    display: grid;
    row-gap: 15px;
}
#faq .content_wrap li a {
    position: relative;
    display: block;
    padding: 1.25em 40px 1.25em 60px;
    color: #444;
    font-size: 16px;
    text-decoration: none;
    background: url(../img/common/icon_q.png) no-repeat left 15px center;
    background-size: auto 26px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
#faq .content_wrap li a:hover{
    color: var(--jcom-red);
    border-color: var(--jcom-red);
}
#faq .content_wrap li a::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--jcom-red);
    border-right: 3px solid var(--jcom-red);
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}

/* out-hours */
#out-hours .content_wrap {
    margin: 2em;
    padding: 2em 0;
    border: solid 3px var(--jcom-red);
    text-align: center;
}
#out-hours .content_wrap h3 {
    margin-bottom: 1em;
    font-size: 18px;
    font-weight: bold;
    color: var(--jcom-red);
}