@charset "UTF-8";
/*
Description:LP05
Author: Ann Tachibana
Version: 1.0
*/
/*======================================
scroll fadein
/*======================================*/
.fadein {
  opacity: 1;
  transition: all 1s ease;
}
.fadeout {
  opacity: 0;
  transition: all 1s ease;
}
/*-------------------------------------*/
/*loading*/
/*-------------------------------------*/
#fakeloader {
  animation: fakeloaderBackground 5s infinite;
}
#fakeloader .fl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  animation: fakeloader 3s linear infinite;
}
#fakeloader .fl img {
  position: absolute;
  width: 100px;
  height: 100px;
  opacity: 0;
  animation: fakeloaderFadeIn 1s ease .5s 1 forwards;
}
@keyframes fakeloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fakeloaderFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fakeloaderBackground {
  0% {
    background: #98e8e5;
  }
  50% {
    background: rgba(29, 213, 236, 1);
  }
  100% {
    background: #98e8e5;
  }
}
/*======================================
type
/*======================================*/
html, body {
  font-family: sans-serif;
}
#content-area {
font-family: 'Helvetica Neue', 'Helvetica', 'Hiragino Kaku Gothic ProN', YuGothic, 'Yu Gothic Medium', Meiryo, sans-serif;
  letter-spacing: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
.gothic-R, .gothic-M, .gothic-B, .gothic-H {
font-family: 'Helvetica Neue', 'Helvetica', 'Hiragino Kaku Gothic ProN', YuGothic, 'Yu Gothic Medium', Meiryo, sans-serif;
}
.gothic-R {
  font-weight: normal;
}
.gothic-M {
  font-weight: normal;
}
.gothic-B {
  font-weight: bold;
}
.gothic-H {
  font-weight: bold;
}
img {
  pointer-events: none;
}
/*======================================
color
/*======================================*/
.txt-Red {
  color: rgba(230, 55, 40, 1);
}
.txt-White {
  color: #fff;
}
.txt-Pink {
  color: rgba(255, 100, 145, 1);
}
.txt-Blue {
  color: rgba(51, 190, 210, 1);
}
.txt-Brown {}
.txt-shadow {
  text-shadow: 1px 0px 7px #fff, 0px 1px 7px #fff, -1px 0px 7px #fff, 0px -1px 7px #fff, 1px 0px 7px #fff, 0px 1px 7px #fff, -1px 0px 7px #fff, 0px -1px 7px #fff;
}
/*======================================
BG-color
/*======================================*/
.bg-White {
  background: #fff;
}
.bg-Red {
  background: rgba(230, 55, 40, 1);
  color: #fff;
}
.bg-Pink {
  background: rgba(255, 100, 145, 1);
  color: #fff;
}
.bg-Blue {
  color: #fff;
}
.bg-Brown {
  color: #fff;
}
.num {
  position: fixed;
  top: 10px;
  right: 10px;
}
/*======================================
layout
/*======================================*/
.bg {
  padding: 2em 0;
}
.bg-top {
  padding: 2em 0 0 0;
}
.bg-bottom {
  padding: 0 0 2em 0;
}
.h1-img {
  max-width: 600px;
  margin: 0 auto;
}
.wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.title-img {
  max-width: 400px;
  margin-bottom: 2em;
  transform: translateX(-2em);
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex-SP, .flex-SP-rest {
  display: flex;
  flex-wrap: wrap;
}
.flex-SB {
  justify-content: space-between;
}
.flex-RE {
  flex-direction: row-reverse;
}
.flex-center {
  justify-content: center;
}
.flex-middle {
  align-items: center;
}
.flex-bottom {
  align-items: flex-end;
}
.flex-start {
  justify-content: start;
}
.flex-end {
  justify-content: flex-end;
}