@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/*===========================================================
#  メディアクエリ
============================================================*/
/*===========================================================
#  colors
============================================================*/
/*===========================================================
# font
============================================================*/
/*===========================================================
# common - 全体に共通するスタイル
============================================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  font-size: 16px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6875;
}

a,
a:hover,
a:focus,
button,
button:focus {
  text-decoration: none !important;
  outline: none !important;
}

a:hover {
  color: inherit;
}

ul {
  margin-bottom: 0;
}

button,
button:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

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

.inner {
  max-width: 1200px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .inner.arch_article, .inner.single_article {
    padding: 0;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.util-title {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #333333;
  margin-bottom: 80px;
  padding-left: 10px;
  border-left: 20px solid skyblue;
  position: relative;
}

.util-title::after {
  position: absolute;
  content: "";
  background: #f7f6f5;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .util-title {
    font-size: 20px;
    margin-bottom: 50px;
  }
}

.util-button {
  text-align: center;
}

.util-button a {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  background: #b9d08b;
  color: #dfe1de;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
          box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
  padding: 16px 50px;
}

@media screen and (max-width: 767px) {
  .util-button a {
    font-size: 16px;
    padding: 16px 32px;
  }
}

.util-link {
  width: 40%;
  margin-top: 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .1em;
  color: #dfe1de;
  background: #f07b87;
  display: inline-block;
  padding: 14px 20px;
  -webkit-transition: background-color .4s, color .4s, opacity .4s;
  transition: background-color .4s, color .4s, opacity .4s;
}

@media screen and (max-width: 767px) {
  .util-link {
    width: 80%;
    margin: 0 auto;
    padding: 10px 20px;
  }
}

@media screen and (min-width: 768px) {
  .util-link:hover {
    background: #ed6c00;
    color: #fff;
  }
}

/*===========================================================
# header
============================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 10;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header.home {
  color: transparent;
  background: transparent;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.header.home.add-scrolled {
  background: rgba(219, 217, 214, 0.6);
  color: #333333;
}

.header.home.add-scrolled .header-logo {
  opacity: 1;
}

.drawer--right .header .drawer-hamburger {
  right: 3px;
}

.header .drawer-hamburger-icon {
  background-color: #ed6c00;
}

.drawer-open .header .drawer-hamburger-icon {
  background-color: transparent;
}

.header .drawer-hamburger-icon::before, .header .drawer-hamburger-icon::after {
  background-color: #ed6c00;
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  width: 198px;
}

.header-logo.home {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

@media screen and (max-width: 767px) {
  .header-logo {
    margin: 0 auto;
    height: 60px;
  }
  .header-logo img {
    height: 40px;
    width: auto;
    margin: 10px;
  }
}

.header-nav {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .header-nav {
    top: 60px;
    padding: 24px 0;
    background-color: #ed6c00;
  }
}

@media screen and (min-width: 768px) {
  .header-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-nav-list li:not(:first-child) {
  margin-left: 32px;
}

.header-nav-list li > a {
  display: block;
  height: 70px;
  line-height: 70px;
  font-weight: 700;
  font-size: 18px;
  color: #333333;
}

@media screen and (min-width: 768px) {
  .header-nav-list li > a {
    -webkit-transition: color .4s;
    transition: color .4s;
  }
  .header-nav-list li > a:hover {
    color: #ed6c00;
  }
}

@media screen and (max-width: 767px) {
  .header-nav-list li > a {
    color: #fff;
    text-align: right;
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
  }
}

/* top
------------------------------------------------------------*/
.swiper {
  width: 100%;
  height: 90vh;
}

.slider-top-fade {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(100%-200px);
          flex: 1 1 calc(100%-200px);
}

.slide-container {
  width: 100%;
}

.swiper-container {
  width: 100%;
  height: 100vh;
  background-color: #fff;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-slide a {
  width: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* report
------------------------------------------------------------*/
.report-title {
  font-size: 80px;
  position: relative;
  display: inline-block;
  color: rgba(255, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .report-title {
    font-size: 44px;
    display: block;
    text-align: center;
    margin-bottom: 40px;
  }
}

.report-title::after {
  content: "最近の投稿";
  position: absolute;
  font-size: 28px;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #333;
}

@media screen and (max-width: 767px) {
  .report-title::after {
    font-size: 18px;
  }
}

.report-footer {
  text-align: right;
  color: #333333;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .report-footer {
    text-align: center;
  }
}

.report-more-link {
  border-bottom: 2px solid #333;
  padding: 0 10px 10px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.report-more-link:hover {
  color: #ed6c00;
  border-bottom: 3px solid #ed6c00;
  padding: 0 16px 10px;
}

.report-more-link i {
  padding-left: 10px;
}

/* information
------------------------------------------------------------*/
.arch_article,
.single_article {
  margin-bottom: 80px;
  margin-top: 34px;
}

/* card
------------------------------------------------------------*/
.card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .card-content {
    width: 90%;
    margin: 0 auto;
  }
}

.card-item {
  position: relative;
}

@media screen and (max-width: 767px) {
  .card-item {
    margin-bottom: 50px;
  }
}

.card-item:nth-child(1) {
  top: 90px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .card-item:nth-child(1) {
    top: 30px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .card-item:nth-child(1) {
    top: 0;
  }
}

.card-item:nth-child(2) {
  top: 60px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .card-item:nth-child(2) {
    top: 0;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .card-item:nth-child(2) {
    top: 0;
  }
}

.card-item:nth-child(3) {
  top: 30px;
}

@media screen and (max-width: 767px) {
  .card-item:nth-child(3) {
    top: 0;
  }
}

.card-item:hover .card-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.card-item:hover .card-box {
  -webkit-box-shadow: 0 0 2px 2px rgba(206, 206, 206, 0.9);
          box-shadow: 0 0 2px 2px rgba(206, 206, 206, 0.9);
}

.card-box {
  -webkit-box-shadow: 0 0 10px 3px rgba(206, 206, 206, 0.8);
          box-shadow: 0 0 10px 3px rgba(206, 206, 206, 0.8);
  -webkit-transition: -webkit-box-shadow .4s ease;
  transition: -webkit-box-shadow .4s ease;
  transition: box-shadow .4s ease;
  transition: box-shadow .4s ease, -webkit-box-shadow .4s ease;
  border-radius: 10px;
}

.card-img-box {
  padding-top: 75%;
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16);
  border-radius: 10px 10px 0 0;
}

.card-img-box .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.card-body {
  padding: 10px 12px;
  color: #333333;
  background: #FFFEF6;
  height: 120px;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 767px) {
  .card-body {
    height: 100px;
  }
}

.card-title {
  font-size: 18px;
  margin-top: 6px;
  line-height: 1.4em;
}

@media screen and (max-width: 767px) {
  .card-title {
    font-size: 16px;
    font-weight: 700;
  }
}

.card-tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card-overview {
  font-size: 14px;
}

/* document
------------------------------------------------------------*/
.arch_document-item-wrap {
  margin-bottom: 100px;
}

.document-item,
.arch_document-item {
  position: relative;
}

.document-item:hover .document-img,
.document-item:hover .arch_document-img,
.arch_document-item:hover .document-img,
.arch_document-item:hover .arch_document-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.document-item:hover .document-button span,
.document-item:hover .arch_document-button span,
.arch_document-item:hover .document-button span,
.arch_document-item:hover .arch_document-button span {
  background: blue;
}

.document-item:hover .document-box,
.document-item:hover .arch_document-box,
.arch_document-item:hover .document-box,
.arch_document-item:hover .arch_document-box {
  -webkit-box-shadow: 0 0 2px 2px rgba(206, 206, 206, 0.9);
          box-shadow: 0 0 2px 2px rgba(206, 206, 206, 0.9);
}

.document-button,
.arch_document-button {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.document-button span,
.arch_document-button span {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  background: #b9d08b;
  color: #dfe1de;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
          box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
  padding: 16px 50px;
  -webkit-transition: background-color .4s ease, color .4s ease 0s;
  transition: background-color .4s ease, color .4s ease 0s;
}

@media screen and (max-width: 767px) {
  .document-button span,
  .arch_document-button span {
    font-size: 16px;
    padding: 16px 32px;
  }
}

.document-box,
.arch_document-box {
  -webkit-box-shadow: 0 0 10px 3px rgba(206, 206, 206, 0.8);
          box-shadow: 0 0 10px 3px rgba(206, 206, 206, 0.8);
  -webkit-transition: -webkit-box-shadow .4s ease;
  transition: -webkit-box-shadow .4s ease;
  transition: box-shadow .4s ease;
  transition: box-shadow .4s ease, -webkit-box-shadow .4s ease;
}

.document-img-box,
.arch_document-img-box {
  padding-top: 75%;
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16);
}

.document-img-box .document-img,
.document-img-box .arch_document-img,
.arch_document-img-box .document-img,
.arch_document-img-box .arch_document-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.document-body,
.arch_document-body {
  padding: 10px 12px;
  color: #333333;
  height: 240px;
}

.document-title,
.arch_document-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}

.document-tag-wrap,
.arch_document-tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.document-tag,
.arch_document-tag {
  font-size: 12px;
  display: inline;
  background: skyblue;
  color: #dfe1de;
  padding: 0px 10px;
  border-radius: 8px;
  margin-right: 6px;
}

.document-overview,
.arch_document-overview {
  font-size: 14px;
}

.document-footer,
.arch_document-footer {
  text-align: center;
}

.document-more-link i,
.arch_document-more-link i {
  margin-left: 10px;
}

.arch_document-item-wrap {
  margin-bottom: 100px;
}

.document-button,
.arch_document-button {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.document-button span,
.arch_document-button span {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  background: #b9d08b;
  color: #dfe1de;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
          box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
  padding: 16px 50px;
  -webkit-transition: background-color .4s ease, color .4s ease 0s;
  transition: background-color .4s ease, color .4s ease 0s;
}

@media screen and (max-width: 767px) {
  .document-button span,
  .arch_document-button span {
    font-size: 16px;
    padding: 16px 32px;
  }
}

.document-tag,
.arch_document-tag {
  font-size: 12px;
  display: inline;
  background: skyblue;
  color: #dfe1de;
  padding: 0px 10px;
  border-radius: 8px;
  margin-right: 6px;
}

.document-footer,
.arch_document-footer {
  text-align: center;
}

.document-more-link i,
.arch_document-more-link i {
  margin-left: 10px;
}

/*===========================================================
# article
============================================================*/
.article-item:not(:first-child) {
  margin-top: 30px;
}

.article-item:hover .article-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.article-item:hover .information-button span,
.article-item:hover .report-button span {
  background: blue;
}

.article-item:hover .article-box {
  -webkit-box-shadow: 0 0 2px 2px rgba(206, 206, 206, 0.9);
          box-shadow: 0 0 2px 2px rgba(206, 206, 206, 0.9);
}

.article-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0 0 10px 3px rgba(206, 206, 206, 0.8);
          box-shadow: 0 0 10px 3px rgba(206, 206, 206, 0.8);
  -webkit-transition: -webkit-box-shadow .4s ease;
  transition: -webkit-box-shadow .4s ease;
  transition: box-shadow .4s ease;
  transition: box-shadow .4s ease, -webkit-box-shadow .4s ease;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .article-box {
    display: block;
  }
}

.article-head {
  width: 180px;
}

@media screen and (max-width: 767px) {
  .article-head {
    width: 100%;
  }
}

.article-img-box {
  padding-top: 75%;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}

@media screen and (max-width: 767px) {
  .article-img-box {
    border-radius: 10px 10px 0 0;
  }
}

.article-img-box .article-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.article-body {
  padding: 0 12px;
  color: #333333;
  width: calc(100% - 180px);
  background: #FFFEF6;
  border-radius: 0 10px 10px 0;
}

@media screen and (max-width: 767px) {
  .article-body {
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}

.article-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 2px;
}

@media screen and (max-width: 767px) {
  .article-title {
    font-size: 16px;
  }
}

.article-overview {
  font-size: 14px;
  border-top: 1px dashed gray;
  margin-top: 6px;
  padding-top: 4px;
  margin-bottom: 0;
  line-height: 1.4;
}

.article-date {
  font-size: 12px;
  margin-top: 4px;
}

.article-meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.entry-tag-item {
  display: inline-block;
  font-size: 12px;
  background: #b9d08b;
  border-radius: 6px;
  padding: 0 8px;
  margin-left: 10px;
}

/*===========================================================
# footer
============================================================*/
.footer {
  background: #b9d08b;
  color: #333333;
  padding: 20px 0;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-menu li {
  padding: 0 10px;
}

.footer-menu li:not(:last-child) {
  border-right: 1px solid #b9d08b;
}

@media screen and (max-width: 767px) {
  .footer-menu li {
    margin-left: 0;
    width: 50%;
    text-align: center;
  }
}

.footer-menu li a {
  color: #333333;
}

@media screen and (max-width: 767px) {
  .footer-menu {
    font-size: 12px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}

/*===========================================================
# to-top
============================================================*/
#page_top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  font-size: 40px;
  color: #b9d08b;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  #page_top {
    bottom: 10px;
    right: 10px;
  }
}

/*===========================================================
#  breadcrumb
============================================================*/
.breadcrumb {
  color: #8d8d8d;
  font-size: 14px;
  margin-bottom: 14px;
  padding-top: .75rem;
  padding-bottom: .75rem;
  background-color: transparent;
  display: block;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 12px;
    padding: .75rem 15px;
  }
}

.breadcrumb a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb i {
  margin-left: 15px;
  margin-right: 15px;
}

.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 10px;
}

/*===========================================================
# pagenation
============================================================*/
.pagenation {
  margin-top: 50px;
  text-align: center;
}

.pagenation a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagenation a:hover {
  opacity: 0.6;
}

.pagenation a.next,
.pagenation a.prev {
  font-size: 30px;
}

.pagenation a.next:hover,
.pagenation a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #333333;
  display: inline-block;
  font-size: 20px;
  height: 40px;
  line-height: 38px;
  margin-right: 14px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #FBCC95;
  border: 1px solid #FBCC95;
  color: #333333;
  font-weight: 700;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

.pagenation a.next, .pagenation a.prev {
  background: transparent;
  color: #dfe1de;
}

.page-numbers.dots {
  background: transparent;
  color: #dfe1de;
}

/* genre-nav
------------------------------------------------------------*/
.genre-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
  border-bottom: 2px solid #ed6c00;
  padding-bottom: 20px;
  -webkit-box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

@media screen and (max-width: 767px) {
  .genre-nav {
    margin-bottom: 30px;
  }
}

.genre-nav-link {
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .genre-nav-link {
    margin-right: 12px;
    margin-bottom: 5px;
  }
}

.genre-nav-link a {
  display: block;
  padding: 4px 14px 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .genre-nav-link a {
    padding: 2px 2px;
    font-size: 14px;
  }
}

.genre-nav-link a.is-active,
.genre-nav-link a:hover {
  background: #b9d08b;
  color: #333333;
  border-radius: 20px;
}

.archive-genre {
  margin-bottom: 14px;
}

.archive-genre-title {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #333333;
  margin-bottom: 80px;
  padding-left: 10px;
  border-left: 20px solid skyblue;
  position: relative;
}

.archive-genre-title::after {
  position: absolute;
  content: "";
  background: #f7f6f5;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .archive-genre-title {
    font-size: 20px;
    margin-bottom: 50px;
  }
}

/*===========================================================
# column
============================================================*/
.m_two-cal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .m_two-cal {
    display: block;
  }
}

/* primary
------------------------------------------------------------*/
#primary {
  margin-bottom: 0;
  padding-right: 30px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #primary {
    padding-right: 0;
  }
}

.m_two-col #primary {
  width: 65.63636%;
}

@media screen and (max-width: 767px) {
  .m_two-col #primary {
    margin-bottom: 70px;
    width: 100%;
  }
}

/* secondary
------------------------------------------------------------*/
#secondary {
  margin-left: auto;
  width: 30.90909%;
}

@media screen and (max-width: 767px) {
  #secondary {
    width: 100%;
  }
}

/*===========================================================
# sidebar 
============================================================*/
/* widget
------------------------------------------------------------*/
.widget {
  margin-bottom: 50px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget li {
  font-size: inherit;
  margin-bottom: 8px;
}

.widget li a {
  display: inline-block;
  font-size: inherit;
  text-decoration: none;
}

.widget li a:hover {
  opacity: 0.6;
}

.widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 0 0 16px;
  position: relative;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: white;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, #f4e0e0 10px, #f4e0e0 20px);
}

.wprofile-img {
  margin-bottom: 26px;
  text-align: center;
}

.wprofile-img img {
  width: 230px;
}

.wprofile-content {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 40px;
  padding: 0 18px;
}

.search-form {
  position: relative;
}

.search-field {
  padding-right: 70px;
  width: 100%;
}

.search-submit {
  -webkit-transform: translateY(-50%);
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #e2e2e2;
  font-size: 26px;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.wpost-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.wpost-item:last-child {
  margin-bottom: 0;
}

.wpost-item:hover {
  opacity: 0.6;
}

.m_ranking .wpost-item {
  counter-increment: ranking;
  position: relative;
}

.m_ranking .wpost-item::after {
  background: #ed6c00;
  color: #fff;
  content: counter(ranking);
  font-size: 12px;
  height: 20px;
  left: 0;
  line-height: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}

.wpost-img-wrap {
  width: 80px;
}

.wpost-item-img {
  padding-top: 58.33%;
  background: #000;
  position: relative;
  display: block;
  overflow: hidden;
}

.wpost-item-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.wpost-item-body {
  padding: 0 0 0 10px;
  width: calc(100% - 80px);
}

.wpost-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.57143;
}

.widget_archive li {
  margin-bottom: 8px;
}

.widget_archive li:last-child {
  margin-bottom: 0;
}

.widget_archive li a {
  border-bottom: 1px solid #e2e2e2;
  display: block;
  font-size: 14px;
  padding: 10px 20px 4px 0;
  position: relative;
  text-decoration: none;
}

.widget_archive li a::hover {
  opacity: 0.6;
}

.widget_archive li a::after {
  content: "\f054";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/*===========================================================
# entry
============================================================*/
.entry {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  padding: 30px 30px 12px;
}

.entry.single-work {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-bottom: 12px;
}

.m_page .entry {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 767px) {
  .entry {
    padding: 15px 15px;
  }
}

.entry-label {
  display: inline-block;
}

.entry-label a {
  background: #b9d08b;
  color: #fff;
  border-radius: 25px;
  display: block;
  font-size: 12px;
  padding: 4px 16px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.entry-label a :hover {
  opacity: 0.6;
}

.entry-label.m_work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.entry-label.m_work a {
  margin-top: 6px;
}

.entry-label.m_work a:not(:first-child) {
  margin-left: 10px;
}

.entry-label.m_work .m_tag {
  background: #f4b1c1;
}

.entry-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 18px;
  margin-top: 10px;
}

.entry-title.m_work {
  margin-top: 20px;
}

.m_one-col .entry-title {
  margin-bottom: 34px;
}

@media screen and (max-width: 767px) {
  .entry-title {
    font-size: 20px;
  }
}

.entry-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.entry-published,
.entry-updated {
  color: #808080;
  font-size: 12px;
}

.entry-published::before,
.entry-updated::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  margin-right: 8px;
}

.entry-updated {
  margin-left: 25px;
}

.entry-updated::before {
  content: "\f1da";
  font-weight: 900;
}

.entry-img {
  text-align: center;
}

.entry-img img {
  width: 100%;
  height: auto;
}

.entry-img.m_work img {
  width: 100%;
  height: auto;
}

.entry-item entry-img {
  text-align: center;
}

.entry-item entry-img img {
  height: 80vh;
  width: auto;
}

.entry-body {
  margin-top: 30px;
  padding-bottom: 40px;
}

.entry-body h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 38px;
  margin-top: 79px;
  position: relative;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  background: #ed6c00;
  margin-left: -40px;
  margin-right: -40px;
  padding: 4px 50px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
  .entry-body h2 {
    margin-left: -25px;
    margin-right: -25px;
    font-size: 20px;
    margin-top: 80px;
    padding: 8px 17px;
  }
}

.entry-body h2:before, .entry-body h2:after {
  position: absolute;
  top: 100%;
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top: 5px solid #000;
  opacity: 0.5;
}

.entry-body h2:before {
  left: 0;
  border-right: 5px solid #000;
}

.entry-body h2:after {
  right: 0;
  border-left: 5px solid #000;
}

.entry-body h3 {
  margin-bottom: 24px;
  margin-top: 64px;
  padding-bottom: 4px;
  font-weight: 600;
  line-height: 1.4;
  color: #ed6c00;
  font-size: 24px;
  position: relative;
  padding: 10px 0 2px 28px;
  border-bottom: 2px solid #ed6c00;
}

@media screen and (max-width: 767px) {
  .entry-body h3 {
    font-size: 20px;
    margin-top: 54px;
  }
}

.entry-body h3:before, .entry-body h3:after {
  content: "";
  position: absolute;
  margin: auto;
}

.entry-body h3:before {
  width: 12px;
  height: 12px;
  top: 0;
  left: 14px;
  background: #ed6c00;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}

.entry-body h3:after {
  width: 8px;
  height: 8px;
  top: 18px;
  left: 6px;
  background: #ed6c00;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.entry-body h4 {
  color: #ed6c00;
  font-size: 18px;
  font-weight: 600;
  margin-top: 62px;
  margin-bottom: 16px;
  padding: 0.5em 0.5em 0.5em 2em;
  /*アイコン分のスペース*/
  position: relative;
  line-height: 1.4;
  border-top: dotted 1px gray;
  border-bottom: dotted 1px gray;
  background: #fffff4;
}

.entry-body h4::before {
  font-family: "Font Awesome 5 Free";
  /*忘れずに*/
  content: "\f138";
  font-weight: 900;
  position: absolute;
  font-size: 1em;
  left: 0.25em;
  top: 0.5em;
  color: #ed6c00;
}

@media screen and (max-width: 767px) {
  .entry-body h4 {
    margin-top: 52px;
  }
}

.entry-body h5 {
  color: #ed6c00;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 27px;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .entry-body h5 {
    margin-top: 50px;
  }
}

.entry-body h6 {
  color: #ed6c00;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1em;
  margin-top: 2em;
}

.entry-body h2 + p,
.entry-body h3 + p,
.entry-body h4 + p,
.entry-body h5 + p,
.entry-body h6 + p {
  margin-top: 0;
}

.entry-footer {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .entry-footer {
    margin-top: 20px;
  }
}

.entry-links {
  margin-top: 32px;
  text-align: center;
}

.entry-links a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.entry-links a:hover {
  background: #b9d08b;
  color: #fff;
}

.entry-links .post-page-numbers {
  background: #fff;
  border: 1px solid #666;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  margin-left: 8px;
  margin-right: 8px;
  min-width: 30px;
  text-align: center;
}

.entry-links .post-page-numbers.current {
  background: #b9d08b;
  color: #fff;
}

.entry-links .post-page-numbers:first-child {
  margin-left: 0;
}

.entry-links .post-page-numbers:last-child {
  margin-right: 0;
}

.entry-tag-items {
  border-top: 1px solid #e2e2e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
}

.entry-tag-head {
  background: #808080;
  border-radius: 3px;
  color: #fff;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
  padding: 6px 15px 0;
}

.entry-tag-head::before {
  content: "\f02b";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 5px;
}

.entry-tag-item:last-child {
  margin-right: 0;
}

.entry-tag-item a {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  color: #808080;
  display: block;
  font-size: 14px;
  padding: 6px 18px 5px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.entry-tag-item a:hover {
  background: #808080;
  border-color: #808080;
  color: #fff;
}

.entry-related {
  margin-top: 20px;
}

.related-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.related-date {
  font-size: 12px;
}

.related-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.related-item {
  display: block;
  margin-bottom: 21px;
  margin-right: 18px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: calc(25% - 18px * 3 / 4);
}

.related-item:hover {
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
  .related-item:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .related-item {
    width: calc(50% - 18px * 1 / 2);
  }
  .related-item:nth-child(2n) {
    margin-right: 0;
  }
}

.related-item-img {
  text-align: center;
  padding-top: 75%;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.related-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.related-item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.57143;
}

/* entries
------------------------------------------------------------*/
.entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .entries {
    display: block;
  }
}

.entries.m_horizontal {
  margin-bottom: 40px;
}

.entry-item {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  display: block;
  margin-bottom: 50px;
  margin-right: 40px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: calc(50% - 40px / 2);
}

@media screen and (max-width: 767px) {
  .entry-item {
    margin-bottom: 27px;
    margin-right: 0;
    width: 100%;
  }
}

.entry-item:hover {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
}

.entry-item:nth-child(2n), .entry-item:last-child {
  margin-right: 0;
}

.entry-item-body {
  padding: 20px;
}

.entry-item-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

.entry-item-tag {
  background: #ed6c00;
  color: #fff;
  display: block;
  font-size: 12px;
  margin-right: 15px;
  padding: 3px 14px 2px;
}

@media screen and (max-width: 767px) {
  .entry-item-tag {
    font-size: 10px;
  }
}

.entry-item-published {
  color: #808080;
  font-size: 12px;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .entry-item-published {
    font-size: 10px;
  }
}

.entry-item-published::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  margin-right: 8px;
}

.entry-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
}

@media screen and (max-width: 767px) {
  .entry-item-title {
    font-size: 12px;
    margin-bottom: 0;
  }
}

.entry-item-excerpt {
  color: #333333;
  font-size: 14px;
  line-height: 1.71429;
}

@media screen and (max-width: 767px) {
  .entry-item-excerpt {
    display: none;
  }
}

.blog .entry-item-img {
  display: block;
  padding-top: 58.33%;
  position: relative;
  overflow: hidden;
}

.blog .entry-item-img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.entries.m_horizontal .entry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-right: 0;
  padding: 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .entries.m_horizontal .entry-item {
    margin-bottom: 20px;
    padding: 10px;
  }
}

.entries.m_horizontal .entry-item:last-child {
  margin-bottom: 0;
}

.entries.m_horizontal .entry-item .entry-item-img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .entries.m_horizontal .entry-item .entry-item-img {
    width: 90%;
  }
}

.entries.m_horizontal .entry-item .entry-item-body {
  padding: 0 0 0 20px;
  width: 64%;
}

@media screen and (max-width: 767px) {
  .entries.m_horizontal .entry-item .entry-item-body {
    padding-left: 12px;
    width: 55%;
  }
}

.wp-block-image img {
  width: auto;
}

/* ボタンカスタマイズ
------------------------------------------------------------*/
.wp-block-file__button {
  padding: 0.3em 1em;
  text-decoration: none;
  background: #A2AAB1;
  color: white;
  border: solid 2px #A2AAB1;
  /*ボーダー*/
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.wp-block-file__button:before {
  content: "";
  background-color: #fff;
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  -webkit-transform: skewX(-45deg) translateX(0);
  transform: skewX(-45deg) translateX(0);
  -webkit-transition: none;
  transition: none;
  opacity: 0;
  -webkit-animation: left-slide 2s infinite;
  animation: left-slide 2s infinite;
}

@-webkit-keyframes left-slide {
  0% {
    left: -50%;
    opacity: 0.1;
  }
  50%,
  100% {
    left: 150%;
    opacity: 0.75;
  }
}

@keyframes left-slide {
  0% {
    left: -50%;
    opacity: 0.1;
  }
  50%,
  100% {
    left: 150%;
    opacity: 0.75;
  }
}

/*===========================================================
# table of contents
============================================================*/
#toc_container {
  background: #fff;
  border: 2px solid #ed6c00;
  margin-top: 64px;
  padding: 20px 30px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #toc_container {
    padding: 20px;
  }
}

#toc_container .toc_title {
  border-bottom: 2px solid #ed6c00;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 0;
  padding-bottom: 6px;
  text-align: center;
}

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

#toc_container ul a {
  color: #333;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  text-decoration: none;
}

#toc_container > ul > li {
  counter-increment: toc;
  margin-bottom: 20px;
  margin-top: 0;
}

#toc_container > ul > li:last-child {
  margin-bottom: 0;
}

#toc_container > ul > li > a {
  padding-left: 36px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  #toc_container > ul > li > a {
    padding-left: 34px;
  }
}

#toc_container > ul > li > a::before {
  background: #ed6c00;
  border-radius: 50%;
  color: #fff;
  content: counter(toc);
  font-weight: 700;
  height: 26px;
  left: 0;
  line-height: 26px;
  margin-top: -2px;
  min-width: 26px;
  position: absolute;
  text-align: center;
  top: 0;
}

#toc_container > ul > li > ul {
  margin-top: 6px;
  padding-left: 36px;
}

#toc_container > ul > li > ul > li {
  margin-bottom: 2px;
  margin-top: 0;
}

#toc_container > ul > li > ul > li:last-child {
  margin-bottom: 0;
}

#toc_container > ul > li > ul > li > a {
  font-weight: 400;
  padding-left: 10px;
}

#toc_container > ul > li > ul > li > a::before {
  background: #ed6c00;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  min-width: initial;
  position: absolute;
  top: 8px;
  width: 5px;
}

/*===========================================================
# error 404
============================================================*/
.error-404 {
  padding-bottom: 100px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .error-404 {
    padding-bottom: 60px;
  }
}

.error-404-head {
  color: #ed6c00;
  font-size: 80px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .error-404-head {
    font-size: 40px;
  }
}

.error-404-head span::after {
  content: " ";
}

.error-404-lead {
  color: #808080;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .error-404-lead {
    font-size: 24px;
  }
}

.error-404-content {
  color: #808080;
}

@media screen and (max-width: 767px) {
  .error-404-content {
    font-size: 12px;
  }
}

.error-404-btn {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .error-404-btn {
    margin-top: 60px;
  }
}

/*===========================================================
# search
============================================================*/
.archive-title.m_search span {
  color: #ed6c00;
}

.archive-title.m_search::before {
  color: #ed6c00;
  content: "\f002";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-right: 8px;
}

.archive-title.m_search span {
  color: #ed6c00;
}

.archive-title.m_search::before {
  color: #ed6c00;
  content: "\f002";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-right: 8px;
}

.kouji {
  font-size: 140px;
  text-align: center;
  color: rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .kouji {
    font-size: 70px;
  }
}

/*===========================================================
# アニメーション
============================================================*/
.smooth {
  -webkit-animation-name: smoothAnime;
          animation-name: smoothAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

@keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

.box {
  width: 120px;
  height: 400px;
  padding: 20px;
  background: #666;
  color: #fff;
}

/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f49c2d;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  font-size: 20px;
  color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/
body {
  background: #FFF6E9;
}

body.appear {
  background: #FFF6E9;
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg1 {
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background: #f49c2d;
}

@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/*左に消えるエリア*/
body.appear .splashbg2 {
  -webkit-animation-name: PageAnime2;
          animation-name: PageAnime2;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background: #f49c2d;
}

@-webkit-keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes PageAnime2 {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
/*bodyにappearクラスがついたら出現*/
body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*===========================================================
# WOWで画面表示時に一瞬見えるのを防止
============================================================*/
body.preload .wow.fadeIn {
  opacity: 0 !important;
}

body.preload .wow.fadeInUp {
  opacity: 0 !important;
}

body.preload .wow.fadeOutUpBig {
  opacity: 0 !important;
}
