@charset "UTF-8";
/* ======================================================
 * mylife.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 769px)
 * Print
====================================================== */
/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 769px) {
  /* ======================================================
   * Main
  ====================================================== */
  .Main__inner {
    margin: 0 auto 0;
    width: 1200px;
    padding: 0 20px;
  }
  .Main__body__wrap {
    display: flex;
    flex-flow: row wrap;
  }
  .Main__body__inner {
    order: 2;
    flex-grow: 1;
    width: calc(100% - 320px);
  }
  .Main__body__sidebar {
    order: 1;
    flex-shrink: 0;
    width: 300px;
    margin-right: 20px;
  }
  .Main__body__sidebar > *:first-child {
    margin-top: 0;
  }

  /* ======================================================
   * Contents
  ====================================================== */
  /* ------------------------------------------------------
   * home-scroll
  ------------------------------------------------------ */
  .home-scroll__wrap {
    position: relative;
  }
  .home-scroll__wrap.scroll-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    width: 1160px;
    background-color: #f2f5f8;
    transform: translateX(-50%);
    z-index: 9999;
  }
  .home-scroll__inner {
    padding: 12px 20px;
    background-color: #f2f5f8;
  }

  /* ------------------------------------------------------
   * home-search
  ------------------------------------------------------ */
  .home-search {
    width: 940px;
    margin: 0 auto;
  }
  .home-search__fieldset {
    display: flex;
    border: 1px solid #5f6b78;
    border-radius: 3px;
  }
  .home-search__input {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 10px;
    border: none;
    outline: none;
    flex-grow: 1;
    border-radius: 1px 0 0 1px;
  }
  .home-search__input::placeholder {
    color: #b1b1b1;
  }
  .home-search__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    width: 115px;
    height: 40px;
    border: none;
    outline: none;
    color: #fff;
    background-color: #5f6b78;
    border-radius: 0 1px 1px 0;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .home-search__submit:hover {
    opacity: 0.7;
  }
  .home-search__icon {
    margin-right: 9px;
  }
  .home-search__auxiliary {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 10px;
    background-color: #fff;
  }

  /* ------------------------------------------------------
   * mainTitle
  ------------------------------------------------------ */
  .mainTitle {
    display: flex;
    align-items: center;
    padding: 5px 25px;
    background-color: #232b35;
  }
  .mainTitle__title {
    flex-grow: 1;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
  }
  .mainTitle__top {
    flex-shrink: 0;
    margin-left: 20px;
  }
  a.mainTitle__btn {
    display: inline-block;
    height: 36px;
    padding: 5px 20px;
    font-size: 14px;
    background-color: #fff;
    border-radius: 3px;
  }
  a.mainTitle__btn:hover {
    opacity: 0.7;
    text-decoration: none;
  }

  /* ------------------------------------------------------
   * breadcrumbs
  ------------------------------------------------------ */
  .breadcrumbs {
    color: #6a7684;
    font-size: 0;
  }
  .breadcrumbs-list {
    padding: 10px 0;
  }
  .breadcrumbs-item {
    position: relative;
    display: inline;
    padding-left: 18px;
    font-size: 13px;
  }
  .breadcrumbs-item:first-child {
    padding-left: 0;
  }
  .breadcrumbs-item::before {
    content: "＞";
    display: block;
    position: absolute;
    top: 0;
    left: 4px;
    height: 20px;
  }
  .breadcrumbs-item:first-child::before {
    content: none;
  }
  .breadcrumbs-item a,
  .breadcrumbs-item a:visited {
    color: #206ac5;
    text-decoration: underline;
  }
  .breadcrumbs-item a:hover {
    text-decoration: none;
  }

  /* ------------------------------------------------------
   * important
  ------------------------------------------------------ */
  .important {
    display: flex;
    background-color: #f2f5f8;
  }
  .important__head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 140px;
    padding: 15px 10px;
    background-color: #dce0e3;
  }
  .important__title {
    font-weight: bold;
    font-size: 14px;
  }
  .important__body {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding: 8px 30px;
  }
  .important__list {
    display: flex;
    flex-flow: row wrap;
  }
  .important__item {
    margin-right: 25px;
    font-size: 14px;
  }
  .important__item > a {
    display: inline-block;
    text-decoration: underline;
  }

  /* ------------------------------------------------------
   * home-pr-head
  ------------------------------------------------------ */
  .home-pr-head {
    width: 940px;
    margin: 0 auto;
    padding: 18px 0 20px;
  }
  .home-pr-head__column {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .home-pr-head__item {
    width: calc((100% - (35px * 2)) / 3);
  }
  .home-pr-head__item:not(:first-child) {
    margin-left: 35px;
  }
  a.home-pr-head__link {
    display: block;
    color: #5f6b78;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  a.home-pr-head__link:visited {
    color: #5f6b78;
  }
  .home-pr-head__line {
    font-size: 0;
    text-align: center;
  }
  .home-pr-head__line a.home-pr-head__link {
    display: inline-block;
    padding-left: 0;
  }
  .home-pr-head__line a.home-pr-head__link::before {
    content: none;
  }
  .home-pr-head__detail {
    display: flex;
    align-items: center;
  }
  .home-pr-head__image {
    flex-shrink: 0;
    margin-right: 16px;
  }
  .home-pr-head__text {
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  /* ------------------------------------------------------
   * .pr-banner
  ------------------------------------------------------ */
  .pr-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
  }
  .pr-banner__item {
    box-shadow: 0 0 0 1px #d2dce6;
  }
  .pr-banner__item > a:hover {
    opacity: 0.7;
  }

  /* ------------------------------------------------------
   * home-news-tab
  ------------------------------------------------------ */
  .home-news-tab {
    border: 1px solid #d2dce6;
  }
  .home-news-tab__detail {
    padding: 20px;
    background-color: #fff;
  }
  .home-pr-tab__detail {
    padding: 0 20px;
    background-color: #fff;
  }
  .home-news-tab__column {
    display: flex;
  }
  .home-news {
    width: calc(100% - 330px);
    margin-top: -10px;
  }
  .home-news-tab__box .home-news {
    width: 100%;
  }
  .home-news__article:not(:first-child) {
    margin-top: 10px;
  }
  .home-news__article:nth-child(-n+4) {
    display: none;
  }
  .home-pr__article {
    margin-top: 10px;
  }
  .home-news__type {
    display: block;
  }
  .home-news__body {
    display: flex;
    align-items: center;
  }
  .home-news__title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .home-news__icon {
    flex-shrink: 0;
    margin-left: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
  }
  .home-news-ad {
    flex-shrink: 0;
    margin-left: 30px;
    width: 300px;
  }
  .home-news-more {
    margin-top: 5px;
  }

  /* ------------------------------------------------------
   * recommend
  ------------------------------------------------------ */
  .recommend {
    margin-top: 30px;
    background-color: #dce0e3;
  }
  .recommend__title {
    padding: 7px 15px 5px;
    color: #fff;
    font-weight: bold;
    background-color: #232b35;
  }
  .recommend__inner {
    padding: 10px 40px 40px;
  }
  .recommend__list {
    display: flex;
    flex-wrap: wrap;
  }
  .recommend__list.pattern-2 {
    justify-content: space-between;
  }
  .recommend__item {
    margin-top: 30px;
  }
  .recommend__list.pattern-2 .recommend__item {
    width: calc((100% - 80px) / 2);
  }
  .recommend__list.pattern-3 {
    margin-left: -50px;
  }
  .recommend__list.pattern-3 .recommend__item {
    width: 220px;
    margin-left: 50px;
  }
  .recommend__list.pattern-3 .recommend__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 97px;
    overflow: hidden;
  }
  .recommend__name {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .recommend__text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  /* ------------------------------------------------------
  * affiliate
  ------------------------------------------------------ */
  .affiliate {
    display: flex;
    border: 1px solid #d2dce6;
    background-color: #fff;
    margin-top: 30px;
    padding: 15px 20px;
  }
  .affiliate__item {
    width: calc((100% - 20px) / 2);
  }
  .affiliate__item:not(:first-child) {
    margin-left: 20px;
  }
  .affiliate__link {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  .affiliate__link:hover {
    text-decoration: none;
  }
  .affiliate__link:hover .affiliate__title {
    text-decoration: underline;
  }
  .affiliate__title {
    display: block;
    order: 1;
    width: 100%;
  }
  .affiliate__image {
    order: 2;
    width: 80px;
    margin-right: 20px;
    margin-top: 12px;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .affiliate__body {
    order: 3;
    display: flex;
    align-items: center;
    margin-top: 12px;
    width: calc(100% - 100px);
    flex-grow: 1;
    font-size: 12px;
    color: #5f6b78;
  }
  .affiliate__text {
    display: block;
  }
  .affiliate__company {
    display: block;
  }

  /* ------------------------------------------------------
   * mall
  ------------------------------------------------------ */
  .mall {
    margin-top: 20px;
  }
  .mall__inner {
    display: flex;
    justify-content: space-between;
    border: 1px solid #d2dce6;
    background-color: #fff;
    padding: 20px;
  }
  .mall__cont {
    max-width: 448px;
  }
  .mall__title {
    font-weight: bold;
  }
  .mall__image {
    margin-top: 10px;
  }
  .mall__text {
    margin-top: 15px;
    font-size: 14px;
  }
  .mall__more {
    margin-top: 10px;
    font-size: 14px;
  }
  .mall-shop {
    margin-left: 40px;
  }
  .mall-shop__title {
    font-weight: bold;
  }
  .mall-shop__label {
    display: inline-block;
    position: relative;
    top: -5px;
    margin-right: 10px;
    padding: 5px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    background-color: #232b35;
    transform: rotate(-15deg);
  }
  .mall-shop__item {
    margin-top: 10px;
    font-size: 14px;
  }
  .mall-shop__link {
    display: block;
    position: relative;
    width: 100%;
  }
  .mall-shop__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    min-width: auto;
    height: 60px;
    margin: 0;
    overflow: hidden;
  }
  .mall-shop__name {
    display: flex;
    align-items: center;
    width: calc(100% - 120px - 10px);
    min-height: 60px;
    margin-left: auto;
    font-weight: bold;
  }
  .mall-shop__text {
    margin-top: 5px;
  }
  .mall-shop__percent {
    text-align: right;
  }
  .mall-shop__icon {
    display: inline-block;
    position: relative;
    top: 3px;
    margin-left: 5px;
  }

  /* ------------------------------------------------------
   * cp-banner
  ------------------------------------------------------ */
  .cp-banner {
    text-align: center;
  }
  .cp-banner__item:not(:first-child) {
    margin-top: 15px;
  }
  .cp-banner a:hover {
    opacity: 0.7;
  }

  /* ------------------------------------------------------
   * cnt-banner
  ------------------------------------------------------ */
  .cnt-banner {
    margin-top: 20px;
    text-align: center;
  }
  .cnt-banner__item:not(:first-child) {
    margin-top: 15px;
  }
  .cnt-banner a:hover {
    opacity: 0.7;
  }

  /* ------------------------------------------------------
   * pickup
  ------------------------------------------------------ */
  .pickup {
    margin-top: 20px;
  }
  .pickup__link:hover {
    opacity: 0.7;
  }
  .pickup__title {
    margin-top: 5px;
  }
  .pickup__date {
    color: #ac2330;
  }

  /* ------------------------------------------------------
   * gravure
  ------------------------------------------------------ */
  .gravure {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 10px;
    border: 1px solid #d2dce6;
    background-color: #fff;
  }
  .gravure__title {
    font-weight: bold;
  }
  .gravure__text {
    margin-top: 8px;
  }
  .gravure__image {
    flex-shrink: 0;
    margin-left: 10px;
  }
  .gravure__image a:hover {
    opacity: 0.7;
  }

  /* ------------------------------------------------------
   * rec-service
  ------------------------------------------------------ */
  .rec-service {
    margin-top: 20px;
  }
  .rec-service__title {
    padding-bottom: 5px;
    border-bottom: 1px solid #5f6b78;
    font-weight: bold;
  }
  .rec-service__inner {
    display: flex;
    flex-flow: row wrap;
  }
  .rec-service__item {
    width: calc((100% - 50px) / 3);
    margin-top: 20px;
    margin-left: 25px;
    border-bottom: 1px solid #d2dce6;
  }
  .rec-service__item:nth-of-type(3n + 1) {
    margin-left: 0;
  }
  .rec-service__link {
    display: flex;
    align-items: center;
  }
  .rec-service__image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    margin-right: 14px;
  }
  .rec-service__name {
    flex-grow: 1;
    padding: 0 16px 0 0;
  }
  .rec-service__name::before {
    left: auto;
    right: 2px;
  }
  .rec-service__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0;
    padding-left: 200px;
  }
  .rec-service__control {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    position: relative;
  }
  .rec-service__control .slick-dots {
    display: flex;
    align-items: center;
  }
  .rec-service__control .slick-dots li {
    display: flex;
    padding: 0 10px;
  }
  .rec-service__control .slick-dots button {
    display: inline-block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: #d2dce6;
    text-indent: -9999em;
    outline: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .rec-service__control .slick-dots button:hover {
    background-color: #adb6cf;
  }
  .rec-service__control li.slick-active button {
    background-color: #5f6b78;
  }
  .rec-service__control .slick-arrow {
    position: relative;
    z-index: 2;
    width: 18px;
    height: 18px;
    margin: 0 40px;
    padding: 0;
    border: none;
    background-color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    outline: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    cursor: pointer;
  }
  .rec-servic__control .slick-arrow:hover {
    opacity: 0.7;
  }
  .rec-service__control .slick-arrow::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #5f6b78;
    border-right: 2px solid #5f6b78;
    vertical-align: middle;
  }
  .rec-service__prev.slick-arrow::before {
    margin-left: -2px;
    transform: rotate(-135deg);
  }
  .rec-service__next.slick-arrow::before {
    margin-left: -4px;
    transform: rotate(45deg);
  }
  .rec-service__switch {
    display: flex;
    align-items: center;
    font-size: 0;
  }
  .rec-service__switch button {
    display: inline-block;
    position: relative;
    width: 14px;
    height: 16px;
    padding: 0;
    border: none;
    background-color: transparent;
    text-indent: -9999em;
    outline: none;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .rec-service__switch button:hover {
    opacity: 0.7;
  }
  .rec-service__pause::before,
  .rec-service__pause::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #5f6b78;
  }
  .rec-service__pause::before {
    left: 2px;
  }
  .rec-service__pause::after {
    right: 2px;
  }
  .rec-service__play {
    display: inline-block;
    position: relative;
    width: 14px;
    height: 16px;
    margin: 0 10px;
    padding: 0;
    border: none;
    background-color: transparent;
    text-indent: -9999em;
    outline: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .rec-service__play::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 1px;
    margin: -8px 0 0 0;
    border-width: 8px 14px;
    border-style: solid;
    border-color: transparent transparent transparent #5f6b78;
  }

  .rec-service__more {
    text-align: right;
  }
  .rec-service__btn {
    display: inline-block;
    padding: 6px 15px;
    background-color: #f2f5f8;
  }
  .rec-service__btn:hover {
    opacity: 0.7;
  }
  .rec-service__btn > span {
    display: inline-block;
    position: relative;
    padding-left: 18px;
    font-size: 14px;
  }
  .rec-service__btn > span::before,
  .rec-service__btn > span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 2px;
    margin: -1px 0 0 0;
    background: #5f6b78;
    -webkit-backface-visibility: hidden;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .rec-service__btn > span::before {
    transform: rotate(90deg);
  }

  /* ------------------------------------------------------
   * external
  ------------------------------------------------------ */
  .external {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .external__title {
    display: block;
    margin-right: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
  }
  .external__list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .external__item {
    box-shadow: 0 0 0 1px #d2dce6;
  }
  .external__item:not(:first-child) {
    margin-left: 35px;
  }
  .external__item > a:hover {
    opacity: 0.7;
  }

  /* ======================================================
   * Footer
  ====================================================== */
  .Footer {
    margin-top: 30px;
  }
}

@supports (-webkit-line-clamp: 2) {
  .home-news-pickup__title {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
  }
}