@charset "UTF-8";
/* ===========================
manual.css
============================== */

/*  color  */
.ttl_light {
    color: #00B3EC;
    border-color: #00B3EC;
}

.ttl_advance {
    color: #E64290;
    border-color: #E64290;
}

.ttl_pro {
    color: #AE9A52;
    border-color: #AE9A52;
}

.manual_contents .toggle_txt .bglight {
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(3, 152, 194, 0.1) 100%);
}

.manual_contents .toggle_txt .bgadvance {
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(230, 66, 144, 0.07) 100%);
}

.manual_contents .toggle_txt .bgpro {
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(174, 154, 82, 0.1) 100%);
}

.manual_contents .circle {
    display: inline-block;
    padding-left: 0.8em;
    width: 20px;
    height: 20px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    background-color: #000;
    border-radius: 50%;
}

.manual_contents .circle.light {
    background-color: #00B3EC;
}

.manual_contents .circle.advance {
    background-color: #E64290;
}

.manual_contents .circle.pro {
    background-color: #AE9A52;
}


/*** カテゴリの一覧 ***/
.category_index {
    margin-top: 80px;
}

.category_index .ttl {
    color: #0398c2;
    text-align: center;
    transform: skewX(0.03deg);
    font-weight: 500;
}

.category_index {
    margin-bottom: 100px;
}

.category_index h2 {
    text-align: center;
}

.category_index ul {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.category_index ul li {
    position: relative;
    list-style-type: none;
    border-bottom: 1px solid #ccc;
}

.category_index ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #0398c2;
    border-right: 2px solid #0398c2;
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
}

.category_index ul li a {
    display: block;
    color: #3a3a3a;
    text-decoration: none;
    transform: skewX(0.03deg);
    padding: 1em;
}

.category_index ul li a:hover {
    color: #0078e7;
}

/*  3シリーズ表記  */
.type_block {
    width: 350px;
    padding: 2px 0;
    display: flex;
}

.type_block p {
    width: 70px;
    margin: 0 5px;
    padding: 3px;
    text-align: center;
    font-size: 12px;
    transform: skewX(0.03deg);
    border: 1px solid;
    border-radius: 5px;
    background-color: #fff;
    justify-content: space-around;
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .category_index {
        clear: both;
    }

    .category_index ul {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    }

    .category_index ul li {
        width: calc(100% / 2 - 30px);
    }

    #m02 label {
        display: flex;
    }

    #m02 label .type_block {
        margin-left: 20px;
    }
}

/* manual_contents */

/*** 回答ブロック ***/
.manual_area {
    padding-bottom: 90px;
}

.manual_area > .manual_contents {
    margin: -90px auto 15px;
    padding-top: 90px;
    width: 100%;
}

/*アコーディオン設定*/
.manual_contents .toggle {
    display: none;
}

.manual_contents .manual_title {
    display: block;
    color: #0398c2;
    background-color: rgba(3, 152, 194, 0.2);
    padding: 0.875em calc(1em + 20px) 0.875em 1em;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.4;
}

.manual_contents .manual_title:hover {
    cursor: pointer;
    color: #0078e7;
}

.manual_contents .manual_title,
.manual_contents .toggle_txt {
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.manual_contents .toggle_txt {
    height: 0;
    margin-bottom: 10px;
    padding: 0 20px;
    overflow: hidden;
}

.manual_contents .toggle:checked + .manual_title + .toggle_txt {
    height: auto;
    padding: 20px;
    transition: all .3s;
}

.manual_contents .manual_title::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    transform: rotate(135deg);
}

.manual_contents .toggle:checked + .manual_title::before {
    transform: rotate(-45deg);
}

#manual_contents div {
    display: flex;
}

/*アコーディオンコンテンツ設定*/
@media screen and (min-width: 48em) {
    /* 768px md */
    .manual_contents {
        width: 100%;
        margin: 0 auto;
    }

    .manual_contents .manual_title {
        cursor: none;
        transform: skewX(0.03deg);
        pointer-events: none;
    }

    .manual_contents .toggle_txt {
        height: auto;
        opacity: 1;
        padding: 20px 20px 40px 40px;
    }

    .manual_contents .toggle:checked + .manual_title + .toggle_txt {
        height: auto;
        opacity: 1;
        padding: 20px 20px 40px 40px;
    }

    .manual_contents .toggle:checked + .manual_title::before {
        transform: rotate(135deg);
    }
}

/* toggle_txt */
.manual_contents .manual_type_logo {
    margin: 50px auto;
    display: block;
    text-align: center;
}

.manual_contents .toggle_txt {
    transform: skewX(0.03deg);
    line-height: 2;
}

.manual_contents .toggle_txt section {
    padding: 0 30px 30px;
    border-bottom: 1px dashed #ccc;
}

.manual_contents .toggle_txt section:last-child {
    border-bottom: none;
}

.manual_contents .toggle_txt h2 {
    margin: 25px 0 0;
    font-size: 18px;
    transform: skewX(0.03deg);
    line-height: 2;
}

.manual_contents .toggle_txt .inner_ttl {
    max-width: 330px;
    margin: 0 auto;
    padding: 30px 0 15px;
    font-size: 1.125rem;
    transform: skewX(0.03deg);
    font-weight: bold;
    line-height: 1.43;
    letter-spacing: 0.18em;
    text-align: center;
    border-bottom: 1px solid;
}

.manual_contents .toggle_txt h3 {
    margin: 0;
    font-size: 18px;
    transform: skewX(0.03deg);
    line-height: 2;
}

.manual_contents .toggle_txt ul {
    margin: 0;
    list-style: none;
}

.manual_contents .toggle_txt ul li,
.manual_contents .toggle_txt .txt {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    transform: skewX(0.03deg);
}

.manual_contents .toggle_txt ul li {
    padding-left: 0.8em;
    text-indent: -0.8em;
}

.manual_contents .toggle_txt .note {
    margin-top: 1.5em;
}

.manual_contents .toggle_txt a {
    color: #0078e7;
    transition: all 0.3s;
}

.manual_contents .toggle_txt a:hover {
    color: #80BCF1;
}

.manual_contents .toggle_txt .blue {
    color: #0078e7;
}

.manual_contents .toggle_txt .txt_note {
    display: block;
    font-size: 12px;
    transform: skewX(0.03deg);
}

/* YouTube */
.manual_contents .youtube {
    margin-top: 30px;
    border: 2px solid;
}

.manual_contents .youtube p {
    text-align: center;
}

/* レタッチ */
.manual_contents .toggle_txt .pro_retouch ul {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0;
}

.manual_contents .toggle_txt .pro_retouch ul li {
    width: 100%;
    padding: 15px;
}

.manual_contents .toggle_txt .pro_retouch h3 {
    width: 100%;
    padding-left: 1rem;
    color: #AE9A52;
    border-bottom: 1px solid #AE9A52;
}

.manual_contents .toggle_txt .pro_retouch p {
    width: 96%;
    margin: 10px auto;
    font-size: 12px;
    transform: skewX(0.03deg);
    text-align: center;
    line-height: 1.2;
}

.manual_contents .toggle_txt .pro_retouch img {
    margin-top: 20px;
}

.manual_contents .toggle_txt .with_images .img_side {
    margin-top: 20px;
}

#m05.manual_contents .toggle_txt .with_images div.img_area {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

#m05.manual_contents .toggle_txt .with_images div.img_area img {
    width: 48%;
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .manual_area {
        padding-bottom: 0;
    }

    .manual_contents .toggle_txt .with_images {
        overflow: hidden;
    }

    .manual_contents .toggle_txt .with_images div.img_area {
        width: 45%;
        margin: 0 0 15px 10px;
        float: right;
    }

    .manual_contents .toggle_txt .with_images div.img_area img {
        width: 100%;
    }

    .manual_contents .toggle_txt .with_images .img_side {
        display: flex;
        justify-content: flex-end;
    }

    .manual_contents .toggle_txt .with_images .img_side img:last-child {
        margin-left: 15px;
    }

    /* レタッチ */
    .manual_contents .toggle_txt .pro_retouch ul {
        display: flex;
        justify-content: space-between;
    }

    .manual_contents .toggle_txt .pro_retouch ul li {
        width: 33.33333%;
    }

    #m05.manual_contents .toggle_txt .with_images div.img_area {
        width: 230px;
    }
}


/* ダミー処理一式 */
.manual_contents .toggle_txt figure {
    border: 1px solid #ccc;
}

.manual_contents .toggle_txt figure.dummy　img {
    width: 100%;
}

.manual_contents .toggle_txt figure.dummy figcaption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media screen and (min-width: 35.5em) {
    /* 568px sm */
}

@media screen and (min-width: 48em) {
    /* 768px md */
}

@media screen and (min-width: 64em) {
    /* 1024px lg */
}

@media screen and (min-width: 80em) {
    /* 1280px xl */
}
