@charset "utf-8";
/* 中心からのアニメ */
.haguruma.active,
.irasuto.active,
.irasuto2.active,
.circle_waku.active {
  animation: scale-in 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* １ページ表示 */
.full {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
img.taitoru {
  width: 100%;
  max-width: 800px !important;
  object-fit: contain;
}
/* スクロールダウン */
.scroll-down3 {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  font-size: 30px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
}
.scroll-down3 i {
  color: #160c28;
  animation: scrollDown3 2s ease infinite;
}
@keyframes scrollDown3 {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }
  45% {
    transform: translateY(0px);
    opacity: 1;
  }
  65% {
    transform: translateY(-5px);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}
/* テキストアニメの設定 */
.text_anime {
  margin: 0;
  text-align: center;
  font-size: 26px;
  font-family: "Kaisei Opti", serif;
  font-weight: Bold;
}
.text_anime span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.text_anime.active span {
  opacity: 1;
  transform: translateY(0);
}
.text_waku {
  margin: 0;
  text-align: center;
}
.text_anime2 {
  display: inline-block;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: Normal;
}
.text_anime2.active {
  animation: spreadIn 0.6s ease forwards;
  animation-delay: 0.3s;
}
@keyframes spreadIn {
  0% {
    opacity: 0;
    transform: scale(0.2) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.text_anime3.active {
  animation: tracking-in 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes tracking-in {
  0% {
    transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}
/* カラードット */
.blue_ten {
  color: #219bce;
}
.red_ten {
  color: #fc1d25;
}
.yellow_ten {
  color: #f4c541;
}
/* 物語枠 */
.story_waku {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 30px auto 60px;
  padding: 10px;
  word-wrap: break-word;
  white-space: normal;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.shape-circle {
  float: left;
  background: white;
  width: 120px;
  height: 180px;
  clip-path: ellipse(60px 90px at 50% 50%);
  shape-outside: ellipse(60px 90px at 50% 50%);
}
/* 見出しバー */
.migihan_circle {
  margin: 30px 0 30px auto;
  padding: 0;
  width: 100%;
  max-width: 400px;
  height: 50px;
  border-radius: 50px 0 0 50px;
  background: #6097D1;
  font-size: 18px;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 50px;
  color: white;
}
.hidarihan_circle {
  margin: 30px 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 400px;
  height: 50px;
  border-radius: 0 50px 50px 0;
  background: #6097D1;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 50px;
  color: white;
}
.circle_waku {
  margin: 30px auto;
  padding: 0;
  display: flex;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #F4F1E3;
}
.migihan_circle.active {
  animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-in-right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.hidarihan_circle.active {
  animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.hidari_irasuto.active {
  animation: slide-in-leftup 1.5s ease-in-out both;
}
@keyframes slide-in-leftup {
  0% {
    transform: translateY(-500px) translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}
.migi_irasuto.active {
  animation: slide-in-rightup 1.5s ease-in-out both;
}
@keyframes slide-in-rightup {
  0% {
    transform: translateY(-500px) translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}
.rain.active {
  transform-origin: left bottom;
  animation: rotate-90-cw 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes rotate-90-cw {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
.rain2.active {
  transform-origin: right top;
  animation: rotate-90 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes rotate-90 {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
/* テキストレインボー */
@keyframes rainbow {
    0% { color: #EC6A52; }
    16% { color: black; }
    33% { color: #F4C541; }
    50% { color: #A2D188; }
    66% { color: #0099F5; }
    83% { color: #F4C4C6; }
    100% { color: #7E8EE3; }
}
.rainbow-text span {
    display: inline-block;
    animation: rainbow 4s infinite linear;
}
.rainbow-text span:nth-child(1) { animation-delay: 0s; }
.rainbow-text span:nth-child(2) { animation-delay: 0.3s; }
.rainbow-text span:nth-child(3) { animation-delay: 0.6s; }
.rainbow-text span:nth-child(4) { animation-delay: 0.9s; }
.rainbow-text span:nth-child(5) { animation-delay: 1.2s; }
.rainbow-text span:nth-child(6) { animation-delay: 0s; }
.rainbow-text span:nth-child(7) { animation-delay: 0.3s; }
.rainbow-text span:nth-child(8) { animation-delay: 0.6s; }
.rainbow-text span:nth-child(9) { animation-delay: 0.9s; }
.rainbow-text span:nth-child(10) { animation-delay: 1.2s; }
.rainbow-text span:nth-child(11) { animation-delay: 1.5s; }
.rainbow-text span:nth-child(12) { animation-delay: 1.8s; }
.rainbow-text span:nth-child(13) { animation-delay: 0s; }
/*回転カルーセル*/
.container {
  margin: 10px auto;
  width: 100%;
  max-width: 400px;
  height: 240px;
  position: relative;
  perspective: 2000px;
  font-family: "Noto Sans JP", sans-serif;
}
.carousel {
  height: 100%;
  width: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s;
}
.item {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 250px;
  height: 360px;
  box-shadow: 0px 0px 20px 1px rgba(0 0 0 / .1);
  border-radius: 10px;
}
.step {
  display: block;
  margin: auto;
  object-fit: contain;
  opacity: .9;
}
.bangou {
  font-size: 1.2em;
  color: #160c28;
  font-weight: bold;
  text-align: center;
}
.text-description {
  padding: 0.5em;
  font-size: 0.8em;
  line-height: 1.5em;
  color: #160c28;
  word-wrap: break-word;
  white-space: normal;
}
.a {
  transform: rotateY(0deg) translateZ(230px);
  background: rgb(255 244 244 / .95);
}
.b {
  transform: rotateY(72deg) translateZ(230px);
  background: rgb(255 255 245 / .95);
}
.c {
  transform: rotateY(144deg) translateZ(230px);
  background: rgb(245 255 250 / .95);
}
.d {
  transform: rotateY(216deg) translateZ(230px);
  background: rgb(245 250 255 / .95);
}
.e {
  transform: rotateY(288deg) translateZ(230px);
  background: rgb(255 245 255 / .95);
}
.next, .prev {
  color: white;
  position: absolute;
  top: 150px;
  padding: 0.2em 0.5em;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  background: #6097D1;
  border-radius: 5px;
  border-top: 1px solid white;
  box-shadow: 0 5px 0 #66521C;
  transition: box-shadow 0.1s, top 0.1s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.next:hover, .prev:hover { color: red; }
.next:active, .prev:active {
  top: 154px;
  box-shadow: 0 1px 0 #66521C;
}
.next { right: 0.1em; }
.prev { left: 0.1em; }
/*ハンバーガー*/
#hamburger01{
  position: fixed;
  z-index: 99;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height:50px;
  border-radius: 5px;
}
#hamburger01 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #000;
  box-shadow: 0px 0px 1px 1px #f5f5f5;
  width: 45%;
}
#hamburger01 span:nth-of-type(1) {
  top: 13px; 
}
#hamburger01 span:nth-of-type(2) {
  top: 19px;
}
#hamburger01 span:nth-of-type(3) {
  top: 25px;
}
#hamburger01 span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: -2px;
  color: #000;
  font-size: 0.6rem;
  text-transform: uppercase;
}
#hamburger01.action {
  background: #4169e1;
}
#hamburger01.action span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #fff;
  box-shadow: none;
}
#hamburger01.action span:nth-of-type(2) {
  opacity: 0;
}
#hamburger01.action span:nth-of-type(3){
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background: #fff;
  box-shadow: none;
}
#hamburger01.action span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 7px;
  left: 4px;
  color: #fff;
}
#nav01{
  position: fixed;
  z-index: 9;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #93b69c;
  transition: all 0.6s;
}
#nav01.action {
  right: 0;
}
#nav01.action #nav01-list{
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#nav01 ul{
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#nav01 ul li{
  list-style: none;
  text-align: center;
}
#nav01 a{
  color: #333;
  text-decoration: none;
  padding: 5px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 500;
  transition: 0.5s;
}
#nav01 li a:hover{
  color: #ffffff;
  background: #cd5c5c;
}

/*diver*/
div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video,input,textarea {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 100%;
    font-style: normal
}
body {
    vertical-align: baseline;
    font-smoothing: antialiased;
    text-rendering: auto;
    margin: 0;
    width: 100%;
}
*,*:before,*:after {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

:where(a) {
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    text-decoration: none;
    color: inherit
}
:where(a):hover {
    color: #6495ed;
    outline: 0;
    opacity: .8
}

*,*:before,*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-image: none
}

ul ul {
    margin-left: 1em
}
svg:not(:root) {
    overflow: hidden
}
h1,h2,h3,h4,h5 {
    line-height: 2;
    display: block
}
.content h2,h2 {
    position: relative;
    padding: .5em 1em;
    margin: 1.5em 0 1em;
    line-height: 1.5
}

.content h3,h3 {
    position: relative;
    padding: .3em 1em;
    margin: 1.2em 0 .8em;
}

.content h4,h4 {
    position: relative;
    padding: .2em 1em;
    margin: .8em 0 .6em
}
.size-auto,.size-full,.size-large,.size-medium,.size-thumbnail {
    height: auto
}
