@charset "UTF-8";
/* --------------------------------
[コーディングルール]
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・トップページはロゴを<h1>、他のページはロゴを<p>でページタイトルを<h1>にする
・メディアクエリーはPCファーストで、@media screen and (max-width: 767px) {}を使用
-------------------------------- */

/* reset -------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
}
body {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6, p, th, td, address, small, i {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  font-style: normal;
}
ol, ul, dl, dt, dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
img, object, embed, video {
  border: 0;
  vertical-align: bottom;
}
img {
  max-width: 100%;
}

/* img[src$=".svg"] {
  width: 100%;
  height: auto;
} */
table {
  border-spacing: 0;
  border-collapse: collapse;
}
th {
  text-align: left;
}
em {
  font-style: normal;
  font-weight: bold;
}
a {
  outline: none;
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: #000;
  }
}

/* body -------- */
html.is-nosc {
  overflow: hidden;
}
body {
  line-height: 1.5;
  font-family: "Heebo", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #333;
  -webkit-text-size-adjust: 100%;
}
body.is-nosc {
  overflow: hidden;
}

/* header -------- */
html {
  margin-top: 0 !important;
}
@media screen and (max-width: 782px) {
  html {
    margin-top: 0 !important;
  }
}
#wpadminbar {
  opacity: .75;
}
@media screen and (max-width: 782px) {
  #wpadminbar {
    display: none;
  }
}
.header-wrap {
  height: 80px;
}
body.home .header-wrap {
  height: 0;
}
@media screen and (max-width: 767px) {
  .header-wrap {
    height: 50px;
  }
  body.home .header-wrap {
    height: 0;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
  background-color: #000;
  color: #fff;
}
body.home .header {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
body.home .header.is-sc {
  background-color: black;
}
.header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .header .header-inner {
    min-height: 50px;
    padding: 0 15px;
  }
}
.header .logo {
  padding-top: 17px;
}
@media screen and (max-width: 767px) {
  .header .logo {
    padding-top: 9px;
  }
}
body.home .header .logo img {
  width: 108px !important;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
body.home .header.is-sc .logo img {
  width: 45px !important;
}
@media screen and (max-width: 767px) {
  body.home .header .logo img {
    width: 75px !important;
  }
  body.home .header.is-sc .logo img {
    width: 33px !important;
  }
}
.header .gnav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header .gnav-wrap {
    display: block;
    position: absolute;
    right: 0;
    top: 50px;
    width: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    text-align: right;
  }
  .header .gnav-wrap.is-open {
    width: 250px;
  }
}
.header .gnav {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .header .gnav {
    width: 250px;
    padding-top: 40px;
  }
}
.header .gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .header .gnav ul {
    display: block;
  }
}
.header .gnav ul li {
  display: block;
}
.header .gnav ul li a {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px 10px;
}
@media screen and (max-width: 767px) {
  .header .gnav ul li a {
    padding: 14px 15px;
    font-size: 1.8rem;
  }
}
.header .sns {
  position: relative;
  right: -10px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .header .sns {
    right: auto;
    width: 250px;
  }
}
.header .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header .sns ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.header .sns ul li a {
  display: block;
  padding: 10px;
}
.header .sns ul li a i {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .header .spmenu {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .header .spmenu a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
  }
  .header .spmenu a i {
    display: block;
    position: absolute;
    left: 25px;
    top: 25px;
    -webkit-transform: translate(-12px, -1px);
    -ms-transform: translate(-12px, -1px);
    transform: translate(-12px, -1px);
    width: 25px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .header .spmenu a i:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -7px;
    width: 25px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .header .spmenu a i:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    width: 25px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .header .spmenu a.is-open i {
    left: 20px;
    width: 35px;
    -webkit-transform: translate(-12px, -1px) rotate(45deg);
    -ms-transform: translate(-12px, -1px) rotate(45deg);
    transform: translate(-12px, -1px) rotate(45deg);
  }
  .header .spmenu a.is-open i:before {
    top: 0;
    width: 35px;
    opacity: 0;
  }
  .header .spmenu a.is-open i:after {
    top: 0;
    width: 35px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

/* content -------- */
.content {
  line-height: 1.71;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .content {
    font-size: 1.3rem;
  }
}
.content .content-inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .content .content-inner {
    padding-bottom: 50px;
  }
}

/* footer -------- */
.f-sns {
  border-top: 1px solid #e5e5e5;
  padding: 50px 15px;
}
@media screen and (max-width: 767px) {
  .f-sns {
    margin: 0 15px;
    padding: 33px 15px;
  }
}
.f-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.f-sns ul li a {
  display: block;
  margin: 0 10px;
  padding: 10px;
}
.f-sns ul li a i {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .f-sns ul li a i {
    width: 25px;
    height: 25px;
  }
}
.footer {
  background-color: #f5f5f5;
}
.footer .footer-inner {
  padding: 50px 30px 45px;
  text-align: center;
}
.footer .copyright {
  margin-top: 15px;
  font-size: 1rem;
}

/* --------------------------------
[module.cssについて]
・共通レイアウトと共通タグを記述
-------------------------------- */

/* all -------- */
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.over {
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.7;
  }
}
.container {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.container2 {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .container2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.display-inline {
  display: inline;
}
.display-inline-block {
  display: inline-block;
}
.display-block {
  display: block;
}
.display-table {
  display: table;
}
.display-table-cell {
  display: table-cell;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.image-cover {
  display: block;
  height: 0;
  padding-top: 66.78%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/* wordpress editor -------- */
.format .aligncenter {
  display: block;
  margin: 0 auto;
}
.format .alignright {
  float: right;
}
.format .alignleft {
  float: left;
}
.format img[class*="wp-image-"], .format img[class*="attachment-"] {
  max-width: 100%;
  height: auto;
}

/* format -------- */
.format {
  word-wrap: break-word;
}
.format a {
  color: #03c;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .format a:hover {
    color: #69f;
  }
}
.format h2 {
  margin: 2em 0 .75em;
  font-size: 2.6rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "メイリオ", Meiryo, serif;
}
@media screen and (max-width: 767px) {
  .format h2 {
    margin: .5em 0 .5em;
    font-size: 1.8rem;
  }
}
.format h3 {
  margin: 2em 0 .5em;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .format h3 {
    margin: .5em 0 .5em;
    font-size: 1.6rem;
  }
}
.format h4 {
  margin: 1.5em 0;
  border-top: 1px solid #000;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .format h4 {
    font-size: 1.1rem;
  }
}
.format p, .format ul, .format ol, .format table {
  margin-bottom: 2em;
}
.format li {
  margin-bottom: 10px;
}
.format ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
.format ol {
  list-style-type: decimal;
  padding-left: 1.5em;
}
.format hr {
  margin: 2.5em 0 4em;
  border: none;
  border-top: 1px solid #dcdcdc;
}
@media screen and (max-width: 767px) {
  .format hr {
    margin: 1.5em 0 3em;
  }
}
.format table {
  width: 100%;
}
.format th {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid #999;
  background-color: #eee;
}
.format td {
  padding: 10px 20px;
  border: 1px solid #999;
}
.content .slick-slider.slick-dotted {
  margin-bottom: 20px;
}
.content .slick-slider .slick-dots li {
  width: 60px;
  margin: 0 3px;
}
.content .slick-slider .slick-dots li button {
  width: 60px;
  padding: 0;
}
.content .slick-slider .slick-dots li button:before {
  content: '';
  top: 9px;
  width: 60px;
  height: 2px;
  background-color: #dcdcdc;
  opacity: 1;
}
.content .slick-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #999;
}
.viewmore {
  text-align: center;
}
.viewmore a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .viewmore a {
    font-size: 1.8rem;
  }
}
.viewmore a .loading {
  display: none;
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
}
.viewmore.is-loading a .loading {
  display: block;
}
.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  padding: 2px 8px;
}
.remodal-wrapper .remodal-close {
  left: auto;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
}
.remodal-wrapper .remodal-close:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.remodal-wrapper .remodal-close:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.backbtn {
  margin-top: 5em;
  text-align: center;
}
.backbtn a {
  display: inline-block;
  color: #000;
  padding: 10px 70px;
  border: 1px solid #000;
}
.backbtn a:hover {
  color: #000;
}
.catnav-gyo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 15px;
}
@media screen and (max-width: 767px) {
  .catnav-gyo {
    padding: 0 15px;
  }
}
.catnav-gyo ul {
  padding: 10px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #ddd;
  text-align: center;
  color: #bbb;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .catnav-gyo ul {
    padding: 15px 0;
    font-size: 1.2rem;
    line-height: 1;
  }
}
.catnav-gyo ul li {
  display: inline-block;
}
.catnav-gyo ul li a {
  display: inline-block;
  padding: 1em 1em;
  color: #bbb;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}
@media screen and (max-width: 767px) {
  .catnav-gyo ul li a {
    padding: .5em 1em;
  }
}
.catnav-gyo ul li a:hover {
  color: #000;
}
.catnav-gyo ul li.current a {
  color: #000;
}
.catnav-gyo ul li:after {
  content: '/';
  display: inline-block;
}
.catnav-gyo ul li:last-child:after {
  content: '';
}
.catnav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 15px;
}
@media screen and (max-width: 767px) {
  .catnav {
    padding: 0 15px;
  }
}
.catnav ul {
  padding: 10px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #ddd;
  text-align: center;
  color: #bbb;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .catnav ul {
    padding: 15px 0;
    font-size: 1.2rem;
    line-height: 1;
  }
}
.catnav ul li {
  display: inline-block;
}
.catnav ul li a {
  display: inline-block;
  padding: 1em 1em;
  color: #bbb;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}
@media screen and (max-width: 767px) {
  .catnav ul li a {
    padding: .5em 1em;
  }
}
.catnav ul li a:hover {
  color: #000;
}
.catnav ul li.current a {
  color: #000;
}
.catnav ul li:after {
  content: '/';
  display: inline-block;
}
.catnav ul li:last-child:after {
  content: '';
}

.catvisual {
  margin-top: 30px;
}


/* --------------------------------
[page.cssについて]
・各ページごとのCSSを記述
・必ず.page-homeなど各ページごとのclassを付ける
-------------------------------- */
.content-title-wrap {
  position: relative;
  margin-bottom: 40px;
}
.content-title {
  padding: 90px 30px;
  font-size: 3.2rem;
  text-align: center;
}
.content-title small {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .content-title {
    padding: 65px 15px 25px;
    font-size: 2.4rem;
  }
  .content-title small {
    font-size: 1.1rem;
  }
}
.content-bread {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 15px 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .content-bread {
    padding: 15px 15px 0 15px;
  }
}
.content-bread ul li {
  display: inline;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .content-bread ul li {
    font-size: 1.2rem;
  }
}
.content-bread ul li a {
  text-decoration: underline;
}
.content-bread ul li a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .page-single .content-bread ul li {
    color: #fff;
  }
  .page-single .content-bread ul li a {
    color: #fff;
  }
}

/* page-home -------- */
@media screen and (max-width: 767px) {
  body.home .gnav-wrap {
    top: 0;
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  body.home .index-posts .post {
    width: 50%;
  }
}
.page-home .content .content-inner {
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .page-home .content .content-inner {
    padding-bottom: 35px;
  }
}
.page-home .sec-kv {
  position: relative;
}
.page-home .sec-kv .home-slider .slide {
  position: relative;
}
.page-home .sec-kv .image a {
  display: block;
}
.page-home .sec-kv .image a i {
  position: relative;
  display: block;
  height: 580px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .page-home .sec-kv .image a i {
    height: 100vh;
  }
}
.page-home .sec-kv .image a i:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .page-home .sec-kv .image a:hover i {
    opacity: .7;
  }
}
.page-home .sec-kv .info {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 30px 30px 30px;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page-home .sec-kv .info {
    padding: 0 15px 35px 15px;
  }
}
.page-home .sec-kv .info .cats {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .page-home .sec-kv .info .cats {
    font-size: 1.4rem;
  }
}
.page-home .sec-kv .info .cats .cat {
  display: inline-block;
  margin-right: 3px;
  font-weight: bold;
}
.page-home .sec-kv .info h2 {
  font-size: 4rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "メイリオ", Meiryo, serif;
  letter-spacing: -.1em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .page-home .sec-kv .info h2 {
    font-size: 2.9rem;
  }
}
.page-home .sec-kv .info .tags a {
  display: inline-block;
  position: relative;
  margin-right: .5em;
  color: #fff;
  text-decoration: underline;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .page-home .sec-kv .info .tags a {
    font-size: 1.4rem;
  }
}
.page-home .sec-kv .info .tags a:hover {
  text-decoration: none;
}
.page-home .sec-kv .info .tags a:before {
  content: '# ';
}
.page-home .sec-posts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 0;
}
@media screen and (max-width: 767px) {
  .page-home .sec-posts {
    padding: 40px 15px 0;
  }
}
.page-home .sec-posts2 {
  overflow: hidden;
  padding: 0 15px 0;
}

/* page-about -------- */
.page-about .sec-concept h2 {
  margin: 0 0 50px 0;
  font-size: 3.2rem;
  font-family: "Heebo", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "メイリオ", Meiryo, serif;
  font-weight: normal;
  letter-spacing: -.1em;
}
@media screen and (max-width: 767px) {
  .page-about .sec-concept h2 {
    line-height: 1.3;
    font-size: 2.4rem;
    letter-spacing: -.15em;
    margin-bottom: 35px;
  }
}
.page-about .sec-concept h2 small {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .page-about .sec-concept h2 small {
    font-size: 1.4rem;
  }
}
.page-about .sec-concept .list {
  margin-bottom: -65px;
}
@media screen and (max-width: 767px) {
  .page-about .sec-concept .list {
    margin-bottom: -40px;
  }
}
.page-about .sec-concept .list ul {
  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;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page-about .sec-concept .list ul li {
  width: 47.5%;
  margin-bottom: 55px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .page-about .sec-concept .list ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page-about .sec-concept .list ul li h3 {
  margin: 0;
  padding-top: 7px;
  font-size: 3.2rem;
  line-height: 1.2;
}
.page-about .sec-concept .list ul li h3 small {
  display: block;
  font-size: 1.2rem;
}
.page-about .sec-concept .list ul li .image {
  text-align: center;
}
.page-about .sec-concept .list ul li:nth-child(1) .image {
  margin: 0 0 40px;
}
.page-about .sec-concept .list ul li:nth-child(2) .image {
  margin: 15px 0 50px;
}
.page-about .sec-concept .list ul li:nth-child(3) .image {
  margin: 15px 0 65px;
}
.page-about .sec-concept .list ul li:nth-child(4) .image {
  margin: 5px 0 45px;
}
@media screen and (max-width: 767px) {
  .page-about .sec-concept .list ul li:nth-child(1) .image {
    margin: 0 0 20px;
  }
  .page-about .sec-concept .list ul li:nth-child(2) .image {
    margin: 5px 0 30px;
  }
  .page-about .sec-concept .list ul li:nth-child(3) .image {
    margin: 10px 0 40px;
  }
  .page-about .sec-concept .list ul li:nth-child(4) .image {
    margin: 5px 0 30px;
  }
}
.page-about .sec-concept .list ul li .name {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

/* page-material -------- */
.page-material .sec-logo .list {
  margin-bottom: -65px;
}
@media screen and (max-width: 767px) {
  .page-material .sec-logo .list {
    margin-bottom: 0;
  }
}
.page-material .sec-logo .list ul {
  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;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page-material .sec-logo .list ul li {
  width: 21%;
  margin-bottom: 35px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .page-material .sec-logo .list ul li {
    width: 46%;
  }
}
.page-material .sec-logo .list ul li.nodata {
  border: none;
}
.page-material .sec-logo .list ul li h3 {
  margin: 0;
  padding-top: 5px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .page-material .sec-logo .list ul li h3 {
    font-size: .9rem;
  }
}
.page-material .sec-logo .list ul li h3 small {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .page-material .sec-logo .list ul li h3 small {
    font-size: 1.3rem;
  }
}
.page-material .sec-logo .list ul li .image {
  margin: 0;
  padding: 20px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-material .sec-logo .list ul li .image {
    padding: 15px 30px;
  }
}
.page-material .sec-logo .list ul li .image a {
  display: block;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}
@media screen and (min-width: 768px) {
  .page-material .sec-logo .list ul li .image a:hover {
    opacity: .7;
  }
}
.material-slider {
  padding: 0 40px;
}
.material-slider .slide {
  padding: 0 5px;
}
.material-slider .slide h3 {
  margin: 0 auto;
  padding-top: 5px;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.4;
  max-width: 350px;
  text-align: left;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .material-slider .slide h3 {
    font-size: .9rem;
  }
}
.material-slider .slide h3 small {
  display: block;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .material-slider .slide h3 small {
    font-size: 1.3rem;
  }
}
.material-slider .slide .image {
  margin: 0 auto;
  max-width: 350px;
  padding: 20px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .material-slider .slide .image {
    padding: 15px 30px;
  }
}
.material-slider .slide .image img {
  display: inline-block;
}
.material-slider .slide .des {
  margin: 0 auto;
  max-width: 350px;
  text-align: left;
}
.material-slider .slick-prev {
  left: 0;
  z-index: 1;
  width: 40px;
  height: 100%;
}
.material-slider .slick-prev:before {
  content: '';
  display: block;
  position: absolute;
  left: 80%;
  top: 41%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 53px;
  height: 44px;
  background: url(../images/material/slider-prev.svg) no-repeat center center;
  background-size: contain;
}
.material-slider .slick-next {
  right: 0;
  z-index: 1;
  width: 40px;
  height: 100%;
}
.material-slider .slick-next:before {
  content: '';
  display: block;
  position: absolute;
  left: 20%;
  top: 41%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 53px;
  height: 44px;
  background: url(../images/material/slider-next.svg) no-repeat center center;
  background-size: contain;
}

/* page-clothpedia -------- */
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia {

  }
}
.page-clothpedia .sec-pedia .catnav-gyo {
  position: -webkit-sticky;
  position: sticky;
  top: 79px;
  z-index: 10;
  padding: 0;
  border-top: 1px solid #000;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .catnav-gyo {
    top: 49px;
  }
}
.page-clothpedia .sec-pedia .catnav-gyo ul {
  border: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.page-clothpedia .sec-pedia .catnav-gyo ul li {
  display: inline-block;
  margin: 0;
}
.page-clothpedia .sec-pedia .catnav-gyo ul li a {
  display: inline-block;
  color: #a0a0a0;
}
.page-clothpedia .sec-pedia .catnav-gyo ul li a.current {
  color: #000;
}
.page-clothpedia .sec-pedia .catnav-gyo ul li a:hover {
  text-decoration: underline;
  color: #000;
}
.page-clothpedia .sec-pedia .catnav-gyo ul li:after {
  content: '/';
  display: inline-block;
  margin: 0;
}
.page-clothpedia .sec-pedia .catnav {
  padding: 0 0 25px;
  border-top: 1px solid #000;
}
.page-clothpedia .sec-pedia .catnav ul {
  border-top: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.page-clothpedia .sec-pedia .catnav ul li {
  display: inline-block;
  margin: 0;
}
.page-clothpedia .sec-pedia .catnav ul li a {
  display: inline-block;
  color: #a0a0a0;
}
.page-clothpedia .sec-pedia .catnav ul li a.current {
  color: #000;
}
.page-clothpedia .sec-pedia .catnav ul li a:hover {
  text-decoration: underline;
  color: #000;
}
.page-clothpedia .sec-pedia .catnav ul li:after {
  content: '/';
  display: inline-block;
  margin: 0 .75em;
}

@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .catnav-gyo .menu {
    display: block;
    position: absolute;
    left: -5px;
    z-index: 1;
    bottom: -45px;
    width: 50px;
    height: 40px;

  }
  .page-clothpedia .sec-pedia .catnav-gyo .menu:before {
    content: '';
    display: block;
    position: absolute;
    left: 4px;
    top: 14px;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .page-clothpedia .sec-pedia .catnav-gyo .menu:after {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    top: 14px;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.page-clothpedia .sec-pedia .cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.page-clothpedia .sec-pedia .cols .col-names {
  width: 23%;
  border-right: 1px solid #e5e5e5;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  line-height: 1.5;
}
.page-clothpedia .sec-pedia .cols .col-names.is-fix .inner {
  position: fixed;
  z-index: 11;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .cols .col-names {
    width: 0;
    font-size: 1rem;
    border: none;
  }
  .page-clothpedia .sec-pedia .cols .col-names .inner {
    position: relative;
    overflow-y: auto;
    z-index: 11;
    left: -15px !important;
    width: 100vw !important;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform .3s;
  }
  .page-clothpedia .sec-pedia .cols .col-names.is-open .inner {
    transform: translateX(0);
  }
  .page-clothpedia .sec-pedia .cols .col-names.is-fix .inner {
    left: 0 !important;
  }
  .page-clothpedia .sec-pedia .cols .col-names .inner2 {
    padding: 0 15px;
  }
}

.page-clothpedia .sec-pedia .cols .col-names h2 {
  position: relative;
  margin: 0;
  padding: 10px 0;
  font-size: 1.4rem;
  border-bottom: 1px solid #e5e5e5;
}
.page-clothpedia .sec-pedia .cols .col-names.is-fix h2 {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: #fff;
}
.page-clothpedia .sec-pedia .cols .col-names h2:after {
  content: '';
  display: block;
  position: absolute;
  right: 17px;
  top: 10px;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .cols .col-names h2 {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #fff;
    padding: 10px 15px;
  }
  .page-clothpedia .sec-pedia .cols .col-names h2 .menu2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
  }
  .page-clothpedia .sec-pedia .cols .col-names h2:before {
    content: '';
    display: block;
    position: absolute;
    right: 17px;
    top: 21px;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .page-clothpedia .sec-pedia .cols .col-names h2:after {
    pointer-events: none;
  }
}

.page-clothpedia .sec-pedia .cols .col-names ul {
  margin: 0;
  padding: 10px 0 0;
  list-style-type: none;
}
.page-clothpedia .sec-pedia .cols .col-names ul li {
  margin: 0;
}
.page-clothpedia .sec-pedia .cols .col-names ul li a {
  font-size: 1.4rem;
  color: #000;
}
.page-clothpedia .sec-pedia .cols .col-names ul li a.current {
  font-weight: bold;
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
.page-clothpedia .sec-pedia .cols .col-names ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .cols .col-names ul {
    padding: 10px 0 20px;
  }
}
.page-clothpedia .sec-pedia .cols .col-info {
  width: 77%;
  padding: 60px 65px;
}
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .cols .col-info {
    width: auto;
    padding: 50px 25px;
  }
  .page-clothpedia .sec-pedia .cols .col-info.is-open {
    transition: opacity .3s .3s;
    opacity: 0;
  }
}
.page-clothpedia .sec-pedia .cols .col-info .post-box {
  margin-top: -15px;
  padding-top: 15px;
}
.page-clothpedia .sec-pedia .cols .col-info .infos {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .cols .col-info .infos {
    display: block;
  }
}
.page-clothpedia .sec-pedia .cols .col-info .infos p {
  width: auto;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .cols .col-info .infos p {
    width: auto;
  }
}
.page-clothpedia .sec-pedia .cols .col-info .infos p.des {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .page-clothpedia .sec-pedia .cols .col-info .infos p.des {
    margin-right: 0;
  }
}
.page-clothpedia .sec-pedia .cols .col-info h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}
.page-clothpedia .sec-pedia .cols .col-info .image {
  text-align: center;
}
.page-clothpedia .sec-pedia .cols .col-info .gyo-list .gyo-name {
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.page-clothpedia .sec-pedia .cols .col-info .gyo-list .gyo-ul-wrap {
  display: none;
}
.page-clothpedia .sec-pedia .cols .col-info .gyo-list ul {
  margin: 0;
  padding: 0 0 3em;
  list-style-type: none;
}
.page-clothpedia .sec-pedia .cols .col-info .gyo-list ul li a {
  color: #000;
}
.page-clothpedia .sec-pedia .cols .col-info .gyo-list ul li a:hover {
  text-decoration: underline;
}

/* --------------------------------
[post.cssについて]
・WordPressのindex.php、single.php内の記事出力HTMLで使用
-------------------------------- */

/* index-posts -------- */
.index-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media screen and (max-width: 767px) {
  .index-posts {
    margin: 0;
  }
}
.index-posts .post {
  width: 33.33%;
  margin-bottom: 50px;
  padding: 0 15px;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}
.index-posts .post.post-loaded {
  opacity: 0;
}
@media screen and (max-width: 999px) {
  .index-posts .post {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .index-posts .post {
    width: 100%;
    margin-bottom: 28px;
    padding: 0;
  }
}
.index-posts .post .cats {
  position: relative;
  z-index: 2;
  margin-bottom: 3px;
  font-size: 1.2rem;
}
.index-posts .post .cats .cats-inner {
  display: inline-block;
  position: relative;
}
/*.index-posts .post .cats .cats-inner:after,*/
.index-posts .post .cats .cats-inner .cat-color {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 4px;
  background-color: #ccc;
}
/*.index-posts .post.post-news .cats .cats-inner:after {
  background-color: #9013fe;
}
.index-posts .post.post-interview .cats .cats-inner:after {
  background-color: #7bcc21;
}
.index-posts .post.post-colabo .cats .cats-inner:after {
  background-color: #e50213;
}
.index-posts .post.post-naturecloth .cats .cats-inner:after {
  background-color: #03b5ff;
}*/
.index-posts .post .cats .cat {
  font-weight: bold;
  margin-right: .5em;
}
.index-posts .post .link {
  display: block;
}
.index-posts .post .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .index-posts .post .image i {
    -webkit-transition: all .3s 0s;
    -o-transition: all .3s 0s;
    transition: all .3s 0s;
  }
  .index-posts .post .link:hover .image i {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.index-posts .post .image .line {
  position: absolute;
  background-color: #ccc;
  -webkit-transition: all .2s 0s linear;
  -o-transition: all .2s 0s linear;
  transition: all .2s 0s linear;
}
.index-posts .post .image .line.line1 {
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}
.index-posts .post .image .line.line2 {
  right: 0;
  top: 0;
  width: 4px;
  height: 0;
}
.index-posts .post .image .line.line3 {
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
}
.index-posts .post .image .line.line4 {
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
}
/*.index-posts .post.post-news .image .line {
  background-color: #9013fe;
}
.index-posts .post.post-interview .image .line {
  background-color: #7bcc21;
}
.index-posts .post.post-colabo .image .line {
  background-color: #e50213;
}
.index-posts .post.post-naturecloth .image .line {
  background-color: #03b5ff;
}*/
@media screen and (min-width: 768px) {
  .index-posts .post .link:hover .image .line.line1 {
    width: 100%;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  .index-posts .post .link:hover .image .line.line2 {
    height: 100%;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
  }
  .index-posts .post .link:hover .image .line.line3 {
    height: 100%;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  .index-posts .post .link:hover .image .line.line4 {
    width: 100%;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
  }
}
.index-posts .post h2 {
  line-height: 1.3;
  font-size: 3rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "メイリオ", Meiryo, serif;
}
@media screen and (max-width: 767px) {
  .index-posts .post h2 {
    font-size: 2.2rem;
  }
}
.index-posts .post .tags a {
  display: inline-block;
  position: relative;
  margin-right: .5em;
  color: #a0a0a0;
  text-decoration: underline;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .index-posts .post .tags a {
    font-size: 1.2rem;
  }
}
.index-posts .post .tags a:hover {
  text-decoration: none;
}
.index-posts .post .tags a:before {
  content: '# ';
}
@media screen and (min-width: 768px) {
  .index-posts.index-posts-next {
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 15px;
  }
  .index-posts.index-posts-next .post {
    width: 29%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 29%;
    flex: 0 0 29%;
  }
  .index-posts.index-posts-next:after {
    content: '';
    display: block;
    width: 15%;
    height: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
  }
}
.index-posts-next-wrap .next-over {
  display: none;
}
@media screen and (min-width: 768px) {
  .index-posts-next-wrap {
    position: relative;
  }
  .index-posts-next-wrap .next-over {
    display: block;
    position: absolute;
    right: -30px;
    top: 0;
    width: 15%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
  }
  .index-posts-next-wrap .next-over .arrow {
    display: block;
    position: absolute;
    left: 6.5vw;
    top: 11vw;
    width: 50px;
    height: 1px;
    background-color: #000;
  }
  .index-posts-next-wrap .next-over .arrow:before {
    content: '';
    display: block;
    position: absolute;
    right: -3px;
    top: -11px;
    width: 30px;
    height: 1px;
    background-color: #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .index-posts-next-wrap .next-over .arrow:after {
    content: '';
    display: block;
    position: absolute;
    right: -3px;
    top: 11px;
    width: 30px;
    height: 1px;
    background-color: #000;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.index-posts-slider {
  display: block;
  margin: 0;
  overflow: hidden;
}
.index-posts-slider .post {
  width: auto;
}
@media screen and (max-width: 767px) {
  .index-posts-slider .post {
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .index-posts-slider .post h2 {
    font-size: 2.2rem;
  }
}
.index-posts-slider .slick-prev {
  left: 0;
  z-index: 1;
  width: 80px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7) !important;
}
.index-posts-slider .slick-prev:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 10vw;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 53px;
  height: 44px;
  background: url(../images/post/index-slider-prev.svg) no-repeat center center;
  background-size: contain;
}
.index-posts-slider .slick-next {
  right: 0;
  z-index: 1;
  width: 80px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7) !important;
}
.index-posts-slider .slick-next:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 10vw;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 53px;
  height: 44px;
  background: url(../images/post/index-slider-next.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .index-posts-slider .post-cnt1 {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.page-index .sec-posts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 0;
}
@media screen and (max-width: 767px) {
  .page-index .sec-posts {
    padding: 0 15px 0;
  }
}
@media screen and (min-width: 768px) {
  .page-index .index-posts .post h2 {
    font-size: 2.5rem;
  }
}

/* single-posts -------- */
.single-title {
  position: relative;
  height: 620px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .single-title {
    height: auto;
    margin: 0 15px 30px;
    background: none !important;
  }
}
.single-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .single-title:after {
    display: none;
  }
}
.single-title .mv-image-cap {
  position: absolute;
  left: 0;
  bottom: -2.5em;
  width: 100%;
  padding-right: 30px;
  text-align: right;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .single-title .mv-image-cap {
    position: relative;
    left: auto;
    bottom: auto;
    padding-right: 0;
    padding-top: 1em;
    font-size: 1.1rem;
  }
}
.single-title .info {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0 30px 30px;
  color: #fff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .single-title .info {
    position: relative;
    padding: 20px 0 0 0;
    color: #000;
  }
}
.single-title .info .cats {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .single-title .info .cats {
    font-size: 1.4rem;
  }
}
.single-title .info .cats .cat {
  display: inline-block;
  margin-right: 3px;
  font-weight: bold;
}
.single-title .info h1 {
  font-size: 4rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "メイリオ", Meiryo, serif;
  letter-spacing: -.1em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .single-title .info h1 {
    font-size: 2.9rem;
  }
}
.single-title .info .tags a {
  display: inline-block;
  position: relative;
  margin-right: .5em;
  color: #fff;
  text-decoration: underline;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .single-title .info .tags a {
    color: #000;
    font-size: 1.4rem;
  }
}
.single-title .info .tags a:hover {
  text-decoration: none;
}
.single-title .info .tags a:before {
  content: '# ';
}
.single-posts {
  margin-bottom: 20px;
  padding-bottom: 100px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .single-posts {
    margin-bottom: -15px;
    padding-bottom: 40px;
    font-size: 1.3rem;
  }
}
.single-posts .single-inner {
  max-width: 750px;
  margin: 0 auto;
}
.single-posts .block-image-cap {
  margin-top: -1.5em;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .single-posts .block-image-cap {
    font-size: 1.1rem;
  }
}
.single-posts .block-bg {
  background-color: #f5f5f5;
  margin-top: 70px;
  padding: 30px 30px 50px;
}
@media screen and (max-width: 767px) {
  .single-posts .block-bg {
    margin: 35px -15px 0;
    padding: 30px 15px 20px;
  }
}
.single-posts .block-cols2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .single-posts .block-cols2 {
    display: block;
  }
}
.single-posts .block-cols2 .col1 {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .single-posts .block-cols2 .col1 {
    width: 100%;
  }
}
.single-posts .block-cols2 .col2 {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .single-posts .block-cols2 .col2 {
    width: 100%;
  }
}
.page-single .content {
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .page-single .content {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .page-single .content-bread {
    position: relative;
    min-height: 75px;
    padding-bottom: 15px;
  }
}
.page-single .sec-posts2 {
  overflow: hidden;
  padding: 0 15px 0;
}

/* green */
.green-kv {
  padding-top: 20px;
}
.green-kv .img {
  overflow: hidden;
}
.green-kv .img img {
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2000px;
  max-width: none;
}
@media screen and (max-width: 1090px) {
  .green-kv .img img {
    width: 180vw;
  }
}

.green-inner {
  max-width: 820px;
  margin: 0 auto;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "メイリオ", Meiryo, serif;
}

.green-talk1 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 40px 0;
}
.green-talk1 .col1 {
  width: 185px;
}
@media screen and (max-width: 767px) {
  .green-talk1 .col1 {
    width: 90px;
  }
}
.green-talk1 .col2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex: 1;
  padding: 0 30px 0 10px;
}
@media screen and (max-width: 767px) {
  .green-talk1 .col2 {
    padding: 0 15px 0 10px;
  }
}
.green-talk1 .img {
  position: relative;
}
.green-talk1 .img .cap {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  display: block;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .green-talk1 .img .cap {
    font-size: 10px;
  }
}
.green-talk1 .fuki {
  position: relative;
  background-color: #ccc;
  border-radius: 10px;
  padding: 20px 25px 5px 25px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .green-talk1 .fuki {
    padding: 10px 12px 2px 12px;
    font-size: 14px;
  }
}
.green-talk1 .fuki-p1-inimg {
  padding-right: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .green-talk1 .fuki-p1-inimg {
    padding-right: 70px;
  }
}
.green-talk1 .fuki-p1-inimg .inimg {
  position: absolute;
  right: 0;
  top: 20px;
  width: 130px;
}
@media screen and (max-width: 767px) {
  .green-talk1 .fuki-p1-inimg .inimg {
    top: 10px;
    width: 80px;
  }
}
.green-talk1 .fuki:before {
  content: '';
  display: block;
  position: absolute;
  left: -30px;
  top: 40px;
  border-color: transparent #ccc transparent transparent;
  border-width: 10px 30px 10px 0;
  border-style: solid;
}
@media screen and (max-width: 767px) {
  .green-talk1 .fuki:before {
    left: -15px;
    top: 20px;
    border-width: 5px 15px 5px 0;
  }
}
.green-talk1 .fuki p {
  margin-bottom: 1em;
}
.green-talk1 .fuki b {
  font-size: 2em;
  font-weight: bold;
}
.green-talk1 .fuki em {
  font-size: 1.3em;
  font-weight: bold;
}

.green-talk2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin: 40px 0;
}
.green-talk2 .col1 {
  width: 155px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .green-talk2 .col1 {
    width: 80px;
  }
}
.green-talk2 .col2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  justify-content: flex-end;
  flex: 1;
  padding: 0 10px 0 30px;
}
@media screen and (max-width: 767px) {
  .green-talk2 .col2 {
    padding: 0 10px 0 15px;
  }
}
.green-talk2 .img {
  position: relative;
  width: 185px;
}
@media screen and (max-width: 767px) {
  .green-talk2 .img {
    width: 90px;
  }
}
.green-talk2 .img .cap {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  display: block;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .green-talk2 .img .cap {
    font-size: 10px;
  }
}
.green-talk2 .fuki {
  position: relative;
  border: 2px solid #999;
  border-radius: 10px;
  padding: 20px 25px 5px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .green-talk2 .fuki {
    padding: 10px 12px 2px 12px;
    font-size: 14px;
  }
}
.green-talk2 .fuki:before {
  content: '';
  display: block;
  position: absolute;
  right: -30px;
  top: 30px;
  border-color: transparent transparent transparent #999;
  border-width: 10px 0 10px 30px;
  border-style: solid;
}
@media screen and (max-width: 767px) {
  .green-talk2 .fuki:before {
    right: -15px;
    top: 15px;
    border-width: 5px 0 5px 15px;
  }
}
.green-talk2 .fuki:after {
  content: '';
  display: block;
  position: absolute;
  right: -25px;
  top: 30px;
  border-color: transparent transparent transparent #fff;
  border-width: 10px 0 10px 30px;
  border-style: solid;
}
@media screen and (max-width: 767px) {
  .green-talk2 .fuki:after {
    right: -11px;
    top: 15px;
    border-width: 5px 0 5px 15px;
  }
}
.green-talk2 .fuki p {
  margin-bottom: 1em;
}
.green-talk2 .fuki b {
  font-size: 2em;
  font-weight: bold;
}
.green-talk2 .fuki em {
  font-size: 1.7em;
  font-weight: bold;
}

.green-img {
  margin: 40px 0;
  padding: 0 15px;
  text-align: center;
}
.green-img .cap {
  display: block;
  padding: 0 30px;
  font-size: 12px;
}

.green-bottom {
  margin: 80px 0;
  text-align: center;
}

/*
ocean
bio
loop
botanical
pet
nondye

#dde9f3
#37538c

#e3c5b2
#7b4220

#ece3c8
#c8992a

#e1edd7
#5f7f34

#d6c9e3
#618fc0

#dadadb
#797c80
*/
.green-inner-ocean .green-talk1 .fuki { background-color: #dde9f3; }
.green-inner-ocean .green-talk1 .fuki:before { border-color: transparent #dde9f3 transparent transparent; }
.green-inner-ocean .green-talk2 .fuki { border-color: #37538c; }
.green-inner-ocean .green-talk2 .fuki:before { border-color: transparent transparent transparent #37538c; }

.green-inner-bio .green-talk1 .fuki { background-color: #e3c5b2; }
.green-inner-bio .green-talk1 .fuki:before { border-color: transparent #e3c5b2 transparent transparent; }
.green-inner-bio .green-talk2 .fuki { border-color: #7b4220; }
.green-inner-bio .green-talk2 .fuki:before { border-color: transparent transparent transparent #7b4220; }

.green-inner-loop .green-talk1 .fuki { background-color: #ece3c8; }
.green-inner-loop .green-talk1 .fuki:before { border-color: transparent #ece3c8 transparent transparent; }
.green-inner-loop .green-talk2 .fuki { border-color: #c8992a; }
.green-inner-loop .green-talk2 .fuki:before { border-color: transparent transparent transparent #c8992a; }

.green-inner-botanical .green-talk1 .fuki { background-color: #e1edd7; }
.green-inner-botanical .green-talk1 .fuki:before { border-color: transparent #e1edd7 transparent transparent; }
.green-inner-botanical .green-talk2 .fuki { border-color: #5f7f34; }
.green-inner-botanical .green-talk2 .fuki:before { border-color: transparent transparent transparent #5f7f34; }

.green-inner-pet .green-talk1 .fuki { background-color: #d6c9e3; }
.green-inner-pet .green-talk1 .fuki:before { border-color: transparent #d6c9e3 transparent transparent; }
.green-inner-pet .green-talk2 .fuki { border-color: #618fc0; }
.green-inner-pet .green-talk2 .fuki:before { border-color: transparent transparent transparent #618fc0; }

.green-inner-nondye .green-talk1 .fuki { background-color: #dadadb; }
.green-inner-nondye .green-talk1 .fuki:before { border-color: transparent #dadadb transparent transparent; }
.green-inner-nondye .green-talk2 .fuki { border-color: #797c80; }
.green-inner-nondye .green-talk2 .fuki:before { border-color: transparent transparent transparent #797c80; }


/* fade */
.fade {
  opacity: 0;
  transition: all 1s;
}
.fade-next {
  opacity: 0;
  transition: all 1s;
}
.fade.is-fade {
  opacity: 1;
}
.fade-next.is-fade-next {
  opacity: 1;
}
.fade-move {
  opacity: 0;
  transition: all 1s;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.fade-move-next {
  opacity: 0;
  transition: all 1s;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.fade-move.is-fade {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.fade-move-next.is-fade-next {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
