@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  background-image: url("../images/bg-paper.gif");
  background-color: rgba(255, 252, 213, 0.5);
  background-blend-mode: lighten;
  box-sizing: border-box;
  color: #918f8b;
  line-height: 1.7;
}

/*マウスカーソルの変更*/
body {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  body {
    cursor: none;
    /*本物のカーソルを非表示に*/
  }
}
body a:hover {
  cursor: none;
  /*aタグホバーのカーソルも非表示に*/
}

img, svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

li {
  list-style: none;
}
li a {
  color: #918f8b;
  text-decoration: none;
}

.parallax-bg {
  background-image: url("../images/bg_pic.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#cursor {
  display: none;
}
@media screen and (min-width: 1024px) {
  #cursor {
    display: inline-block;
    position: fixed;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    /*半分引いてカーソル先端に画像中心位置が来るように*/
    z-index: 9999;
    /*一番手前に来るように*/
    pointer-events: none;
    /*【重要】マウス直下に常に画像があるので、全てをクリックできなくなる。noneにして対応*/
    transition: transform 0.1s;
    opacity: 0;
    /*開いた瞬間非表示*/
  }
}

#cursor.active {
  transform: scale(1.5);
}

/*ここまでマウスカーソル*/
@media screen and (min-width: 1024px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
}

.content {
  position: relative;
}

/*バーガー*/
#nav-drawer {
  position: relative;
}

.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
  position: fixed;
  bottom: 8px;
  left: 8px;
  z-index: 999;
}

/*ハンバーガーアイコン*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #918f8b;
  display: block;
  content: '';
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 60%;
  max-width: 330px;
  height: 100%;
  background: #fff;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

/*チェックが入ったら表示*/
#nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

/*バーガーここまで*/
/* ボタンのスタイル */
#t-scroll {
  position: fixed;
  bottom: 8px;
  right: 8px;
}
@media screen and (min-width: 1024px) {
  #t-scroll {
    bottom: 32px;
    right: 32px;
  }
}
#t-scroll a {
  background-color: #5ddfff;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
#t-scroll a:hover {
  background-color: #11d0ff;
  text-decoration: none;
}

.top_wrapper {
  background: url("../images/bg.svg") center/cover;
  position: relative;
  height: 1300px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .top_wrapper {
    display: flex;
    align-items: center;
    height: 100vh;
    margin-bottom: 48px;
  }
}
.top_inr {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top_inr {
    display: flex;
    justify-content: center;
    max-height: 900px;
  }
}
.top_nav {
  padding: 16px;
}
@media screen and (min-width: 1024px) {
  .top_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 20%;
    padding: 16px 32px 0;
  }
}
.top_img {
  height: 700px;
}
@media screen and (min-width: 1024px) {
  .top_img {
    display: grid;
    place-items: center;
    height: auto;
  }
}
.top_img-inr {
  position: relative;
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .top_img-inr {
    height: 90vh;
    width: 51vw;
  }
}
.top_img-music {
  position: absolute;
  top: -40px;
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  .top_img-music {
    top: -10%;
    left: -5%;
    width: 80%;
  }
}
.top_img-music-img {
  width: 100%;
  height: 100%;
}
.top_img-happy {
  position: absolute;
  top: 220px;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .top_img-happy {
    top: 16%;
    left: 55%;
    width: 85%;
  }
}
.top_img-happy-img {
  width: 100%;
  height: 90%;
}
.top_img-clip03 {
  width: 100%;
  height: 50%;
}
.top_img-animals {
  position: absolute;
  top: 400px;
  left: 10%;
  width: 90%;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .top_img-animals {
    top: 35%;
    left: 20%;
    width: 70%;
  }
}
.top_img-animals-img {
  width: 150%;
  height: 100%;
}
.top_logo {
  margin: 0 auto 24px;
  max-width: 65%;
}
.top_logo-img {
  max-height: 250px;
}
.top_icon {
  max-width: 70px;
  margin-right: 16px;
}
@media screen and (min-width: 1024px) {
  .top_icon {
    text-align: center;
    margin-right: 0;
    max-width: 100%;
  }
  .top_icon img {
    height: 50%;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .top_draw_img {
    display: block;
  }
}
.top_main-copy {
  margin: 24px auto 16px;
  font-size: 0.8rem;
}
.top_main-copy-sp {
  padding: 16px;
}

#clip03 {
  width: 500px;
}

.top_title {
  text-align: center;
}
.top_title-occupation {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.top_title-name {
  background: linear-gradient(transparent 50%, #ffebf1 50%);
  font-size: 1.3rem;
  letter-spacing: 5px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .top_title-name {
    margin-bottom: 24px;
  }
}

.top_menu-item:not(last-child) {
  margin-bottom: 16px;
}
.top_menu .works_list-item {
  margin: 16px;
}

.gallery {
  padding: 0 16px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .gallery {
    max-width: 1080px;
    margin: 72px auto;
  }
}
.gallery img {
  margin-bottom: 16px;
  transition-duration: 0.5s;
  filter: drop-shadow(0 0 10px #ffebf1);
}
.gallery img:hover {
  transform: scale(1.05, 1.05);
  transform-duration: 0.5s;
}

.category_ttl {
  background: url("../images/bg.svg") 65% 10%/140% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  height: 120px;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  text-align: center;
}
.category_ttl-item {
  width: 150px;
}

.section_cont {
  margin-bottom: 40px;
}
.section_ttl {
  padding-left: 32px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.section_ttl:after {
  content: "";
  position: absolute;
  background: #ffffce;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.section_caption {
  margin-bottom: 32px;
}

.portrait_blk {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.portrait_list {
  display: flex;
  height: auto;
  margin-bottom: 64px;
}
@media screen and (min-width: 1024px) {
  .portrait_list {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .portrait_wide {
    width: 45%;
  }
}

.hospital_blk, .others_blk, .graffiti_blk {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hospital_list, .others_list, .graffiti_list {
  margin-bottom: 64px;
}
@media screen and (min-width: 1024px) {
  .hospital_list, .others_list, .graffiti_list {
    width: 45%;
  }
}

.contact {
  background-color: #effcff;
  padding: 56px;
  width: 75%;
  margin: 0 auto 72px;
}
@media screen and (min-width: 1024px) {
  .contact {
    width: 50%;
  }
}
.contact_form-ttl {
  margin-bottom: 8px;
}
.contact_form-item {
  margin-bottom: 24px;
}
.contact_form-text {
  border: none;
  min-height: 32px;
  width: 100%;
}
.contact_form-box {
  min-height: 64px;
}
.contact_form-submit {
  text-align: center;
}
.contact_form-btn {
  border: none;
  padding: 16px;
  width: 50%;
  border-radius: 20px;
  font-size: 20px;
  background-color: #ff85aa;
  color: white;
}

.hospital_illust {
  margin-top: 48px;
  max-width: 1080px;
  display: block;
  margin: 0 auto;
}

.footer_cont {
  background-color: #949c9e;
  color: white;
}
.footer_cont-inr {
  width: 80%;
  margin: 32px auto 0;
  max-width: 1080px;
  padding: 40px;
}
.footer_cont-menu {
  color: white;
  display: none;
}
.footer_cont-menu-item a {
  color: white;
}
@media screen and (min-width: 1024px) {
  .footer_cont-menu {
    display: flex;
    justify-content: space-around;
  }
  .footer_cont-menu-item {
    margin-bottom: 16px;
  }
}

.footer_copy {
  margin-top: 32px;
  text-align: center;
}

.lum-lightbox .lum-lightbox-inner img {
  max-width: 160vw;
  /* 軽くスワイプで左端から右端まで動かせる量 */
}
@media screen and (min-width: 1024px) {
  .lum-lightbox .lum-lightbox-inner img {
    max-width: 50%;
  }
}

a.zoom {
  cursor: zoom-in;
}

/* フェードイン用のCSS */
.slide-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.8s 0s ease-out;
}

.baloon {
  position: fixed;
  top: 48px;
  right: 56px;
  width: 120px;
  height: auto;
  z-index: 999;
  animation-name: baloon-move;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

@keyframes baloon-move {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, -15px);
  }
}
.comment {
  display: flex;
  flex-direction: column;
  margin: 48px auto;
  padding: 0 32px;
}
.comment_item {
  text-align: center;
}

.btn_home {
  margin: 32px auto;
}
.btn_home-item {
  border: none;
  padding: 16px 40px;
  width: 100%;
  border-radius: 4px;
  font-size: 16px;
  background-color: #ff85aa;
  color: white;
}
.btn_home-link {
  color: white;
  text-decoration: none;
}

.footer_cont-thanks {
  margin-top: auto;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  padding-bottom: 200px;
  box-sizing: border-box;
}

/* 泡の見た目 */
.bubble {
  position: absolute;
  bottom: -50px;
  background-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: inset 0 0 10px rgba(255, 200, 216, 0.3);
  animation: bubble 8s linear infinite;
}
.bubble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0.25) translate(-70%, -70%);
  background: radial-gradient(rgba(255, 255, 255, 0.5), transparent);
  border-radius: 50%;
}

/* 泡が上に浮かび上がっていくアニメーション */
@keyframes bubble {
  0% {
    transform: translatY(0);
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    transform: translateY(-1300px);
    @media screen and (min-width: 1024px) {
      transform: translateY(-80vh);
    }
    opacity: 0;
  }
}
#myCircle {
  fill: #ffebf1;
  transition: all 2s;
  z-index: 100;
}
#myCircle:hover {
  fill: #90E9FF;
}
