@charset "UTF-8";
body {
  background-color: #EFFCFF;
}

.section-work {
  position: relative;
  padding: 80px 0 70px;
  margin-bottom: 200px;
  background-color: #C6EAF2;
}
.section-work::before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  width: 100%;
  height: 13.3333333333vw;
  max-height: 40px;
  background: url(..//images/decoration/header_bg2.svg) no-repeat top center/100% 100%;
}
.section-work::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 40px;
  bottom: -39px;
  background-image: url(..//images/decoration/section-Turquoise-blew_bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.section-work__container {
  padding: 0 4.2666666667vw;
}
.section-work__container h2 {
  color: #54B8CC;
  margin-bottom: 30px;
  text-align: left;
  font-family: "Hachi Maru Pop", cursive;
}
.section-work__container__list {
  list-style: none;
}
.section-work__container__list-item {
  width: 68.2666666667vw;
  height: 68.2666666667vw;
  margin: 0 auto 30px;
  max-width: 256px;
  max-height: 256px;
}
.section-work__container__list-item:nth-child(2), .section-work__container__list-item:nth-child(3), .section-work__container__list-item:nth-child(4), .section-work__container__list-item:nth-child(5), .section-work__container__list-item:nth-child(6), .section-work__container__list-item:nth-child(7), .section-work__container__list-item:nth-child(8) {
  display: none;
}
.section-work__container__list-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.section-work__container__list-item span {
  display: block;
  width: 100%;
  height: 100%;
}
.section-work__container__list-item span img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-work .more-btn {
  display: none;
}
.section-work .more-btn-mobile {
  display: block;
  width: 60%;
  margin: 0 auto;
  padding: 10px 0;
  background-color: #FFE178;
  border-radius: 6px;
}
.section-work .more-btn-mobile a {
  display: block;
  color: #585F62;
  cursor: pointer;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.section-work__thoughts {
  padding: 5% 4.266% 10%;
  margin: 60px 4.266% 0;
  background-image: url(..//images/decoration/lead-turquoise_bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.section-work__thoughts h2 {
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
}
.section-work__thoughts__list {
  list-style: none;
  height: 300px;
  overflow: auto;
  color: #585F62;
  background-color: #fff;
  padding: 2% 3%;
  border-radius: 10px;
}
.section-work__thoughts__list h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.section-work__thoughts__list-item {
  text-align: left;
  margin-bottom: 80px;
}
.section-work__thoughts__list-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 50px;
  background-color: #585F62;
  border-radius: 2px;
  opacity: 0.5;
}
.section-work__thoughts__list-item p {
  font-size: 1.6rem;
  font-weight: 400;
}
.section-work__thoughts__list-item img {
  display: block;
  width: 100%;
  margin-top: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-work .work_decoration-bird {
  position: relative;
  width: 100%;
  z-index: 1;
  top: 22px;
}
.section-work .work_decoration-bird_lightblew, .section-work .work_decoration-bird_turquoiseblew, .section-work .work_decoration-bird_white {
  display: block;
  position: absolute;
  width: 26.6666666667vw;
}
.section-work .work_decoration-bird_lightblew {
  left: 4.2666666667vw;
  top: 5.3333333333vw;
}
.section-work .work_decoration-bird_turquoiseblew {
  width: 13.3333333333vw;
  left: 48vw;
  top: 18.6666666667vw;
}
.section-work .work_decoration-bird_white {
  width: 8vw;
  right: 4.2666666667vw;
}

#screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #C6EAF2;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

body {
  background: #FFE178;
  /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #EFFCFF;
  /*画面を開いた後の背景色を指定*/
}

.screenbg {
  display: none;
  content: "";
  position: fixed;
  transform: scale(100);
  background-color: #FFE178;
  /*伸びる背景色の設定*/
  z-index: 999;
  /*丸のスタートの形状*/
  top: calc(50% - 1rem);
  /*50%から円の半径を引いた値*/
  left: calc(50% - 1rem);
  /*50%から円の半径を引いた値*/
  width: 2rem;
  height: 2rem;
}

/*bodyにappearクラスがついたら出現*/
body.appear .screenbg {
  display: block;
  border-radius: 50%;
  animation-name: PageAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    /*丸のスタート位置と形状*/
    transform: scale(100);
  }
  100% {
    /*丸の終了位置と形状*/
    transform: scale(0);
    display: none;
    /*終了時は消える*/
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoom img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.zoom img:hover {
  transform: scale(1.2);
}

.mask {
  display: block;
  line-height: 0;
  overflow: hidden;
}

/*　鳥デコレーション　ランダムフェードイン */
.birdScroll-box {
  opacity: 0;
}

.bird {
  animation-name: birdAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes birdAnime {
  from {
    opacity: 1;
    transform: translateX(500px) rotate(360deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}
.workScroll-box {
  opacity: 0;
}

.slide-down {
  animation-name: slideDownAnime;
  animation-duration: 0.5s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideDownAnime {
  from {
    opacity: 0;
    transform: translate(200px, -200px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.lightbox {
  left: 50% !important;
  padding: 40px 3% 6%;
  background-color: #DCEDF1;
  transform: translateX(-50%);
}

.lb-outerContainer {
  width: 100% !important;
  border: initial;
  border-radius: initial;
}

.lightbox .lb-image {
  margin: 0 auto;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}

.lb-data .lb-close {
  position: absolute;
  top: 1%;
  right: 20px;
  z-index: 100;
  float: none;
}

.lb-nav a.lb-prev {
  opacity: 1;
  width: 13vw;
  max-width: 45px;
  background-size: 60%;
  transform: translateX(-15%);
  opacity: 0.6;
}

.lb-nav a.lb-next {
  opacity: 1;
  width: 13vw;
  max-width: 45px;
  background-size: 60%;
  transform: translateX(15%);
  opacity: 0.6;
}

.title {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #585F62;
  margin: 10px 0;
}

.text {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.4rem;
  color: #585F62;
  margin-bottom: 20px;
}

@media (max-width: 799px) {
  main {
    overflow: hidden;
  }
  .slick-slider {
    width: 94% !important;
    margin: 0 auto !important;
  }
  .slider .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all 0.5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 1;
    /*透過50%*/
  }
  .slider .slick-slide.slick-center {
    transform: scale(1);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
  }
  /*矢印の設定*/
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
  }
  .slick-next {
    width: 30px;
    height: 30px;
    right: 10%;
    z-index: 10;
  }
  .slick-prev {
    width: 30px;
    height: 30px;
    left: 10%;
    z-index: 10;
  }
  .slick-prev:before,
  .slick-next:before {
    color: #FFE178;
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .section-work::after {
    height: 5.5555555556vw;
    max-height: 80px;
  }
  .section-work__container__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .section-work__container__list-item {
    width: 33.3333333333vw;
    height: 33.3333333333vw;
  }
  .section-work__thoughts {
    padding: 6% 160px;
    max-width: 1120px;
    margin: 80px auto 0;
  }
  .section-work__thoughts__list-item-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .section-work__thoughts__list-item-flex p {
    margin-right: 6%;
  }
  .section-work__thoughts__list-item-flex img {
    width: 40%;
    margin-top: 0;
  }
}
@media (min-width: 800px) {
  .section-work {
    padding: 150px 0;
  }
  .section-work::before {
    height: 5.5555555556vw;
    max-height: 80px;
  }
  .section-work__container {
    margin: 0 auto;
    padding: 0 11.1111111111vw;
  }
  .section-work__container h2 {
    font-size: 5rem;
    line-height: 5rem;
    margin-bottom: 80px;
  }
  .section-work__container__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 160px;
    gap: 30px;
  }
  .section-work__container__list-item {
    width: calc((100% - 90px) / 4);
    height: auto;
    max-width: none;
    max-height: none;
    aspect-ratio: 1/1;
    margin: 0;
  }
  .section-work__container__list-item:nth-child(odd), .section-work__container__list-item:nth-child(even) {
    display: block;
  }
  .section-work__container__list-item:nth-child(odd) {
    transform: translateY(130px);
  }
  .section-work .work_decoration-bird {
    max-width: 1120px;
    margin: 0 auto;
    top: -8px;
  }
  .section-work .work_decoration-bird_lightblew, .section-work .work_decoration-bird_turquoiseblew, .section-work .work_decoration-bird_white {
    top: 0;
    left: 0;
  }
  .section-work .work_decoration-bird_lightblew {
    top: 70px;
    left: 4%;
    max-width: 280px;
  }
  .section-work .work_decoration-bird_turquoiseblew {
    top: 170px;
    left: 45%;
    max-width: 150px;
  }
  .section-work .work_decoration-bird_white {
    top: 100px;
    left: 85%;
    max-width: 100px;
  }
  .section-work .more-btn {
    display: block;
    width: 20%;
    max-width: 270px;
    margin: 0 auto;
    padding: 10px 0;
    background-color: #FFE178;
    border-radius: 10px;
    color: #585F62;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    cursor: pointer;
  }
  .section-work .more-btn:hover {
    opacity: 1;
    color: #fff;
    background-color: #54B8CC;
    transition: all 0.3s;
  }
  .section-work .more-btn a {
    display: block;
    text-decoration: none;
    color: #585F62;
    font-family: "Noto Sans JP", sans-serif;
  }
  .section-work .more-btn a:hover {
    opacity: 1;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
    width: 100%;
    height: 100%;
  }
  .section-work .more-btn-mobile {
    display: none;
  }
  .lightbox {
    padding: 40px 10% 6%;
    background-color: initial;
  }
  .lb-outerContainer {
    padding: 50px 24px 24px;
    background-color: #DCEDF1;
  }
  .lb-dataContainer {
    padding: 6% 12% 24px;
    background-color: #DCEDF1;
    width: 100% !important;
    border-radius: 0;
  }
  .lightbox .lb-image {
    width: 750px !important;
    height: auto !important;
  }
  .lb-data .lb-close {
    top: 50px;
    right: 13%;
  }
  .lb-nav a.lb-next {
    background-size: 100%;
    transform: translateX(-20%);
    opacity: 1;
  }
  .lb-nav a.lb-prev {
    background-size: 100%;
    transform: translateX(20%);
    opacity: 1;
  }
}/*# sourceMappingURL=gallery.css.map */