﻿* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  line-height: 1.8em;
  letter-spacing: 0;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: 1000px;
  padding: 100px 0;
  margin: 0 auto;
}

.btnBox {
  text-align: center;
}

.btn {
  width: 280px;
  border: 1px solid #AAAAAA;
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
  color: #222;
  position: relative;
}
.btn:after {
  display: inline-block;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #AAAAAA;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #075AC7;
  color: #ffffff;
}
.btn:hover:after {
  right: -35px;
}

.btnWhite {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.btnWhite:after {
  background-color: #ffffff;
}

.pics img {
  width: 100%;
  height: auto;
}

h2 {
  margin-bottom: 50px;
  font-size: 4rem;
  line-height: 1.6;
  font-family: "ShipporiMincho", sans-serif;
}
h2 span {
  display: block;
  margin-bottom: 10px;
  color: #075AC7;
  font-size: 2rem;
}

#titleArea .container {
  padding: 150px 0 0;
}
#titleArea h2 {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 30px;
  margin-bottom: 10px;
}
#titleArea #pan li {
  font-size: 1.2rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
  color: rgba(0, 0, 0, 0.4);
}
#titleArea #pan li::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 0px;
}
#titleArea #pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
  color: #222;
}
#titleArea #pan li:last-child::before {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
  }
}

@media screen and (max-width: 800px) {
h2 {
    font-size: 3.8rem;
}
}

@media screen and (max-width: 767px) {
  .container {
    width: 90%;
    padding: 50px 0;
  }
  #titleArea .container {
    padding: 100px 0 0;
  }
  h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    line-height: 1.8em;
  }
  h2 span {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .brPC {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .brSP {
    display: none;
  }
  .telnum {
    pointer-events: none;
  }
}
header {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
header h1 img {
  width: 180px;
}
header .whiteLogo {
  display: none;
}
header .burgerBtn {
  width: 80px;
  height: 80px;
  border: 1px solid #222;
  border-radius: 50%;
  background-color: #222;
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 3;
  cursor: pointer;
}
header .burgerBtn span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .burgerBtn span:nth-of-type(1) {
  top: 30px;
}
header .burgerBtn span:nth-of-type(2) {
  top: 40px;
}
header .burgerBtn span:nth-of-type(3) {
  top: 50px;
}

.overlay {
  width: 100%;
  height: 100vh;
  background-image: url(../img/overlay_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 5;
  display: none;
}
.overlay .container {
  display: flex;
  column-gap: 200px;
}
.overlay nav ul {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  color: #ffffff;
}
.overlay nav ul:nth-of-type(2) {
  margin-top: 70px;
  font-size: 1.4rem;
}
.overlay a:hover {
  color: #075AC7;
}
.overlay .closeBtn {
  width: 80px;
  height: 80px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #FFFFFF;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.overlay .closeBtn span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  left: 50%;
}
.overlay .closeBtn span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.overlay .closeBtn span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  header {
    padding: 15px 20px;
  }
  header .burgerBtn {
    top: 10px;
    right: 20px;
  }
  .overlay .container {
    flex-direction: column;
    row-gap: 50px;
  }
  .overlay nav ul {
    row-gap: 10px;
  }
  .overlay nav ul:nth-of-type(2) {
    margin-top: 40px;
  }
}
#contactLink {
  background-image: url(../img/contact_bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#contactLink .container {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
}
#contactLink p {
  margin-bottom: 40px;
}

footer {
  padding: 80px 100px 60px;
  background-color: #ffffff;
}
footer .footerContent {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 45px;
  margin-bottom: 50px;
  display: flex;
  column-gap: 100px;
}
footer .footerContent .pics {
  width: 180px;
}
footer .footerContent a {
  text-decoration: underline;
}
footer .footerContent a:hover {
  opacity: 0.7;
}
footer .footerContent .telnum {
  padding-right: 10px;
  text-decoration: none;
}
footer .footerMenu ul {
  display: flex;
  column-gap: 35px;
  justify-content: flex-end;
  font-size: 1.4rem;
}
footer .copyright {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  footer {
    padding: 80px 50px 60px;
  }
}
@media screen and (max-width: 767px) {
  #contactLink .container {
    flex-direction: column;
  }
  #contactLink p {
    margin-bottom: 20px;
  }
  footer {
    padding: 50px 20px;
  }
  footer .footerContent {
    padding-bottom: 30px;
    margin-bottom: 30px;
    flex-direction: column;
    row-gap: 20px;
  }
  footer .footerContent .telnum {
    text-decoration: underline;
  }
  footer .footerMenu ul {
    flex-direction: column;
    row-gap: 5px;
  }
}
header .whiteLogo {
  display: flex;
}
header .blueLogo {
  display: none;
}
header .burgerBtn {
  width: 80px;
  height: 80px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
}
header .burgerBtn span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .burgerBtn span:nth-of-type(1) {
  top: 30px;
}
header .burgerBtn span:nth-of-type(2) {
  top: 40px;
}
header .burgerBtn span:nth-of-type(3) {
  top: 50px;
}

#mainVisual {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#mainVisual:after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #075AC7;
  position: absolute;
  top: 0;
  left: 0;
  animation: fade-out 3s forwards;
}
#mainVisual video {
  min-width: 100%;
  min-height: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mainVisual .textArea {
  width: 600px;
  text-align: center;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "ShipporiMincho", sans-serif;
  z-index: 1;
}
#mainVisual h2 {
  font-size: 5.4rem;
}
#mainVisual p {
  font-size: 2.4rem;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#message {
  position: relative;
}
#message p {
  margin-bottom: 40px;
  line-height: 2.5;
}
#message .container + img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

#about {
  position: relative;
}
#about img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#about .textArea {
  width: 700px;
  margin: 0 0 0 auto;
}
#about p {
  margin-bottom: 40px;
}

#service {
  background-image: url(../img/service_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#service h2 {
  text-align: center;
  color: #ffffff;
}
#service ul {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  column-gap: 40px;
}
#service li {
  width: 48%;
}
#service li a:hover {
  opacity: 0.7;
}
#service .pics {
  width: 100%;
}
#service .textArea {
  padding: 30px 40px;
  background-color: #ffffff;
}
#service h3 {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
}

#needle {
    position: relative;
    background-image: url(../img/overlay_needle.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
#needle .container {
    position: relative;
    z-index: 1;
}
#needle p {
  margin-bottom: 40px;
  line-height: 2.5;
}
#needle .container + img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  opacity: 0.8;
}
#needle .btn {
    background-color: #ffffffba;
}
#needle .btn:hover {
    background-color: #075AC7;
}


@media screen and (min-width: 1635px) {
#needle .container + img {
    left: 1100px;
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #about img {
    width: 30%;
  }
  #about .textArea {
    width: 90%;
  }
  #needle img {
    width: 45%;
  }
  #needle .textArea {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  #mainVisual .textArea {
    width: 100%;
  }
  #mainVisual h2 {
    font-size: 4rem;
  }
  #mainVisual p {
    font-size: 1.6rem;
  }
  #about img {
    width: 40%;
  }
  #about .textArea {
    width: 100%;
    margin: 0 auto 0 0;
  }
  #about img {
    left: auto;
    right: 0;
  }  
  #needle img {
    width: 65%;
  }
  #needle .textArea {
    width: 100%;
    margin: 0 auto 0 0;
  }
  #needle img {
    left: auto;
    right: 0;
  }
  #service ul {
    margin-bottom: 30px;
    flex-direction: column;
    row-gap: 30px;
  }
  #service li {
    width: 100%;
  }
  #service .pics {
    width: 100%;
  }
  #service .textArea {
    padding: 20px 30px;
  }
  #service h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 580px) {
    #needle img {
        width: 95%;
        right: -50px !important;
        opacity: 0.6 !important;
    }
}
/*# sourceMappingURL=style.css.map */