@charset "UTF-8";
/* bootstrap */
:root {
  --bs-theme: #98CD00;
  --bs-sub-theme: #91c500;
  --bs-sub-theme-dark: #d2f86a;
  --bs-sub-theme-light: #a2db04;
  --bs-dark: #525050;
  --bs-gray: #f1f1f1;
  --bs-white: #fff;
  --bs-white-trasparet: rgba(255, 255, 255, 0.84);
  --bs-font-sans-serif: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  position: relative;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--bs-font-sans-serif);
  letter-spacing: 0.07rem;
  text-align: justify;
  word-break: break-all;
}

main {
  min-height: calc(100svh - 196px);
}

h2 {
  margin: 0;
}

h3 {
  padding: 2rem 0;
  margin: 0;
}

h4 {
  font-size: 18px;
}
h4 span {
  font-weight: 400;
  font-size: 15px;
  background-color: #dde8f1;
}

p {
  line-height: 2em;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

/* background */
.bg-theme {
  background-color: var(--bs-theme);
}

.bg-sub-theme {
  background-color: var(--bs-sub-theme);
}

.bg-gray {
  background-color: var(--bs-gray);
}

.bg-sea {
  background-image: url(../images/background.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-sky {
  background-image: url(../images/sky.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-white-trasparet {
  background-color: var(--bs-white-trasparet);
}

.border-green {
  border-color: var(--bs-theme) !important;
}

.btn-yellow {
  background-color: var(--bs-sub-theme);
}
.btn-yellow:hover {
  background-color: var(--bs-sub-theme-light);
}

.text-green {
  color: var(--bs-theme);
}

/* header */
.icon {
  height: 3rem;
  width: auto;
}

.contact-img {
  transition: all 0.6s;
}
.contact-img:hover {
  opacity: 0.8;
}

.title {
  height: 4rem;
  line-height: 1.75rem;
}

.title-link {
  font-size: 1.25rem;
}
.title-link a {
  color: var(--bs-dark);
  text-decoration: none;
  transition: all 0.6s;
}
.title-link a:hover {
  opacity: 0.6;
}

.nav-link {
  color: var(--bs-dark);
}
.nav-link:hover {
  color: var(--bs-sub-theme-dark) !important;
}

/* slider */
.headline {
  z-index: 2;
  letter-spacing: 0.2rem;
  position: absolute;
  bottom: 10%;
  left: 0;
  font-size: 1.5rem;
  line-height: 3rem;
  background-color: var(--bs-theme);
  font-weight: 700;
  color: var(--bs-white);
  padding: 2rem;
}
.headline span {
  font-size: 1.125rem;
}
.headline .sp {
  display: none;
}

.slider {
  height: calc(100vh - 136px);
  max-height: 860px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-item {
  transition: opacity 3s ease-out;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  transition: opacity 0s 3s;
}

/* news */
#contents-maker-news {
  height: 10rem;
}
#contents-maker-news::-webkit-scrollbar {
  width: 0.5rem;
}
#contents-maker-news::-webkit-scrollbar-track {
  background: var(--bs-white);
  border: solid 1px var(--bs-gray);
  border-radius: 0.25rem;
}
#contents-maker-news::-webkit-scrollbar-thumb {
  background: var(--bs-theme);
  border-radius: 0.25rem;
}

.cm-box dd {
  margin-bottom: 0;
  padding-left: 3rem;
}
.cm-box dl {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dee2e6 !important;
}
.cm-box:last-of-type dl {
  border-bottom: none !important;
  padding: 0;
  margin: 0;
}

/* service */
.company-title {
  color: var(--bs-theme);
  text-decoration: underline;
  text-decoration-color: var(--bs-theme);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
  line-height: 3rem;
}

.company-lead {
  width: 75%;
  margin: 0 auto;
}

.sign {
  text-align: right;
}
.sign img {
  width: 200px;
}

/* service */
#service {
  max-width: 900px;
  margin: auto;
}
#service > div > div {
  gap: 2%;
}
#service > div > div div {
  margin: 20px 0 0 0 !important;
  width: 100%;
}
#service h4 {
  border-left: 1px solid var(--bs-sub-theme);
  padding-left: 1rem;
  margin: 1rem 0;
}
#service .service-list li {
  margin-bottom: 1rem;
}
#service .service-list span {
  font-size: 14px;
}
#service .service-list strong {
  font-size: 14px;
}

#aboutus p {
  width: 90%;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 2.5em;
}
#aboutus p.aboutus-sub {
  line-height: 2em;
}
#aboutus p.aboutus-sub .sp {
  display: none;
}

/* more-btn-list */
.more-btn-list {
  display: flex;
  justify-content: center;
  gap: 2%;
}
.more-btn-list li {
  list-style-type: none;
  overflow: hidden;
  border-radius: 10px;
  min-width: 280px;
}
.more-btn-list li a {
  display: block;
  color: white;
  background-color: var(--bs-theme);
  text-decoration: none;
  padding: 20px;
  padding-right: 20px;
  transition: all 0.6s;
}
.more-btn-list li a:hover {
  opacity: 0.7;
}
.more-btn-list li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: solid 1px #fff;
  border-top: solid 1px #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* access */
.access {
  max-width: 800px;
}

.iframe {
  width: 100%;
  max-width: 800px;
  height: 300px;
}

/* form */
#mailformpro {
  padding: 0 !important;
}

.textarea {
  resize: none;
  height: 10rem;
}

.privacy {
  height: 10rem;
  background-color: var(--bs-white);
}

.mfp_err {
  position: static !important;
}

.close {
  display: none;
}

.modal-header {
  justify-content: center;
}

/* pagetop */
.page-top {
  z-index: 1000;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}
.page-top a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none !important;
  width: 6rem;
  height: 6rem;
  transition: all 0.6s;
}
.page-top a:hover {
  opacity: 0.7;
  width: 7rem;
  height: 7rem;
}

.top-page-icon {
  width: 2rem;
  height: auto;
}

/* smart */
@media screen and (max-width: 768px) {
  .slider {
    height: calc(100vh - 4rem);
  }
  .bg-sea,
  .bg-sky {
    background-size: auto 100%;
  }
  .contact {
    width: 100%;
  }
  .contact-img {
    max-height: 4rem;
  }
  .company-lead {
    width: auto;
    margin: 0 1rem;
  }
  .footer-bottom {
    padding-bottom: 8rem !important;
  }
  .headline {
    font-size: 1.125rem;
    letter-spacing: 0.1rem;
    padding: 1.5rem;
    line-height: 2rem;
    bottom: 5%;
    left: inherit;
    right: 0;
  }
  .headline span {
    font-size: 0.75rem;
  }
  .headline .sp {
    display: block;
  }
  .navbar-nav {
    transition: all 0.6s;
    padding-top: 5rem;
    width: 300px;
    z-index: 1050;
    position: fixed;
    top: 0;
    right: -300px;
  }
  .nav {
    /* btnopen */
  }
  .nav-bg {
    opacity: 0;
    transition: all 0.6s;
    z-index: 1040;
    background-color: var(--bs-dark);
    cursor: pointer;
    visibility: hidden;
  }
  .nav-btn {
    width: 4rem;
    height: 4rem;
    z-index: 1060;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  .nav-item a {
    color: var(--bs-white) !important;
  }
  .nav-line {
    transition: all 0.6s;
    width: 2rem;
    height: 2px;
    left: calc(50% - 1rem);
    background-color: #fff;
    position: absolute;
  }
  .nav-line.one {
    top: calc(1.25rem - 1px);
  }
  .nav-line.two {
    top: calc(2rem - 1px);
  }
  .nav-line.three {
    top: calc(2.75rem - 1px);
  }
  .nav-open.nav-bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open.navbar-nav {
    right: 0;
  }
  .nav-open.nav-btn .one {
    transform: rotate(45deg);
    top: 2rem;
  }
  .nav-open.nav-btn .two {
    width: 0;
    left: 50%;
  }
  .nav-open.nav-btn .three {
    transform: rotate(-45deg);
    top: 2rem;
  }
  .page-top {
    bottom: 1rem;
    right: calc(50% - 3rem);
  }
  .page-top a:hover {
    width: 6rem;
    height: 6rem;
  }
  .title-link {
    font-size: 1rem;
  }
  .more-btn-list {
    display: block;
    padding: 0;
  }
  .more-btn-list li {
    min-height: inherit;
  }
  .more-btn-list li:first-child {
    margin-bottom: 10px;
  }
  #aboutus p.aboutus-sub .sp {
    display: block;
  }
}
/* fadeUpAnimation */
.fade-active {
  animation-name: fade-anime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-anime {
  from {
    opacity: 0;
    transform: translateY(8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */