@charset "UTF-8";

/*******************************
 main
 *******************************/

.main-img {
    position: relative;
}

.main-img__back img {
    width: 100%;
}

.main-img__txt {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    width: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    max-width: 514px;
}

/* アニメーション */
.main-img__txt img {
  display: block;
  width: 100%;
  opacity: 0; /* 最初は非表示にしてチラ見え防止 */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* ちらつき防止 */
  will-change: transform, opacity;
}



/*******************************
 リンク
 *******************************/
.link-btn {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    border: 1px solid #000;
    border-radius: 5px;
}

.link-btn__label {
    display: block;
    padding: 5px 0;
    font-size: 1.5rem;
}

.link-btn:hover::after {
    display: block;
    width: 11px;
    height: 9px;
    margin-left: 10px;
    background: url(../images/common/arrow-w@2x.png) no-repeat;
    background-size: 11px;
    content: "";
}

.link-btn::after {
    display: block;
    width: 11px;
    height: 9px;
    margin-left: 10px;
    background: url(../images/common/arrow@2x.png) no-repeat;
    background-size: 11px;
    content: "";
}

.link-btn.-white {
    border-color: #fff;
}

.link-btn.-canter {
    margin-right: auto;
    margin-left: auto;
}

.link-btn:hover {
    border: 1px solid #00a7eb;
    background: #00a7eb;
    color: #fff;
}

.link-btn.-white:hover {
    border-color: #fff;
    background: #fff;
    color: #00a7eb;
}

.link-btn.-white::after {
    display: block;
    width: 11px;
    height: 9px;
    margin-left: 10px;
    background: url(../images/common/arrow-w@2x.png) no-repeat;
    background-size: 11px;
    content: "";
}

.link-btn.-white:hover::after {
    display: block;
    width: 11px;
    height: 9px;
    margin-left: 10px;
    background: url(../images/common/arrow-b@2x.png) no-repeat;
    background-size: 11px;
    content: "";
}


/*******************************
 products
 *******************************/
 

.products {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.products__container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.products__body {
    margin-bottom: 30px;
}

.products__header {
    margin-bottom: 10px;
}

.products__catchcopy {
    margin-bottom: 10px;
    margin-left: -20px;
    color: #00a7eb;
    font-weight: 400;
    font-size: 3rem;
}

.products__number-label {
    font-weight: 900;
}

.products__lead {
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 1.6rem;
}

.products__description {
    font-size: 1.5rem;
}

.products__image {
    width: 200px;
    margin: 0 auto;
}

.products__link {
    margin-top: 20px;
}







/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .products {
        position: relative;
        border-bottom-width: 10px;
    }

    .products__container {
        position: relative;
        z-index: 1;
        margin: 0 auto;
        padding: 20px 0;
    }

    .products__body {
        width: 70%;
    }

    .products__catchcopy {
        margin-bottom: 15px;
        font-size: 3.5rem;
    }

    .products__lead {
        font-size: 2rem;
    }

    .products__image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50%;
        margin: 0;
    }

    .products__link {
        margin-top: 40px;
    }
}


/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .products__container {
        padding: 60px 0;
    }

    .products__body {
        margin-bottom: 0;
    }

    .products__catchcopy {
        margin-bottom: 20px;
        margin-left: -30px;
        font-size: 5.6rem;
    }

    .products__number-label {
        font-weight: 900;
    }

    .products__lead {
        margin-bottom: 20px;
        font-size: 2.7rem;
    }

    .products__description {
        font-size: 1.6rem;
        line-height: 2;
    }

    .products__body {
        width: 100%;
    }
    .products__image {
        width: 555px;
    }
}


/*******************************
 manual
 *******************************/

.section-wrap {
    border-top: 8px solid #00a7eb;
    background: url(../images/top/back@2x.jpg);
    background-size: cover;
}

.manual {
    width: 90%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 30px 0;
}

.manual__header {
    margin-bottom: 10px;
}

.manual__body {
    margin-bottom: 30px;
}

.manual__description {
    font-size: 1.5rem;
}

.manual__image-wrapper {
    overflow: hidden;
    border-radius: 18px;
}

.manual__link {
    margin-top: 20px;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .manual {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 50px 0;
    }

    .manual__image-wrapper {
        width: 48%;
    }

    .manual__body {
        width: 50%;
        margin-bottom: 0;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .section-wrap {
        border-width: 23px;
    }

    .manual__image-wrapper {
        width: 56%;
        max-width: 590px;
    }

    .manual__body {
        width: 40%;
    }

    .manual__description {
        font-size: 1.6rem;
        line-height: 2;
    }
}

/*******************************
 catalog-download
 *******************************/
 .catalog-download{
    width: 100%;
    margin-top: 20px;
    background: #eee;
 }

  .catalog-download a{
    display: block;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
  }

    .catalog-download a:hover{
        opacity: .7;
    }

    /* 600px以上：タブレット
    ------------------------------ */
    @media screen and (min-width: 600px) {
       .catalog-download{
    margin-top: 50px;
 }
    }

/*******************************
 lineup
 *******************************/
.lineup {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.lineup__header {
    justify-content: center;
    margin-bottom: 10px;
}

.lineup__description {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.lineup__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lineup__item {
    width: 48%;
    margin-bottom: 15px;
}

.lineup__item span {
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

.lineup__image {
    width: 100%;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .lineup {
        padding: 30px 0 60px;
    }

    .lineup__header {
        margin-bottom: 20px;
    }

    .lineup__description {
        margin-bottom: 50px;
    }
    .lineup__item {
        width: 23%;
        margin-bottom: 30px;
    }
}


/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .lineup {
        padding: 50px 0;
    }
    .lineup__description {
        font-size: 1.6rem;
        line-height: 2;
    }

    .lineup__description {
        text-align: center;
    }
}

/*******************************
 Works
 *******************************/

.works {
    padding: 20px 0 40px;
    background: #00a7eb;
    color: #fff;
}

.works__header {
    justify-content: center;
}

.works__list {
    width: 90%;
    max-width: 1060px;
    margin: 0 auto 40px;
}

.works__item {
    margin-top: 30px;
}

.works__figure {
    overflow: hidden;
    border-radius: 15px;
}

.works__image {
    width: 100%;
}

.works__info {
    margin-top: 15px;
}

.works__case-number {
    width: 80px;
    margin-right: 15px;
    padding: 3px 0;
    border-radius: 10px;
    background: #fff;
    color: #00a7eb;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}

.works__case-title {
    flex: 1;
    margin-top: 5px;
    font-weight: bold;
    font-size: 1.5rem;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .works {
        padding: 50px 0;
    }

    .works__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .works__item {
        width: 32%;
        margin-top: 30px;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .works__info {
        display: flex;
        align-items: center;
    }

    .works__case-title {
        margin-top: 0;
    }

    .works__item {
        margin-top: 40px;
    }
}

/*******************************
 Topics
 *******************************/

.topics {
    margin-bottom: 40px;
    position: relative;
}

.topics__body {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.topics__header {
    justify-content: center;
}

.topics__list {
    padding: 30px 0;
}

.topics__wrap {
    padding-top: 30px;
}

.topics__item {
    border-bottom: 1px dotted #000;
}

.topics__article a {
    display: block;
    padding: 10px 0;
}

.topics__meta {
    display: flex;
    align-items: center;
}

.topics__date {
    margin-right: 20px;
}

.topics__category {
    width: 95px;
    padding: 2px 0;
    border-radius: 5px;
    background: #7c7c7c;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
}

.topics__headline {
    margin-top: 5px;
    font-size: 1.4rem;
}

.topics__img{
        display: none;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    /* .topics {
        background: url(../images/top/topics@2x.png) bottom right no-repeat;
        background-size: 626px;
        background-size: 60%;
    } */

    .topics__body{
        z-index: 1;
        position: relative;
    }

    .topics__img{
        display: block;
        position: absolute;
        right: 0;
        bottom:0;
        z-index: 0;
    }

    .topics__wrap {
        width: 80%;
        background-color: rgba(255,255,255,.8);
    }

    .topics__list {
        width: 90%;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .topics__header {
        justify-content: flex-end;
    }

    .topics {
        margin-bottom: 60px;
        background-size: 626px;
    }

    .topics__wrap {
        width: 65%;
    }

    .topics__list {
        width: 85%;
        padding: 70px 0;
min-height: 420px;
    }

    .topics__article a {
        display: flex;
        padding: 15px 0;
    }

    .topics__headline {
        flex: 1;
        margin-top: 0;
        margin-left: 20px;
    }
}


/*******************************
 アニメーション
 *******************************/

/* アニメ前の初期値：一律で隠す（変形の初期値はJSのfromで与える） */
[data-reveal-sp],
[data-reveal-pc] {
  opacity: 0;
  will-change: transform, opacity;
}

/* モーション軽減ユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  [data-reveal-sp],
  [data-reveal-pc] {
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* data-bounce-list 配下のターゲット（既定は li）を最初は隠す */
[data-bounce-list] > * {
  opacity: 0;
  will-change: transform, opacity;
}

/* モーション軽減ユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  [data-bounce-list] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
