@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

body.is-fixed {
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* font size */
body {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.char {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.char.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* フェードイン（したから上） */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeUp 1.5s ease forwards;
          animation: fadeUp 1.5s ease forwards;
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* フェードイン（左から右） */
.fade-left {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.fade-left.is-show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* ゆらゆらゆれる */
.wiggle {
  display: inline-block;
}

.wiggle.is-show {
  -webkit-animation: wiggleAnim 1.5s ease-in-out infinite;
          animation: wiggleAnim 1.5s ease-in-out infinite;
}

@-webkit-keyframes wiggleAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes wiggleAnim {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media screen and (min-width: 768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .header__nav {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

@media screen and (min-width: 768px) {
  .main {
    -webkit-box-flex: 8;
        -ms-flex: 8;
            flex: 8;
  }
}

/* hidden */
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hidden-tb {
    display: none;
  }
}

.hidden-sm {
  display: none;
}

@media (max-width: 372px) {
  .hidden-sm {
    display: inline;
  }
}
/* main */
@media screen and (min-width: 768px) {
  .main {
    margin-left: 193px;
  }
}
@media screen and (min-width: 900px) {
  .main {
    margin-left: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .main {
    margin-left: 280px;
  }
}
@media (min-width: 1500px) {
  .main {
    margin-left: 320px;
  }
}
@media (min-width: 1700px) {
  .main {
    margin-left: 340px;
  }
}

/* ------------------------------
header
------------------------------ */
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav {
  position: static;
  background: url(../img/header_bg.png) repeat center/contain;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .header__nav {
    width: 193px;
  }
}
@media screen and (min-width: 900px) {
  .header__nav {
    width: 240px;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav {
    width: 280px;
  }
}
@media (min-width: 1500px) {
  .header__nav {
    width: 320px;
  }
}
@media (min-width: 1700px) {
  .header__nav {
    width: 340px;
  }
}

.header__logo {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    margin-top: 20px;
    width: 75px !important;
  }
}
@media screen and (min-width: 900px) {
  .header__logo {
    margin-top: 30px;
    width: 80px !important;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo {
    margin-top: 40px;
    width: 90px !important;
  }
}
@media (min-width: 1500px) {
  .header__logo {
    width: 105px !important;
  }
}
@media (min-width: 1700px) {
  .header__logo {
    width: 120px !important;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__logo img:hover {
  opacity: 0.8;
}

.header__nav-list {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-list {
    margin-top: 26px;
  }
}
@media (min-width: 1500px) {
  .header__nav-list {
    margin-top: 44px;
  }
}
@media (min-width: 1700px) {
  .header__nav-list {
    margin-top: 56px;
  }
}

.header__nav-link {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header__nav-link:hover {
  -webkit-transform: translateX(10px) scale(1.05);
          transform: translateX(10px) scale(1.05);
}

.button--hd {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.button--hd:hover {
  background-color: #658C58;
  color: #fff;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.button--bg {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.button--bg:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.button {
  padding: 8px 18px;
  width: 220px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-radius: 25px;
}

/* ------------------------------
drawer
------------------------------ */
.main-visual__menu-button {
  margin: 30px 24px;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #658c58;
  overflow: hidden;
  color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}

.main-visual__menu-button--close {
  background-image: url(../img/noa_close-icon.png);
}
@media screen and (min-width: 768px) {
  .main-visual__menu-button--close {
    display: none;
  }
}

.main-visual__menu-button--open {
  background-image: url(../img/noa_open-icon.png);
}
@media screen and (min-width: 768px) {
  .main-visual__menu-button--open {
    display: none;
  }
}

.drawer {
  background-color: #D9CFC7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 99;
}

.drawer.is-open {
  display: block;
}

.drawer__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drawer__header-img {
  width: 140px;
}

.header__nav {
  position: fixed;
  height: 100%;
  -webkit-box-shadow: 4px 0 12px rgba(0, 0, 0, 0.05);
          box-shadow: 4px 0 12px rgba(0, 0, 0, 0.05);
}

.header__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .header__nav-item {
    padding: 8px 18px;
  }
}
@media screen and (min-width: 900px) {
  .header__nav-item {
    padding: 8px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-item {
    padding: 8px 38px;
  }
}

@media screen and (min-width: 900px) {
  .header__nav-item + .header__nav-item {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-item + .header__nav-item {
    margin-top: 8px;
  }
}
@media (min-width: 1500px) {
  .header__nav-item + .header__nav-item {
    margin-top: 10px;
  }
}

.button--bg {
  background-color: #658C58;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.button--border {
  border: 2px solid #658C58;
}

@media screen and (min-width: 768px) {
  .button__icon {
    width: 20px;
    margin-right: 8px;
  }
}
@media screen and (min-width: 900px) {
  .button__icon {
    width: 24px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .button__icon {
    width: 26px;
    margin-right: 14px;
  }
}
@media (min-width: 1700px) {
  .button__icon {
    width: 28px;
  }
}

.button__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .button__text {
    font-size: 17px;
  }
}
@media screen and (min-width: 900px) {
  .button__text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .button__text {
    font-size: 22px;
  }
}
@media (min-width: 1500px) {
  .button__text {
    font-size: 24px;
  }
}

.button__text--white {
  color: #fff;
}

/* ------------------------------
mv
------------------------------ */
.mv {
  background-color: #658c58;
}

.mv__inner {
  padding-block: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .mv__inner {
    padding-block: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__inner {
    padding-top: 100px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1500px) {
  .mv__inner {
    padding-block: 130px;
  }
}
@media (min-width: 1500px) {
  .mv__inner {
    padding-block: 130px;
  }
}

.mv__logo {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .mv__logo {
    margin: 0 auto;
  }
}
.mv__logo img {
  width: 200px;
}
@media screen and (min-width: 600px) {
  .mv__logo img {
    width: 240px;
  }
}
@media (min-width: 1000px) {
  .mv__logo img {
    width: 260px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__logo img {
    width: 300px;
  }
}
@media (min-width: 1700px) {
  .mv__logo img {
    width: 350px;
  }
}

.mv__text-body {
  color: #fff;
  padding-inline: 40px;
  margin-top: 50px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 372px) {
  .mv__text-body {
    padding-inline: 20px;
  }
}
@media (min-width: 430px) {
  .mv__text-body {
    margin-top: 56px;
  }
}
@media (min-width: 500px) {
  .mv__text-body {
    margin-top: 70px;
  }
}
@media screen and (min-width: 600px) {
  .mv__text-body {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__text-body {
    margin-top: 100px;
    padding-inline: 130px;
  }
}
@media (min-width: 1300px) {
  .mv__text-body {
    padding-inline: 160px;
  }
}
@media (min-width: 1400px) {
  .mv__text-body {
    padding-inline: 240px;
  }
}
@media (min-width: 1500px) {
  .mv__text-body {
    padding-inline: 260px;
  }
}
@media (min-width: 1600px) {
  .mv__text-body {
    padding-inline: 340px;
  }
}
@media (min-width: 1700px) {
  .mv__text-body {
    padding-inline: 280px;
  }
}
@media (min-width: 1900px) {
  .mv__text-body {
    padding-inline: 350px;
  }
}

.mv__text-main {
  font-size: 19px;
  font-weight: 700;
  border-radius: 10px;
}
@media (max-width: 372px) {
  .mv__text-main {
    text-align: center;
  }
}
@media (min-width: 430px) {
  .mv__text-main {
    font-size: 21px;
  }
}
@media (min-width: 500px) {
  .mv__text-main {
    font-size: 24px;
  }
}
@media screen and (min-width: 600px) {
  .mv__text-main {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .mv__text-main {
    font-size: 24px;
  }
}
@media (min-width: 1000px) {
  .mv__text-main {
    font-size: 28px;
  }
}
@media (min-width: 1200px) {
  .mv__text-main {
    font-size: 34px;
  }
}
@media (min-width: 1500px) {
  .mv__text-main {
    font-size: 38px;
  }
}
@media (min-width: 1700px) {
  .mv__text-main {
    font-size: 42px;
  }
}
@media (min-width: 1900px) {
  .mv__text-main {
    font-size: 46px;
  }
}

.mv__sub-text-body {
  padding-inline: 14px;
}

.mv__text-sub {
  margin-top: 26px;
  font-size: 11px;
}
@media (min-width: 430px) {
  .mv__text-sub {
    margin-top: 36px;
  }
}
@media (min-width: 500px) {
  .mv__text-sub {
    font-size: 14px;
    margin-top: 42px;
  }
}
@media screen and (min-width: 600px) {
  .mv__text-sub {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .mv__text-sub {
    font-size: 14px;
  }
}
@media (min-width: 1000px) {
  .mv__text-sub {
    font-size: 16px;
  }
}
@media (min-width: 1700px) {
  .mv__text-sub {
    font-size: 18px;
  }
}

.mv__text-disc {
  margin-top: 14px;
  font-size: 11px;
}
@media (min-width: 500px) {
  .mv__text-disc {
    font-size: 13px;
  }
}
@media screen and (min-width: 600px) {
  .mv__text-disc {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .mv__text-disc {
    font-size: 14px;
  }
}
@media (min-width: 1000px) {
  .mv__text-disc {
    font-size: 16px;
  }
}
@media (min-width: 1700px) {
  .mv__text-disc {
    font-size: 18px;
  }
}

.mv__text-note {
  margin-top: 14px;
  font-size: 10px;
}
@media (max-width: 372px) {
  .mv__text-note {
    font-size: 9px;
  }
}
@media (min-width: 500px) {
  .mv__text-note {
    font-size: 11px;
  }
}
@media screen and (min-width: 600px) {
  .mv__text-note {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .mv__text-note {
    font-size: 11px;
  }
}
@media (min-width: 1000px) {
  .mv__text-note {
    font-size: 12px;
  }
}
@media (min-width: 1700px) {
  .mv__text-note {
    font-size: 14px;
  }
}

.button--mv {
  margin-top: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  background-color: #facc00;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 25px;
}
.button--mv:hover {
  -webkit-transform: translateX(calc(50% + 270px)) translateY(4px);
          transform: translateX(calc(50% + 270px)) translateY(4px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}
@media (max-width: 331px) {
  .button--mv {
    font-size: 14px;
    padding: 7px 8px;
    width: 160px;
  }
}
@media (min-width: 332px) {
  .button--mv {
    font-size: 14px;
    padding: 7px 8px;
    width: 160px;
  }
}
@media (min-width: 430px) {
  .button--mv {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .button--mv {
    font-size: 16px;
    padding: 8px 10px;
    width: 200px;
    position: absolute;
    bottom: 80px;
    right: 50%;
    -webkit-transform: translateX(calc(50% + 270px)) translateY(0);
            transform: translateX(calc(50% + 270px)) translateY(0);
  }
}
@media (min-width: 1500px) {
  .button--mv {
    bottom: 130px;
    -webkit-transform: translateX(calc(50% + 290px));
            transform: translateX(calc(50% + 290px));
    font-size: 18px;
    padding: 10px 12px;
    width: 220px;
  }
}

/* ------------------------------
section 共通
------------------------------ */
.section {
  padding: 52px 0;
}
@media screen and (min-width: 600px) {
  .section {
    padding-block: 64px;
  }
}
@media (min-width: 1500px) {
  .section {
    padding-block: 76px;
  }
}
@media (min-width: 1500px) {
  .section {
    padding-block: 90px;
  }
}

.section-inner {
  padding: 0 30px;
}
@media screen and (min-width: 600px) {
  .section-inner {
    padding: 0 50px;
  }
}

.section__head {
  margin-bottom: 32px;
}
.section__head--center {
  text-align: center;
}

.section__head-main {
  font-family: "Chewy", system-ui;
  display: block;
  color: #658C58;
  line-height: 1.2;
  letter-spacing: 2px;
  font-size: 36px;
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 600px) {
  .section__head-main {
    font-size: 44px;
  }
}
@media screen and (min-width: 900px) {
  .section__head-main {
    font-size: 46px;
  }
}
@media (min-width: 1700px) {
  .section__head-main {
    font-size: 60px;
  }
}

.section__head-sub {
  display: block;
  font-size: 14px;
  color: #658C58;
  margin-top: 5px;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .section__head-sub {
    font-size: 16px;
  }
}
@media (min-width: 1700px) {
  .section__head-sub {
    font-size: 18px;
  }
}

/* ------------------------------
Service
------------------------------ */
.service {
  position: relative;
  overflow: hidden;
}

.service__read-text-wrap {
  line-height: 1.6;
}

.service__read-text {
  display: block;
}

.service__read-text + .service__read-text {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 768px) and (min-width: 900px) {
  .service__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .service__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service__item {
  border: 2px solid #658C58;
  background-color: #fffff9;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .service__item {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .service__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 900px) {
  .service__item {
    width: 100%;
  }
}

.service__item + .service__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__item + .service__item {
    margin-top: 0;
  }
}

.service__item-img {
  text-align: center;
  margin-bottom: 14px;
}

.service__item-title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 500px) {
  .service__item-title {
    font-size: 18px;
  }
}

.service__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.service__contents {
  margin-top: 40px;
}

/* ------------------------------
Works
------------------------------ */
.works {
  background-color: #FAF9EE;
  position: relative;
  overflow: visible;
}
@media (min-width: 1200px) {
  .works {
    padding-bottom: 290px;
  }
}
@media (min-width: 1500px) {
  .works {
    padding-bottom: 330px;
  }
}
@media (min-width: 1700px) {
  .works {
    padding-bottom: 150px;
  }
}

.works__read-text {
  margin-bottom: 26px;
}

.works__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px 0;
}
@media (min-width: 500px) {
  .works__list {
    gap: 16px 0;
  }
}
@media (min-width: 1200px) {
  .works__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8%;
    margin-top: 40px;
  }
}
@media (min-width: 1700px) {
  .works__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8% 5%;
  }
}

.works__item {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.works__item.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.works__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.works__item:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.works__item:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.works__item:nth-child(5) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
@media screen and (min-width: 900px) {
  .works__item {
    padding-inline: 60px;
  }
}
@media (min-width: 1100px) {
  .works__item {
    padding-inline: 90px;
  }
}
@media (min-width: 1200px) {
  .works__item {
    padding-inline: 0;
  }
}

.works__item + .works__item {
  margin-top: 0;
}

.works__item + .works__item {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .works__item + .works__item {
    margin-top: 0;
  }
}

.works__item-img {
  margin-bottom: 12px;
  width: 100%;
}
.works__item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
}

.works__item-title {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 500px) {
  .works__item-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 600px) {
  .works__item-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .works__item-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .works__item-title {
    font-size: 18px;
  }
}
@media (min-width: 1700px) {
  .works__item-title {
    margin-top: 20px;
  }
}

.works__item-desc-wrap {
  margin-top: 6px;
}
@media (min-width: 500px) {
  .works__item-desc-wrap {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .works__item-desc-wrap {
    margin-top: 10px;
  }
}

.works__item-desc {
  display: block;
  font-size: 12px;
}
@media (min-width: 500px) {
  .works__item-desc {
    font-size: 13px;
  }
}
@media screen and (min-width: 600px) {
  .works__item-desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .works__item-desc {
    font-size: 14px;
  }
}

.button--works {
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  background-color: #658C58;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 500px) {
  .button--works {
    font-size: 14px;
    margin-top: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .button--works {
    margin-top: 14px;
  }
}
@media (min-width: 1200px) {
  .button--works {
    margin-top: 20px;
  }
}
.button--works:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}
.button--works-triangle {
  font-size: 9px;
  margin-left: 8px;
}

/* ------------------------------
cta
------------------------------ */
.cta {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  background: url(../img/cta__bg.png) repeat center/contain;
}
@media screen and (min-width: 1200px) {
  .cta {
    padding-block: 70px;
  }
}

.cta-inner {
  padding: 0 28px;
}
@media screen and (min-width: 600px) {
  .cta-inner {
    padding: 0 50px;
  }
}

.cta__text {
  letter-spacing: 1.5px;
}

.cta__lead {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 500px) {
  .cta__lead {
    font-size: 20px;
  }
}
@media (min-width: 1500px) {
  .cta__lead {
    font-size: 26px;
  }
}
@media (min-width: 1700px) {
  .cta__lead {
    font-size: 30px;
  }
}

.cta__sub {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 500px) {
  .cta__sub {
    font-size: 20px;
  }
}
@media (min-width: 1500px) {
  .cta__sub {
    font-size: 26px;
  }
}
@media (min-width: 1700px) {
  .cta__sub {
    font-size: 30px;
  }
}

.cta__note {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 500px) {
  .cta__note {
    font-size: 12px;
  }
}
@media (min-width: 1500px) {
  .cta__note {
    font-size: 15px;
  }
}
@media (min-width: 1700px) {
  .cta__note {
    font-size: 18px;
  }
}

.button--cta {
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  color: #658C58;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  /* キラッと光 */
}
.button--cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  opacity: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
}
@media (min-width: 500px) {
  .button--cta {
    font-size: 16px;
  }
}
@media (min-width: 1500px) {
  .button--cta {
    width: 260px;
    padding: 10px 28px;
    margin-top: 60px;
    font-size: 20px;
  }
}
.button--cta:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  color: #fff;
  background-color: #facc00;
}

/* 発火用クラス */
.button--cta.is-shine::before {
  -webkit-animation: shine 1s ease 2;
          animation: shine 1s ease 2;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 1;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
/* ------------------------------
About
------------------------------ */
.about {
  position: relative;
  padding-top: 70px;
}

@media (min-width: 1000px) {
  .about__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1500px) {
  .about__contents {
    gap: 55px;
  }
}

.about__deco {
  position: absolute;
}

.about__text {
  display: block;
}

.about__img {
  margin-bottom: 32px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-inline: 40px;
  position: relative;
}
.about__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
}
@media (min-width: 500px) {
  .about__img {
    padding: 60px;
  }
}
@media screen and (min-width: 768px) {
  .about__img {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 900px) {
  .about__img {
    padding-inline: 80px;
  }
}
@media (min-width: 1000px) {
  .about__img {
    padding: 0;
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .about__img {
    width: 350px;
  }
}
@media (min-width: 1600px) {
  .about__img {
    width: 400px;
  }
}
.about__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}

.about__text-contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.about__text {
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 1em;
}

/* ------------------------------
Work flow
------------------------------ */
.flow {
  background-color: #FAF9EE;
  position: relative;
}

.flow__deco {
  position: absolute;
}

.flow__list {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 20px;
  }
}
@media screen and (min-width: 900px) {
  .flow__list {
    gap: 50px 30px;
  }
}
@media (min-width: 1700px) {
  .flow__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow__item {
  position: relative;
  border: 2px solid #658C58;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}

.flow__item-number {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background-color: #658C58;
  color: #fff;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flow__item-img {
  margin-bottom: 24px;
  text-align: center;
}

.flow__item-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 500px) {
  .flow__item-title {
    font-size: 18px;
  }
}

.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* ------------------------------
Message
------------------------------ */
.message {
  position: relative;
}

.section__head-sub--message {
  margin-top: 16px;
}

@media screen and (min-width: 1200px) {
  .message__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .message__container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (min-width: 1500px) {
  .message__container {
    gap: 55px;
  }
}

.message__img {
  margin-bottom: 32px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .message__img {
    width: 350px;
  }
}
@media screen and (min-width: 900px) {
  .message__img {
    padding-inline: 40px;
  }
}
@media (min-width: 1000px) {
  .message__img {
    padding-inline: 60px;
  }
}
@media (min-width: 1200px) {
  .message__img {
    padding-inline: 0;
    width: 430px;
  }
}
@media (min-width: 1500px) {
  .message__img {
    width: 600px;
  }
}
@media (min-width: 1700px) {
  .message__img {
    width: 700px;
  }
}
.message__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25);
}

.message__text-body {
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.message__text {
  display: block;
}
.message__text + .message__text {
  margin-top: 10px;
}
@media (min-width: 1500px) {
  .message__text + .message__text {
    margin-top: 16px;
  }
}

/* ------------------------------
contact
------------------------------ */
.contact {
  background-color: #FAF9EE;
}

.contact__contents {
  background-color: #fff;
  padding: 30px 14px;
  margin-top: 40px;
  border-radius: 20px;
}
@media screen and (min-width: 1200px) {
  .contact__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 820px;
    margin: 40px auto 40px;
  }
}
@media (min-width: 1500px) {
  .contact__contents {
    width: 1000px;
  }
}

.contact__icon-wrap {
  text-align: center;
}
.contact__icon-wrap img {
  width: 100px;
}
@media (min-width: 1200px) {
  .contact__icon-wrap img {
    width: 140px;
  }
}
@media (min-width: 1500px) {
  .contact__icon-wrap img {
    width: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__icon-wrap {
    margin: 80px;
  }
}

.contact__text-wrap {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .contact__text-wrap {
    text-align: left;
  }
}

.contact__text-body {
  letter-spacing: 1.5px;
  margin-bottom: 40px;
}

.contact__text-main {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #658C58;
}
@media (max-width: 380px) {
  .contact__text-main {
    font-size: 16px;
  }
}
@media (min-width: 500px) {
  .contact__text-main {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .contact__text-main {
    font-size: 26px;
  }
}

.contact__text-sub {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 500px) {
  .contact__text-sub {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .contact__text-sub {
    font-size: 16px;
  }
}

.contact__text-note {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 380px) {
  .contact__text-note {
    font-size: 11px;
    margin-top: 10px;
  }
}
@media (min-width: 500px) {
  .contact__text-note {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .contact__text-note {
    font-size: 16px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .contact__button-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}

.button__contact {
  display: inline-block;
  margin-top: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-weight: 700;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  padding: 8px 24px;
}
@media (min-width: 500px) {
  .button__contact {
    font-size: 16px;
  }
}
@media (min-width: 1500px) {
  .button__contact {
    width: 260px;
    padding: 10px 28px;
    font-size: 20px;
  }
}

.button__contact--form {
  background: #facc00;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button__contact--form:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  color: #facc00;
  background-color: #fff;
  border: 2px solid #facc00;
}

.button__contact--x {
  background: #fff;
  color: #facc00;
  border: 2px solid #facc00;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button__contact--x:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  background-color: rgba(0, 0, 0, 0.05);
}

.contact__button-text {
  letter-spacing: 2.5px;
  font-size: 11px;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .contact__button-text {
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
    letter-spacing: 3.5px;
  }
}

/* ------------------------------
footer
------------------------------ */
.footer {
  text-align: center;
  padding: 10px;
}

.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}