@charset "UTF-8";
/*
Theme Name: MY SITE
Author: Hiromi Ogawa
Description: HIROMI OGAWA PHOTOLOGのWordPressテーマ
Version: 1.01
License: GNU General Public License v2 or later
Lincense URI: http://www.gnu.org/license/gp1-2.0.html
*/
body {
  margin: 0;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #333;
}

body a {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body a:hover {
  opacity: 0.5;
}

.wrapper {
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

footer {
  background: #333;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

#cover {
  background: #000;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}

#menu {
  z-index: 2;
  position: fixed;
  top: 0;
  right: -180px;
  background: #fff;
  padding: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 180px;
  height: 100%;
  -webkit-transition: .4s;
  transition: .4s;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

#menu ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#menu ul > li {
  padding: 40px 0 0 10px;
}

#menu ul > li:last-child {
  padding: 40px 0 40px 10px;
}

#show, #hide {
  cursor: pointer;
}

#show {
  color: rgba(147, 226, 240, 0.5);
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 1;
}

#hide {
  float: right;
}

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

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

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

#menu::-webkit-scrollbar {
  width: 10px;
}

#menu::-webkit-scrollbar-track {
  background: #fff;
}

#menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
}

@media (min-width: 900px) {
  #menu {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    padding: 0;
    color: #fff;
    width: auto;
    height: auto;
    overflow-y: hidden;
  }
  #menu a {
    color: #fff;
  }
  #menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #menu ul > li {
    padding: 50px 12px 0 12px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  #menu ul > li:last-child {
    padding: 50px 30px 0 12px;
  }
  #show, #hide, #cover {
    display: none;
  }
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.frontpage .slide-wrapper {
  overflow: hidden;
  position: relative;
  border-bottom-left-radius: 80% 8%;
  border-bottom-right-radius: 80% 8%;
}

.frontpage header {
  width: 100vw;
  height: 93vh;
  background-position: center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  position: relative;
  padding-top: 40px;
}

.frontpage header h1 {
  margin: 0;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.frontpage #down {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  margin: auto;
  color: #fff;
}

.frontpage main {
  margin: 0 20px;
}

.frontpage main h1 {
  text-align: center;
  margin: 0;
  padding: 70px 0 70px;
  font-size: 40px;
  font-weight: normal;
  color: #333;
}

.frontpage main section {
  margin-bottom: 90px;
}

.frontpage main img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.frontpage main time {
  margin-bottom: 10px;
}

.frontpage main h2 {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.frontpage main p {
  margin: 0;
  padding: 10px 0 0 10px;
}

@media (min-width: 900px) {
  .frontpage header {
    height: 95vh;
    padding: 0;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .frontpage header h1 {
    padding-left: 20px;
    font-size: 90px;
  }
  .frontpage #down {
    text-align: center;
  }
  .frontpage main {
    width: 900px;
    margin: 0 auto;
  }
  .frontpage main > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .frontpage main > .container > section {
    width: 30%;
  }
  .frontpage main > .container::after {
    content: "";
    width: 30%;
  }
}

.photopage header {
  width: 100vw;
  height: 170px;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.photopage header.birdheader {
  background: url(images/header/bird.jpg) center center/cover no-repeat;
}

.photopage header.catheader {
  background: url(images/header/cat.jpg) center center/cover no-repeat;
}

.photopage header.lcheader {
  background: url(images/header/landscape.jpg) center center/cover no-repeat;
}

.photopage header.otherheader {
  background: url(images/header/other.jpg) center center/cover no-repeat;
}

.photopage header.blogheader {
  background: url(images/header/blog.jpg) center center/cover no-repeat;
}

.photopage header h1 {
  margin: 0;
  padding-left: 10px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.photopage .loading-hide {
  display: none;
}

.photopage #loading {
  background: black;
  color: #ccc;
  -webkit-transition: all 1s;
  transition: all 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.photopage #loading p {
  padding: 0;
  margin-top: 15px;
}

.photopage .loaded {
  opacity: 0;
  visibility: hidden;
}

.photopage .spinner {
  width: 40px;
  height: 40px;
  border: 8px solid #ccc;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin .8s infinite linear;
          animation: spin .8s infinite linear;
}

@-webkit-keyframes spin {
  /* 0% { */
  from {
    -webkit-transform: none;
            transform: none;
  }
  /* 100% { */
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  /* 0% { */
  from {
    -webkit-transform: none;
            transform: none;
  }
  /* 100% { */
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.photopage main {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.photopage main h1 {
  margin: 0;
  padding: 70px 0 70px;
  font-size: 40px;
  font-weight: normal;
  color: #333;
}

.photopage main h2 {
  margin: 0;
  padding: 0 0 20px 0;
  font-weight: normal;
}

.photopage main p {
  margin: 0;
  padding: 10px 0 0 10px;
}

.photopage main #lightgallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(150px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px;
}

.photopage main #lightgallery figure {
  margin: 0;
}

.photopage main #lightgallery img {
  width: 100%;
  vertical-align: bottom;
}

@media (min-width: 900px) {
  .photopage header {
    padding: 0;
    height: 295px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .photopage header h1 {
    padding-left: 0;
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 40px;
  }
  .photopage main h1 {
    padding: 125px 0 125px;
  }
  .photopage main #lightgallery {
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.blogpage header {
  width: 100vw;
  height: 170px;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.blogpage header.birdheader {
  background: url(images/header/bird.jpg) center center/cover no-repeat;
}

.blogpage header.catheader {
  background: url(images/header/cat.jpg) center center/cover no-repeat;
}

.blogpage header.lcheader {
  background: url(images/header/landscape.jpg) center center/cover no-repeat;
}

.blogpage header.otherheader {
  background: url(images/header/other.jpg) center center/cover no-repeat;
}

.blogpage header.blogheader {
  background: url(images/header/blog.jpg) center center/cover no-repeat;
}

.blogpage header h1 {
  margin: 0;
  padding-left: 10px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.blogpage h1.maintitle {
  margin: 0;
  padding: 70px 0 70px;
  font-size: 40px;
  font-weight: normal;
  color: #333;
  text-align: center;
}

.blogpage main {
  margin: 0 20px;
  text-align: center;
}

.blogpage main h2 {
  margin: 0 0 4px;
  padding: 0;
  font-weight: bold;
}

.blogpage main h3 {
  margin: 0;
  padding: 60px 0 10px 0;
  font-weight: normal;
}

.blogpage main img {
  width: 100%;
  height: auto;
}

.blogpage main p {
  margin: 0 0 12px;
  padding: 0;
}

.blogpage main time {
  font-weight: bold;
}

.blogpage main .cat-links a {
  padding: 7px 10px;
  color: #fff;
  background-color: #333;
  border-radius: 5px;
}

.blogpage article {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #333;
}

.blogpage .b_img {
  margin-bottom: 15px;
}

.blogpage .entry {
  text-align: left;
}

.blogpage aside {
  margin: 30px 20px 0;
  margin-bottom: 90px;
}

.blogpage aside h2 {
  margin: 0 0 30px;
}

.blogpage aside a {
  display: block;
  padding: 10px 0 10px 10px;
}

.blogpage aside a::before {
  content: '> ';
}

.blogpage aside a:hover {
  opacity: 1;
  background-color: #333;
  color: #fff;
}

.blogpage aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blogpage aside ul > li {
  border-bottom: 1px dotted #333;
}

.blogpage aside ul > li:first-child {
  border-top: 1px dotted #333;
}

@media (min-width: 900px) {
  .blogpage header {
    padding: 0;
    height: 295px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .blogpage header h1 {
    padding-left: 0;
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 40px;
  }
  .blogpage .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 900px;
    margin: 0 auto 140px;
  }
  .blogpage h1.maintitle {
    padding: 125px 0 125px;
  }
  .blogpage main {
    width: 680px;
    margin: 0;
  }
  .blogpage main article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .blogpage main article > .b_img {
    width: 250px;
    margin: 0;
  }
  .blogpage main article > .entry {
    width: 410px;
    text-align: left;
  }
  .blogpage aside {
    width: 180px;
    margin: 0;
  }
}

.singlepage header {
  width: 100vw;
  height: 170px;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.singlepage header.birdheader {
  background: url(images/header/bird.jpg) center center/cover no-repeat;
}

.singlepage header.catheader {
  background: url(images/header/cat.jpg) center center/cover no-repeat;
}

.singlepage header.lcheader {
  background: url(images/header/landscape.jpg) center center/cover no-repeat;
}

.singlepage header.otherheader {
  background: url(images/header/other.jpg) center center/cover no-repeat;
}

.singlepage header.blogheader {
  background: url(images/header/blog.jpg) center center/cover no-repeat;
}

.singlepage header h1 {
  margin: 0;
  padding-left: 10px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.singlepage main {
  margin: 45px 20px;
}

.singlepage main h2 {
  margin: 0 0 45px;
  padding: 0 0 20px;
  font-weight: bold;
  border-bottom: 1px dotted #333;
}

.singlepage main figure {
  margin: 0 0 30px;
}

.singlepage main .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  margin: 0 0 30px;
}

.singlepage main .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.singlepage main img {
  width: 100%;
  height: auto;
}

.singlepage main p {
  margin: 0 0 30px;
  padding: 0;
}

.singlepage main time {
  display: block;
  margin-bottom: 35px;
}

.singlepage main .b-pic {
  margin: 0 0 30px;
}

.singlepage main .cat-links a {
  padding: 7px 10px;
  color: #fff;
  background-color: #333;
  border-radius: 5px;
}

.singlepage main article a {
  border-bottom: 1px dotted #333;
}

.singlepage aside {
  margin: 30px 20px 0;
  margin-bottom: 90px;
}

.singlepage aside h2 {
  margin: 0 0 30px;
}

.singlepage aside a {
  display: block;
  padding: 10px 0 10px 10px;
}

.singlepage aside a::before {
  content: '> ';
}

.singlepage aside a:hover {
  opacity: 1;
  background-color: #333;
  color: #fff;
}

.singlepage aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.singlepage aside ul > li {
  border-bottom: 1px dotted #333;
}

.singlepage aside ul > li:first-child {
  border-top: 1px dotted #333;
}

@media (min-width: 900px) {
  .singlepage header {
    padding: 0;
    height: 295px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .singlepage header h1 {
    padding-left: 0;
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 40px;
  }
  .singlepage .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 900px;
    margin: 125px auto 140px;
  }
  .singlepage main {
    width: 680px;
    margin: 0;
  }
  .singlepage aside {
    width: 180px;
    margin: 0;
  }
}

.profilepage header {
  width: 100vw;
  height: 170px;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.profilepage header.birdheader {
  background: url(images/header/bird.jpg) center center/cover no-repeat;
}

.profilepage header.catheader {
  background: url(images/header/cat.jpg) center center/cover no-repeat;
}

.profilepage header.lcheader {
  background: url(images/header/landscape.jpg) center center/cover no-repeat;
}

.profilepage header.otherheader {
  background: url(images/header/other.jpg) center center/cover no-repeat;
}

.profilepage header.blogheader {
  background: url(images/header/blog.jpg) center center/cover no-repeat;
}

.profilepage header h1 {
  margin: 0;
  padding-left: 10px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.profilepage main {
  margin: 0 20px;
  margin-bottom: 90px;
  text-align: center;
}

.profilepage main h1 {
  margin: 0;
  padding: 70px 0 70px;
  font-size: 40px;
  font-weight: normal;
  color: #333;
}

.profilepage main h2 {
  margin: 0;
  padding: 20px 0;
  font-weight: normal;
}

.profilepage main h3 {
  margin: 0;
  padding: 60px 0 10px 0;
  font-weight: normal;
}

.profilepage main figure {
  margin: 0;
}

.profilepage main img {
  width: 100%;
  height: auto;
}

.profilepage main p {
  margin: 0;
  padding: 0;
}

@media (min-width: 900px) {
  .profilepage header {
    padding: 0;
    height: 295px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .profilepage header h1 {
    padding-left: 0;
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 40px;
  }
  .profilepage main {
    width: 900px;
    margin: 0 auto 140px;
  }
  .profilepage main h1 {
    padding: 125px 0 125px;
  }
  .profilepage main section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .profilepage main section > figure {
    width: 450px;
  }
  .profilepage main section > .profile {
    width: 400px;
    text-align: left;
  }
  .profilepage main section > .profile h2 {
    padding: 0 0 20px 0;
  }
}

.contactpage header {
  width: 100vw;
  height: 170px;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.contactpage header.birdheader {
  background: url(images/header/bird.jpg) center center/cover no-repeat;
}

.contactpage header.catheader {
  background: url(images/header/cat.jpg) center center/cover no-repeat;
}

.contactpage header.lcheader {
  background: url(images/header/landscape.jpg) center center/cover no-repeat;
}

.contactpage header.otherheader {
  background: url(images/header/other.jpg) center center/cover no-repeat;
}

.contactpage header.blogheader {
  background: url(images/header/blog.jpg) center center/cover no-repeat;
}

.contactpage header h1 {
  margin: 0;
  padding-left: 10px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.contactpage .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 90vh;
}

.contactpage main {
  margin: 0 20px;
  margin-bottom: 90px;
}

.contactpage main h1 {
  margin: 0;
  padding: 70px 0 70px;
  font-size: 40px;
  font-weight: normal;
  color: #333;
  text-align: center;
}

.contactpage main h2 {
  margin: 0;
  padding: 20px 0;
  font-weight: bold;
}

.contactpage main p {
  margin-bottom: 30px;
  padding: 0;
}

.contactpage main a {
  border-bottom: 1px dotted #333;
  padding-bottom: 5px;
}

.contactpage main a::before {
  content: '> ';
}

.contactpage main input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px 16px;
  border: 2px solid rgba(34, 34, 34, 0.3);
}

.contactpage main textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100px;
  padding: 10px 16px;
  border: 2px solid rgba(34, 34, 34, 0.3);
}

.contactpage main .c-button {
  height: 50px;
  border: none;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.contactpage main .c-button:hover {
  opacity: 0.5;
}

.contactpage main input, .contactpage main textarea, .contactpage main button {
  font-family: inherit;
  font-size: inherit;
}

@media (min-width: 900px) {
  .contactpage header {
    padding: 0;
    height: 295px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .contactpage header h1 {
    padding-left: 0;
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 40px;
  }
  .contactpage main {
    width: 900px;
    margin: 0 auto 140px;
  }
  .contactpage main h1 {
    padding: 125px 0 125px;
  }
  .contactpage main .button-wrap {
    width: 400px;
    margin: 0 auto;
  }
}

.errorpage header {
  width: 100vw;
  height: 170px;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.errorpage header.birdheader {
  background: url(images/header/bird.jpg) center center/cover no-repeat;
}

.errorpage header.catheader {
  background: url(images/header/cat.jpg) center center/cover no-repeat;
}

.errorpage header.lcheader {
  background: url(images/header/landscape.jpg) center center/cover no-repeat;
}

.errorpage header.otherheader {
  background: url(images/header/other.jpg) center center/cover no-repeat;
}

.errorpage header.blogheader {
  background: url(images/header/blog.jpg) center center/cover no-repeat;
}

.errorpage header h1 {
  margin: 0;
  padding-left: 10px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.errorpage .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 90vh;
}

.errorpage main {
  margin: 0 20px;
  margin-bottom: 90px;
}

.errorpage main h1 {
  margin: 0;
  padding: 70px 0 70px;
  font-size: 40px;
  font-weight: normal;
  color: #333;
  text-align: center;
}

.errorpage main p {
  margin-bottom: 30px;
  padding: 0;
}

.errorpage main a {
  border-bottom: 1px dotted #333;
  padding-bottom: 5px;
}

.errorpage main a::before {
  content: '> ';
}

@media (min-width: 900px) {
  .errorpage header {
    padding: 0;
    height: 295px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .errorpage header h1 {
    padding-left: 0;
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 40px;
  }
  .errorpage main {
    width: 900px;
    margin: 0 auto 140px;
  }
  .errorpage main h1 {
    padding: 125px 0 125px;
  }
}

.toriviapage header {
  width: 100vw;
  height: 170px;
  background-position: center center;
  background-size: cover;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.toriviapage header.birdheader {
  background: url(images/header/bird.jpg) center center/cover no-repeat;
}

.toriviapage header.catheader {
  background: url(images/header/cat.jpg) center center/cover no-repeat;
}

.toriviapage header.lcheader {
  background: url(images/header/landscape.jpg) center center/cover no-repeat;
}

.toriviapage header.otherheader {
  background: url(images/header/other.jpg) center center/cover no-repeat;
}

.toriviapage header.blogheader {
  background: url(images/header/blog.jpg) center center/cover no-repeat;
}

.toriviapage header h1 {
  margin: 0;
  padding-left: 10px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.toriviapage main {
  margin: 0 20px;
  margin-bottom: 90px;
  text-align: center;
}

.toriviapage main h1 {
  margin: 0;
  padding: 70px 0 70px;
  font-size: 30px;
  font-weight: normal;
  color: #333;
}

.toriviapage main article {
  border-bottom: 1px dotted #333;
  padding-bottom: 70px;
  margin-bottom: 30px;
}

.toriviapage main article:nth-last-of-type(2) {
  margin-bottom: 0;
}

.toriviapage main h2 {
  margin: 0;
  padding: 20px 0;
  font-weight: bold;
}

.toriviapage main h3 {
  text-align: left;
  margin: 0;
  padding: 30px 0 10px 0;
  font-weight: bold;
}

.toriviapage main figure {
  margin: 0;
}

.toriviapage main img {
  width: 100%;
  height: auto;
}

.toriviapage main p {
  text-align: left;
  margin: 0;
  padding: 0;
}

.toriviapage main audio {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.toriviapage main article.about {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.toriviapage main article.about h2 {
  padding: 70px 0;
  font-weight: normal;
  font-size: 20px;
}

.toriviapage main article.about p {
  margin: 0 0 30px;
  padding: 0;
}

.toriviapage main article.about p:last-of-type {
  text-align: right;
  margin: 0 15px 70px 0;
}

.toriviapage main article.about figure {
  margin: 0 0 30px;
}

.toriviapage main article.about figure:last-of-type {
  margin: 0;
}

@media (min-width: 900px) {
  .toriviapage header {
    padding: 0;
    height: 295px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .toriviapage header h1 {
    padding-left: 0;
    position: absolute;
    top: 45px;
    left: 20px;
    font-size: 40px;
  }
  .toriviapage main {
    width: 900px;
    margin: 0 auto 140px;
  }
  .toriviapage main h1 {
    font-size: 40px;
    padding: 125px 0 125px;
  }
  .toriviapage main article.about p:last-of-type {
    text-align: right;
    margin: 0 20px 70px 0;
    font-size: 20px;
  }
}
/*# sourceMappingURL=style.css.map */