@charset "UTF-8";
/*
ヒラギノの代替（基本フォントはこれ）
https://fonts.google.com/noto/specimen/Noto+Sans+JP?subset=japanese&query=noto+sans
Regular 400
Medium 500
Bold 700
 */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;900&family=Noto+Sans+JP:wght@400;500;700&family=Oswald:wght@400;600;700&display=swap");
.title-icon {
  font-size: 2.2rem;
  font-weight: bold;
  padding-left: 2.5em;
  position: relative;
  line-height: 1.5;
}
.title-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
}
.title-icon.high:before {
  background: url(../../assets/images/icon_high_pressure.png) no-repeat center center;
  background-size: contain;
}
.title-icon.low:before {
  background: url(../../assets/images/icon_low_pressure.png) no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .title-icon {
    font-size: 1.6rem;
  }
  .title-icon:before {
    width: 25px;
    height: 25px;
  }
}

/*---------230630追記----------*/
.mitsumori-btn{
  display: flex;
  margin-top: 2rem;
  gap: 0 2%;
  justify-content: center;
}

.mitsumori-btn li{
  min-width: 35%;
}

.mitsumori-btn li img{
  max-width: 14%;
}

.mitsumori-btn li a{
  display: flex;
  border: 5px solid #a37500;
  color: #000;
  font-weight: bold;
  align-items: center;
  gap: 0 6%;
  padding: 0.6rem 2rem;
  background-color: #fff;
  text-decoration: none;
}

.mitsumori-btn li a:hover{
  background-color: #fff;
  opacity: 0.4;
  transition: opacity .2s;
}

.mitsumori-btn li a img{
  flex: 0 0 24%;
}

.mitsumori-btn li a p{
  flex: 0 0 70%;
  text-align: center;
}

.mitsumori-btn li:last-of-type{
  margin-right: 0;
}

@media only screen and (max-width: 767px){
  .btns .btn{
    padding: 1.8rem 3rem 1.8rem 3rem;
  }

  .mitsumori-btn{
    display: block;
  }

  .mitsumori-btn li{
    margin-bottom: 1rem;
  }

  .mitsumori-btn li:last-of-type{
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1120px){
  .mitsumori-btn li{
    flex: 0 0 49%;
  }
}