* {
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 1.125rem !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

ul, li, a {
  color: unset !important;
  list-style: none;
  padding-left: 0 !important;
  text-decoration: none !important;
}

html {
  background-color: #fff;
  scroll-behavior: smooth;
}

:hover {
  text-decoration: none;
}

.orange {
  color: #ff5722;
}

.blue {
  color: #0075BE;
}

.grey {
  color: #aaa;
}

.blueBack {
  background-color: #0075BE !important;
}

.size100 {
  font-size: 100%;
}

.size80 {
  font-size: 80%;
}

a:hover {
  color: #ff5722 !important;
}

section {
  display: block;
}
section .contents_block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.125rem 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section .contents_block .contents_text_left {
  padding: 3.125rem 3.125rem 3.125rem 0;
}
section .contents_block .contents_text_right {
  padding: 3.125rem 0 3.125rem 3.125rem;
}
section .contents_block .contents_img {
  padding: 3.125rem 0;
}
section ul li {
  padding: 0.625rem 0;
}

h1, h2 {
  font-family: "Bebas Neue", cursive;
  font-size: 5rem !important;
  line-height: 6rem !important;
  font-weight: 300 !important;
  margin-bottom: 1.5rem !important;
}

.hidden {
  overflow: hidden;
}

.fixed {
  position: fixed !important;
}

.display768 {
  display: none;
}

.moreBtn {
  position: relative;
  display: inline-block;
  margin: 1.5rem 0;
  transition: all 0.3s ease-in-out;
}
.moreBtn p {
  border: 1px solid #fff;
  color: #fff;
  padding: 0.5rem 1.25rem;
  margin-bottom: 0;
}
.moreBtn::before {
  content: "";
  background-color: #fff;
  height: 50px;
  width: 1px;
  display: block;
  position: absolute;
  left: -0.5rem;
  bottom: -0.5rem;
}
.moreBtn::after {
  content: "";
  background-color: #fff;
  height: 1px;
  width: 90%;
  display: block;
  position: absolute;
  left: -0.5rem;
  bottom: -0.5rem;
}
.moreBtn:hover::before {
  transition: all 0.3s ease-in-out;
  -webkit-animation: btnHoverLine1 0.6s linear both;
          animation: btnHoverLine1 0.6s linear both;
}
.moreBtn:hover::after {
  transition: all 0.3s ease-in-out;
  -webkit-animation: btnHoverLine2 0.6s linear both;
          animation: btnHoverLine2 0.6s linear both;
}
@-webkit-keyframes btnHoverLine1 {
  0% {
    opacity: 1;
    height: 0;
    left: -0.5rem;
    bottom: -0.5rem;
  }
  50% {
    opacity: 1;
    height: 50px;
    background-color: #ff5722;
    left: -0.5rem;
    bottom: -0.5rem;
  }
  99% {
    opacity: 1;
    background-color: #ff5722;
    left: 0;
    bottom: 0;
  }
  100% {
    opacity: 0;
    background-color: #ff5722;
    left: 0;
    bottom: 0;
  }
}
@keyframes btnHoverLine1 {
  0% {
    opacity: 1;
    height: 0;
    left: -0.5rem;
    bottom: -0.5rem;
  }
  50% {
    opacity: 1;
    height: 50px;
    background-color: #ff5722;
    left: -0.5rem;
    bottom: -0.5rem;
  }
  99% {
    opacity: 1;
    background-color: #ff5722;
    left: 0;
    bottom: 0;
  }
  100% {
    opacity: 0;
    background-color: #ff5722;
    left: 0;
    bottom: 0;
  }
}
@-webkit-keyframes btnHoverLine2 {
  0% {
    opacity: 1;
    width: 0;
    left: -0.5rem;
    bottom: -0.5rem;
  }
  50% {
    opacity: 1;
    width: 100%;
    background-color: #ff5722;
    left: -0.5rem;
    bottom: -0.5rem;
  }
  99% {
    opacity: 1;
    width: 100%;
    background-color: #ff5722;
    left: 0;
    bottom: 0;
  }
  100% {
    opacity: 0;
    width: 100%;
    background-color: #ff5722;
    left: 0;
    bottom: 0;
  }
}
@keyframes btnHoverLine2 {
  0% {
    opacity: 1;
    width: 0;
    left: -0.5rem;
    bottom: -0.5rem;
  }
  50% {
    opacity: 1;
    width: 100%;
    background-color: #ff5722;
    left: -0.5rem;
    bottom: -0.5rem;
  }
  99% {
    opacity: 1;
    width: 100%;
    background-color: #ff5722;
    left: 0;
    bottom: 0;
  }
  100% {
    opacity: 0;
    width: 100%;
    background-color: #ff5722;
    left: 0;
    bottom: 0;
  }
}
.moreBtn:hover {
  -webkit-animation: btnHover 0.3s linear 0.6s both;
          animation: btnHover 0.3s linear 0.6s both;
}
.moreBtn:hover p {
  -webkit-animation: btnHoverP 0.3s linear 0.6s both;
          animation: btnHoverP 0.3s linear 0.6s both;
}
@-webkit-keyframes btnHover {
  0% {
    background-color: none;
    box-shadow: 0rem 0rem 0rem rgba(0, 0, 0, 0.2);
  }
  100% {
    background-color: #ff5722;
    box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }
}
@keyframes btnHover {
  0% {
    background-color: none;
    box-shadow: 0rem 0rem 0rem rgba(0, 0, 0, 0.2);
  }
  100% {
    background-color: #ff5722;
    box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
  }
}
@-webkit-keyframes btnHoverP {
  0% {
    border: 1px solid #fff;
  }
  100% {
    border: 1px solid #ff5722;
  }
}
@keyframes btnHoverP {
  0% {
    border: 1px solid #fff;
  }
  100% {
    border: 1px solid #ff5722;
  }
}

/*=======================================

HOME:: Intro

=======================================*/
.home_intro {
  background: linear-gradient(to top, #fff, #fff 20%, #81EAFF 70%);
  height: 100vh;
  overflow: hidden;
}
.home_intro nav .nav_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 3.5rem 0 0 0;
}
.home_intro nav .nav_inner a {
  z-index: 101;
}
.home_intro nav .nav_inner a .logo {
  display: flex;
  align-items: center;
}
.home_intro nav .nav_inner a .logo span {
  font-family: "Bebas Neue", cursive;
  line-height: 1;
  padding-left: 0.5rem;
}
.home_intro nav .nav_inner .nav_menu_btn {
  width: 45px;
  height: 22px;
  position: fixed;
  cursor: pointer;
  right: 5rem;
  top: 3.5rem;
  z-index: 101;
}
.home_intro nav .nav_inner .nav_menu_btn span {
  background-color: #333;
  display: block;
  position: absolute;
  height: 3px;
  width: calc(100% - 10px);
  left: 5px;
  border-radius: 4px;
}
.home_intro nav .nav_inner .nav_menu_btn span:nth-child(1) {
  top: 0;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
}
.home_intro nav .nav_inner .nav_menu_btn span:nth-child(2), .home_intro nav .nav_inner .nav_menu_btn span:nth-child(3) {
  top: 0.5rem;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.3s;
}
.home_intro nav .nav_inner .nav_menu_btn span:nth-child(4) {
  top: 1rem;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
}
.home_intro nav .nav_menu {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #81EAFF, #0075BE);
  z-index: 100;
  top: 0;
  left: 0;
  padding-top: 6rem;
  transition: all 0.3s ease-in-out;
}
.home_intro nav .nav_menu ul {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home_intro nav .nav_menu ul li a {
  color: #fff !important;
  font-family: "Bebas Neue", cursive;
  font-size: 5vmax !important;
  font-weight: 300 !important;
}
.home_intro nav .nav-open {
  display: block;
}
.home_intro nav .nav-open span:nth-child(1) {
  opacity: 0;
  margin-top: 0.5rem;
  -webkit-animation: burgerTop 0.3s ease-in-out;
          animation: burgerTop 0.3s ease-in-out;
}
@-webkit-keyframes burgerTop {
  0% {
    opacity: 1;
    margin-top: 0rem;
  }
  100% {
    opacity: 1;
    margin-top: 0.5rem;
  }
}
@keyframes burgerTop {
  0% {
    opacity: 1;
    margin-top: 0rem;
  }
  100% {
    opacity: 1;
    margin-top: 0.5rem;
  }
}
.home_intro nav .nav-open span:nth-child(4) {
  opacity: 0;
  margin-top: -0.5rem;
  -webkit-animation: burgerBottom 0.3s ease-out;
          animation: burgerBottom 0.3s ease-out;
}
@-webkit-keyframes burgerBottom {
  0% {
    opacity: 1;
    margin-top: 0rem;
  }
  100% {
    opacity: 1;
    margin-top: -0.5rem;
  }
}
@keyframes burgerBottom {
  0% {
    opacity: 1;
    margin-top: 0rem;
  }
  100% {
    opacity: 1;
    margin-top: -0.5rem;
  }
}
.home_intro nav .nav-open span:nth-child(2) {
  -webkit-animation: burgerMid1 0.3s ease-out;
          animation: burgerMid1 0.3s ease-out;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  transform: rotate(45deg);
  background-color: #fff;
}
@-webkit-keyframes burgerMid1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes burgerMid1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
.home_intro nav .nav-open span:nth-child(3) {
  -webkit-animation: burgerMid2 0.3s ease-out;
          animation: burgerMid2 0.3s ease-out;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  transform: rotate(-45deg);
  background-color: #fff;
}
@-webkit-keyframes burgerMid2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}
@keyframes burgerMid2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-45deg);
  }
}
.home_intro nav .nav-open ul li:nth-child(1), .home_intro nav .nav-open ul li:nth-child(2), .home_intro nav .nav-open ul li:nth-child(3), .home_intro nav .nav-open ul li:nth-child(4), .home_intro nav .nav-open ul li:nth-child(5) {
  opacity: 0%;
  -webkit-animation: fedIn 1.5s both;
          animation: fedIn 1.5s both;
}
.home_intro nav .nav-open ul li:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.home_intro nav .nav-open ul li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.home_intro nav .nav-open ul li:nth-child(4) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.home_intro nav .nav-open ul li:nth-child(5) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes fedIn {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fedIn {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
.home_intro .home_animation {
  height: 100%;
  position: relative;
}
.home_intro .home_animation .mt1, .home_intro .home_animation .mt2, .home_intro .home_animation .mt3, .home_intro .home_animation .mt4, .home_intro .home_animation .mt5, .home_intro .home_animation .mt6, .home_intro .home_animation .lake {
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0px -2px 10px rgba(0, 0, 0, 0.2));
}
.home_intro .home_animation .mt1, .home_intro .home_animation .mt3, .home_intro .home_animation .mt5 {
  right: 0;
}
.home_intro .home_animation .mt2, .home_intro .home_animation .mt4, .home_intro .home_animation .mt6 {
  left: 0;
}
.home_intro .home_animation .mt1 {
  width: 46vmax;
  -webkit-animation: mt1Ani 2s linear 1.2s both;
          animation: mt1Ani 2s linear 1.2s both;
}
@-webkit-keyframes mt1Ani {
  from {
    right: -50%;
  }
  to {
    right: 0;
  }
}
@keyframes mt1Ani {
  from {
    right: -50%;
  }
  to {
    right: 0;
  }
}
.home_intro .home_animation .mt2 {
  width: 64vmax;
  -webkit-animation: mt2Ani 2s linear 1s both;
          animation: mt2Ani 2s linear 1s both;
}
@-webkit-keyframes mt2Ani {
  from {
    left: -62%;
  }
  to {
    left: 0;
  }
}
@keyframes mt2Ani {
  from {
    left: -62%;
  }
  to {
    left: 0;
  }
}
.home_intro .home_animation .mt3 {
  width: 60vmax;
  -webkit-animation: mt3Ani 2s linear 0.5s both;
          animation: mt3Ani 2s linear 0.5s both;
}
@-webkit-keyframes mt3Ani {
  from {
    right: -60%;
  }
  to {
    right: 0;
  }
}
@keyframes mt3Ani {
  from {
    right: -60%;
  }
  to {
    right: 0;
  }
}
.home_intro .home_animation .mt4 {
  width: 66vmax;
  -webkit-animation: mt4Ani 2s linear 0.1s both;
          animation: mt4Ani 2s linear 0.1s both;
}
@-webkit-keyframes mt4Ani {
  from {
    left: -60%;
  }
  to {
    left: 0;
  }
}
@keyframes mt4Ani {
  from {
    left: -60%;
  }
  to {
    left: 0;
  }
}
.home_intro .home_animation .mt5 {
  width: 24vmax;
  -webkit-animation: mt5Ani 2s linear 0.1s both;
          animation: mt5Ani 2s linear 0.1s both;
}
@-webkit-keyframes mt5Ani {
  from {
    right: -60%;
  }
  to {
    right: 0;
  }
}
@keyframes mt5Ani {
  from {
    right: -60%;
  }
  to {
    right: 0;
  }
}
.home_intro .home_animation .mt6 {
  width: 46vmax;
  -webkit-animation: mt4Ani 2s linear 1.6s both;
          animation: mt4Ani 2s linear 1.6s both;
}
@keyframes mt4Ani {
  from {
    left: -60%;
  }
  to {
    left: 0;
  }
}
.home_intro .home_animation .lake {
  left: 0;
  width: 100%;
  height: 11vmax;
  background: url(../img/home_lake.svg);
  background-size: 800px 11vmax;
}
.home_intro .home_animation .wave1 {
  -webkit-animation: waveAni 30s linear infinite;
          animation: waveAni 30s linear infinite;
}
.home_intro .home_animation .wave2 {
  -webkit-animation: waveAni2 15s linear infinite;
          animation: waveAni2 15s linear infinite;
  opacity: 0.5;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  bottom: 5px;
}
.home_intro .home_animation .wave3 {
  -webkit-animation: waveAni 30s linear infinite;
          animation: waveAni 30s linear infinite;
  opacity: 0.2;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  bottom: 10px;
}
@-webkit-keyframes waveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}
@keyframes waveAni {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}
@-webkit-keyframes waveAni2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}
@keyframes waveAni2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}
.home_intro .home_animation .onigiri {
  position: absolute;
  left: 18vmax;
  bottom: 16vmax;
  -webkit-animation: onigiriAni 6s linear infinite;
          animation: onigiriAni 6s linear infinite;
}
@-webkit-keyframes onigiriAni {
  0% {
    bottom: 16vmax;
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    bottom: 26vmax;
    transform: rotate(20deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    bottom: 16vmax;
    transform: rotate(0deg);
  }
}
@keyframes onigiriAni {
  0% {
    bottom: 16vmax;
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(0deg);
  }
  50% {
    bottom: 26vmax;
    transform: rotate(20deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    bottom: 16vmax;
    transform: rotate(0deg);
  }
}
.home_intro .home_animation .sun {
  position: absolute;
  right: 20%;
  top: -10%;
}
.home_intro .home_animation h1 {
  position: absolute;
  right: 20%;
  top: 32%;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.2);
  -webkit-animation: homeTitle 1s linear 3.4s both;
          animation: homeTitle 1s linear 3.4s both;
}
@-webkit-keyframes homeTitle {
  0% {
    opacity: 0;
    top: 36%;
  }
  100% {
    opacity: 1;
    top: 32%;
  }
}
@keyframes homeTitle {
  0% {
    opacity: 0;
    top: 36%;
  }
  100% {
    opacity: 1;
    top: 32%;
  }
}
.home_intro .home_animation .cloud1, .home_intro .home_animation .cloud2, .home_intro .home_animation .cloud3, .home_intro .home_animation .cloud4, .home_intro .home_animation .cloud5 {
  position: absolute;
}
.home_intro .home_animation .cloud1 {
  -webkit-animation: cloud1Ani 16s infinite ease-in-out;
          animation: cloud1Ani 16s infinite ease-in-out;
}
@-webkit-keyframes cloud1Ani {
  0% {
    left: 10%;
  }
  50% {
    left: 20%;
  }
  100% {
    left: 10%;
  }
}
@keyframes cloud1Ani {
  0% {
    left: 10%;
  }
  50% {
    left: 20%;
  }
  100% {
    left: 10%;
  }
}
.home_intro .home_animation .cloud2 {
  top: 34%;
  -webkit-animation: cloud2Ani 24s infinite ease-in-out;
          animation: cloud2Ani 24s infinite ease-in-out;
}
@-webkit-keyframes cloud2Ani {
  0% {
    left: 26%;
  }
  25% {
    left: 36%;
  }
  50% {
    left: 26%;
  }
  75% {
    left: 16%;
  }
  100% {
    left: 26%;
  }
}
@keyframes cloud2Ani {
  0% {
    left: 26%;
  }
  25% {
    left: 36%;
  }
  50% {
    left: 26%;
  }
  75% {
    left: 16%;
  }
  100% {
    left: 26%;
  }
}
.home_intro .home_animation .cloud3 {
  top: 14%;
  -webkit-animation: cloud3Ani 18s infinite ease-in-out;
          animation: cloud3Ani 18s infinite ease-in-out;
}
@-webkit-keyframes cloud3Ani {
  0% {
    left: 52%;
  }
  50% {
    left: 42%;
  }
  100% {
    left: 52%;
  }
}
@keyframes cloud3Ani {
  0% {
    left: 52%;
  }
  50% {
    left: 42%;
  }
  100% {
    left: 52%;
  }
}
.home_intro .home_animation .cloud4 {
  top: 46%;
  -webkit-animation: cloud4Ani 16s infinite ease-in-out;
          animation: cloud4Ani 16s infinite ease-in-out;
}
@-webkit-keyframes cloud4Ani {
  0% {
    right: 8%;
  }
  50% {
    right: 18%;
  }
  100% {
    right: 8%;
  }
}
@keyframes cloud4Ani {
  0% {
    right: 8%;
  }
  50% {
    right: 18%;
  }
  100% {
    right: 8%;
  }
}

.intro {
  height: auto !important;
  background: none;
}

.navWorks a {
  font-family: "Bebas Neue", cursive;
  font-size: 130%;
  margin-top: -0.3rem;
  display: block;
}

/*=======================================

HOME:: Taste

=======================================*/
.home_taste {
  background: linear-gradient(to bottom, #95dfeee6, #1EB1E9, #0075BE);
  color: #fff;
}
.home_taste h2 {
  position: absolute;
  z-index: 9;
}
.home_taste ul {
  margin-top: 8vmax;
}
.home_taste ul li {
  align-items: center;
}
.home_taste ul li p {
  padding: 0 0 0 0.625rem;
  font-weight: bold;
  margin: 0;
}
.home_taste ul li .form-check {
  display: flex;
  align-items: center;
}
.home_taste ul li .form-check .form-check-input {
  height: 0.75rem;
  margin-top: 0;
  width: 1.5rem;
  border: 1px solid #fff;
}
.home_taste ul li .form-check .form-check-input:checked {
  background-color: #ff5722;
  border-color: #ff5722;
}
.home_taste ul li .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.2);
}
.home_taste .contents_img {
  overflow: hidden;
}
.home_taste .contents_img .slides {
  display: flex;
  width: 668%;
}
.home_taste .contents_img .slides .slide {
  display: block;
  width: 15%;
  position: relative;
}
.home_taste .contents_img .slides .slide img {
  width: 100%;
}
.home_taste .contents_img .slides .slide .home_slideText {
  position: absolute;
  left: 50%;
  bottom: 16%;
  transform: translateX(-50%);
  text-align: center;
}
.home_taste .contents_img .slides .slide .home_slideText p {
  text-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.fMore {
  display: none;
}
.fMore a {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff !important;
}
.fMore a:hover {
  color: #ff5722 !important;
}

.fMoreInline {
  display: inline;
}

/*=======================================

HOME:: Skills

=======================================*/
.home_skills {
  background-color: #0075BE;
  color: #fff;
}
.home_skills .contents_bg {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.home_skills .contents_bg img {
  width: 24%;
  transform: scale(0.7);
  padding: 1rem 1.5rem;
}

/*=======================================

HOME:: Works

=======================================*/
.home_works {
  background: linear-gradient(to bottom, #0075BE, #C9E166);
  color: white;
}
.home_works .contents_img_left {
  position: relative;
}
.home_works .contents_img_left .laptop {
  width: 80%;
  height: 280px;
  border: 0.5rem solid #333;
  box-shadow: 1px 0 0 #aaa, -1px 0 0 #aaa, 0 -1px 0 #aaa;
  border-radius: 6px 6px 0 0;
  position: relative;
  box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.home_works .contents_img_left .laptop::before {
  content: "";
  position: absolute;
  bottom: -9%;
  left: -15%;
  width: 130%;
  height: 6%;
  background: linear-gradient(to bottom, #fff, #aaa);
  border-top: 4px solid #666;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.home_works .contents_img_left .laptop::after {
  content: "";
  position: absolute;
  top: -2.65%;
  left: 50%;
  transform: translateX(-50%);
  background: #666;
  width: 3px;
  height: 3px;
  border-radius: 50%;
}
.home_works .contents_img_left .laptop img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home_works .contents_img_left .mobile {
  position: absolute;
  right: 0;
  top: 0;
  width: 16%;
  height: 180px;
  border: 0.35rem solid #333;
  box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 16px;
}
.home_works .contents_img_left .mobile span {
  width: 50%;
  height: 10px;
  background: #333;
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  z-index: 9;
}
.home_works .contents_img_left .mobile span::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 1px;
  background: #aaa;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
}
.home_works .contents_img_left .mobile span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18%;
  transform: translateY(-50%);
  background: #666;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
}

/*=======================================

HOME:: Game

=======================================*/
.home_game {
  background: #C9E166;
  color: #fff;
  padding-bottom: 3.25rem;
}
.home_game .contents_block {
  max-width: 800px;
  display: block;
}
.home_game .contents_block h2 {
  margin: 0 auto;
  text-align: center;
}
.home_game .contents_block h2 span {
  font-family: "Bebas Neue", cursive;
  font-size: 5rem !important;
  line-height: 6rem !important;
  font-weight: 300 !important;
  margin-bottom: 1.5rem !important;
}
.home_game .contents_block .game_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home_game .contents_block .game_grid img {
  width: 20%;
  margin: 1rem;
  border: none;
}

/*=======================================

HOME:: Footer

=======================================*/
.footerSection {
  margin-top: auto;
  background-color: #C9E166;
}
.footerSection .footerText {
  text-align: center;
  display: block;
  padding-bottom: 1rem;
  font-size: 80%;
}

/*=======================================

HOME:: User Page

=======================================*/
.userPage {
  width: 100%;
  align-items: unset !important;
}
.userPage h3 {
  border-bottom: solid 2px #333;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.userPage h3 a {
  font-family: "Bebas Neue", cursive;
  font-size: 100%;
}
.userPage h3 a:hover {
  color: #ff5722 !important;
}
.userPage .leftNav {
  width: 20%;
  padding: 0 1.5rem 0 0;
}
.userPage .leftNav li {
  list-style: inside;
  padding: 0 0 0.625rem 0;
}
.userPage .leftNav li a {
  font-size: 90%;
}
.userPage .leftNav li a:hover {
  color: #ff5722 !important;
}
.userPage .mainContents {
  border-left: solid 2px #333;
  width: 80%;
  padding: 0 0 3.125rem 3.125rem;
}
.userPage .mainContents .sampleNoteCategory {
  margin-bottom: 3.125rem;
}
.userPage .mainContents table tbody tr th, .userPage .mainContents table tbody tr td {
  font-weight: normal !important;
  border-bottom: none;
}
.userPage .mainContents table tbody tr th a:hover, .userPage .mainContents table tbody tr td a:hover {
  color: #ff5722 !important;
}
.userPage .mainContents table .img-fluid {
  width: 50% !important;
}
.userPage .mainContents .postTable thead tr th {
  width: 25%;
}
.userPage .mainContents .postTable thead tr th:nth-child(1) {
  width: 5%;
}
.userPage .mainContents .postTable thead tr th:nth-child(3), .userPage .mainContents .postTable thead tr th:nth-child(4), .userPage .mainContents .postTable thead tr th:nth-child(5) {
  width: 10%;
}
.userPage .mainContents .postTable tbody tr td:nth-child(3), .userPage .mainContents .postTable tbody tr td:nth-child(4), .userPage .mainContents .postTable tbody tr td:nth-child(5) {
  font-size: 80%;
}
.userPage .mainContents .infoNotice {
  padding: 1rem;
  margin-bottom: 1rem;
}
.userPage .mainContents #created, .userPage .mainContents #updated, .userPage .mainContents #updatedCategory, .userPage .mainContents #uploaded, .userPage .mainContents #thankyou {
  color: #0075BE;
  border: 1px solid #0075BE;
}
.userPage .mainContents #submitCouldNotSet, .userPage .mainContents #worngUploadType, .userPage .mainContents #uploadFileError, .userPage .mainContents #uploadFileTooBig, .userPage .mainContents #failedWithDataBaseConnection {
  color: #ff5722;
  border: 1px solid #ff5722;
}
.userPage .mainContents .mediaList {
  display: grid;
  grid-template-columns: auto auto auto auto;
}
.userPage .mainContents .mediaList .mediaListItems {
  width: 90%;
  height: 160px;
  background-size: cover;
  background-position: center;
}
.userPage .mainContents .mediaItemChosen {
  border: 4px solid #0075BE;
}

/*=======================================

Works::

=======================================*/
.works .contents_block {
  padding: 3.125rem 0;
  max-width: unset;
}
.works .contents_block h1 {
  text-align: center;
  margin: 1.5rem auto;
}
.works .contents_block .twoColumn img {
  width: 100%;
}
.works .contents_block .leftText, .works .contents_block .rightText {
  padding: 0 6rem;
}
.works .contents_block p {
  margin-bottom: 2rem;
}
.works .contents_block .ydkAnime {
  text-align: center;
  position: relative;
}
.works .contents_block .ydkAnime img {
  width: 20%;
}
.works .contents_block .ydkAnime .ydk-sheep {
  top: -100px;
  position: absolute;
  margin-left: -250px;
  -webkit-animation: ydkSheep 4s ease-in-out infinite;
          animation: ydkSheep 4s ease-in-out infinite;
}
@-webkit-keyframes ydkSheep {
  0% {
    transform: scaleX(1) translateX(250px);
    margin-top: 0px;
  }
  10% {
    margin-top: -50px;
  }
  20% {
    margin-top: 0px;
  }
  30% {
    margin-top: -50px;
  }
  40% {
    margin-top: 0px;
  }
  49% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(-1) translateX(0px);
    margin-top: -50px;
  }
  60% {
    margin-top: 0px;
  }
  70% {
    margin-top: -50px;
  }
  80% {
    margin-top: 0px;
  }
  90% {
    margin-top: -50px;
  }
  100% {
    transform: scaleX(-1) translateX(-250px);
    margin-top: 0px;
  }
}
@keyframes ydkSheep {
  0% {
    transform: scaleX(1) translateX(250px);
    margin-top: 0px;
  }
  10% {
    margin-top: -50px;
  }
  20% {
    margin-top: 0px;
  }
  30% {
    margin-top: -50px;
  }
  40% {
    margin-top: 0px;
  }
  49% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(-1) translateX(0px);
    margin-top: -50px;
  }
  60% {
    margin-top: 0px;
  }
  70% {
    margin-top: -50px;
  }
  80% {
    margin-top: 0px;
  }
  90% {
    margin-top: -50px;
  }
  100% {
    transform: scaleX(-1) translateX(-250px);
    margin-top: 0px;
  }
}
.works .contents_block .ydkAnime .ydk-pufferFish {
  position: absolute;
  -webkit-animation: ydkPufferFish 3s ease-in-out infinite;
          animation: ydkPufferFish 3s ease-in-out infinite;
}
@-webkit-keyframes ydkPufferFish {
  0% {
    margin-top: 100px;
  }
  50% {
    margin-top: 0px;
    transform: rotate(20deg);
  }
  100% {
    margin-top: 100px;
  }
}
@keyframes ydkPufferFish {
  0% {
    margin-top: 100px;
  }
  50% {
    margin-top: 0px;
    transform: rotate(20deg);
  }
  100% {
    margin-top: 100px;
  }
}
.works .worksHeadImage {
  position: relative;
  width: 100%;
  height: 80vh;
  background-position: center;
  background-repeat: none;
  background-size: cover;
}
.works .worksHeadImage .worksLogo {
  position: absolute;
  width: 15%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.works h2 {
  font-size: 2.5rem !important;
  margin-bottom: 0rem !important;
}
.works h3 {
  font-size: 1.5rem !important;
  margin-bottom: 2rem;
  font-weight: bold;
}

.worksContents {
  padding: 0 !important;
}

.workContact {
  text-align: center;
  background: linear-gradient(to bottom, #81EAFF, #0075BE);
  padding: 3.125rem 1rem;
}
.workContact h2 {
  color: #fff;
  font-size: 2.5rem !important;
  margin-bottom: 0 !important;
}

.row {
  --bs-gutter-x: 0 !important;
}

.worksList {
  padding-bottom: 0 !important;
}
.worksList .worksItem-h-50 {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.worksList .worksItem-h-50 img {
  transition: all 0.3s ease-in-out;
}
.worksList .worksItem-h-50 .worksItemText {
  text-align: center;
  transition: all 0.3s ease-in-out;
  padding: 0 1rem;
}
.worksList a:hover img, .worksList a:hover .worksItemText {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}

/*=======================================

Post:: List page

=======================================*/
.postLists {
  background: linear-gradient(to bottom, #81EAFF, #0075BE);
  padding-bottom: 3.125rem;
}
.postLists .contents_block {
  justify-content: unset;
  padding: 1rem 0 0 0;
  align-items: stretch;
}
.postLists .contents_block .postList-block {
  max-width: 1200px;
}
.postLists .contents_block .postList-block .postList {
  padding: 2rem 1rem;
  height: 100%;
}
.postLists .contents_block .postList-block .postList a .postList-item {
  background: white;
  height: 100%;
  box-shadow: 0.75rem 0.75rem 2rem rgba(51, 51, 51, 0.4);
  transition: all 0.3s ease-in-out;
}
.postLists .contents_block .postList-block .postList a .postList-item .postList-img-box {
  overflow: hidden;
}
.postLists .contents_block .postList-block .postList a .postList-item .postList-img-box .postList-img {
  height: 30vh;
  transition: all 0.3s ease-in-out;
}
.postLists .contents_block .postList-block .postList a .postList-item .postList-text {
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}
.postLists .contents_block .postList-block .postList a .postList-item .postList-text h2 {
  font-family: "Franklin Gothic Narrow Thin", "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
.postLists .contents_block .postList-block .postList:hover .postList-item {
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
}
.postLists .contents_block .postList-block .postList:hover .postList-item .postList-img {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
.postLists .contents_block .postList-block .postList:hover .postList-item .postList-text {
  color: #fff;
}

.categoryLists .contents_block {
  justify-content: center;
}
.categoryLists .contents_block .underLine {
  text-decoration: underline !important;
}
.categoryLists .contents_block a {
  font-family: "Franklin Gothic Narrow Thin", "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem;
  width: auto;
  padding: 2rem;
}

/*=======================================

Post:: Post page

=======================================*/
.postSingle .contents_block {
  display: block;
  padding: 5rem 0;
}
.postSingle .contents_block h1 {
  font-family: "Franklin Gothic Narrow Thin", "Arial Narrow", Arial, sans-serif;
  font-size: 2.5rem !important;
  margin-bottom: 0 !important;
  line-height: 1.2 !important;
}
.postSingle .contents_block h2 {
  color: #aaa;
}
.postSingle .contents_block h2, .postSingle .contents_block p, .postSingle .contents_block ul, .postSingle .contents_block li, .postSingle .contents_block strong {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 100% !important;
  line-height: 1.5 !important;
}
.postSingle .contents_block p {
  margin-bottom: 1.5rem;
}
.postSingle img {
  width: 100%;
}

/*=======================================

Who:: 

=======================================*/
.who .contents_block {
  padding: 3.125rem 0;
  max-width: unset;
}
.who .contents_block h1 {
  text-align: center;
  margin: 1.5rem auto;
}
.who .contents_block .twoColumn img {
  width: 100%;
}
.who .contents_block .leftText, .who .contents_block .rightText {
  padding: 0 6rem;
}
.who .contents_block p {
  margin-bottom: 2rem;
}
.who .contents_block ul li {
  margin-left: 1rem;
  list-style: disc;
}
.who h2 {
  font-size: 2.5rem !important;
  margin-bottom: 0rem !important;
}
.who h3 {
  font-size: 1.5rem !important;
  margin-bottom: 2rem;
  font-weight: bold;
}

.whoContents {
  padding: 0 !important;
}

.row {
  --bs-gutter-x: 0 !important;
}

/*=======================================

Contact:: 

=======================================*/
.contact {
  margin-bottom: 6rem;
}
.contact .contents_block {
  display: block;
  text-align: center;
}
.contact .contents_block h1, .contact .contents_block h2 {
  text-align: center;
}
.contact .contents_block a {
  word-break: break-all;
}

/*=======================================
*****************************************

Breakpoint:: 1200

*****************************************
=======================================*/
@media only screen and (max-width: 1200px) {
  section {
    padding: 0 1rem;
  }

  .home_intro nav .nav_inner {
    padding: 1.5rem 1rem;
  }
  .home_intro nav .nav_inner .nav_menu_btn {
    top: 2rem;
    right: 0.5rem;
  }
  .home_intro nav .nav_menu ul {
    margin: 0 1rem;
  }
  .home_intro nav .nav_menu ul li a {
    font-size: 3rem !important;
  }
}
/*=======================================
*****************************************

Breakpoint:: 768

*****************************************
=======================================*/
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 4rem !important;
    line-height: 4rem !important;
  }

  h2 {
    font-size: 4rem !important;
    line-height: 4rem !important;
  }

  .display768 {
    display: block;
  }

  .hide768 {
    display: none !important;
  }

  .contents_text_right, .contents_text_left {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .home_intro .home_animation .cloud1, .home_intro .home_animation .cloud4 {
    display: none;
  }
  .home_intro .home_animation .onigiri {
    width: 36%;
  }
  .home_intro .home_animation h1 {
    padding-left: 1rem;
    margin-top: -25%;
    width: 70%;
    top: 0;
    left: 0;
    right: unset;
  }
  .home_intro .home_animation .mt1, .home_intro .home_animation .mt2, .home_intro .home_animation .mt4, .home_intro .home_animation .mt6 {
    width: 150%;
  }
  .home_intro .home_animation .mt3, .home_intro .home_animation .mt5 {
    display: none;
  }
  @-webkit-keyframes mt2Ani {
    0% {
      left: -62%;
    }
    100% {
      left: 30%;
    }
  }
  @keyframes mt2Ani {
    0% {
      left: -62%;
    }
    100% {
      left: 30%;
    }
  }
  @-webkit-keyframes onigiriAni {
    50% {
      bottom: 36vmax;
      transform: rotate(20deg);
    }
  }
  @keyframes onigiriAni {
    50% {
      bottom: 36vmax;
      transform: rotate(20deg);
    }
  }
  .home_intro .home_animation .lake {
    background-size: 390px 3rem;
    bottom: 11.5%;
  }

  .home_taste h2 {
    position: unset;
  }
  .home_taste ul {
    margin-top: 0rem;
  }
  .home_taste ul li {
    padding: 0;
  }
  .home_taste .home_taste_img {
    padding: 0 !important;
  }
  .home_taste .home_taste_contents {
    padding: 0 !important;
  }

  .home_skills {
    padding: 5rem 1rem;
  }
  .home_skills .position-absolute {
    position: unset !important;
    transform: unset !important;
  }
  .home_skills .home_skills_item_mb {
    overflow: scroll;
    margin-bottom: 1rem;
  }
  .home_skills .home_skills_item_mb .home_skills_item_mb_inner {
    display: flex;
    width: 470%;
    padding: 0 0 1rem 0;
  }
  .home_skills .home_skills_item_mb .home_skills_item_mb_inner img {
    padding: 0 1rem;
    width: 9%;
  }

  .home_works .contents_img_left .laptop {
    height: 180px;
  }
  .home_works .contents_img_left .mobile {
    height: 100px;
  }

  .home_game .contents_block h2 span {
    font-size: 2rem !important;
    line-height: 2rem !important;
    margin-top: 2rem;
    display: block;
  }
  .home_game .contents_block .game_grid img {
    width: 28%;
    margin: 0.5rem;
  }

  .works {
    padding: 0;
  }
  .works .contents_block .leftText, .works .contents_block .rightText {
    padding: 0 1rem;
    margin-bottom: 3.125rem;
  }
  .works .contents_block .ydkAnimeHight {
    height: 5vh;
  }
  .works .contents_block .ydkAnime .ydk-sheep {
    top: 50%;
    left: 60%;
  }
  .works .contents_block .ydkAnime .ydk-pufferFish {
    top: 0%;
    right: 10%;
  }
  .works .contents_block h2 {
    line-height: 3rem !important;
  }
  .works .worksHeadImage .worksLogo {
    width: 50%;
  }

  .worksContentsBottom {
    padding-bottom: 0 !important;
  }

  .navWorks a {
    margin-top: 0.1rem;
    margin-right: 3rem;
  }

  .postSingle .contents_block {
    display: block;
    padding: 2.5rem 0;
  }
  .postSingle .contents_block h1 {
    font-family: "Franklin Gothic Narrow Thin", "Arial Narrow", Arial, sans-serif;
    font-size: 2.5rem !important;
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
  }
  .postSingle .contents_block h2 {
    color: #aaa;
  }
  .postSingle .contents_block h2, .postSingle .contents_block p, .postSingle .contents_block ul, .postSingle .contents_block li, .postSingle .contents_block strong {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 100% !important;
    line-height: 1.5 !important;
  }
  .postSingle .contents_block p {
    margin-bottom: 1.5rem;
  }
  .postSingle img {
    width: 100%;
  }

  .who .contents_block {
    padding-bottom: 0;
  }
  .who .contents_block .leftText, .who .contents_block .rightText {
    padding: 3.125rem 1rem 0;
  }
  .who .contents_block .ydkAnimeHight {
    height: 5vh;
  }
  .who .contents_block .ydkAnime .ydk-sheep {
    top: 50%;
    left: 60%;
  }
  .who .contents_block .ydkAnime .ydk-pufferFish {
    top: 0%;
    right: 10%;
  }
  .who .contents_block h2 {
    margin-bottom: 2rem !important;
    line-height: 3rem !important;
  }
}/*# sourceMappingURL=onigiri.css.map */