/*
Theme Name: Travel blog
*/
.more {
  display: block;
  margin: 10px auto;
  padding: 10px 0;
  position: relative;
}

.more a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 4px;
  width: 90%;
  height: 1px;
  background: #333333;
}

.more a:hover {
  color: #a3c9ce;
}

.more a:hover::after {
  opacity: 0;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-transition: all .3s;
  transition: all .3s;
}

body {
  font-family: 'Noto Sans', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.6rem;
}

.wrapper {
  padding: 0 3%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.breadcrumb {
  text-align: right;
}

header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 9;
}

.header_logo {
  height: 70px;
  border-bottom: 1px solid #333333;
  position: relative;
}

.header_logo .logo {
  width: 145px;
}

.header_logo .logo img {
  display: inline-block;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .header_logo {
    border-bottom: none;
  }
}

.openbtn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 11;
}

.openbtn span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #333333;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

@media (min-width: 768px) {
  .openbtn {
    display: none;
  }
}

.openbtn.active {
  position: fixed;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background: #fff;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background: #fff;
}

#burger_menu {
  width: 100%;
  height: 100vh;
  background: #333333;
  position: fixed;
  top: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: none;
}

#burger_menu #burger_nav ul {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#burger_menu #burger_nav ul li {
  padding: 15px 0;
  text-align: center;
}

#burger_menu #burger_nav ul li a {
  color: #fff;
}

#burger_menu #burger_nav ul li a:hover {
  color: #a3c9ce;
}

#burger_menu.panelactive {
  display: block;
}

.pc_menuline {
  display: none;
}

@media (min-width: 768px) {
  .pc_menuline {
    display: block;
    height: 40px;
    background: #333333;
  }
  .pc_menuline .pc_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pc_menuline .pc_menu ul li {
    line-height: 40px;
    padding-right: 60px;
  }
  .pc_menuline .pc_menu ul li a {
    color: #fff;
  }
  .pc_menuline .pc_menu ul li a:hover {
    color: #a3c9ce;
  }
}

#pickup {
  padding-top: 100px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  #pickup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 150px;
  }
}

.pick .pickup_box {
  padding: 13px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pick p {
  line-height: 1.65rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .pick {
    width: 32%;
  }
}

#container {
  padding-top: 150px;
  padding-bottom: 120px;
}

@media (min-width: 768px) {
  #container {
    display: -ms-grid;
    display: grid;
  }
}

.main {
  padding-bottom: 70px;
}

.main h2 {
  font-size: 24px;
  line-height: 1.9rem;
  padding: 10px 4px;
}

.main .times {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  padding: 10px 4px;
}

.main .times .time {
  margin-right: 30px;
}

.main img {
  height: auto;
}

.main .text_box {
  padding: 30px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main p {
  line-height: 1.65rem;
}

aside .author {
  padding: 10px 0 30px;
}

aside .author img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

aside .author h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 30px 0 25px;
}

aside #archive h3 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 30px;
}

aside #archive .archive_ul li {
  border-bottom: 1px solid #333333;
}

aside #archive .archive_ul li:first-of-type {
  border-top: 1px solid #333333;
}

aside #archive .archive_ul li a {
  display: block;
  padding: 23px 0 23px 16px;
}

aside #archive .archive_ul li a:hover {
  color: #a3c9ce;
}

.search_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 20px 0 50px 0;
  border: 1px solid #333333;
}

.search_container input[type="text"] {
  width: 100%;
  display: block;
  padding: 8px;
}

.search_container .search-btn {
  display: block;
  padding: 5px;
  cursor: pointer;
}

@media (min-width: 768px) {
  #container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #container main {
    width: 63%;
  }
  #container aside {
    width: 33%;
  }
}

footer {
  background: #F7F7F7;
}

.footer_container {
  padding-bottom: 50px;
}

.footer_container h3 {
  font-size: 18px;
  font-weight: 600;
  padding: 55px 0 35px;
}

.about .about_text {
  padding: 15px 0;
}

.about_work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 0;
}

.about_work .triangle {
  width: 0;
  height: 0;
  font-size: 6px;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  border-bottom: 2em solid #333333;
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding-top: 12px;
  margin-left: 10px;
}

.about_work p {
  padding-left: 10px;
}

.about_work p a:hover {
  color: #a3c9ce;
}

.footer_ul li {
  border-bottom: 1px solid #333333;
}

.footer_ul li:first-of-type {
  border-top: 1px solid #333333;
}

.footer_ul li a {
  display: block;
  padding: 23px 0 23px 16px;
}

.footer_ul li a:hover {
  color: #a3c9ce;
}

.sns_container {
  padding-bottom: 40px;
}

h5 {
  text-align: center;
  font-size: 12px;
  padding: 12px 0;
}

@media (min-width: 768px) {
  .footer_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer_container .about {
    width: 31.5%;
  }
  .footer_container .footer_menu {
    width: 31.5%;
  }
  .footer_container .sns_container {
    width: 31.5%;
  }
}

.postlinks {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.postlink .fas {
  padding: 0 10px;
}

.page_title .pages {
  font-size: 30px;
  padding: 20px 0;
  margin-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #333333;
}

.form {
  display: block;
  max-width: 600px;
  margin: 100px auto;
}

.form label {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: block;
}

.form .form_content {
  border: 1px solid #333333;
  border-radius: 1px;
  padding: 10px;
  font-size: 1;
  margin-bottom: 10px;
}

.form .text_input {
  width: 100%;
  max-width: 600px;
}

.form .textarea {
  width: 100%;
  max-width: 600px;
  height: 8rem;
}

input[type="submit"] {
  cursor: pointer;
  line-height: 1;
}

.button {
  margin-top: 10px;
  height: 50px;
  width: 80px;
  background: #f2f2f2;
  border-radius: 5px;
  text-align: center;
}

.button:hover {
  background: #858383;
}

.search_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 20px 0 50px 0;
  border: 1px solid #333333;
}

.search_container input[type="text"] {
  width: 100%;
  display: block;
}

.search_container .search-btn {
  display: block;
}

.search_container .fas {
  color: #727171;
}
/*# sourceMappingURL=style.css.map */