@charset "UTF-8";
/*------------------
main css
--------------------*/
body {
  font-size: 16px;
  color: #1976D2;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/*@keyframes bgCange {
    0%{background: url(../image/bg-b.jpg) top left no-repeat;background-size: 100% 100%;}
    50%{background: url(../image/bg-p.jpg) top left no-repeat;background-size: 100% 100%;}
    100%{background: url(../image/bg-b.jpg) top left no-repeat;background-size: 100% 100%;}
}グラデを使うとfirefoxでカクカクする*/
@keyframes bgCange {
  0% {
    background: #4BB1EF;
  }
  100% {
    background: #AD92F7;
  }
}
#header {
  width: 100%;
  height: 700px;
  position: relative;
  /* background: url(../image/bg-b.jpg) top left repeat-y;*/
  /*background: url(../image/bg-b.jpg) top left no-repeat;
  background-size: 100% 100%;*/
  background: #4BB1EF;
  animation: bgCange 6s linear infinite alternate;
}
#header section {
  width: 1000px;
  margin: 0 auto;
  padding-top: 80px;
  color: #fff;
}
#header section h1 {
  font-family: 'Lemonada', cursive;
  font-size: 48px;
  line-height: 1em;
}
#header section h1 small {
  font-size: 24px;
  display: block;
}
#header section figure {
  position: absolute;
  bottom: 0;
}

.w-text {
  font-size: 20px;
  margin-left: 20%;
  margin-top: 2em;
}

/*----- 波 -----*/
#wave {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.waves {
  position: relative;
  width: 100%;
  height: 100px;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
  bottom: 0;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}
/*----- ナビゲーション-----*/
#topNav {
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: -140px;
  z-index: 50;
}
#topNav div {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

#menu ul li {
  float: left;
}
#menu ul li a {
  display: block;
  width: 120px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  border: solid 1px #1976D2;
  margin: 10px 60px 0 0;
}
#menu ul li a:hover {
  background: #CDF7F8;
}

#clBtn {
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 42px;
  line-height: 1.1em;
  cursor: pointer;
}
#clBtn span {
  font-size: 12px;
  display: block;
  text-align: center;
  line-height: 0.8em;
}

#opBtn {
  position: absolute;
  right: calc((100% - 1000px) / 2);
  top: 10px;
  font-size: 42px;
  line-height: 1.1em;
  cursor: pointer;
}
#opBtn span {
  font-size: 12px;
  display: block;
  text-align: center;
  line-height: 0.8em;
}

/*----- メインコンテンツ -----*/
#main {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding-top: 30px;
}

.pageTitle {
  font-family: 'Lemonada', cursive;
  font-size: 38px;
  color: #7ABAF2;
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
}
.pageTitle img {
  vertical-align: bottom;
}
.pageTitle span {
  display: block;
  width: 160px;
  margin: 0 auto;
  height: 5px;
  background: linear-gradient(to right, #86CEF8 0%, #D2ECFA 78%);
}
.pageTitle small {
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 0.8;
}

.intro, .floatBox {
  width: 800px;
  margin: 50px auto;
}

.infoBox {
  width: 800px;
  padding: 30px 20px;
  margin: 50px auto;
  border: solid 1px #1976D2;
  border-radius: 12px;
}
.infoBox h3 {
  font-family: 'Lemonada', cursive;
  font-size: 24px;
  color: #7ABAF2;
  text-align: center;
  margin-bottom: 0.8em;
}
.infoBox a {
  display: block;
  width: 90px;
  margin: 0 auto;
}
.infoBox a:hover {
  animation: bounce-top 1s 1;
}

@keyframes bounce-top {
  50% {
    transform: rotate(10deg);
    animation-timing-function: ease-in;
  }
  100% {
    transform: rotate(0deg);
    animation-timing-function: ease-out;
  }
}
#menuContents, #photoflickr {
  margin-top: 80px;
}
#menuContents div, #photoflickr div {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

.pageBox {
  width: 30%;
  height: 430px;
  border: solid 1px #1976D2;
  position: relative;
  overflow: hidden;
}
.pageBox img {
  transition: 0.5s;
}
.pageBox img:hover {
  transform: scale(1.05);
}
.pageBox h3 {
  font-size: 24px;
  margin: 1em 0;
  text-align: center;
  font-family: 'Lemonada', cursive;
  color: #7ABAF2;
  line-height: 1.2;
}
.pageBox p {
  margin: 0 20px;
}

.toArrow {
  display: block;
  width: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background: #1976D2;
  position: absolute;
  bottom: -40px;
  left: calc((100% - 40px) /2);
}

#photoflickr div {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flickrBox {
  width: 235px;
  height: 450px;
  margin-bottom: 20px;
  border: solid 1px #1976D2;
  position: relative;
  overflow: hidden;
}
.flickrBox img {
  transition: 0.5s;
}
.flickrBox img:hover {
  transform: scale(1.05);
}
.flickrBox h3 {
  font-size: 17px;
  margin: 1em 10px 0.6em 10px;
  text-align: center;
  font-family: 'Lemonada', cursive;
  line-height: 1.2;
}
.flickrBox h3 i {
  padding-right: 6px;
}
.flickrBox .ht {
  font-size: 14px;
  color: #7ABAF2;
  margin: 0 10px;
}
.flickrBox .frText {
  margin: 0 10px;
}

#topColumn {
  margin-top: 60px;
}

.floatBox img {
  float: left;
  padding: 0 1em 1em 0;
}
.floatBox p {
  float: left;
}

/*----- コード表示 -----*/
#codeBtn {
  width: 160px;
  line-height: 40px;
  background: #7ABAF2;
  text-align: center;
  color: #fff;
  margin: 30px auto 60px auto;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: 0.5s;
}
#codeBtn:hover {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
}
#codeBtn i {
  padding-left: 10px;
}

#codeClose {
  font-size: 36px;
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
}

#codeVue {
  width: 900px;
  margin: 0 auto;
  padding: 30px 0;
  background: #fff;
  color: #707070;
  border: solid 1px #ccc;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  top: -200px;
  display: none;
}
#codeVue h3 {
  font-size: 24px;
  text-align: center;
  margin: 10px 0 20px 0;
}
#codeVue h3 i {
  padding-right: 8px;
}
#codeVue p {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
#codeVue div pre {
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  overflow: auto;
}

.prettyprint ol.linenums > li {
  list-style-type: decimal;
  list-style-position: inside;
}

/*------------------
下層ページ
--------------------*/
#pageHeader {
  width: 100%;
  height: 320px;
  position: relative;
  background: linear-gradient(to right, #2fa2e6 0%, #9cdcfd 78%);
}
#pageHeader section {
  width: 1000px;
  margin: 0 auto;
  padding-top: 80px;
}
#pageHeader section h1 {
  font-family: 'Lemonada', cursive;
  font-size: 48px;
  line-height: 1em;
}
#pageHeader section h1 small {
  font-size: 24px;
  display: block;
}
#pageHeader section h1 a {
  color: #fff;
}
#pageHeader section figure {
  position: absolute;
  top: 50px;
  left: calc((100% - 340px) / 2);
}

/*----- ギャラリーBOX-----*/
#thumBox {
  margin: 70px 0;
  display: flex;
  flex-wrap: wrap;
}
#thumBox li {
  width: 23.5%;
  margin-bottom: 20px;
  border: solid 1px #1976D2;
}

.thumb {
  position: relative;
  border-bottom: solid 1px #1976D2;
  cursor: pointer;
}
.thumb .num {
  position: absolute;
  top: 0;
  left: 0;
  background: #1976D2;
  width: 60px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}
.thumb .enlarge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  line-height: 30px;
  background: #1976D2;
  text-align: center;
  color: #fff;
}

.tool {
  margin: 10px;
  display: flex;
}
.tool dt {
  background: #7ABAF2;
  font-size: 12px;
  height: 18px;
  width: 40px;
  text-align: center;
  border-radius: 6px;
  color: #fff;
}
.tool dd {
  margin-left: 6px;
}

#bigImg {
  display: none;
  width: 100%;
  height: 1500px;
  background: #fff;
  position: absolute;
  z-index: 51;
  top: 0;
  left: 0;
}
#bigImg div {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 51;
}
#bigImg div figure img {
  max-height: 1500px;
  position: absolute;
}

#numb {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  line-height: 40px;
  background: #1976D2;
  color: #fff;
  text-align: center;
}

#prev {
  position: absolute;
  top: 400px;
  left: -54px;
  cursor: pointer;
}

#next {
  position: absolute;
  top: 400px;
  right: -54px;
  cursor: pointer;
}

#imgClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border: solid 1px #1976D2;
  text-align: center;
  cursor: pointer;
}
#imgClose span {
  display: block;
  font-size: 12px;
}
#imgClose i {
  font-size: 30px;
}

/*------------------
footer
--------------------*/
#topfooter {
  width: 100%;
  height: 320px;
  margin-top: 70px;
  background: #2fa2e6;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2fa2e6 0%, #85d4fc 100%);
  background: linear-gradient(#2fa2e6 0%, #85d4fc 100%);
}
#topfooter div {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

.footerCut {
  position: absolute;
  right: 0;
  top: -140px;
}

.footerBuble {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 25px;
}

#snsIcon {
  font-size: 28px;
  text-align: center;
}
#snsIcon a {
  padding-right: 10px;
  color: #fff;
}
#snsIcon p {
  font-size: 14px;
  color: #fff;
}

#copy {
  text-align: center;
  font-size: 12px;
  margin: 5px 0;
}

/*----- to-top-----*/
#page_top {
  width: 40px;
  padding: 3px 0;
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 20;
  opacity: 0;
  transition: 0.5s;
}
#page_top:hover {
  opacity: 0.6;
}

/*----- ローダー-----*/
#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  z-index: 100;
}
#loader i {
  font-size: 42px;
  color: #7ABAF2;
  position: absolute;
  top: calc(50% - 21px);
  left: calc(50% - 21px);
  animation: loader 2s linear infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*----- 共通 -----*/
a {
  color: #1976D2;
}

.mb10 {
  margin-bottom: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.center {
  text-align: center;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

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