:root {
  --vw: 1vw;
}

/*
@function cpv($num,$w: $pcW2){
    $num1: calc(floor(calc($num / 1440 * 10000)) / 100 * var(--vw));
	$num2: calc($num * 1px);
	@return min($num1,$num2);
}
*/
@media screen and (max-width: 750px) {
  .pc-only {
    display: none;
  }
}

@media print, screen and (min-width: 751px) {
  .sp-only {
    display: none;
  }
}

/* ---------------------------------------------------------
.contents-header
----------------------------------------------------------*/
.contents-header {
  position: relative;
  padding-bottom: 40px;
  margin-top: 12px;
}
.contents-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100 * var(--vw));
  height: 100%;
  background-color: rgb(247, 245, 244);
  mix-blend-mode: multiply;
  pointer-events: none;
  margin-left: calc(-50 * var(--vw));
}
@media screen and (max-width: 750px) {
  .contents-header {
    padding-bottom: 40px;
    margin-top: 12px;
  }
}
.contents-header .main_ttl {
  padding-top: 40px;
  padding-bottom: 0;
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .contents-header .main_ttl {
    padding-top: 39px;
    margin-bottom: 34px;
  }
}

.local-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
  max-width: 950px;
  background-color: #fff;
  padding: 20px;
  margin: 0 auto;
  border-radius: 3px;
}
@media screen and (max-width: 750px) {
  .local-nav {
    gap: 0 13px;
    padding: 10px 10px;
    margin: 0 10px;
  }
}
.local-nav a {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #fff;
  background-color: #1F8703;
  border-radius: 3px;
  padding: 8px 10px;
}
@media print, screen and (min-width: 751px) {
  .local-nav a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .local-nav a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 750px) {
  .local-nav a {
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    display: block;
    text-align: center;
    line-height: 1.25;
    padding: 22px 2px 23px;
  }
}
.local-nav .link-prev a::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_arrow_green.svg) no-repeat;
  background-size: contain;
  background-image: url(../img/common/ico_arrow_white.svg);
  content: "";
  margin: 2px 5px 0 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 750px) {
  .local-nav .link-prev a::before {
    content: none;
  }
}
@media screen and (max-width: 750px) {
  .local-nav .link-prev a::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1/1;
    background: url(../img/common/ico_arrow_green.svg) no-repeat;
    background-size: contain;
    background-image: url(../img/common/ico_arrow_white.svg);
    content: "";
    margin: 7px auto 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.local-nav .link-index a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_arrow_green.svg) no-repeat;
  background-size: contain;
  background-image: url(../img/common/ico_arrow_white.svg);
  content: "";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin: 2px 0 0 5px;
}
@media screen and (max-width: 750px) {
  .local-nav .link-index a::after {
    margin: 7px auto 0;
  }
}
.local-nav .link-next a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_arrow_green.svg) no-repeat;
  background-size: contain;
  background-image: url(../img/common/ico_arrow_white.svg);
  content: "";
  margin: 2px 0 0 5px;
}
@media screen and (max-width: 750px) {
  .local-nav .link-next a::after {
    margin: 7px auto 0;
  }
}

.local-nav-fixed {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: #F7F5F4;
  padding: 15px 10px;
  z-index: 5;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.local-nav-fixed.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
  .local-nav-fixed {
    top: 63px;
  }
}
@media screen and (max-width: 750px) {
  .local-nav-fixed {
    top: 63px;
    padding: 10px;
  }
}
.local-nav-fixed .local-nav {
  padding: 10px 20px;
}
@media screen and (max-width: 750px) {
  .local-nav-fixed .local-nav {
    padding: 10px;
    margin: 0;
  }
}
.local-nav-fixed .local-nav a {
  font-size: 1.4rem;
  padding: 4px 10px;
}
@media screen and (max-width: 750px) {
  .local-nav-fixed .local-nav a {
    font-size: 1.3rem;
    line-height: 1.2307692308;
    padding: 7px 10px;
  }
}
.local-nav-fixed .local-nav a::before, .local-nav-fixed .local-nav a::after {
  width: 12px;
}
@media screen and (max-width: 750px) {
  .local-nav-fixed .local-nav a::before, .local-nav-fixed .local-nav a::after {
    width: 14px;
  }
}

/* ---------------------------------------------------------
article section
----------------------------------------------------------*/
article section {
  display: grid;
  grid-template-columns: 0.4836956522fr 0.5163043478fr;
  gap: 0 30px;
  padding-top: 37px;
}
@media screen and (max-width: 750px) {
  article section {
    display: block;
    width: calc(91.02 * var(--vw));
    grid-template-columns: 1fr;
    margin: 0 auto;
    padding-top: 27px;
  }
}
article section.reverse {
  grid-template-columns: 0.5163043478fr 0.4836956522fr;
}
article section.reverse .txt-col {
  grid-row: 1;
  grid-column: 2;
}
article section.reverse .pic {
  grid-row: 1;
  grid-column: 1;
}
article section .pic {
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  article section .pic {
    padding-top: 0;
    margin-top: 18px;
  }
}
article section .pic img {
  width: 100%;
  height: auto;
}
article section .subttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: normal;
  padding-top: 2px;
}
@media screen and (max-width: 750px) {
  article section .subttl {
    font-size: 1.8rem;
  }
}
article section .txt {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.7142857143;
  margin-top: 16px;
}
@media screen and (max-width: 750px) {
  article section .txt {
    font-size: 1.3rem;
    line-height: 1.8461538462;
    margin-top: 16px;
  }
}
article .sec-intro {
  padding-top: 37px;
  margin-bottom: 57px;
}
@media screen and (max-width: 750px) {
  article .sec-intro {
    display: grid;
    margin-top: 36px;
    margin-bottom: 0;
  }
}
article .sec-intro .pic {
  padding-top: 3px;
}
@media screen and (max-width: 750px) {
  article .sec-intro .pic {
    grid-row: 3;
    padding-top: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  article .sec-intro .txt-col {
    display: contents;
  }
}
article .sec-intro .txt-intro {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7777777778;
  letter-spacing: normal;
}
@media screen and (max-width: 750px) {
  article .sec-intro .txt-intro {
    grid-row: 1;
    font-size: 1.6rem;
    line-height: 2;
  }
}
article .sec-intro .ttl {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.6875;
  letter-spacing: normal;
  margin-top: 13px;
}
@media screen and (max-width: 750px) {
  article .sec-intro .ttl {
    grid-row: 2;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.3846153846;
    margin-top: 17px;
  }
}
article .sec-intro .txt {
  margin-top: 24px;
}
@media screen and (max-width: 750px) {
  article .sec-intro .txt {
    grid-row: 4;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-top: 18px;
  }
}
article .sec-intro .post-area-list,
article .sec-intro .post-cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 750px) {
  article .sec-intro .post-area-list,
  article .sec-intro .post-cat-list {
    grid-row: 5;
  }
}
article .sec-intro .post-area-list li,
article .sec-intro .post-cat-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 80px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  min-height: 24px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: normal;
  background-color: #F2F4F6;
  padding: 2px 10px 1px;
  border: 1px solid #707070;
}
article .sec-intro .post-area-list {
  margin-top: 28px;
}
@media screen and (max-width: 750px) {
  article .sec-intro .post-area-list {
    margin-top: 18px;
  }
}
article .sec-intro .post-area-list li {
  background-color: #E7E8D4;
}
article .sec-intro .post-cat-list {
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  article .sec-intro .post-cat-list {
    grid-row: 6;
  }
}

.page-link {
  display: none;
}
@media screen and (max-width: 750px) {
  .page-link {
    display: block;
    width: calc(91.02 * var(--vw));
    background-color: #1F8703;
    padding: 21px 20px 19px;
    margin: 40px auto 37px;
    border-radius: 3px;
  }
  .page-link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px 0;
  }
  .page-link a {
    display: block;
    font-size: 1.2rem;
    letter-spacing: normal;
    line-height: 1.4;
    color: #fff;
    text-decoration: underline;
  }
  .page-link a::after {
    display: block;
    width: 15px;
    aspect-ratio: 1/1;
    background: url(../img/common/ico_pagelink.svg) no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
  }
}

/* ---------------------------------------------------------
.bottom-contents
----------------------------------------------------------*/
.bottom-contents {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 60px;
}
.bottom-contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100 * var(--vw));
  height: 100%;
  background-color: rgb(247, 245, 244);
  mix-blend-mode: multiply;
  pointer-events: none;
  margin-left: calc(-50 * var(--vw));
}
@media screen and (max-width: 750px) {
  .bottom-contents {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
  }
}
.bottom-contents .ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .bottom-contents .ttl {
    line-height: 1.25;
    letter-spacing: normal;
  }
}
.bottom-contents .ttl .txt-en {
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: normal;
  margin-top: 14px;
}
@media screen and (max-width: 750px) {
  .bottom-contents .ttl .txt-en {
    margin-top: 10px;
  }
}
.bottom-contents .ttl::after {
  content: "";
  display: block;
  width: 302px;
  height: 5px;
  background-color: #1F8703;
  margin: 13px auto 0;
}
@media screen and (max-width: 750px) {
  .bottom-contents .ttl::after {
    width: 250px;
    margin-top: 20px;
  }
}

/* ---------------------------------------------------------
.sec-member
----------------------------------------------------------*/
.sec-member {
  position: relative;
  background-color: #fff;
  padding: 36px 30px 30px;
  border-radius: 3px;
}
.sec-member.is-hide {
  display: none;
}
@media screen and (max-width: 750px) {
  .sec-member {
    width: calc(91.02 * var(--vw));
    padding: 40px 17px 38px;
    margin: 0 auto;
  }
}
.sec-member .member-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .sec-member .member-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 751px) {
  .sec-member a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .sec-member a:hover {
    opacity: 0.8;
  }
}
.sec-member a .member-ttl:after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_arrow_green.svg) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  margin-left: 5px;
}
.sec-member .member-pic {
  border-radius: 50%;
  overflow: hidden;
}
.sec-member .member-ttl {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .sec-member .member-ttl {
    margin-top: 10px;
  }
}
.sec-member .member-txt {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.4285714286;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .sec-member .member-txt {
    line-height: 1.7142857143;
    margin-top: 8px;
  }
}

/* ---------------------------------------------------------
.wrapper-col2
----------------------------------------------------------*/
.wrapper-col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .wrapper-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.wrapper-col2.is-wide {
  grid-template-columns: 1fr;
}
.wrapper-col2 section {
  position: relative;
  background-color: #fff;
  padding: 36px 30px 30px;
  border-radius: 3px;
}
.wrapper-col2 section.is-hide {
  display: none;
}
@media screen and (max-width: 750px) {
  .wrapper-col2 section {
    width: calc(91.02 * var(--vw));
    padding: 39px 13px 40px 12px;
    margin: 0 auto;
  }
}
.wrapper-col2 .project-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .wrapper-col2 .project-list {
    margin-top: 40px;
  }
}
.wrapper-col2 .project-list > li {
  border-bottom: 1px solid #B7B7B7;
}
.wrapper-col2 .project-list > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.wrapper-col2 .project-list .txt-col {
  width: 100%;
}
.wrapper-col2 .project-list .area-list,
.wrapper-col2 .project-list .cat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  width: 262px;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .wrapper-col2 .project-list .area-list,
  .wrapper-col2 .project-list .cat-list {
    width: 100%;
    gap: 5px 6px;
    margin-top: 10px;
  }
}
.wrapper-col2 .project-list .cat-list {
  margin-top: 5px;
  margin-bottom: 15px;
}
.wrapper-col2 .project-list .area-list + .cat-list {
  margin-top: -10px;
}
.wrapper-col2 .project-list .area-item,
.wrapper-col2 .project-list .cat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.4;
  text-align: center;
  color: #2F2F2F;
  background-color: #F2F4F6;
  padding: 4px 2px 4px;
  border: 1px solid #707070;
}
.wrapper-col2 .project-list .area-item {
  background-color: #E7E8D4;
}
.wrapper-col2 .project-list a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 15px;
}
@media print, screen and (min-width: 751px) {
  .wrapper-col2 .project-list a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .wrapper-col2 .project-list a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 750px) {
  .wrapper-col2 .project-list a {
    gap: 0 10px;
  }
}
.wrapper-col2 .project-list .project-pic {
  position: relative;
  width: 120px;
  aspect-ratio: 1/1;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .wrapper-col2 .project-list .project-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 77px;
  }
}
.wrapper-col2 .project-list .project-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper-col2 .project-list .project-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .wrapper-col2 .project-list .project-ttl {
    min-height: 77px;
    font-size: 1.5rem;
    line-height: 1.6;
    padding-right: 24px;
    margin-left: 87px;
  }
}
.wrapper-col2 .project-list .project-ttl:after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_arrow_green.svg) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  margin-left: 5px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (max-width: 750px) {
  .wrapper-col2 .project-list .project-ttl:after {
    position: absolute;
    top: 6px;
    right: 0;
    margin: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.wrapper-col2 .project-list .project-txt {
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.4285714286;
  margin-top: 10px;
  margin-bottom: 13px;
}
@media screen and (max-width: 750px) {
  .wrapper-col2 .project-list .project-txt {
    font-size: 1.3rem;
    line-height: 1.8461538462;
    margin-top: 6px;
  }
}
