@charset "UTF-8";
body {
  color: #141414;
  letter-spacing: 3px;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
}

body img {
  border-radius: 10px;
}

body a {
  text-decoration: none;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 10px #b6d7d9;
  overflow: auto;
  overflow-x: hidden;
}

.wrapper::-webkit-scrollbar {
  display: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 100%;
}

@media (max-width: 767px) {
  .container {
    padding: 0 3rem;
  }
}

.inner {
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .inner {
    margin-top: 6rem;
  }
}

.br_pc {
  display: block;
}

@media (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

/*-----------------------
			heading
------------------------*/
.heading1 {
  font-size: 3.5rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .heading1 {
    font-size: 3rem;
  }
}

.heading1-span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}

.heading2 {
  position: absolute;
  top: 70%;
  left: 0;
  padding: 1rem;
  width: 26rem;
  font-size: 2rem;
  font-weight: 600;
  background: #fff;
}

@media (max-width: 767px) {
  .heading2 {
    top: 70%;
    left: 0;
    width: 22rem;
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  .heading2 {
    width: 26rem;
    padding: 1rem 1rem 1rem 1.5rem;
    font-size: 3rem;
  }
}

.heading2-span {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .heading2-span {
    font-size: 1.3rem;
  }
}

.heading3 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
}

.heading3-span {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
}

.about-h3 {
  margin: -10rem 0 3rem;
}

.heading4 {
  margin-bottom: 6rem;
  border-bottom: solid 1px #eaf3f4;
  font-size: 2.6rem;
  font-weight: 700;
  color: #141414;
}

/*-----------------------
			fadeUp
------------------------*/
/*-----------------------
			global-header
------------------------*/
.global-header {
  padding: 6rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .global-header {
    padding: 1.5rem 0;
  }
}

@media (max-width: 767px) {
  .global-header .global-nav {
    display: none;
  }
}

.global-header .global-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.global-header .global-nav-list-item {
  margin-right: 2rem;
}

.global-header .global-nav-list-item:last-child {
  margin-right: 0;
}

.global-header .global-nav-link {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  text-decoration: none;
}

.global-header .global-nav-link::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.global-header .global-nav-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*-----------------------
			main-visual
------------------------*/
.main-visual {
  position: relative;
}

picture {
  width: 100%;
  height: auto;
}

/*-----------------------
			slide
------------------------*/
/* ボタン 
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0,0,0,0.5);
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
*/
/* インジケーター */
.indicators {
  text-align: center;
  margin-top: 20px;
}

.indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.active {
  background-color: #717171;
}



/*-----------------------
			works
------------------------*/
.works .works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (min-width: 1200px) {
  .works .works-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.works .works-list::after {
  display: block;
  content: "";
  width: 350px;
}

.works .works-list-item {
  margin-bottom: 7rem;
  padding: 1.5rem;
}

.works .works-list-item:hover {
  opacity: .5;
  border-radius: 10px;
}

.works .works-list-item img {
  width: 300px;
  height: auto;
}

@media (max-width: 767px) {
  .works .works-list-item img {
    width: 100%;
    height: auto;
  }
}

.works .works-title {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}

.works button {
  width: 100%;
  margin-top: 2rem;
  padding: 0.6rem 0;
  background: rgba(182, 215, 217, 0.3);
  color: #141414;
}

.works .button-arrow {
  position: relative;
  padding-right: 10px;
}

.works .button-arrow::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: solid 4px transparent;
  border-left: solid 6px #141414;
  top: 50%;
  right: -10px;
  margin-top: -4px;
}

/*-----------------------
			about
------------------------*/
#about {
  display: block;
  padding-top: 20px;
  margin-top: -20px;
}

.about .overwidth {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.about .details-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .about .details-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .about .details-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 4rem 0;
  }
}

.about .details-block-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about .about-img {
  width: 80%;
  height: auto;
  padding: 0.5rem;
  background-color: #fff;
}

.about .about-def {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .about .about-def {
    margin: 0;
  }
}

.about .about-def-title {
  padding: 1rem 0.5rem;
  width: 20%;
  font-size: 1.8rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .about .about-def-title {
    width: 30%;
    font-size: 1.6rem;
  }
}

.about .about-def-dd {
  padding: 1rem 0.5rem;
  width: 80%;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .about .about-def-dd {
    width: 70%;
    font-size: 1.6rem;
  }
}

.about .details-block-txt {
  margin: 2rem 0 0;
  border-left: none;
  line-height: 2;
}

.about .about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .about .about-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.about .about-list::after {
  display: block;
  content: "";
  width: 30%;
}

.about .about-list-item {
  margin-top: 2rem;
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  background: #fff;
}

@media (min-width: 992px) {
  .about .about-list-item {
    width: 32%;
    margin-top: 3rem;
    padding: 1rem;
  }
}

.about .about-title {
  padding-top: 2rem;
  font-size: 2rem;
}

.about .about-txt {
  padding: 2rem 0;
  line-height: 2;
}

/*-----------------------
			photo
------------------------*/
.photo-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .photo-block {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

/*-----------------------
			works-detail
------------------------*/
.works-detail .inner {
  margin-top: 5rem;
}

.works-detail .heading2-detail {
  margin-bottom: 24px;
}

.works-detail .heading2-detail-span {
  padding-bottom: 6px;
  border-bottom: solid 6px #bbd9dd;
}

.works-detail .detail-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .works-detail .detail-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.works-detail .detail-img {
  width: 50%;
  height: auto;
}

.works-detail .detail-box {
  margin-left: 60px;
}

@media (max-width: 767px) {
  .works-detail .detail-box {
    margin: 4rem 0 0;
  }
}

.works-detail .detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

.works-detail .detail-list dt {
  width: 20%;
}

.works-detail .detail-list dd {
  width: 80%;
}

.works-detail .summary-list {
  margin-top: 8rem;
}

@media (max-width: 767px) {
  .works-detail .summary-list {
    margin-top: 4rem;
  }
}

.works-detail .summary-list dt {
  font-size: 2.4rem;
  font-weight: 600;
  border-bottom: solid 6px #b6d7d9;
  margin-bottom: 24px;
  padding-bottom: 6px;
}

@media (max-width: 767px) {
  .works-detail .summary-list dt {
    font-size: 2rem;
  }
}

.works-detail .summary-list dd {
  line-height: 2;
}

.works-detail .summary-list p {
  margin-top: 24px;
}

.works-detail button {
  width: 80%;
  margin-top: 1.5rem;
  padding: 0.8rem 0;
  background: rgba(182, 215, 217, 0.3);
}

.works-detail .button-arrow {
  position: relative;
  padding-right: 10px;
}

.works-detail .button-arrow::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: solid 4px transparent;
  border-left: solid 6px #141414;
  top: 50%;
  right: -10px;
  margin-top: -4px;
}

/*-----------------------
			小さな町
------------------------*/
.smalltown .town-block {
  margin-top: 4rem;
}

.smalltown .town-list {
  margin-top: 2rem;
}


/*-----------------------
			nagomi-nouen
------------------------*/


  .nagomi-link {
    width: 32rem;
    padding: 1.5rem;
    margin-top: 4rem;
    display: block;
    background:#eaf3f4;
    font-weight: bold;
  }

  .nagomi-link:hover {
    opacity: 0.5;
  }

  .nagominouen-block img {
    border-radius: 0;
  }

.img-logo {
  width: 20%;
  margin-bottom: 4rem;
}
	/* .heading5-nagomi::before {
      content: '';
      display: inline-block;
      width: 40px;
      height: 40px;
      vertical-align:middle;
      background-image: url(../img/nagomi/ringo.png);
      background-size: contain;
	} */

.heading5-nagomi {
  margin-top: 8rem;
font-size: 24px;
border-bottom:solid 1px #eaf3f4;
}

.nagominouen-list-item {
  margin-bottom: 2rem;
}




/*-----------------------
			footer
------------------------*/
footer {
  padding: 2px 0;
}

footer p {
  color: #141414;
  font-size: 1rem;
  text-align: center;
}

/*-----------------------
			hamburger
------------------------*/
/*　ハンバーガーボタン　*/
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 20;
  right: 35px;
  top: 35px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #141414;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}

.hamburger.active span:nth-child(2) {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-14px);
  transform: translateY(-14px);
}

.globalmenu-sp {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  padding: 10rem 0;
  width: 50%;
  height: 100%;
  border-top: 10px solid #b6d7d9;
  border-bottom: 10px solid #b6d7d9;
  color: #000;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.global-menu-sp-list {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100vh;
}

.globalmenu-sp-list-item {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #b6d7d9;
}

.globalmenu-sp-list-item:last-child {
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .globalmenu-sp-list-item:hover {
    background: #b6d7d9;
  }
}

.globalmenu-sp-list-item a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
.globalmenu-sp.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

/*-----------------------
			背景ワイド
------------------------*/
.overwidth {
  position: relative;
}

.wide {
  max-width: 1200px;
  /* 基本は可変。最大横幅を1000pxに指定 */
  margin: 3rem auto 0;
  /* 左右中央に配置 */
}

.wide-inner {
  margin: 0 calc(50% - 50vw);
  padding: 6rem calc(50vw - 50%);
  width: 100vw;
  background: rgba(182, 215, 217, 0.3);
}
/*# sourceMappingURL=common.css.map */