@charset 'utf-8';

/* ==========================================================================

	ページ名

   ========================================================================== */


/*--------------------------------
	基本レイアウト
--------------------------------*/

/* マップ */

.map {
  position: relative;
}
.map img {
  display: block;
  width: 100%;
  height: 100%;
}
.map p {
    line-height: 2;
    position: absolute;
    top:0;
    left:0;
    z-index:2;
}
.map span {
  display: block;
  width: 2.34vw;
  height: 2.34vw;
  max-width: 30px;
  /* min-width: 20px; */
  max-height: 30px;
  /* min-height: 20px; */
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  top:50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.map span a {
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 813px) {
  .map span:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
    transform: translate(-50%, -50%) scale(1.2);
    filter: saturate(200%);
  }
}

@media only screen and (max-width: 812px) {
  .map {
    margin-top: 1.5em;
  }
  .map p {
    top:-4.5em;
  }
  .map span {
    /* width: 10px;
    height: 10px; */
    min-width: 10px;
    min-height: 10px
  }
}

/* リスト */

.project_list {
    margin: 8em auto;
}

.project_list ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.project_list ul li {
    width:30.66666%;
    margin:0 4% 3vw 0;
    padding-top: 3vw;
}

.project_list ul li:nth-child(3n) {
    margin-right:0;
}

.project_list ul li h3 {
    margin: 0 auto 2em;
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
}

.project_list ul li h3 span {
    display: inline-block;
    position: relative;
}

.project_list ul li h3 span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    display: block;
    width: 100%;
    height: 4px;
    background: #74AE74;
}

.project_list ul li strong {
    display: block;
    margin: 2em auto 1em;
}

.project_list ul li p {
    margin-bottom: 2em;
    line-height: 1.6;
    font-size: 1.6rem;
    font-size: min(1.6rem,16px);
}

.project_list ul li em {
    display: block;
    margin: .5em auto 0;
    font-weight: 700;
    color: #74AE74;
}

.project_list ul li em svg {
    width:22px;
    height:22px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top:-2px;
    margin: 0 5px;
    fill:#74AE74;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;
}

@media only screen and (min-width: 813px) {
    .project_list ul li em a:hover,
    .project_list ul li em a:active {
        color:#000;
    }

    .project_list ul li em a:hover svg {
        -webkit-transform:translate3d(3px, 0, 0);
        transform:translate3d(3px, 0, 0);
        fill:#000;
    }
}

@media only screen and (max-width: 812px) {

    .project_list {
        margin: 5em auto;
    }

    .project_list ul {
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .project_list ul li {
        width:100%;
        margin:0 auto 2rem;
        padding-top: 4rem;
    }

    .project_list ul li:last-of-type {
        margin-bottom: 0;
    }

    .project_list ul li h3 {
        margin: 0 auto 2em;
        text-align: center;
        font-weight: 700;
    }

    .project_list ul li p {
        font-size: 1.4rem;
        font-size: min(1.4rem,14px);
    }

    .project_list ul li em {
        font-size: 1.4rem;
        font-size: min(1.4rem,14px);
    }

}

