@charset "UTF-8";

@media screen and (min-width:800px) {

  /* PC版のcss */
  .stars {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
    background-image: linear-gradient(0deg, #5cffd1, #3c6dc8);
    overflow: hidden;
  }

  .star {
    position: absolute;
    display: block;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px 2px rgba(#74ffb9, 0.2);
    opacity: 0;
    animation: twinkle 7s infinite;
  }

  @keyframes twinkle {
    0% {
      opacity: 0;
    }

    50% {
      transform: scale(1.1);
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: scale(1);
    }
  }

  body {
    background: #e4e4ffd5
  }

  body {
    font-family: "游ゴシック", "Yu Gothic", "Meiryo", "メイリオ", "sans-serif", serif;
  }

  body {
    position: relative;
  }

  .sf {
    display: none;
  }

  .title {
    display: flex;
    justify-content: center;
    position: relative;
    top: 100px;
    color: #c8c8c8d6;
    font-weight: bold;
    font-size: 70px;
  }

  h2 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #242961;
    margin-top: 100px;
    margin-bottom: 20px;
  }

  p {
    font-size: 20px;
    color: #242961;
    overflow-wrap: normal;
    padding-left: -30px;
  }

  a {
    text-decoration: none;
    display: block;
  }


  /*作品*/

  .work1,
  .work2,
  .work3,
  .work4,
  .work5,
  .work6 {
    display: flex;
    justify-content: center;
    font-size: 20px;
    background-color: #ffffff;
    border-radius: 25px;
    padding-top: 25px;
    padding-right: 15px;
    margin-top: 40px;
  }

  .work1 {
    height: 390px;
  }

  .work2 {
    height: 360px;
  }

  .work3,
  .work4 {
    height: 310px;
  }

  .work5 {
    height: 330px;
  }

  .work6 {
    height: 330px;
  }

  .work1 img,
  .work2 img,
  .work3 img,
  .work4 img,
  .work5 img,
  .work6 img {
    width: 350px;
    height: 300px;
  }

  .workContents p {
    padding-left: 5px;
  }

  .button {
    text-align: center;
    margin-top: 15px;
  }

  /*デザインカンプ*/

  .aquarium {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 25px;
    padding-left: 10px;
    margin-bottom: 50px;
  }

  .macaron,
  .citrus {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    padding-left: 10px;
    margin-bottom: 50px;
  }

  .macaron img,
  .aquarium img,
  .citrus img {
    width: 220px;
  }

  .contentsMacaron,
  .contentsAquarium,
  .contentsCitrus {
    list-style: disc;
    text-align: left;
    padding-left: 25px;
    background-color: #ffffff;
    border-radius: 25px;
    padding-top: 25px;
    line-height: 35px;
    width: 500px;
    height: 340px;
  }

  .contentsMacaron li,
  .contentsAquarium li,
  .contentsCitrus li {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contentsMacaron p,
  .contentsAquarium p,
  .contentsCitrus p {
    padding-left: 3px;
  }

  .copy {
    display: flex;
    justify-content: flex-start;
    color: #000000;
    font-size: 6px;
    position: sticky;
    bottom: 0;
  }

  .buttonStar {
    position: fixed;
    right: 50px;
    bottom: 50px;
    transition: 1.5s ease 0.8s;
    z-index: 100;
  }

  .buttonStar:hover {
    transform: rotate(360deg);
  }

  html {
    scroll-behavior: smooth;
  }

  * {
    margin: 0;
    padding: 0;
  }
}


@media screen and (max-width:799px) {

  /* スマホ版のcss */
  .stars {
    position: relative;
    width: 100%;
    height: 260px;
    margin-bottom: 20px;
    background-image: linear-gradient(0deg, #1e76aa, #1d3e7c);
    overflow: hidden;
  }

  .star {
    position: absolute;
    display: block;
    background-color: #ffef3e;
    border-radius: 50%;
    box-shadow: 0 0 4px 2px rgba(#ffffff, 0.2);
    opacity: 0;
    animation: twinkle 7s infinite;
  }

  @keyframes twinkle {
    0% {
      opacity: 0;
    }

    50% {
      transform: scale(1.1);
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: scale(1);
    }
  }

  body {
    background: #dff0faf0;
  }

  body {
    font-family: "游ゴシック", "Yu Gothic", "Meiryo", "メイリオ", "sans-serif", serif;
  }

  .title {
    display: flex;
    justify-content: center;
    position: relative;
    top: 100px;
    color: #b8b5b5d6;
    font-weight: bold;
    font-size: 45px;
  }

  h2 {
    text-align: center;
    font-size: 18px;
    color: #242961;
    margin-top: 60px;
    margin-bottom: 20px;
  }

  li {
    font-size: 12px;
    color: #242961;
  }

  p {
    font-size: 12px;
    color: #242961;
    overflow-wrap: normal;
  }

  a {
    text-decoration: none;
    display: block;
  }

  img {
    max-width: 100%;
  }

  /*作品*/

  .work1,
  .work2,
  .work3,
  .work4,
  .work5,
  .work6 {
    display: flex;
    font-size: 13px;
    background-color: #ffffff;
    border-radius: 25px;
    padding-top: 25px;
    margin-top: 20px;
  }

  .work1,
  .work2 {
    height: 260px;
  }

  .work3,
  .work5 {
    height: 210px;
  }

  .work4 {
    height: 190px;
  }

  .work6 {
    height: 220px;
  }

  .work1 img,
  .work2 img,
  .work3 img,
  .work4 img,
  .work5 img,
  .work6 img {
    max-width: 70%;
    height: 75%;
  }

  .workContents p {
    padding-left: 5px;
    padding-right: 5px;
  }

  .button {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  /*デザインカンプ*/

  .macaron,
  .aquarium,
  .citrus {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding-right: 7px;
    padding-left: 7px;
    margin-bottom: 70px;
  }

  .macaron img,
  .aquarium img,
  .citrus img {
    max-width: 40%;
  }

  .contentsMacaron {
    list-style: none;
    text-align: left;
    padding-left: 5px;
    background-color: #ffffff;
    border-radius: 25px;
    padding-top: 20px;
    line-height: 20px;
    width: 350px;
    height: 160px;
  }

  .contentsAquarium,
  .contentsCitrus {
    list-style: none;
    text-align: left;
    padding-left: 5px;
    background-color: #ffffff;
    border-radius: 25px;
    padding-top: 20px;
    line-height: 20px;
    width: 350px;
    height: 210px;
  }

  .contentsMacaron p,
  .contentsAquarium p,
  .contentsCitrus p {
    font-size: 10px;
    padding-left: 3px;
    padding-right: 3px;
  }

  .copy {
    /*/display: flex;
    justify-content: flex-start;*/
    color: #000000;
    font-size: 6px;
    position: fixed;
    bottom: 0;
  }

  .buttonStar {
    position: fixed;
    right: 5px;
    bottom: 15px;
    width: 85px;
  }

  .buttonStar:hover {
    transform: rotate(360deg);
  }


  html {
    scroll-behavior: smooth;
  }

  * {
    margin: 0;
    padding: 0;
  }
}