@charset "utf-8";

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  height: 100%;
}
body {
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  font-family: "Hannari", "Noto Serif JP", serif;
}
/* fade-styles.css */
.hamburger-fade {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-fade__wrapper {
  position: relative;
  width: 30px;
  height: auto;
  margin: 0 auto;
}

.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00beb8;
  background-image: url(../images/hamburger.png);

  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-fade__line:nth-child(1) {
  top: 0;
}
.hamburger-fade__line:nth-child(2) {
  top: 9px;
}
.hamburger-fade__line:nth-child(3) {
  top: 18px;
}

.hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}

.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 196, 222, 0.95);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active {
  visibility: visible;
}

.nav-fade.active .nav-fade__bg {
  opacity: 1;
}

.nav-fade__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5vh 10vw;
}

.nav-fade__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-fade__item {
  position: relative;
  margin-bottom: 2vh;
  padding-left: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active .nav-fade__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade.active .nav-fade__item:nth-child(1) {
  transition-delay: 0.2s;
}
.nav-fade.active .nav-fade__item:nth-child(2) {
  transition-delay: 0.3s;
}
.nav-fade.active .nav-fade__item:nth-child(3) {
  transition-delay: 0.4s;
}
.nav-fade.active .nav-fade__item:nth-child(4) {
  transition-delay: 0.5s;
}

.nav-fade__number {
  position: absolute;
  left: 0;
  color: #666;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

.nav-fade__link {
  display: inline-block;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Rubik Bubbles", system-ui;
  font-weight: 400;
  font-style: normal;
}

.nav-fade__link:hover {
  color: #4a90e2;
}

.nav-fade__info {
  margin-top: auto;
  padding-left: 60px;
  color: #666;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
}

.nav-fade.active .nav-fade__info {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade__address,
.nav-fade__tel {
  margin: 5px 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .global_navi {
    top: 10px;
    right: 10px;
    display: flex;

    max-width: 1050px;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (min-width: 599px) and (max-width: 768px) {
  .nav-fade__link {
    font-size: 24px;
  }

  .nav-fade__item {
    padding-left: 40px;
    margin-bottom: 1.5vh;
  }

  .nav-fade__info {
    padding-left: 40px;
  }
}

html,
body {
  height: 100%;
}

.main {
  color: #fff;
  background: #c2e9ff;
}
.top-text {
  width: 800px;
  margin-left: 100px;
  padding: 10px;
  font-weight: bold;
  color: #00beb8;
  line-height: 2em;
}
.top-text-body {
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;

  font-family: "Mochiy Pop P One", sans-serif;
  padding: 100px 0 20px;
}
.home-title {
  width: 650px;
  padding: 100px 20px;
  margin: 0px auto;
  color: #00beb8;
  font-size: 3em;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  font-family: "Rubik Bubbles", system-ui;
  font-weight: 400;
  font-style: normal;
}
.top-text-box {
  display: flex;
  justify-content: space-around;
  margin-bottom: 200px;
}
.top-kuma-img {
  width: 350px;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html,
  body {
    max-width: 1024px;
    width: 100%;
  }
  .top-text {
    max-width: 800px;
    width: 100%;
    margin-left: 0;
    padding: 10px;
  }
  .top-text-body {
    padding: 10px;
    width: 750px;
    margin-left: 20px;
  }
  .home-title {
    max-width: 800px;
    width: 100%;

    padding: 70px 5px;
    font-size: 3em;
  }
  .top-text-box {
    display: block;
    margin-bottom: 30px;
  }
  .top-kuma-img-box {
    display: flex;
    justify-content: center;
  }
  .top-kuma-img {
    width: 300px;
    height: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .global_navi {
    top: 10px;
    right: 10px;
    display: flex;
    list-style-type: none;
    min-width: 599px;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    padding: 0;
  }
  .global_navi ul {
    width: 300px;
    height: 200px;
  }
  .global_navi ul li a {
    display: block;
    padding: 15px 20px;
  }
  .global_navi ul li a:hover {
    opacity: 70%;
  }
  /* main */

  body {
    max-width: 599px;
    width: 100%;
  }

  .top-text {
    max-width: 300px;
    width: 100%;
    margin-left: 5px;
    padding: 10px;
  }
  .top-text-body {
    padding: 10px 0 20px 10px;
    width: 340px;
    margin: 0 auto;
  }
  .home-title {
    max-width: 350px;
    width: 100%;
    padding: 40px 5px;
    font-size: 2em;
  }
  .top-text-box {
    display: block;

    margin-bottom: 100px;
  }
  .top-kuma-img-box {
    display: flex;
    justify-content: center;
  }
  .top-kuma-img {
    width: 200px;
    height: auto;
    margin: 0 auto;
  }
}

/* about */
.about-section {
  display: flex;
  justify-content: space-evenly;
  background-color: #c2e9ff;
  margin: 50px 0 200px;
}

.about-title {
  box-shadow: 0 4px 10px rgba(250, 253, 255, 0.3);
  background-color: rgba(250, 253, 255, 0.7);
  font-size: 3em;
  font-family: "Rubik Bubbles", system-ui;
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
  padding: 20px 15px;
  width: 200px;
  color: #00beb8;
  text-align: center;
  transform: rotate(-20deg);
}
.about-img-box {
  display: block;
}

.yogakuma-img {
  width: 400px;
  height: 390px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Mochiy Pop P One", sans-serif;
}

table tr *:nth-child(1) {
  background: #00beb8;
}

table tr *:nth-child(2) {
  background: #57b3e8;
}

table th,
table td {
  color: white;
  border: solid 1px white;
  line-height: 2;
  padding: 10px;
}

.about-img {
  width: 100px;
  height: 110px;
  position: relative;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #c2e9ff;
    margin: 50px 0 200px;
  }
  .yogakuma-img {
    width: 300px;
    height: 297px;
    margin-top: 100px;
  }
  .about-img-box {
    display: flex;
    justify-content: right;
    margin-right: 20px;
  }
  table {
    width: 90%;
    margin: 0 auto;
  }
  .about-title {
    margin-left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .about-section {
    display: block;
    margin: 50px 0 200px;
  }

  .about-title {
    font-size: 3em;

    padding: 20px 15px;
    margin: 0;
    width: 250px;
  }
  .about-img-box {
    display: flex;
    justify-content: end;
  }

  .yogakuma-img {
    width: 220px;
    height: 200px;
    margin-top: 50px;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Mochiy Pop P One", sans-serif;
  }

  .about-img {
    width: 100px;
    height: 110px;
    position: relative;
    left: 0;
    top: 0;
  }
}
/* works */

.works-section {
  background-color: #c2e9ff;
  display: flex;
  margin-bottom: 100px;
}
.works-top-box {
  width: 50%;
  padding: 50px;
}
.works-right {
  width: 50%;
}
.works-title {
  box-shadow: 0 4px 10px rgba(250, 253, 255, 0.3);
  background-color: rgba(250, 253, 255, 0.7);
  font-size: 3em;
  font-family: "Rubik Bubbles", system-ui;
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
  padding: 20px 15px;
  width: 200px;
  margin-top: 50px;
  margin-left: 500px;
  color: #00beb8;
  text-align: center;
  transform: rotate(20deg);
}

.works-logo-title {
  font-size: 3em;
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100px;
  text-align: center;
  color: #00beb8;
}
.works-logo-title span {
  font-size: 1em;
  font-family: "Rubik Bubbles", system-ui;
}
.works-text-title {
  font-size: 2em;
  padding: 10px 15px 0;
  font-weight: bold;
  color: #00beb8;
  font-family: "Rubik Bubbles", system-ui;
}

.logo-table {
  width: 500px;
  border-collapse: collapse;
  font-family: "Mochiy Pop P One", sans-serif;
  border: 1px dotted #00beb8;
  margin: 50px auto;
  text-align: left;
}

.logo-table tr *:nth-child(1) {
  background: #00beb8;
}

.logo-table tr *:nth-child(2) {
  background: #fff;
}

.logo-table th {
  color: white;
  border: solid 1px white;

  padding: 10px;
}

.logo-table td {
  color: #00beb8;
  border: solid 1px white;
  border: 1px dotted #00beb8;
  width: calc(100% - 150px);
  padding: 10px;
}

.works-text-box p {
  font-weight: bold;
  color: #00beb8;
  font-family: "Rubik Bubbles", system-ui;
  padding: 30px 15px;
  font-size: 1.3em;
  width: 500px;
}

.slider-logo {
  width: 400px;
  height: auto;
  margin: 100px auto 0;
  background-color: #fff;
}
.slider-bc,
.slider-pc {
  width: 500px;
  height: auto;
  margin: 80px auto 0;
}
.slider-web {
  width: 550px;
  height: auto;
  margin: 80px auto 0;
}
.works-slider-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.works-logo {
  display: block;
  width: 400px;
  height: 400px;
  margin: 20px auto;
  background-color: #fff;
  padding: 10px;
}
.works-link-box {
  font-weight: bold;
  color: #00beb8;
  font-family: "Rubik Bubbles", system-ui;
  margin-top: 100px;
}

.works-logo-kuma {
  display: flex;
  align-items: center;
  width: 200px;
  height: 200px;
  margin: 5px auto;
  background-color: #fff;
  padding: 10px;
}

.CSSgal {
  position: relative;
  overflow: hidden;
  height: 600px;
  border-radius: 10px;
  margin-top: 50px;
}

/* SLIDER */

.CSSgal .slider {
  height: 100%;
  white-space: nowrap;
  font-size: 0;
  transition: 0.8s;
}

/* SLIDES */

.CSSgal .slider > * {
  font-size: 1rem;
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  height: 100%;
  width: 100%;
  background: none 50% no-repeat;
  background-size: cover;
}

/* PREV/NEXT, CONTAINERS & ANCHORS */

.CSSgal .prevNext {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  height: 0;
}

.CSSgal .prevNext > div + div {
  visibility: hidden; /* Hide all but first P/N container */
}

.CSSgal .prevNext a {
  background: #fff;
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px; /* If you want to place numbers */
  text-align: center;
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.CSSgal .prevNext a:hover {
  opacity: 1;
}
.CSSgal .prevNext a + a {
  left: auto;
  right: 0;
}

/* NAVIGATION */

.CSSgal .bullets {
  position: absolute;
  z-index: 2;
  bottom: 0;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
.CSSgal .bullets > a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
  background: rgba(255, 255, 255, 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.CSSgal .bullets > a + a {
  background: rgba(255, 255, 255, 0.5); /* Dim all but first */
}
.CSSgal .bullets > a:hover {
  background: rgba(255, 255, 255, 0.7) !important;
}

/* NAVIGATION BUTTONS */
/* ALL: */
.CSSgal > s:target ~ .bullets > * {
  background: rgba(255, 255, 255, 0.5);
}
/* ACTIVE */
#s1:target ~ .bullets > *:nth-child(1) {
  background: rgba(255, 255, 255, 1);
}
#s2:target ~ .bullets > *:nth-child(2) {
  background: rgba(255, 255, 255, 1);
}
#s3:target ~ .bullets > *:nth-child(3) {
  background: rgba(255, 255, 255, 1);
}
#s4:target ~ .bullets > *:nth-child(4) {
  background: rgba(255, 255, 255, 1);
}

.CSSgal > s:target ~ .prevNext > * {
  visibility: hidden;
}

#s1:target ~ .prevNext > *:nth-child(1) {
  visibility: visible;
}
#s2:target ~ .prevNext > *:nth-child(2) {
  visibility: visible;
}
#s3:target ~ .prevNext > *:nth-child(3) {
  visibility: visible;
}
#s4:target ~ .prevNext > *:nth-child(4) {
  visibility: visible;
}

#s1:target ~ .slider {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
}
#s2:target ~ .slider {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}
#s3:target ~ .slider {
  transform: translateX(-200%);
  -webkit-transform: translateX(-200%);
}
#s4:target ~ .slider {
  transform: translateX(-300%);
  -webkit-transform: translateX(-300%);
}

.CSSgal {
  color: #fff;
  text-align: center;
}
.CSSgal .slider h2 {
  margin-top: 40vh;
  font-weight: 200;
  letter-spacing: -0.06em;
  word-spacing: 0.2em;
  font-size: 3em;
}
.CSSgal a {
  border-radius: 50%;
  margin: 0 3px;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}
.works-kuma-img {
  width: 300px;
  height: auto;
  margin: 100px 0 50px 200px;
}
.works-logo-container {
  display: grid;
  width: 700px;
  margin-bottom: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  list-style-type: decimal;
  color: #00beb8;
  font-weight: bold;
}
.logo-text-box {
  font-family: "Mochiy Pop P One", sans-serif;
  width: 600px;
  padding: 0px 0;

  line-height: 2em;
}

.page-link {
  display: inline-block;
  position: relative;
  bottom: 60px;
  font-family: "Mochiy Pop P One", sans-serif;
  transition: all 0.3s ease;
  border-radius: 20px;
  margin-left: 7px;
  padding: 0.5em 3em 0.5em 1em;
  font-size: 20px;
  color: #00beb8;
  background-color: #fff;
  text-decoration: dashed;
}
.page-link::after {
  content: "→";
  display: inline-block;
  width: 30px;
  text-align: center;

  border: 2px solid #00beb8;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.page-link:hover::after {
  transform: translateY(-50%) translateX(4px);
  background-color: #00beb8;
  color: #f8ecd2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .works-title {
    margin-left: 140px;
    transform: rotate(20deg), translateX(-50px);
  }
  .works-kuma-img {
    margin-left: 50px;
    width: 150px;
    height: auto;
  }
  .works-text-box p {
    width: 350px;
    font-size: 1em;
    padding-bottom: 0;
  }
  .slider-logo {
    width: 200px;
    height: auto;
    margin: 50px auto 0;
    background-color: #fff;
  }
  .slider-bc,
  .slider-pc {
    width: 200px;
    height: auto;
    margin: 80px auto 0;
  }
  .slider-web {
    width: 200px;
    height: auto;
    margin: 120px auto 0;
  }
  .CSSgal {
    height: 400px;
    border-radius: 10px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  .works-section {
    display: flex;
    flex-direction: column-reverse;
  }
  .works-top-box {
    width: 100%;
    padding: 0;
  }

  .works-title {
    font-size: 3em;
    padding: 20px 15px;
    margin: 0;
    width: 250px;
    transform: rotate(-20deg);
  }
  .works-logo-title {
    font-size: 3em;
    width: 100px;
    line-height: 1em;
    margin-left: 20px;
  }
  .works-logo-title span {
    font-size: 0.5em;
  }
  .works-right p {
    width: 330px;

    padding-left: 30px;
    font-size: 1em;
  }
  .works-text-title {
    padding-left: 30px;
    font-size: 2em;
    width: 250px;
  }

  .works-logo {
    display: block;
    width: 200px;
    height: 200px;
    margin: 10px;
    background-color: #fff;
    padding: 8px;
  }
  .works-logo-kuma {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
  }
  .works-logo-container {
    display: flex;
    width: 350px;
  }
  .logo-text-box {
    width: 100%;
    margin: 50px auto 0;
    padding: 10px;
    line-height: 2em;
  }
  .works-link-box {
    margin-left: 20px;
  }
  .page-link {
    display: block;
    position: relative;
    bottom: 50px;
    width: 300px;
    padding: 1em 5em 1em 1em;
    font-size: 20px;
    margin: 0 auto 20px 20px;
  }
  .page-link::after {
    width: 30px;
    position: absolute;
    right: 30px;
    top: 50%;
  }
  .works-kuma-img {
    width: 200px;
    height: auto;
    margin: 80px 0 50px 80px;
  }

  .CSSgal {
    margin: 0 auto;
    width: 90%;
    height: 400px;
  }
  .slider-logo {
    width: 300px;
    height: auto;
    margin: 50px auto 0;
    background-color: #fff;
  }
  .slider-bc,
  .slider-pc {
    width: 300px;
    height: auto;
    margin: 80px auto 0;
  }
  .slider-web {
    width: 300px;
    height: auto;
    margin: 120px auto 0;
  }
  .works-slider-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* contact */
.contact-body {
  display: flex;
  justify-content: space-around;
}
.contact-box {
  width: 50%;
}
.contact-box h2 {
  margin-bottom: 200px;
}
.contact-box p {
  margin-left: 200px;
  font-size: 20px;
  font-family: "Mochiy Pop P One", sans-serif;
  border-left: 1px solid #fff;
  padding-left: 50px;
  color: #00beb8;
}
.mail {
  color: #00beb8;
  margin-left: 200px;
  font-size: 20px;
  font-family: "Mochiy Pop P One", sans-serif;
  letter-spacing: 0.2em;
  padding: 10px 0 20px 50px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.contact-title {
  box-shadow: 0 4px 10px rgba(250, 253, 255, 0.3);
  background-color: rgba(250, 253, 255, 0.7);
  font-size: 3em;
  font-family: "Rubik Bubbles", system-ui;
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
  padding: 20px 15px;
  width: 250px;
  color: #00beb8;
  text-align: center;
  transform: rotate(-20deg);
}
.contact-containar {
  width: 50%;
}
.contact-img {
  width: 404px;
  height: 526px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-box {
    padding-bottom: 50px;
  }
  .contact-box p {
    margin-left: 30px;
    font-size: 20px;
    padding-left: 20px;
  }
  .contact-img-box {
    height: 300px;
  }
  .contact-img {
    width: 225px;
    height: 294px;
    margin: 0 auto;
  }
  .mail {
    color: #00beb8;
    margin-left: 30px;
    letter-spacing: 0.2em;
    padding-top: 5px;
    padding-left: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 599px) {
  .contact-body {
    display: block;
  }
  .contact-box {
    width: 100%;
    padding-bottom: 50px;
  }
  .contact-box h2 {
    margin-bottom: 100px;
  }
  .contact-box p {
    margin-left: 10px;
    font-size: 18px;
    font-family: "Mochiy Pop P One", sans-serif;
    border-left: 1px solid #fff;
    padding: 0 0 0 20px;
    color: #00beb8;
  }
  .mail {
    color: #00beb8;
    margin-left: 10px;
    font-size: 20px;
    font-family: "Mochiy Pop P One", sans-serif;
    letter-spacing: -0.02em;
    padding: 10px 0 20px 20px;
    border-bottom: 1px solid #fff;
  }
  .contact-title {
    font-size: 3em;
    padding: 20px 15px;
    margin-bottom: 0;
    width: 250px;
  }
  .contact-containar {
    width: 50%;
  }
  .contact-img {
    width: 202px;
    height: 262px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
}
/* graphic */
.graphic-main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.logo-bg,
.bc-bg {
  background-color: #c2e9ff;
  border-radius: 10px;
  padding-bottom: 100px;
  margin-top: 50px;
  margin-bottom: 100px;
}
.works-bc-title,
.works-pc-title {
  font-size: 2em;
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 30px 50px;
  color: #00beb8;
}
.works-top-title {
  box-shadow: 0 4px 10px rgba(250, 253, 255, 0.3);
  background-color: rgba(250, 253, 255, 0.7);
  font-size: 3em;
  font-family: "Rubik Bubbles", system-ui;
  font-weight: 400;
  font-style: normal;
  border-bottom: 1px solid #00beb8;
  padding: 15px;
  margin: 50px 0;
  width: 250px;
  color: #00beb8;
  text-align: center;
  transform: rotate(-20deg);
}
.logo-box {
  width: 800px;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0 auto;
  padding: 50px 20px;
}

.bc-box {
  display: flex;
  justify-content: center;
  gap: 50px;

  padding: 50px 20px;
}
.logo-img {
  width: 300px;
  height: 300px;
  background-color: #fff;
}
.bc-img {
  width: 455px;
  height: 275px;
}
.bc-img-body figcaption,
.works-logo-box figcaption {
  text-align: left;
  font-family: "Mochiy Pop P One", sans-serif;

  font-size: 1em;
  margin-top: 5px;
}
.logo-table,
.bc-table {
  width: 700px;
  border-collapse: collapse;
  font-family: "Mochiy Pop P One", sans-serif;
  border: 1px dotted #00beb8;
  margin: 50px auto;
}
.bc-table-wrapper {
  display: flex;
}
.works-logo-box {
  width: 300px;
  margin: 5px auto;
}
.bc-table tr *:nth-child(1) {
  background: #00beb8;
}

.bc-table tr *:nth-child(2) {
  background: #fff;
}
.logo-table th {
  width: 150px;
}
.bc-table th {
  color: white;
  border: solid 1px white;
  width: 150px;

  padding: 10px;
}

.bc-table td {
  color: #00beb8;
  border: solid 1px white;
  border: 1px dotted #00beb8;
  padding: 10px;
  width: calc(100% - 150px);
}
.pc-bg {
  background-color: #c2e9ff;
  border-radius: 10px;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
.pc-box {
  display: flex;
  justify-content: center;
  gap: 100px;

  padding: 50px 20px;
}
.pc-img {
  width: 200px;
  height: 296px;
}
.pc-img-christmas {
  width: 296px;
  height: 200px;
}
.top-link-graphic {
  display: inline-block;
  position: relative;
  bottom: 60px;
  left: 940px;
  font-family: "Mochiy Pop P One", sans-serif;
  transition: all 0.3s ease;
  border-radius: 20px;
  margin: 0 auto;
  padding: 0.5em 3em 0.5em 1em;
  font-size: 20px;
  color: #00beb8;
  border: 1px solid #00beb8;
  background-color: #fff;
}
.top-link-graphic::after {
  content: "→";
  display: inline-block;
  width: 30px;
  text-align: center;
  border: 2px solid #00beb8;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.top-link-graphic:hover::after {
  transform: translateY(-50%) translateX(4px);
  background-color: #00beb8;
  color: #f8ecd2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .bc-img {
    width: 300px;
  }
  .pc-bg,
  .logo-bg,
  .bc-bg {
    max-width: 768px;
    width: 90%;
    padding-bottom: 50px;
    margin: 20px auto 50px;
  }
  .logo-table,
  .bc-table {
    width: 600px;
    border-collapse: collapse;
    margin: 20px auto;
  }
  .bc-table-wrapper {
    flex-direction: column;
  }
  .logo-img {
    width: 250px;
    height: 250px;
  }
  .logo-box {
    width: 700px;
    gap: 30px;
  }
  .works-logo-box {
    width: 250px;
  }
  .pc-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;

    padding: 50px 10px 10px;
  }
  .top-link-graphic {
    display: inline-block;
    position: relative;
    bottom: 30px;
    left: 60%;
  }
  .logo-table th {
    width: 100%;
    padding: 5px;
  }

  .logo-table td {
    width: 100%;
    font-size: 16px;
    padding: 5px;
    line-height: 2;
  }

  .bc-table th {
    width: 100%;
    padding: 5px;
  }

  .bc-table td {
    width: 100%;
    padding: 5px;
    line-height: 2;
  }
}
@media screen and (max-width: 599px) {
  .graphic-main {
    max-width: 599px;
    width: 100%;
    margin: 0 auto;
  }
  .logo-bg,
  .bc-bg {
    max-width: 599px;
    width: 90%;
    padding-bottom: 50px;

    margin: 20px auto 50px;
  }
  .works-bc-title,
  .works-pc-title {
    font-size: 2em;
    padding: 30px;
  }
  .works-top-title {
    font-size: 3em;

    border-bottom: 1px solid #00beb8;
    padding: 15px;
    margin: 50px 0;
    width: 250px;
  }

  .works-right {
    width: 100%;
  }
  .bc-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 50px 10px 10px;
  }
  .logo-img {
    width: 120px;
    height: 120px;
  }

  .logo-box {
    width: 300px;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 0 auto;
    padding: 50px 20px;
  }

  .bc-box {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 50px;

    padding: 50px 20px;
  }
  .bc-img {
    width: 318px;
    height: 192px;
  }
  .works-logo-box {
    width: 120px;
  }
  .bc-img-body figcaption,
  .works-logo-box figcaption {
    font-size: 0.5em;
    margin-top: 2px;
    width: 120px;
  }
  .logo-table,
  .bc-table {
    width: 320px;
    border-collapse: collapse;
    margin: 30px auto;
  }
  .bc-table-wrapper {
    flex-direction: column;
  }
  .logo-box {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .logo-table th {
    width: 100%;
    padding: 10px 12px;
  }

  .logo-table td {
    width: 100%;
    font-size: 16px;
    padding: 10px 12px;
    line-height: 2;
  }

  .bc-table th {
    width: 100%;
    padding: 10px 12px;
  }

  .bc-table td {
    width: 100%;
    padding: 10px 12px;
    line-height: 2;
  }
  .pc-bg {
    max-width: 599x;
    width: 90%;
    padding-bottom: 50px;
    margin: 0 auto 20px;
  }
  .pc-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    padding: 50px 20px 10px;
  }
  .pc-img {
    width: 200px;
    height: 296px;
  }
  .pc-img-christmas {
    width: 296px;
    height: 200px;
  }
  .top-link-graphic {
    display: inline-block;
    position: relative;
    bottom: 5px;
    left: 15%;
  }
}
/* web-top */

.works-web {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.web-title {
  box-shadow: 0 4px 10px rgba(250, 253, 255, 0.3);
  background-color: rgba(250, 253, 255, 0.7);
  font-size: 3em;
  font-family: "Rubik Bubbles", system-ui;
  font-weight: 400;
  font-style: normal;
  border-bottom: 1px solid #00beb8;
  padding: 15px;
  margin: 50px 0;
  width: 250px;
  color: #00beb8;
  text-align: center;
  transform: rotate(-20deg);
}

.beersite,
.cafesite {
  background-color: #c2e9ff;
  border-radius: 10px;
  padding-bottom: 100px;
  margin-top: 50px;
  margin-bottom: 100px;
}
.works-web-title {
  font-size: 2em;
  font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 30px 50px;
  color: #00beb8;
}
.web-table {
  width: 900px;
  border-collapse: collapse;
  font-family: "Mochiy Pop P One", sans-serif;
  border: 1px dotted #00beb8;
  margin: 50px auto;
}
.web-table-wrapper {
  display: flex;
}
.web-table tr *:nth-child(1) {
  background: #00beb8;
}

.web-table tr *:nth-child(2) {
  background: #fff;
}

.web-table th {
  color: white;
  border: solid 1px white;
  width: 150px;
  padding: 10px;
}

.web-table td {
  color: #00beb8;
  border: solid 1px white;
  border: 1px dotted #00beb8;
  width: calc(100% - 150px);
  padding: 10px;
}
.web-link-img {
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Mochiy Pop P One", sans-serif;
}
.web-thumbnail {
  width: 600px;
  height: auto;
}
.web-thumbnail:hover {
  opacity: 0.6;
}

.top-link {
  display: inline-block;
  position: relative;
  bottom: 60px;
  left: 1050px;
  font-family: "Mochiy Pop P One", sans-serif;
  transition: all 0.3s ease;
  border-radius: 20px;
  margin: 0 auto;
  padding: 0.5em 3em 0.5em 1em;
  font-size: 20px;
  color: #00beb8;
  border: 1px solid #00beb8;
  background-color: #fff;
}
.top-link::after {
  content: "→";
  display: inline-block;
  width: 30px;
  text-align: center;
  border: 2px solid #00beb8;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.top-link:hover::after {
  transform: translateY(-50%) translateX(4px);
  background-color: #00beb8;
  color: #f8ecd2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .web-table {
    width: 680px;
  }
  .works-web {
    width: 90%;
  }
  .top-link {
    display: inline-block;
    position: relative;
    bottom: 30px;
    left: 60%;
  }
  .web-table th {
    width: 100%;

    color: white;
    border: solid 1px white;
    padding: 10px 18px;
  }
  .web-table-wrapper {
    flex-direction: column;
  }
  .web-table td {
    width: 100%;
    color: #00beb8;
    border: solid 1px white;
    border: 1px dotted #00beb8;
    padding: 10px 18px;
    line-height: 2;
  }
}
@media screen and (max-width: 599px) {
  .works-web {
    max-width: 599px;
    width: 100%;
    margin: 0 auto;
  }

  .beersite,
  .cafesite {
    max-width: 599px;
    width: 90%;
    padding-bottom: 30px;
    margin: 25px auto 50px;
  }
  .works-web-title {
    font-size: 1.5em;
    font-family: "Mochiy Pop P One", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 30px;
    color: #00beb8;
  }
  .web-table {
    width: 300px;
    border-collapse: collapse;
    font-family: "Mochiy Pop P One", sans-serif;
    border: 1px dotted #00beb8;
    margin: 50px auto;
  }
  .web-table {
    display: flex;
    width: 300px;
    border-collapse: collapse;
    font-family: "Mochiy Pop P One", sans-serif;
    border: 1px dotted #00beb8;
    margin: 50px auto;
  }

  .web-table th {
    width: 300px;
    color: white;
    border: solid 1px white;
    padding: 8px 15px;
  }

  .web-table td {
    width: 300px;
    color: #00beb8;
    border: solid 1px white;
    border: 1px dotted #00beb8;
    padding: 10px 15px;
    line-height: 2;
  }
  .web-table-wrapper {
    flex-direction: column;
  }
  .web-thumbnail {
    width: 300px;
    height: auto;
  }
  .web-thumbnail:hover {
    opacity: 0.6;
  }
  .top-link {
    display: inline-block;
    position: relative;
    bottom: 20px;
    left: 62px;
  }
}
/* footer */
.footer-copyright {
  text-align: center;
  padding: 10px;
}
