@charset "UTF-8";

/*******************************
 intro
 *******************************/
.intro {
    width: 90%;
    max-width: 740px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
}

.intro__description {
    margin-top: 20px;
    font-size: 1.5rem;
}

.intro__list {
    margin-top: 30px;
}

.intro__item {
    margin-bottom: 10px;
}

.intro__link {
    display: block;
    padding: 5px;
    border: 2px solid #00a7eb;
    border-radius: 5px;
}

.intro__link:hover {
    opacity: .7;
}

.intro__label {
    display: block;
    padding: 5px;
    border-radius: 5px;
    background: #00a7eb;
    color: #fff;
    text-align: center;
}

.intro__text {
    margin-top: 10px;
    font-size: 1.4rem;
    text-align: center;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .intro {
        margin-bottom: 80px;
    }

    .intro__title {
        font-size: 2.3rem;
        text-align: center;
    }

    .intro__description {
        margin-top: 40px;
        font-size: 1.6rem;
    }

    .intro__list {
        margin-top: 50px;
    }

    .intro__item {
        margin-bottom: 10px;
    }

    .intro__content {
        display: flex;
        align-items: center;
    }

    .intro__label {
        width: 125px;
        font-size: 1.5rem;
    }

    .intro__text {
        flex: 1;
        margin-top: 0;
        font-size: 1.6rem;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .intro__title {
        font-size: 2.7rem;
    }

    .intro__text {
        font-size: 2rem;
    }
}

/*******************************
 リスト
 *******************************/

.display__item, .component__item, .usage__block-item, .usage__step-item {
    padding-left: 1em;
    font-size: 1.5rem;
    text-indent: -1em;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .display__item, .component__item, .usage__block-item, .usage__step-item {
        font-size: 1.8rem;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .display__item, .component__item, .usage__block-item, .usage__step-item {
        font-size: 2rem;
    }
}

/*******************************
 イメージ
 *******************************/
.use-img {
    display: inline-block;
}

.use-page figure {
    text-align: center;
}

/*******************************
 COMPONENT
 *******************************/

.component__title, .display__title {
    padding: 5px 0;
    background: #000;
    color: #fff;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
}

.component__content {
    width: 90%;
    max-width: 854px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px 0;
}

.component__list-container {
    margin-top: 30px;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .component__title, .display__title {
        font-size: 2.5rem;
    }

    .component__content {
        padding: 50px 0;
    }

    .component__list-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 40px;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .component__content {
        padding: 70px 0;
    }
}

/*******************************
 DISPLAY
 *******************************/

.display__block {
    width: 90%;
    max-width: 1000px;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
}

.display__block-title {
    padding: 5px 0;
    border: 1px solid #000;
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
}

.display__flex {
    padding-top: 15px;
}

.display__txt {
    margin-top: 30px;
}

.display__item-small {
    font-size: 1.3rem;
}
/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .display__block-title {
        font-size: 2rem;
    }

    .display__block {
        margin-top: 50px;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .display__block-title {
        font-size: 2.3rem;
    }

    .display__flex {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        padding-top: 0;

        -moz-column-gap: 90px;
        column-gap: 90px;
    }

    .display__txt {
        margin-top: 0;
    }
    .display__item-small {
        font-size: 1.5rem;
    }

    .display__block {
        margin-top: 70px;
    }
}

/*******************************
 usage01
 *******************************/

.usage {
    margin-top: 50px;
}

.usage__title {
    padding: 5px;
    background: #00a7eb;
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
}

.usage__title span {
    font-size: 1.3rem;
}

.usage__content {
    width: 90%;
    max-width: 1000px;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
}

.usage__step {
    margin-top: 30px;
}

.usage__step-title {
    display: flex;
    align-items: center;
}

.usage__step-label {
    display: block;
    width: 100px;
    margin-right: 10px;
    border-radius: 5px;
    background: #414141;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

.usage__step-caption {
    display: block;
    flex: 1;
    font-weight: 600;
    font-size: 1.5rem;
}

.usage__step-list {
    margin-top: 20px;
}

.usage__step-item-red {
    color: #f00;
}

.usage__step-figure {
    margin-top: 20px;
    text-align: center;
}

.usage__point {
    margin-top: 30px;
    padding: 20px;
    background: #f3f1f1;
}

.usage__point-title {
    display: flex;
    align-items: center;
}

.usage__point-label {
    display: block;
    width: 100px;
    margin-right: 10px;
    border-radius: 5px;
    background: #000;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

.usage__point-caption {
    display: block;
    flex: 1;
    font-weight: 600;
    font-size: 1.5rem;
}

.usage__point-description {
    margin-top: 20px;
    font-size: 1.5rem;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .usage__title {
        padding: 10px;
        font-size: 2rem;
    }

    .usage__title span {
        font-size: 1.5rem;
    }

    .usage__content {
        margin-top: 50px;
    }

    .usage__step {
        margin-top: 50px;
    }

    .usage__step-label {
        width: 120px;
        margin-right: 20px;
        font-size: 1.7rem;
    }

    .usage__step-caption {
        font-size: 2rem;
    }

    .usage__step-list {
        margin-top: 30px;
    }

    .usage__step-figure {
        margin-top: 30px;
    }

    .usage__point {
        margin-top: 40px;
    }

    .usage__point-label {
        margin-right: 15px;
        font-size: 1.6rem;
    }

    .usage__point-caption {
        font-size: 1.8rem;
    }

    .usage__point-description {
        font-size: 1.5rem;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .usage {
        margin-top: 70px;
    }

    .usage__title {
        font-size: 2.5rem;
    }

    .usage__title span {
        font-size: 1.8rem;
    }

    .usage__content {
        margin-top: 70px;
    }

    .usage__step {
        margin-top: 60px;
    }

    .usage__step-label {
        width: 150px;
        margin-right: 30px;
        font-size: 2rem;
    }

    .usage__step-caption {
        font-size: 3rem;
    }

    .usage__step-list {
        margin-top: 30px;
    }

    .usage__point {
        padding: 30px 50px;
    }

    .usage__point-caption {
        font-weight: 500;
        font-size: 2.3rem;
    }
    .usage__point-description {
        margin-top: 20px;
        font-size: 1.7rem;
    }
}

/*******************************
 usage02
 *******************************/
.usage__block.-block02 {
    margin-top: 40px;
}

.usage__block-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.8rem;
}
.usage__block-title::before {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: #00a7eb;
    content: "";
}
.usage__block-label {
    display: block;
}

.usage__block-list {
    margin-top: 20px;
}

.usage__block-flex {
    margin-top: 30px;
}

.usage__block-flex-box {
    margin-top: 30px;
}

.usage__block-item-number {
    display: inline-block;
    width: 23px;
    height: 23px;
    padding: 0;
    border-radius: 50%;
    box-sizing: border-box;
    background: #00a7eb;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 23px;        /* 縦中央 */
    text-align: center;       /* 横中央 */
    text-indent: 0;
}

.usage__block-link {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 490px;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
    padding: 5px 0;
    box-shadow: 0 4px 11px -6px rgba(0,0,0,.6);
    background: #00a7eb;
    color: #fff;
    font-weight: bold;
}

.usage__block-link-lavel {
    display: block;
    padding-right: 10px;
}

.usage__figure {
    margin-top: 30px;
}

.usage__step-notes {
    margin-top: 20px;
}
.usage__txt {
    margin-top: 15px;
    font-size: 1.5rem;
}

.usage__block-item-small {
    font-size: 1.3rem;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .usage__block.-block02 {
        margin-top: 50px;
    }

    .usage__block-title {
        font-size: 2.3rem;
    }

    .usage__block-link {
        margin-top: 50px;
        padding: 10px 0;
        font-size: 2rem;
    }

    .usage__figure {
        margin-top: 50px;
    }

    .usage__txt {
        font-size: 1.8rem;
        text-align: center;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .usage__block.-block02 {
        margin-top: 70px;
    }
    .usage__block-title {
        font-size: 3rem;
    }

    .usage.-usage03 .usage__block-flex-box {
        width: 440px;
    }

    .usage__block-flex {
        display: flex;
        margin-top: 50px;
        -moz-column-gap: 70px;
        column-gap: 70px;
    }

    .usage__step-flex {
        display: flex;
    }

    .usage__block-number {
        padding-left: 50px;
        text-align: left!important;
    }

    .usage__step-notes {
        justify-content: space-between;
        margin-top: 30px;
        font-size: 1.5rem;
    }

    .usage__txt {
        margin-top: 30px;
        font-size: 2rem;
    }
}
