@charset "utf-8";
/*==================================================

Global default
==================================================*/
html {
  font-size: 10px;
}
html[lang] {
  margin-top: 0 !important;
}
html.overflow-hidden,
html.overflow-hidden body{
  overflow: hidden !important;
  height: 100vh;
}
body {
  font-family: "游ゴシック体", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: normal;
  line-height: 1.56;
  font-size: 14px;
  color: #313131;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "游ゴシック体", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: bold;
}
a,
a:hover,
a:visited,
a:active {
  color: inherit;
}
img {
  height: auto;
}
i {
  vertical-align: middle;
  line-height: 1;
  font-size: 20px;
}

.sp {
  display: none;
}
.flexbox {
  display: flex;
}
.flexbox:after {
  display: none;
}
.standard-header {
  font-size: 32px;
  margin-bottom: 60px;
}
main section p {
  line-height: 2;
}
.inview {
  opacity: 0;
  transition: all 0.7s;
}
.is-visible {
  opacity: 1;
}
.fadein-up {
  transform: translateY(2em);
}
.is-visible.fadein-up {
  transform: translateY(0);
}
.fadein-down {
  transform: translateY(-2em);
}
.is-visible.fadein-down {
  transform: translateY(0);
}
.fadein-left {
  transform: translateX(-1em);
}
.is-visible.fadein-left {
  transform: translateY(0);
}
.fadein-right {
  transform: translateY(1em);
}
.is-visible.fadein-right {
  transform: translateY(0);
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: initial;
  }
  .standard-header {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .inview {
    transition: transform 0.7s, opacity 0.7s;
  }
}
/*==================================================

Split screen animation
==================================================*/

.split-screen main {
  display: flex;
  flex-wrap: wrap;
}
.split-screen .double-col {
  flex: 1 1 55%;
  max-width: 55%;
}
.split-screen .visual {
  position: relative;
  flex: 1 1 45%;
  z-index: 10;
}
.split-screen .visual .sticky {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}
.split-screen .visual li {
  width: 100%;
  height: inherit;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.split-screen .visual li figure img {
  display: none;
}
.split-screen .visual li p {
  width: 11.5%;
  position: absolute;
  left: 50%;
  top: 10%;
  opacity: 0;
  transform: translate(-50%, 6%);
  background: url(/img/top/intro-txt.png) no-repeat center top/ contain;
  transform-origin: center top;
}
.split-screen .visual li p img {
  width: 100%;
  opacity: 0;
}
.split-screen.init .visual li p {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: transform 1s 0.5s, opacity 1s 0.5s;
}
.split-screen .visual li figure {
  width: inherit;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform-origin: center center;
  transform: scale(1.12);
  transition: all 1.5s;
}
.split-screen .visual li.active figure {
  opacity: 1;
  transform: scale(1);
}
.split-screen .main-contents {
  z-index: 1;
}
.split-screen .main-contents section {
  min-height: 100vh;
  padding: 150px 80px 80px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .split-screen .visual .sticky {
    height: 110vh;
  }
}
@media only screen and (max-width: 768px) {
  .split-screen .double-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .split-screen .visual {
    display: none;
  }

  .split-screen .main-contents section {
    padding: 40px 5%;
  }
}
/*==================================================

Custom pointer
==================================================*/
#mouse-stoker {
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
  width: 10px;
  height: 10px;
  background-color: #ddd;
  z-index: 999;
  pointer-events: none;
  transition: transform 300ms ease, width 300ms ease, height 300ms ease;
  transform: translateX(-50%) translateY(-50%);
  position: fixed;
  margin-top: 5px;
  margin-left: 5px;
}
#mouse-stoker.onhover {
  width: 70px;
  height: 70px;
  background-color: #67d4b4;
  opacity: 0.8;
}
#mouse-stoker:after,
#mouse-stoker:before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-2px);
  opacity: 0;
}
/*==================================================

header
==================================================*/
.main-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-left: 46.2%;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
  z-index: 9;
  position: fixed;
  top: 0;
  right: 0;
}
.main-header:after {
  display: none;
}
.menu {
  width: 35px;
  height: 34px;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
.menu span {
  height: 5px;
  width: 35px;
  background: #52d3b4;
  border-radius: 100px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu span:before,
.menu span:after {
  content: "";
  height: 5px;
  width: 35px;
  background: #52d3b4;
  border-radius: 100px;
  display: block;
  position: absolute;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu span:before {
  top: -14px;
}
.menu span:after {
  top: 14px;
}
body.menu-visible .menu span {
  background: transparent;
}
body.menu-visible .menu span:before {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  top: 0;
  background: #fff;
}
body.menu-visible .menu span:after {
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg);
  top: 0;
  background: #fff;
}
.global-navi {
  width: 55%;
  height: 100%;
  max-height: 100%;
  padding: 140px 80px 80px;
  background: #7de0c8;
  overflow: hidden;
  overflow-y: auto;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(101%);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
body.menu-visible .global-navi {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.global-navi li + li {
  margin-top: 40px;
}
.global-navi li a {
  display: flex;
  width: fit-content;
  align-items: center;
  font-family: "Dosis", sans-serif;
  font-size: 50px;
  font-weight: bold;
}
.global-navi li a span {
  margin-left: 30px;
  font-family: "游ゴシック体", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
}
.global-navi .tags {
  max-width: 600px;
  margin-top: 20px;
  margin-left: -7px;
}
.global-navi .tags a {
  display: inline-block;
  padding: 8px 10px;
  margin: 10px 7px;
  border-radius: 100px;
  border: 1px solid #52d3b4;
  background: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
}
.global-navi .tags a:hover {
  color: #52d3b4;
}
.global-navi .nav-figure {
  max-width: 474px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.global-navi .nav-figure:after {
  display: none;
}
.global-navi .nav-figure figure {
  flex: 0 1 48%;
  max-width: 227px;
}
@media only screen and (max-width: 1024px) {
  .global-navi {
    padding: 100px 40px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .main-header {
    margin: 0;
    padding: 10px 23px 10px 5%;
    left: 0;
    width: 100%;
  }
  .main-header h1 {
    max-width: 280px;

    margin-right: 10px;
  }
  .global-navi {
    width: 100%;
    padding: 77px 40px 100px;
  }
  .global-navi li a {
    font-size: 32px;
  }
  .global-navi .tags {
    margin-top: 20px;
  }
  .global-navi .tags a {
    margin: 9px 7px;
  }
}
@media only screen and (max-width: 450px) {
  .global-navi .nav-figure {
    display: block;
  }
  .global-navi .nav-figure figure {
    max-width: 100%;
    margin: 20px 0 0;
  }
}
/*==================================================

footer
==================================================*/
.main-footer {
  position: relative;
  padding-bottom: 30px;
  text-align: center;
  background: #fff;
  z-index: 2;
}
.main-footer .sns-block {
  padding: 55px 2%;
  background: #7de0c8;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
#single-post .main-footer .sns-block {
  display: none;
}
.main-footer .sns-block:before {
  content: "SHARE";
  flex: 1 1 100%;
  margin-bottom: 30px;
  font-family: "Dosis", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
.main-footer .sns-block li {
  width: 47px;
  height: 47px;
  overflow: hidden;
  cursor: pointer;
}
.main-footer .sns-block li img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
}
.main-footer .sns-block li + li {
  margin-left: 70px;
}
.main-footer .sns-block li iframe,
.main-footer .sns-block li > span {
  width: inherit !important;
  height: inherit !important;
  display: block !important;
  opacity: 0 !important;
}
#main-footer .sns-block li iframe {
  margin-top: 20%;
}
.main-footer figure {
  margin: 95px auto 75px;
}
.main-footer p:last-of-type {
  font-size: 11px;
  color: #747474;
}
@media only screen and (max-width: 768px) {
  .main-footer .sns-block {
    padding: 30px 5%;
  }
  #single-post .main-footer .sns-block {
    display: flex;
  }
  .main-footer .sns-block:before {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
  }
  .main-footer .sns-block li {
    width: 27px;
    height: 27px;
  }
  .main-footer .sns-block li + li {
    margin-left: 20px;
  }
  .main-footer {
    padding-bottom: 15px;
  }
  .main-footer figure {
    max-width: 145px;
    margin: 35px auto 25px;
  }
  .main-footer p:last-of-type {
    font-size: 9px;
  }
}
/*==================================================

Article block posts
==================================================*/
.article-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
}
.article-block h3 {
  flex: 1 1 100%;
  font-size: 28px;
  margin: 100px auto 40px;
  text-align: left;
  display: flex;
  max-width: 500px;
  color: #52d3b4;
}
.article-block h3 i {
  display: inline-block;
  margin-right: 20px;
  font-family: "Dosis", sans-serif;
  text-align: center;
  font-size: 50px;
  vertical-align: text-top;
  line-height: 0.8;
  font-style: normal;
}
.article-block > span:first-of-type {
  flex: 1 1 100%; /*fix missing h3 effected nth-child padding */
}
.article-block article {
  flex: 0 1 50%;
  max-width: 250px;
  margin-bottom: 50px;
}
.article-block article.float-up {
  transform: translateY(-5%);
}
.article-block article.float-down {
  transform: translateY(5%);
}
.article-block article:nth-child(even) {
  padding-right: 20px;
}
.article-block article:nth-child(odd) {
  padding-left: 20px;
}
.article-block article:nth-last-child(-n + 2) {
  margin-bottom: 0;
}
.article-block article a {
  display: block;
}
.article-block article a:after {
  content: "＞記事を見る";
  display: block;
  margin-top: 5px;
  text-align: left;
  font-size: 12px;
  color: #7e7e7e;
}
.article-block article figure {
  overflow: hidden;
  position: relative;
  padding-bottom: 139.2%;
  border-radius: 10px;
}
.article-block article figure img {
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 10px;
  transition: all 0.7s;
  transform-origin: center center;
  transform: translateX(-50%) scale(1);
}
.article-block article figure:hover img {
  opacity: 0.8;
  transform: translateX(-50%) scale(1.05);
}
.article-block article time {
  display: block;
  margin: 14px 0 10px;
  text-align: left;
  font-size: 12px;
  line-height: 1;
}
.article-block article h1 {
  text-align: left;
  font-size: 18px;
}
.recommend {
  text-align: center;
}
.recommend h2 {
  font-family: "Dosis", sans-serif;
  font-size: 56px;
  transition-duration: 1.2s;
}
@media only screen and (max-width: 768px) {
  .article-block h3 {
    font-size: 20px;
    margin: 80px auto 20px;
  }
  .article-block h3 i {
    font-size: 32px;
    margin-right: 15px;
    line-height: 1;
  }
  .article-block article {
    transform: none !important;
  }
  .article-block article:nth-child(even) {
    margin-top: 50px;
    padding-right: 7px;
  }
  .article-block article:nth-child(odd) {
    padding-left: 7px;
  }
  .article-block article {
    transition: transform 0.7s, opacity 0.7s !important;
  }
  .article-block article figure {
    padding: 0;
  }
  .article-block article figure img {
    position: static;
    transform: none !important;
    transition: none !important;
  }
  .article-block article h1 {
    margin-top: 10px;
    font-size: 16px;
  }
  .recommend {
    padding: 60px 5%;
  }
  .recommend h2 {
    font-size: 40px;
  }
  .recommend .inner {
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
  }
}
/*==================================================

Error404
==================================================*/
#error404 .main-header {
  padding: 20px 5%;
  text-align: center;
}
#error404 main {
  margin: 100px auto;
  text-align: center;
  display: block;
}
#error404 main h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}
