@charset "UTF-8";


/*テキストはPCではセンター寄せ、SPでは左寄せ*/
.cnt-lft {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cnt-lft {
    text-align: left;
  }
}


/*グレーの角ボタン*/
.btn_glay {
  display: block;
  background: #666;
  padding: 10px;
  text-align: center;
  width: 200px;
  box-sizing: border-box;
  color: #fff !important;
  text-decoration: none;
  margin: 0 auto;
}

.btn_glay:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*グレーの枠線*/
.waku-1px {
  border: solid 1px #ccc;
}

/* PC4列SP2列 SPの時文字サイズ小*/
*, *:before, *:after {
  box-sizing: border-box;
}

.col_4 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col_4>div {
  width: 24%;
  padding: 10px;
  text-align: center;
  line-height: 1.6;
  background-color: #fff;
}

.col_4>div img {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .col_4>div {
    width: 48%;
    line-height: 1.3;
    margin-bottom: 1em;
    font-size: 0.85em;
  }
}

/* PC3列SP1列 */
*, *:before, *:after {
  box-sizing: border-box;
}

.col_3-1 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
}

.col_3-1>div {
  width: 33.33333%;
  padding: 10px;
  text-align: center;
  line-height: 1.6;
}

.col_3-1>div img {
  margin-bottom: 10px;
}

/*PC3列SP1列：　768px未満のとき1つ並び*/
@media screen and (max-width: 768px) {
  .col_3-1>div {
    width: 100%;
    line-height: 1.3;
  }

  .col_3-1 div.text b {
    font-size: 1.35em;
    /*SPの時だけ文字大きめ*/
  }
}

/* PC2列SP2列 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

.col_2 {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.col_2>div {
  width: 48%;
  padding: 10px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 2em;
}

.col_2>div img {
  margin-bottom: 10px;
}

/*PC2列SP2列：　768px未満のとき2つ並び*/
@media screen and (max-width: 768px) {
  .col_2 {
    width: 100%;
  }

  .col_2>div {
    width: 48%;
    line-height: 1.3;
    margin-bottom: 1em;
  }
}

#item-detail .block:nth-child(even) {
    flex-direction: row !important;
}


/*お知らせページのフォントサイズ調整*/
.news-detail p {
    font-size:16px;
}

@media (max-width: 767px) {
.news-detail p  {
        font-size: 16px;
    }
}


/*PCの時、電話をかけない*/
@media screen and (min-width: 768px){
a[href*="tel:"] {
  color: #1b1b1b;
  text-decoration: none !important;
  pointer-events: none; /*①アンカーのtelを無効化*/
  cursor: default; /*②アンカーのポインターをデフォルトにする*/
  }
}
