@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sawarabi+Gothic&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  max-width: 100vw;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logoArea {
  display: flex;
  margin: 24px 0;
}
header .logoArea img {
  width: 275px;
  max-width: 46vw;
}
header .kenkou {
  max-width: 46vw;
}
header .kenkou img {
  width: 100%;
}
header .telArea {
  display: flex;
  align-items: center;
}
header .telArea a {
  color: white;
  text-decoration: none;
  padding: 16px 48px;
  margin: 0;
  border-radius: 20px;
  background: linear-gradient(45deg, #ff4400, #ff7f50 50%, #ff7f50 50%, #ffb295);
  transition: 0.2s;
  position: relative;
  font-size: 24px;
}
header .telArea a span {
  z-index: 1;
  position: relative;
}
header .telArea a::after {
  content: "";
  display: block;
  background: linear-gradient(45deg, #ffb295, #ff7f50 50%, #ff7f50 50%, #ff4400);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: inherit;
  z-index: 0;
  opacity: 1;
  transition: 0.2s;
}
header .telArea a:hover::after {
  opacity: 0;
}
@media screen and (max-width: 780px) {
  header .telArea {
    display: none;
  }
}

nav {
  font-size: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: white;
}
nav .inner {
  width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 100vw;
}
nav .inner a {
  flex-grow: 3;
  text-align: center;
  text-decoration: none;
  color: #ff7f50;
  border-right: #ccc 1px solid;
  transition: 0.2s;
  color: black;
  position: relative;
  padding: 16px 0;
}
nav .inner a:hover {
  color: #ff7f50;
  background: white;
}
nav .inner a:hover::before {
  content: "";
  background: red;
  display: block;
  width: 80%;
  height: 1px;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 100;
}
nav .inner a:first-of-type {
  border-left: #ccc 1px solid;
}
nav.float {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
.mainImage {
  width: 100vw;
  position: relative;
}
.mainImage img {
  width: 100%;
  display: block;
}
.mainImage span.caption {
  position: absolute;
  z-index: 1;
  bottom: 60%;
  right: 31%;
  transform: translate(50%, 50%);
  font-size: clamp(12px, 2.3vw, 40px);
  color: #ff7f50;
  white-space: nowrap;
  -webkit-text-stroke: 6px white;
  text-stroke: 6px white;
  paint-order: stroke;
  text-align: center;
  font-weight: bold;
}
.mainImage span.caption .capBig {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-top: 32px;
}
.mainImage span.caption .underline {
  text-decoration: underline;
  text-decoration-color: #ff7f50;
}

.wrapper {
  margin: 0 auto;
}

main .content {
  padding: 4.5vw;
  font-size: clamp(16px, 2vw, 24px);
}
main .content .title {
  font-size: 40px;
  text-align: center;
  padding: 20px 0;
  color: #ff7f50;
  font-size: clamp(26px, 4vw, 40px);
}
main .content table.compTable {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 0 8px #ccc;
  transition: 0.2s;
}
main .content table.compTable:hover {
  box-shadow: 0 0 16px #ccc;
}
main .content table.compTable th,
main .content table.compTable td {
  border: 1px solid #ff7f50;
  padding: 16px;
  font-size: 18px;
}
main .content table.compTable th {
  background-color: #ff7f50;
  color: white;
  border-right: 1px solid white;
}
main .content table.compTable th:last-of-type {
  border-right: 1px solid #ff7f50;
}
main .content table.compTable td.triangle span, main .content table.compTable td.circle span, main .content table.compTable td.cross span {
  display: flex;
}
main .content table.compTable td.triangle span::before, main .content table.compTable td.circle span::before, main .content table.compTable td.cross span::before {
  font-family: "Material Symbols Outlined";
  font-size: 40px;
  line-height: 40px;
  display: inline-block;
  margin-right: 16px;
}
@media screen and (max-width: 700px) {
  main .content table.compTable td.triangle span, main .content table.compTable td.circle span, main .content table.compTable td.cross span {
    flex-direction: column;
    justify-content: space-between;
  }
  main .content table.compTable td.triangle span::before, main .content table.compTable td.circle span::before, main .content table.compTable td.cross span::before {
    display: block !important;
  }
}
main .content table.compTable td.circle span::before {
  content: "circle";
  color: #9dbe2b;
}
main .content table.compTable td.triangle span::before {
  content: "change_history";
  color: #e99810;
}
main .content table.compTable td.cross span::before {
  content: "close";
  color: #ca062b;
}
main .content .compGrid {
  display: grid;
  grid-template-columns: max-content 1fr 1fr;
  background: white;
  box-shadow: 0 0 8px #ccc;
  transition: 0.2s;
  border: 1px solid #ff7f50;
  gap: 0;
}
main .content .compGrid .gridHeader {
  border-bottom: 1px solid #ff7f50;
  border-right: 1px solid #ff7f50;
  display: block;
  background: #ff7f50;
  color: white;
  border-right: 1px solid white;
  text-align: center;
  font-weight: bold;
  white-space: wrap;
}
main .content .compGrid .left {
  opacity: 1;
  border-right: none;
  width: min-content;
}
main .content .compGrid span:nth-of-type(3n) {
  border-right: none;
}
main .content .compGrid span {
  border: 1px solid #ff7f50;
  padding: 16px;
  font-size: 18px;
}
main .content .compGrid span.triangle, main .content .compGrid span.circle, main .content .compGrid span.cross {
  display: flex;
  vertical-align: middle;
  align-items: center;
}
main .content .compGrid span.triangle::before, main .content .compGrid span.circle::before, main .content .compGrid span.cross::before {
  font-family: "Material Symbols Outlined";
  font-size: 40px;
  line-height: 40px;
  display: inline-block;
  margin-right: 16px;
}
main .content .compGrid span.circle::before {
  content: "circle";
  color: #9dbe2b;
}
main .content .compGrid span.triangle::before {
  content: "change_history";
  color: #e99810;
}
main .content .compGrid span.cross::before {
  content: "close";
  color: #ca062b;
}
main .content .compGrid span:nth-of-type(n-3) {
  border-top: none;
}
main .content:nth-of-type(odd) {
  background: #fff5f1;
}
main .content > * {
  max-width: 1200px;
  margin: 0 auto;
}

.content.news .newsBox {
  border: 1px solid #ccc;
  padding: 1em;
  border-radius: 8px;
  background: white;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.content.news .newsBox p {
  border-bottom: 1px dotted #ccc;
  padding: 16px 0;
}
.content.news .newsBox p:first-of-type {
  padding-top: 0;
}
.content.news .newsBox p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.content.news .newsBox:hover {
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
}

.content.onayami .basicFlex {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 32px;
}
.content.onayami .basicFlex .text {
  padding-right: 1em;
  flex-grow: 0.8;
  font-size: clamp(14px, 3.5vw, 30px);
}
.content.onayami .basicFlex .text span.list {
  display: block;
}
.content.onayami .basicFlex .text .osusume {
  margin-top: 16px;
  font-size: 16px;
}
.content.onayami .basicFlex .text .osusume span {
  font-size: clamp(14px, 3.5vw, 24px);
  display: block;
}
.content.onayami .basicFlex .text .osusume span:nth-of-type(1) {
  text-align: left;
}
.content.onayami .basicFlex .text .osusume span:nth-of-type(2) {
  text-align: right;
}
.content.onayami .basicFlex .text .osusume span:nth-of-type(2) .drone,
.content.onayami .basicFlex .text .osusume span:nth-of-type(2) .chosa {
  display: inline-block;
  color: #ff7f50;
  font-weight: bold;
  text-decoration: underline;
  font-size: clamp(14px, 3.5vw, 30px);
}
.content.onayami .basicFlex .image {
  width: 30%;
}
.content.onayami .basicFlex .image img {
  width: 100%;
}
@media screen and (max-width: 780px) {
  .content.onayami .basicFlex {
    flex-direction: column;
    align-items: center;
  }
  .content.onayami .basicFlex .image {
    width: 100%;
    margin-top: 16px;
  }
}

.content.chosa .basicFlex {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  padding: 24px;
  transition: 0.2s;
}
.content.chosa .basicFlex:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.content.chosa .basicFlex .text {
  font-size: 18px;
  margin-left: 16px;
  flex-grow: 1;
}
.content.chosa .basicFlex .text .hiyou {
  border-top: 1px dotted #000000;
  padding: 8px;
  margin-top: 8px;
  color: #ff7f50;
  font-size: 20px;
  background: white;
}
.content.chosa .basicFlex .text .hiyou .title {
  font-size: 20px;
  padding: 0;
  text-align: left;
}
.content.chosa .basicFlex .text .hiyou .example {
  color: #949494;
  font-size: 18px;
}
.content.chosa .basicFlex .text .hiyou .price {
  color: black;
}
.content.chosa .basicFlex .text .hiyou .price .bold {
  font-weight: bold;
  color: red;
  text-decoration: underline;
}
.content.chosa .basicFlex .text .hiyou .note {
  font-size: 14px;
  color: black;
}
.content.chosa .basicFlex .text .hiyou .costFormula {
  color: black;
}
.content.chosa .basicFlex .text .hiyou .costFormula .price {
  color: #5A9CA6;
}
.content.chosa .basicFlex .text .hiyou .costFormula .machine {
  color: #E74C3C;
}
.content.chosa .basicFlex .text .hiyou .costFormula .flight {
  color: #8E44AD;
}
.content.chosa .basicFlex .text .hiyou .costFormula .report {
  color: #636363;
}
.content.chosa .basicFlex .image {
  width: 40%;
}
.content.chosa .basicFlex .image img {
  width: 100%;
}
@media screen and (max-width: 780px) {
  .content.chosa .basicFlex {
    flex-direction: column;
    align-items: center;
  }
  .content.chosa .basicFlex .text {
    margin-left: 0;
    padding: 16px;
    font-size: 18px;
  }
  .content.chosa .basicFlex .image {
    width: 100%;
    margin-top: 16px;
  }
}

.content.flow .flowFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.content.flow .flowFlex .box {
  width: 32%;
  background: white;
  margin-bottom: 32px;
  box-shadow: 0 0 8px #ccc;
  transition: 0.2s;
  font-size: 24px;
}
.content.flow .flowFlex .box .image {
  position: relative;
}
.content.flow .flowFlex .box .image img {
  width: 100%;
}
.content.flow .flowFlex .box .image .num {
  position: absolute;
  font-size: 50px;
  top: 0;
  left: 0;
  width: 1.3em;
  height: 1.3em;
  background: #ff7f50;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content.flow .flowFlex .box h3 {
  text-align: center;
  margin: 8px 0;
}
.content.flow .flowFlex .box p {
  padding: 0 16px 16px;
}
.content.flow .flowFlex .box:hover {
  box-shadow: 0 0 16px #ccc;
  transform: scale(1.01);
}
@media screen and (max-width: 780px) {
  .content.flow .flowFlex {
    flex-direction: column;
    align-items: center;
  }
  .content.flow .flowFlex .box {
    width: 100%;
    margin-bottom: 16px;
  }
}

.content.otherShooting .basicFlex {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ccc;
  box-shadow: 0 0 8px #ccc;
  padding: 24px;
}
.content.otherShooting .basicFlex .text {
  flex-grow: 1;
  font-size: 22px;
}
.content.otherShooting .basicFlex .text .hiyou {
  font-size: 26px;
  font-weight: bold;
  color: #ff7f50;
  margin-top: 8px;
}
.content.otherShooting .basicFlex .text .price {
  color: red;
  font-weight: bold;
  text-decoration: underline;
}
.content.otherShooting .basicFlex .text .note {
  font-size: 18px;
  color: black;
}
.content.otherShooting .basicFlex .image {
  width: 30%;
}
.content.otherShooting .basicFlex .image img {
  width: 100%;
}
@media screen and (max-width: 780px) {
  .content.otherShooting .basicFlex {
    flex-direction: column;
    align-items: center;
  }
  .content.otherShooting .basicFlex .text {
    margin-left: 0;
    padding: 16px;
    font-size: 18px;
  }
  .content.otherShooting .basicFlex .image {
    width: 100%;
    margin-top: 16px;
  }
}
.content.otherShooting img {
  display: block;
}

.content.questions .box {
  border: 1px solid #ccc;
  box-shadow: 0 0 8px #ccc;
  background: white;
}
.content.questions .box .question, .content.questions .box .answer {
  display: flex;
  font-size: clamp(14px, 3vw, 24px);
  text-align: left;
  padding-bottom: 0;
  text-align: left;
  padding: clamp(8px, 3vw, 32px);
  padding-bottom: 0;
}
.content.questions .box .question span, .content.questions .box .answer span {
  flex-grow: 1;
}
.content.questions .box .question::before, .content.questions .box .answer::before {
  display: block;
  min-width: 2em;
  height: 2em;
  background: #ff7f50;
  color: white;
  line-height: 2em;
  margin-right: 16px;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
}
.content.questions .box .question::before {
  content: "Q";
  background: #ff7f50;
}
.content.questions .box .answer::before {
  content: "A";
  background: #00c700;
}
.content.questions .box .answer:last-of-type {
  padding: clamp(8px, 3vw, 32px);
}
.content.questions .box .pulldown:last-of-type {
  padding-bottom: 32px;
}
.content.questions .box .pulldown .title {
  color: black;
  font-size: 24px;
  text-align: left;
  display: block;
  height: fit-content;
  padding: 32px;
  padding-bottom: 0;
}
.content.questions .box .pulldown .title::before {
  content: "Q";
  display: inline-block;
  width: 2em;
  height: 2em;
  font-size: 20px;
  background: #ff7f50;
  color: white;
  line-height: 2em;
  margin-right: 32px;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
}
.content.questions .box .pulldown .text {
  display: block;
  height: 100%;
  overflow-y: hidden;
  transition: 0.2s;
  margin: 0 32px 0 0;
  padding-left: 104px;
  font-size: 24px;
  max-height: 100%;
  opacity: 1;
  position: relative;
  margin: 16px 32px 0 0;
  line-height: 40px;
  margin-bottom: 16px;
}
.content.questions .box .pulldown .text::before {
  content: "A";
  display: inline-block;
  width: 2em;
  height: 2em;
  font-size: 20px;
  background: #00c700;
  color: white;
  line-height: 2em;
  margin-right: 32px;
  margin-left: 8px;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  top: 0;
  left: 24px;
}
.content.questions .box .pulldown.open .text {
  max-height: 100%;
  opacity: 1;
  position: relative;
  margin: 16px 32px 0 0;
  line-height: 40px;
}
.content.questions .box .pulldown:hover .title:hover {
  color: #505050;
}

.content.company {
  background: white !important;
}
.content.company table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.content.company table th,
.content.company table td {
  border-bottom: 1px dotted #ccc;
  padding: 1em;
  font-size: 20px;
  text-align: left;
}
.content.company table th {
  color: black;
  white-space: nowrap;
}
.content.company table td {
  color: black;
}
.content.company table td iframe {
  margin-top: 16px;
  aspect-ratio: 16/9;
  width: 100%;
}
.content.company table td a {
  color: black;
}
.content.company table td a.link {
  color: blue;
}
.content.company table td:has(.logo) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content.company table td:has(.logo) .logo {
  width: 200px;
}
.content.company table td:has(.logo) .logo img {
  width: 100%;
  margin: 20%;
}
@media screen and (max-width: 780px) {
  .content.company th, .content.company td {
    display: block;
  }
  .content.company th {
    border: none !important;
  }
}

.content.contact {
  background: white !important;
}
.content.contact p {
  font-size: 18px;
}
.content.contact form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.content.contact form label {
  margin-top: 16px;
}
.content.contact form label span.hissu {
  color: red;
  display: inline-block;
  padding: 2px 4px;
  border-radius: 4px;
  background: white;
  margin-left: 4px;
}
.content.contact form input,
.content.contact form textarea {
  font-size: 20px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.content.contact form input.error,
.content.contact form textarea.error {
  border-color: red;
  background: #f2dede;
}
.content.contact form textarea {
  height: 200px;
}
.content.contact form table {
  table-layout: auto;
  width: 100%;
}
.content.contact form table th {
  background-color: #ff7f50;
  color: white;
  padding: 16px;
  width: 0;
  white-space: nowrap;
  max-width: fit-content;
}
.content.contact form table th label {
  display: block;
  width: max-content;
}
.content.contact form table th label .hissu {
  color: red;
  display: inline-block;
  padding: 2px 4px;
  border-radius: 4px;
  background: white;
  margin-left: 4px;
}
.content.contact form table td {
  padding: 16px;
  background: #fff5f1;
}
.content.contact form table td input,
.content.contact form table td textarea {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 18px;
}
.content.contact form input#submitBtn {
  display: block;
  width: 300px;
  background: #ff7f50;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  margin: 64px auto 16px;
  transition: 0.2s;
}
.content.contact form input#submitBtn:hover {
  background: white;
  color: #ff7f50;
}
.content.contact .resultWrapper {
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  border-radius: 8px;
}
.content.contact .resultWrapper #formResult {
  margin: auto;
  font-size: 20px;
  padding: 16px;
  display: none;
  width: max-content;
}
.content.contact .resultWrapper:has(.formError) {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.content.contact .resultWrapper:has(.formSuccess) {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

footer {
  background: #ff7f50;
  color: white;
  padding: 20px 0;
  display: flex;
  margin: auto 0 0 0;
}
footer .inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .inner .companyInfo h2 {
  border-bottom: 1px solid white;
}
footer .inner .companyInfo a {
  border-bottom: 1px solid white;
}
footer .inner .link {
  height: 100%;
  display: flex;
  flex-direction: column;
}
footer .inner .link a {
  margin: 4px 0;
}
footer .inner .link a::before {
  content: ">";
  margin-right: 4px;
}
footer .inner .logo img {
  width: 300px;
}
@media screen and (max-width: 780px) {
  footer .inner {
    flex-direction: column;
    align-items: center;
  }
  footer .inner .companyInfo {
    margin-bottom: 32px;
    width: 90%;
  }
  footer .inner .link {
    display: none;
  }
  footer .inner .logo {
    margin-bottom: 32px;
    width: 90%;
  }
  footer .inner .logo img {
    width: 100%;
  }
}
footer a {
  color: white;
  text-decoration: none;
}

.tac {
  text-align: center;
}

.fs30 {
  font-size: 30px;
  font-size: clamp(16px, 2vw, 30px);
}

.fs24 {
  font-size: 24px;
  font-size: clamp(16px, 2vw, 24px);
}

.fs20 {
  font-size: 20px;
}

.name {
  display: inline-block;
  filter: invert(1);
  width: 310px;
  user-select: none;
}/*# sourceMappingURL=style.css.map */