@charset "UTF-8";
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.onlySP__menu {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background-color: rgba(48, 109, 47, 0.9);
  padding: 30px;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.onlySP__menu ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.onlySP__menu ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

.onlySP__menu ul li:last-child {
  padding-bottom: 0;
}

.onlySP__menu ul a li {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 30px;
  margin-top: 50px;
}

/* このクラスを、jQueryで付与・削除する */
.onlySP__menu {
  visibility: hidden;
}

.onlySP__menu.active {
  opacity: 100;
  visibility: visible;
}

footer {
  width: 100%;
  height: 50px;
  background-color: #306D2F;
  color: #fff;
  text-align: center;
  margin-top: 100px;
}
footer small {
  display: block;
  padding-top: 15px;
}

.about__box {
  width: 100%;
  height: 80px;
  position: relative;
  z-index: 1;
}
.about__logo {
  position: absolute;
  top: 25px;
  left: 10px;
  z-index: 1;
  -webkit-animation: fuwafuwa 2s ease-in-out infinite alternate;
          animation: fuwafuwa 2s ease-in-out infinite alternate;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
            transform: translate(0, 0) rotate(-2deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
            transform: translate(0, 0) rotate(2deg);
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
            transform: translate(0, 0) rotate(-2deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
            transform: translate(0, 0) rotate(2deg);
  }
}
.about__logo img {
  width: 60%;
  height: auto;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.about__photo {
  text-align: center;
}
.about__photo img {
  width: 80%;
  height: auto;
  border-radius: 50%;
}
.about--nameJp {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}
.about--nameEn {
  font-size: 16px;
}
.about__text {
  text-align: center;
  line-height: 1.6em;
  margin-top: 20px;
}

.biography {
  margin-top: 50px;
  padding: 50px 0 50px;
  background-size: cover;
}
.biography__img {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 30px;
}
.biography__img img {
  width: 60%;
  height: auto;
  -webkit-animation: fuwafuwa 2s ease-in-out infinite alternate;
          animation: fuwafuwa 2s ease-in-out infinite alternate;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
            transform: translate(0, 0) rotate(-2deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
            transform: translate(0, 0) rotate(2deg);
  }
}
.biography__item {
  width: 80%;
  height: auto;
  margin: 0 auto;
  padding: 20px;
}
.biography__date {
  font-size: 16px;
  font-weight: 400;
  color: #306D2F;
}
.biography__title {
  font-size: 16px;
  font-weight: 400;
  color: #306D2F;
  margin-top: 5px;
}
.biography__bar {
  position: relative;
  padding-left: 15px;
}
.biography__bar::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  width: 10px;
  height: 50px;
  background-color: #306D2F;
}
.biography__dot {
  display: block;
  position: relative;
  width: 100%;
  height: 10px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.biography__dot::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: #306D2F;
}
.biography__text {
  padding-left: 1em;
}

.plant1 {
  text-align: center;
}
.plant1 img {
  width: 60px;
  height: auto;
  margin: 20px 0 20px;
}

.plant2 {
  text-align: center;
}
.plant2 img {
  width: 70px;
  height: auto;
  margin: 20px 0 20px;
}

.plant3 {
  text-align: center;
}
.plant3 img {
  width: 100px;
  height: auto;
  margin: 20px 0 20px;
}

.plant4 {
  text-align: center;
}
.plant4 img {
  width: 120px;
  height: auto;
  margin: 20px 0 20px;
}

.skills {
  margin: 0 auto;
  width: 80%;
  margin-top: 50px;
  padding: 20px;
}
.skills__title img {
  width: 40%;
  -webkit-animation: fuwafuwa 2s ease-in-out infinite alternate;
          animation: fuwafuwa 2s ease-in-out infinite alternate;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
            transform: translate(0, 0) rotate(-2deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
            transform: translate(0, 0) rotate(2deg);
  }
}
.skills__can {
  margin-top: 50px;
  text-align: center;
}
.skills__can img {
  width: 100%;
  height: auto;
}

.strength {
  margin-top: 150px;
}
.strength__item {
  width: 80%;
  text-align: center;
  margin: 0 auto;
}
.strength__title img {
  width: 70%;
  -webkit-animation: fuwafuwa 2s ease-in-out infinite alternate;
          animation: fuwafuwa 2s ease-in-out infinite alternate;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
            transform: translate(0, 0) rotate(-2deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
            transform: translate(0, 0) rotate(2deg);
  }
}
.strength__figure img {
  margin-top: 50px;
  width: 100%;
  margin-bottom: 50px;
}

.strength__detail {
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
}
.strength__detail--title {
  font-weight: 400;
  font-size: 20px;
  color: #306D2F;
  padding: 10px;
  padding-left: 0;
  position: relative;
  text-indent: 1em;
}
.strength__detail--title::before {
  content: "●";
  font-size: 20px;
  color: #306D2F;
  position: absolute;
  top: 10px;
  left: -20px;
}
.strength__detail--text {
  border-top: solid 1px #306D2F;
  padding-top: 5px;
  text-indent: 1em;
}

.mhdetail {
  width: 90%;
  margin: 0 auto;
}
.mhdetail h3 {
  font-weight: 400;
  padding-top: 60px;
  font-size: 24px;
}
.mhdetail__link {
  margin-top: 10px;
  text-align: right;
}
.mhdetail__text {
  margin-top: 20px;
  font-size: 13px;
  width: 90%;
}
.mhdetail__thumbnail img {
  width: 100%;
  margin-top: 30px;
}

.mhdata__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
}
.mhdata__inner dt {
  width: 30%;
  font-weight: 300;
  text-indent: 1em;
  font-size: 16px;
  position: relative;
}
.mhdata__inner dt::before {
  content: "●";
  font-size: 16px;
  color: #3D4251;
  position: absolute;
  top: 0;
  left: -18px;
}
.mhdata__inner2 {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}
.mhdata__inner2 dt {
  font-size: 16px;
  font-weight: 300;
  text-indent: 1em;
  position: relative;
}
.mhdata__inner2 dt::before {
  content: "●";
  font-size: 16px;
  color: #3D4251;
  position: absolute;
  top: 0;
  left: -18px;
}
.mhdata--color img {
  width: 100%;
  margin-top: 10px;
}
.mhdata--design, .mhdata--after {
  font-size: 13px;
  margin-top: 10px;
}
.mhdata--after {
  text-indent: 1em;
}

.mhimage--pc {
  text-align: center;
  margin-top: 30px;
}
.mhimage--pc img {
  width: 90%;
}
.mhimage__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  margin-top: 30px;
}
.mhimage__inner--sp {
  width: 32%;
}
.mhimage__inner--sp img {
  width: 100%;
}

/*==================================================
　5-3-7 上下に線が伸びて背景になる
===================================*/
@media screen and (min-width: 900px) {
  .mhdetail p {
    overflow: hidden;
  }
  .mhdetail p a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*アニメーションの指定*/
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 10px;
  }
  /*現在地とhoverの設定*/
  .mhdetail p a:hover {
    /*背景色をつける*/
    background: #3D4251;
    color: #fff;
  }
  /*背景がつくのアニメーションの開始を0.5秒遅らせる*/
  .mhdetail p a:hover {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  /*線の設定*/
  .mhdetail p a:before,
  .mhdetail p a:after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    left: 20px;
    /*線の形状*/
    height: 1px;
    width: 80%;
    background: #3D4251;
    /*アニメーションの指定*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  /*線の位置と変化*/
  .mhdetail p a::before {
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    /*X方向に-100%移動*/
    opacity: 0;
  }
  .mhdetail p a::after {
    bottom: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    /*X方向に100%移動*/
    opacity: 0;
  }
  /*hoverした際の線の変化*/
  .mhdetail p a:hover::before,
  .mhdetail p a:hover::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*X方向に0%移動*/
    opacity: 50;
  }
}
.ssdetail {
  width: 90%;
  margin: 0 auto;
}
.ssdetail h3 {
  font-weight: 400;
  padding-top: 60px;
  font-size: 24px;
}
.ssdetail__link {
  text-align: right;
  margin-top: 10px;
}
.ssdetail__text {
  margin-top: 20px;
  font-size: 13px;
  width: 90%;
}
.ssdetail__thumbnail img {
  width: 100%;
  margin-top: 30px;
}

.ssdata__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
}
.ssdata__inner dt {
  width: 30%;
  font-weight: 300;
  text-indent: 1em;
  font-size: 16px;
  position: relative;
}
.ssdata__inner dt::before {
  content: "●";
  font-size: 16px;
  color: #306D2F;
  position: absolute;
  top: 0;
  left: -18px;
}
.ssdata__inner2 {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}
.ssdata__inner2 dt {
  font-size: 16px;
  font-weight: 300;
  text-indent: 1em;
  position: relative;
}
.ssdata__inner2 dt::before {
  content: "●";
  font-size: 16px;
  color: #306D2F;
  position: absolute;
  top: 0;
  left: -18px;
}
.ssdata--color img {
  width: 100%;
  margin-top: 10px;
}
.ssdata--design, .ssdata--after {
  font-size: 13px;
  margin-top: 10px;
}
.ssdata--after {
  text-indent: 1em;
}

.ssimage--pc {
  text-align: center;
  margin-top: 30px;
}
.ssimage--pc img {
  width: 90%;
}
.ssimage__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  margin-top: 30px;
}
.ssimage__inner--sp {
  width: 32%;
  border: #306D2F 1px solid;
  border-bottom: none;
}
.ssimage__inner--sp img {
  width: 100%;
}

/*==================================================
　5-3-7 上下に線が伸びて背景になる
===================================*/
@media screen and (min-width: 900px) {
  .ssdetail p {
    overflow: hidden;
  }
  .ssdetail p a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*アニメーションの指定*/
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 10px;
  }
  /*現在地とhoverの設定*/
  .ssdetail p a:hover {
    /*背景色をつける*/
    background: #306D2F;
    color: #fff;
  }
  /*背景がつくのアニメーションの開始を0.5秒遅らせる*/
  .ssdetail p a:hover {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  /*線の設定*/
  .ssdetail p a:before,
  .ssdetail p a:after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    left: 20px;
    /*線の形状*/
    height: 1px;
    width: 80%;
    background: #306D2F;
    /*アニメーションの指定*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  /*線の位置と変化*/
  .ssdetail p a::before {
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    /*X方向に-100%移動*/
    opacity: 0;
  }
  .ssdetail p a::after {
    bottom: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    /*X方向に100%移動*/
    opacity: 0;
  }
  /*hoverした際の線の変化*/
  .ssdetail p a:hover::before,
  .ssdetail p a:hover::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /*X方向に0%移動*/
    opacity: 50;
  }
}
/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fadeUp {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
  }
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.delay-time01 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fadeLeft {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
  }
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
    @media screen and (max-width: 767px) {
      -webkit-transform: translateX(-50px);
              transform: translateX(-50px);
    }
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
    @media screen and (max-width: 767px) {
      -webkit-transform: translateX(-50px);
              transform: translateX(-50px);
    }
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* top用 */
.fadeleft {
  -webkit-animation-name: fadeleftAnime;
          animation-name: fadeleftAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fadeleft {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
  }
}

@-webkit-keyframes fadeleftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeleftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fadeRight {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
  }
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    @media screen and (max-width: 767px) {
      -webkit-transform: translateX(-50px);
              transform: translateX(-50px);
    }
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    @media screen and (max-width: 767px) {
      -webkit-transform: translateX(-50px);
              transform: translateX(-50px);
    }
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeDownTrigger,
.fadeleftTrigger {
  opacity: 0;
}

.others {
  width: 90%;
  margin: 0 auto;
}
.others__title {
  font-size: 24px;
  font-weight: 400;
  padding-top: 60px;
}
.others__text {
  font-size: 16px;
  margin-top: 10px;
}
.others__outer {
  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;
}
.others__inner {
  width: 48%;
  margin-top: 50px;
}
.others__inner .thumbnail img {
  width: 100%;
}
.others__inner .title {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 400;
}
.others__inner .subtitle {
  font-size: 12px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5em;
  color: #2a2922;
  background-image: url(../images/bgPc.jpg);
  background-size: cover;
  background-position: 50% 40%;
  background-attachment: fixed;
}
@media screen and (max-width: 900px) {
  body {
    background-image: url(../images/bgTab.jpg);
  }
}

.container {
  background: #fcfcfc;
  -webkit-box-shadow: 0 0 30px 3px rgba(110, 90, 70, 0.6);
          box-shadow: 0 0 30px 3px rgba(110, 90, 70, 0.6);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container {
    margin: 0 30px 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 500px;
    border-left: 2px solid #306D2F;
    border-right: 2px solid #306D2F;
  }
}

.marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  gap: 1rem;
  font-size: 70px;
  height: 45px;
  position: fixed;
  bottom: 100px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .marquee {
    display: none;
  }
}

.marquee-inner {
  -webkit-animation: marquee 40s linear infinite;
          animation: marquee 40s linear infinite;
  color: #fcfcfc;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .marquee-inner {
    display: none;
  }
}

@-webkit-keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}

@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}
.mainvisual {
  overflow: hidden;
}
.mainvisual img {
  width: 110%;
  height: auto;
  margin-top: 50px;
}
@media screen and (min-width: 900px) {
  .mainvisual img {
    margin-top: 10px;
  }
}

.namelogo {
  position: relative;
}
.namelogo img {
  width: 85%;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  position: absolute;
  top: -100px;
  left: 0;
}

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

.onlyPc {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .onlyPc {
    display: none;
  }
}
.onlyPc__menu {
  font-weight: 400;
  font-size: 20px;
  margin-left: 25px;
  margin-top: 130px;
}
.onlyPc__menu ul li {
  margin-top: 30px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: relative;
  color: #fcfcfc;
  padding: 10px;
}

/*==================================================
　5-3-6 左から右に線が伸びて背景になる
===================================*/
/*背景の設定*/
.gnavi a li {
  /*背景色の基点とするためrelativeを指定*/
  position: relative;
  /*アニメーションの指定*/
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.gnavi a li::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  /*背景の形状*/
  width: 0;
  height: 1px;
  background: #306D2F;
  opacity: 0;
  border-radius: 5px;
  /*はじめは透過を0に*/
}

/*現在地とhoverの設定*/
.gnavi a .current::after,
.gnavi a li:hover::after {
  /*背景の形状*/
  width: 100%;
  opacity: 1;
  /*アニメーションの指定*/
  -webkit-animation: bgappear 0.5s forwards;
          animation: bgappear 0.5s forwards;
}

/*アニメーションで線を伸ばして背景をつける*/
@-webkit-keyframes bgappear {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #306D2F;
  }
}
@keyframes bgappear {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #306D2F;
  }
}
/*現在地とhoverの設定*/
.gnavi a .current,
.gnavi a li:hover {
  color: #fff;
  /*テキストを最前面へ*/
  z-index: 1;
}

.namelogoPc img {
  position: fixed;
  top: -10px;
  left: -10px;
  width: 280px;
}

.top__logo img {
  width: 40%;
  height: auto;
  margin-top: 100px;
  margin-left: 30px;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-animation: fuwafuwa 2s ease-in-out infinite alternate;
          animation: fuwafuwa 2s ease-in-out infinite alternate;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
            transform: translate(0, 0) rotate(-3deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
            transform: translate(0, 0) rotate(2deg);
  }
}
.top__photo {
  text-align: center;
  margin-top: 100px;
}
.top__photo img {
  width: 70%;
  height: auto;
  -webkit-animation: fuwafuwa 2s ease-in-out infinite alternate;
          animation: fuwafuwa 2s ease-in-out infinite alternate;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
            transform: translate(0, 0) rotate(-2deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
            transform: translate(0, 0) rotate(2deg);
  }
}

.motto {
  margin-top: 150px;
  margin-bottom: 50px;
}
.motto__text {
  text-align: center;
  margin-top: 10px;
}

.works {
  width: 90%;
  margin: 0 auto;
}
.works__thumbnail {
  overflow: hidden;
}
.works__thumbnail img {
  width: 100%;
  height: auto;
  margin-top: 50px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 900px) {
  .works__thumbnail img:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
.works__title {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 40px;
}

.top__about--photo img {
  width: 100%;
  height: auto;
  margin-top: 35px;
  margin-bottom: 20px;
}
.top__about--nameJp {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}
.top__about--nameEn {
  font-size: 16px;
  font-weight: 400;
}
.top__about--text {
  font-size: 14px;
  line-height: 1.5em;
}
.top__about--btn {
  background-color: #fff;
  border: solid 1px #2a2922;
  width: 130px;
  height: 35px;
  border-radius: 9999px;
  margin-left: auto;
  margin-right: 40px;
  margin-top: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
@media screen and (min-width: 900px) {
  .top__about--btn:hover {
    background-color: #306D2F;
    border: none;
    color: #fff;
  }
}

.top__aboutInner {
  width: 80%;
  margin: 0 auto;
}