@charset "UTF-8";
body {
  font-family: myriad-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

a {
  color: #000;
  text-decoration-line: none;
}

a:hover {
  opacity: 0.5;
}

ul li {
  list-style: none;
}

h1 {
  display: inline-block;
  position: relative;
}

h1:before {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 2px;
  transform: translate(-50%);
  background-color: #38a52e;
}

/* 共通クラス */
@media screen and (min-width: 481px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
}
.container {
  width: 1080px;
  margin: 0 auto;
}

.flexbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.more {
  text-align: right;
  margin-top: 5px;
  margin-right: 5px;
}

.sec-ttl {
  font-size: 1.5em;
  font-weight: bold;
}

div.sec-ttl {
  margin-bottom: 10px;
}

#sidebar {
  display: inline-block;
}
#sidebar article {
  background-color: #FAFAFA;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}
#sidebar article .tel .telNo a {
  font-size: 1.5em;
  font-weight: bold;
  color: #38a52e;
}
#sidebar article .mail {
  width: 300px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
  background-color: #38a52e;
}
#sidebar article .mail a {
  color: #fff;
  margin: 10px 0;
}

/* スマホ */