@charset "UTF-8";

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

ol,
ul li {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}


html {
    height: 100%;
}



@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 100;
    src: url('../font/NotoSansCJKjp-Thin.woff') format('woff'),
        /* Modern Browsers */
        url('../font/NotoSansCJKjp-Thin.ttf') format('truetype');
    /* Safari, Android, iOS */
}

@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 200;
    src: url('../font/NotoSansCJKjp-Light.woff') format('woff'),
        url('../font/NotoSansCJKjp-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 300;
    src: url('../font/NotoSansCJKjp-DemiLight.woff') format('woff'),
        url('../font/NotoSansCJKjp-DemiLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 400;
    src: url('../font/NotoSansCJKjp-Regular.woff') format('woff'),
        url('../font/NotoSansCJKjp-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 500;
    src: url('../font/NotoSansCJKjp-Medium.woff') format('woff'),
        url('../font/NotoSansCJKjp-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 700;
    src: url('../font/NotoSansCJKjp-Bold.woff') format('woff'),
        url('../font/NotoSansCJKjp-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans CJKjp';
    font-style: normal;
    font-weight: 900;
    src: url('../font/NotoSansCJKjp-Black.woff') format('woff'),
        url('../font/NotoSansCJKjp-Black.ttf') format('truetype');
}

body {

    font-family:
        "Noto Sans CJKjp", "Noto Sans", sans-serif;
    -webkit-text-size-adjust: none;

    /*overflow-x: hidden;*/

    /*font-family:
	"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/

    /*font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;*/

    /*background-color: #fff;*/
    background: #f5f9ff;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;/*画像の下に隙間が出来るのを防ぐため*/
}

a {
    color: #193185;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a.handing {
    color: #00a2f9;
}

a.handing:hover {
    text-decoration: underline;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    /*outline: 1px solid magenta;*/
    /*要素の挙動を確認したい時に表示して活用。全要素に赤い枠線を表示する*/
}

.mt30 {
    margin-top: 30px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb30 {
    margin-bottom: 30px;
}

.nb {
    display: inline-block;
}




#wrapper {
    /*はみ出す要素がある場合、bodyにoverflow: hiddenしても、スマホサイズで適用されない場合あり。全ての要素を囲むdivを置いてそれにoverflow: hiddenするのが吉。*/
    position: relative;
    /*overflow: hidden;*/
    /*親要素にoverflow: hiddenがあると子要素のposition: sticky;が効かなくなるので一旦ストップ*/
    /*background-color: #f1f1f1;*/
    min-width: 1024px;
}

/* ########### 768px以上 ########### */
@media (min-width: 768px) {
    #wrapper .con_grid {
        display: grid;
        grid-template-columns: 1fr 580px 1fr;
        /*基本、中央のmainは横幅580pxで、ビューポートが1300pxになったら44%で可変。#wrapparをmin-width: 1024pxにしてあるのでそこで縮小はストップ*/
    }
}

/* ########### 1300px以下 ########### */
@media (max-width: 1300px) {
    #wrapper .con_grid {
        grid-template-columns: 1fr 44% 1fr;
    }
}

/* ########### 767px以下 ########### */
@media (max-width: 767px) {
    #wrapper {
        min-width: initial;
    }
}

#wrapper main {
    background-color: #e5e5e5;
    padding: 0 10px;
}

#wrapper main .main_wrap {
    background-color: #fff;
}

#wrapper .con_grid .con_wrap_l .box_l {
    position: sticky;
    top: 0;
    margin: auto;
    padding: 50px 5%;
    height: 100vh;
    max-width: 450px;
    /*background-color: rgba(231,156,157,0.5);*/
}

#wrapper .con_grid .con_wrap_l .box_l .ttl_box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 30px 14%;
    background-color: #fff;
    contain: paint;
    overflow-y: scroll;
}

#wrapper .con_grid .con_wrap_r .box_r {
    position: sticky;
    top: 0;
    margin: auto;
    padding: 50px 10%;
    height: 100vh;
    /*max-width: 400px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*background-color: rgba(112, 134, 225, 0.3);*/
}

#wrapper .con_grid .con_wrap_r .box_r p {
    font-size: 14px;
    padding: 1.5rem;
    text-align: center;
}

#wrapper .con_grid .con_wrap_r .box_r nav {
    max-width: 300px;
    margin: 0 auto;
}

#wrapper .con_grid .con_wrap_r .box_r nav li {
    font-size: 20px;
    font-family: "M PLUS 1p", serif;
    font-weight: 500;
    font-style: normal;
    border-bottom: 1px #000 solid;
}

#wrapper .con_grid .con_wrap_r .box_r nav li a {
    display: block;
    padding: 1rem;
    color: #000;
    transition: 0.3s ease;
}

#wrapper .con_grid .con_wrap_r .box_r nav li a:hover {
    color: #0064ff;
}

/* ########### 1800px以上 ########### */
@media (min-width: 1800px) {
    #wrapper .con_grid .con_wrap_l .box_l {
        padding: 50px;
    }

    #wrapper .con_grid .con_wrap_r .box_r {
        padding: 50px;
    }
}

/* ########### 1400px以下 ########### */
@media (max-width: 1400px) {
    #wrapper .con_grid .con_wrap_l .box_l .ttl_box {
        padding: 20px 13%;
    }
}

/* ########### 1100px以下 ########### */
@media (max-width: 1100px) {
    #wrapper .con_grid .con_wrap_r .box_r nav li {
        font-size: calc(18px + 2 * (100vw - 1024px)/332);
        /*1100px〜768px間・20px〜18pxまで可変*/
    }
}

/* ########### 767px以下 ########### */
@media (max-width: 767px) {
    #wrapper .con_grid .con_wrap_l {
        display: none;
    }

    #wrapper .con_grid .con_wrap_r {
        display: none;
    }

    #wrapper main {
        padding: 0;
    }
}

#wrapper_ot {
    /*はみ出す要素がある場合、bodyにoverflow: hiddenしても、スマホサイズで適用されない場合あり。全ての要素を囲むdivを置いてそれにoverflow: hiddenするのが吉。*/
    position: relative;
    overflow: hidden;
    display: flex;
    /*display: flex flex-flow: column; min-height: 100vh;そしてmainにflex: 1;を記述。コンテンツ量が少ない時にフッターの下に余白ができてしまうのを防ぐのに良い。*/
    flex-flow: column;
    min-height: 100vh;
}

#wrapper_ot main {
    flex: 1;
    margin: 0 20px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}




/* ヘッダー帯部分
----------------------------*/


#container_h {
    position: relative;
    /*max-width: 580px;*/
    /*height: 70px;*/
    margin: 0 auto;
    padding: 0;
    line-height: 0;
    background: #fff;
    display: flex;
    justify-content: space-between;
}

.p_logo {
    width: 200px;
    display: flex;
    align-items: center;
    /*background-color: rgba(231,156,157,0.5);*/
}

.p_logo img {
    max-width: 100%;
    height: auto;
    margin: 20px 38px;
}

.tit_img {
    margin: 0 50px 0 20px;
    width: 290px;
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
}

.tit_img img {
    width: 100%;
    height: auto;
}

/* ########### 768px以下 ########### */
@media (min-width: 768px) {
    .tit_img {
        display: none;
    }
}

/* ########### 471px以上 ########### */
@media (min-width: 471px) {
    br.a_terms {
        display: none;
    }
}

/* ########### 1020px以下 ########### */
@media (max-width: 1020px) {
    .tit_img {
        margin: 0 20px;
    }
}

/* ########### 600px以下 ########### */
@media (max-width: 600px) {
    .tit_img {
        margin: 0 2vw;
    }
}

/* ########### 500px以下 ########### */
@media (max-width: 500px) {
    .p_logo img {
        width: 210px;
        margin: 20px 6vw;
    }
}

/* ########### 470px以下 ########### */
@media (max-width: 470px) {
    .tit_img {
        width: 180px;
    }
}

/* ボトム固定のナビゲーション
----------------------------*/
/* ########### 768px以上 ########### */
@media (min-width: 768px) {
    #n_bar {
        display: none;
    }

    #n_bar .bar_wrap {
        display: none;
    }

    /*#n_bar .bt_box {
        display: none;
    }*/
}

#n_bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    /*background: rgba(0, 3, 51, 0.1);*/
    /*background: rgba(229, 214, 208, 0.5);*/
    z-index: 11;
}

#n_bar .bar_wrap {
    width: 100%;
    padding: 10px 20px;
}

#n_bar .bt_box {
    position: relative;
    max-width: 510px;
    margin: 0 auto;
}

#n_bar ul {
    position: relative;
    display: flex;
    margin: 0 auto;
    max-width: 800px;
    /*background: rgba(51,51,51,0.5);*/
    list-style: none;
}

#n_bar li {
    flex-grow: 1;
    text-align: center;
    line-height: 0;
}

#n_bar li img {
    /*max-width: 20vw;*/
    width: 90%;
    height: auto;
}

#n_bar li:nth-child(n+2) {
    margin-left: 10px;
}

#n_bar li a {
    display: block;
    padding: 15px 30px 10px;
    background: #8ab6e6;
    border-radius: 10px;
}

#n_bar li a.c2 {
    /*background: #FBED21;*/
    /*background-color: #29abe2;
    background-image: linear-gradient(134deg, #29abe2 0%, #fc48ba 100%);*/
    background: #ffa02e;
}

#n_bar li a.c3 {
    /*background: #259ED1;*/
    /*background-color: #29abe2;
    background-image: linear-gradient(134deg, #29abe2 0%, #fc48ba 100%);*/
    background: #ECAA76;
}


.show_hide {
    display: none;
    backdrop-filter: blur(12px);
    /*n_barに記述すると、TOPに戻って２回目表示で効果が消えてしまうため、こちらに記述したら消えずに成功。*/
}


/* ########### 600px以下 ########### */
@media (max-width: 600px) {
    #n_bar li img {
        width: 100%;
    }
}

/* ドロワーメニューとドロワーコンテンツ
----------------------------------------------- */
/* ########### 768px以上 ########### */
@media (min-width: 768px) {
    .m_btn {
        display: none;
    }
}



.m_btn {
    position: fixed;
    /*absolute*/
    top: 20px;
    /*bottom: 0;
	    margin: auto;*/
    right: 40px;
    line-height: 0;
    width: 30px;
    height: 34px;
    z-index: 100;
    /*background: #C26ACF;*/
}

/* ########### 500px以下 ########### */
@media (max-width: 500px) {
    .m_btn {
        position: fixed;
        /*absolute*/
        top: 22px;
        /*bottom: 0;
	    margin: auto;*/
        right: 6vw;
        line-height: 0;
        width: 30px;
        height: 34px;
        /*background: #C26ACF;*/
    }
}


/*チェックボックス自体は非表示に*/
#drawer-checkbox {
    display: none;
}

/*ハンバーガーメニュー部分。cursor:pointerで指に変わるように*/
#drawer-icon {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 30px;
    height: 34px;
    /*background: #338DB4;*/
}

#drawer-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
}

#drawer-icon,
#drawer-icon span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

#drawer-icon span:nth-of-type(1) {
    top: 0;
}

#drawer-icon span:nth-of-type(2) {
    top: 15.5px;
}

#drawer-icon span:nth-of-type(3) {
    bottom: 0;
}


/*以下のdrawer-checkbox:checkedは、メニューボタンクリック時にバツ印変形するアニメ。今回は省略。
	
	#drawer-checkbox:checked ~ #drawer-icon span {
		background: rgba(51, 51, 51, 0);
	}
	
	#drawer-checkbox:checked ~ #drawer-icon span::before,
	#drawer-checkbox:checked ~ #drawer-icon span::after {
		content: "";
		display: block;
		height: 100%;
		left: 50%;
		margin: -6% 0 0 -42%;
		position: absolute;
		top: 50%;
		width: 100%;
	}
	
	#drawer-checkbox:checked ~ #drawer-icon span::before {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	#drawer-checkbox:checked ~ #drawer-icon span::after {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	*/

/*ドロワーとして出てくる部分*/
#drawer-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    width: 400px;
    /*250px ドロワー部分の幅。*/
    max-width: 100%;
    /* ←ドロワー右端が常にちょっと空きができるようにする為の記述。空けない時は100% お好みで。*/
    height: 100%;
    background: rgba(51, 133, 255, 1.0);
    /*rgba(59, 105, 138, 0.8)*/
    transition: all 0.3s ease-in-out 0s;
    transform: translateX(100%);
    /*左から出てくるようにする場合は(-100%)にする。*/
    padding: 10px;
}

#drawer-checkbox:checked~#drawer-content {
    transform: translateX(0);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}


#drawer-close {
    /*閉じるボタン以外のエリアをクリックで閉じれるように z-indexで可能にしている*/
    display: none;
    position: fixed;
    z-index: 39;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
}

#drawer-checkbox:checked~#drawer-close {
    display: block;
    opacity: 0.3;
}


/*ドロワーで出てくる部分内にある、閉じるバツ印*/

.cl_btn_wrap {
    position: relative;
    height: 100px;
    /*background: #DB6466;*/
}

.cl_btn {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: absolute;
    /*relative*/
    /*border: 1px solid rgba(0,0,0,.1);*/
    cursor: pointer;
    top: 30px;
    right: 30px;
}

.cl_btn span::before,
.cl_btn span::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84%;
    height: 6%;
    /*棒の太さ 16%*/
    margin: -8% 0 0 -42%;
    background: #fff;
}

.cl_btn span::before {
    transform: rotate(-45deg);
}

.cl_btn span::after {
    transform: rotate(45deg);
}


#drawer-content div.nav_wrap {
    max-width: 300px;
    margin: 10px auto 30px;
    /*background: #E3D769;*/
}

#drawer-content div.nav_wrap a {
    color: #fff;
}


#drawer-content div.nav_wrap ul.dl {
    margin: 0 0 0 10%;
    width: 70%;
    /*background: #D8A760;*/
}

#drawer-content div.nav_wrap ul li {
    font-size: 18px;
    line-height: 50px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#drawer-content div.nav_wrap ul li.line_a,
li.line_b,
li.line_c {
    position: relative;
}

/*
	#drawer-content div.nav_wrap ul li.line_a::before {
		content: '';
		position: absolute;
		top: 50%;
		left: -18%;
		width: 12%;
		height: 100%;
		border-top: solid 1px #fff;
		border-left: solid 1px #fff;
	}
	
	#drawer-content div.nav_wrap ul li.line_b::before {
		content: '';
		position: absolute;
		top: 50%;
		left: -18%;
		width: 12%;
		border-top: solid 1px #fff;
	}
	
	#drawer-content div.nav_wrap ul li.line_c::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 16%;
		width: 26%;
		border-top: solid 1px #fff;
	}
	*/
#drawer-content div.nav_ot {
    max-width: 300px;
    margin: 0 auto;
    border: solid 1px #fff;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    border-radius: 30px;
}

#drawer-content div.nav_ot a {
    color: #fff;
    display: block;
    padding: 10px;
}



/* ヒーローイメージ・タイトル
----------------------------*/

div.bg_hero_wrap {
    background: #fff;
}

/* CTAボタン
----------------------------*/
.c-1 {
    background-color: #d9e8ff;
}

.c-2 {
    background-color: #9fea93;
}

.cta_wrap_a {
    position: relative;
    overflow: hidden;
}

.cta_wrap_b {
    margin: 0 auto;
    max-width: 411px;
    position: relative;
    overflow: hidden;
}

.cta_wrap_a::after,
.cta_wrap_b::after {
    animation: 2s 0s shine linear infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 75%);
    content: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-15deg);
    width: 50%;
    /*光のサイズ*/
}

@keyframes shine {
    50% {
        /*スピード調整 数値が小さいほど早い*/
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.effect-brightness {
    transition: filter 0.3s ease;
    filter: brightness(1);
    /* デフォルト値なのでこの一行は省略してもOK */
}

.effect-brightness:hover {
    filter: brightness(1.1);
    /* 明るくする */
}

/* reasons　WiMAXが選ばれる理由
----------------------------------------------- */
#reasons {
    position: relative;
}

/* pricing_plans　料金プラン
----------------------------------------------- */
#pricing_plans {
    position: relative;
}

/* cashback　キャッシュバック！
----------------------------------------------- */
#cashback {
    position: relative;
}

/* Wi-Fi_router　端末機器は自分にピッタリが選べる2タイプ
----------------------------------------------- */
#Wi-Fi_router {
    position: relative;
}

/* nm_discount　端末機器は自分にピッタリが選べる2タイプ
----------------------------------------------- */
#nm_discount {
    position: relative;
}

/* appeal　ネット環境がすぐ欲しい方！工事不要で引越しも楽です！日研トータルソーシングで仕事を見つけてネット快適！
----------------------------------------------- */

#appeal {
    padding: 0;
}

#appeal .appeal_ph {
    display: flex;
    align-items: flex-end;
    width: 100%;
    padding: 0 20px 50px;
    vertical-align: bottom;
    background-image: url(../img/appeal_ph.png);
    background-size:  cover;
    aspect-ratio: 3 / 2;
}





/* ページ内リンクのアンカー位置設定
----------------------------------------------- */

#anc_reasons {
    position: absolute;
    top: -2%;
}

#anc_pricing_plans {
    position: absolute;
    top: 2%;
}

#anc_cashback {
    position: absolute;
    top: -22%;
}

#anc_Wi-Fi_router {
    position: absolute;
    top: -2%;
}

#anc_nm_discount {
    position: absolute;
    top: -2%;
}



/* footer
----------------------------------------------- */
/*footer {
    background-color: #fff;
}*/

footer img {
    width: 100%;
    vertical-align: top;
}

footer .profile {
    padding: 30px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 300;
    font-style: normal;
    background: #1F63D1;
    background: linear-gradient(131deg, rgba(31, 99, 209, 1) 0%, rgba(31, 99, 209, 1) 50%, rgba(24, 80, 168, 1) 50%, rgba(24, 80, 168, 1) 100%);
}

footer .profile ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
}

footer .profile li {
    font-size: 20px;
    line-height: 1.25;
    padding-right: 20px;
    background: url(../img/external_link.svg) right 0px top 4px no-repeat;
    background-size: 16px auto;
}

footer .profile li a {
    color: #fff;
    position: relative;
}

footer .profile li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: -1px;
    /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);
    /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s;
    /*変形の時間*/
}

footer .profile li a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
}

footer .inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

footer .end_logo {
    max-width: 250px;
    margin: 0 auto;
    padding: 50px 0;
}

footer .name {
    padding: 0 30px;
}

footer .copyright {
    padding: 0 0 100px;
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 300;
}
