@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
}

body {
  color: #3b82c4;
  background-color: #eaf6fd;
  font-size: 1rem;
  font-family: 'Kaisei Tokumin', serif;
}

p {
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

/* h1 */
.siteTitle {
  line-height: 0;
  padding: .8rem 0;
}

.siteTitle span {
  font-size: 1.3rem;
  padding: .8rem;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
}

/* aタグのリンク範囲を親要素のサイズに広げる　へぇー */
.siteTitle a {
  display: block;
}

/* h2 */
.sectionTitle {
  display: inline-block;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: solid 1px #3b82c4;
}

/* h3 */
.contentTitle {
  font-size: 1.3rem;
  margin: .8rem 0;
}

.contentTitle3 {
  font-size: 1.3rem;
  margin: 1.1rem 0;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto 100px auto;
  padding: 0 4%;
  text-align: center;
}

#header .siteTitle {
  margin: .4rem 0 .4rem 0;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: .8rem 0;
}

#header .mainNav {
  display: flex;
}

#header li {
  margin-left: 1.8rem;
}

#header li a {
  color: #3b82c4;
}

#header li a:hover {
  opacity: .7;
}

/* メインビジュアル */
#mainVisual div {
  position: relative;
}

#mainVisual img {
  width: 100%;
  /* max-width: 1920px; */
  height: 600px;
}

#mainVisual p {
  position: absolute;
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
  font-family: 'Kaisei Tokumin', serif;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* 前に戻るボタン */
.backJWrap {
  position: relative;
}

.backJ {
  /* position: absolute; */
  position: fixed;
  bottom: 1rem;
  left: 15rem;
  z-index: 20;
  color: #fff;
  padding: 10px 20px;
  background: #3aacad;
  box-shadow: 0 0 0 5px #3aacad;
  /*#eda1a1*/
  border: 2px dashed #00a096;
  /*#e38787*/
  border-radius: 5px;
  text-decoration: none;
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.7;
}

.prev {
  display: inline-block;
  background: #0bd;
  color: #fff;
  margin: 0 1px;
}

.prev:hover {
  background: #0090aa;
}

.prev {
  border-radius: 2rem 0 0 2rem;
  padding: 1rem 1rem 1rem 2rem;
}

/* 矢印アイコン */
.prev::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

.prev::before {
  content: "\f060";
  margin-right: .5rem;
}




@media screen and (max-width: 700px) {
  #mainVisual img {
    height: calc(100vh - 60px);
  }
  
  /* 前に戻るボタン スマホ */
.backJ {
    bottom: 0;
    left: 8rem;
    font-size: 0.8rem;
    padding: 5px 10px;
    line-height: 1;
  }
.prev {
  padding: .7rem;
}

}



/* About */
#about .content {
  display: flex;
  justify-content: center;
  align-items: center;
}

#about img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin-right: 1.8rem;
}

#about .text {
  text-align: left;
  font-size: 1.05rem;
}

.myDog {
  max-width: 100%;
  text-align: center;
}

.myDog img {
  /*transform: rotate(0deg);*/
  width: 10rem;
  height: 10rem;
}

@media screen and (max-width: 700px) {
  #about .content {
    flex-direction: column;
  }

  #about img {
    margin-right: 0;
  }
}

/* Bicycle */
#bicycle ul {
  display: flex;
  justify-content: space-between;
}

#bicycle li {
  width: 32%;
}

#bicycle span {
  font-size: .8rem;
}

@media screen and (max-width: 700px) {
  #bicycle ul {
    flex-direction: column;
  }

  #bicycle li {
    width: 100%;
    margin-bottom: 1.8rem;
  }

} /*閉じ*/


  /*上へ戻るボタン*/
  #page-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    font-size: 2rem;
    line-height: 1;
    z-index: 101;
  }

  #page-top a {
    background: #3b82c4;
    text-decoration: none;
    color: #fff;
    width: 4rem;
    padding: .5rem .5rem;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
  }

  #page-top a:hover {
    text-decoration: none;
    opacity: .5;
  }

  #page-top .fa-chevron-up {
    font-size: 2rem;
    padding: .5rem;
    color: #fff;
  }

  #footer {
    text-align: center;
  }