@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*,
*:after,
*:before {
  box-sizing: border-box;
}

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;
}

html {
  font-size: 62.5%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
  margin: 0 auto;
}

.container {
  max-width: 124rem;
}

.title {
  color: #050554;
  font-family: sans-serif;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 710px) {
  .title {
    font-size: 5rem;
    height: 12rem;
    line-height: 12rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  .title {
    font-size: 5rem;
    height: 12rem;
    line-height: 12rem;
  }
}
@media (min-width: 990px) {
  .title {
    font-size: 7rem;
    height: 16rem;
    line-height: 16rem;
  }
}

.titleWhite {
  color: white;
}

.titleNavy {
  color: #050554;
}

#menu {
  z-index: 1000;
  position: absolute;
  top: 0;
  right: -100%;
  background: #050554;
  padding: 20px 8px;
  box-sizing: border-box;
  width: 30%;
  min-height: 100%;
  transition: 0.4s;
}
#menu i {
  width: 2rem;
  height: 2rem;
}
#menu .fa {
  margin-left: auto;
}
#menu a {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}
#menu a::after {
  position: absolute;
  bottom: 20px;
  left: 0;
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
#menu a:hover::after {
  transform: scale(1, 1);
}

#hide {
  color: #ddd;
  cursor: pointer;
}

body.menu-open {
  overflow-y: hidden;
}

body.menu-open #cover {
  display: block;
}

body.menu-open #menu {
  right: 0;
}

.wrapper {
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 100vh;
  /* 追加 */
  position: relative;
  /* 追加 */
  -webkit-overflow-scrolling: touch;
  /* 追加 */
}

@media (min-width: 711px) and (max-width: 989px) {
  .brSp {
    display: none;
  }
}
@media (min-width: 990px) {
  .brSp {
    display: none;
  }
}

@media (max-width: 710px) {
  .brTab {
    display: none;
  }
}
@media (min-width: 990px) {
  .brTab {
    display: none;
  }
}

@media (max-width: 710px) {
  .brPc {
    display: none;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  .brPc {
    display: none;
  }
}

.toTop .toTopArrow {
  background-color: #fff;
  border: 0.1rem solid #050554;
  border-radius: 50%;
  color: #050554;
  height: 5.6rem;
  left: 90%;
  opacity: 0.9;
  position: fixed;
  top: 90%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  width: 5.6rem;
}
.toTop .toTopArrow:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.toTop .toTopArrow .fa-chevron-up {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

footer {
  background-color: #050554;
  margin: 0 auto;
}
@media (max-width: 710px) {
  footer {
    height: 9rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  footer {
    height: 9rem;
  }
}
@media (min-width: 990px) {
  footer {
    height: 9.2rem;
  }
}
footer ul {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 710px) {
  footer ul {
    width: 80%;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  footer ul {
    width: 80%;
  }
}
@media (min-width: 990px) {
  footer ul {
    max-width: 124rem;
  }
}
footer ul a {
  color: #ccc;
  position: relative;
  text-decoration: none;
}
@media (max-width: 710px) {
  footer ul a {
    font-size: 1.5rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  footer ul a {
    font-size: 2rem;
  }
}
@media (min-width: 990px) {
  footer ul a {
    font-size: 2rem;
  }
}
footer ul a:hover {
  color: #fff;
}
footer ul a::after {
  background: #fff;
  bottom: -0.1rem;
  content: "";
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s;
  width: 100%;
}
@media (max-width: 710px) {
  footer ul a::after {
    height: 0.1rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  footer ul a::after {
    height: 0.2rem;
  }
}
@media (min-width: 990px) {
  footer ul a::after {
    height: 0.2rem;
  }
}
footer ul a:hover::after {
  transform: scale(1, 1);
}
footer .copyRight {
  color: #fff;
  font-size: 1.3rem;
  padding: 10px 0;
  text-align: center;
}

#Contact {
  background-color: #efefef;
  padding-top: 5.6rem;
  height: 70rem;
}
@media (min-width: 990px) {
  #Contact {
    padding-top: 6.4rem;
  }
}
@media (min-width: 990px) {
  #Contact .contactWrap {
    max-width: 124rem;
    margin: 0 auto;
  }
}
#Contact .contactWrap .contactTitle {
  color: #050554;
  font-size: 1.3rem;
  padding: 1rem 0;
  text-align: center;
}
#Contact .contactWrap .contactForm {
  height: 15rem;
  padding: 3rem;
  text-align: center;
}
#Contact .contactWrap .contactForm .mail-navy {
  color: rgba(5, 5, 84, 0.8);
}
#Contact .contactWrap .contactForm .mail-navy:hover {
  color: #b9c3c9;
  transition: 0.3s;
}
#Contact .contactWrap .contactDesc {
  color: rgba(5, 5, 84, 0.85);
  font-size: 1rem;
  text-align: center;
}
#Contact .contactWrap .contactSub {
  font-size: 1.1rem;
  padding-top: 0.5rem;
  text-align: center;
}
#Contact .contactWrap .contactButton {
  display: flex;
  align-items: center;
  height: 15rem;
  padding: 3rem;
}
#Contact .contactWrap .googleForm {
  background: linear-gradient(45deg, #b9c3c9, #e2e3f4);
  border-radius: 3rem;
  color: #050554;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 auto;
  outline: none;
  padding: 1rem 4rem;
  text-align: center;
  text-decoration: none;
  width: 18rem;
}
#Contact .contactWrap .googleForm:hover {
  background: linear-gradient(45deg, #e2e3f4, #b9c3c9);
}
#Contact .contactWrap .contactTwitter {
  color: #1da1f2;
  text-decoration: none;
  font-weight: bold;
}
#Contact .contactWrap .contactTwitter:hover {
  color: rgba(29, 161, 242, 0.7);
}

#Works {
  margin: 0 auto;
}
@media (min-width: 990px) {
  #Works {
    background-attachment: fixed;
    background-image: url(../img/moon2.jpg);
    background-position: 0% 20%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#Works .worksShadow {
  background-color: rgba(100, 100, 100, 0.1);
  box-sizing: border-box;
  height: 100%;
  padding-top: 5.8rem;
  width: 100%;
}
@media (min-width: 990px) {
  #Works .worksShadow {
    padding-top: 6.4rem;
  }
}
#Works .worksWrap {
  display: flex;
  flex-direction: column;
  max-width: 124rem;
  margin: 0 auto;
  padding: 4rem;
}
@media (min-width: 711px) and (max-width: 989px) {
  #Works .worksWrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 990px) {
  #Works .worksWrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#Works .worksCardFlame {
  border-radius: 0.3rem;
  color: #fff;
  height: 25rem;
  margin: 3rem auto 0;
  overflow: hidden;
  width: 80%;
}
@media (min-width: 711px) and (max-width: 989px) {
  #Works .worksCardFlame {
    width: 45%;
  }
}
@media (min-width: 990px) {
  #Works .worksCardFlame {
    width: 28%;
  }
}
#Works .worksCardFlame:hover {
  cursor: pointer;
}
#Works .worksCardFlame2-2,
#Works .worksCardFlame3-2,
#Works .worksCardFlame5-2 {
  display: none;
}
#Works .worksCard {
  position: relative;
  height: 100%;
  width: 100%;
  text-align: center;
  transition: 0.4s;
  vertical-align: center;
}
#Works .worksCard:hover {
  transform: scale(1.04, 1.04);
}
#Works .worksCard i {
  padding-top: 15%;
}
@media (min-width: 711px) and (max-width: 989px) {
  #Works .worksCard i {
    padding-top: 25%;
  }
}
@media (min-width: 990px) {
  #Works .worksCard i {
    padding-top: 25%;
  }
}
#Works .worksCardShadow {
  position: absolute;
  background-color: rgba(5, 5, 84, 0.6);
  width: 100%;
  height: 100%;
  visibility: hidden;
}
#Works .worksCardFlame:hover .worksCardShadow {
  visibility: visible;
  transition: 0.4s;
}
#Works .worksDesc {
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  width: 100%;
}
#Works .worksTitle {
  color: #ccc;
  font-size: 1.2rem;
  top: 50%;
}
#Works .worksDesc0 {
  color: #fff;
  font-size: 1.7rem;
  top: 60%;
}
#Works .worksDesc1 {
  color: #ccc;
  font-size: 1.2rem;
  top: 70%;
}
#Works .worksCardFlame:hover .worksDesc {
  transition: 0.4s;
  visibility: visible;
  opacity: 1;
}
#Works .worksCardFlame:hover .worksTitle {
  top: 45%;
}
#Works .worksCardFlame:hover .worksDesc0 {
  top: 55%;
}
#Works .worksCardFlame:hover .worksDesc1 {
  top: 65%;
}

#Service {
  background-color: #fcfcfc;
}
@media (max-width: 710px) {
  #Service {
    padding: 5.6rem 0;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Service {
    padding: 5.6rem 0;
  }
}
@media (min-width: 990px) {
  #Service {
    padding: 6.4rem 0;
  }
}
#Service .serviceContents {
  color: #050554;
  display: flex;
  max-width: 124rem;
  margin: 0 auto;
}
@media (max-width: 710px) {
  #Service .serviceContents {
    flex-direction: column;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Service .serviceContents {
    flex-wrap: wrap;
  }
}
@media (min-width: 990px) {
  #Service .serviceContents {
    justify-content: space-between;
  }
}
#Service .serviceContents .serviceCard {
  background: linear-gradient(-45deg, #bdc3c9, #fff, #b9c3c9);
  border-radius: 1rem;
  margin: 2rem auto;
  padding: 2rem;
  position: relative;
  width: 75%;
}
#Service .serviceContents .serviceCard:hover {
  background: linear-gradient(-45deg, #fff, #b9c3c9, #fff);
}
@media (min-width: 711px) and (max-width: 989px) {
  #Service .serviceContents .serviceCard {
    height: 31rem;
    width: 45%;
  }
}
@media (min-width: 990px) {
  #Service .serviceContents .serviceCard {
    height: 31rem;
    width: 30%;
  }
}
#Service .serviceContents .serviceIcon {
  color: rgba(5, 5, 84, 0.78);
  padding-top: 1rem;
  text-align: center;
}
#Service .serviceContents .serviceTitle {
  font-size: 1.5rem;
  padding-top: 2rem;
  text-align: center;
}
#Service .serviceContents .servicePrice {
  font-size: 1.5rem;
  padding: 2rem 2rem 0;
  z-index: 10;
}
#Service .serviceContents .serviceDelivery {
  font-size: 1.5rem;
  padding: 1rem 2rem 0;
}
#Service .serviceContents .serviceDesc {
  font-size: 1.2rem;
  padding: 2rem 2rem 0;
  text-align: justify;
}

@media (min-width: 990px) {
  #Skill {
    background: url(../img/moon1.jpg);
    background-attachment: fixed;
    background-position: center 36%;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
  }
}
#Skill .skillShadow {
  background-color: rgba(20, 20, 20, 0.4);
  box-sizing: border-box;
  height: 100%;
  padding: 5.6rem 0 10rem;
  width: 100%;
}
@media (min-width: 990px) {
  #Skill .skillShadow {
    padding-top: 6.4rem;
  }
}
#Skill .skillBox {
  display: flex;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  flex-wrap: wrap;
}
@media (max-width: 710px) {
  #Skill .skillBox {
    flex-direction: column;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Skill .skillBox {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 990px) {
  #Skill .skillBox {
    flex-direction: row;
    justify-content: space-between;
    max-width: 124rem;
  }
}
#Skill .skillBox .skillCard {
  background-color: #fff;
  box-shadow: 1rem 1rem 1rem #050554;
  color: #050554;
  height: 23rem;
  margin: 0 auto 3rem;
}
@media (max-width: 710px) {
  #Skill .skillBox .skillCard {
    width: 60%;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Skill .skillBox .skillCard {
    width: 45%;
    margin-bottom: 3rem;
  }
}
@media (min-width: 990px) {
  #Skill .skillBox .skillCard {
    height: 23rem;
    margin-bottom: 3rem;
    width: 22%;
  }
}
#Skill .skillBox .skillCard .skillImg {
  height: 60%;
  position: relative;
  width: 100%;
}
#Skill .skillBox .skillCard .skillImg .fab,
#Skill .skillBox .skillCard .skillImg .imgjQuery {
  left: 50%;
  position: absolute;
  top: 60%;
  transform: translate(-50%, -50%);
}
#Skill .skillBox .skillCard .skillImg .imgjQuery {
  width: 100px;
  height: 100px;
}
#Skill .skillBox .skillCard .htmlRed {
  color: #ee4c2d;
}
#Skill .skillBox .skillCard .cssBlue {
  color: #0a4ef4;
}
#Skill .skillBox .skillCard .sassPink {
  color: #d06295;
}
#Skill .skillBox .skillCard .jsYellow {
  color: #f8d836;
}
#Skill .skillBox .skillCard .reactSkyblue {
  color: #44daf9;
}
#Skill .skillBox .skillCard .gitHubBlack {
  color: #110f0f;
}
#Skill .skillBox .skillCard .skillDesc {
  font-size: 2.5rem;
  text-align: center;
}
#Skill .skillBox .skillCard p {
  padding-top: 2rem;
  font-size: 1.2rem;
  text-align: center;
}
#Skill .skillBox .scrollFade {
  opacity: 0;
  transform: translateY(8rem);
  transition: all 0.4s;
}

@media (max-width: 710px) {
  #Skill:before {
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -100;
  }

  #Skill.bg0:before {
    background: none;
  }

  #Skill.bg1:before {
    background: url(../img/moon1.jpg);
    background-position: 50% 20%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  #Skill.bg2:before {
    background: url(../img/moon2.jpg);
    background-position: 35% 20%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Skill:before {
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -100;
  }

  #Skill.bg0:before {
    background: none;
  }

  #Skill.bg1:before {
    background: url(../img/moon1.jpg);
    background-position: 50% 30%;
    background-size: cover;
  }

  #Skill.bg2:before {
    background: url(../img/moon2.jpg);
    background-position: 40% 0%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#Portfolio {
  background-color: #efefef;
  color: #050554;
}
@media (max-width: 710px) {
  #Portfolio {
    padding: 5.6rem 0 9.6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio {
    padding: 5.6rem 0;
  }
}
@media (min-width: 990px) {
  #Portfolio {
    padding: 6.4rem 0;
  }
}
#Portfolio .portfolioContainer {
  margin: 0 auto;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer {
    max-width: 100%;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer {
    max-width: 100%;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer {
    max-width: 124rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .useLanguage {
  color: #050554;
  font-family: serif;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .useLanguage {
    font-size: 3.6rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .useLanguage {
    font-size: 4rem;
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .useLanguage {
    font-size: 5.6rem;
    line-height: 8rem;
    margin-bottom: 2rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .useLanguage::after {
  background-color: #050554;
  bottom: 0.8rem;
  content: "";
  display: block;
  height: 0.2rem;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 7.2rem;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .useLanguage::after {
    bottom: -0.8rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .useLanguage::after {
    bottom: -0.8rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioContent {
  border: 0.1rem solid #cfcfcf;
  border-radius: 0.8rem;
  background-color: #fbfbfb;
  margin: 0 auto 5.6rem;
  text-align: center;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioContent {
    width: 90%;
    padding: 4rem 1.6rem 2.4rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioContent {
    width: 90%;
    padding: 4rem 2.4rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioContent {
    width: 90%;
    padding: 4rem 4rem 5.6rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioTitle {
  position: relative;
  display: inline-block;
  vertical-align: center;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle {
    font-size: 1.6rem;
    line-height: 4rem;
    height: 4rem;
    padding: 0 6rem;
    margin-bottom: 1.6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle {
    font-size: 2.4rem;
    line-height: 4.8rem;
    height: 4.8rem;
    padding: 0 12rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle {
    font-size: 3.2rem;
    line-height: 6.4rem;
    height: 6.4rem;
    padding: 0 16rem;
    margin-bottom: 0.8rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::before, #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::after {
  content: "";
  background-color: #f2be42;
  position: absolute;
  top: 50%;
  display: inline-block;
  height: 0.2rem;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::before, #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::after {
    width: 6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::before, #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::after {
    width: 12rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::before, #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::after {
    width: 16rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::before {
  background: linear-gradient(-90deg, #f2be42, transparent);
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::before {
    left: -0.6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::before {
    left: -1.2rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::before {
    left: -1.6rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::after {
  background: linear-gradient(90deg, #f2be42, transparent);
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::after {
    right: -0.6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::after {
    right: -1.2rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioTitle::after {
    right: -1.6rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioImage {
  text-align: center;
  margin-bottom: 3.2rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioImage .reference {
  display: block;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioImage .reference {
    width: 80%;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioImage .reference {
    width: 48rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioImage .reference {
    width: 40rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioImage .reference .portfolioDesc {
  font-size: 4rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioImage .reference .appImg {
  height: auto;
  width: 100%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule {
  display: flex;
  width: 100%;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule {
    flex-direction: column;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule {
    flex-direction: row;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule {
    flex-direction: row;
    padding-bottom: 4rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioThumbnail {
  position: relative;
  text-align: center;
  height: 90%;
  width: 100%;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioThumbnail {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioThumbnail .video {
    width: 80%;
    height: 28rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioThumbnail .video {
    width: 100%;
    height: 28rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioThumbnail .video {
    height: 32rem;
    width: 100%;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioAbout {
  box-sizing: border-box;
  flex-grow: 1;
  text-align: center;
  width: 100%;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioAbout {
    padding-bottom: 2.4rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioAbout .portfolioDesc {
    margin-bottom: 0.8rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioDescList {
  text-align: start;
  margin: 0 auto 1.6rem;
  width: 80%;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioDescList {
    padding-left: 3.2rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioDescList {
    padding-left: 2.4rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioDescList {
    padding-left: 3.2rem;
  }
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioDetail {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioDetail {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 0.8rem;
  }
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioDetail:last-child {
    margin-bottom: 2rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioModule .portfolioDetail {
    font-size: 1.6rem;
    line-height: 3.2rem;
    margin-bottom: 0.8rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioDesc {
  display: inline-block;
  text-align: center;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioDesc {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioDesc {
    font-size: 2rem;
    line-height: 3.6rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .portfolioDesc {
    font-size: 2.4rem;
    height: 5.6rem;
    line-height: 4.8rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .film {
  position: relative;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .film::before, #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .film::after {
  color: #bbb;
  content: "\f008";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .film::before {
  left: -3.6rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .film::after {
  right: -3.6rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .link {
  position: relative;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .link::before, #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .link::after {
  color: #bbb;
  content: "\f0c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .link::before {
  left: -3.6rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .link::after {
  right: -3.6rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .overview {
  position: relative;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .overview::before, #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .overview::after {
  color: #bbb;
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .overview::before {
  left: -3.6rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .overview::after {
  right: -3.6rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .point {
  position: relative;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .point::before, #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .point::after {
  color: #f2be42;
  content: "\f0eb";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .point::before {
  left: -3.6rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .point::after {
  right: -3.6rem;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .check {
  position: relative;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .check::before {
  color: #3428c1;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .check::before {
    left: -2rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .check::before {
    left: -2rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioUnit .check::before {
    left: -3rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems {
    flex-direction: column;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems {
    flex-direction: row;
    justify-content: space-between;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame {
  border-radius: 0.4rem;
  color: #fff;
  height: 25rem;
  margin: 0 auto;
  overflow: hidden;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame:hover {
  cursor: pointer;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame.preparation {
  border: 0.1rem solid #cfcfcf;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame {
    width: 80%;
    margin-bottom: 4rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame {
    width: 45%;
    margin-bottom: 4rem;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame {
    width: 30%;
    margin-bottom: 2.4rem;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard {
  height: 100%;
  position: relative;
  text-align: center;
  transition: 0.3s;
  vertical-align: center;
  width: 100%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard:hover {
  transform: scale(1.08, 1.08);
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard i {
  color: #ddd;
}
@media (max-width: 710px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard i {
    padding-top: 15%;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard i {
    padding-top: 25%;
  }
}
@media (min-width: 990px) {
  #Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard i {
    padding-top: 25%;
  }
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard:hover .worksCardShadow {
  visibility: visible;
  transition: 0.3s;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard:hover .worksDesc {
  transition: 0.3s;
  visibility: visible;
  opacity: 1;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard:hover .worksTitle {
  top: 40%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard:hover .worksDesc0 {
  top: 50%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCard:hover .worksDesc1 {
  top: 60%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksCardShadow {
  background-color: rgba(5, 5, 84, 0.6);
  height: 100%;
  position: absolute;
  visibility: hidden;
  width: 100%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksDesc {
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  visibility: visible;
  width: 100%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksTitle {
  color: #ccc;
  font-size: 1.2rem;
  top: 45%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksDesc0 {
  color: #fff;
  font-size: 1.7rem;
  top: 55%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame .worksDesc1 {
  color: #ccc;
  font-size: 1.2rem;
  top: 65%;
}
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame1-2,
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame2-2,
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame3-2,
#Portfolio .portfolioContainer .portfolioGroup .portfolioItems .worksCardFlame4-2 {
  display: none;
}

#Profile {
  background-color: #fcfcfc;
  width: 100%;
}
@media (max-width: 710px) {
  #Profile {
    padding: 5.6rem 0 9.6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile {
    padding: 5.6rem 0 8rem;
  }
}
@media (min-width: 990px) {
  #Profile {
    height: 88rem;
    padding: 6.4rem 0;
  }
}
#Profile .profileContainer {
  margin: 0 auto;
  position: relative;
}
@media (max-width: 710px) {
  #Profile .profileContainer {
    padding: 2rem 3rem 0;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer {
    display: flex;
    justify-content: space-between;
    height: 56rem;
    max-width: 124rem;
    overflow: hidden;
  }
}
#Profile .profileContainer .myPhoto {
  margin: 0 auto;
}
@media (max-width: 710px) {
  #Profile .profileContainer .myPhoto {
    width: 100%;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .myPhoto {
    width: 100%;
    height: 56rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .myPhoto {
    width: 100%;
    margin: 0;
  }
}
#Profile .profileContainer .myPhoto .imgBox {
  background-image: url(../img/toshifumiide1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 710px) {
  #Profile .profileContainer .myPhoto .imgBox {
    background-position: top 0 left 60%;
    border-radius: 50%;
    height: 25rem;
    margin: 0 auto 2rem;
    max-width: 25rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .myPhoto .imgBox {
    background-position: top 0 left 70%;
    border-radius: 50%;
    height: 36rem;
    width: 36rem;
    margin: 0 auto;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .myPhoto .imgBox {
    background-position: center;
    height: 56rem;
    width: 100%;
  }
}
#Profile .profileContainer .myPhoto .mySns {
  text-align: center;
}
@media (max-width: 710px) {
  #Profile .profileContainer .myPhoto .mySns {
    margin-bottom: 4rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .myPhoto .mySns {
    height: 20rem;
    padding-top: 4rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .myPhoto .mySns {
    display: none;
  }
}
#Profile .profileContainer .myPhoto .mySns ul {
  margin: 0 auto;
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .myPhoto .mySns li {
    margin-bottom: 0.8rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .myPhoto .mySns li {
    margin-bottom: 1.6rem;
  }
}
#Profile .profileContainer .myPhoto .mySns .sns {
  font-size: 2.4rem;
  line-height: 5rem;
  text-decoration: none;
  width: 100%;
}
#Profile .profileContainer .myPhoto .mySns .twitter {
  color: #1da1f2;
}
#Profile .profileContainer .myPhoto .mySns .twitter:hover {
  color: rgba(29, 161, 242, 0.5);
}
#Profile .profileContainer .myPhoto .mySns .github {
  color: #110f0f;
}
#Profile .profileContainer .myPhoto .mySns .github:hover {
  color: rgba(17, 15, 15, 0.5);
}
#Profile .profileContainer .aboutMe {
  align-items: center;
  overflow: scroll;
  width: 100%;
  background-color: rgba(5, 5, 84, 0.85);
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe {
    height: 56rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .aboutMe {
    background-color: rgba(5, 5, 84, 0.85);
    height: 56rem;
    padding: 0 2rem;
  }
}
#Profile .profileContainer .aboutMe .aboutMeTitle {
  font-family: sans-serif;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 710px) {
  #Profile .profileContainer .aboutMe .aboutMeTitle {
    background-color: #fcfcfc;
    color: #050554;
    font-size: 3rem;
    padding: 0 0 1rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe .aboutMeTitle {
    color: #fcfcfc;
    font-size: 3rem;
    padding: 1rem 0;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .aboutMe .aboutMeTitle {
    color: #eee;
    font-size: 4rem;
    padding: 2rem 0 1rem;
  }
}
#Profile .profileContainer .aboutMe .iconColor {
  color: #eee;
}
#Profile .profileContainer .aboutMe .profileWrap {
  display: flex;
  background-color: rgba(5, 5, 84, 0.85);
}
@media (max-width: 710px) {
  #Profile .profileContainer .aboutMe .profileWrap {
    border-radius: 0.4rem;
    padding: 1.6rem 0 4rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe .profileWrap {
    background-color: rgba(5, 5, 84, 0);
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .aboutMe .profileWrap {
    background-color: rgba(5, 5, 84, 0);
  }
}
@media (max-width: 710px) {
  #Profile .profileContainer .aboutMe .profileWrap .icon {
    margin-left: 1.5rem;
    padding-top: 2rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe .profileWrap .icon {
    margin-left: 0;
    padding: 0.8rem 0 0 1.2rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .aboutMe .profileWrap .icon {
    margin-left: 0;
    padding-top: 1.4rem;
  }
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc {
  padding: 0 2rem;
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myName,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myName {
  color: #fff;
  padding-top: 2rem;
}
@media (max-width: 710px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myName,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myName {
    font-size: 2rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myName,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myName {
    font-size: 1.7rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myName,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myName {
    font-size: 2.5rem;
  }
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 p,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .profileChapter,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 p,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .profileChapter {
  color: #fff;
}
@media (max-width: 710px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 p,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .profileChapter,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 p,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .profileChapter {
    font-size: 1.5rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 p,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .profileChapter,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 p,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .profileChapter {
    font-size: 1.3rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 p,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .profileChapter,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 p,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .profileChapter {
    font-size: 1.5rem;
  }
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .profileChapter,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .profileChapter {
  padding-top: 1.8rem;
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myStrengths .myStrength,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myStrengths .myStrength {
  color: #eee;
  line-height: 2rem;
}
@media (max-width: 710px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myStrengths .myStrength,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myStrengths .myStrength {
    font-size: 1.6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myStrengths .myStrength,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myStrengths .myStrength {
    font-size: 1.3rem;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myStrengths .myStrength,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myStrengths .myStrength {
    font-size: 1.5rem;
  }
}
@media (max-width: 710px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myStrengths .myStrength .colon,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myStrengths .myStrength .colon {
    display: none;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .myStrengths .myStrength .colon,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .myStrengths .myStrength .colon {
    display: none;
  }
}
@media (max-width: 710px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns {
    display: none;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns {
    display: none;
  }
}
@media (min-width: 990px) {
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns,
  #Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns {
    display: block;
  }
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .snsBox,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .snsBox {
  display: flex;
  justify-content: space-around;
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .snsBox .snsRight,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .snsBox .snsLeft,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .snsBox .snsRight,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .snsBox .snsLeft {
  flex-grow: 1;
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .snsBox .sns,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .snsBox .sns {
  text-decoration: none;
  font-size: 2.4rem;
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .snsBox .twitter,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .snsBox .twitter {
  color: #1da1f2;
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .snsBox .twitter:hover,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .snsBox .twitter:hover {
  color: rgba(29, 161, 242, 0.5);
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .snsBox .github,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .snsBox .github {
  color: #110f0f;
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .snsBox .github:hover,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .snsBox .github:hover {
  color: rgba(17, 15, 15, 0.5);
}
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc1 .mySns .fab,
#Profile .profileContainer .aboutMe .profileWrap .profileDesc .profileDesc2 .mySns .fab {
  vertical-align: middle;
}
#Profile .profileContainer .slideContsL {
  transform: translateX(-100rem);
  transition: all 0.4s;
}
#Profile .profileContainer .slideContsR {
  transform: translateX(100rem);
  transition: all 0.4s;
}

#Eyecatch {
  width: 100%;
  height: 100vh;
  position: relative;
  min-height: 80rem;
}
#Eyecatch .eyecatchWrap {
  height: 100%;
}
#Eyecatch .eyecatchWrap #sliderWrap {
  height: 100%;
  position: relative;
  width: 100%;
}
#Eyecatch .eyecatchWrap #sliderWrap .slider {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
@media (max-width: 710px) {
  #Eyecatch .eyecatchWrap #sliderWrap .slider {
    background-position: 40% 50%;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  #Eyecatch .eyecatchWrap #sliderWrap .slider {
    background-position: 40% 50%;
  }
}
@media (min-width: 990px) {
  #Eyecatch .eyecatchWrap #sliderWrap .slider {
    background-position: center;
  }
}
#Eyecatch .eyecatchWrap #sliderWrap .slider1 {
  background-image: url(../img/slider_star.jpg);
  background-position: 80% center;
}
#Eyecatch .eyecatchWrap #sliderWrap .slider2 {
  background-image: url(../img/slider_colorado.jpg);
}
#Eyecatch .eyecatchWrap #sliderWrap .slider3 {
  background-image: url(../img/slider_ocean.jpg);
}
#Eyecatch .eyecatchWrap .eyecatchShadow {
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.4);
}
#Eyecatch .eyecatchWrap .slogan {
  border-right: 0.2rem solid rgba(255, 255, 255, 0.9);
  color: #fff;
  font-family: serif;
  font-size: 3.5rem;
  font-weight: normal;
  left: 50%;
  letter-spacing: 0.3rem;
  line-height: 3rem;
  position: absolute;
  top: 30%;
  transform: translate(-50%, -50%);
}
@media (min-width: 990px) {
  #Eyecatch .eyecatchWrap .slogan {
    border-right: 0.5rem solid rgba(255, 255, 255, 0.9);
    font-size: 6rem;
    line-height: 6rem;
    letter-spacing: 0.6rem;
    top: 50%;
  }
}
#Eyecatch .eyecatchWrap .animeTypewriter {
  animation: typing 12s steps(17) 300ms infinite both, blinkTextCursor 1000ms steps(17) infinite normal;
  height: 3.5rem;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
}
@media (min-width: 990px) {
  #Eyecatch .eyecatchWrap .animeTypewriter {
    animation: typingPc 12s steps(17) 300ms infinite both, blinkTextCursor 1000ms steps(17) infinite normal;
    height: 6rem;
  }
}
@keyframes typing {
  /*タイプライターライクなアニメーション*/
  0% {
    width: 0;
  }
  15% {
    width: 10em;
  }
  75% {
    width: 10em;
  }
  85% {
    width: 0;
  }
}
@keyframes typingPc {
  /*タイプライターライクなアニメーション*/
  0% {
    width: 0;
  }
  15% {
    width: 10.3em;
  }
  75% {
    width: 10.3em;
  }
  85% {
    width: 0;
  }
}
@keyframes blinkTextCursor {
  /*点滅するカーソルのアニメーション*/
  from {
    border-right-color: rgba(255, 255, 255, 0.9);
  }
  to {
    border-right-color: transparent;
  }
}
#Eyecatch .eyecatchWrap .myMessage {
  color: #fff;
  font-size: 1.3rem;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (min-width: 990px) {
  #Eyecatch .eyecatchWrap .myMessage {
    font-size: 2rem;
    top: 65%;
  }
}
#Eyecatch .eyecatchWrap .urgeScroll {
  color: #fff;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 70%;
  transform: translate(-50%, -50%);
}
@media (min-width: 990px) {
  #Eyecatch .eyecatchWrap .urgeScroll {
    top: 92%;
  }
}
#Eyecatch .eyecatchWrap .urgeScroll .mouseIcon {
  border: 0.2rem solid #fff;
  border-radius: 2rem;
  height: 5rem;
  margin: 0 auto;
  width: 2.3rem;
}
#Eyecatch .eyecatchWrap .urgeScroll .mouseIcon .wheel {
  animation: roll 1.2s infinite;
  background-color: #fff;
  width: 0.2rem;
  height: 35%;
  margin: 0 auto;
}
@keyframes roll {
  0% {
    opacity: 1;
    transform: translateY(10%);
  }
  100% {
    opacity: 0.6;
    transform: translateY(160%);
  }
}
#Eyecatch .eyecatchWrap .urgeScroll .scroll {
  color: #fff;
  display: inline-block;
  font-family: serif;
  padding-top: 1rem;
  font-size: 1rem;
}
@media (min-width: 990px) {
  #Eyecatch .eyecatchWrap .urgeScroll .scroll {
    font-size: 1.3rem;
  }
}

header {
  background-color: rgba(5, 5, 84, 0.9);
  position: fixed;
  transform: translate(0, 0);
  width: 100%;
  z-index: 1000;
}
@media (max-width: 710px) {
  header {
    height: 5.6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  header {
    height: 5.6rem;
  }
}
@media (min-width: 990px) {
  header {
    height: 6.4rem;
  }
}
header .headerContainer {
  display: flex;
  height: 100%;
  justify-content: space-between;
  max-width: 124rem;
  margin: 0 auto;
  padding: 0 2rem;
}
header .headerContainer .headerLogo a {
  color: #fff;
  font-weight: normal;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 710px) {
  header .headerContainer .headerLogo a {
    font-size: 2rem;
    line-height: 300%;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  header .headerContainer .headerLogo a {
    font-size: 2.4rem;
    line-height: 233%;
    padding-right: 1.6rem;
    width: 50%;
  }
}
@media (min-width: 990px) {
  header .headerContainer .headerLogo a {
    color: #ddd;
    font-size: 3.2rem;
    line-height: 200%;
    padding-right: 2rem;
    width: 40%;
  }
  header .headerContainer .headerLogo a:hover {
    color: #fff;
  }
}
header .headerContainer .headerRight {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 40%;
}
@media (min-width: 711px) and (max-width: 989px) {
  header .headerContainer .headerRight {
    width: 50%;
  }
}
@media (min-width: 990px) {
  header .headerContainer .headerRight {
    width: 55%;
  }
}
header .headerContainer .headerRight .ham {
  border: 0.1rem solid #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  height: 3.2rem;
  position: relative;
  width: 3.2rem;
  z-index: 1000;
}
@media (min-width: 990px) {
  header .headerContainer .headerRight .ham {
    display: none;
  }
}
header .headerContainer .headerRight .ham .hamLine {
  background-color: #fff;
  height: 0.2rem;
  position: absolute;
  transition: 0.3s;
  width: 80%;
}
header .headerContainer .headerRight .ham .hamLine1 {
  left: 10%;
  top: 15%;
}
header .headerContainer .headerRight .ham .hamLine2 {
  left: 10%;
  top: 45%;
}
header .headerContainer .headerRight .ham .hamLine3 {
  left: 10%;
  top: 75%;
}
header .headerContainer .headerRight .ham.clicked .hamLine1 {
  transform: rotate(-45deg);
  top: 45%;
}
header .headerContainer .headerRight .ham.clicked .hamLine2 {
  width: 0%;
}
header .headerContainer .headerRight .ham.clicked .hamLine3 {
  transform: rotate(45deg);
  top: 45%;
}
header .headerContainer .headerRight .menuWrapper {
  background-color: rgba(5, 5, 84, 0.9);
  position: fixed;
  padding-top: 3rem;
  right: -300rem;
  transition: 0.5s;
  transition-timing-function: ease;
  z-index: 1000;
}
@media (max-width: 710px) {
  header .headerContainer .headerRight .menuWrapper {
    height: 50rem;
    top: 5.6rem;
    width: 60vw;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  header .headerContainer .headerRight .menuWrapper {
    height: 50rem;
    top: 5.6rem;
    width: 50vw;
  }
}
@media (min-width: 990px) {
  header .headerContainer .headerRight .menuWrapper {
    display: none;
  }
}
header .headerContainer .headerRight .menuWrapper .menuList a {
  border-bottom: 1px solid #bbb;
  color: #ddd;
  display: block;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 2rem;
  padding: 3rem 0 0.5rem 1.5rem;
  text-decoration: none;
}
header .headerContainer .headerRight .menuWrapper .menuList a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
header .headerContainer .headerRight .clicked {
  right: 0px;
}
@media (max-width: 710px) {
  header .headerContainer .headerRight .pcMenu {
    display: none;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  header .headerContainer .headerRight .pcMenu {
    display: none;
  }
}
@media (min-width: 990px) {
  header .headerContainer .headerRight .pcMenu {
    display: block;
    height: 100%;
    width: 100%;
  }
}
header .headerContainer .headerRight .pcMenu ul {
  display: flex;
  justify-content: flex-end;
}
header .headerContainer .headerRight .pcMenu ul a {
  color: #ddd;
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 333%;
  margin-left: 2.4rem;
  position: relative;
  text-decoration: none;
}
header .headerContainer .headerRight .pcMenu ul a:hover {
  color: #fff;
}
header .headerContainer .headerRight .pcMenu ul a::after {
  background: #fff;
  bottom: 20px;
  content: "";
  height: 0.2rem;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s;
  width: 100%;
}
header .headerContainer .headerRight .pcMenu ul a:hover::after {
  transform: scale(1, 1);
}
header .hamShadow {
  display: none;
}
header .hamShadow.clicked {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 900;
}
@media (max-width: 710px) {
  header .hamShadow.clicked {
    display: block;
    top: 5.6rem;
  }
}
@media (min-width: 711px) and (max-width: 989px) {
  header .hamShadow.clicked {
    display: block;
    top: 5.6rem;
  }
}
@media (min-width: 990px) {
  header .hamShadow.clicked {
    display: none;
  }
}

.loadingView {
  background-color: #050554;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.loadingView .loader {
  animation: load5 1.3s infinite ease;
  border-radius: 50%;
  font-size: 1rem;
  height: 0.8rem;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  text-indent: -9999em;
  top: 50%;
  transform: translate(-50%, -50%, 0);
  width: 0.8rem;
  -webkit-animation: load5 1.3s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
}
@media (min-width: 711px) and (max-width: 989px) {
  .loadingView .loader {
    font-size: 1.7rem;
    height: 1.3rem;
    width: 1.3rem;
  }
}
@media (min-width: 990px) {
  .loadingView .loader {
    font-size: 2rem;
    height: 1.5rem;
    width: 1.5rem;
  }
}
@-webkit-keyframes load5 {
  0%,
    100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
    100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.3), 0em 2.5em 0 0em rgba(255, 255, 255, 0.4), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.6), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.3), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.4), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.6);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.6), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.3), -2.6em 0em 0 0em rgba(255, 255, 255, 0.4), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.6), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.3), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.4), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.6), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.3);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.3), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.4), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.6), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.3), 2.5em 0em 0 0em rgba(255, 255, 255, 0.4), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.6), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.3), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.4), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.6), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}

/*# sourceMappingURL=main.css.map */
