<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
.mainvisual {
  width: 100%;
  height: 750px;
  position: relative;
  background: linear-gradient(to bottom, #81CED9, #81CED9 95%, white 100%);
}
.mainvisual .main-image .image li {
  position: absolute;
}
.mainvisual .main-image .image .sun {
  width: 200px;
  position: absolute;
  top: 0px;
  right: 0px;
}
.mainvisual .main-image .image .flare {
  width: 100%;
  position: absolute;
  top: 30;
  left: 0;
  z-index: 30;
  opacity: 0;
  animation: solarFlare 3s ease-out forwards;
}
@keyframes solarFlare {
  0% {
    opacity: 0;
    transform: scale(0.7) translateX(100px);
    filter: brightness(0);
  }
  20% {
    opacity: 1;
    filter: brightness(1.0) drop-shadow(0 0 10px #fff);
  }
  50% {
    transform: scale(0.9) translateX(-10px);
    filter: brightness(2) drop-shadow(0 0 20px #fff);
  }
  100% {
    opacity: 0;
    transform: scale(0.7);
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
}
.mainvisual .main-image .image .kaede {
  max-width: 500px;
  top:150px;
  left: -50px;
  z-index: 20;
  transform-origin: center bottom;
  animation: naturalSway 8s ease-in-out infinite;
}
@keyframes naturalSway {
    0%, 100% {
        transform: 
            translateX(1px)
            skewX(0.3deg);
    }
    25% {
        transform: 
            translateX(-1px)
            skewX(-0.3deg);
    }
    50% {
        transform: 
            translateX(0.5px)
            skewX(0.2deg);
    }
    75% {
        transform: 
            translateX(-0.5px)
            skewX(-0.2deg);
    }
}
.mainvisual .main-title ul {
  position: absolute;
  top: 300px;
  right: 7vw;
  line-height: 1;
}
.mainvisual .main-title li {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
}
.mainvisual .main-title a {
  color: #fff;
}
.mainvisual .main-title a.job {
  font-size: 30px;
}
.contents-area {
  width: 100%;
  position: relative;
}
.contents-area .waves {
  display: inline-block;
  width: 100%;
  height: 50px;
  transform-origin: left bottom;
  position: absolute;
  top: -150px;
  left: 0;
}
.parallax &gt; use {
  animation: move-forever 26s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax &gt; use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 9s;
}
.parallax &gt; use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 12s;
}
.parallax &gt; use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 14s;
}
.parallax &gt; use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 21s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
.contents-area #profile, #works, #news, #contact {
  margin: 100px 50px 100px 25%;
}
.contents-area .profile-area {
  display: flex;
  margin: 30px 0 0 30px;
  background-color: rgba(255,255,255,0.70);
}
.contents-area .profile-area .photo {
  width: 100%;
  height: 100%;
  max-width: 300px;
  margin-right: 20px;
}
.contents-area .profile-area .profile-text {
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  padding: 20px;
}
.contents-area .profile-area .profile-text .name {
  font-size: 20px;
  margin-bottom: 10px;
}
.contents-area .title-area {
  display: flex;
  align-items: center;
}
.works-container {
  margin-left: 30px;
  padding-top: 30px;
}
.sliderArea {
  max-width: 100%;
  margin: 0 0 10px 0;
  padding: 0 50px;
  overflow: hidden;
  transition: transform 0.7s ease;
}
.sliderArea.w300 {
  max-width: 300px;
}
.slick-slide:hover {
  transform: scale(1.1);
}
.slider {
  display: none; /* 初期化前は非表示 */
}
.slick-initialized {
  display: block !important; /* 初期化後に表示 */
}
.slick-slider {
  margin-bottom: 30px !important;
}
.slick-slide {
  margin: 30px 12px 20px 12px;
}
.slick-slide img {
  width: 100%;
  filter: drop-shadow(2px 2px 3px #454545);
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: 0.7;
}
.news-area {
  background-color: rgba(255,255,255,0.70);
  margin: 30px 50px 0 30px;
}
.contents-area .news-container {
  display: flex;
  padding: 20px 50px 0 20px;
  font-family: "Zen Old Mincho", serif; 
}
.contents-area .news-container:last-child {
  padding-bottom: 20px;  
}
.contents-area .news-container .date {
  margin-right: 50px;
}
#contact {
  margin-bottom: 100px;
}
.waves2 {
  display: inline-block;
  width: 100%;
  height: 50px;
  transform: scaleY(-1);
  transform-origin: left bottom;
  position: absolute;
  bottom: -180px;
  left: 0;
}
.parallax &gt; use {
  animation: move-forever 26s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax &gt; use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 9s;
}
.parallax &gt; use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 12s;
}
.parallax &gt; use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 14s;
}
.parallax &gt; use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 21s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
.fadein {
  opacity: 0;
  transform: translateY(100px);
  transition:  all 1s;
}
.fadein.inview {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1024px) {
  .mainvisual .main-image .image .sun {
    width: 100px;
    top: 0;
    right: 0;
  }
  .contents-area #profile, #works, #news, #contact {
    margin-left: 20%;
  }
  .contents-area .profile-area {
    margin: 30px 30px 0 30px;
    padding: 0px;
  }
  .contents-area .profile-area .photo {
    min-width: 150px;
    max-width: 200px;
    margin-right: 20px;
  }
  .contents-area .profile-area .profile-text {
    min-width: 350px;
    padding: 0;
  }
  .contents-area .profile-area .profile-text .name {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .works-container {
    margin: 0 0 0 30px;
    padding: 50px 0 0 0;
  }
  .news-area {
    margin: 30px 0 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .mainvisual {
    height: 400px;
  }
  .mainvisual .main-image .image li {
    position: absolute;
  }
  .mainvisual .main-image .image .flare {
    width: 100%;
    top: 0;
    right: 0;
   }
  .mainvisual .main-image .image .kaede {
    max-width: 250px;
    top:100px;
    left: -30px;
  }
  .mainvisual .main-title ul {
    top: 270px;
    right: 3vw;
  }
  .mainvisual .main-title li {
    font-size: clamp(20px, 6vw, 40px);
  }

  .mainvisual .main-title a.job {
    font-size: clamp(12px, 3vw,20px);
  }
  .contents-area #profile, #works, #news, #contact {
    margin: 100px 20px 100px 20px;
  }
  .contents-area .profile-area {
    flex-direction: column;
    margin: 30px 30px 0 30px;
    padding: 0px;
  }
  .contents-area .profile-area .photo {
    min-width: 100px;
    max-width: 200px;
    margin: 0 0 20px 0;
  }
  .contents-area .profile-area .profile-text {
    width: auto;
  }
  .profile-area .profile-text .name {
    font-size: 18px;  
  }
  .works-container {
    margin: 0;
  }
  .sliderArea {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 30px;
  }
  .sliderArea:hover {
    transform: none;
}
  .contents-area .news-area {
    margin: 0;
  }
  .contents-area .news-container {
    flex-direction:  column;
    margin: 30px 0 0 30px;
    padding: 0 0 20px 0;
  }
  .contents-area .news-container:last-child {
    padding-bottom: 20px;  
  }
  .contents-area .news-container .date {
    margin-right: 0;
  }
}

@media screen and (max-width: 450px) {
  .mainvisual .main-image .image .sun {
    width: 80px;
  }
  .contents-area .profile-area {
    flex-direction: column;
    margin: 30px 0 0 30px;
    padding: 0px;
  }
  .contents-area .profile-area .profile-text {
    min-width: 100%;
    padding: 0;
  }
  .works-container {
    padding: 30px 0 0 0;
  }
  .contents-area .news-area {
    margin: 0;
  }
}</pre></body></html>