@charset "utf-8";

/* -------------------------
mobile layout
------------------------- */
@media screen and (max-width: 768px) {

  /* 480px以下用（スマートフォン用）の記述 */
  /* -------
common
------- */
  .hidden-sp {
    display: none;
  }

  img {
    width: 100%;
    height: auto;
  }

  /* -------
header
------- */
  .logo {
    text-align: center;
  }

  /* -------
container
------- */
  #container .inner {
    padding: 10px;
  }

  .button-1 {
    text-align: center;
  }

  .button-1 a {
    width: 90%;
    display: block;
    font-size: 1.2rem;
    background: #b8b8b8;
    color: #fff;
    padding: 14px 10px;
    margin: 0 auto;
  }

  /*section*/

  .section-1 .inner {
    width: 88%;
    margin: 0 auto;
    text-align: left;
  }

  .section-2 .items ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .section-2 .items li {
    width: 24%;
  }

  .section-2 .items li img {
    width: 96%;
  }

  .section-3 h3 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .section-3 h3::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 60px;
    height: 40px;
    background: url("../img/style.jpg") no-repeat right top;
    background-size: contain;
    margin-bottom: -20px;
    margin-left: 5px;
  }


  /*-----------
	column layout
----------- */

  .column-2 li:first-child {
    width: 88%;
    margin: 0 auto;
  }

  .column-2 li:first-child p {
    font-size: 1.3rem;
  }

  /*-- column 1 --*/
  .column-m1 {
    display: block;
  }

  .column-m1 li {
    width: 100%;
    margin-bottom: 5px;
  }

  /*-- column 2 --*/
  .column-m2 {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
  }

  .column-m2 li {
    width: 48%;
    margin-bottom: 5px;
  }
}

/*-- close --*/
