html {
  scroll-behavior: smooth;
}
/*-----------------------------------------------------
	body
----------------------------------------------------**/
body {
  font-size: 16px;
  line-height: 1.8;
  color: #222222;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
img {
  vertical-align: bottom;
}
a {
  color: #222222;
  border-bottom: #222222 dashed 1px;
  text-decoration: none;
  position: relative;
  transition: all 0.5s ease 0s;
}
a:hover {
  color: #000000;
  border: none;
}
/* PC/SP切り替え */
.pc-only {
  display: inline;
}
.sp-only {
  display: none;
}
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}
/*-----------------------------------------------------
	parallax
----------------------------------------------------**/
.parallax {
  background: no-repeat center center / cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  transform: none !important;
}
.parallax.footer {
  background-image: url("../images/bg_parallax.jpg");
  height: 200px;
}
/*-----------------------------------------------------
 section
----------------------------------------------------**/
.bg {
  background: #ebf1ef
}
.sectionBox {
  padding: 100px 0;
  position: relative;
}
.sectionTtl {
  text-align: center;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  font-size: 170%;
  margin: 0 0 50px;
}
.sectionTtl span {
  display: block;
  color: #579435;
  font-family: braisetto, script;
  font-size: 120%;
}
.pageTitle {
  text-align: center;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 300%;
  letter-spacing: 0.25em;
  color: #ffffff;
  padding: 5vh 0 0 0;
  text-shadow: 3px 3px 3px #000;
}
/*-----------------------------------------------------
	fade 
----------------------------------------------------**/
.fade {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 1.5s, transform 1s;
}
.fade.active {
  opacity: 1;
  transform: translateY(0px);
}
.timing02 {
  transition-delay: .2s;
}
.timing03 {
  transition-delay: .4s;
}
.timing04 {
  transition-delay: .6s;
}
/*-----------------------------------------------------
	btn
----------------------------------------------------**/
/* ボタン配置コンテナ */
.btn-wrap {
  text-align: center;
  margin: 2em 0 0;
}
/* ボタン本体 */
.btn-arrow {
  --btn-color: #222; /* ボタン基準色 */
  position: relative;
  display: inline-block;
  min-width: min(300px, 100%);
  padding: .7em 3em .7em 2em;
  border-radius: 3px;
  text-decoration: none;
  /* 通常状態 */
  color: var(--btn-color); /* 文字色 */
  border: 1px solid var(--btn-color); /* 枠線 */
  background: none;
  /* 状態変化アニメーション */
  transition:
    background-color .3s ease, color .3s ease;
}
/* 矢印 */
.btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) translateX(0) rotate(45deg);
  transition: transform .3s ease;
}
/* hover */
.btn-arrow:hover {
  border: #7bc254 solid 1px;
  color: #ffffff;
  background: #7bc254;
}
/* hover時の矢印移動 */
.btn-arrow:hover::after {
  transform: translateY(-50%) translateX(5px) rotate(45deg);
}
/*-----------------------------------------------------
	header
----------------------------------------------------**/
header {
  background-image: url("../images/visual.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  min-height: 50vh;
  border-bottom: #579435 solid 30px;
}
header.sub {
  background-image: url("../images/visual.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  min-height: 30vh;
  border-bottom: #579435 solid 30px;
}
#gNav {
  background: #ffffff;
  position: relative;
}
#logo {
  width: 200px;
  height: 200px;
  padding: 10px;
  margin: 0 0 0 20px;
  background: #ffffff;
  position: relative;
  border-radius: 0 0 3px 3px;
  z-index: 1000;
}
#logo a {
  border: none;
}
#logo {
  position: absolute;
  top: 0;
  left: 20px;
  width: 200px;
  height: 200px;
  background: #fff;
  padding: 10px;
  z-index: 1001;
  transform-origin: left top;
  transition: transform .3s ease;
}

/**/
#gNav {
  position: relative;
}
#gNav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  font-family: ten-mincho, serif;
  font-weight: 400;
}
#gNav ul a {
  display: block;
  padding: 20px;
  border: none;
  text-align: center;
  line-height: 1.5;
}
#gNav ul a span {
  display: block;
  font-size: 80%;
}
#gNav ul li.inq a {
  background: #579435;
  color: #ffffff;
}
#gNav ul li a:hover {
  color: #ffffff;
  background: #7bc254;
}
.header__inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  position: fixed;
  contain: layout; /* ←重要 */
}
.header__inner.is-scrolled #logo {
  transform: scale(0.8);
}
/*-----------------------------------------------------
	concept
----------------------------------------------------**/
#concept {
  background-image: url("../images/bg_parallax.jpg");
  text-align: center;
}
#concept .copy {
  color: #579435;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-size: 180%;
  margin: 0 0 1em 0;
}
#concept p {
  margin: 2em 0;
  line-height: 2;
}
/*-----------------------------------------------------
	about
----------------------------------------------------**/
.about-item {
  display: flex;
  text-align: center;
  margin: 100px 0 0;
}
.about-item:nth-child(even) {
  flex-direction: row-reverse;
}
.about-item .about-item__image {
  flex-basis: 50%;
  max-height: 500px;
  overflow: hidden;
}
.about-item .about-item__content {
  flex-basis: 50%;
}
.about-item .about-item__number {
  background-image: url("../images/bg_about-no.png");
  background-size: 100% 100%;
  width: 120px;
  height: 120px;
  margin: 30px auto;
  line-height: 120px;
  font-family: braisetto, script;
  font-size: 250%;
  font-weight: bold;
}
.about-item .about-item__copy {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-size: 140%;
  margin: 0 0 1em;
}
.about-item .about-item__text {
  margin: 0 auto;
}
.about-item .about-item__text p {
  margin: 1em 0;
}
.about-item .about-item__image img {
  width: 100%;
  height: auto;
}
/*-----------------------------------------------------
	works
----------------------------------------------------**/
#works .works-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
#works .works-carousel img.works-carousel__image {
  width: 100%;
  object-fit: cover;
}
#works .works-carousel .works-carousel__headline {
  margin: 10px 0 5px;
}
#works .works-carousel .works-carousel__meta {
  font-size: 90%;
  margin: 0 0 10px;
}
#works .works-carousel a img.works-carousel__image {
  transition: 0.5s;
}
#works .works-carousel a:hover img.works-carousel__image {
  opacity: 0.7;
  transition: 0.5s;
}
/**/ /**/ /**/
#works-archive .sectionBox {
  width: 1200px;
  margin: 0 auto;
}
#works-archive .works-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#works-archive .works-list .works-card__image {
  width: 100%;
}
#works-archive .works-list .works-card__title {
  margin: 10px 0 5px;
}
#works-archive .works-list .works-card__meta {
  font-size: 90%;
  margin: 0 0 10px;
}
#works-archive .works-list a {
  border: none;
}
#works-archive .works-list a img.works-card__image {
  transition: 0.5s;
}
#works-archive .works-list a:hover img.works-card__image {
  opacity: 0.7;
  transition: 0.5s;
}
/**/ /**/ /**/
.works-detail {
  padding: 100px 0;
  display: flex;
  gap: 40px;
  width: 1200px;
  margin: 0 auto;
}
.works-detail__gallery {
  flex: 2;
  overflow: hidden;
}
.works-detail__gallery img {
  width: 100%;
  height: auto;
}
.works-detail__gallery .slider-for {
  margin: 0 0 10px 0;
}
.works-detail__gallery .slider-nav li {
  margin: 0 5px;
  border: #ffffff solid 5px;
}
.works-detail__gallery .slider-nav .slick-center {
  border: #579435 solid 5px;
}
.works-detail__content {
  flex: 1;
}
.works-detail__title {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  font-size: 150%;
  margin: 20px 0 10px;
}
.works-detail__meta {
  font-size: 90%;
  margin: 0 0 30px;
}
.works-detail__text {
  margin: 0 0 30px;
}
.works-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  padding: 0;
  list-style: none;
}
.works-detail__tags li {
  font-size: 90%;
  padding: 4px 10px;
  border-radius: 3px;
  line-height: 1;
  background: #ebf1ef;
}
/*pagination*/
.pagination {
  margin-top: 40px;
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s;
}
/*-----------------------------------------------------
	faq
----------------------------------------------------**/
.faq-accordion {
  list-style: none;
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.faq-accordion__item {
  margin: 20px 0;
  border-radius: 5px;
  background: #ebf1ef;
}
/* 質問（クリック部分） */
.faq-accordion__question {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  padding: 16px 16px 16px 50px;
  transition: all .3s ease;
}
/* ＋アイコン */
.faq-accordion__question::before, .faq-accordion__question::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.faq-accordion__question::after {
  transform: translateY(-50%) rotate(90deg);
}
/* 開いてる状態（×に変化） */
.faq-accordion__item.is-open .faq-accordion__question::before {
  transform: translateY(-50%) rotate(45deg);
}
.faq-accordion__item.is-open .faq-accordion__question::after {
  transform: translateY(-50%) rotate(-45deg);
}
/* 回答エリア */
.faq-accordion__answer {
  display: none;
  padding: 16px;
  border-top: #222222 dashed 1px;
}
/* 開いてるとき表示 */
.faq-accordion__item.is-open .faq-accordion__answer {
  display: block;
}
/*-----------------------------------------------------
	access
----------------------------------------------------**/
.access__inner {
  max-width: 1200px;
  width: 90%;
  margin: 40px auto 0;
  display: flex;
  gap: 40px;
  align-items: stretch;
}
/* 左：情報 */
.access__info {
  flex: 1;
}
.access__name {
  font-weight: normal;
  margin: 0 0 5px;
}
.access__address {
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.8;
}
/* dlレイアウト */
.access__list {
  margin: 0;
}
.access__row {
  display: flex;
  margin-bottom: 10px;
}
.access__label {
  width: 100px;
  flex-shrink: 0;
}
.access__data {
  flex: 1;
  line-height: 1.8;
}
/* 右：地図 */
.access__map {
  flex: 2;
  min-height: 400px; /* 保険 */
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*-----------------------------------------------------
	cta
----------------------------------------------------**/
.cta {
  width: 100%;
}
.cta__inner {
  display: flex;
}
/* 各ボタンを半分に */
.cta__btn {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-decoration: none;
  letter-spacing: 0.1em;
}
/* 左：電話 */
.cta__btn--tel {
  font-family: amiri, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 280%;
}
/* 右：お問い合わせ */
.cta__btn--contact {
  background: #579435;
  color: #ffffff;
  font-family: ten-mincho, serif;
  font-size: 180%;
  border: none;
}
.cta__btn--contact:hover {
  color: #ffffff;
  background: #7bc254;
}
.cta__icon {
  display: inline-flex;
  padding: 0 10px 0 0;
}
.cta__icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 1.8;
}
.cta__btn--tel .cta__icon svg {
  margin: 13px 0 0 0;
  color: #579435;
}
/*-----------------------------------------------------
	footer
----------------------------------------------------**/
.footer {}
.footer__inner {
  margin: -100px 0 0 0;
  padding: 20px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo img {
  height: 200px;
  width: auto;
}
.footer__copy {
  font-size: 90%;
  text-align: right;
  padding: 110px 0 0 0;
}
/* ================================================
Mobile style's
================================================  */
@media only screen and (max-width: 1199px) {
  /*-----------------------------------------------------
	body
----------------------------------------------------**/
  body {
    font-size: 14px;
  }
  /*toggle*/
  .sp-only {
    display: inline;
  }
  .pc-only {
    display: none;
  }
  /*-----------------------------------------------------
	parallax
----------------------------------------------------**/
  .parallax {
    background: no-repeat center center / cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
  }
  .parallax.footer {
    height: 100px;
  }
  /*-----------------------------------------------------
 section
----------------------------------------------------**/
  .sectionBox {
    padding: 30px 10px;
  }
  .sectionTtl {
    font-size: 140%;
    margin: 0 0 30px;
  }
  .sectionTtl span {
    font-size: 120%;
  }
  .pageTitle {
    font-size: 220%;
    padding: 5vh 0 0 0;
  }
  /*-----------------------------------------------------
	header
----------------------------------------------------**/
  header {
    min-height: 30vh;
    border-bottom: #579435 solid 20px;
  }
  header.sub {
    min-height: 20vh;
  }
  #gNav {
    background: none;
    position: relative;
    font-size: 120%;
  }
  #logo {
    width: 100px;
    height: 100px;
    padding: 5px;
    z-index: 1;
    margin: 0 0 0 10px;
  }
  .header__inner.is-scrolled #logo {
    width: 90px;
    height: 90px;
  }
  /*-----------------------------------------------------
	concept
----------------------------------------------------**/
  #concept {
    background-image: url("../images/bg_parallax.jpg");
    text-align: center;
  }
  #concept .copy {
    font-size: 150%;
  }
  /*-----------------------------------------------------
	about
----------------------------------------------------**/
  #about .about-item {
    display: flex;
    text-align: center;
    margin: 20px 0 40px;
    flex-direction: column;
  }
  .about-item .about-item__image {
    width: 100%;
    max-height: 500px;
  }
  .about-item .about-item__content {
    flex-basis: 100%;
  }
  .about-item .about-item__number {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    line-height: 100px;
  }
  .about-item .about-item__copy {
    font-size: 120%;
  }
  .about-item .about-item__copy br {
    display: none;
  }
  .about-item .about-item__text p {
    margin: 0.5em 0;
  }
  .about-item .about-item__text br {
    display: none;
  }
  /*-----------------------------------------------------
	works
----------------------------------------------------**/
  #works-archive .sectionBox {
    width: 100%;
  }
  #works-archive .works-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  /**/ /**/ /**/
  .works-detail {
    padding: 20px 10px;
    display: block;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
  }
  .works-detail__content {
    padding: 0 10px;
  }
  .works-detail__title {
    font-size: 150%;
    margin: 20px 0 10px;
  }
  .works-detail__meta {
    margin: 0 0 20px;
  }
  .works-detail__text {
    margin: 0 0 30px;
  }
  /*-----------------------------------------------------
	faq
----------------------------------------------------**/
  .faq-accordion__item {
    margin: 10px 0;
  }
  /* 質問（クリック部分） */
  .faq-accordion__question {
    padding: 10px 10px 10px 50px;
  }
  /* 回答エリア */
  .faq-accordion__answer {
    padding: 10px;
  }
  /*-----------------------------------------------------
	access
----------------------------------------------------**/
  #access .access__inner {
    width: 100%;
    margin: 0 auto 0;
    flex-direction: column;
  }
  .access__address {
    line-height: 1.5;
  }
  .access__label {
    width: 100px;
  }
  .access__row {
    margin-bottom: 5px;
  }
  /* 右：地図 */
  .access__map {
    min-height: 200px; /* 保険 */
  }
  /*-----------------------------------------------------
	cta
----------------------------------------------------**/
  /* 各ボタンを半分に */
  .cta__btn {
    padding: 10px;
    letter-spacing: 0;
  }
  /* 左：電話 */
  .cta__btn--tel {
    font-size: 180%;
  }
  /* 右：お問い合わせ */
  .cta__btn--contact {
    font-size: 140%;
  }
  .cta__btn a {
    border: none;
  }
  .cta__icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.5;
  }
  .cta__btn--tel .cta__icon svg {
    margin: 5px 0 0 0;
  }
  /*-----------------------------------------------------
	footer
----------------------------------------------------**/
  .footer {}
  .footer__inner {
    margin: -80px 0 0 0;
    padding: 10px;
  }
  .footer__logo img {
    height: 100px;
  }
  .footer__copy {
    padding: 80px 0 0 0;
  }