@charset 'UTF-8';
.qa-sec
{
    width: 1020px;
    margin: 0 auto;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec
    {
        width: 100%;
    }
}

.qa-sec > h2
{
    font-family: '丸フォーク B', serif;
    font-size: 25px;
    font-weight: 600;

    width: calc(100% - 15px);
    margin-bottom: 50px;
    padding: 16px 0 16px 15px;

    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background-color: #f0f0f0;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec > h2
    {
        font-size: 5.16vw;

        width: 96.875%;
        margin-bottom: 3.125%;
        padding: 7.03% 0 7.03% 3.125%;
    }
}

.qa-sec .qa-content
{
    width: 900px;
    margin: 0 auto 70px;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content
    {
        width: 93.75%;
    }
}

.qa-sec .qa-content .qa-box
{
    width: 100%;
    margin-bottom: 20px;

    border: 1px solid #000;
    border-radius: 10px;
    background-color: #e9f5fc;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box
    {
        margin-bottom: 5%;

        border-radius: 1.09375vw;
    }
}

.qa-sec .qa-content .qa-box .qa-box_q
{
    font-family: '丸フォーク M', serif;
    font-size: 22px;
    line-height: 1.7;

    position: relative;

    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 55px;

    letter-spacing: -1px;

    border-radius: 10px 10px 0 0;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_q
    {
        font-size: 4.0625vw;
       line-height: 1.31;

        padding-top: 2.5%;
        padding-bottom: 2.5%;
        padding-left: 13.33333%;

        letter-spacing: -1px;

        border-radius: 1.09375vw 1.09375vw 0 0;
    }
}

.qa-sec .qa-content .qa-box .qa-box_q:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;

    width: 18.388px;
    height: 31.433px;
    margin: auto 0;

    content: '';

    background-image: url(/elekiban/qa/img/icon_question_q.png);
    background-repeat: no-repeat;
    background-size: contain;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_q:before
    {
        left: 3.33333%;

        width: 4.03562vw;
        height: 6.89625vw;
    }
}

.qa-sec .qa-content .qa-box .qa-box_q:hover
{
    cursor: pointer;
}

.qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: inline-block;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin: auto 30px auto 0;

    -webkit-transition: all .4s;
            transition: all .4s;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon
    {
	       width: 3.125vw;
        height: 3.125vw;
/*			  width: 20px;
        height: 20px;*/
			
        margin-right: 4.6875%;
			
    }
}

.qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon > span
{
    position: absolute;
    left: 0;

    display: inline-block;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 2px;

    -webkit-transition: all .4s;
            transition: all .4s;

    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    background-color: #000;

        -ms-border-radius: 4px;
         -o-border-radius: 4px;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon > span
    {
      /*  height: .3125vw;*/
			height: 1px;
    }
}

.qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon > span:nth-of-type(1)
{
    top: 8px;

    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon > span:nth-of-type(1)
    {
        top: 40%;
    }
}

.qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon > span:nth-of-type(2)
{
    top: 8px;

    -webkit-transform: rotate(90deg);
       -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon > span:nth-of-type(2)
    {
        top: 40%;
    }
}

.qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon.active span:nth-of-type(1)
{
    display: none;
}

.qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon.active span:nth-of-type(2)
{
    top: 8px;

    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_q .qa-box_icon.active span:nth-of-type(2)
    {
        top: 40%;
    }
}

.qa-sec .qa-content .qa-box .qa-box_a
{
    font-size: 18px;
    line-height: 1.67;

    position: relative;

    display: none;

    padding: 20px 55px;

    border-radius: 0 0 10px 10px;
    background-color: #fff;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_a
    {
        font-size: 3.90625vw;
        line-height: 1.6;

        padding: 4.6875vw 5.46875vw 4.6875vw 12.5vw;

        text-align: justify;
    }
}

.qa-sec .qa-content .qa-box .qa-box_a:before
{
    position: absolute;
    top: 20px;
    left: 15px;

    width: 24.064px;
    height: 29.605px;

    content: '';

    background-image: url(/elekiban/qa/img/icon_question_a.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media print, screen and (max-width: 768px)
{
    .qa-sec .qa-content .qa-box .qa-box_a:before
    {
        top: 4.6875vw;
        left: 3.33333%;

        width: 4.85719vw;
        height: 5.97531vw;
    }
}

.qa-sec .qa-content .qa-box .qa-box_a > a
{
    color: #6bcdf2;
}

.qa-sec .qa-content .qa-box .qa-box_a > a:hover
{
    opacity: .7;
}

.secTopPip
{
    width: 100%;
    margin: 80px auto 50px;
}

@media print, screen and (max-width: 768px)
{
    .secTopPip
    {
        width: 100%;
        margin: 7.8125% auto 12.5%;
    }
}

.secTopPip > a
{
    font-family: '丸フォーク B', serif;
    font-size: 20px;
    font-weight: 600;

    display: block;

    width: 250px;
    margin: 0 auto;
    padding: 10px 0;

    text-align: center;
    text-decoration: none;

    border: 1px solid #000;
    border-radius: 5.7px;
}

@media screen and (max-width: 768px)
{
    .secTopPip > a
    {
        font-size: 5.46vw;

        position: relative;

        width: 80.07%;
        padding: 5% 0 5% 13.3%;

        text-align: left;

        border-radius: 10.1px;
    }
}

@media screen and (max-width: 768px)
{
    .secTopPip > a:after
    {
        position: absolute;
        top: 0;
        right: 3.5%;
        bottom: 0;

        width: 2.76vw;
        height: 5.32vw;
        margin: auto 0;

        content: '';

        background-image: url(/elekiban/img/common/icon_arrow_right.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }
}

.secTopPip > a:hover
{
    opacity: .7;
    color: #000;
}

#wrap .beginner article p,
#wrap .beginner article ul li
{
    font-size: 20.5px;
    font-weight: bold;
    line-height: 1.65;

    letter-spacing: -.3px;

    color: #000;
}

article .pink
{
    color: #ea6d99;
}

article .orange
{
    color: #fb810b;
}

article .blue
{
    color: #1b9898;
}

.sec01 .w690
{
    width: 690px;
    margin: 0 auto;
}

.mac.safari .sec01 .w690
{
    /*Mac OSのみ*/
    width: 700px;
    margin: 0 auto;
}

.sec01 .textbox
{
    float: left;
}

.sec01 .step1 img,
.sec01 .step2 img
{
    float: right;

    margin: 25px 30px 25px 0;
}

.sec01 .step3 img
{
    float: right;

    margin: 25px 0 25px 0;
}

.mac.safari .sec01 .step3 img
{
    /*Safari, NetNewsWire, OmniWeb, Shiira, Google Chromeのみ*/
    margin: 25px 0 25px 0;
}

.sec01 .step1 .textbox
{
    margin: 107px 0 0 0;
}

.sec01 .step2 .textbox
{
    margin: 100px 0 0 0;
}

.sec01 .step3 .textbox
{
    margin: 85px 0 0 0;
}

.sec01 .step3 img.icon
{
    float: none;

    margin: 0;

    vertical-align: top;
}

.mac .sec01 .step3 img.icon
{
    /*Safari, NetNewsWire, OmniWeb, Shiira, Google Chromeのみ*/
    margin: 0;
}

.sec01 .step3 img.sec01_10
{
    float: left;

    margin: 35px 0 0 150px !important;
}

article ul.point
{
    width: 550px;
    margin: 38px auto;
}

.sec02 .bg
{
    height: 970px;

    background: url(../img/sec02_02.png) no-repeat;
}

#wrap .beginner article .sec02 .bg p
{
    font-size: 16.25px;
    font-weight: normal;
    line-height: 1.3;

    width: 35%;
    margin: 0 auto;
    padding-top: 785px;
    padding-left: 1.25em;

    text-indent: -1.25em;

    color: gray;
}

article ul.point li
{
    margin-left: 2em;

    text-indent: -3em;
}

.safari article ul.point li
{
    /*Safari, NetNewsWire, OmniWeb, Shiira, Google Chromeのみ*/
    margin-left: 3em;

    text-indent: -3em;
}

.mac.safari article ul.point li
{
    /*Safari, NetNewsWire, OmniWeb, Shiira, Google Chromeのみ*/
    margin-left: 3em;

    text-indent: -3em;
}

@media screen and (-webkit-min-device-pixel-ratio: 0)
{
    ::i-block-chrome,
    article ul.point
    {
        width: 595px;
        margin: 38px auto;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0)
{
    article ul.point li
    {
        margin-left: 2em;

        text-indent: -2em;
    }
}

article ul.point li:first-child
{
    margin-bottom: 10px;
}

.sec04
{
    height: 200px;

    background: url(../img/btn_bg.png) no-repeat;
}

.sec04 ul li
{
    float: left;
}

.sec04 ul li:first-child
{
    margin-right: 44px;
}

.sec04 ul
{
    width: 814px;
    margin: 0 auto;
    padding-top: 67px;
}

/*pagetop*/
p.pagetop
{
    position: absolute;
    z-index: 999;
    top: 665px;
    right: 13px;

    width: 78px;
    margin-bottom: 0;
    padding-left: 16px;

    background: transparent url('../img/bg_pagetop.gif') no-repeat scroll left 2px;
}

p.pagetop span
{
    display: block;

    padding-right: 5px;

    background: url(../img/bg_pagetop.gif) no-repeat right 2px;
}

p.pagetop span a
{
    font-size: 84%;

    color: #333;
}

p.pagetop a:hover
{
    text-decoration: underline;
}
