@charset "UTF-8";
/* about */
.about {
  margin: 0 0 8% 0; }
  .about-ttl {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 1% 0; }
    .about-ttl:before {
      content: "●";
      color: #256f45; }
  .about-img {
    margin: 0 0 2% 0; }

@media screen and (max-width: 768px) {
  .about {
    margin: 0 0 8% 0; }
    .about-ttl {
      font-size: 16px;
      font-weight: bold;
      margin: 0 0 1% 0; }
    .about-img {
      margin: 0 0 4% 0; }
    .about-copy {
      margin: 0 0 4% 0; } }

/* detail */
.detail-ttl {
  font-weight: bold;
  font-size: 20px;
  background-color: rgba(37, 111, 69, 0.1);
  color: #256f45;
  text-align: center;
  padding: 10px 0;
  line-height: 1em;
  margin: 0 0 3% 0; }

.detail-list-item {
  margin: 0 0 4% 0; }

.detail-list-ttl {
  font-size: 20px;
  font-weight: bold;
  color: #256f45; }

@media screen and (max-width: 768px) {
  .detail {
    margin: 0 0 7% 0; }
    .detail-ttl {
      font-size: 16px;
      padding: 14px 0;
      margin: 0 0 4% 0; }
    .detail-list-item {
      margin: 0 0 4% 0; }
    .detail-list-ttl {
      font-size: 16px; } }

/* cemetery */
.cemetery {
  background-color: rgba(37, 111, 69, 0.1);
  padding: 30px 38px;
  margin: 0 0 7% 0; }
  .cemetery-ttl {
    font-size: 20px;
    font-weight: bold;
    color: #256f45;
    text-align: center;
    margin: 0 0 3% 0; }
  .cemetery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .cemetery-list-item {
      width: 32%;
      padding: 19px;
      background-color: #fff;
      margin: 0 0 2% 0; }
    .cemetery-list-img {
      line-height: 0;
      margin: 0 0 10% 0; }
    .cemetery-list-name {
      line-height: 1em;
      font-size: 16px;
      font-weight: bold;
      color: #256f45;
      text-align: center; }

@media screen and (max-width: 768px) {
  .cemetery {
    padding: 4% 0;
    margin: 0 0 7% 0; }
    .cemetery-ttl {
      font-size: 16px;
      margin: 0 0 3% 0; }
    .cemetery-list-item {
      width: 48%;
      padding: 4%;
      margin: 0 0 4% 0; }
    .cemetery-list-img {
      line-height: 0;
      margin: 0 0 10% 0; }
    .cemetery-list-name {
      line-height: 1em;
      font-size: 16px;
      font-weight: bold;
      color: #256f45;
      text-align: center; } }

/* btn */
.back-btn {
  border: 2px solid #256f45;
  padding: 10px 0;
  text-align: center;
  width: 94%;
  display: block;
  position: relative;
  margin: 0 auto; }
  .back-btn .-txt {
    color: #256f45;
    font-weight: bold;
    font-size: 16px;
    transition: 0.5s; }
  .back-btn:before {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #256f45;
    border-left: 2px solid #256f45;
    transform: rotate(-45deg);
    left: 15px;
    top: 50%;
    margin: -5px 0 0 0;
    transition: 0.5s; }
  .back-btn:hover {
    background-color: #256f45; }
    .back-btn:hover .-txt {
      color: #fff; }
    .back-btn:hover:before {
      border-color: #fff; }
