@charset "UTF-8";
/*---------------
 common
----------------*/
html {
  visibility: hidden;
  font-size: 62.5%;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

body {
  position: relative;
  color: #4c4c4c;
  background-color: #e5e5e5;
  font-size: 1.5rem;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

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

::-moz-selection {
  background: rgba(143, 183, 223, 0.5);
}

::selection {
  background: rgba(143, 183, 223, 0.5);
}

/*リンクデザイン*/
a:link {
  color: #4c4c4c;
  text-decoration: none;
}

a:visited {
  color: #4c4c4c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  font-weight: bold;
  text-decoration: none;
}

/*---------------
JS
----------------*/
/*LazySizes animation*/
.imgBox.fade img {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.imgBox.fade img.lazyloaded {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.imgBox.fade img.lazyload {
  width: 100%;
}

/*hoverで震える*/
.rum:hover {
  -webkit-animation: rumble 0.5s linear infinite;
          animation: rumble 0.5s linear infinite;
}

@-webkit-keyframes rumble {
  0% {
    -webkit-transform: rotate(0deg) translate(0, 0);
            transform: rotate(0deg) translate(0, 0);
  }
  12.5% {
    -webkit-transform: rotate(0.4deg) translate(1px, -1px);
            transform: rotate(0.4deg) translate(1px, -1px);
  }
  25% {
    -webkit-transform: rotate(0.8deg) translate(0px, 1px);
            transform: rotate(0.8deg) translate(0px, 1px);
  }
  37.5% {
    -webkit-transform: rotate(0.4deg) translate(-1px, 0);
            transform: rotate(0.4deg) translate(-1px, 0);
  }
  50% {
    -webkit-transform: rotate(0deg) translate(0, 0);
            transform: rotate(0deg) translate(0, 0);
  }
  62.5% {
    -webkit-transform: rotate(-0.4deg) translate(1px, 0);
            transform: rotate(-0.4deg) translate(1px, 0);
  }
  75% {
    -webkit-transform: rotate(-0.8deg) translate(0, 1px);
            transform: rotate(-0.8deg) translate(0, 1px);
  }
  87.5% {
    -webkit-transform: rotate(-0.4deg) translate(-1px, -1px);
            transform: rotate(-0.4deg) translate(-1px, -1px);
  }
  100% {
    -webkit-transform: rotate(0deg) translate(0, 0);
            transform: rotate(0deg) translate(0, 0);
  }
}

@keyframes rumble {
  0% {
    -webkit-transform: rotate(0deg) translate(0, 0);
            transform: rotate(0deg) translate(0, 0);
  }
  12.5% {
    -webkit-transform: rotate(0.4deg) translate(1px, -1px);
            transform: rotate(0.4deg) translate(1px, -1px);
  }
  25% {
    -webkit-transform: rotate(0.8deg) translate(0px, 1px);
            transform: rotate(0.8deg) translate(0px, 1px);
  }
  37.5% {
    -webkit-transform: rotate(0.4deg) translate(-1px, 0);
            transform: rotate(0.4deg) translate(-1px, 0);
  }
  50% {
    -webkit-transform: rotate(0deg) translate(0, 0);
            transform: rotate(0deg) translate(0, 0);
  }
  62.5% {
    -webkit-transform: rotate(-0.4deg) translate(1px, 0);
            transform: rotate(-0.4deg) translate(1px, 0);
  }
  75% {
    -webkit-transform: rotate(-0.8deg) translate(0, 1px);
            transform: rotate(-0.8deg) translate(0, 1px);
  }
  87.5% {
    -webkit-transform: rotate(-0.4deg) translate(-1px, -1px);
            transform: rotate(-0.4deg) translate(-1px, -1px);
  }
  100% {
    -webkit-transform: rotate(0deg) translate(0, 0);
            transform: rotate(0deg) translate(0, 0);
  }
}
/*---------------
component
----------------*/
/*
heading
----------------*/
.heading-lv4 {
  margin: 1em 0 0.3em;
  font-weight: bold;
  font-size: 1.1em;
}

/*
other
----------------*/
.c-ul {
  margin-left: 0.8em;
  margin-bottom: 1em;
}
.c-ul li {
  position: relative;
  padding-left: 0.8em;
}
.c-ul li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(115, 153, 192, 0.8);
}

.c-dl dt {
  font-size: 1.1em;
}
.c-dl dt:not(:first-child) {
  margin-top: 1em;
}

/* フレックスレイアウト（画像を想定） */
.c-img-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-img-col2 > * {
  width: calc(50% - 10px);
}

.c-img-col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-img-col3 > * {
  width: calc(33.33% - 20px);
}

/*---------------
utility
----------------*/
.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

/* width */
.u-width-xl {
  width: 80%;
}

.u-width-lg {
  width: 70%;
}

.u-width-md {
  width: 60%;
}

.u-width-sm {
  width: 40%;
}

.u-width-xs {
  width: 20%;
}

/* ブロックレベル要素のレイアウト */
.u-block-center {
  margin: 0 auto;
}

.u-block-right {
  margin: 0 0 0 auto;
}

/*---------------
layout
----------------*/
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 895px;
  min-width: 768px;
  margin: 0 auto;
  padding: 40px 10px 30px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 10px 0;
  }
}

.main-block {
  z-index: 0;
  width: 73%;
  max-width: 720px;
  min-width: 400px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .main-block {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding-top: 110px;
  }
}

/*---------------
header
----------------*/
.header__logo {
  position: fixed;
  top: 40px;
  z-index: 70;
}
@media screen and (max-width: 768px) {
  .header__logo {
    position: absolute;
    top: 10px;
  }
}

.header__logo img {
  width: 28vw;
  max-width: 260px;
  min-width: 220px;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 48vw;
    max-width: 290px;
  }
}

/*
hamburger
----------------*/
.hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    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;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 100;
    background-image: url(../img/common/bg_trigger.png);
    background-size: 50px 50px;
    /*ナビオープン時のボタン*/
  }
  .hamburger[aria-expanded=true] .hamburger__line {
    background-color: transparent;
  }
  .hamburger[aria-expanded=true] .hamburger__line::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .hamburger[aria-expanded=true] .hamburger__line::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 0;
  }
  .hamburger__line {
    display: block;
    position: relative;
    width: 28px;
    height: 4px;
    border-radius: 6px;
    background-color: #f5f5f5;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .hamburger__line::before, .hamburger__line::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 4px;
    border-radius: 6px;
    background-color: #f5f5f5;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .hamburger__line::before {
    top: -10px;
  }
  .hamburger__line::after {
    bottom: -10px;
  }
}
/*
gnav
----------------*/
.gnav {
  position: fixed;
  top: 210px;
  z-index: 90;
  height: auto;
}
@media screen and (max-width: 768px) {
  .gnav {
    opacity: 0.95;
    top: 100px;
    right: -120%;
    padding: 45px 40px;
    border-radius: 5px;
    -webkit-box-shadow: 5px 5px 16px -6px rgba(0, 0, 0, 0.6);
            box-shadow: 5px 5px 16px -6px rgba(0, 0, 0, 0.6);
    background-image: url(../img/common/bg_nav.jpg);
    background-position: center;
    background-size: 70%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    /*ナビオープン時*/
  }
  .gnav[aria-hidden=false] {
    top: 30px;
    right: 30px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.gnav__list {
  margin-bottom: 55px;
}

.gnav--simple .gnav__list {
  margin-bottom: 0;
}

.gnav__item:not(:first-of-type) {
  margin-top: 18px;
}

.category {
  font-weight: bold;
  font-size: 1.3rem;
}

.category__list {
  margin-top: 24px;
}

.category__item:not(:first-child) {
  margin-top: 1.3em;
}

.category__item::before {
  content: "-";
  margin-right: 0.3em;
}

/*カテゴリー選択時の背景色*/
.category__item a {
  position: relative;
  text-decoration: none;
}
.category__item a::before {
  content: "";
  position: absolute;
  bottom: -0.1em;
  z-index: -1;
  width: 100%;
  height: 60%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category__item a:hover::before {
  background-color: rgba(143, 183, 223, 0.6);
}

.category__item.mixitup-control-active a::before {
  background-color: rgba(143, 183, 223, 0.6);
}

.gnav-bg {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: 100%;
  height: 100%;
  background-color: #324956;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .gnav[aria-hidden=false] + .gnav-bg {
    visibility: visible;
    opacity: 0.8;
  }
}
/*---------------
footer
----------------*/
.footer {
  padding: 20px;
}

.footer__pagetop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 10;
}

.footer__copyright {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-align: center;
}

/*---------------
works
----------------*/
.works {
  margin-bottom: 30px;
}

.works img {
  width: 100%;
}

/*summary*/
.heading-summary {
  margin-bottom: 1.1rem;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .heading-summary {
    margin-bottom: 0.7rem;
    padding-right: 0.6em;
    border-right: 2px solid #4c4c4c;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}

.heading-summary__category::before {
  content: "/";
  padding: 0 0.5em;
}
@media screen and (max-width: 768px) {
  .heading-summary__category::before {
    display: block;
    content: "";
    padding: 0;
  }
}

.thumb img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*detail*/
.hidden-content {
  display: none;
}

.detail {
  background-image: url(../img/common/bg_note.jpg);
  padding: 50px 7% 40px;
  line-height: 2;
  -webkit-box-shadow: -1px 6px 10px -3px rgba(0, 0, 0, 0.2);
          box-shadow: -1px 6px 10px -3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .detail {
    padding: 6vw 5% 5vw;
    line-height: 1.8;
  }
}
.detail p:not(.caption-top) + * {
  margin-top: 1em;
}

.heading-lv3 {
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  margin-bottom: 1em;
  padding-left: 6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .heading-lv3 {
    font-size: 2.2rem;
  }
}
.heading-lv3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 45px;
  height: 45px;
  padding-right: 0.7rem;
  background-image: url(../img/common/line_spring.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.detail__info {
  margin: 15px auto 0;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.8;
}
.detail__info::before {
  content: url(../img/common/line_wave.png);
}

.point {
  position: relative;
  padding-left: 1.3em;
  margin: 1.5em 0 1.5em 0.2em;
}
.point::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 100%;
  background-color: rgba(143, 183, 223, 0.6);
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
}
.point .c-ul {
  margin-left: 0;
}

.caption-top {
  font-weight: bold;
  font-size: 0.85em;
}

.caption-top i {
  padding-right: 0.3em;
  color: #b79c74;
}

.caption-bottom i {
  padding-right: 0.3em;
  color: #b79c74;
}

.caption-bottom {
  font-size: 1.2rem;
}

.caption-bottom i {
  padding-right: 0.3em;
  color: #666;
}

.mb-xl {
  margin-bottom: 3em;
}

.mb-ll {
  margin-bottom: 2.5em;
}

.mb-l {
  margin-bottom: 2em;
}

.mb-m {
  margin-bottom: 1em;
}

.mb-s {
  margin-bottom: 0.5em;
}

.shadow {
  -webkit-box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 4px 2px 16px -11px rgba(4, 3, 2, 0.28);
          box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 4px 2px 16px -11px rgba(4, 3, 2, 0.28);
}

.btn-detail {
  display: block;
  position: relative;
  width: 86px;
  height: 80px;
  margin: 10px auto 0;
  padding-bottom: 20px;
  border: none;
  background: url(../img/common/btn_text_detail.png) no-repeat transparent;
  background-size: contain;
  background-position: center 15px;
  color: #666;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn-detail::after {
  content: "";
  display: block;
  width: 62px;
  height: 28px;
  margin: 0 auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: url(../img/common/btn_after.png) no-repeat transparent;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn-detail:hover::after {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.btn-detail.on-click {
  opacity: 0;
  height: 0;
}

/*---------------
who?
----------------*/
.who {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 10px;
  line-height: 2.2;
}

.who__photo {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.who__body {
  padding: 30px 0;
}

.heading-who {
  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;
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .heading-who {
    font-size: 2.2rem;
  }
}

.heading-who__main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 0.5em;
  letter-spacing: 0.3em;
}

.heading-who__sub {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.6em;
  letter-spacing: 0.2em;
}

.who__text {
  margin-top: 1.5em;
}
.who__text p:not(:first-child) {
  padding-top: 1em;
}

/*profile*/
.profile {
  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;
  padding-top: 40px;
  font-size: 0.9em;
  line-height: 1.7;
}

.profile__date {
  width: 5.5em;
  padding: 0.5em 1em 0.5em 0;
  position: relative;
}

.profile__date::after {
  content: "●";
  position: absolute;
  right: -0.65em;
  top: 6.5px;
  color: rgba(143, 183, 223, 0.5);
}

.profile__text {
  width: calc(100% - 5.5em);
  padding: 0.5em 0 1.5em 1.5em;
  border-left: 2px solid rgba(143, 183, 223, 0.5);
  font-weight: bold;
}

.profile__explain {
  font-size: 0.8em;
  color: #666;
}/*# sourceMappingURL=style.css.map */