html {
  font-size: 13px;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 12px;
  }
}

body {
  background-color: #fff;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  width: 100%;
  font-family: kozuka-mincho-pr6n, serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-expanded {
  height: 100vh;
  overflow: hidden;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

br.hidden-pc {
  display: none;
}

@media screen and (max-width: 600px) {
  br.hidden-pc {
    display: block;
  }
}

p {
  margin: 0;
}

img {
  max-width: 100%;
}

picture {
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

:focus:not(:focus-visible) {
  outline: none;
}

.screen-reader-text {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

.container, .container-narrow, .container-wide {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .container, .container-narrow, .container-wide {
    max-width: 100%;
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (max-width: 600px) {
  .container, .container-narrow, .container-wide {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.container-wide {
  max-width: 1068px;
}

.container-narrow {
  max-width: 860px;
}

.container {
  max-width: 1020px;
}

section {
  padding-top: 96px;
  padding-bottom: 144px;
}

@media screen and (max-width: 768px) {
  section {
    padding-top: 62px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  section {
    padding-top: 45px;
    padding-bottom: 42px;
  }
}

.align-center {
  text-align: center;
}

.col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .col-3 {
    gap: 40px;
  }
}

@media screen and (max-width: 600px) {
  .col-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.col-3 > div {
  width: calc(100% / 3);
}

@media screen and (max-width: 600px) {
  .col-3 > div {
    width: 100%;
  }
}

.title {
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}

.title img {
  height: auto;
}

@media screen and (max-width: 600px) {
  .title img {
    width: 100vw;
    height: auto;
    margin-left: -20px;
    margin-right: -20px;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .title {
    margin: 0 0 21px;
  }
}

.title-second, .title-third {
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .title-second, .title-third {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .title-second, .title-third {
    font-size: 22px;
  }
}

.title-second {
  margin: 0 0 80px;
}

@media screen and (max-width: 768px) {
  .title-second {
    margin: 0 0 46px;
  }
}

@media screen and (max-width: 600px) {
  .title-second {
    margin: 0 0 64px;
  }
}

.title-third {
  margin: 0 0 36px;
}

@media screen and (max-width: 600px) {
  .title-third {
    margin: 0 0 22px;
  }
}

.header {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-nav {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  font-size: 18px;
}

@media screen and (max-width: 600px) {
  .header-nav {
    display: none;
  }
  .header-nav.is-expanded {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    height: 100vh;
    z-index: 222;
    position: fixed;
    top: 0;
    right: 0;
    padding-right: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-animation: fade .4s ease-in-out;
            animation: fade .4s ease-in-out;
  }
}

.header-logo {
  margin-right: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 600px) {
  .header-logo {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  z-index: 999;
}

@media screen and (min-width: 601px) {
  .hamburger {
    display: none;
  }
}

.hamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 10px;
  -webkit-transition: inherit;
  transition: inherit;
}

.hamburger-line::before,
.hamburger-line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  background-color: #000;
  content: '';
  -webkit-transition: inherit;
  transition: inherit;
}

.hamburger-line::before {
  top: -5px;
}

.hamburger-line::after {
  top: 10px;
}

.hamburger[aria-expanded="true"] .hamburger-line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 1px;
}

.hamburger[aria-expanded="true"] .hamburger-line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 1px;
}

.footer {
  margin: 130px 0 36px;
}

@media screen and (max-width: 600px) {
  .footer {
    margin: 35px 0 24px;
  }
}

.works-slider img {
  height: auto;
}

.works-slider-caption {
  text-align: center;
  margin-top: 25px;
  line-height: 1.5;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .works-slider-caption {
    font-size: 8px;
  }
}

@media screen and (max-width: 600px) {
  .works-slider-caption {
    font-size: 12px;
  }
}

.works .slick-slide {
  padding: 0 24px;
}

.works .slick-prev:before, .works .slick-next:before {
  content: none;
}

.works .slick-prev, .works .slick-next {
  width: 0;
  height: 0;
  border-style: solid;
}

.works .slick-prev.slick-disabled, .works .slick-next.slick-disabled {
  opacity: .6;
}

.works .slick-next {
  border-color: transparent transparent transparent #000000;
  border-width: 14.4px 0 14.4px 14.4px;
  right: -12px;
}

.works .slick-prev {
  border-color: transparent #000000 transparent transparent;
  border-width: 14.4px 14.4px 14.4px 0;
  left: -12px;
}

@media screen and (max-width: 600px) {
  .works-title img {
    width: 69.3vw;
  }
}

.profile-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
}

@media screen and (max-width: 600px) {
  .profile-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profile-col > div {
    width: 100%;
  }
}

.profile-image {
  width: 180px;
}

.profile-image img {
  display: block;
  width: 180px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .profile-image {
    width: 115.2px;
  }
}

.profile-text {
  width: calc(100% - 180px);
}

@media screen and (max-width: 600px) {
  .profile-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 33px;
  }
  .profile-text-name, .profile-text-address {
    text-align: center;
  }
  .profile-text a {
    text-decoration: underline;
  }
  .profile-text span {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .profile-title img {
    width: 73.47vw;
  }
}
/*# sourceMappingURL=style.css.map */