@charset "UTF-8";
/* 

*** Adobefont - 遅延対策
*** media queries
*** layout
*** animation

*/
/*==================================================

*** iphone - 表示崩れ対策
==================================================*/
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

/*==================================================

*** Adobefont - 遅延対策
==================================================*/
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

/*==================================================

*** media queries
==================================================*/
/*==================================================

*** layout
==================================================*/
body {
  position: relative;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 480px) {
  .container {
    /* < 480px */
    padding: 0 3rem;
  }
}

.inb {
  display: inline-block;
}

/*==================================================

*** animation
==================================================*/
.fadein {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 

*** color
*** z-index
*** typography

*/
/* 

*** Adobefont - 遅延対策
*** media queries
*** layout
*** animation

*/
/*==================================================

*** iphone - 表示崩れ対策
==================================================*/
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

/*==================================================

*** Adobefont - 遅延対策
==================================================*/
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

/*==================================================

*** media queries
==================================================*/
/*==================================================

*** layout
==================================================*/
body {
  position: relative;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 480px) {
  .container {
    /* < 480px */
    padding: 0 3rem;
  }
}

.inb {
  display: inline-block;
}

/*==================================================

*** animation
==================================================*/
.fadein {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================

*** color
==================================================*/
/*==================================================

*** z-index
==================================================*/
/*==================================================

*** typography
==================================================*/
.klee {
  font-family: fot-klee-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 

*** Adobefont - 遅延対策
*** media queries
*** layout
*** animation

*/
/*==================================================

*** iphone - 表示崩れ対策
==================================================*/
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

/*==================================================

*** Adobefont - 遅延対策
==================================================*/
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

/*==================================================

*** media queries
==================================================*/
/*==================================================

*** layout
==================================================*/
body {
  position: relative;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 480px) {
  .container {
    /* < 480px */
    padding: 0 3rem;
  }
}

.inb {
  display: inline-block;
}

/*==================================================

*** animation
==================================================*/
.fadein {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 

*** color
*** z-index
*** typography

*/
/* 

*** Adobefont - 遅延対策
*** media queries
*** layout
*** animation

*/
/*==================================================

*** iphone - 表示崩れ対策
==================================================*/
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

/*==================================================

*** Adobefont - 遅延対策
==================================================*/
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

/*==================================================

*** media queries
==================================================*/
/*==================================================

*** layout
==================================================*/
body {
  position: relative;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 480px) {
  .container {
    /* < 480px */
    padding: 0 3rem;
  }
}

.inb {
  display: inline-block;
}

/*==================================================

*** animation
==================================================*/
.fadein {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================

*** color
==================================================*/
/*==================================================

*** z-index
==================================================*/
/*==================================================

*** typography
==================================================*/
.klee {
  font-family: fot-klee-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 

*** header__inner
*** burger-btn
*** drawer

*/
.header {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .header {
    /* < 768px */
    padding: 0;
  }
}

.header.fixed {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
}

/*==================================================

*** header__inner
==================================================*/
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .header__inner {
    /* < 768px */
    display: none;
  }
}

.header__logo {
  width: 200px;
}

.header__logo > a {
  display: flex;
  align-items: center;
}

.header__nav {
  padding-right: 6%;
  width: 32%;
  max-width: 380px;
  min-width: 300px;
}

.header__list {
  display: flex;
  justify-content: space-between;
}

.header__item {
  transition: all 0.2s;
}

.header__item:hover {
  color: rgb(49, 108, 7);
}

/*==================================================

*** burger-btn
==================================================*/
.fix {
  display: block;
}
@media (max-width: 768px) {
  .fix {
    /* < 768px */
    margin-top: 1rem;
  }
}
@media (max-width: 480px) {
  .fix {
    /* < 480px */
    margin-top: 2rem;
  }
}

.burger-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  visibility: hidden;
  opacity: 0;
  margin-left: auto;
  width: 42px;
  height: 42px;
  z-index: 3;
  background: #3b7e0a;
  border-radius: 8px 3px 14px 3px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .burger-btn {
    /* < 768px */
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .burger-btn {
    /* < 480px */
    top: 5px;
    right: 5px;
  }
}

.burger-btn.show {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 768px) {
  .burger-btn.show {
    /* < 768px */
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .burger-btn.show {
    /* < 480px */
    top: 5px;
    right: 5px;
  }
}

.burger-btn.close {
  position: fixed;
}

.burger-btn.fixed {
  position: fixed;
}

#about .burger-btn,
#works .burger-btn,
.work .burger-btn {
  visibility: visible;
  opacity: 1;
}

.bar {
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}

.bar_top {
  top: 13px;
  transition: transform 0.4s;
}

.bar_mid {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}

.bar_bottom {
  bottom: 13px;
  transition: transform 0.4s;
}

.burger-btn.close .bar_top {
  transform: translate(-50%, 8px) rotate(45deg);
  transition: transform 0.4s;
}

.burger-btn.close .bar_mid {
  opacity: 0;
  transition: opacity 0.4s;
}

.burger-btn.close .bar_bottom {
  transform: translate(-50%, -6px) rotate(-45deg);
  transition: transform 0.4s;
}

/*==================================================

*** drawer
==================================================*/
.drawer {
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding-left: 20%;
  width: 100vw;
  height: 100vh;
  background: #f8f8ed;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer.open {
  visibility: visible;
  opacity: 1;
}

.drawer__list {
  margin-top: 10vh;
  width: 200px;
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .drawer__list {
    /* < 768px */
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .drawer__list {
    /* < 480px */
    font-size: 2rem;
  }
}

.drawer__list__item {
  transition: all 0.2s;
}

.drawer__list__item:hover {
  color: #316c07;
}

.drawer__list__item:nth-of-type(n + 2) {
  margin-top: 6vh;
}

.drawer__logo {
  margin-top: 15vh;
  width: 220px;
}
@media (max-width: 768px) {
  .drawer__logo {
    /* < 768px */
    width: 180px;
  }
}
@media (max-width: 480px) {
  .drawer__logo {
    /* < 480px */
    width: 160px;
  }
}

/* 

*** Adobefont - 遅延対策
*** media queries
*** layout
*** animation

*/
/*==================================================

*** iphone - 表示崩れ対策
==================================================*/
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

/*==================================================

*** Adobefont - 遅延対策
==================================================*/
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

/*==================================================

*** media queries
==================================================*/
/*==================================================

*** layout
==================================================*/
body {
  position: relative;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 480px) {
  .container {
    /* < 480px */
    padding: 0 3rem;
  }
}

.inb {
  display: inline-block;
}

/*==================================================

*** animation
==================================================*/
.fadein {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 

*** color
*** z-index
*** typography

*/
/* 

*** Adobefont - 遅延対策
*** media queries
*** layout
*** animation

*/
/*==================================================

*** iphone - 表示崩れ対策
==================================================*/
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

/*==================================================

*** Adobefont - 遅延対策
==================================================*/
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

/*==================================================

*** media queries
==================================================*/
/*==================================================

*** layout
==================================================*/
body {
  position: relative;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 480px) {
  .container {
    /* < 480px */
    padding: 0 3rem;
  }
}

.inb {
  display: inline-block;
}

/*==================================================

*** animation
==================================================*/
.fadein {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================

*** color
==================================================*/
/*==================================================

*** z-index
==================================================*/
/*==================================================

*** typography
==================================================*/
.klee {
  font-family: fot-klee-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 

*** .footer-left
*** .footer-right

*/
.footer {
  position: relative;
  margin-top: 14rem;
}
@media (max-width: 768px) {
  .footer {
    /* < 768px */
    margin-top: 11rem;
  }
}
@media (max-width: 480px) {
  .footer {
    /* < 480px */
    margin-top: 12rem;
  }
}

/*==================================================

*** footer-left
==================================================*/
.footer-left {
  position: relative;
  z-index: 1;
  padding: 6rem 16% 3rem 8.7%;
  width: 92%;
  border-radius: 40px 0 80px 0;
  background: #f8f8ed;
}
@media (max-width: 1024px) {
  .footer-left {
    /* < 1024px */
    padding: 6rem 12% 3rem 7%;
    padding-right: 12%;
    width: 90%;
  }
}
@media (max-width: 768px) {
  .footer-left {
    /* < 768px */
    align-items: flex-end;
    padding: 5rem 0 2.5rem 10%;
    width: 85%;
  }
}
@media (max-width: 480px) {
  .footer-left {
    /* < 480px */
    width: 80%;
  }
}

.footer-left-top {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer-left-top {
    /* < 1024px */
  }
}
@media (max-width: 768px) {
  .footer-left-top {
    /* < 768px */
    align-items: flex-end;
  }
}
@media (max-width: 480px) {
  .footer-left-top {
    display: block;
  }
}

.footer-left-bottom {
  margin-top: 5rem;
  font-size: 1.2rem;
  color: #555555;
}
@media (max-width: 768px) {
  .footer-left-bottom {
    /* < 768px */
    margin-top: 4rem;
  }
}
@media (max-width: 480px) {
  .footer-left-bottom {
    /* < 480px */
    font-size: 1rem;
  }
}

.footer-left__main {
  display: flex;
  align-items: center;
  margin-right: 5rem;
}
@media (max-width: 768px) {
  .footer-left__main {
    /* < 768px */
    display: block;
    margin-right: 4.5rem;
  }
}

.footer-left__logo {
  width: 80px;
}
@media (max-width: 768px) {
  .footer-left__logo {
    /* < 768px */
    width: 65px;
  }
}
@media (max-width: 480px) {
  .footer-left__logo {
    /* < 480px */
    width: 50px;
  }
}

.footer-left__nav {
  margin-left: 8rem;
}
@media (max-width: 1024px) {
  .footer-left__nav {
    /* < 1024px */
    margin-left: 6rem;
  }
}
@media (max-width: 768px) {
  .footer-left__nav {
    /* < 768px */
    margin-left: 0;
  }
}

.footer-left__list {
  display: flex;
}
@media (max-width: 768px) {
  .footer-left__list {
    /* < 768px */
    margin-top: 3rem;
  }
}
@media (max-width: 480px) {
  .footer-left__list {
    /* < 480px */
    display: block;
  }
}

.footer-left__item {
  transition: all 0.2s;
}

.footer-left__item:not(:last-of-type) {
  margin-right: 5rem;
}
@media (max-width: 1024px) {
  .footer-left__item:not(:last-of-type) {
    /* < 1024px */
    margin-right: 4.5rem;
  }
}
@media (max-width: 768px) {
  .footer-left__item:not(:last-of-type) {
    /* < 768px */
    margin-right: 3rem;
  }
}
@media (max-width: 480px) {
  .footer-left__item:not(:last-of-type) {
    /* < 480px */
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .footer-left__item:not(:first-of-type) {
    /* < 480px */
    margin-top: 2rem;
  }
}

.footer-left__item:hover {
  color: rgb(49, 108, 7);
}

.footer-left__sns {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .footer-left__sns {
    /* < 480px */
    margin-top: 2.5rem;
  }
}

.insta {
  width: 20px;
  transition: all 0.2s;
  margin-bottom: 0.2rem;
}
@media (max-width: 768px) {
  .insta {
    /* < 768px */
  }
}
@media (max-width: 480px) {
  .insta {
    /* < 480px */
  }
}

.insta > a {
  display: flex;
  align-items: center;
}

.twitter {
  width: 28px;
  transition: all 0.2s;
}

.footer-left__sns img {
  width: 100%;
}

.insta:hover {
  opacity: 0.8;
}

/*==================================================

*** footer-right
==================================================*/
.footer-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 16%;
  height: 100%;
  background: #eaead0;
}
@media (max-width: 1024px) {
  .footer-right {
    /* < 1024px */
  }
}
@media (max-width: 768px) {
  .footer-right {
    /* < 768px */
    width: 30%;
  }
}
@media (max-width: 480px) {
  .footer-right {
    /* < 480px */
    width: 44%;
  }
}

.pagetop {
  position: relative;
  height: 100%;
}

.pagetop > a:hover img {
  bottom: 28%;
}

.pagetop > a:hover span {
  bottom: 28%;
}

.pagetop > a {
  display: flex;
  padding-left: 70%;
  height: 100%;
}
@media (max-width: 1024px) {
  .pagetop > a {
    /* < 1024px */
    padding-left: 64%;
  }
}
@media (max-width: 768px) {
  .pagetop > a {
    /* < 768px */
    padding-left: 71%;
  }
}

.pagetop img {
  position: absolute;
  bottom: 24%;
  width: 6px;
  transition: all ease-out 0.3s;
}

.pagetop span {
  position: absolute;
  right: 15%;
  bottom: 24%;
  display: inline-block;
  margin-left: 0.5rem;
  writing-mode: vertical-rl;
  color: #555555;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  transition: all ease-out 0.3s;
}

/* 

*** color
*** z-index
*** typography

*/
/* 

*** Adobefont - 遅延対策
*** media queries
*** layout
*** animation

*/
/*==================================================

*** iphone - 表示崩れ対策
==================================================*/
html {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

/*==================================================

*** Adobefont - 遅延対策
==================================================*/
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

/*==================================================

*** media queries
==================================================*/
/*==================================================

*** layout
==================================================*/
body {
  position: relative;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 480px) {
  .container {
    /* < 480px */
    padding: 0 3rem;
  }
}

.inb {
  display: inline-block;
}

/*==================================================

*** animation
==================================================*/
.fadein {
  animation: fadein 2s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================

*** color
==================================================*/
/*==================================================

*** z-index
==================================================*/
/*==================================================

*** typography
==================================================*/
.klee {
  font-family: fot-klee-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 

*** h
*** pc
*** btn
*** btn-next
*** contact
*** page-title
*** h2-number
*** works → color

*/
/*==================================================

*** h
==================================================*/
.h2 {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  color: #3b7e0a;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .h2 {
    /* < 768px */
    font-size: 4.2rem;
  }
}
@media (max-width: 480px) {
  .h2 {
    /* < 480px */
    font-size: 3.5rem;
  }
}

.h2 + * {
  margin-top: 4.4rem;
}
@media (max-width: 768px) {
  .h2 + * {
    /* < 768px */
    margin-top: 4rem;
  }
}
@media (max-width: 480px) {
  .h2 + * {
    /* < 480px */
    margin-top: 3.5rem;
  }
}

/*==================================================

*** pc
==================================================*/
@media (min-width: 1366px) {
  .pc {
    /* > 1366px */
    display: none;
  }
}

/*==================================================

*** btn
==================================================*/
.btn-more {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 14px 0;
  width: 200px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 15px 2px 15px 2px;
  background: linear-gradient(90deg, #c1d10d 0%, #94cd2c 100%);
  transition: 0.2s;
}

.btn-more:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 15px 2px 15px 2px;
  background-color: #3b7e0a;
  opacity: 0;
  transition: 0.3s;
}

.btn-more:hover:after {
  opacity: 1;
}

/*==================================================

*** btn-next
==================================================*/
.btn-next {
  margin: 15rem auto 0;
  width: 50%;
  text-align: center;
  color: #fff;
  border-radius: 20px 4px 20px 4px;
  background: linear-gradient(90deg, #c1d10d 0%, #94cd2c 51%, rgb(160, 209, 13) 100%);
  background-size: 200% auto;
  transition: all ease-out 0.3s;
}
@media (max-width: 768px) {
  .btn-next {
    /* < 768px */
    margin-top: 12.5rem;
    width: 80%;
  }
}
@media (max-width: 480px) {
  .btn-next {
    /* < 480px */
    margin-top: 10rem;
    width: 77%;
  }
}

.btn-next:hover {
  background-position: right center;
}

.btn-next:hover .btn-next__inner::before {
  right: 6.5%;
}

.btn-next > a {
  display: inline-block;
  position: relative;
  padding: 0.8em 0;
  width: 100%;
  font-size: 2.3rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  .btn-next > a {
    /* < 768px */
    font-size: 1.9rem;
  }
}
@media (max-width: 480px) {
  .btn-next > a {
    /* < 480px */
    padding: 0.8em 12.5%;
    text-align: left;
    font-size: 1.6rem;
  }
}

.btn-next > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: 10%;
  height: 7px;
  background: url(../img/icn/arrow-contact.svg) no-repeat;
  transition: all ease-out 0.3s;
}
@media (max-width: 768px) {
  .btn-next > a::before {
    /* < 768px */
    width: 44px;
  }
}
@media (max-width: 480px) {
  .btn-next > a::before {
    /* < 480px */
    right: 12.5%;
    width: 19%;
  }
}

.btn-next span {
  display: block;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .btn-next span {
    /* < 768px */
    margin-top: -0.3rem;
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .btn-next span {
    /* < 480px */
    margin-top: -0.5rem;
  }
}

/*==================================================

*** contact
==================================================*/
.contact {
  display: flex;
  justify-content: space-between;
  padding: 6rem 7rem;
  border-radius: 60px 10px 100px 10px;
  background: #f8f8ed;
}
@media (max-width: 1024px) {
  .contact {
    /* < 1024px */
    display: block;
    padding: 5.5rem 6rem;
  }
}
@media (max-width: 768px) {
  .contact {
    /* < 768px */
    padding: 5.5rem 4.5rem;
  }
}
@media (max-width: 480px) {
  .contact {
    /* < 480px */
    padding: 5rem 3rem;
    border-radius: 50px 10px 80px 10px;
  }
}

.contact-top {
  margin-top: 14rem;
}
@media (max-width: 768px) {
  .contact-top {
    /* < 768px */
    margin-top: 13rem;
  }
}
@media (max-width: 480px) {
  .contact-top {
    /* < 480px */
    margin-top: 12rem;
  }
}

.contact-subpage {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .contact-subpage {
    /* < 768px */
    margin-top: 9rem;
  }
}
@media (max-width: 480px) {
  .contact-subpage {
    /* < 480px */
    margin-top: 8rem;
  }
}

.contact__inner {
  width: 50%;
}
@media (max-width: 1024px) {
  .contact__inner {
    /* < 1024px */
    width: 100%;
  }
}

.contact__h2 {
  font-size: 5rem;
  color: #468618;
}
@media (max-width: 1024px) {
  .contact__h2 {
    /* < 1024px */
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact__h2 {
    /* < 768px */
    font-size: 4.2rem;
  }
}
@media (max-width: 480px) {
  .contact__h2 {
    /* < 480px */
    font-size: 3.5rem;
  }
}

.contact__text {
  margin-top: 0.8rem;
}
@media (max-width: 1024px) {
  .contact__text {
    /* < 1024px */
    text-align: center;
  }
}

.contact__text > br {
  display: none;
}
@media (max-width: 1024px) {
  .contact__text > br {
    /* < 1024px */
    display: block;
  }
}
@media (max-width: 768px) {
  .contact__text > br {
    /* < 768px */
    display: none;
  }
}

.cta-container {
  display: flex;
  align-items: center;
  width: 45%;
  color: #fff;
  font-size: 2.6rem;
  border-radius: 26px 4px 54px 4px;
  background: linear-gradient(90deg, #c1d10d 0%, #94cd2c 51%, rgb(160, 209, 13) 100%);
  background-size: 200% auto;
  transition: all ease-out 0.3s;
}
@media (max-width: 1024px) {
  .cta-container {
    /* < 1024px */
    margin-top: 4rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cta-container {
    /* < 768px */
    margin-top: 3.5rem;
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .cta-container {
    /* < 480px */
    margin-top: 3rem;
    font-size: 1.8rem;
  }
}

.cta-container:hover {
  background-position: right center;
}

.cta-container:hover .cta::before {
  right: 5%;
}

.cta {
  position: relative;
  padding: 54px 15%;
  width: 100%;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .cta {
    /* < 1024px */
    padding: 45px 12%;
  }
}
@media (max-width: 768px) {
  .cta {
    /* < 768px */
    padding: 40px 12%;
  }
}

.cta::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  width: 19%;
  height: 7px;
  background: url(../img/icn/arrow-contact.svg) no-repeat;
  transition: all ease-out 0.3s;
}
@media (max-width: 1024px) {
  .cta::before {
    /* < 1024px */
    right: 14%;
  }
}

/*==================================================

*** page-title
==================================================*/
.page-title {
  position: relative;
}

.page-title__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  left: 10%;
  min-width: 26%;
  height: 100%;
}
@media (min-width: 1366px) {
  .page-title__inner {
    /* < 1366px */
    left: 8.5%;
    min-width: auto;
  }
}
@media (max-width: 768px) {
  .page-title__inner {
    /* < 768px */
    min-width: 34%;
  }
}

.title-logo {
  width: 12rem;
  position: relative;
  top: 7rem;
}
@media (max-width: 768px) {
  .title-logo {
    /* < 768px */
    width: 10rem;
  }
}
@media (max-width: 480px) {
  .title-logo {
    /* < 480px */
    width: 7rem;
  }
}

.page-title__h1 {
  position: relative;
  z-index: 1;
  padding: 4rem 6rem 0 0;
  border-radius: 0 15px 0 0;
  min-width: 16rem;
  background: #fff;
}
@media (min-width: 1366px) {
  .page-title__h1 {
    /* < 1366px */
    font-size: 8rem;
  }
}
@media (max-width: 768px) {
  .page-title__h1 {
    /* < 768px */
    padding: 3rem 4.5rem 0 0;
  }
}
@media (max-width: 480px) {
  .page-title__h1 {
    /* < 480px */
    padding: 30px 2rem 0 0;
  }
}

@media (min-width: 1366px) {
  .page-title__h1 > h1 {
    /* < 1366px */
    line-height: 1;
  }
}

.fadein-2 {
  display: inline-block;
  font-size: 6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #3b7e0a;
}
@media (min-width: 1366px) {
  .fadein-2 {
    /* < 1366px */
    font-size: 8rem;
    font-size: clamp(6rem, 4.2vw, 8rem);
    line-height: 1.2;
  }
}
@media (max-width: 1024px) {
  .fadein-2 {
    /* < 1024px */
    font-size: 5.8vw;
  }
}
@media (max-width: 768px) {
  .fadein-2 {
    /* < 768px */
  }
}
@media (max-width: 480px) {
  .fadein-2 {
    /* < 480px */
    font-size: 2.8rem;
  }
}

.fadein-2 > .br {
  display: inline-block;
  line-height: 1;
}

.page-title__jp {
  display: block;
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 2rem;
  color: #222;
}
@media (max-width: 768px) {
  .page-title__jp {
    /* < 768px */
    margin-top: 0.5rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .page-title__jp {
    /* < 480px */
    font-size: 1.4rem;
  }
}

.page-title__jp br {
  display: none;
}
@media (max-width: 480px) {
  .page-title__jp br {
    /* < 480px */
    display: block;
  }
}

.page-title__keyvisual {
  display: block;
  margin-left: auto;
  width: 68%;
  height: 33.2vw;
  min-height: 500px;
  max-height: 650px;
}
@media (max-width: 768px) {
  .page-title__keyvisual {
    /* < 768px */
    width: 62%;
    height: 370px;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .page-title__keyvisual {
    /* < 480px */
    width: 60%;
    height: 322px;
  }
}

.page-title__keyvisual source,
.page-title__keyvisual img {
  width: 100%;
  height: 100%;
  border-radius: 80px 0 0 10px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .page-title__keyvisual source,
.page-title__keyvisual img {
    /* < 768px */
    border-radius: 70px 0 0 10px;
  }
}
@media (max-width: 480px) {
  .page-title__keyvisual source,
.page-title__keyvisual img {
    /* < 480px */
    border-radius: 60px 0 0 10px;
  }
}

/*==================================================

*** h2-number
==================================================*/
.h2-number {
  position: relative;
  z-index: 1;
  left: -4px;
  font-size: 5rem;
  color: #3b7e0a;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .h2-number {
    /* < 768px */
    font-size: 4.2rem;
  }
}
@media (max-width: 480px) {
  .h2-number {
    /* < 480px */
    font-size: 3.5rem;
  }
}

.h2-number + * {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .h2-number + * {
    /* < 768px */
    margin-top: 4rem;
  }
}
@media (max-width: 480px) {
  .h2-number + * {
    /* < 480px */
    margin-top: 3.5rem;
  }
}

.h2-number span {
  position: relative;
  display: block;
  margin-top: 0.8rem;
  padding-left: 2.3rem;
  color: #222;
  font-size: 1.4rem;
}

.h2-number span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-57%);
  width: 14px;
  height: 14px;
  background: #dded99;
  border-radius: 4px 2px 6px 2px;
}

.work .h2-number span::before {
  background: #e0e9b9;
}

/*==================================================

*** text-link
==================================================*/
.text-link {
  border-bottom: 1px solid #a7a7a7;
  transition: 0.4s;
}

.text-link:hover {
  color: #939393;
}

/*==================================================

*** works → color
==================================================*/
.color-1 {
  border-radius: 4px 0 0 4px;
}

.color-4 {
  border-radius: 0 4px 4px 0;
}

/* 

*** hero
*** about
*** works
// **** .works__main
// **** .works__others
// **** .works__btn
*** contact

*/
/*==================================================

*** hero
==================================================*/
.hero {
  position: relative;
  margin-bottom: 15rem;
}
@media (max-width: 768px) {
  .hero {
    /* < 768px */
    margin-bottom: 11rem;
  }
}
@media (max-width: 480px) {
  .hero {
    /* < 480px */
    margin-bottom: 8rem;
  }
}

.hero-main {
  position: relative;
  z-index: 1;
  margin-top: 7rem;
}

.hero-logo {
  width: 120px;
}
@media (max-width: 768px) {
  .hero-logo {
    /* < 768px */
    width: 100px;
  }
}
@media (max-width: 480px) {
  .hero-logo {
    /* < 480px */
    width: 70px;
    min-width: auto;
  }
}

.hero-main__inner {
  position: absolute;
  top: 70px;
  left: 10%;
  z-index: 1;
  max-width: 522px;
}
@media (min-width: 1366px) {
  .hero-main__inner {
    /* > 1366px */
    max-width: 900px;
  }
}

.copy {
  position: relative;
  margin-top: 11rem;
  overflow: hidden;
}
@media (max-width: 480px) {
  .copy {
    /* < 480px */
    margin-top: 8rem;
  }
}

.copy__wrap {
  position: relative;
  display: block;
  padding: 0 0.27em 0 0.3em;
  line-height: 2.2;
  color: #3b7e0a;
  font-size: 6rem;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
  letter-spacing: 5px;
  font-weight: 300;
}
@media (min-width: 1366px) {
  .copy__wrap {
    /* > 1366px */
    font-size: 9rem;
    font-size: clamp(6rem, 4.6vw, 12rem);
  }
}
@media (max-width: 768px) {
  .copy__wrap {
    /* < 768px */
    padding: 0 0.24em 0 0.3em;
    font-size: 9vw;
    font-size: clamp(3.2rem, 8.8vw, 6rem);
  }
}

.copy__wrap:nth-of-type(n + 2) {
  display: inline-block;
  margin-top: 0.4em;
}

.bg-1::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  animation-name: slidein;
  animation-delay: 0.8s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  opacity: 0;
}

.bg-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 2px 2px 2px 2px;
  animation-name: slidein;
  animation-delay: 2s;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  opacity: 0;
}

.inn-1,
.inn-2 {
  line-height: 1;
}

@keyframes slidein {
  from {
    transform: translateX(-100%);
    opacity: 1;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.hero-h2 {
  margin: 5.2rem 0 0 3rem;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media (min-width: 1366px) {
  .hero-h2 {
    /* > 1366px */
    font-size: 2.2rem;
    font-size: clamp(1.8rem, 1.3vw, 3rem);
  }
}
@media (max-width: 768px) {
  .hero-h2 {
    /* < 768px */
    margin: 13% 0 0 7%;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
  }
}
@media (max-width: 480px) {
  .hero-h2 {
    /* < 480px */
    font-size: 1.1rem;
  }
}

.hero-h2 > span {
  font-size: 1.4rem;
}
@media (min-width: 1366px) {
  .hero-h2 > span {
    /* > 1366px */
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 1.02vw, 2.5rem);
  }
}
@media (max-width: 768px) {
  .hero-h2 > span {
    /* < 768px */
    font-size: 1.2rem;
    font-size: clamp(0.9rem, 2vw, 1.4rem);
  }
}
@media (max-width: 480px) {
  .hero-h2 > span {
    /* < 480px */
    font-size: 0.9rem;
  }
}

.keyvisual {
  width: 68%;
  margin-left: auto;
  height: clamp(62rem, 50vw, 70rem);
  min-height: 680px;
}
@media (max-width: 1024px) {
  .keyvisual {
    /* < 1024px */
    width: 66%;
    height: 680px;
  }
}
@media (max-width: 768px) {
  .keyvisual {
    /* < 768px */
    width: 60%;
  }
}
@media (max-width: 480px) {
  .keyvisual {
    /* < 480px */
    width: 46%;
    height: 470px;
    min-height: auto;
  }
}

.keyvisual source,
.keyvisual img {
  width: 100%;
  height: 100%;
  border-radius: 80px 0 0 10px;
  object-fit: cover;
}
@media (max-width: 480px) {
  .keyvisual source,
.keyvisual img {
    /* < 480px */
    border-radius: 60px 0 0 10px;
  }
}

.hero-bg {
  position: absolute;
  z-index: -1;
  top: 120px;
  left: 0;
  width: 38%;
  height: clamp(60rem, 45vw, 63rem);
  min-height: 600px;
  border-radius: 0 0 6px 0;
  background: #f8f8ed;
}
@media (max-width: 1024px) {
  .hero-bg {
    /* < 1024px */
    width: 43%;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .hero-bg {
    /* < 768px */
    width: 45%;
  }
}
@media (max-width: 480px) {
  .hero-bg {
    /* < 480px */
    width: 64%;
    height: 420px;
    min-height: auto;
  }
}

/*==================================================

*** about
==================================================*/
.about {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16rem;
}
@media (max-width: 1024px) {
  .about {
    /* < 1024px */
  }
}
@media (max-width: 768px) {
  .about {
    /* < 768px */
    flex-direction: column-reverse;
    margin-top: 17rem;
  }
}
@media (max-width: 480px) {
  .about {
    /* < 480px */
    width: 100%;
  }
}

.about__inner {
  width: 55vw;
  max-width: 57rem;
}
@media (max-width: 1024px) {
  .about__inner {
    /* < 1024px */
    margin-top: 5rem;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .about__inner {
    /* < 768px */
    width: 100%;
    max-width: 55rem;
  }
}
@media (max-width: 480px) {
  .about__inner {
    /* < 480px */
    margin-top: 4rem;
  }
}

.name {
  font-size: 2.4rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .name {
    /* < 768px */
    font-size: 2.1rem;
  }
}
@media (max-width: 480px) {
  .name {
    /* < 480px */
    font-size: 1.8rem;
  }
}

.about-text {
  margin-top: 5rem;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .about-text {
    /* < 1024px */
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  .about-text {
    /* < 768px */
    margin-top: 3rem;
  }
}

.yakuhan {
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

.about-btn {
  margin-top: 4.4rem;
}
@media (max-width: 1024px) {
  .about-btn {
    /* < 1024px */
    margin-top: 3.6rem;
  }
}
@media (max-width: 768px) {
  .about-btn {
    /* < 768px */
    margin-top: 3.2rem;
  }
}

.about__img {
  width: 33%;
  min-width: 320px;
  max-width: 420px;
  margin-left: 7rem;
}
@media (max-width: 1024px) {
  .about__img {
    /* < 1024px */
    min-width: 300px;
  }
}
@media (max-width: 768px) {
  .about__img {
    /* < 768px */
    width: 72%;
    max-width: 32rem;
    margin-left: 6vw;
  }
}
@media (max-width: 480px) {
  .about__img {
    /* < 480px */
    width: 100%;
    min-width: auto;
    max-width: 28rem;
  }
}

.about__img > img {
  width: 100%;
}

/*==================================================

*** works
==================================================*/
.works {
  position: relative;
  margin-top: 15rem;
}
@media (max-width: 1024px) {
  .works {
    /* < 1024px */
    margin-top: 14rem;
  }
}
@media (max-width: 768px) {
  .works {
    /* < 768px */
    width: 100%;
    max-width: 55rem;
    margin-inline: auto;
  }
}
@media (max-width: 480px) {
  .works {
    /* < 480px */
    margin-top: 12rem;
  }
}

.works__others {
  margin-top: 6rem;
}
@media (max-width: 1024px) {
  .works__others {
    /* < 1024px */
    margin-top: 5rem;
  }
}
@media (max-width: 480px) {
  .works__others {
    /* < 480px */
    margin-top: 4rem;
  }
}

.works__others__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .works__others__list {
    /* < 1024px */
  }
}
@media (max-width: 768px) {
  .works__others__list {
    /* < 768px */
    display: block;
  }
}

.works__others__item {
  width: 28%;
}
@media (max-width: 1024px) {
  .works__others__item {
    /* < 1024px */
    width: 46%;
  }
}
@media (max-width: 768px) {
  .works__others__item {
    /* < 768px */
    width: 100%;
  }
}

.works__others__item:nth-child(n+4) {
  margin-top: clamp(4.5rem, 6vw, 7rem);
}

@media (max-width: 1024px) {
  .works__others__item:nth-child(n+3) {
    /* < 1024px */
    margin-top: clamp(4.5rem, 6vw, 7rem);
  }
}

@media (max-width: 768px) {
  .works__others__item:not(:first-of-type) {
    /* < 768px */
    margin-top: 4rem;
  }
}

.works__others__item:last-of-type {
  height: 0;
}

.works__others__img {
  overflow: hidden;
  border-radius: 6px;
}
@media (max-width: 1024px) {
  .works__others__img {
    /* < 1024px */
  }
}
@media (max-width: 768px) {
  .works__others__img {
    /* < 768px */
    height: 32vw;
  }
}

.works__others__img > img {
  transform: scale(1.08, 1.08);
  transition: transform 0.5s;
  width: 100%;
}
@media (max-width: 1024px) {
  .works__others__img > img {
    /* < 1024px */
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .works__others__img > img {
    /* < 768px */
    height: 100%;
  }
}

.works__others__item > a:hover .works__others__img > img {
  transform: scale(1, 1);
}

.works__others__title {
  margin-top: 2.6rem;
}

.works__others__category {
  font-size: 1.4rem;
}

.works-btn {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}