@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  └ base
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

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, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
	base
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

a {
  color: #007F41;
  text-decoration: underline;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
}
img.self-size {
  max-width: 100%;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*------------------------------------------------------------------------
// Layout
  ├ footer
  ├ main-contents
  ├ container
  └ section
------------------------------------------------------------------------*/
/* footer
------------------------------------------------------ */
.footer {
  padding: 20px 0;
  color: #fff;
  background: #000000;
}

.footer__copyright {
  font-size: 0.75em;
  text-align: center;
}

/* main-contents
------------------------------------------------------ */
.main-contents {
  position: relative;
  padding-top: 15px;
}
@media screen and (min-width: 768px), print {
  .main-contents {
    padding-top: 20px;
  }
}

/* ロゴ */
.logo {
  position: sticky;
  z-index: 99;
  top: 15px;
  left: 20px;
  display: inline-block;
}
@media screen and (min-width: 768px), print {
  .logo {
    top: 20px;
    left: 30px;
  }
}
.logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: #000000;
}
@media screen and (min-width: 768px), print {
  .logo a {
    flex-direction: row;
  }
}
.logo .logo-mark {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 88px;
  height: 32px;
  background: url("../img/logo_ku-pu_color.svg") center/contain no-repeat;
}
@media screen and (min-width: 768px), print {
  .logo .logo-mark {
    width: 110px;
    height: 40px;
  }
}
.logo .logo-text {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  .logo .logo-text {
    font-size: 20px;
    margin-top: 0;
    margin-left: 20px;
  }
}

/* container
------------------------------------------------------ */
.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
}
@media screen and (min-width: 768px), print {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* section
------------------------------------------------------ */
.section {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px), print {
  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.section--bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background: #F2F2F2;
}

/* 見出し */
.section__title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  color: #000000;
}
.section__title + * {
  margin-top: 48px;
}
@media screen and (min-width: 768px), print {
  .section__title {
    font-size: 32px;
  }
  .section__title + * {
    margin-top: 64px;
  }
}

/*------------------------------------------------------------------------
// Component
  ├ mv
  ├ info
  ├ works
  └ company
------------------------------------------------------------------------*/
/* mv
------------------------------------------------------ */
.mv {
  position: relative;
  height: 100vh;
  color: #fff;
}
.mv-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px), print {
  .mv-inner {
    padding: 0 30px;
  }
}

.mv__logo {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 20px;
}
@media screen and (min-width: 768px), print {
  .mv__logo {
    top: 20px;
    left: 30px;
  }
}

.mv__copy {
  font-size: min(8.5333333333vw, 2em);
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .mv__copy {
    font-size: min(4.4444444444vw, 3em);
    text-align: center;
  }
}

.mv__text {
  margin-top: 1.5em;
  font-size: min(4.2666666667vw, 1em);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .mv__text {
    font-size: min(1.4814814815vw, 1em);
    text-align: center;
  }
}

.mv-bg {
  position: absolute;
  z-index: -99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mv-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv-bg::after {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: radial-gradient(rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 31%), radial-gradient(rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}

.mv__caption {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 12px;
  text-align: right;
  color: #E0E0E0;
}
@media screen and (min-width: 768px), print {
  .mv__caption {
    right: 30px;
    bottom: 15px;
  }
}

/* info
------------------------------------------------------ */
.info__img {
  max-width: 522px;
  margin: 0 auto;
}

/* works
------------------------------------------------------ */
.works-nav {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px), print {
  .works-nav {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.works-nav + * {
  margin-top: 48px;
}
@media screen and (min-width: 768px), print {
  .works-nav + * {
    margin-top: 64px;
  }
}

.works-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 20px;
}
@media screen and (min-width: 768px), print {
  .works-nav__list {
    justify-content: center;
    gap: 30px;
  }
}

.works-nav__item {
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px), print {
  .works-nav__item {
    width: auto;
  }
}

.works-nav__link {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid;
  padding: 1.25em 0;
  font-size: min(3.7333333333vw, 14px);
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  color: #000000;
}
@media screen and (min-width: 768px), print {
  .works-nav__link {
    min-width: 240px;
  }
}
.works-nav__link:hover {
  opacity: 1;
  color: #007F41;
}

.works + .works {
  margin-top: 48px;
}
@media screen and (min-width: 768px), print {
  .works + .works {
    margin-top: 64px;
  }
}

.works__title {
  position: relative;
  padding-top: 8px;
  padding-bottom: 12px;
  border-bottom: 4px solid #E0E0E0;
  font-size: 20px;
  color: #000000;
}
@media screen and (min-width: 768px), print {
  .works__title {
    font-size: 24px;
  }
}
.works__title::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 248px;
  height: 4px;
  background: #007F41;
}
.works__title + * {
  margin-top: 32px;
}

.works__list {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 48px;
}
@media screen and (min-width: 768px), print {
  .works__list {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 30px;
  }
}
@media screen and (min-width: 992px), print {
  .works__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.works-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.works-card__thumb {
  position: relative;
}
.works-card__thumb img {
  aspect-ratio: 340/240;
}
.works-card__thumb span {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 4px;
  font-size: 0.875em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background: #000000;
}

.works-card__body .date {
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #007F41;
}
.works-card__body .text {
  margin-top: 0.5em;
  line-height: 1.5;
  text-indent: -0.5em;
}

.works-pickup + * {
  margin-top: 48px;
}
@media screen and (min-width: 768px), print {
  .works-pickup + * {
    margin-top: 64px;
  }
}

.works-pickup__slider {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 768px), print {
  .works-pickup__slider {
    margin-left: 0;
    margin-right: 0;
  }
}

.works-pickup__text {
  margin-top: 20px;
}

/* slick の設定 */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: calc(50% - 24px);
  height: 48px;
  width: 48px;
  background: url("../img/slider-arrow.svg") center/contain no-repeat;
  cursor: pointer;
  outline: none;
  opacity: 0.5;
}
.slick-prev:hover,
.slick-next:hover {
  transition: opacity 0.3s;
  opacity: 1;
}

.slick-prev {
  left: 0;
  transform: rotate(180deg);
}

.slick-next {
  right: 0;
}

.slick-dots {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  color: transparent;
  background: rgba(255, 255, 255, 0.5);
  outline: none;
}
.slick-dots .slick-active button {
  background: #007F41;
  transform: scale(1.5);
}

/* company
------------------------------------------------------ */
.company {
  display: grid;
  grid-template-areas: "data" "img" "map";
  gap: 48px;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .company {
    grid-template-areas: "data data" "img map";
    gap: 64px 30px;
  }
}

.company__data {
  grid-area: data;
  width: 100%;
  margin: 0 auto;
}
.company__data th {
  width: 25%;
  min-height: 3.25em;
  padding-top: 0.75em;
  padding-bottom: calc(0.75em - 2px);
  font-weight: bold;
  letter-spacing: 0.1em;
  border-bottom: 2px dashed #E0E0E0;
}
@media screen and (min-width: 768px), print {
  .company__data th {
    padding-top: 1.5em;
    padding-left: 30px;
    padding-bottom: calc(1.5em - 2px);
  }
}
.company__data td {
  min-height: 3.25em;
  padding-top: 0.75em;
  padding-left: 20px;
  padding-bottom: calc(0.75em - 2px);
  border-bottom: 2px dashed #E0E0E0;
}
@media screen and (min-width: 768px), print {
  .company__data td {
    padding-top: 1.5em;
    padding-left: 30px;
    padding-bottom: calc(1.5em - 2px);
  }
}
.company__data td .tel {
  color: inherit;
}
@media screen and (min-width: 768px), print {
  .company__data td .tel {
    pointer-events: none;
    text-decoration: none;
  }
}

.company__img {
  grid-area: img;
}
.company__img img {
  aspect-ratio: 4/3;
}

.company__map {
  grid-area: map;
}
.company__map iframe {
  aspect-ratio: 4/3;
}

/*------------------------------------------------------------------------
// Others
  └ Utilities
------------------------------------------------------------------------*/
/* Utilities
------------------------------------------------------ */
.br-sp {
  display: inline;
}
@media screen and (min-width: 768px), print {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px), print {
  .br-pc {
    display: inline;
  }
}/*# sourceMappingURL=style.css.map */