@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

button,
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

* {
  min-height: 0vw;
}

em {
  font-weight: bold;
}

li {
  list-style-type: none;
}

.purun {
  animation: purun 7s ease-in-out infinite;
}
@keyframes purun {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  3% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  5% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  8% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  13% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  15% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.katakata:hover {
  transition: 0.5s;
}
.katakata:hover:hover {
  animation: bounce 0.5s ease-out;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
  }
}
.btn-liquid {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 60px;
  border-radius: 27px;
  color: #fff;
  font: 700 14px/60px "Droid Sans", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-liquid .inner {
  position: relative;
  z-index: 2;
}

.btn-liquid canvas {
  position: absolute;
  top: -50px;
  right: -50px;
  bottom: -50px;
  left: -50px;
  z-index: 1;
}

/*  ------------
キャラクターの動き
（喜怒哀楽）
---------------　*/
.chara-all-right-parts {
  /*---- 喜 ----*/
  /*----- 怒 -----*/
  /*----- 哀 -----*/
  /*---- 楽 ----*/
}
.chara-all-right-parts .yorokobi:hover {
  animation-name: anim_Ki;
  animation-timing-function: ease-in-out; /*進捗時のの効果*/
  animation-duration: 0.4s; /*アニメーションの開始から終わるまでの時間（1回分）*/
  animation-iteration-count: infinite; /*アニメーションの繰り返し回数*/
}
@keyframes anim_Ki {
  0% {
    transform: translate(0%, 10%) rotateX(35deg);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
.chara-all-right-parts .yorokobi:not(:hover) {
  /* ホバーされていないときのアニメーション */
  animation: reverse_anim_Ki 0.4s ease-in-out;
}
@keyframes reverse_anim_Ki {
  /* ホバーされていないときのアニメーションの逆再生 */
  0% {
    transform: translate(0%, 10%) rotateX(40deg);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
.chara-all-right-parts .ikari {
  transition: transform 0.5s ease-in;
}
.chara-all-right-parts .ikari:hover {
  animation: anim_Do 1s ease-out infinite alternate;
  transform: scale(1, 1.3);
}
@keyframes anim_Do {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25, 1.2);
  }
}
.chara-all-right-parts .ikari:not(:hover) {
  animation: reverse_anim_Do 1s ease-out;
  transform: scale(1);
}
@keyframes reverse_anim_Do {
  0% {
    transform: scale(1.25, 1.25);
  }
  100% {
    transform: scale(1);
  }
}
.chara-all-right-parts .kanashimi {
  transition: transform 0.2s ease-out;
}
.chara-all-right-parts .kanashimi:hover {
  animation: anim_Ai 2s ease-in-out infinite alternate;
  transform: rotate(0deg);
}
@keyframes anim_Ai {
  0%, 100% {
    transform: scale(1) translate(0%, 0%);
  }
  50% {
    transform: scale(1.1, 0.85) translate(5%, 5%) rotate(0deg);
  }
}
.chara-all-right-parts .kanashimi:not(:hover) {
  animation: reverse_anim_Ai 1s ease-out;
  transform: scale(1);
}
@keyframes reverse_anim_Ai {
  0% {
    transform: scale(1.1, 0.85) translate(5%, 5%) rotate(0deg);
  }
  100% {
    transform: scale(1);
  }
}
.chara-all-right-parts .tanoshi:hover {
  animation: anim_Raku 0.7s ease-in infinite alternate;
}
@keyframes anim_Raku {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}

/*  ------------
↑↑↑上ここまで
キャラクターの動き
---------------　*/
#service-img figure {
  margin: 0;
  opacity: 0;
  display: none;
}

#service-img figure:target {
  opacity: 1;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#service-img figure:target #overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  color: inherit;
}
#service-img figure:target #overlay:hover {
  opacity: 1;
}

#service-img figure:target img {
  animation: fadein 0.3s;
  transform: scale(0.8);
}

@keyframes fadein {
  0% {
    transform: scale(0.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(0.8);
    opacity: 1;
  }
}/*# sourceMappingURL=animation.css.map */