@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
}

/*header*/
.header {
  padding: 10px 0;
}
.header .bl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 360px) {
  .header .bl-header {
    flex-direction: column;
    padding: 10px;
  }
}
.header .bl-header .bl-headerright {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 360px) {
  .header .bl-header .bl-headerright {
    margin-bottom: 15px;
  }
}
.header .bl-header .bl-headerright h2 {
  display: inline;
}
.header .bl-header .bl-headerright .bl-headerlogo {
  margin-left: 20px;
  margin-top: 20px;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 360px) {
  .header .bl-header .bl-headerright .bl-headerlogo {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-top: 10px;
  }
}
.header .bl-header .bl-headerright .bl-headerlogo img {
  width: 100%;
  height: 100%;
}
.header .bl-header .bl-headerright .name {
  font-size: 1.5rem;
  color: #333;
  margin-left: 15px;
  white-space: nowrap;
}
@media screen and (max-width: 360px) {
  .header .bl-header .bl-headerright .name {
    font-size: 1.2rem;
    margin-left: 10px;
  }
}
.header .bl-header .menu {
  position: relative;
}
.header .bl-header .menu .hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .header .bl-header .menu .hamburger-btn {
    display: flex;
  }
}
.header .bl-header .menu .hamburger-btn span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}
.header .bl-header .menu .hamburger-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-9px, 6px);
}
.header .bl-header .menu .hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.header .bl-header .menu .hamburger-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -4px);
}
.header .bl-header .menu .menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header .bl-header .menu .menu-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    flex-direction: column;
    min-width: 200px;
    z-index: 1000;
  }
  .header .bl-header .menu .menu-list.active {
    display: flex;
  }
}
.header .bl-header .menu .menu-list li {
  margin-right: 20px;
}
@media screen and (max-width: 360px) {
  .header .bl-header .menu .menu-list li {
    margin-right: 0;
    border-bottom: 1px solid #eee;
  }
  .header .bl-header .menu .menu-list li:last-child {
    border-bottom: none;
  }
}
.header .bl-header .menu .menu-list li a {
  color: #333;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .header .bl-header .menu .menu-list li a {
    font-size: 1.2rem;
    display: block;
    padding: 15px 20px;
    text-align: center;
  }
}
.header .bl-header .menu .menu-list li a:hover {
  color: #f5b3f5;
}
@media screen and (max-width: 768px) {
  .header .bl-header .menu .menu-list li a:hover {
    background-color: #f9f9f9;
  }
}

/*main*/
/*home*/
.home {
  width: 100%;
  height: 800px;
  margin-bottom: 120px;
  position: relative;
  /* スライダー背景用 */
}
@media screen and (max-width: 768px) {
  .home {
    height: 500px;
    margin-bottom: 60px;
  }
}
.home .home-content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home .home-content {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
.home .home-content h1 {
  font-size: 80px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 768px) {
  .home .home-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }
}
.home .home-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .home .home-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.home .slick-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home .slick-container .slider-bg {
  height: 100%;
}
.home .slick-container .slider-bg .bg-slide {
  width: 100vw;
  height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .home .slick-container .slider-bg .bg-slide {
    height: 500px;
  }
}
.home .slick-container .slider-bg .bg-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*container*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
.container .self-introduction .self-introduction-title {
  text-align: center;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .container .self-introduction .self-introduction-title {
    margin: 30px 0;
  }
}
.container .self-introduction .self-introduction-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .container .self-introduction .self-introduction-title h2 {
    font-size: 1.5rem;
  }
}
.container .self-introduction .self-introduction-title p {
  font-size: 1.2rem;
  color: #666;
}
@media screen and (max-width: 768px) {
  .container .self-introduction .self-introduction-title p {
    font-size: 1rem;
  }
}
.container .self-introduction .self-introduction-bl {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .container .self-introduction .self-introduction-bl {
    flex-direction: column;
    gap: 20px;
  }
}
.container .self-introduction .self-introduction-bl .self-intoroduction-explanation {
  width: 40%;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .container .self-introduction .self-introduction-bl .self-intoroduction-explanation {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }
}
.container .self-introduction .self-introduction-bl .self-introduction-image {
  width: 600px;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .container .self-introduction .self-introduction-bl .self-introduction-image {
    width: 100%;
    height: 250px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.container .self-introduction .self-introduction-bl .self-introduction-image img {
  width: 100%;
  height: 100%;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .container .self-introduction .self-introduction-bl .self-introduction-image img {
    margin-left: 0;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.container .service .service-title {
  text-align: center;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .container .service .service-title {
    margin: 30px 0;
  }
}
.container .service .service-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .container .service .service-title h2 {
    font-size: 1.5rem;
  }
}
.container .service .service-title p {
  font-size: 1.2rem;
  color: #666;
}
@media screen and (max-width: 768px) {
  .container .service .service-title p {
    font-size: 1rem;
  }
}
.container .service .service-bl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .container .service .service-bl {
    flex-direction: column;
    gap: 20px;
  }
}
.container .service .service-bl .service-explanation {
  width: 40%;
  line-height: 2;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .container .service .service-bl .service-explanation {
    width: 100%;
    margin-left: 0;
    text-align: center;
    font-size: 0.9rem;
  }
}
.container .service .service-bl .service-image {
  width: 600px;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .container .service .service-bl .service-image {
    width: 100%;
    height: 250px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.container .service .service-bl .service-image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .container .service .service-bl .service-image img {
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.container .portfolio .portfolio-title {
  text-align: center;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-title {
    margin: 30px 0;
  }
}
.container .portfolio .portfolio-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-title h2 {
    font-size: 1.5rem;
  }
}
.container .portfolio .portfolio-title p {
  font-size: 1.2rem;
  color: #666;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-title p {
    font-size: 1rem;
  }
}
.container .portfolio .portfolio-bl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-bl {
    flex-direction: column;
    gap: 20px;
  }
}
.container .portfolio .portfolio-bl .portfolio-explanation {
  width: 40%;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-bl .portfolio-explanation {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }
}
.container .portfolio .portfolio-bl .portfolio-explanation .btn {
  background-color: #f59393;
  width: 250px;
  height: 60px;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-bl .portfolio-explanation .btn {
    width: 200px;
    height: 50px;
    margin: 20px auto 0;
  }
}
.container .portfolio .portfolio-bl .portfolio-explanation .btn:hover {
  opacity: 0.7;
}
.container .portfolio .portfolio-bl .portfolio-explanation .btn a {
  color: #fff;
  font-size: 1.25rem;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-bl .portfolio-explanation .btn a {
    font-size: 1rem;
    line-height: 50px;
  }
}
.container .portfolio .portfolio-bl .portfolio-image {
  width: 600px;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-bl .portfolio-image {
    width: 100%;
    height: 250px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.container .portfolio .portfolio-bl .portfolio-image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .container .portfolio .portfolio-bl .portfolio-image img {
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 360px) {
  .contact {
    padding: 0 15px;
  }
}
.contact .contact-title {
  text-align: center;
  margin: 50px 0;
}
@media screen and (max-width: 360px) {
  .contact .contact-title {
    margin: 30px 0;
  }
}
.contact .contact-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}
@media screen and (max-width: 360px) {
  .contact .contact-title h2 {
    font-size: 1.5rem;
  }
}
.contact .contact-title p {
  font-size: 1.2rem;
  color: #666;
}
@media screen and (max-width: 360px) {
  .contact .contact-title p {
    font-size: 1rem;
  }
}
.contact .contact-bl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.contact .contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}
@media screen and (max-width: 360px) {
  .contact .contact-form {
    max-width: 100%;
    padding: 15px;
  }
}
.contact .contact-form .form-group {
  margin-bottom: 20px;
}
@media screen and (max-width: 360px) {
  .contact .contact-form .form-group {
    margin-bottom: 15px;
  }
}
.contact .contact-form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
@media screen and (max-width: 360px) {
  .contact .contact-form .form-group label {
    font-size: 0.9rem;
  }
}
.contact .contact-form .form-group input, .contact .contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
@media screen and (max-width: 360px) {
  .contact .contact-form .form-group input, .contact .contact-form .form-group textarea {
    padding: 8px;
    font-size: 14px;
  }
}
.contact .contact-form .form-group button {
  background-color: #f59393;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
@media screen and (max-width: 360px) {
  .contact .contact-form .form-group button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}
.contact .contact-form .form-group button:hover {
  opacity: 0.8;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  margin-top: 50px;
}
@media screen and (max-width: 360px) {
  footer {
    padding: 15px;
    margin-top: 30px;
  }
  footer p {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */