@charset "UTF-8";
@import url("global.css");
.introduction {
  padding-right: max(50px,calc((100vw - 1500px) * .28));
  padding-left: max(50px,calc((100vw - 1400px) / 2));
  display: flex;
  gap: min(80px,5.5vw);
  align-items: flex-start;
  text-align: left;
  margin-bottom: 100px;
}
.introduction .main {
  padding-top: 10px;
}
.introduction .main .catch {
  font-size: min(30px,2.8vw);
  line-height: 1.7;
  margin-bottom: 20px;
}
.introduction .main .subimage {
  margin-top: 65px;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
.introduction .main .subimage span {
  display: block;
}
.introduction .main .subimage img {
  border-radius: calc(var(--radius) / 4 * 3 );
}
.introduction .main .subimage .image1 {
  width: 60%;
}
.introduction .main .subimage .image2 {
  position: absolute;
  right: min(-130px,calc(5.5vw - 50px));
  bottom: 0;
  width: 49%;
}
.introduction .image {
  width: 53%;
  flex-shrink: 0;
  aspect-ratio: 3 / 2;
}
.introduction .image img {
  border-radius: var(--radius);
}

#point {
  margin-bottom: 120px;
}
#point .sectitle {
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 50px;
  line-height: 1.2;
}
#point .sectitle span {
  display: block;
  color: #639A70;
  margin-bottom: 15px;
  letter-spacing: .1em;
  font-size: 18px;
}
#point .sectitle strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: clamp(21px, 3.8vw, 36px);
}
#point .sectitle strong::before, #point .sectitle strong::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/dot4.png") no-repeat center center/contain;
  display: block;
  margin-top: 2px;
}
#point ul.point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(65px,3.4vw) min(70px,3.7vw);
  counter-reset: count 0;
  border-radius: var(--reset);
}
#point ul.point li {
  counter-increment: count 1;
  background-color: #f6f6f6;
  border-radius: var(--radius);
  padding: min(45px,3vw);
  container-type: inline-size;
}
#point ul.point li .inner {
  display: flex;
  gap: min(40px,2.8vw);
  align-items: flex-start;
}
#point ul.point li .image {
  width: 44%;
  flex-shrink: 0;
  aspect-ratio: 10 / 7;
  border-radius: calc(var(--radius) / 4 * 3);
  overflow: hidden;
}
#point ul.point li .main {
  padding-top: 5px;
}
#point ul.point li .main::before {
  display: block;
  content: "Point" counter(count,decimal-leading-zero);
  color: #639A70;
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  letter-spacing: .1em;
  background: url("../img/title_event.png") no-repeat left center/13px auto;
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 1;
}
#point ul.point li .main .title {
  font-size: min(23px,1.7vw);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}
#point ul.point li .main p:not([class]) {
  font-size: 15px;
}
@container (width < 440px) {
  #point ul.point li .inner {
    display: block;
  }
  #point ul.point li .image {
    width: auto;
    aspect-ratio: 3 / 2;
    margin-bottom: 25px;
  }
  #point ul.point li .main {
    padding-top: 0;
  }
  #point ul.point li .main .title {
    font-size: min(21px,7.5cqw);
  }
}
@container (width < 320px) {
  #point ul.point li .main::before {
    font-size: 14px;
  }
  #point ul.point li .main p:not([class]) {
    font-size: 14px;
  }
}
#relief {
  margin-bottom: 110px;
}
#relief .sectitle {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  font-size: clamp(17px, 3.8vw, 30px);
  margin-bottom: 40px;
}
#relief .sectitle::before, #relief .sectitle::after {
  content: "";
  width: 15px;
  height: 1px;
  margin-top: 4px;
  background-color: #1D1D1D;
  display: flex;
}
#relief ul.relief {
  background: linear-gradient(to right, #8E8E8E 4px, transparent 3px) repeat-x left top/7px 1px;
}
#relief ul.relief li {
  padding-block: 55px;
  background: linear-gradient(to right, #8E8E8E 4px, transparent 3px) repeat-x left bottom/7px 1px;
}
#relief ul.relief li .title {
  font-size: min(24px,2.3vw);
  color: #639A70;
  margin-bottom: 15px;
}
#relief ul.relief li .inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 40px;
}
#relief ul.relief li .image {
  display: block;
  width: 300px;
  flex-shrink: 0;
}
#relief ul.relief li .image img {
  border-radius: calc(var(--radius) / 4 * 3);
}
#relief ul.relief li .images {
  display: flex;
  gap: 10px;
}
#relief ul.relief li .logo {
  flex-shrink: 0;
}
#relief ul.relief li .link {
  margin-top: 30px;
}
#relief ul.relief li .link a {
  display: block;
  position: relative;
  background-color: #F1F0E7;
  padding: 10px 60px 10px 20px;
  border-radius: 3px;
  width: fit-content;
  font-size: 14px;
}
#relief ul.relief li .link a strong {
  color: #639A70;
  padding-right: 8px;
}
#relief ul.relief li .link a::after {
  content: "\f35d";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  position: absolute;
  font-size: 12px;
  right: 20px;
  line-height: 20px;
  top: 50%;
  margin-top: -10px;
}
@media (any-hover: hover) {
  #relief ul.relief li .link a:hover {
    background-color: #E4EEE6;
  }
}
#relief ul.relief li .notes {
  font-size: 13px;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.5;
  margin-top: 15px;
}
#relief ul.relief li .notes + .notes {
  margin-top: 5px;
}
#relief ul.relief li .notes::before {
  content: "※";
  color: #8E8E8E;
  text-indent: 0;
  display: inline-block;
  letter-spacing: 0;
  padding-right: .2em;
}

#works {
  background-color: #586B56;
  color: #fff;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 110px;
}
#works::before {
  content: "";
  height: 460px;
  display: block;
  width: 0;
}
#works .image {
  width: 53%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
#works .main {
  width: 47%;
  box-sizing: border-box;
  padding: 40px min(60px,4vw);
}
#works .main .title {
  margin-bottom: 20px;
  line-height: 1.7;
}
#works .main .title span {
  display: block;
}
#works .main .title .en {
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  color: #A0D1AC;
}
#works .main .title .ja {
  font-size: min(32px,2.5vw);
}
#works .main .text {
  font-size: 15px;
  margin-bottom: 35px;
}
#works .main .linkbutton {
  width: 180px;
  margin-left: auto;
}

#consultation {
  background: url("../img/bgmesh.png") repeat left top/1400px auto;
  padding: min(50px,4.5vw) min(60px,4.5vw);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  gap: min(60px,4.5vw);
}
#consultation .image {
  width: 36%;
  flex-shrink: 0;
  border-radius: calc(var(--radius) / 4 * 3);
  overflow: hidden;
}
#consultation .catch {
  line-height: 1.7;
  font-size: min(24px,2.4vw);
  font-weight: 700;
  margin-bottom: 20px;
}
#consultation .text a {
  padding-left: 3px;
  color: #639A70;
  text-decoration-color: rgba(99, 154, 112, 0.3);
  text-decoration-line: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: -1px;
  text-decoration-skip-ink: none;
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  .introduction {
    gap: 5vw;
    margin-bottom: 80px;
  }
  .introduction .main {
    padding-top: 0;
  }
  .introduction .main .subimage {
    margin-top: 50px;
    padding-bottom: 0;
  }
  .introduction .main .subimage .image2 {
    bottom: 60px;
    width: 50%;
  }
  .introduction .image {
    width: 48%;
  }

  #relief ul.relief li .images {
    display: block;
  }
  #relief ul.relief li .images .image + .image {
    margin-top: 10px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  .introduction {
    padding-inline: 5vw;
    display: block;
    margin-bottom: 70px;
  }
  .introduction .main {
    position: relative;
    margin-bottom: 50px;
  }
  .introduction .main .catch {
    font-size: min(24px,5vw);
  }
  .introduction .main .text {
    width: 55%;
  }
  .introduction .main .subimage {
    max-width: 38%;
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }
  .introduction .main .subimage .image1 {
    aspect-ratio: 3 / 2;
    width: auto;
    height: 48%;
    margin-bottom: 10px;
  }
  .introduction .main .subimage .image2 {
    position: relative;
    aspect-ratio: 3 / 2;
    height: 48%;
    right: auto;
    bottom: auto;
    width: auto;
  }
  .introduction .image {
    width: auto;
  }

  #point {
    margin-bottom: 80px;
  }
  #point .sectitle strong::before, #point .sectitle strong::after {
    width: 18px;
    height: 18px;
  }
  #point ul.point {
    gap: 4vw;
  }
  #point ul.point li {
    padding: 3.5vw;
  }

  #relief {
    margin-bottom: 80px;
  }
  #relief ul.relief li {
    padding-block: 45px;
  }
  #relief ul.relief li .title {
    font-size: min(20px,4.2vw);
    margin-bottom: 20px;
  }
  #relief ul.relief li .inner {
    gap: 4.5vw;
  }
  #relief ul.relief li .image {
    width: 42%;
  }
  #relief ul.relief li .images {
    width: 42%;
    flex-shrink: 0;
  }
  #relief ul.relief li .images .image {
    width: auto;
  }

  #works {
    margin-bottom: 80px;
  }
  #works .main {
    padding: 40px min(60px,4vw);
  }
  #works .main .title .en {
    font-size: 12px;
  }
  #works .main .title .ja {
    font-size: min(28px,3.2vw);
  }
  #works .main .text {
    font-size: 14px;
    margin-bottom: 25px;
  }

  #consultation .image {
    width: 45%;
  }
  #consultation .catch {
    font-size: min(20px,3vw);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  .introduction {
    margin-bottom: 60px;
  }
  .introduction .main {
    margin-bottom: 10px;
  }
  .introduction .main .catch {
    margin-bottom: 20px;
  }
  .introduction .main .text {
    width: auto;
  }
  .introduction .main .subimage {
    max-width: none;
    margin-top: 20px;
    position: static;
    height: auto;
    display: flex;
    gap: 10px;
  }
  .introduction .main .subimage span {
    display: block;
  }
  .introduction .main .subimage .image1 {
    height: auto;
    margin-bottom: 0;
  }
  .introduction .main .subimage .image2 {
    height: auto;
  }

  #point {
    margin-bottom: 60px;
  }
  #point .sectitle {
    margin-bottom: 40px;
  }
  #point .sectitle span {
    margin-bottom: 15px;
    letter-spacing: 0;
    font-size: 15px;
  }
  #point .sectitle strong {
    gap: 20px;
  }
  #point .sectitle strong::before, #point .sectitle strong::after {
    width: 16px;
    height: 16px;
  }
  #point ul.point {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  #point ul.point li {
    padding: 5vw;
  }
  #point ul.point li .inner {
    gap: 4vw;
  }
  #point ul.point li .main .title {
    font-size: min(18px,2.8vw);
  }
  #point ul.point li .main p:not([class]) {
    font-size: inherit;
  }
  @container (width < 440px) {
    #point ul.point li .main .title {
      font-size: min(18px,6cqw);
    }
  }
  @container (width < 320px) {
    #point ul.point li .image {
      margin-bottom: 20px;
    }
    #point ul.point li .main::before {
      font-size: 13px;
      margin-bottom: 5px;
    }
  }
  #relief {
    margin-bottom: 70px;
  }
  #relief .sectitle {
    gap: 12px;
    margin-bottom: 30px;
  }
  #relief .sectitle::before, #relief .sectitle::after {
    width: 12px;
    margin-top: 2px;
  }
  #relief ul.relief li {
    padding-block: 35px;
  }
  #relief ul.relief li .inner {
    display: block;
  }
  #relief ul.relief li .image {
    width: auto;
  }
  #relief ul.relief li .images {
    width: 100%;
    gap: 10px;
    display: flex;
  }
  #relief ul.relief li .images .image {
    width: auto;
    flex: 1;
  }
  #relief ul.relief li .images .image + .image {
    margin-top: 0;
  }
  #relief ul.relief li .logo {
    width: 120px;
    margin-inline: auto;
  }
  #relief ul.relief li .text {
    margin-top: 15px;
  }
  #relief ul.relief li .link {
    margin-top: 20px;
  }
  #relief ul.relief li .link a {
    padding: 12px 60px 12px 20px;
    font-size: 13px;
  }
  #relief ul.relief li .link a strong {
    padding-right: 5px;
  }

  #works {
    display: block;
    margin-bottom: 60px;
  }
  #works::before {
    display: none;
  }
  #works .image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    position: static;
  }
  #works .main {
    width: auto;
    padding: 35px 5vw;
  }
  #works .main .title {
    margin-bottom: 20px;
  }
  #works .main .title .en {
    font-size: 12px;
  }
  #works .main .title .ja {
    font-size: min(24px,5.5vw);
  }
  #works .main .text {
    font-size: 13px;
    margin-bottom: 20px;
  }
  #works .main .linkbutton {
    width: 140px;
  }

  #consultation {
    padding: 7vw;
    display: block;
  }
  #consultation .image {
    width: auto;
    margin-bottom: 25px;
  }
  #consultation .catch {
    font-size: min(20px,5vw);
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=renovation.css.map */
