/* Default Options */
/* Transform Font Size */
/* ------------------------------------------- */
.keyvisual {
  width: 100%;
  height: 80svh;
  padding: max(3vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
.keyvisual .text {
  width: clamp(180px, 30vw, 300px);
  position: relative;
  z-index: 1;
  transition: opacity 1200ms ease 1300ms;
  opacity: 0;
}
.loaded .keyvisual .text {
  opacity: 1;
}

.keyvisual .catch {
  position: relative;
  top: max(6vw, 30px);
  z-index: 1;
  transition: opacity 800ms ease 1300ms;
  opacity: 0;
}
.loaded .keyvisual .catch {
  opacity: 1;
}

.keyvisual .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgb(0, 0, 0);
}
.keyvisual .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}
@media screen and (min-width: 1024px) {
  .keyvisual .catch {
    width: 80vw;
    margin-inline: 2vw;
  }
}

/* ------------------------------------------- */
.project {
  position: relative;
  z-index: 1;
  background-color: #f3f3e7;
  overflow: hidden;
}

/* ------------------------------------------- */
.about {
  padding-block: clamp(60px, 10vw, 120px);
  padding-inline: 5vw;
  background-color: #684c2e;
  color: var(--background-color);
}
.about .inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.about-text {
  font-size: clamp(1rem, 0.8695652174rem + 0.3623188406vw, 1.25rem);
}
.about .merit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 4vw, 60px);
}
.about .merit-title {
  border-block-end: clamp(2px, 1vw, 4px) solid #e2ff43;
  font-size: clamp(1.25rem, 0.597826087rem + 1.8115942029vw, 2.5rem);
  font-weight: 600;
}
.about .merit-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block-end: clamp(30px, 4vw, 60px);
  border-block-end: 1px solid rgba(255, 255, 255, 0.4);
}
.about .merit-list .keyword {
  width: 100%;
  height: 80px;
  margin-block-end: clamp(10px, 1vw, 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d1e6ea;
  font-size: clamp(1rem, 0.8695652174rem + 0.3623188406vw, 1.25rem);
  color: var(--text-color);
}
.about .merit-list p {
  font-size: clamp(0.875rem, 0.8097826087rem + 0.1811594203vw, 1rem);
}
.about .merit .text {
  max-width: 800px;
  margin-inline: auto;
  font-size: clamp(0.875rem, 0.8097826087rem + 0.1811594203vw, 1rem);
}
.about .merit .button {
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 1024px) {
  .about .merit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10%;
  }
}

/* ------------------------------------------- */
.usermap {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.usermap-text {
  font-size: clamp(1rem, 0.8695652174rem + 0.3623188406vw, 1.25rem);
  text-align: center;
}
.usermap-text br {
  display: none;
}
.usermap .spot {
  margin-block-start: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.usermap .item {
  display: flex;
  flex-direction: column;
}
.usermap .item span {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-block-end: 1px solid var(--text-color);
  font-size: clamp(0.875rem, 0.8097826087rem + 0.1811594203vw, 1rem);
  font-weight: 700;
}
.usermap .item span:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../../assets/images/project/icon_pin.svg);
  background-size: 100% auto;
}
.usermap .item dl {
  padding-block: 5px;
  display: grid;
  grid-template-columns: 100px 1fr;
  font-size: clamp(0.875rem, 0.8097826087rem + 0.1811594203vw, 1rem);
  border-block-end: 1px dotted var(--text-color);
}
@media screen and (min-width: 576px) {
  .usermap .spot {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .usermap .item:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .usermap .item:nth-child(2) {
    grid-area: 1/2/3/3;
  }
  .usermap .item:nth-child(3) {
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 768px) {
  .usermap-text br {
    display: block;
  }
  .usermap .spot {
    display: none;
  }
  .usermap .image {
    width: calc(100% + 10vw);
    position: relative;
    left: -5vw;
  }
  .usermap .image img {
    width: 100%;
  }
}

/* ------------------------------------------- */
.voice {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.voice-list {
  max-width: 80%;
  margin-inline: auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.voice-list li {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.voice .header {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.voice .header .crops {
  height: 32px;
  display: flex;
  align-items: center;
  padding-inline: 10px;
  background-color: var(--text-color);
  border-radius: 5px;
  font-size: clamp(0.875rem, 0.8097826087rem + 0.1811594203vw, 1rem);
  line-height: 1.2;
  color: var(--background-color);
}
.voice .header .name {
  display: block;
  font-size: clamp(1rem, 0.8695652174rem + 0.3623188406vw, 1.25rem);
  font-weight: 700;
  line-height: 1.1;
}
.voice .header .name span {
  font-size: clamp(1.5rem, 1.2391304348rem + 0.7246376812vw, 2rem);
}
.voice .header .area {
  font-size: clamp(0.8125rem, 0.7798913043rem + 0.0905797101vw, 0.875rem);
}
.voice .image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  clip-path: var(--clip-path-octagon);
}
.voice .list {
  display: grid;
  grid-template-columns: 30% 1fr;
  border-block-start: 1px dotted var(--text-color);
}
.voice .list dt,
.voice .list dd {
  padding-block: 5px;
  border-block-end: 1px dotted var(--text-color);
}
@media screen and (min-width: 576px) {
  .voice-list {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10%;
  }
}

/* ------------------------------------------- */
.flow {
  padding-inline: 5vw;
  padding-block: calc(5vw + 40px);
  background-color: #d1e6ea;
}
.flow .inner {
  max-width: 1280px;
  margin-inline: auto;
}
.flow .box,
.flow .image {
  width: 90%;
  padding-block: clamp(40px, 5vw, 80px);
  padding-inline: clamp(20px, 8vw, 80px);
  background-color: var(--background-color);
  border: 6px solid #d1e6ea;
  border-radius: clamp(16px, 2vw, 32px);
  position: relative;
}
.flow .box {
  z-index: 1;
}
.flow .image {
  margin-block-start: clamp(-40px, -5vw, -80px);
  margin-inline-start: auto;
  padding-block-start: clamp(80px, 10vw, 160px);
  z-index: 0;
}
.flow .image .list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5%;
  row-gap: 20px;
}
.flow .image .list li {
  position: relative;
}
.flow .image .list li:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url(../../assets/images/project/icon_arrow.svg);
  background-size: 100% auto;
  position: absolute;
  right: -16px;
  top: calc(50% - 8px);
}
.flow .image .list li:last-child:after {
  display: none;
}
.flow .image .list img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 576px) {
  .flow .image .list {
    grid-template-columns: repeat(3, 1fr);
  }
  .flow .image .list li:after {
    width: 20px;
    height: 20px;
    right: -20px;
    top: calc(50% - 10px);
  }
}
@media screen and (min-width: 1024px) {
  .flow .box,
  .flow .image {
    width: 80%;
  }
  .flow .image {
    margin-block-start: clamp(-80px, -5vw, -160px);
  }
  .flow .image .list {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ------------------------------------------- */
.faq {
  padding-block: clamp(60px, 10vw, 120px);
  padding-inline: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 4vw, 60px);
}
.faq .title {
  font-size: clamp(1.5rem, 1.1086956522rem + 1.0869565217vw, 2.25rem);
  font-weight: 700;
}
.faq-list {
  max-width: 900px;
  padding: 0;
  list-style: none;
  border-block-start: 1px dotted var(--text-color);
}
.faq-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(15px, 2vw, 30px);
  border-block-end: 1px dotted var(--text-color);
}
.faq-list .question {
  font-size: clamp(1.25rem, 1.1195652174rem + 0.3623188406vw, 1.5rem);
  font-weight: 700;
}
.faq-list .answer {
  font-size: clamp(0.875rem, 0.8097826087rem + 0.1811594203vw, 1rem);
}

/* ------------------------------------------- */
.wrapper-contents {
  position: relative;
  z-index: 1;
}
.wrapper-inner {
  backdrop-filter: blur(32px) brightness(50%);
  position: relative;
  z-index: 1;
}
.wrapper .bgimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.wrapper .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}