@media screen and (max-width: 650px) {
  body {
    margin: 0;
    padding: 0;
  }

  p {
    margin-bottom: 6px;
    margin-top: 6px;
  }

  .pc-only {
    display: none;
  }

  .main {
    display: block;
    margin: 0 auto 32px;
    /* グローバルナビスペース */
    margin-top: 54px;
    position: relative;
    width: auto;
  }

  .nowarp {
    white-space: nowrap;
  }

  .text-center {
    text-align: center;
  }

  .title-area {
    background: #CFD8DC no-repeat center center;
    background-size: cover;
    height: 250px;
    margin: 0 auto;
    width: 100%;
  }

  /* .title-area p {
    color: #FAFAFA;
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin: auto 0;
    position: relative;
    text-align: center;
    top: 109px;
  } */

  .breadcrumbs-area {
    background-color: #343b67;
    margin: 0;
    opacity: 0.5;
    width: auto;
    /* white-space: nowrap; */
  }

  .breadcrumbs {
    color: #FAFAFA;
    font-size: 12px;
    margin-left: 10px;
    padding: 3px 0;
  }

  .breadcrumbs a:nth-of-type(n+2)::before {
    background-image: url("/img/keyboard_arrow_right_grey.png");
    background-size: contain;
    content: "";
    display: inline-block;
    height: 14px;
    margin-left: 4px;
    margin-right: 8px;
    vertical-align: sub;
    width: 14px;
  }

  .content-area {
    display: block;
    margin: 0 auto;
    width: auto;
  }

  .contents {
    margin: 8px;
  }

  .contents .title {
    color: #000856;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    height: 28px;
    letter-spacing: 1px;
    margin: 8px 0;
    opacity: 0.8;
    width: auto;
  }

  .contents .title::before {
    background-color: #000856;
    border-radius: 2px;
    content: "";
    display: inline-block;
    height: 18px;
    left: 0;
    margin-right: 12px;
    position: relative;
    top: 5px;
    vertical-align: top;
    width: 4px;
  }

  /* 表スタイル */
  .contents dl.table {
    background: #F5F5F5;
    border-bottom: 1px solid #CCC;
    border-left: 1px solid #CCC;
    clear: right;
  }

  .contents dl.table>dd {
    background: #FEFEFE;
    padding: 6px 10px;
  }

  .contents dl.table>dt {
    border-top: 1px solid #CCC;
    clear: left;
    float: left;
    padding: 6px 0 0px 4px;
    width: 25%;
  }

  .contents dl.table>dt + dd {
    border-top: 1px solid #CCC;
  }

  .contents dl.table>dd:after {
      clear: both;
      content: "";
      display: block;
      text-align: left;
  }

  /* 拡大率変更時に枠線が消えないための処置 */
  .contents dl.table>dd {
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    margin-left: calc(25% + 4px);
  }
  .contents dl.table>dd:last-of-type {
    margin-bottom: -1px;
    border-bottom: 1px solid #CCC;
  }

  /* シンプルリストスタイル */
  .contents dl.simple-list>dd {
    margin-left: 16px;
    margin-top: 2px;
  }

  .contents dl.simple-list>dd + dt {
    margin-top: 18px;
  }

  /* 順序リストスタイル */
  .contents dl.ol-list>dt {
    counter-increment : ol;
  }

  .contents dl.ol-list>dt::before {
    content: "(" counter(ol) ")";
    margin-right: 8px;
  }

  .contents dl.ol-list>dd {
    margin-left: 0;
    margin-top: 6px;
  }

  .contents dl.ol-list>dd + dt {
    margin-top: 24px;
  }

  /* コロンセパレートスタイル */
  .contents dl.colon-separate-list {
    margin-bottom: 0;
    margin-top: 6px;
  }

  .contents dl.colon-separate-list>dt {
    padding-bottom: 4px;
  }

  .contents dl.colon-separate-list>dt::after {
    content: "：";
  }

  .contents dl.colon-separate-list>dd {
    margin-left: 16px;
    padding-bottom: 16px;
  }

  /* テーブルスタイルの中のリストスタイル系 */
  .contents dl.table dl.simple-list {
    margin-top: 0;
  }

  .contents dl.table dl.ol-list {
    margin-top: 0;
  }

  .contents .btn-square-pop {
    position: relative;
    display: inline-block;
    padding: 0.5em 0.5em;
    text-decoration: none;
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    font-weight: bold;
    width:200px;
  }

  .btn-square-pop:active {
    border-bottom: solid 2px #F0F4C3;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
  }

  .contents .btn-square-pop.green {
    color: #C0CA33;
    background: #F0F4C3;/*背景色*/
    border-bottom: solid 2px #C0CA33;/*少し濃い目の色に*/
  }

  .contents .btn-square-pop.green:hover {
    color: #DCE775;
    background: #F3FFD8;/*背景色*/
    border-bottom: solid 2px #C0CA33;/*少し濃い目の色に*/
    cursor : pointer;
  }

  .contents .btn-square-pop.red {
    color: #FB8C00;
    background: #FFE0B2;/*背景色*/
    border-bottom: solid 2px #FFB74D;/*少し濃い目の色に*/
  }

  .contents .btn-square-pop.red:hover {
    color: #FFE0B2;
    background: #FFEFD5;/*背景色*/
    border-bottom: solid 2px #FFC7AF;/*少し濃い目の色に*/
    cursor : pointer;
  }

  .contents .simple-button {
    font-size: 26px;
    padding: 26px 16px;
    text-align: center;
  }

  .contents .image {
    display: block;
    margin: 0 auto;
  }

  .contents .image img {
    display: block;
    margin: 0 auto;
    max-width: 260px;
    width: 100%;
  }

  .footer {
    font-size: 10px;
    font-weight: 100;
    margin: 0 auto;
    text-align: center;
    width: auto;
  }
}
