.lifewing {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

.lifewing h2 {
  font-size: 36px;
  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  margin-bottom: 20px;
}

.h2_white {
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke-color: #fff;
}

.h2_p {
  font-size: 28px;
  font-weight: bold;
}

.h2_p span {
  font-size: 48px;
}

.lifewing p {
  line-height: 1.6;
}

.lifewing section {
  margin: 50px 0;
}

@media screen and (max-width:1024px) {
  .lifewing h2 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width:599px) {
  .lifewing h2 {
    font-size: 28px;
  }

  .h2_p {
    font-size: 20px;
  }

  .h2_p span {
    font-size: 36px;
  }

  .lifewing p {
    font-size: 15px;
  }

  .lifewing section {
    margin: 30px 0;
  }
}

/* parallax */
.parallax {
  position: relative;
  overflow: hidden;
}

.rellax {
  position: absolute;

}

.rellax img {
  width: 250px;
}

@media screen and (max-width:1024px) {
  .rellax img {
    width: calc(250 / 1024 * 100vw);
  }
}


.rellax:first-child {
  left: 0;
  top: 400px;
}

.rellax:nth-child(2) {
  right: 0;
  top: 600px;
}

.rellax:nth-child(3) {
  left: 0;
  top: 1400px;
}

.rellax:nth-child(4) {
  right: 0;
  top: 1600px;
}

.rellax:nth-child(5) {
  left: 0;
  top: 2400px;
}

.rellax:nth-child(6) {
  right: 0;
  top: 2600px;
}

.rellax:nth-child(7) {
  left: 0;
  top: 3400px;
}

.rellax:nth-child(8) {
  right: 0;
  top: 3600px;
}

.rellax:nth-child(9) {
  left: 0;
  top: 4400px;
}

.rellax:nth-child(10) {
  right: 0;
  top: 4600px;
}

.rellax:nth-child(11) {
  left: 0;
  top: 5400px;
}

.rellax:nth-child(12) {
  right: 0;
  top: 5600px;
}

.rellax:nth-child(13) {
  left: 0;
  top: 6400px;
}

.rellax:nth-child(14) {
  right: 0;
  top: 6600px;
}

.rellax:nth-child(15) {
  left: 0;
  top: 7400px;
}

.rellax:nth-child(16) {
  right: 0;
  top: 7600px;
}

.rellax:nth-child(17) {
  left: 0;
  top: 8400px;
}

.rellax:nth-child(18) {
  right: 0;
  top: 8600px;
}

.rellax:nth-child(19) {
  left: 0;
  top: 9400px;
}

.rellax:nth-child(20) {
  right: 0;
  top: 9600px;
}

.rellax:nth-child(21) {
  left: 0;
  top: 10400px;
}


/* loading *********************************************/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: linear-gradient(90deg, rgba(14, 244, 255, 1), rgba(65, 164, 253, 1));
  text-align: center;
  color: #fff;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width: 260px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:1024px) {
  .br {
    display: block;
  }

  #splash_logo img {
    width: 60%;
  }
}


/* header *********************************************/

/* header a {
  position: fixed;
  z-index: 9;
  right: 20px;
  top: 20px;
  color: #fff;
  padding: 15px 30px;
  border-radius: 0 20px 0 20px;
  background-color: #133568;
  border: 2px solid #fff;
  font-size: 18px;
}

header p {
  font-size: calc(20 / 1024 * 100vw);
  position: absolute;
  color: #fff;
  background-color: #80C6F2;
  z-index: 1;
  padding: 5px 20px;
  top: calc(120 / 1024 * 100vw);
  left: 200px;
}

@media screen and (max-width:1024px) {
  header a {
    right: 10px;
    top: 10px;
    padding: 10px 20px;
    font-size: 16px;
  }

  header p {
    left: calc(200 / 1024* 100vw);
    padding: 5px calc(20 / 1024* 100vw);
    top: calc(130 / 1024 * 100vw);
  }
}

@media screen and (max-width:599px) {
  header a {
    display: none;
  }

  header p {
    top: calc(140 / 599 * 100vw);
    font-size: calc(20 / 599 * 100vw);
    left: calc(125 / 599* 100vw);
  }
}
 */

/* top *********************************************/

/* #top {
  width: 100%;
  background-image: linear-gradient(90deg, rgba(14, 244, 255, 1), rgba(65, 164, 253, 1));
  background-size: 200% 200%;
  animation: bggradient 20s ease infinite;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

h1 {
  position: absolute;
  left: 200px;
  top: 20px;
  font-size: calc(32 / 1024 * 100vw);
}

h1 span {
  font-size: calc(48 / 1024 * 100vw);
}

.top_logo {
  width: 140px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.top_img {
  width: calc(105% - 180px);
  margin-left: 180px;
  margin-top: -50px;
  margin-bottom: 100px;
}

#top p {
  position: absolute;
  bottom: 120px;
  left: 50px;
  font-size: calc(34 / 1024 * 100vw);
  color: #fff;
  text-shadow: 3px 4px 3px #7C7C7C;
  line-height: 1.4;
  font-weight: bold;
}

#top p img {
  position: absolute;
  width: calc(130 / 1024 * 100vw);
  bottom: 0px;
  left: calc(430 / 1024 * 100vw);
  z-index: -1;
} */

/*左から右に背景色がでてテキストがでる*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: calc(100% + 50px);
  height: 100%;
  background-color: #fff;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.sp {
  display: none;
}

/* @media screen and (max-width:1024px) {
  .top_logo {
    width: calc(140 / 1024 * 100vw);
    left: calc(20 / 1024 * 100vw);
  }

  h1 {
    left: calc(200 / 1024 * 100vw);
  }

  .top_img {
    width: calc(110% - calc(180 / 1024 * 100vw));
    margin-left: calc(180 / 1024 * 100vw);
    margin-bottom: calc(100 / 1024 * 100vw);
    margin-top: calc(-50 / 1024 * 100vw);
  }

  #top p {
    bottom: calc(120 / 1024 * 100vw);
    left: calc(50 / 1024 * 100vw);
  }
} */

@media screen and (max-width:599px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  /* h1 {
    font-size: calc(32 / 599 * 100vw);
    top: calc(20 / 599 * 100vw);
  }

  h1 span {
    font-size: calc(48 / 599 * 100vw);
  }

  .top_logo {
    width: calc(180 / 1024 * 100vw);
    top: calc(20 / 599 * 100vw);
    left: calc(5 / 599 * 100vw);
  }

  #top p {
    top: calc(250 / 599 * 100vw);
    font-size: calc(30 / 599 * 100vw);
    text-shadow: 1px 1px 3px #7C7C7C;
  }

  #top p img {
    width: calc(120 / 599 * 100vw);
    left: calc(380 / 599 * 100vw);
  } */
}





/* about *********************************************/
#about {
  text-align: center;
  background-image: url(../img/about_bg.png);
  background-size: 350px;
  background-position: center 20px;
  background-repeat: no-repeat;
  padding-top: 50px;
  margin-top: 0;
}

#about .h2_p {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(transparent 70%, #FFF5B5 70%);
  display: inline-block;
}

#about .about_p {
  font-size: 20px;
}

#about h3 {
  margin: 20px;
  font-size: 28px;
}


#about .flex h3 span {
  background: none;
}


#about .flex {
  width: 880px;
  margin: 150px auto 0;
}

#about .flex li {
  width: 100%;
  display: block;
  margin: auto;
  position: relative;
  padding: 0 20px 20px 20px;
  border-radius: 0 30px 0 30px;
  box-shadow: 5px 6px 2px #EBEBEB;
  margin-bottom: 50px;
}

#about .flex li:first-child {
  background-color: #0EE9FF;
}

#about .flex li:nth-child(2) {
  background-color: #80C6F2;
}

#about .flex li:last-child {
  background-color: #4199F2;
}

#about .flex li .about_point {
  position: absolute;
  font-size: 32px;
  background-color: #fff;
  border: 1px solid #000;
  padding: 0 20px;
  top: -20px;
  left: -20px;
}

#about .flex li h3 {
  padding: 0 10px 5px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
}

#about .flex h3 span {
  background: none;
}

#about .flex li img {
  width: 100%;
  margin-top: 20px;
}

/* ふわっとした動き（下から） */
.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:1024px) {
  #about .flex {
    width: 90%;
  }

  #about .flex li .about_point {
    top: -40px;
  }

  #about .flex li {
    margin-bottom: 60px;
  }


  #about .flex li p {
    text-align: left;
  }
}

@media screen and (max-width:599px) {
  #about {
    background-size: 250px;
    background-position: center 70px;
  }

  #about .h2_p {
    font-size: 20px;
  }

  #about .about_p {
    font-size: 16px;
  }

  #about h3 {
    margin: 10px 0 20px;
    font-size: 20px;
  }

  .br599 {
    display: block;
  }

  .none {
    display: none;
  }

  #about .flex {
    margin: 100px auto 0;
  }

  #about .flex li .about_point {
    font-size: 24px;
    top: -30px;
    left: -10px;
  }

  #about .flex li h3 {
    font-size: 18px;
    padding: 0 0 5px;
    margin-bottom: 10px;
  }

  #about .flex li {
    padding: 5px 15px 15px;
  }
}


/* benefit *********************************************/
#benefit {
  background-color: #133568;
  padding: 50px;
  margin: 50px 0;
}

#benefit div {
  width: 900px;
  margin: auto;
}

#benefit h2 {
  padding-left: 50px;
}

#benefit .h2_p {
  color: #fff;
  line-height: 1.2;
  padding-left: 50px;
  margin-bottom: 50px;
}

#benefit .h2_p span {
  color: #FFF5B5;
}

.benefit_8 {
  width: 100%;
  display: flex;
  margin: auto;
  padding-left: 50px;
}

.benefit_8 li {
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}


.benefit_8 li img {
  width: 100px;
  margin-right: 20px;
}

.benefit_8 li p {
  font-size: 20px;
  color: #fff;
}

@media screen and (max-width:1024px) {
  #benefit {
    padding: 50px 0;
  }

  #benefit div {
    width: 90%;
  }

  #benefit h2 {
    padding-left: calc(50 / 1024 * 100vw);
  }

  #benefit .h2_p {
    padding-left: calc(50 / 1024 * 100vw);
  }

  .benefit_8 {
    padding-left: calc(50 / 1024 * 100vw);
  }

  .benefit_8 li img {
    width: 70px;
  }

  .benefit_8 li p {
    font-size: 16px;
  }

  .benefit_8 li img {
    margin-right: 5px;
  }

}

@media screen and (max-width:599px) {

  #benefit h2,
  #benefit .h2_p,
  .benefit_8 {
    padding-left: 0;
  }

  #benefit .h2_p {
    margin-bottom: 20px;
  }

  .benefit_8 {
    display: block;
    margin: 0;
  }


  .benefit_8 li {
    width: 277px;
    margin: 0 auto 10px;
  }


  .benefit_8 li img {
    margin-right: 10px;
  }

  .benefit_8 li p {
    font-size: 14px;
  }
}


/* function*********************************************/
#function {
  margin: 50px 0;
  text-align: center;
}

.function_grid {
  display: grid;
  width: 900px;
  margin: 50px auto;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 0.5fr 0.5fr 0.5fr 0.5fr;
}

.function_grid p,
.function_5 p,
.function_6_p {
  padding-left: 10px;
}


.function_3 {
  grid-row: 3;
}

.function_4 {
  grid-row: 4;
}

.function_img {
  grid-row: 1/5;
  grid-column: 2/3;
  width: 90%;
  display: block;
  margin: auto;
}

.function_grid h3,
.function_5 h3,
.function_6 h3 {
  background-color: #80C6F2;
  font-size: 18px;
  padding: 5px;
  margin: 10px 0;
  color: #fff;
  text-align: left;
  padding-left: 20px;
}

.function_5 h3 {
  margin-top: 0;
}

.function_grid h3 span,
.function_5 h3 span,
.function_6 h3 span {
  font-size: 28px;
  vertical-align: sub;
  margin-right: 10px;
  color: #FFF5B5;
}

.function_grid p,
.function_5,
.function_6_p {
  text-align: left;
}

.function_5,
.function_6 {
  display: flex;
  width: 900px;
  margin: auto;
}

.function_5 li:first-child,
.function_6 li:first-child {
  width: 60%;
}

.function_5 li:last-child {
  width: 40%;
}

.function_5 img {
  width: 70%;
  display: block;
  margin: auto;
}

.function_6_p {
  width: 900px;
  display: block;
  margin: auto;
}

.function_slider {
  margin: 30px auto 50px;
  width: 900px;
}

.function_slider h4 {
  text-align-last: left;
  margin-bottom: 20px;
  font-size: 18px;
}

.slider {
  width: 100%;
  margin: auto;
}

.slider img {
  width: 100%;
  height: auto;
}

.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
.slick-prev,
.slick-next {
  position: absolute;
  top: 38%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  height: 15px;
  width: 15px;
}

.slick-list {
  width: 90%;
  margin: auto;
}

.slick-prev {
  left: 1%;
  transform: rotate(-135deg);
}

.slick-next {
  right: 1%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #ccc;
}

.slick-dots .slick-active button {
  background: #333;
}

#function .br599 {
  margin-right: 0;
  color: #fff;
  font-size: 18px;
  vertical-align: initial;
}


@media screen and (max-width:1024px) {
  .function_grid {
    width: 90%;
  }

  .function_5,
  .function_6,
  .function_5 img,
  .function_6_p,
  .function_slider {
    width: 90%;
  }
}

@media screen and (max-width:599px) {
  .function_grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.1fr 0.1fr 0.1fr 0.1fr 0.1fr;
    margin: 30px auto 0;
  }

  .function_img {
    grid-row: 1;
    grid-column: 1;
  }

  .function_img img {
    width: 50%;
  }

  .function_1 {
    grid-row: 2;
  }

  .function_2 {
    grid-row: 3;
  }

  .function_3 {
    grid-row: 4;
  }

  .function_4 {
    grid-row: 5;
  }

  .function_5 {
    display: block;
    margin-top: -35px;
  }

  .function_5 li:first-child,
  .function_5 li:last-child,
  .function_6 li:first-child {
    width: 100%;
  }

  #function .br599 {
    margin-right: 0;
    color: #fff;
    font-size: 18px;
  }

  .function_5 img {
    margin: 20px auto 0;
    width: 280px;
  }

  .function_slider {
    margin: 20px auto;
  }

  .function_slider h4 {
    margin-bottom: 10px;
  }

  .function_grid h3,
  .function_5 h3,
  .function_6 h3 {
    margin: 20px 0 10px;
  }
}

/* developer*********************************************/
#developer {
  margin: 100px auto;
}

#developer div {
  background-color: #133568;
  width: 900px;
  margin: 0 0 0 auto;
}

#developer h2 {
  text-align: center;
  padding-top: 30px;
}

#developer .h2_p {
  text-align: center;
  color: #fff;
  margin-top: 0;
}

#developer ul {
  display: flex;
  padding: 30px;
}

#developer ul li:first-child {
  width: 40%;
  padding-right: 30px;
}

#developer ul li:first-child img {
  width: 100%;
}

#developer ul li:last-child {
  width: 60%;
}


#developer ul li:last-child p {
  color: #fff;
  margin-top: 30px;
}

/* ふわっとした動き（右から） */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeRightTrigger {
  opacity: 0;
}

@media screen and (max-width:1024px) {
  #developer div {
    width: 90%;
  }

  #developer div ul {
    display: block;
  }

  #developer div ul li:first-child,
  #developer div ul li:last-child {
    width: 100%;
  }

  #developer div ul li:first-child img {
    width: 60%;
    margin: auto;
    display: block;
  }
}

@media screen and (max-width:599px) {
  #developer {
    margin: 50px auto;
  }

  #developer div ul li:first-child img {
    width: 220px;
  }

  #developer ul {
    padding: 10px 30px 30px;
  }

  #developer ul li:first-child {
    padding-right: 0;
    margin: auto;
  }
}

/* achievements*********************************************/
#achievements h2,
#achievements .h2_p {
  text-align: center;
}

#achievements ul {
  display: flex;
  width: 900px;
  margin: 30px auto 0;
}

#achievements ul li:first-child {
  width: 40%;
}

#achievements ul li:first-child img {
  width: 100%;
}

#achievements ul li:last-child {
  width: 60%;
  padding: 10px 30px;
  line-height: 1.6;
}

#achievements table {
  width: 900px;
  background: linear-gradient(90deg, rgba(14, 244, 255, 1), rgba(65, 164, 253, 1));
  color: #fff;
  display: block;
  margin: 30px auto;
}

#achievements table th {
  width: 150px;
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
  border: 1px solid #fff;
  border-right: none;
  text-align: center;
  vertical-align: middle;
}

#achievements table td {
  width: calc(100% - 150px);
  padding: 10px;
  border: 1px solid #fff;
}

/* ふわっとした動き（左から） */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media screen and (max-width:1024px) {
  #achievements ul {
    width: 90%;
    display: block;
  }

  #achievements ul li:first-child {
    width: 100%;
  }

  #achievements ul li:last-child {
    width: 100%;
    padding: 10px 0;
  }

  #achievements table {
    width: 90%;
  }
}

@media screen and (max-width:599px) {
  #achievements table {
    width: 500px;
    margin-bottom: 10px;
  }

  #achievements table th {
    width: 100px;
    font-size: 16px;
  }

  #achievements table td {
    font-size: 14px;
  }

  .achievements_table {
    margin: 20px 10px;
    overflow-x: scroll;
  }
}

/* fee*********************************************/
#fee {
  background-color: #133568;
  text-align: center;
  padding: 50px;
  margin: 100px 0;
}

#fee .h2_p {
  margin-bottom: 30px;
}

#fee p {
  color: #fff;
}

#fee img {
  width: 700px;
  display: block;
  margin: 30px auto;
}

#fee .sp {
  display: none;
}

@media screen and (max-width:1024px) {
  #fee {
    padding: 50px 0;
  }

  #fee img {
    width: 90%;
  }
}

@media screen and (max-width:599px) {
  #fee {
    margin: 50px 0;
  }

  #fee p {
    font-size: 14px;
  }

  #fee .pc {
    display: none;
  }

  #fee .sp {
    display: block;
  }
}

/* contact*********************************************/

#contact {
  margin: 50px;
  text-align: center;
}

#contact .h2_p {
  margin-bottom: 30px;
}

.gradient1 {
  display: inline-block;
  color: #fff;
  padding: 18px 50px;
  border-radius: 0 20px 0 20px;
  text-decoration: none;
  outline: none;
  background: linear-gradient(90deg, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
  margin: 30px 0;
}

.gradient1:hover {
  color: #fff;
  background-position: 99% 50%;
}

@media screen and (max-width:599px) {
  #contact {
    margin: 0 auto 20px;
    width: 90%;
  }

  .contact_p {
    font-size: 14px;
  }
}

/* footer*********************************************/
/* footer {
  background-color: #133568;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
} */
