@charset "UTF-8";

/* ファーストビュー */
.fv {
  height: 100vh;
  background-color: var(--color2);
  position: relative;
}
.fv::after {
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(../img/top/img_fv01.png);
  background-position: center right;
  position: absolute;
  top: 0;
  right: 0;
}
.fv .wrap {
  height: 100%;
  position: relative;
}
.fv .box {
  position: absolute;
  left: 0;
  z-index: 1;
}
.fv .childbox {
  width: 230px;
  height: 230px;
  color: var(--color2);
  background-color: var(--color3);
  margin-top: 30px;
}
.fv .childbox .txt {
  font-size: 24px;
}
.fv .childbox .sub {
  font-size: 36px;
}
.fv .pictsp {
  display: none;
}
@media screen and (max-width:1100px) {
  .fv {
    height: calc(100vh - 80px);
    margin-top: 80px;
  }
  .fv .title {
    width: 350px;
  }
  .fv .childbox {
    width: 160px;
    height: 160px;
  }
  .fv .childbox .txt {
    font-size: 20px;
  }
  .fv .childbox .sub {
    font-size: 30px;
  }
}
@media screen and (max-width:768px) {
  .fv {
    height: calc(100vh - 60px);
    margin-top: 60px;
    overflow: hidden;
  }
  .fv::after {
    background-image: url(../img/top/img_fv02.png);
  }
  .fv .box {
    bottom: 40px;
  }
  .fv .title {
    width: auto;
  }
  .fv .childbox {
    width: auto;
    height: auto;
    border-radius: 0 50vh 50vh 0;
    position: relative;
  }
  .fv .childbox::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color3);
    position: absolute;
    top: 0;
    left: -100%;
  }
  .fv .childinn {
    height: 65px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .fv .childbox .txt {
    font-size: 18px;
  }
  .fv .childbox .sub {
    font-size: 25px;
  }
}
@media screen and (max-width:480px) {
  .fv::after {
    content: none;
  }
  .fv .pictsp {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
  }
}
@media screen and (min-width:769px) {
  .fv .box {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  .fv .childbox {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* REとは */
.re {
  background-color: var(--color2);
}
.re .list {
  align-items: center;
  justify-content: space-between;
  margin: 60px 0;
}
.re .item {
  width: 100%;
  max-width: 280px;
  border-radius: 50vh;
  background-color: var(--color3);
  padding: 60px 20px 100px;
  position: relative;
}
.re .item .sub {
  font-size: 35px;
  margin: 20px 0;
}
.re .item .childtxt {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.re .icon {
  min-width: 80px;
  box-sizing: border-box;
}
.re .childbox {
  color: var(--color3);
  border-top: solid 2px var(--color3);
  padding-top: 30px;
  margin-bottom: 90px;
  position: relative;
}
.re .childbox::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 21px solid var(--color3);
  border-top: 0;
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.re .childbox .sub {
  font-size: 20px;
  text-align: center;
}
.re .childbox .sub span {
  font-size: 16px;
}
.re .childbox .txt {
  text-align: center;
  margin-top: 15px;
}
.re .imagetxt {
  font-size: 38px;
  margin-bottom: 40px;
}
@media screen and (max-width:960px) {
  .re .item .sub {
    font-size: 25px;
  }
  .re .item .txt,
  .re .item .childtxt {
    font-size: 14px;
  }
}
@media screen and (max-width:768px) {
  .re .list {
    display: block;
  }
  .re .item {
    width: 80%;
    max-width: none;
    margin: 0 auto;
  }
  .re .childbox {
    padding-top: 20px;
    margin-top: 40px;
    margin-bottom: 0;
  }
  .re .childbox .sub {
    font-size: 16px;
    text-align: justify;
  }
  .re .childbox .txt {
    font-size: 14px;
    text-align: justify;
  }
  .re .icon {
    margin: 20px 0;
  }
  .re .imagetxt {
    font-size: 20px;
  }
  .re .image {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width:769px) {
  .re .imageB {
    margin: 60px 0;
  }
}

/* おすすめ */
.recommend .section {
  padding-bottom: 0;
}
.recommend .title {
  width: 90%;
  max-width: 1000px;
  font-size: 38px;
  margin: 0 auto 60px;
}
.recommend .box {
  width: calc(((100vw - 1000px)/2) + 1000px);
  align-items: flex-end;
  margin-bottom: 40px;
  overflow: hidden;
}
.recommend .box:last-child {
  margin-bottom: 0;
}
.recommend .box:nth-child(odd) {
  flex-direction: row-reverse;
  margin-left: auto;
}
.recommend .pict {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.recommend .box:nth-child(odd) .pict {
  border-top-left-radius: 50px;
}
.recommend .box:nth-child(even) .pict {
  border-top-right-radius: 50px;
}
.recommend .childbox {
  padding: 60px;
  box-sizing: border-box;
  position: relative;
}
.recommend .childbox .sub {
  font-size: 26px;
  line-height: 2;
  color: var(--color3);
  background-color: var(--color1);
  display: inline;
}
.recommend .childbox .sub span {
  padding: 0 15px;
}
.recommend .childbox .txt {
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
  margin-top: 20px;
}
.recommend .childbox .txt span {
  color: var(--color2);
}
@media screen and (max-width:1100px) {
  .recommend .box {
    width: 94.5%;
  }
}
@media screen and (max-width:960px) {
  .recommend .box {
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 30%, var(--color4) 30%, var(--color4) 100%);
    flex-wrap: wrap;
  }
  .recommend .pict {
    width: 94.5%;
    box-sizing: border-box;
  }
}
@media screen and (max-width:768px) {
  .recommend .title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .recommend .childbox {
    padding: 40px 5%;
  }
  .recommend .childbox .sub {
    font-size: 18px;
  }
  .recommend .childbox .txt {
    font-size: 16px;
  }
}
@media screen and (min-width:961px) {
  .recommend {
    position: relative;
  }
  .recommend::after {
    content: "";
    width: 100%;
    height: 170px;
    background-color: var(--color5);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
  }
  .recommend .pict {
    max-height: 460px;
    margin-bottom: 40px;
    overflow: hidden;
  }
  .recommend .pict img {
    width: 100%;
    object-fit: cover;
  }
  .recommend .childbox {
    width: 500px;
    min-width: 500px;
    background-color: var(--color4);
  }
  .recommend .childbox::after {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: var(--color4);
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .recommend .box:nth-child(odd) .childbox {
    border-radius: 50px 0 0 50px;
  }
  .recommend .box:nth-child(even) .childbox {
    border-radius: 0 50px 50px 0;
  }
  .recommend .box:nth-child(odd) .childbox::after {
    right: -100vw;
  }
  .recommend .box:nth-child(even) .childbox::after {
    left: -100vw;
  }
}

/* サービス */
.service {
  background-color: var(--color5);
}
.service .title {
  font-size: 25px;
  margin-bottom: 40px;
}
.service .title span {
  color: var(--color2);
}
.service .flex_inn {
  align-items: center;
  justify-content: space-between;
}
.service .item {
  border-radius: 50vh;
  background-color: var(--color3);
  padding: 30px;
  padding-right: 60px;
  margin-bottom: 15px;
}
.service .item:last-child {
  margin-bottom: 0;
}
.service .item .box,
.service .item .txt {
  width: 48%;
  box-sizing: border-box;
}
.service .item .box {
  align-items: center;
}
.service .item .sub {
  font-size: 20px;
  margin-left: 30px;
}
.service .item .txt {
  line-height: 1.75;
  text-align: justify;
}
.service .item .txt span {
  color: var(--color2);
}
@media screen and (max-width:768px) {
  .service .title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .service .flex_inn {
    flex-wrap: wrap;
  }
  .service .item {
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 20px;
  }
  .service .item .box,
  .service .item .txt {
    width: 100%;
  }
  .service .item .box {
    text-align: center;
    display: block;
  }
  .service .item .sub {
    margin: 20px 0;
  }
}

/* プロジェクト */
.project {
  color: var(--color3);
  background-image: url(../img/top/img_top15.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0;
}
.project .title {
  font-size: 34px;
}
.project .sub {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.project .box {
  padding: 20px;
  position: relative;
}
.project .box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #113C67;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.project .box .txt {
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.project .box .txt span {
  color: var(--color2);
}
@media screen and (max-width:768px) {
  .project {
    background-position: center right;
    padding: 80px 0;
  }
  .project .title {
    font-size: 20px;
  }
  .project .sub {
    font-size: 16px;
    line-height: 1.75;
    text-align: justify;
  }
  .project .box .txt {
    font-size: 14px;
    text-align: justify;
  }
}
@media screen and (min-width:961px) {
  .project {
    background-attachment: fixed;
  }
}

/* 費用 */
.price {
  background-color: var(--color5);
}
.price .box {
  margin-bottom: 30px;
}
.price .box:last-of-type {
  margin-bottom: 0;
}
.price .tag {
  max-width: 230px;
  line-height: 45px;
  font-size: 20px;
  color: var(--color3);
  border-radius: 10px 10px 0 0;
  background-color: var(--color1);
  margin-left: 30px;
}
.price .childbox {
  border-radius: 20px;
  background-color: var(--color3);
  padding: 30px;
}
.price .flex_inn {
  align-items: center;
  justify-content: space-between;
}
.price .left,
.price .tablebox {
  width: 48%;
  box-sizing: border-box;
}
.price .left {
  align-items: center;
  gap: 20px;
}
.price .left .sub {
  font-size: 40px;
  display: flex;
  align-items: center;
}
.price .left .sub span {
  font-size: 18px;
}
.price .table {
  width: 100%;
  box-sizing: border-box;
}
.price .table tr {
  border: solid 1px var(--color1);
}
.price .table th,
.price .table td {
  padding: 15px;
}
.price .table th {
  width: 135px;
  min-width: 135px;
  font-size: 20px;
  background-color: #EDEDED;
}
.price .table td {
  font-size: 30px;
}
.price .table td span {
  font-size: 20px;
}
.price .comment {
  font-size: 18px;
  margin-top: 30px;
}
.price .comment span {
  font-size: 23px;
  border: solid 1px var(--color1);
  padding: 3px 10px;
  margin-right: 20px;
  display: inline-block;
}
.price .list {
  margin-top: 20px;
}
.price .item {
  line-height: 1.75;
  text-align: justify;
  padding-left:1em;
  text-indent:-1em;
}
@media screen and (max-width:960px)  {
  .price .left .sub {
    font-size: 30px;
    display: block;
  }
  .price .left .sub span {
    font-size: 14px;
    display: block;
  }
}
@media screen and (max-width:768px)  {
  .price .flex_inn {
    flex-wrap: wrap;
  }
  .price .tag {
    max-width: 175px;
    line-height: 40px;
    font-size: 16px;
  }
  .price .left,
  .price .tablebox {
    width: 100%;
  }
  .price .left {
    text-align: center;
    display: block;
  }
  .price .left .sub {
    font-size: 25px;
    margin-top: 5px;
  }
  .price .tablebox {
    margin-top: 20px;
  }
  .price .table th,
  .price .table td {
    padding: 15px 10px;
  }
  .price .table th {
    width: 95px;
    min-width: 95px;
    font-size: 14px;
  }
  .price .table td {
    font-size: 18px;
  }
  .price .table td span {
    font-size: 12px;
  }
  .price .comment {
    font-size: 14px;
  }
  .price .comment span {
    font-size: 18px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
  }
  .price .item {
    font-size: 14px;
  }
}

/* 導入の流れ */
.flow .box {
  border-radius: 50vh;
  border: solid 1px var(--color1);
  background-color: var(--color5);
  padding: 40px;
  margin-bottom: 15px;
}
.flow .flex_inn {
  align-items: center;
  justify-content: space-between;
}
.flow .left,
.flow .txt {
  width: 48%;
  box-sizing: border-box;
}
.flow .left {
  align-items: center;
}
.flow .num {
  width: 80px;
  min-width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 25px;
  color: var(--color3);
  border-radius: 100%;
  background-color: var(--color1);
}
.flow .sub {
  font-size: 20px;
  margin-left: 30px;
}
.flow .txt {
  text-align: justify;
  line-height: 1.75;
}
@media screen and (max-width:768px) {
  .flow .flex_inn {
    flex-wrap: wrap;
  }
  .flow .box {
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 20px;
  }
  .flow .left,
  .flow .txt {
    width: 100%;
  }
  .flow .left {
    text-align: center;
    display: block;
  }
  .flow .num {
    margin: 0 auto;
  }
  .flow .sub {
    font-size: 18px;
    margin: 20px 0;
  }
  .flow .comment {
    font-size: 14px;
    text-align: justify;
    padding-left: 1em;
    text-indent: -1em;
  }
}

/* 運用コスト */
.cost {
  background-color: var(--color5);
}
.cost .table {
  width: 100%;
  box-sizing: border-box;
}
.cost .table th,
.cost .table td {
  border: solid 1px var(--color1);
}
.cost .table th {
  font-size: 24px;
  padding: 10px;
}
.cost .table th.none {
  border: none;
}
.cost .table th.th2 {
  width: 50%;
  background-color: var(--color4);
}
.cost .table th.th3 {
  width: 50%;
  color: var(--color3);
  background-color: var(--color2);
}
.cost .table td {
  font-size: 18px;
  background-color: var(--color3);
  padding: 25px;
}
.cost .table td.left {
  width: 270px;
  min-width: 270px;
  font-size: 20px;
  background-color: var(--color4);
}
.cost .table td.td3 {
  position: relative;
}
.cost .table td span {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.cost .list {
  margin-top: 15px;
}
.cost .item {
  line-height: 1.75;
  text-align: justify;
  padding-left:1em;
  text-indent:-1em;
}
.cost .scrolltxt {
  display: none;
}
@media screen and (max-width:960px) {
  .cost .tablebox {
    overflow-x: scroll;
  }
  .cost .table {
    width: 1000px;
  }
  .cost .scrolltxt {
    font-size: 12px;
    display: block;
    margin-top: 15px;
  }
}
@media screen and (max-width:768px) {
  .cost .item {
    font-size: 14px;
  }
  .cost .table {
    width: 800px;
  }
  .cost .table th {
    font-size: 18px;
  }
  .cost .table td {
    font-size: 16px;
  }
  .cost .table td.left {
    width: 200px;
    min-width: 200px;
    font-size: 16px;
  }
}
@media screen and (max-width:480px) {
  .cost .table {
    width: 720px;
  }
}

/* 災害時の活用 */
.utilizing .list {
  justify-content: space-between;
}
.utilizing .item {
  width: 48%;
  border-radius: 20px;
  border: solid 1px var(--color1);
  background-color: var(--color4);
  padding: 50px 40px;
  box-sizing: border-box;
}
.utilizing .item .sub {
  font-size: 22px;
  margin-bottom: 30px;
}
.utilizing .item .txt {
  line-height: 1.75;
  text-align: justify;
}
@media screen and (max-width:768px) {
  .utilizing .list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .utilizing .item {
    width: 100%;
    padding: 40px 30px;
  }
  .utilizing .item .sub {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* よくあるご質問 */
.faq {
  background-color: var(--color5);
}
.faq .item {
  border-radius: 50vh;
  background-color: var(--color3);
  padding: 30px 60px;
  margin-bottom: 15px;
  cursor: pointer;
}
.faq .item:last-child {
  margin-bottom: 0;
}
.faq .item .q_box,
.faq .item .a_box .inn {
  align-items: center;
  gap: 20px;
}
.faq .item .q_box {
  position: relative;
}
.faq .item .q_box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 1px;
  transform: rotate(90deg);
  background: var(--color1);
  transition: all .3s ease-in-out;
}
.faq .item .q_box.open::before {
  transform: rotate(180deg);
}
.faq .item .q_box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 1px;
  background: var(--color1);
  transition: all .2s ease-in-out;
}
.faq .item .q_box.open::after {
  opacity: 0;
}
.faq .item .icon {
  font-size: 40px;
  line-height: 1;
  color: var(--color2);
}
.faq .item .q_box .title,
.faq .item .a_box .txt {
  font-size: 18px;
  text-align: justify;
}
.faq .item .a_box {
  border-top: dashed 1px var(--color1);
  padding-top: 20px;
  margin-top: 20px;
  display: none;
}
@media screen and (max-width:768px) {
  .faq .item {
    border-radius: 20px;
    padding: 20px;
    padding-right: 50px;
  }
  .faq .item .icon {
    font-size: 30px;
  }
  .faq .item .q_box .title,
  .faq .item .a_box .txt {
    font-size: 14px;
  }
  .faq .item .q_box::before,
  .faq .item .q_box::after {
    width: 20px;
    right: -30px;
  }
}

/* アクセス */
.access .section {
  padding: 40px 0;
}
.access .title {
  font-size: 22px;
}
.access .pict {
  margin: 20px 0;
}
.access .txt {
  font-size: 20px;
}
@media screen and (max-width:768px) {
  .access .title {
    font-size: 18px;
  }
  .access .pict img {
    width: 230px;
  }
  .access .txt {
    font-size: 14px;
  }
}

/* マップ */
.map {
  height: 580px;
}
.map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width:768px) {
  .map {
    height: 300px;
  }
}

/* お問い合わせ */
.contact {
  background-color: var(--color2);
}
.contact .sectitlebox .secsub {
  font-size: 16px;
  letter-spacing: .3em;
  color: var(--color3);
}
.contact .sectitlebox .sectitle {
  font-size: 30px;
  color: var(--color3);
}
.contact .list {
  align-items: center;
  justify-content: space-between;
}
.contact .item {
  width: 48%;
  box-sizing: border-box;
}
.contact .item.tel {
  position: relative;
}
.contact .item.tel::after {
  content: "平日9:00〜18:00";
  font-size: 14px;
  color: var(--color3);
}
.contact .item a {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all .3s;
}
.contact .item a:hover {
  opacity: .75;
}
.contact .item.tel a {
  font-size: 50px;
  line-height: 1;
  color: var(--color3);
}
.contact .item.mail a {
  font-size: 20px;
  border-radius: 50vh;
  color: var(--color2);
  background-color: var(--color3);
  padding: 10px 15px;
}
@media screen and (max-width:1100px) {
  .contact .list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .contact .item {
    width: 100%;
    max-width: 465px;
  }
  .contact .item.tel::after {
    text-align: right;
    display: block;
  }
}
@media screen and (max-width:768px) {
  .contact .sectitlebox .secsub {
    font-size: 12px;
  }
  .contact .sectitlebox .sectitle {
    font-size: 22px;
  }
  .contact .item {
    max-width: none;
  }
  .contact .item img {
    width: 40px;
  }
  .contact .item.tel a {
    font-size: clamp(33px, 9.61vw, 48px);
  }
}
@media screen and (min-width:1101px) {
  .contact .item.tel::after {
    position: absolute;
    bottom: -18px;
    right: 15px;
  }
}

/* フォーム */
#form {
  /* padding-top: 80px; */
}
#form .formtxt {
  color: var(--color3);
  margin-bottom: 40px;
}
.form_area {
  max-width: 600px;
  margin: 0 auto;
}
.form_area .box {
  font-size: 14px;
	margin-bottom: 30px;
}
.form_area .box .title {
  color: var(--color3);
	margin-bottom: 10px;
}
.form_area .box .title span.req {
	font-size: 13px;
	color: var(--color7);
	margin-left: 0.5em;
}
.form_area .box input[type="text"],
.form_area .box input[type="email"],
.form_area .box input[type="tel"] {
	width: 100%;
	height: 50px;
	font-size: 14px;
	box-sizing: border-box;
	background: none;
	background-color: var(--color3);
	border: none;
	border-radius: 0;
	padding: 10px;
	outline: none;
}
.form_area .box input[type="tel"] {
  width: 50%;
}
.form_area .box textarea {
	width: 100%;
	font-size: 14px;
	background: none;
	background-color: var(--color3);
	border: none;
	border-radius: 0;
	padding: 10px;
	outline: none;
}
.form_area .privacybox {
  height: 350px;
  border-radius: 0;
  background-color: var(--color3);
  padding: 30px;
  margin-bottom: 20px;
  overflow-y: scroll;
  box-sizing: border-box;
}
.form_area .privacybox .inn {
  margin-bottom: 40px;
}
.form_area .privacybox .inn:last-child {
  margin-bottom: 0;
}
.form_area .privacybox .sub {
  font-size: 14px;
  margin-bottom: 10px;
}
.form_area .privacybox .txt {
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 0;
}
.formbtn {
	width: 100%;
	max-width: 380px;
	margin: 50px auto 0;
}
.formbtn input[type="submit"] {
	width: 100%;
	line-height: 60px;
  font-size: 16px;
	font-weight: bold;
  letter-spacing: .1em;
  text-align: center;
  color: var(--color3);
  display: block;
  box-sizing: border-box;
  border: none;
  background-color: var(--color1);
  border-radius: 0;
  padding: 0 10px;
  cursor: pointer;
}
.formbtn button {
	margin-top: 20px;
}
@media screen and (max-width:960px) {
  .form_area .privacybox {
    height: 280px;
    padding: 20px;
  }
  .form_area .privacybox .sub,
  .privacytxt {
    font-size: 14px;
  }
  .form_area .privacybox .txt {
    font-size: 13px;
  }
	.formbtn input[type="submit"] {
		line-height: 50px;
		font-size: 14px;
		appearance: none;
		-webkit-appearance: none;
	}
}
@media screen and (max-width:768px) {
  #form .formtxt {
    font-size: 14px;
  }
}
@media screen and (min-width:961px)  {
	.formbtn input[type="submit"] {
		transition: all .3s;
	}
	.formbtn input[type="submit"]:hover {
    color: var(--color1);
		background-color: var(--color3);
	}
}