* {
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans JP", sans-serif;
  color: #5a5a5a;
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.wrapper {
  overflow: hidden;
  width: 100%;
}

@media all and (min-width: 768px) {
  body {
    min-width: 1280px;
  }
}
header #hamburger {
  position: fixed;
  top: 5%;
  left: 5%;
  z-index: 999;
  width: 55px;
  height: 55px;
  background-image: url(../images/hamburger-bg.svg);
}
header #hamburger span {
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transition: 0.3s;
  left: 16.5px;
}
header #hamburger span:first-child {
  top: 18.5px;
}
header #hamburger span:nth-child(2) {
  top: 26.5px;
}
header #hamburger span:last-child {
  top: 34.5px;
}
header #hamburger.open span {
  width: 24px;
  left: 19px;
}
header #hamburger.open span:first-child {
  transform: rotate(45deg);
  transform-origin: left;
}
header #hamburger.open span:nth-child(2) {
  opacity: 0;
}
header #hamburger.open span:last-child {
  transform: rotate(-45deg);
  transform-origin: left;
  top: 35px;
}
header nav {
  position: fixed;
  background-color: #ff7800;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  opacity: 0;
  transition: opacity 0.3s;
}
header nav.act {
  z-index: 10;
  opacity: 1;
}
header nav ul {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header nav ul li {
  margin-bottom: 12%;
}
header nav ul li img {
  width: auto;
  height: 6vw;
  max-height: 24px;
  filter: brightness(0%) invert(100%);
}

@media all and (min-width: 768px) {
  header #hamburger {
    display: none;
  }
  header nav {
    height: 100px;
    background-color: #fff;
    z-index: 10;
    opacity: 1;
  }
  header nav ul {
    min-width: 1280px;
    flex-direction: row;
    height: 100px;
  }
  header nav ul li {
    margin: 20px 20px 0;
  }
  header nav ul li img {
    height: 19px;
    filter: brightness(65%) grayscale(100%);
    transition: 0.3s;
  }
  header nav ul li a:hover img {
    filter: none;
  }
}
#splash {
  width: 100%;
  height: 192vw;
  min-height: 100vh;
  background-color: #ff7800;
  position: fixed;
  z-index: 1000;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
#splash::-webkit-scrollbar {
  display: none;
}
#splash .inner {
  position: relative;
  width: 100%;
  height: calc(100% + 1px);
}
#splash .inner > div {
  position: absolute;
  width: 84vw;
  height: 84vw;
  left: 8vw;
  top: calc(50% - 42vw - 30px);
}
#splash .inner > div .splash-1 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
#splash .inner > div .splash-2 {
  width: 66%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
#splash.fadein {
  animation: splashAnim 6s linear forwards;
}
#splash.fadein .inner > div .splash-1 {
  animation: splashAnim1 6s linear forwards;
}
#splash.fadein .inner > div .splash-2 {
  animation: splashAnim2 6s linear forwards;
}
#splash.hide {
  display: none;
}

@media all and (min-width: 768px) {
  #splash {
    min-width: 1280px;
    height: 100vh;
    min-height: 800px;
  }
  #splash .inner > div {
    width: 64vh;
    height: 64vh;
    min-width: 512px;
    min-height: 512px;
    max-width: 696px;
    max-height: 696px;
    left: 50%;
    top: calc(50% + 30px);
    transform: translate(-50%, -50%);
  }
}
@keyframes splashAnim {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes splashAnim1 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes splashAnim2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bg-top {
  background-image: url(../images/bg_top-sp.png);
  background-size: auto 192vw;
  background-position: center center;
  background-repeat: no-repeat;
}

@media all and (min-width: 768px) {
  .bg-top {
    background-image: url(../images/bg_top-pc-800.png);
    background-size: 2500px auto;
    background-position: center top;
  }
}
@media all and (min-width: 768px) and (min-height: 960px) {
  .bg-top {
    background-image: url(../images/bg_top-pc-960.png);
  }
}
@media all and (min-width: 768px) and (min-height: 1130px) {
  .bg-top {
    background-image: url(../images/bg_top-pc-1130.png);
  }
}
@media all and (min-width: 768px) and (min-height: 1250px) {
  .bg-top {
    background-image: url(../images/bg_top-pc-1250.png);
  }
}
section > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s, transform 1.5s;
}

section.fadein > * {
  opacity: 1;
  transform: none;
}

.topWrap {
  position: relative;
  height: 192vw;
  min-height: 100vh;
}
.topWrap .top .ttl {
  position: absolute;
  width: 84vw;
  height: 84vw;
  left: 8vw;
  top: calc(50% - 42vw - 30px);
}
.topWrap .top .ttl .circle {
  display: block;
  animation: rotateAnim 20s linear infinite;
  animation-direction: reverse;
  position: absolute;
  top: 0;
  left: 0;
}
.topWrap .top .ttl h1 {
  width: 66%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topWrap .comment {
  position: absolute;
  width: 55vw;
  top: 123vw;
  right: -3%;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media all and (min-width: 768px) {
  .topWrap {
    height: 100vh;
    min-height: 800px;
  }
  .topWrap .top .ttl {
    width: 64vh;
    height: 64vh;
    min-width: 512px;
    min-height: 512px;
    max-width: 696px;
    max-height: 696px;
    left: 50%;
    top: calc(50% + 30px);
    transform: translate(-50%, -50%);
  }
  .topWrap .top .comment {
    width: auto;
    height: 30vh;
    min-height: 240px;
    max-height: 283px;
    top: auto;
    bottom: 10px;
    right: calc(50% - 600px);
  }
}
main {
  margin: 0 auto;
}
main section h2 {
  padding-top: 30%;
}
main section h2 img:first-of-type {
  width: auto;
  height: 12.5vw;
  margin: 0 auto 7%;
}
main section h2 img:last-of-type {
  width: 6.5vw;
  margin: 0 auto;
}
main section h3 {
  text-align: center;
  margin-bottom: 11%;
}
main section h3 span {
  display: inline-block;
  font-size: min(4vw, 22px);
  line-height: 1.4;
  text-indent: 0.6em;
  letter-spacing: 0.6em;
  border-bottom: solid 1px;
  font-weight: bold;
}
main section .sectionInner {
  width: 72%;
  margin: 0 auto;
}
main section .sectionInner p {
  font-size: 3.47vw;
  line-height: 1.85;
  margin-bottom: 1.5em;
}
main section .sectionInner p br {
  display: none;
}

@media all and (min-width: 768px) {
  main section h2 {
    padding-top: 100px;
  }
  main section h2 img:first-of-type {
    width: auto;
    height: 98px;
    margin: 0 auto 44px;
  }
  main section h2 img:last-of-type {
    width: 35px;
    margin: 0 auto;
  }
  main section h3 {
    margin-bottom: 80px;
  }
  main section .sectionInner {
    width: 1280px;
  }
  main section .sectionInner p {
    text-align: center;
    font-size: 16px;
    line-height: 2.6;
    margin-bottom: 0;
  }
  main section .sectionInner p br {
    display: block;
  }
}
#about {
  background-image: url(../images/bg_about-sp.png);
  background-size: auto 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 44%;
}
#about h2 {
  margin: 0 auto 7%;
}

@media all and (min-width: 768px) {
  #about {
    background-image: url(../images/bg_about-pc.png);
    background-size: 2500px;
    padding-bottom: 130px;
  }
  #about h2 {
    margin: 0 auto 50px;
  }
}
#service {
  background-image: url(../images/bg_service-sp.png);
  background-size: auto 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 60%;
}
#service h2 {
  margin: 0 auto 7%;
}
#service .service_h3-2 {
  margin-top: 55%;
}
#service .serviceBox > div {
  margin: 15.5% auto;
}
#service .serviceBox img {
  width: 85%;
  margin: 0 auto 8%;
}
#service .serviceBox h4 {
  text-align: center;
  font-size: min(4vw, 18px);
  line-height: 1.4;
  margin-bottom: 8%;
  letter-spacing: 0.14em;
}
#service .serviceBox h4 img {
  width: 6.5vw;
  margin: 8% auto 0;
}

@media all and (min-width: 768px) {
  #service {
    background-image: url(../images/bg_service-pc.png);
    background-size: 2500px;
    padding-bottom: 100px;
    background-position: top center;
  }
  #service h2 {
    margin: 0 auto 50px;
  }
  #service .service_h3-2 {
    margin-top: 100px;
  }
  #service .serviceBox {
    display: flex;
    width: 664px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #service .serviceBox:first-of-type {
    margin-top: 110px;
  }
  #service .serviceBox > div {
    width: 272px;
    margin: 0 0 90px;
  }
  #service .serviceBox img {
    width: 264px;
    margin-bottom: 25px;
  }
  #service .serviceBox h4 img {
    width: 27px;
    margin-top: 20px;
  }
  #service .serviceBox p {
    text-align: left;
    font-size: 14px;
    line-height: 1.86;
  }
  #service .serviceBox.center {
    justify-content: center;
  }
  #service .serviceBox.center > div {
    width: 420px;
  }
  #service .serviceBox.center p {
    width: 272px;
    margin: 0 auto;
  }
}
#works {
  background-image: url(../images/bg_works-sp.png);
  background-size: auto 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 42%;
}
#works h2 {
  margin: 0 auto 7%;
}
#works .swiper .swiper-slide div {
  width: 78%;
  aspect-ratio: 7/6;
  display: block;
  margin: 0 auto;
}
#works .swiper .swiper-slide img {
  border-radius: 15%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 5%;
}
#works .swiper .swiper-slide p {
  -webkit-text-size-adjust: none;
  font-size: min(3.2vw, 14px);
  text-align: center;
  margin-bottom: 3em;
}
#works .swiper .swiper-button-prev, #works .swiper .swiper-button-next {
  width: 12px;
  height: 15px;
  background-size: cover;
  bottom: 0;
  top: auto;
}
#works .swiper .swiper-button-prev::after, #works .swiper .swiper-button-next::after {
  display: none;
}
#works .swiper .swiper-button-prev {
  background-image: url(../images/arrow_left.svg);
  left: 44%;
}
#works .swiper .swiper-button-next {
  background-image: url(../images/arrow_right.svg);
  right: 44%;
}

@media all and (min-width: 768px) {
  #works {
    background-image: url(../images/bg_works-pc.png);
    background-size: 2500px;
    padding-bottom: 170px;
    background-position: top center;
  }
  #works h2 {
    margin: 0 auto 50px;
  }
  #works .swiper {
    width: 760px;
  }
  #works .swiper .swiper-slide div {
    width: 640px;
    height: 456px;
    aspect-ratio: auto;
    margin-bottom: 20px;
  }
  #works .swiper .swiper-slide img {
    border-radius: 50px;
    margin-bottom: 0;
  }
  #works .swiper .swiper-button-prev, #works .swiper .swiper-button-next {
    top: 238px;
    bottom: auto;
    width: 21px;
    height: 26px;
  }
  #works .swiper .swiper-button-prev {
    left: 0px;
  }
  #works .swiper .swiper-button-next {
    right: 0px;
  }
}
#faq {
  background-image: url(../images/bg_faq-sp.png);
  background-size: auto 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 30%;
}
#faq h2 {
  margin: 0 auto 7%;
}
#faq h3 {
  margin-bottom: 15%;
}
#faq .faqWrap {
  width: 85%;
  margin: 0 auto;
}
#faq .faqWrap .box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5%;
}
#faq .faqWrap .box img {
  width: 7.8%;
  margin-right: 3.2%;
}
#faq .faqWrap .box p {
  width: 85%;
  font-size: min(3.47vw, 16px);
  line-height: 1.85;
}
#faq .faqWrap .box.answer {
  margin-bottom: 20%;
}
#faq .faqWrap .box.middle {
  align-items: center;
}

@media all and (min-width: 768px) {
  #faq {
    background-image: url(../images/bg_faq-pc.png);
    background-size: 2500px;
    padding-bottom: 190px;
  }
  #faq h2 {
    margin: 0 auto 50px;
  }
  #faq h3 {
    margin-bottom: 75px;
  }
  #faq .faqWrap {
    width: 800px;
  }
  #faq .faqWrap .box {
    align-items: center;
    margin-bottom: 25px;
  }
  #faq .faqWrap .box img {
    width: 31px;
    margin: 0 20px 0 27px;
  }
  #faq .faqWrap .box p {
    width: calc(100% - 68px);
    line-height: 2.13;
  }
  #faq .faqWrap .box.top img {
    margin-bottom: 32px;
  }
  #faq .faqWrap .box.answer {
    margin-bottom: 60px;
  }
}
#contact {
  background-image: url(../images/bg_contact-sp.png);
  background-size: auto 100%;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 36%;
}
#contact h2 {
  margin: 0 auto 7%;
}
#contact h3 {
  margin-bottom: 7%;
}
#contact p {
  text-align: center;
  font-size: min(3.2vw, 16px);
  margin-bottom: 1.6em;
}
#contact .tel {
  width: 65%;
  margin: 0 auto 12%;
  display: block;
}
#contact .mail {
  width: 59%;
  margin: 0 auto 12%;
  display: block;
}
#contact .tel img, #contact .mail img {
  transition: filter 0.3s;
  filter: brightness(65%) grayscale(100%);
}

@media all and (min-width: 768px) {
  #contact {
    background-image: url(../images/bg_contact-pc.png);
    background-size: 2500px;
    padding-bottom: 230px;
  }
  #contact h2 {
    margin: 0 auto 50px;
  }
  #contact h3 {
    margin-bottom: 30px;
  }
  #contact .tel {
    width: 324px;
    margin-bottom: 80px;
  }
  #contact .mail {
    width: 454px;
    margin-bottom: 0;
  }
  #contact .tel:hover img, #contact .mail:hover img {
    filter: none;
  }
}
#campany {
  background-image: url(../images/bg_campany-sp.png);
  background-size: auto 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
#campany h2 {
  margin: 0 auto 7%;
}
#campany table {
  width: 80%;
  margin: 0 auto 3%;
}
#campany table tr {
  display: flex;
  font-size: min(3.2vw, 16px);
  line-height: 1.7;
  text-align: left;
  margin-bottom: 1em;
}
#campany table tr th {
  width: 5em;
  margin-right: 2em;
  font-weight: bold;
}
#campany table tr td {
  width: calc(100% - 7em);
}
#campany .map {
  width: 100%;
  height: 76vw;
}
#campany .link {
  width: 80%;
  margin: 5% auto;
}
#campany .link p {
  font-size: min(3.2vw, 16px);
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 1.8em;
}
#campany .link a {
  font-size: min(3.2vw, 16px);
  display: inline;
  line-height: 1.8;
  vertical-align: middle;
  width: -webkit-fit-content;
  width: fit-content;
}
#campany .link a img {
  display: inline-block;
  width: 3.2%;
  object-fit: cover;
  margin-bottom: -0.6%;
}
#campany .link a span {
  display: inline-block;
  padding-bottom: 5px;
}

@media all and (min-width: 768px) {
  #campany {
    background-image: url(../images/bg_campany-pc.png);
    background-size: 2500px;
  }
  #campany h2 {
    margin: 0 auto 50px;
  }
  #campany table {
    width: 670px;
    margin-bottom: 10px;
  }
  #campany table tr {
    line-height: 1.8;
    letter-spacing: 1px;
  }
  #campany table tr th {
    width: 6em;
    margin-left: 70px;
  }
  #campany table tr td {
    width: calc(100% - 8em - 70px);
  }
  #campany table tr td br.sp {
    display: none;
  }
  #campany .map {
    display: block;
    width: 530px;
    height: 417px;
    margin: 0 auto;
  }
  #campany .link {
    width: 530px;
    margin: 0 auto;
  }
  #campany .link a img {
    width: 10px;
    margin-bottom: 0;
  }
  #campany .link a span {
    padding-bottom: 8px;
  }
  #campany .link a:hover span {
    color: #ff7800;
  }
}
footer > img {
  width: 55%;
  margin: 0 auto 5%;
}
footer p {
  text-align: center;
  font-size: min(3.2vw, 16px);
  line-height: 1.8;
  margin-bottom: 7%;
}
footer p:last-of-type {
  font-size: min(2.4vw, 12px);
}
footer a {
  width: 50%;
  display: block;
  margin: 10% auto 0;
}

@media all and (min-width: 768px) {
  footer {
    margin-top: 160px;
    position: relative;
    padding-bottom: 10px;
  }
  footer > img {
    width: 224px;
    margin-bottom: 20px;
  }
  footer p:first-of-type {
    margin-bottom: 200px;
  }
  footer p:last-of-type {
    margin-bottom: 20px;
  }
  footer a {
    position: absolute;
    width: 230px;
    margin: 0;
    bottom: 0;
    right: 50%;
    margin-right: -500px;
  }
  footer a img {
    transition: filter 0.3s;
  }
  footer a:hover img {
    filter: brightness(150%);
  }
}