@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;
}

/* 

*** 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;
}

/* 

*** .main-img + other
*** .color
*** .capture
*** .next-work

*/
#portfolio .main-img {
  margin-top: 0;
  background: #ebf0eb;
}

.design {
  padding: 18rem 0 15rem;
  background: #f4f7f4;
}
@media (max-width: 768px) {
  .design {
    /* < 768px */
    padding: 15.5rem 0 12.5rem;
  }
}
@media (max-width: 480px) {
  .design {
    /* < 480px */
    padding: 13rem 0 10rem;
  }
}

#portfolio .number-2.h2-number::before {
  color: #e0e9e0;
}

#portfolio .color {
  margin-top: 0;
}

.color-1 {
  width: 60%;
  background: #fff;
}

.color-2 {
  width: 20%;
  background: #f8f8ed;
}

.color-3 {
  width: 15%;
  background: linear-gradient(90deg, #c1d10d 0%, #94cd2c 100%);
}

.color-4 {
  width: 5%;
  background: #3b7e0a;
}

.capture {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 7rem;
}
@media (max-width: 768px) {
  .capture {
    /* < 768px */
    display: block;
    margin: 2rem 0 6rem;
  }
}

.capture picture {
  width: 48%;
}
@media (max-width: 768px) {
  .capture picture {
    /* < 768px */
    width: 100%;
  }
}

.capture picture:nth-of-type(n + 2) {
  margin-top: 0;
}
@media (max-width: 768px) {
  .capture picture:nth-of-type(n + 2) {
    /* < 768px */
    margin-top: 2rem;
  }
}

.next-work > a {
  background: url(../img/work/portfolio-logo/logo-imgs.jpg) center/cover;
}