/*=============================
// variable
===============================*/
.kv {
  width: 100%;
  height: 330px;
  background: #007CC6;
  color: #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.is-taskforce .kv {
  background: #00B4BD;
}
.is-shelter .kv {
  background: #05AA55;
}
.is-disasteragreement .kv {
  background: #78C557;
}
.kv__image {
  max-width: 40.21vw;
  height: 100%;
}
.kv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.kv__content {
  box-sizing: border-box;
  padding: 30px 50px 30px 0;
  max-width: calc(100% - 40.21vw);
}
.kv__content .wrapper {
  margin-bottom: 8px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 8px;
}
.kv__content .number {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.kv__content .lead {
  width: fit-content;
  padding: 2px 2px 1px;
  background: #fff;
  color: #007CC6;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  top: -2px;
}
.is-taskforce .kv__content .lead {
  color: #00B4BD;
}
.is-shelter .kv__content .lead {
  color: #05AA55;
}
.is-disasteragreement .kv__content .lead {
  color: #78C557;
}
.kv__content h1 {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.kv__content .desc {
  max-width: 728px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.41;
}

.assignment {
  padding: 60px 50px;
}
.assignment__inner {
  margin: 0 auto;
  max-width: 1150px;
}
.assignment__title {
  margin-bottom: 50px;
  color: #007CC6;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
.is-taskforce .assignment__title {
  color: #00B4BD;
}
.is-shelter .assignment__title {
  color: #05AA55;
}
.is-disasteragreement .assignment__title {
  color: #78C557;
}
.assignment__title.is-mb0 {
  margin-bottom: 0;
}
.assignment__title span {
  letter-spacing: -0.3em;
}
.assignment__subtitle {
  margin-bottom: 40px;
  padding: 6px 0 4px;
  background: #EBEADD;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
.assignment__desc {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.assignment__list {
  display: flex;
  flex-flow: row wrap;
  gap: 0 20px;
  position: relative;
}
.assignment__list::before {
  content: "";
  width: 145px;
  height: 197px;
  background: url("../img/disastermitigation/assignment_list_item.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: 16px;
  transform: translate(0, -100%);
}
.is-taskforce .assignment__list::before {
  width: 170px;
  height: 188px;
  background: url("../img/taskforce/assignment_list_item.png") no-repeat center center;
  background-size: contain;
}
.is-shelter .assignment__list::before {
  width: 146px;
  height: 192px;
  background: url("../img/shelter/assignment_list_item.png") no-repeat center center;
  background-size: contain;
}
.assignment__list li {
  padding: 30px 26px;
  flex: 1;
  background: #EBEADD;
  border-radius: 28px;
  position: relative;
}
.assignment__list li::before {
  content: "";
  width: 24px;
  height: 20px;
  background: url("../img/common/assignment_icon.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%, 100%);
}
.assignment__list li h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  word-break: auto-phrase;
}
.assignment__list li p {
  font-size: 18px;
  font-weight: 300;
}

.solution {
  padding: 80px 50px;
}
.solution.is-pt0 {
  padding-top: 0;
}
.solution__inner {
  margin: 0 auto;
  max-width: 1150px;
}
.solution__inner > *:last-child {
  margin-bottom: 0;
}
.solution__number {
  margin-bottom: 60px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.solution__number::before {
  content: "";
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #D4D4D5 0, #D4D4D5 5px, transparent 5px, transparent 10px);
  background-size: 10px 6px;
  background-repeat: repeat-x;
  background-position: bottom;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.solution__number span {
  padding: 1px 32px;
  background: #fff;
  border: 2px solid #007CC6;
  border-radius: 999px;
  color: #007CC6;
  font-size: 20px;
  font-weight: 600;
}
.is-taskforce .solution__number span {
  border-color: #00B4BD;
  color: #00B4BD;
}
.is-shelter .solution__number span {
  border-color: #05AA55;
  color: #05AA55;
}
.is-disasteragreement .solution__number span {
  border-color: #78C557;
  color: #78C557;
}
.solution__title {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.solution__flow {
  margin: 0 auto 40px;
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.solution__box {
  margin: 0 auto 40px;
  padding: 48px 60px 60px;
  background: #EEF4FB;
}
.solution__box.is-bg-gray {
  background: #F8F8F8;
}
.solution__box.is-bg-gray h3 span {
  background: #F8F8F8;
}
.solution__box > *:last-child {
  margin-bottom: 0;
}
.solution__box h3 {
  margin-bottom: 24px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.solution__box h3::before {
  content: "";
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #007CC6 0, #007CC6 5px, transparent 5px, transparent 10px);
  background-size: 10px 6px;
  background-repeat: repeat-x;
  background-position: bottom;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.is-taskforce .solution__box h3::before {
  background: repeating-linear-gradient(to right, #00B4BD 0, #00B4BD 5px, transparent 5px, transparent 10px);
}
.is-shelter .solution__box h3::before {
  background: repeating-linear-gradient(to right, #05AA55 0, #05AA55 5px, transparent 5px, transparent 10px);
}
.is-disasteragreement .solution__box h3::before {
  background: repeating-linear-gradient(to right, #78C557 0, #78C557 5px, transparent 5px, transparent 10px);
}
.solution__box h3 span {
  padding: 0 10px;
  background: #EEF4FB;
  color: #007CC6;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
}
.is-taskforce .solution__box h3 span {
  color: #00B4BD;
}
.is-shelter .solution__box h3 span {
  color: #05AA55;
}
.is-disasteragreement .solution__box h3 span {
  color: #78C557;
}
.solution__box > p {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  line-height: 1.55;
}
.solution__box .list {
  display: flex;
  flex-flow: row wrap;
  gap: 16px 20px;
}
.solution__box .list li {
  box-sizing: border-box;
  padding: 4px 10px 4px 26px;
  width: calc(50% - 10px);
  background: #fff;
  border-radius: 999px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.solution__box .list li .head {
  width: fit-content;
  display: flex;
  flex-flow: row nowrap;
}
.solution__box .list li .head span {
  margin-right: 10px;
  display: inline-block;
  color: #007CC6;
  font-size: 20px;
  font-weight: 600;
}
.is-taskforce .solution__box .list li .head span {
  color: #00B4BD;
}
.is-shelter .solution__box .list li .head span {
  color: #05AA55;
}
.is-disasteragreement .solution__box .list li .head span {
  color: #78C557;
}
.solution__box .list li .head h4 {
  margin-right: 30px;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}
.solution__box .list li p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.05em;
  text-align: left;
}
.solution__box .images {
  margin: 0 auto 30px;
  max-width: 880px;
  display: flex;
  flex-flow: row wrap;
  gap: 0 20px;
}
.solution__box .images figure {
  flex: 1;
}
.solution__box .column {
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  flex-flow: column;
  gap: 40px 0;
}
.solution__box .column.is-width-lg {
  max-width: 100%;
}
.solution__box .column li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 30px;
}
.solution__box .column li picture {
  width: 430px;
}
.solution__box .column li .content {
  width: calc(100% - 430px - 30px);
}
.solution__box .column li .content h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.solution__box .column li .content p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.05em;
  text-align: left;
}
.solution__box .column li .content .link-text {
  margin-top: 40px;
  font-size: 18px;
}
.solution__box .column li .content .link-text a {
  color: #00B4BD;
}
.solution__box .column li .content .button {
  margin: 20px 0 0;
  max-width: 290px;
  height: 56px;
  padding-left: 20px;
  justify-content: flex-start;
  background: #007CC6;
}
.is-taskforce .solution__box .column li .content .button {
  background: #00B4BD;
}
.is-shelter .solution__box .column li .content .button {
  background: #05AA55;
}
.is-disasteragreement .solution__box .column li .content .button {
  background: #78C557;
}
.solution__box .column li .content .button span {
  font-size: 18px;
  text-align: left;
}
.solution__box .column li .content .button::after {
  right: 10px;
}
.solution__box .column li .content small {
  display: block;
  font-size: 14px;
  margin-top: 20px;
}
.solution__column {
  margin: 40px auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 30px;
}
.solution__column picture {
  width: 50%;
  display: flex;
  flex-flow: row wrap;
}
.solution__column .content {
  width: calc(50% - 30px);
}
.solution__column .content h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
}
.solution__column .content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.77;
  letter-spacing: -0.05em;
}
.solution__video {
  margin: 0 auto 40px;
  max-width: 1000px;
  height: 542px;
}
.solution__video iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.voice {
  padding: 80px 50px 100px;
  box-sizing: border-box;
}
.voice__inner {
  margin: 0 auto;
  padding: 60px 0;
  max-width: 1150px;
  border: 1px solid #D4D4D5;
  border-radius: 20px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.voice__content {
  box-sizing: border-box;
  padding: 0 20px;
  width: calc(100% - 340px);
}
.voice__content .lead {
  margin-bottom: 20px;
  color: #007CC6;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.is-taskforce .voice__content .lead {
  color: #00B4BD;
}
.is-shelter .voice__content .lead {
  color: #05AA55;
}
.is-disasteragreement .voice__content .lead {
  color: #78C557;
}
.voice__content .title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.voice__content .text {
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.voice__content .text::before, .voice__content .text::after {
  content: "-";
  display: block;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.voice__content .text::before {
  left: -16px;
}
.voice__content .text::after {
  right: -16px;
}
.voice__content .desc {
  margin: 0 auto;
  max-width: 689px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.05em;
}
.voice__profile {
  box-sizing: border-box;
  width: 340px;
  border-left: 1px solid #D4D4D5;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.voice__profile .image {
  margin-bottom: 13px;
  width: 173px;
}
.voice__profile .name {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 600;
}
.voice__profile .career {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 767px) {
  .kv {
    height: auto;
    display: block;
  }
  .kv__image {
    max-width: 100%;
    height: auto;
  }
  .kv__image img {
    width: 100%;
    height: auto;
    object-position: center center;
  }
  .kv__content {
    max-width: 100%;
    padding: 0 3.2vw 8vw;
  }
  .kv__content .wrapper {
    margin-bottom: 3.7333333333vw;
    flex-flow: column;
    align-items: flex-start;
    gap: 0 0.5333333333vw;
  }
  .kv__content .number {
    margin-bottom: 1.0666666667vw;
    font-size: 2.6666666667vw;
  }
  .kv__content .lead {
    padding: 0.5333333333vw 0.5333333333vw 0.2666666667vw;
    font-size: 4.2666666667vw;
    top: 0;
  }
  .kv__content h1 {
    margin-bottom: 2.6666666667vw;
    font-size: 13.3333333333vw;
    line-height: 1.08;
  }
  .kv__content .desc {
    max-width: 100%;
    font-size: 3.7333333333vw;
    line-height: 1.28;
  }
  .assignment {
    padding: 8vw 3.2vw;
  }
  .assignment__title {
    margin-bottom: 5.3333333333vw;
    font-size: 9.6vw;
    line-height: 1.4;
  }
  .assignment__title span {
    letter-spacing: 0;
  }
  .assignment__subtitle {
    margin-bottom: 8vw;
    padding: 2.1333333333vw 0 1.6vw;
    font-size: 3.7333333333vw;
  }
  .assignment__desc {
    margin-bottom: 8vw;
    font-size: 5.3333333333vw;
    text-align: left;
  }
  .assignment__list {
    flex-flow: column;
    gap: 2.6666666667vw;
  }
  .assignment__list::before {
    width: 25.8666666667vw;
    height: 34.9333333333vw;
    top: 2.1333333333vw;
    right: 4.2666666667vw;
    transform: translate(0, -100%);
  }
  .is-taskforce .assignment__list::before {
    width: 31.2vw;
    height: 34.4vw;
  }
  .is-shelter .assignment__list::before {
    width: 29.6vw;
    height: 33.0666666667vw;
  }
  .assignment__list::after {
    content: "";
    width: 6.4vw;
    height: 5.3333333333vw;
    background: url("../img/common/assignment_icon.png") no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: -2.1333333333vw;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  .assignment__list li {
    padding: 6.4vw 6.9333333333vw;
    border-radius: 5.3333333333vw;
  }
  .assignment__list li::before {
    display: none;
  }
  .assignment__list li h4 {
    margin-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .assignment__list li p {
    font-size: 3.7333333333vw;
  }
  .solution {
    padding: 16vw 3.2vw;
  }
  .solution__number {
    margin-bottom: 8vw;
  }
  .solution__number::before {
    height: 0.5333333333vw;
    background: repeating-linear-gradient(to right, #D4D4D5 0, #D4D4D5 1.3333333333vw, transparent 1.3333333333vw, transparent 2.6666666667vw);
    background-size: 2.6666666667vw 1.6vw;
  }
  .solution__number span {
    padding: 0.2666666667vw 4.2666666667vw;
    border-width: 0.2666666667vw;
    font-size: 3.7333333333vw;
  }
  .solution__title {
    margin-bottom: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
  .solution__flow {
    margin-bottom: 5.3333333333vw;
    gap: 8vw;
  }
  .solution__box {
    margin-bottom: 5.3333333333vw;
    padding: 8vw 3.2vw;
  }
  .solution__box > *:last-child {
    margin-bottom: 0;
  }
  .solution__box h3 {
    margin-bottom: 5.3333333333vw;
  }
  .solution__box h3::before {
    height: 0.5333333333vw;
    background: repeating-linear-gradient(to right, #007CC6 0, #007CC6 1.3333333333vw, transparent 1.3333333333vw, transparent 2.6666666667vw);
    background-size: 2.6666666667vw 1.6vw;
  }
  .is-taskforce .solution__box h3::before {
    background: repeating-linear-gradient(to right, #00B4BD 0, #00B4BD 1.3333333333vw, transparent 1.3333333333vw, transparent 2.6666666667vw);
  }
  .is-shelter .solution__box h3::before {
    background: repeating-linear-gradient(to right, #05AA55 0, #05AA55 1.3333333333vw, transparent 1.3333333333vw, transparent 2.6666666667vw);
  }
  .is-disasteragreement .solution__box h3::before {
    background: repeating-linear-gradient(to right, #78C557 0, #78C557 1.3333333333vw transparent 1.3333333333vw, transparent 2.6666666667vw);
  }
  .solution__box h3 span {
    padding: 0 1.0666666667vw;
    font-size: 4.2666666667vw;
    line-height: 1.31;
  }
  .solution__box > p {
    font-size: 3.7333333333vw;
    text-align: left;
    line-height: 1.42;
  }
  .solution__box > p.is-sp-text-center {
    text-align: center;
  }
  .solution__box .list {
    flex-flow: column;
    gap: 2.6666666667vw;
  }
  .solution__box .list li {
    padding: 2.6666666667vw 3.7333333333vw;
    width: 100%;
    gap: 0 2.6666666667vw;
  }
  .solution__box .list li .head {
    width: 25.3333333333vw;
  }
  .solution__box .list li .head span {
    margin-right: 1.0666666667vw;
    font-size: 4.2666666667vw;
  }
  .solution__box .list li .head h4 {
    margin-right: 0;
    font-size: 4.2666666667vw;
  }
  .solution__box .list li p {
    font-size: 3.7333333333vw;
    line-height: 1.28;
  }
  .solution__box .column {
    gap: 8vw;
  }
  .solution__box .column li {
    gap: 4.2666666667vw;
  }
  .solution__box .column li picture {
    width: 100%;
  }
  .solution__box .column li .content {
    width: 100%;
  }
  .solution__box .column li .content h4 {
    margin-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
    text-align: center;
  }
  .solution__box .column li .content h4.is-sp-text-left {
    text-align: left;
  }
  .solution__box .column li .content p {
    font-size: 3.7333333333vw;
  }
  .solution__box .column li .content .link-text {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
  .solution__box .column li .content .button {
    margin: 5.3333333333vw auto 0;
    max-width: 87.2vw;
    height: 15.4666666667vw;
    padding-left: 5.3333333333vw;
  }
  .solution__box .column li .content .button span {
    font-size: 4.8vw;
  }
  .solution__box .column li .content .button::after {
    right: 2.6666666667vw;
  }
  .solution__box .column li .content small {
    display: block;
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
  }
  .solution__box .images {
    max-width: 100%;
    margin: 0 auto 3.7333333333vw;
    flex-flow: column;
    gap: 2.6666666667vw;
  }
  .solution__column {
    margin-bottom: 5.3333333333vw;
    flex-flow: column;
    gap: 4.2666666667vw;
  }
  .solution__column picture {
    width: 100%;
  }
  .solution__column .content {
    width: 100%;
  }
  .solution__column .content h2 {
    margin-bottom: 2.1333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
  .solution__column .content h2.is-sp-text-center {
    text-align: center;
  }
  .solution__column .content p {
    font-size: 3.7333333333vw;
    line-height: 1.42;
  }
  .solution__video {
    margin-bottom: 5.3333333333vw;
    max-width: 93.6vw;
    height: 48.8vw;
  }
  .voice {
    padding: 13.3333333333vw 3.2vw 16vw;
  }
  .voice__inner {
    padding: 12.8vw 3.2vw;
    border: 0.2666666667vw solid #D4D4D5;
    border-radius: 5.3333333333vw;
  }
  .voice__content {
    box-sizing: border-box;
    padding: 0 0 8vw;
    width: 100%;
  }
  .voice__content .lead {
    margin-bottom: 5.3333333333vw;
    font-size: 3.2vw;
  }
  .voice__content .title {
    font-size: 5.3333333333vw;
  }
  .voice__content .text {
    margin-bottom: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
  .voice__content .text::before, .voice__content .text::after {
    font-size: 4.2666666667vw;
  }
  .voice__content .text::before {
    left: -3.7333333333vw;
  }
  .voice__content .text::after {
    right: -3.7333333333vw;
  }
  .voice__content .desc {
    max-width: 100%;
    font-size: 3.7333333333vw;
    line-height: 1.42;
  }
  .voice__profile {
    width: 100%;
    padding-top: 8vw;
    border-left: none;
    border-top: 0.2666666667vw solid #D4D4D5;
  }
  .voice__profile .image {
    margin-bottom: 5.0666666667vw;
    width: 35.4666666667vw;
  }
  .voice__profile .name {
    margin-bottom: 3.2vw;
    font-size: 5.3333333333vw;
  }
  .voice__profile .career {
    font-size: 3.7333333333vw;
  }
}

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