﻿/* アプリページ共有スタイル
	============================================================ */

  #wrapper2 {
    max-width: 100%;
  }
  
  #wrapper_app {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  }
  
  article img,
  .art_list img {
    border-radius: 0.5rem;
  }
  
  @media screen and (min-width: 751px) {
    #wrapper {
      min-width: auto;
    }
  }
  
  /* アンカーリンク位置調整 */
  .anchor {
      display: block;
      /* padding-top: 40px; */
      /* margin-top: -40px; */
  }
  
  /* テキストスタイル
    ============================================================ */
  
  h2 {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
  }
  
  .submenu h2.title {
    text-align: left;
  }
  
  h3,
  .blue_title {
    color: #0072CE;
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    text-align: center;
    position: relative;
    padding: 0 10px;
  }
  
  p {
    line-height: 1.5em;
    color: #181819;
  }
  
  p.caption {
    font-size: 1rem;
    color: #929399;
    line-height: 1.5em;
    text-align: left;
  }
  
  
  /* 日付 */
  .date {
    font-size: 1.1rem;
    line-height: 1.7em;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #0072CE;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
  }
  
  @media screen and (max-width: 480px) {
    h2 {
      font-size: 1.5rem;
    }
    h3,
    .blue_title {
      font-size: 1.1rem;
    }
    p {
      font-size: 0.9rem;
    }
      p.caption {
        font-size: 0.9rem;
      }
  }
  
  
  /* New記事
    ============================================================ */
  
  .new {
    position: absolute;
    width: 66px;
    height: 42px;
    display: block;
    top: -20px;
    left: 16px;
    background-image: url(../img/function_new.svg);
  }
  
  /* PickUP見出し装飾
    ============================================================ */
  
  #pickup {
    padding-top: 60px;
  }
  
  h3.pickup:before, h3.pickup:after,
  p.pickup:before, p.pickup:after {
    position: absolute;
    content: '';
    top: 5px;
    width: 11px;
    height: 15px;
    display: inline-block;
  }
  
  h3.pickup:before,
  p.pickup:before {
    margin-left: -20px;
    background-image: url(../img/pickup_backslash.svg);
  }
  
  h3.pickup:after,
  p.pickup:after {
    margin-left: 10px;
    background-image: url(../img/pickup_slash.svg);
  }
  
  #pickup .more {
    display: block;
    width: 300px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    color: #0072CE;
    background-color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: 1px #0072CE solid;
    border-radius: 8px;
    margin-bottom: 60px;
  }
  
  @media screen and (max-width: 750px) {
    #pickup {
      /* padding-top: 160px; */
    }
    #pickup .more {
      width: 90%;
    }
  }
  
  /* Functionメイン記事一覧
    ============================================================ */
  
  #mainArticles {
    width: 96%;
    max-width: 1700px;
    padding-top: 64px;
    margin: 0px auto 4px;
    border-radius: 2rem;
    background-color: #EEF7FF;
  }
  
  #mainArticles .sub-category {
    padding-bottom: 2rem;
  }
  
  #mainArticles article,
  #mainArticles .art_list {
      width: 32%;
      margin-bottom: 32px;
      padding: 10px 30px 30px 30px;
      border-radius: 1rem;
      background: #ffffff;
      box-shadow: 0px 0px 25px rgba(195, 196, 204, 0.2);
      position: relative;
    }
    
    #mainArticles article a,
      #mainArticles .art_list a {
      color: #0072CE;
      font-weight: bold;
      width: 100%;
      height: 44px;
      margin: 0 auto;
      border-radius: 22px;
      display: flex;
        justify-content: center;
        align-items: center;
      text-align: center;
      border: 1px solid #0072CE;
      position: relative;
    }
    #mainArticles article a:after,
      #mainArticles .art_list a:after{
      position: absolute;
      content: '';
      right: 30px;
      width: 8px;
      height: 12px;
      display: inline-block;
      background-image: url(../img/function_next.svg);	
    }
  
  @media screen and (max-width: 750px) {
    #mainArticles {
      width: 100%;
      border-radius: 0rem;
    }
  }
  
   /* .メイン記事テキスト
   ---------------------------------------*/
  #mainArticles .title {
      font-size: 1.4rem;
      line-height: 1.4em;
      color: #181819;
      font-weight: bold;
      height: 80px;
      text-align: center;
        display: table-cell;
        vertical-align: middle;
  }
  
  #mainArticles .caption {
    margin: 10px 0;
  }
  
  
   /* .テキストスタイル
   ---------------------------------------*/
  @media screen and (max-width: 1024px) {
    #mainArticles {
      max-width: 860px;
    }
    #mainArticles .container {
      width: 90%;
      margin: 0 auto;
    }
    #mainArticles article,
    #mainArticles .art_list {
      width: 49%;
    }
  }
  
  @media screen and (max-width: 869px) {
    #mainArticles .container {
      width: 90%;
      margin: 0 auto;
    }
    #mainArticles article,
    #mainArticles .art_list {
      width: 100%;
    }
  }
  
  /* その他の便利な機能
    ============================================================ */
  
  #functionList {
    margin-top: 2px;
    width: 96%;
    max-width: 1700px;
    padding-top: 64px;
    margin: 0 auto;
    border-radius: 2rem;
    background-color: #EEF7FF;
    }
  
  #functionList .other {
    width: 100%;
    overflow: hidden;
    padding: 0 1.7rem 60px;
  }
  
  #functionList ul {
    width: 90%;
    margin: 0 auto;
  }
  
  #functionList li {
    width: 50%;
    height: 120px;
    display: block;
    float: left;
    padding: 0 20px;
  }
  
  #functionList img {
    width: 120px;
    margin-right: 20px;
    float: left;
  }
  
  #functionList .information {
    font-size: 1.2rem;
    height: 120px;
  }
  
  #functionList h3,
  #functionList .blue_title {
    text-align: left;
  }
  
  @media screen and (max-width: 1024px) {
    #functionList {
      max-width: 860px;
    }
    #functionList ul {
      width: 100%;
    }
    #functionList li {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
  @media screen and (max-width: 750px) {
    #functionList {
      width: 100%;
      border-radius: 0rem;
    }
    #functionList .other {
      padding: 0 0rem 2rem;
    }
    #functionList .information dd {
      font-size: 0.9rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    #functionList .other {
      padding: 0 0rem 2rem;
    }
    #functionList li {
      height: 80px;
    }
    #functionList img {
      width: 80px;
    }
  }
  
  /* アプリの新着情報
    ============================================================ */
  
  @media screen and (min-width: 751px) {
    #articles {
      margin-top: 60px;
      margin-bottom: 32px;
    }
    #mainArticles .container{
      display: flex;
      flex-wrap: wrap;
      grid-gap: 1%;
    }
    #articles #article_page-list {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      column-gap: 1%;
    }
  }
  @media screen and (max-width: 750px) {
    #articles {
      margin-top: 40px;
    }
  }
  #articles .container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto 0px;
  }
  
  #articles article .date,
  #articles .art_list .date {
    font-size: 15px;
    color: #0072CE;
    margin: 10px auto;
  }
  
  #articles article .title,
  #articles .art_list .title {
    font-size: 1.2rem;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #181819;
    max-height: 3.8em;
  }
  
  #articles #more a {
    /* add */
    padding-top: 0;
    background: none;
    
    display: block;
    width: 300px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    background-color: #0072CE;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
  }
  
 
  @media screen and (max-width: 750px) {
    #articles .sub-category {
      /* override */
      margin-bottom: 110px;
    }
    #articles .container {
      width: 100%;
      margin-bottom: 20px;
    }
    #articles article,
    #articles .art_list {
      width: 100%;
    }
    #articles article p.photo,
    #articles .art_list p.photo {
      width: 30%;
      margin-right: 20px;
    }
    #articles article .contents,
    #articles .art_list .contents {
      width: 100%;
    }
    #articles article .contents .date,
    #articles .art_list .contents .date {
      margin: 0;
      float: none;
      font-size: 1.1rem;
      color: #0072CE;
    }
    #articles article .contents:after,
    #articles .art_list .contents:after {
      display: block;
      content: "";
      clear: both;
    }
    #articles article .title,
    #articles .art_list .title {
      font-size: 1rem;
      max-height: 3em;
      -webkit-line-clamp: 2;
    }
    #articles .more {
      width: 100%;
    }
  }
  
  
  /* コンテンツフッター要素
    ============================================================ */
  
   /* .グレー背景
   ---------------------------------------*/
  .grbg {
    padding: 60px 2rem;
    background-image: url(../img/background.png);
    background-repeat: repeat-x;
    background-color: #F7F7F7;
    background-position: bottom;
  }
  
  /* よくあるご質問
    ============================================================ */
  #faq p {
    font-size: 1rem;
  }
  
  #qa {
    width: 100%;
    max-width: 996px;
    font-size: 16px;
    /* line-height: 24px; */
    margin: 0 auto;
    padding-bottom: 60px;
  }
  
  #qa .qablock{
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 2px;
  }
  
  #qa .q {
    width: 100%;
    padding: 20px;
    display: block;
  }
  
  #qa .a {
    width: 100%;
    padding: 20px;
  }
  
  #qa .oc_btn { 
    float: right;
    color: #0072CE;
  }
  
  #faq div.faq01 {
    margin: 0 auto;
    /*width: 1000px;*/
    width: 100%;
    text-align: left;
    border-bottom: 1px dashed #F3F4F4;
    font-size: 1rem;
    line-height: 2em;
  }
  
  #faq div.faq01 .q {
    min-height: 62px;
    /*padding: 32px 150px 32px 120px;*/
    padding: 20px 100px 20px 60px;
    line-height: 1.5em;
    background-image: url(../img/ico_q.png);
    background-repeat: no-repeat;
    /*background-position: 80px 31px;*/
    background-position: 20px 18px;
    font-weight: normal;
    position: relative;
    cursor: pointer; 
    color: #000;
  }
  
  #faq div.faq01 .q .oc_btn {
    /*width: 55px;*/
    height: 25px;
    line-height: 27px;
    text-align: right;
    padding: 0 35px 0 0;
    position: absolute;
    top: 20px;
    /*right: 80px;*/
    right: 20px;
    background-image: url(../img/ico_open.png);
    background-repeat: no-repeat;
    background-position: right top;
    font-size: 12px;
  }
  
  #faq div.faq01 div:hover.q .oc_btn {
    background-position: right bottom;
    color: #0072CE;
  }
  
  #faq div.faq01 div.a {
    display: none;
    /*padding: 32px 150px 32px 120px;*/
    padding: 20px 100px 20px 60px;
    background-image: url(../img/ico_a.png);
    background-repeat: no-repeat;
    /*background-position: 80px 31px;*/
    background-position: 20px 18px;}
  #faq div.faq01 div.a p.no_space { padding: 28px 0 0 0; }
  #faq div.faq01 div.a ul { padding: 28px 0 30px 0; }
  #faq div.faq01 div.a ul li {
    padding: 0 0 0 0;
    position: relative;
    *list-style-type: disc;
    *padding: 0;
  }
  
  #faq ul.caution {
    margin: 0 auto 0 auto;
    width: 775px;
    font-size: 12px;
    text-align: left;
    line-height: 2em;
  }
  
  .faq01 > a {
    display: block;
    margin: 46px auto 0;
    width: 300px;
    height: 50px;
    line-height: 50px;
    color: #000;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0.1em;
    background-image: url(../img/btn_link.png);
    background-repeat: no-repeat;
    background-position: left top;
  }
  
  #faq > a:hover { background-position: left bottom; }
  .faq01 p.memo {
    margin: 44px auto 0;
    font-size: 15px; }
  #faq p.memo_mini {
    margin: 11px auto 0;
    font-size: 10px; }
  
  
  /* シェアボタン
    ============================================================ */
  
  #share {
    overflow: hidden;
    padding-bottom: 60px;
    width: 200px;
    margin: 0 auto;
  }
  
  #share a {
    margin: 10px;
    float: left;
    display: block;
    width: 44px;
    height: 44px;
  }
  
  h3.share:before, h3.share:after,
  p.share:before, p.share:after{
    position: absolute;
    content: '';
    top: 15px;
    width: 18px;
    height: 27px;
    display: inline-block;
  }
  
  h3.share:before,
  p.share:before {
    margin-left: -20px;
    background-image: url(../img/share_backslash.svg);
  }
  
  h3.share:after,
  p.share:after {
    margin-left: 20px;
    background-image: url(../img/share_slash.svg);
  }
  
  /* スライダー
    ============================================================ */
  
  #slider .contents .text {
    margin-right: 0px;
    color : #999;
  }
    #slider {
      width: 1200px;
      margin: 20px auto 20px;
    }
    #slider:after {
      content: "";
      display: block;
      clear: both;
    }
    #slider > div {
      float: left;
      width: 588px !important;
      padding-bottom: 10px;
    }
    #slider .contents {
      width: 588px;
      display: flex;
      border-radius: 0.5rem;
      background-color: #f9f9f9;
    }
  
    #slider .photo {
      width: 294px;
      float: left;
      line-height: 0;
    }
  
    #slider .photo img {
      border-radius: 0.5rem 0rem 0rem 0.5rem;
    }
  
    #slider h1,
    #slider .slider_title {
      margin: 5px 0 2px;
      font-size: 16px;
      line-height: 25px;
      color: #181819;
      /* float: left; */
      font-weight: bold;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    #slider .cat {
        clear:both;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 14px;
      line-height: 15px;
      margin: 11px 10px 2px 0;
    }
    #slider .date {
      color: #0072CE;
      font-size: 13px;
      line-height: 15px;
      margin: 11px 0 2px;
    }
    #slider .text {
      width: 50%;
      padding: 20px;
    }
    #slider .caption {
      font-size: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  
  @media screen and (max-width: 1024px) {
    #slider {
      width: 588px;
    }
    #slider > div {
      width: 100%;
      float: unset;
    }
    #slider > div + div {
      width: 100%;
      float: unset;
    }
  }
  
  @media screen and (min-width: 751px) {
    #slider .date {
      float: unset;
    }
  }
  
  
  @media screen and (max-width: 750px) {
    #slider .photo img {
      border-radius: 0.5rem;
    }
    #slider .contents {
      width: 100%;
      padding: 20px;
      display: block;
    }
    #slider .photo {
      width: 80%;
      float: unset;
      margin: 0 auto;
    }
    #slider .caption {
      width: 100%:;
      float: unset;
    }
    #slider .date {
      float: unset;
      display: block;
    }
    #slider h1,
    #slider .slider_title {
      float: unset;
    }
    #slider .text {
      width: 100%;
    }
    #slider > div {
      width: 90vw !important;
      margin: 0 5px;
      float: unset;
    }
    #slider h1,
    #slider .slider_title {
      font-weight: bold;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  
  }
  
  
  /* メインイメージ
    ============================================================ */
  
  @media screen and (min-width: 751px) {
    nav.submenu {
      width: 100%;
      max-width: 1000px;
    }
    .submenu > * {
      max-width: 1000px;
      margin: auto;
    }
  }
.appdl li{ display:inline-block; }
.mainBox_title {
  position: absolute;
  text-indent: 9999999px;
  overflow: hidden;
  width: 0;
  height: 0;
}