@charset "utf-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  background-color: #dbdbdb;
}

html {
  font-family: "Zen Kaku Gothic New", sans-serif;
  scroll-behavior: smooth;
}

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

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width: 100px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top .pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: 0.2s;
}

.top .pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

.top a:hover {
  opacity: 0.4;
}

/* header */
header .sp-header-container {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 10px;
  align-items: center;
  padding: 5px;
  position: fixed;
  letter-spacing: 2px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.3);
}

header h1 img {
  width: 60px;
}

header .pc-navi {
  display: none;
}

header .menu-btn {
  display: block;
  position: relative;
  width: 65px;
  height: 65px;
  cursor: pointer;
  z-index: 100;
}

header .menu-btn span {
  position: absolute;
  width: 30px;
  height: 3px;
  left: calc(50% - 40% / 2);
  background: #000;
  transition: 0.4s;
}

header .top-bar {
  top: calc(35% - 2px / 2);
}
header .center-bar {
  top: calc(50% - 2px / 2);
}
header .under-bar {
  top: calc(65% - 2px / 2);
}

#open:checked ~ .menu-btn > .top-bar {
  top: calc(50% - 2px / 2);
  transform: rotate(45deg);
  background: #464646;
}

#open:checked ~ .menu-btn > .center-bar {
  opacity: 0;
}

#open:checked ~ .menu-btn > .under-bar {
  top: calc(50% - 2px / 2);
  transform: rotate(-45deg);
  background: #464646;
}

#open {
  display: none;
}

.inner-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  height: 100vh;
  box-sizing: border-box;
  padding: 100px 60px;
  background: #eee;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 99;
  overflow-y: scroll;
  transform: translate(100%, 0);
  border-radius: 8% 0 0 8%;
}

.inner-menu h1 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #000;
  letter-spacing: 8px;
  margin-left: 20px;
}

.inner-menu ul {
  list-style: none;
  padding-left: 0;
}

.inner-menu li {
  margin-bottom: 20px;
  border-bottom: 1px #000 solid;
  padding: 10px;
  display: block;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.inner-menu ul li:hover {
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0.4;
}

.inner-menu ul li img {
  width: 30px;
  margin-right: 20px;
  margin-left: 10px;
}

.inner-menu .sns-menu {
  display: flex;
  column-gap: 30px;
  margin-top: 10px;
}

.inner-menu p img {
  width: 30px;
}

.inner-menu p a {
  transition: 0.3s;
}

.inner-menu p a:hover {
  opacity: 0.4;
}

.inner-menu ul a {
  color: #000;
  position: relative;
  font-weight: 700;
  display: block;
  letter-spacing: 5px;
}

#open:checked ~ .inner-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

header .sns-menu {
  margin-left: 20px;
}

/**********************************/
/* header pc-size */
@media screen and (min-width: 768px) {
  header .header-container {
    width: 100%;
    margin: 10px auto;
    padding: 15px;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    position: fixed;
    z-index: 100;
  }

  header .sp-header-container {
    display: none;
  }

  header .pc-navi {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }

  header .pc-navi .global-navi {
    display: flex;
    align-items: center;
    margin: 0 auto 0 50px;
  }

  header .pc-navi .global-navi li {
    display: flex;
    padding: 0 10px 0 10px;
    position: relative;
  }

  header .pc-navi .global-navi li:nth-child(2) {
    margin: 0 50px;
  }

  header .pc-navi .global-navi li img {
    width: 30px;
    margin-right: 10px;
  }

  header .pc-navi .global-navi li a {
    font-size: 18px;
    letter-spacing: 5px;
    font-weight: 700;
    color: #000;
  }

  header .pc-navi .global-navi li a:hover {
    opacity: 0.7;
  }

  nav li.has-child ul li:last-child a {
    border-bottom: none;
  }

  nav li.has-child ul li a:hover,
  nav li.has-child ul li a:active {
    background: rgba(255, 255, 255, 0.8);
  }

  header .pc-navi .global-navi li a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.5s;
  }

  header .pc-navi .global-navi li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
/**********************************/

/* main */
main #main-visual .slide-items01 {
  width: 100%;
  position: relative;
  margin-bottom: 150px;
}

main #main-visual .slide-items01 li img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  opacity: 0.7;
}

main #main-visual .main-visual-text {
  transform: translate(-50%, -50%);
  color: #000;
  text-align: center;
  position: absolute;
  z-index: 97;
  top: 280px;
  left: 50%;
  letter-spacing: 5px;
  padding: 10px;
}

main #main-visual .pc-top-slide {
  display: none;
}

main .top-more {
  text-align: right;
  margin-top: 30px;
  margin-right: 10px;
}

main .top-more a {
  font-size: 20px;
  color: #000;
  font-weight: 900;
  border: 2px #000 solid;
  border-radius: 30px;
  padding: 2px 18px 8px;
  background-color: #fff;
  font-family: "Yuji Syuku", serif;
  transition: 0.3s;
}

main .top-more a:hover {
  opacity: 0.4;
}

/**********************************/
/* main pc-size */
@media screen and (min-width: 768px) {
  main #main-visual .top-sp-slide {
    display: none;
  }

  main #main-visual .slide-items01 {
    padding: 120px;
    width: 100%;
    margin: 0 auto 100px;
  }

  main #main-visual .slide-items01 li img {
    height: 680px;
    object-fit: cover;
    margin: 0 auto;
  }

  main #main-visual .main-visual-text {
    top: 450px;
  }

  main #main-visual .pc-top-slide {
    display: block;
  }
}
/**********************************/

/**********************************/
/* main tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #main-visual {
    margin: 0 auto;
    padding: 0 20px;
  }

  main #main-visual .slide-items01 {
    padding: 150px 0 0;
  }

  main #main-visual .main-visual-text {
    top: 470px;
  }

  main #main-visual .pc-top-slide {
    display: block;
  }
}
/**********************************/

/* top-about */
main #top-about {
  width: 90%;
  margin: 0 auto 150px;
}

main #top-about .top-about-title {
  letter-spacing: 5px;
  width: 100%;
}

main #top-about .about-visual {
  width: 100%;
  margin-top: 20px;
  position: relative;
}

main #top-about .about-visual .sp-about-title {
  position: absolute;
  color: #fff;
  z-index: 98;
  top: 85%;
  left: 10px;
  letter-spacing: 2px;
}

main #top-about .top-about-text {
  margin-top: 20px;
}

main #top-about .top-about-text p {
  font-size: 14px;
}

main #top-about .top-about-text p:nth-child(3),
main #top-about .top-about-text p:nth-child(4),
main #top-about .top-about-text p:nth-child(5) {
  margin-top: 10px;
}

main #top-about .top-about-text .pc-about-title {
  display: none;
}

/**********************************/
/* top-about pc-size */
@media screen and (min-width: 768px) {
  main #top-about {
    width: 60%;
    margin: 0 auto 150px;
  }

  main #top-about .top-about-container {
    display: flex;
    justify-content: space-between;
  }

  main #top-about .about-visual {
    width: 100%;
    position: relative;
  }

  main #top-about .top-about-text {
    width: 55%;
  }

  main #top-about .about-visual img {
    width: 95%;
  }

  main #top-about .about-visual .sp-about-title {
    display: none;
  }

  main #top-about .top-about-text .pc-about-title {
    display: block;
    color: #000;
    margin-bottom: 20px;
  }
}
/**********************************/
/**********************************/
/* top-about tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #top-about {
    width: 90%;
    margin: 0 auto 150px;
  }

  main #top-about .top-about-container {
    display: flex;
    justify-content: space-between;
  }

  main #top-about .top-about-text {
    width: 50%;
  }
}
/**********************************/

/* top-skill */
main #top-skill {
  width: 90%;
  margin: 0 auto 150px;
}

main #top-skill h2 {
  letter-spacing: 5px;
  width: 100%;
}

main #top-skill .skill-menu .sp-skill-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

main #top-skill .skill-menu div .skill-items {
  width: 90%;
  margin: 20px 0 20px;
  text-align: center;
}

main #top-skill .skill-menu div img {
  width: 50px;
  padding: 5px;
}

main #top-skill .skill-menu div p {
  letter-spacing: 3px;
  font-weight: 600;
}

main #top-skill .skill-menu div p:nth-child(2) {
  width: 80px;
  height: 80px;
  margin: 10px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #000;
  transition: 0.2s;
  background-color: #fff;
}

main #top-skill .top-software {
  margin: 50px auto 150px;
}

main #top-skill .top-software h2 {
  margin-bottom: 20px;
}

main #top-skill .top-software .sp-top-software {
  display: flex;
  width: 90%;
  margin: 0 auto 20px;
  justify-content: space-between;
}

main #top-skill .top-software .sp-top-software div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

main #top-skill .top-software .sp-top-software div img {
  width: 90px;
}

main #top-skill .top-software .sp-top-software div span {
  text-align: center;
  letter-spacing: 1px;
  font-weight: 600;
}

main #top-skill .top-software .pc-top-software {
  display: none;
}

/**********************************/
/* top-skill pc-size */
@media screen and (min-width: 768px) {
  main #top-skill {
    width: 60%;
    margin: 0 auto 200px;
  }

  main #top-skill .skill-menu .pc-skill-container {
    display: flex;
    margin-bottom: 150px;
  }

  main #top-skill .skill-menu .sp-top-software {
    display: none;
  }

  main #top-skill .top-software .pc-top-software {
    display: block;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  main #top-skill .top-software .pc-top-software div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }

  main #top-skill .top-software .pc-top-software img {
    width: 90px;
  }

  main #top-skill .top-software .pc-top-software span {
    text-align: center;
    letter-spacing: 3px;
    font-weight: 600;
  }
}
/**********************************/

/**********************************/
/* top-skill  tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #top-skill {
    width: 75%;
    margin: 0 auto 200px;
  }
}
/**********************************/

/* top-works */
main #top-works {
  width: 90%;
  margin: 0 auto 150px;
}

main #top-works h2 {
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

main #top-works .works-thumbnail {
  width: 90%;
  margin: 0 auto;
}

main #top-works .works-thumbnail .slide-items02 li img {
  width: 250px;
  height: 350px;
  object-fit: cover;
}

main #top-works .works-text {
  width: 90%;
  margin: 20px auto 0;
  font-size: 14px;
}

main #top-works .works-text p:nth-child(2),
main #top-works .works-text p:nth-child(3),
main #top-works .works-text p:nth-child(4),
main #top-works .works-text p:nth-child(5),
main #top-works .works-text p:nth-child(6) {
  margin-top: 10px;
}

/**********************************/
/* top-works pc-size */
@media screen and (min-width: 768px) {
  main #top-works {
    width: 55%;
    margin: 0 auto 150px;
  }

  main #top-works .pc-top-works {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  main #top-works .pc-top-works .works-text {
    width: 40%;
  }

  main #top-works .pc-top-works .works-thumbnail {
    width: 50%;
  }
}
/**********************************/

/**********************************/
/* top-works tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #top-works {
    width: 90%;
    margin: 0 auto 200px;
  }

  main #top-works .pc-top-works {
    width: 100%;
  }

  main #top-works .pc-top-works .works-text {
    width: 45%;
  }

  main #top-works .pc-top-works .works-thumbnail {
    width: 50%;
  }
}
/**********************************/

/* about */
main #about {
  width: 85%;
  display: flex;
  flex-direction: column;
  padding: 150px 0 50px;
  margin: 0 auto;
}

main #about h1 {
  text-align: center;
  letter-spacing: 5px;
  color: #000;
}

main #about h2 {
  margin: 30px auto 30px;
}

main #about h2 img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  margin: 0 auto;
}

main #about div p:nth-child(7) {
  margin: 0 auto 30px;
}

main #about p {
  font-size: 16px;
  color: #3e3e3e;
  font-weight: 500;
  margin-bottom: 5px;
}

main .about-picture {
  width: 95%;
  margin: 0 auto;
  padding-bottom: 50px;
}

main .about-picture p {
  margin-bottom: 20px;
}

main .about-picture p img {
  height: 350px;
  object-fit: cover;
}

/**********************************/
/* about pc-size */
@media screen and (min-width: 768px) {
  main #about {
    width: 70%;
  }

  main #about .pc-about {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }

  main #about .pc-about h2 {
    width: 50%;
  }

  main #about .pc-about h2 img {
    width: 100%;
    height: 550px;
  }

  main #about .pc-about .about-text {
    width: 45%;
  }

  main #about .pc-about .about-text p {
    margin-bottom: 8px;
  }

  main #about .pc-about .about-text p:nth-child(7) {
    margin-bottom: 40px;
  }

  main .about-picture {
    width: 85%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  main .about-picture p {
    width: 32%;
  }

  main .about-picture p img {
    height: 250px;
    object-fit: cover;
  }
}
/**********************************/

/**********************************/
/* about tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #about {
    width: 90%;
  }

  main #about .pc-about {
    width: 100%;
  }

  main #about .pc-about .about-text p {
    margin-bottom: 8px;
  }

  main #about .pc-about .about-text p:nth-child(7) {
    margin-bottom: 40px;
  }

  main .about-picture {
    width: 95%;
    margin: 0 auto;
  }

  main .about-picture p img {
    height: 200px;
    object-fit: cover;
  }
}
/**********************************/

/* tab */
.tab {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px #fff solid;
}

.tab li {
  width: 25%;
}

.tab li a {
  color: #000;
  display: block;
  background: #ddd;
  padding: 10px 0;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  transition: 0.4s;
}

.tab li.active a {
  background: #fff;
}

.area {
  display: none;
  opacity: 0;
  background: #dbdbdb;
  padding: 50px 20px;
}

.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}

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

/*********************************************/
/* tab pc-size */
@media screen and (min-width: 768px) {
  .tab li a {
    padding: 15px 0;
    font-size: 18px;
    letter-spacing: 5px;
  }

  .tab li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
}
/*********************************************/

/* works */
main #works {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 0;
}

main #works section h1 {
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 50px;
  color: #000;
}

main #works section {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 80px;
}

main #works section .works-menu {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 50px;
}

main #works section .works-menu a img {
  width: 100%;
  object-fit: cover;
  transition: 0.2s;
  margin-bottom: 15px;
  border: 1px #000 solid;
  display: block;
}

main #works section .works-menu a div {
  background-size: cover;
}

main #works section .works-menu a img:hover {
  transform: translate(-5px, -5px);
}

main #works section .works-menu p {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
  letter-spacing: 2px;
}

/**********************************/
/* works pc-size */
@media screen and (min-width: 768px) {
  main #works section {
    width: 60%;
  }

  main #works .works-menu {
    margin: 130px 0;
  }

  main #works section .works-menu {
    width: 30%;
  }

  main #works section .pc-flex-container {
    display: flex;
  }
}
/**********************************/

/**********************************/
/* works tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #works section {
    width: 90%;
  }

  main .about-picture p img {
    height: 200px;
    object-fit: cover;
  }

  main #works section .works-menu {
    width: 30%;
  }
}
/**********************************/

/* cars-illusts */
main #cars-illusts {
  width: 80%;
  margin: 0 auto;
  padding: 150px 0 80px;
}

main #cars-illusts h1 {
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 50px;
  color: #000;
}

main #cars-illusts .cars-illusts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

main #cars-illusts .cars-illusts .cars-items p {
  margin: 0 auto;
}

main #cars-illusts .cars-illusts .cars-items p img {
  margin: 0 auto;
  margin-bottom: 50px;
  width: 300px;
}

main #cars-illusts .cars-illusts .cars-items {
  margin: 0 auto;
}

/**********************************/
/* cars-illusts pc-size */
@media screen and (min-width: 768px) {
  main #cars-illusts {
    width: 60%;
    margin: 0 auto;
  }

  main #cars-illusts h1 {
    margin: 0 auto 50px;
  }

  main #cars-illusts .cars-illusts {
    margin: 0 auto;
  }

  main #cars-illusts .cars-illusts div p img {
    width: 300px;
    margin-bottom: 50px;
  }

  main #cars-illusts .cars-illusts .cars-items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}

/**********************************/

/**********************************/
/* cars-illusts tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #cars-illusts {
    width: 90%;
  }
}
/**********************************/

/* AWAKUN */
main #awakun {
  width: 85%;
  margin: 0 auto;
  padding: 150px 0 80px;
}

main #awakun h1 {
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 50px;
  color: #000;
}

main #awakun h2 {
  color: #000;
  letter-spacing: 4px;
}

main #awakun .awakun-text {
  color: #000;
  font-weight: 500;
}

main #awakun .awakun-text p {
  font-size: 15px;
}

main #awakun .detail a {
  border: 2px solid #000;
  border-radius: 25px;
  color: #000;
  padding: 5px 20px;
  transition: 0.5s;
  font-weight: 900;
  background-color: #fff;
  text-align: right;
}

main #awakun .detail a:hover {
  opacity: 0.4;
}

main #awakun .line-stamp,
main #awakun .line-emoji,
main #awakun .suzuri,
main #awakun .vtuber {
  margin-bottom: 70px;
}

main #awakun .line-stamp .stamp-items {
  margin-bottom: 30px;
}

main #awakun .line-stamp .stamp-items div {
  width: 300px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

main #awakun .line-stamp .stamp-items div p img {
  width: 130px;
}

main #awakun .line-stamp .stamp-items p {
  margin-top: 20px;
  text-align: right;
}

main #awakun .line-stamp span {
  font-size: 12px;
}

main #awakun .line-emoji .emoji-items {
  margin-bottom: 30px;
}

main #awakun .line-emoji .emoji-items div {
  width: 300px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

main #awakun .line-emoji .emoji-items p {
  text-align: right;
  margin-top: 20px;
}

main #awakun .line-emoji .emoji-items div p img {
  width: 60px;
}

main #awakun .suzuri .suzuri-items {
  width: 100%;
  margin-top: 30px;
}

main #awakun .suzuri .suzuri-items div {
  width: 100%;
  margin: 0 auto;
}

main #awakun .suzuri .suzuri-items div p {
  margin: 0 auto;
}

main #awakun .suzuri .suzuri-items div p img {
  width: 100%;
}

main #awakun .suzuri .suzuri-items p {
  text-align: right;
  margin-top: 20px;
}

main #awakun .suzuri .suzuri-items div p {
  margin-bottom: 20px;
}

main #awakun .vtuber .vtuber-items {
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
}

main #awakun .vtuber .vtuber-items p {
  margin: 0 auto;
}

main #awakun .vtuber .vtuber-items img {
  width: 250px;
}

main #awakun .wallpaper .wallpaper-items {
  margin-top: 40px;
}

main #awakun .wallpaper .wallpaper-items div {
  width: 300px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 20px;
}

main #awakun .wallpaper .wallpaper-items div p img {
  width: 140px;
}

main #awakun .wallpaper .wallpaper-items div p a img {
  transition: 0.3s;
}

main #awakun .wallpaper .wallpaper-items div p a img:hover {
  opacity: 0.8;
  transform: translate(-5px, -5px);
}

/**********************************/
/* AWAKUN pc-size */
@media screen and (min-width: 768px) {
  main #awakun {
    width: 40%;
  }

  main #awakun .line-stamp .stamp-items div {
    width: 500px;
  }

  main #awakun .line-stamp .stamp-items div p img {
    width: 200px;
  }

  main #awakun .line-emoji .emoji-items div {
    width: 500px;
  }

  main #awakun .line-emoji .emoji-items p {
    text-align: right;
    margin-top: 20px;
  }

  main #awakun .line-emoji .emoji-items div p img {
    width: 100px;
  }

  main #awakun .suzuri .suzuri-items div {
    width: 100%;
  }

  main #awakun .suzuri .suzuri-items .suzuri-ex {
    display: flex;
    justify-content: space-between;
  }

  main #awakun .suzuri .suzuri-items div p img {
    width: 100%;
  }

  main #awakun .suzuri .suzuri-items .suzuri-ex p {
    width: 48%;
  }

  main #awakun .suzuri .suzuri-items .suzuri-ex p img {
    height: 440px;
    object-fit: cover;
  }

  main #awakun .vtuber .vtuber-items {
    margin: 10px auto 20px;
  }

  main #awakun .vtuber .vtuber-items img {
    width: 500px;
  }

  main #awakun .wallpaper .wallpaper-items div {
    width: 550px;
    margin: 0 auto 50px;
  }

  main #awakun .wallpaper .wallpaper-items div p img {
    width: 250px;
  }
}
/**********************************/

/**********************************/
/* awakun tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #awakun {
    width: 80%;
  }
}
/**********************************/

/* utsubo */
main #utsubo {
  width: 85%;
  margin: 0 auto;
  padding: 150px 0 80px;
}

main #utsubo h1 {
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 50px;
  color: #000;
}

main #utsubo h2 {
  color: #000;
  letter-spacing: 4px;
}

main #utsubo .utsubo-text {
  color: #000;
  font-weight: 500;
}

main #utsubo .utsubo-text p {
  font-size: 15px;
}

main #utsubo .detail a {
  border: 2px solid #000;
  border-radius: 25px;
  color: #000;
  padding: 5px 20px;
  transition: 0.5s;
  background-color: #fff;
}

main #utsubo .detail a:hover {
  opacity: 0.4;
}

main #utsubo .suzuri {
  margin-bottom: 70px;
}

main #utsubo .suzuri .suzuri-items {
  margin-top: 30px;
}

main #utsubo .suzuri .suzuri-items div {
  width: 100%;
  margin: 0 auto;
}

main #utsubo .suzuri .suzuri-items .suzuri-ex p img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

main #utsubo .suzuri .suzuri-items p {
  text-align: right;
  margin-top: 20px;
}

main #utsubo .wallpaper .wallpaper-items {
  margin-top: 40px;
}

main #utsubo .wallpaper .wallpaper-items div {
  width: 300px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 20px;
}

main #utsubo .wallpaper .wallpaper-items div p img {
  width: 140px;
  transition: 0.3s;
}

main #utsubo .wallpaper .wallpaper-items div p a img:hover {
  opacity: 0.8;
  transform: translate(-5px, -5px);
}

/**********************************/
/* utsubo pc-size */
@media screen and (min-width: 768px) {
  main #utsubo {
    width: 40%;
  }

  main #utsubo .suzuri .suzuri-items div {
    width: 100%;
  }

  main #utsubo .suzuri .suzuri-items .suzuri-ex {
    display: flex;
    justify-content: space-between;
  }

  main #utsubo .suzuri .suzuri-items div p img {
    width: 100%;
  }

  main #utsubo .suzuri .suzuri-items .suzuri-ex p {
    width: 48%;
  }

  main #utsubo .suzuri .suzuri-items .suzuri-ex p img {
    height: 440px;
    object-fit: cover;
  }

  main #utsubo .wallpaper .wallpaper-items div {
    width: 550px;
    margin: 0 auto 50px;
  }

  main #utsubo .wallpaper .wallpaper-items div p img {
    width: 250px;
  }
}
/**********************************/

/**********************************/
/* utsubo tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #utsubo {
    width: 80%;
  }
}
/**********************************/

/* footer */
footer {
  width: 100%;
  background: #fff;
  padding: 70px 0;
}

footer .footer-container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-menu nav {
  display: flex;
}

footer .footer-menu nav ul li a {
  color: #000;
  font-size: 18px;
  position: relative;
  font-weight: 700;
  letter-spacing: 3px;
}

footer .footer-menu nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #ccc;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}

footer .footer-menu nav ul li a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

footer .footer-menu nav ul li:nth-child(1),
footer .footer-menu nav ul li:nth-child(2) {
  margin-bottom: 30px;
}

footer .footer-sns-menu {
  display: flex;
  justify-content: center;
}

footer .logo_sns img:nth-child(1) {
  width: 90px;
  margin: 0 0 30px 30px;
}

footer .footer-sns-menu p {
  border: #000 solid 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: 0.5s;
}

footer .logo_sns .footer-sns-menu p a img {
  width: 20px;
  margin: 10px;
}

footer .logo_sns .footer-sns-menu p:hover {
  background-color: #ccc;
}

/**********************************/
/* footer pc-size */
@media screen and (min-width: 768px) {
  footer .footer-container {
    width: 45%;
    justify-content: center;
  }

  footer .footer-container .footer-menu nav ul {
    display: flex;
    margin-top: 30px;
  }

  footer .footer-container .footer-menu nav ul li {
    margin-right: 40px;
  }

  footer .footer-container .footer-menu nav ul li a {
    font-size: 17px;
  }

  footer .footer-container .logo_sns {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  footer .footer-container .logo_sns h2 {
    margin-top: 30px;
  }
}
/**********************************/

/* fadeUp */
.js-fadeUp01 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp01.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.js-fadeUp02 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp02.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.js-fadeUp02-1 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp02-1.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.js-fadeUp02-2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp02-2.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.js-fadeUp03 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp03.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.js-fadeUp04 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp04.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.js-fadeUp05 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp05.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.js-fadeUp06 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp06.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

.js-fadeUp07 {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp07.to-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.js-fadeUp08 {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp08.to-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
