@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #1f2623;
  background-color: #ffffff;
}
body.is-fixed {
  overflow: hidden;
}

.button {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 20px;
  width: 150px;
  margin: 0 auto;
  border-radius: 9999px;
}
.button--bg {
  background-color: #d4a31a;
}
.button--bg .button__text {
  color: #ffffff;
}
.button--border {
  border: 1px solid #ffffff;
}
.button--border .button__text {
  color: #ffffff;
}
.button__icon {
  width: 20px;
  display: flex;
  align-items: center;
}
.button__icon-path {
  fill: #ffffff;
}
.button__icon-path-contact {
  fill: #ffffff;
}
.button__text {
  color: #ffffff;
  margin-left: 10px;
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: bold;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 999;
  background-color: #288144;
}
.header::after {
  content: "";
  position: fixed;
  top: 69px;
  left: 0;
  width: 100%;
  height: 30px;
  background: url(../img/sp/img_header.png) repeat-x left top/contain;
}
.header__container {
  position: relative;
}
.header__logo {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 1.2;
  padding: 20px 24px;
  color: #ffffff;
}
.header__logo--pc-only {
  display: none;
}
.header__menu-button {
  border: none;
  background-color: #288144;
  position: absolute;
  top: 17px;
  right: 24px;
  width: 30px;
  height: 36px;
  color: transparent;
  background: url(../img/bg_menu.png) center center no-repeat;
  background-size: 100%;
}
.header__menu-button.is-checked {
  background: url(../img/bg_menu-close.png) center center no-repeat;
  background-size: 100%;
}
.header__contents {
  background-color: #288144;
  height: calc(100vh - 65px);
  padding-top: 50px;
  display: none;
}
.header__nav-item + .header__nav-item {
  margin-top: 22px;
}

.fv {
  background-color: #f9faf5;
  background-image: linear-gradient(0deg, transparent 24%, rgba(40, 129, 68, 0.1) 25%, rgba(40, 129, 68, 0.1) 26%, transparent 27%, transparent 74%, rgba(40, 129, 68, 0.1) 75%, rgba(40, 129, 68, 0.1) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(40, 129, 68, 0.1) 25%, rgba(40, 129, 68, 0.1) 26%, transparent 27%, transparent 74%, rgba(40, 129, 68, 0.1) 75%, rgba(40, 129, 68, 0.1) 76%, transparent 77%, transparent);
  background-size: 60px 60px;
}
.fv__contents {
  left: 0px;
  padding: 100px 30px 40px 30px;
}
.fv__heading-main {
  display: block;
  font-size: 55px;
  font-weight: bold;
  color: #d4a31a;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.fv__heading-sub {
  display: block;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
}

.section {
  padding: 48px 0;
  scroll-margin-top: 70px;
}
.section__inner {
  padding: 0 32px;
}
.section__head {
  margin-bottom: 32px;
}
.section__head--center {
  text-align: center;
}
.section__head-main {
  display: block;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #288144;
  background: url(../img/wave-line-1.png) no-repeat left bottom;
  background-size: 250px auto;
  padding-bottom: 10px;
}
.section__head-main--light {
  color: #ffffff;
  background: transparent none !important;
  padding-bottom: 0;
}
.section__head-sub {
  display: block;
  font-size: 14px;
}
.section__head-sub--light {
  color: #ffffff;
}
.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}
.section__contents {
  margin-top: 40px;
}

.message__img {
  margin-bottom: 32px;
  max-width: 300px;
}
.message__img img {
  box-shadow: 0 4px 15px 0 rgba(31, 38, 35, 0.15);
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.message__text {
  font-size: 16px;
  line-height: 1.6;
}

.service {
  background-color: #f9faf5;
}
.service__list {
  display: flex;
  flex-direction: column;
}
.service__item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid #1f2623;
}
.service__item + .service__item {
  margin-top: 40px;
}
.service__item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.service__item-img--path {
  fill: #288144;
}
.service__item-name {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}
.service__item-text {
  display: block;
  font-size: 14px;
  line-height: 1.6;
}

.works {
  background-color: #ffffff;
}
.works__item {
  background-color: #f9faf5;
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid #1f2623;
}
.works__item + .works__item {
  margin-top: 40px;
}
.works__item-img {
  margin-bottom: 12px;
}
.works__item-img img {
  box-shadow: 0 4px 15px 0 rgba(31, 38, 35, 0.15);
}
.works__item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.works__item-link {
  font-size: 14px;
  text-decoration: underline;
}

.workflow {
  background-color: #f9faf5;
}
.workflow__list {
  margin-top: 64px;
}
.workflow__item {
  position: relative;
  border-radius: 20px;
  padding: 46px 20px 24px;
  border: 1px solid #1f2623;
  background-color: #ffffff;
}
.workflow__item + .workflow__item {
  margin-top: 46px;
}
.workflow__item-number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #d4a31a;
  color: #ffffff;
  font-size: 24px;
  width: 48px;
  height: 48px;
}
.workflow__item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.workflow__item-img--path {
  fill: #288144;
}
.workflow__item-name {
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.workflow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.about__img {
  margin-bottom: 32px;
  max-width: 300px;
}
.about__img img {
  box-shadow: 0 4px 15px 0 rgba(31, 38, 35, 0.15);
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 16px;
}

.page-bottom {
  color: #f9faf5;
}
.page-bottom__item {
  padding: 40px;
}
.page-bottom__item--contact {
  background-color: #d4a31a;
}
.page-bottom__item--twitter {
  background-color: #288144;
}

.footer {
  text-align: center;
  padding: 10px;
}
.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}

/*-------------------------
// pc
-------------------------*/
@media screen and (min-width:768px) {
  .wrapper {
    display: flex;
  }
  .main {
    flex-basis: 82%;
  }
  .button {
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #ffffff;
  }
  .button:hover .button__icon-path {
    fill: #1f2623;
  }
  .button:hover .button__text {
    color: #1f2623;
  }
  .button--bg:hover {
    opacity: 0.7;
  }
  .section {
    scroll-margin-top: 0px;
  }
  .section__inner {
    max-width: 976px;
    margin: 0 auto;
    padding: 0 32px 0 64px;
  }
  .section__head {
    margin-bottom: 24px;
  }
  .section__head-main {
    font-size: 50px;
    background: url(../img/wave-line-1.png) no-repeat left bottom;
    background-size: 350px auto;
    padding-bottom: 10px;
  }
  .header {
    position: relative;
    flex-basis: 18%;
    padding: 50px 20px;
    height: auto;
  }
  .header::after {
    content: "";
    position: fixed;
    top: 0;
    left: max(17.9%, 200px);
    width: 30px;
    height: 100%;
    background: url(../img/img_header.png) repeat-y left top/contain;
  }
  .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
  .header__img {
    display: none;
  }
  .header__logo {
    font-size: 25px;
    letter-spacing: 3.6px;
    line-height: 1.2;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .header__logo:hover {
    color: #d4a31a;
  }
  .header__menu-button {
    display: none;
  }
  .header__contents {
    position: fixed;
    display: flex;
    border-top: none;
    padding-top: 30px;
  }
  .fv__contents {
    padding: 50px 0 80px 80px;
  }
  .fv__heading-main {
    font-size: 80px;
  }
  .message__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .message__img {
    margin-bottom: 0px;
  }
  .service__list {
    flex-direction: row;
    gap: 8%;
  }
  .service__item {
    flex: 1;
  }
  .service__item + .service__item {
    margin-top: 0px;
  }
  .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .works__item + .works__item {
    margin-top: 0px;
  }
  .workflow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .workflow__item + .workflow__item {
    margin-top: 0px;
  }
  .about__img {
    margin-bottom: 0px;
  }
  .about__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .page-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-bottom__item {
    padding: 54px 10px;
  }
}
/*-------------------------
// tab
-------------------------*/
@media screen and (min-width:768px) and (max-width:1024px) {
  .section__head-main {
    font-size: 50px;
    background: url(../img/wave-line-1.png) no-repeat left bottom;
    background-size: 400px auto;
    padding-bottom: 15px;
  }
  .fv__contents {
    top: 10%;
  }
  .workflow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}