@charset "UTF-8";
body {
  font-size: 14px;
  font-weight: 350;
  line-height: 27px;
  letter-spacing: 0.14px;
  color: #1c1c1c;
  background-color: #FFF9F5;
  font-family: "Noto Sans JP", serif;
}

.inner {
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .inner {
    padding-inline: 60px;
    max-width: 1400px;
  }
}

.hidden-sp {
  display: block;
}
@media screen and (max-width: 374px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

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

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

.textBreak2 {
  display: block;
}
@media screen and (max-width: 374px) {
  .textBreak2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .textBreak2 {
    display: none;
  }
}

.textBreak3 {
  display: block;
}
@media screen and (max-width: 374px) {
  .textBreak3 {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .textBreak3 {
    display: none;
  }
}

.button {
  background: #D36F39;
  padding: 14px 70px;
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: 18px;
  line-height: normal;
  display: inline-block;
  text-align: center;
  letter-spacing: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid transparent;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.button:hover {
  background: #fff;
  color: #D36F39;
  border: 1px solid #D36F39;
}
@media screen and (max-width: 374px) {
  .button {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.button-white {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #D36F39;
  background: #fff;
  color: #D36F39;
  font-family: "Aboreto", serif;
  line-height: normal;
  letter-spacing: normal;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (min-width: 768px) {
  .button-white {
    padding: 13px 29px;
    font-size: 18px;
  }
}
.button-white:hover {
  background: #D36F39;
  color: #fff;
}

.section-title {
  display: block;
  color: #7A9E63;
  font-family: "Aboreto", serif;
  font-size: 42px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .section-title {
    font-size: 64px;
  }
}

.page__top {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .page__top {
    margin-top: 200px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 24px;
  }
}

.header__link {
  font-family: "Aboreto", serif;
  font-size: 16px;
  line-height: 180%; /* 28.8px */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__link span {
  /* 背面の要素（2個目のspanタグ）を非表示にする */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* アニメーション効果を0.5秒間で適用 */
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: block;
  height: 20px;
}
.header__link span:first-child {
  /* 10px下に移動し縦中央に表示する */
  -webkit-transform: translateY(10px) rotateX(0deg);
          transform: translateY(10px) rotateX(0deg);
}
.header__link span:last-child {
  /* 90度回転させ非表示にする */
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}
.header__link:hover span:first-child {
  /* X軸周りに90度回転して非表示にする */
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}
.header__link:hover span:last-child {
  /* 10px上に移動し表示する */
  -webkit-transform: translateY(-10px) rotateX(0deg);
          transform: translateY(-10px) rotateX(0deg);
  color: #D36F39;
}

@media screen and (min-width: 900px) {
  .display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 900px) {
  .display__left {
    min-width: 128px;
    z-index: 10;
    position: relative;
  }
}

@media screen and (min-width: 900px) {
  .display__middle {
    margin-left: 16px;
    max-width: 992px;
  }
}
@media screen and (min-width: 900px) {
  .display__right {
    min-width: 104px;
    margin-left: 40px;
    z-index: 10;
  }
}

#nav-container {
  margin-left: auto;
  position: relative;
  z-index: 100;
}

#nav-toggle {
  display: block;
  width: 32px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 900px) {
  #nav-toggle {
    display: none;
  }
}

#nav-toggle span {
  background-color: #7A9E63;
  width: 100%;
  height: 2px;
  border-radius: 0.5px;
  display: block;
  position: absolute;
  left: 0;
  content: "";
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: -1px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#nav-toggle span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#nav-toggle span:nth-child(3) {
  top: 19px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#nav-toggle.open span {
  background-color: white;
}

#nav-toggle.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 1px;
  left: 2px;
}

#nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 24px;
  left: 2px;
}

#nav-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 1.4s ease;
  transition: 1.4s ease;
  -webkit-transform: scale3d(0, 0, 1);
          transform: scale3d(0, 0, 1); /* 初期状態で非表示 */
  -webkit-transform-origin: top right;
          transform-origin: top right; /* 右上を起点に拡大 */
}

#nav-overlay.open {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

#nav-fullscreen {
  width: 100%;
  position: fixed;
  left: 60px;
  top: 104px;
  -webkit-transition: ease-in-out 0.25s;
  transition: ease-in-out 0.25s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}
#nav-fullscreen ul {
  list-style: none;
}
#nav-fullscreen a {
  color: white;
  text-decoration: none;
}
#nav-fullscreen a span {
  /* 背面の要素（2個目のspanタグ）を非表示にする */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* アニメーション効果を0.5秒間で適用 */
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: block;
  height: 20px;
}
#nav-fullscreen a span:first-child {
  /* 10px下に移動し縦中央に表示する */
  -webkit-transform: translateY(10px) rotateX(0deg);
          transform: translateY(10px) rotateX(0deg);
}
#nav-fullscreen a span:last-child {
  /* 90度回転させ非表示にする */
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}
#nav-fullscreen a:hover span:first-child {
  /* X軸周りに90度回転して非表示にする */
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}
#nav-fullscreen a:hover span:last-child {
  /* 10px上に移動し表示する */
  -webkit-transform: translateY(-10px) rotateX(0deg);
          transform: translateY(-10px) rotateX(0deg);
}
#nav-fullscreen li:not(:first-child) {
  margin-top: 38px;
}

#nav-fullscreen.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

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

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
}

#nav-overlay {
  background: #7A9E63;
  position: fixed;
}

#nav-fullscreen {
  color: #fff;
  font-family: "Aboreto", serif;
  font-size: 18px;
  line-height: normal;
}

header {
  padding: 23px 20px 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: inherit;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px; /* 通常のヘッダーの高さ */
  z-index: 1000;
}
@media screen and (min-width: 900px) {
  header {
    width: 128px;
    height: 100%;
    padding-top: 104px;
    padding-left: 46px;
    padding-right: 0;
  }
}

.mv {
  margin-top: 68px;
}
@media screen and (min-width: 768px) {
  .mv {
    margin-top: 104px;
  }
}

.mv-inner {
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .mv-inner {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .mv-inner {
    max-width: 992px;
    width: 100%;
  }
}

@media screen and (min-width: 600px) {
  .mv__content {
    position: relative;
    width: inherit;
    height: inherit;
  }
}

.mv__hello {
  padding-top: 13px;
  font-family: "Carlito", serif;
  color: #7A9E63;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 600px) {
  .mv__hello {
    font-size: 100px;
    margin-top: 0;
    position: absolute;
    top: -25px;
    left: 0;
    padding-top: 0;
    z-index: 10;
  }
}

.mv__img {
  margin-top: 13px;
  height: 364px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .mv__img {
    margin-top: 30px;
    height: 500px;
  }
}
@media screen and (min-width: 600px) and (min-width: 768px) {
  .mv__img {
    height: 590px;
  }
}
.mv__img img {
  position: absolute;
}

.mv__img-1 {
  max-width: 196px;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .mv__img-1 {
    max-width: 300px;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .mv__img-1 {
    max-width: 380px;
    bottom: 0;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .mv__img-1 {
    padding-right: 0;
  }
}

.mv__img-2 {
  max-width: 470px;
  width: 100%;
  padding-left: 75px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 374px) {
  .mv__img-2 {
    min-width: 300px;
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .mv__img-2 {
    max-width: 496px;
  }
}
@media screen and (min-width: 768px) {
  .mv__img-2 {
    max-width: 710px;
    bottom: 0;
    padding-left: 75px;
  }
}

.mv__name {
  margin-top: 11px;
  font-family: "Carlito", serif;
  color: #D36F39;
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
  text-align: right;
}
@media screen and (min-width: 600px) {
  .mv__name {
    font-size: 100px;
    position: absolute;
    bottom: -27px;
    right: 0;
    z-index: 10;
  }
}

.message {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .message {
    margin-top: 160px;
  }
}

.message__texts {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(69.89%, #FEF3ED), to(#FFF9F5));
  background: linear-gradient(180deg, #FEF3ED 69.89%, #FFF9F5 100%);
  padding-block: 80px;
  padding-inline: 40px;
}
@media screen and (min-width: 768px) {
  .message__texts {
    padding-inline: 20px;
  }
}

.message__text {
  text-wrap: balance;
}
@media screen and (min-width: 1280px) {
  .message__text {
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
  }
}

.service {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: 180px;
    margin-right: 40px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 900px) {
  .service {
    width: 100%;
    max-width: 912px;
    margin-right: auto;
    margin-left: auto;
  }
}

.service__section-title {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .service__section-title {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.service__items {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .service__items {
    margin-top: 100px;
  }
}
.service__items .service__item:nth-child(2) {
  margin-top: 30px;
}
@media screen and (min-width: 1280px) {
  .service__items .service__item:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .service__items .service__item:nth-child(1) .service__itme-content {
    margin-right: 40px;
  }
  .service__items .service__item:nth-child(2) .service__itme-content {
    margin-left: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .service__items .service__item:nth-child(1) .service__itme-content {
    margin-right: 0px;
  }
  .service__items .service__item:nth-child(2) .service__itme-content {
    margin-left: 0px;
  }
}

.service__item {
  background: #FEF3ED;
  padding-block: 65px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 600px) {
  .service__item {
    padding-block: 80px;
  }
}
@media screen and (min-width: 768px) {
  .service__item {
    padding-block: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .service__item {
    background: #FFF9F5;
    padding-block: 0;
  }
}

@media screen and (min-width: 768px) {
  .service__item-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1280px) {
  .service__item-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.service-inner {
  padding-inline: 40px;
  max-width: 912px;
}
@media screen and (min-width: 768px) {
  .service-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .service-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 0;
    background: #FFF9F5;
    padding-block: 0;
    height: 590px;
  }
}

.service__item-img {
  width: 205px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .service__item-img {
    background-color: #FEF3ED;
    width: 50%;
    min-width: 456px;
    height: inherit;
    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;
  }
}
.service__item-img img {
  width: 100%;
  max-width: 205px;
  -webkit-filter: drop-shadow(4px 4px 30px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(4px 4px 30px rgba(0, 0, 0, 0.15));
}
@media screen and (min-width: 768px) {
  .service__item-img img {
    max-width: 228px;
  }
}

.service__item-contents {
  max-width: 295px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service__item-contents {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  .service__item-contents {
    min-width: 456px;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 1280px) {
  .service__item-content {
    max-width: 320px;
    margin-top: 116px;
  }
}

.service__name {
  margin-top: 40px;
  color: #D36F39;
  font-family: "Aboreto", serif;
  font-size: 26px;
  line-height: 35px; /* 134.615% */
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__name {
    margin-top: 0;
    font-size: 32px;
    line-height: 40px; /* 117.647% */
  }
}
@media screen and (min-width: 1280px) {
  .service__name {
    font-size: 34px;
  }
}

.service__text {
  margin-top: 30px;
  text-align: justify;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .service__text {
    margin-top: 38px;
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
  }
}

@media screen and (min-width: 768px) {
  .service__item-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.works {
  margin-top: 110px;
}
@media screen and (min-width: 768px) {
  .works {
    margin-top: 180px;
  }
}

@media screen and (min-width: 1280px) {
  .works-inner {
    padding-inline: 0px;
    max-width: 912px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.works__section-title {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .works__section-title {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.works__items {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .works__items {
    margin-top: 102px;
    gap: 36px;
  }
}

.works__item {
  max-width: 295px;
  width: 100%;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.08));
}
.works__item:hover img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  opacity: 0.6;
}
.works__item img {
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
@media screen and (min-width: 600px) {
  .works__item {
    width: 250px;
  }
}
@media screen and (min-width: 1280px) {
  .works__item {
    width: 280px;
  }
}

.works__button {
  margin-top: 52px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works__button {
    margin-top: 66px;
  }
}

.contact {
  display: block;
  margin-top: 150px;
  background-color: #7A9E63;
  padding-block: 85px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  cursor: pointer;
}
.contact:hover {
  background-color: #6A8956;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 240px;
    padding-top: 110px;
    padding-bottom: 108px;
  }
}

.contact__section-title {
  text-align: center;
  color: #fff;
}

.contact__text {
  margin-top: 20px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .contact__text {
    margin-top: 28px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
  }
}

.copyright {
  height: 40px;
  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;
}
@media screen and (min-width: 768px) {
  .copyright {
    height: 56px;
  }
}

.copyright__text {
  text-align: center;
  font-family: "Aboreto", serif;
  font-size: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: normal;
  letter-spacing: normal;
}

.copy {
  position: relative;
}

.copy__text {
  display: none;
  mix-blend-mode: difference;
}
@media screen and (min-width: 768px) {
  .copy__text {
    display: inline-block;
    color: #1C1C1C;
    font-family: Aboreto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 333.333% */
    letter-spacing: 2.64px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    position: fixed;
    white-space: nowrap; /* 改行を防ぐ */
    padding-left: 104px;
  }
}

#js-pagetop {
  position: fixed;
  bottom: 60px;
  right: 20px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #js-pagetop {
    right: 40px;
    bottom: 80px;
  }
}
@media screen and (min-width: 900px) {
  #js-pagetop {
    bottom: 96px;
    right: 50px;
  }
}

.pagetop {
  width: 46px;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 56px;
  }
}
@media screen and (min-width: 900px) {
  .pagetop {
    width: 66px;
  }
}

.breadcrumb {
  margin-top: 50px;
  font-family: "Aboreto", serif;
  line-height: normal;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-top: 100px;
  }
}

.categories {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .categories {
    gap: 20px;
  }
}

.category {
  letter-spacing: normal;
}

@media screen and (min-width: 1280px) {
  .page-works__inner {
    width: 100%;
    max-width: 912px;
    margin-right: auto;
    margin-left: auto;
    padding-inline: 0px;
  }
}

.page-works__lists {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .page-works__lists {
    margin-top: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .page-works__lists {
    gap: 64px;
  }
}

.page-works__card {
  display: inline-block;
  max-width: 295px;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.page-works__card .page-works__card-img {
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.page-works__card:hover img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  opacity: 0.6;
}
.page-works__card:hover .page-works__card-title {
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  color: #D36F39;
}
@media screen and (min-width: 600px) {
  .page-works__card {
    max-width: 424px;
  }
}
@media screen and (min-width: 768px) {
  .page-works__card {
    padding-bottom: 38px;
  }
}
@media screen and (min-width: 1280px) {
  .page-works__card {
    max-width: 424px;
  }
}

.page-works__card-categories {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .page-works__card-categories {
    margin-top: 34px;
    gap: 4px 30px;
  }
}

.page-works__card-category {
  font-family: "Aboreto", serif;
  position: relative;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .page-works__card-category {
    letter-spacing: normal;
  }
}
.page-works__card-category:not(:last-child)::after {
  content: "｜";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -17px;
  width: 14px;
}
@media screen and (min-width: 768px) {
  .page-works__card-category:not(:last-child)::after {
    right: -22px;
  }
}

.page-works__card-title {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px; /* 166.667% */
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-works__card-title {
    margin-top: 10px;
    font-size: 18px;
  }
}

.pagination {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 374px) {
  .pagination {
    gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 100px;
    gap: 14px;
  }
}

.pagination__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
}
.pagination__arrow:hover img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.prev {
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .prev {
    margin-right: 6px;
  }
}

.next {
  margin-left: 4px;
}
@media screen and (min-width: 768px) {
  .next {
    margin-left: 6px;
  }
}

.page-numbers {
  font-size: 16px;
  font-family: "Aboreto", serif;
  color: #7A9E63;
  background: #fff;
  border: 1px solid #7A9E63;
  width: 35px;
  height: 35px;
  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: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.page-numbers:hover {
  background: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    font-size: 18px;
    width: 38px;
    height: 38px;
  }
}

.current {
  color: #fff;
  background: #7A9E63;
}
.current:hover {
  background: #7A9E63; /* 何も変更しない、もしくは既存の色に保つ */
}

.current-category {
  background: #D36F39;
  color: #fff;
}

@media screen and (min-width: 1280px) {
  .page-works-single__inner {
    min-width: 992px;
    padding-inline: 40px;
  }
}

.page-works__content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .page-works__content {
    margin-top: 70px;
  }
}

.page-works__content-img img {
  width: 912px;
  width: 100%;
}

.page-works__texts {
  margin-top: 58px;
}
@media screen and (min-width: 768px) {
  .page-works__texts {
    margin-top: 114px;
    max-width: 1280px;
    padding-inline: 65px;
    margin-right: auto;
    margin-left: auto;
  }
}

.page-works-single__card-title {
  color: #D36F39;
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .page-works-single__card-title {
    font-size: 32px;
  }
}

.page-works__content-skills {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-works__content-skills .page-works__content-skill:not(:last-child) {
  margin-right: 11px;
}
@media screen and (min-width: 768px) {
  .page-works__content-skills .page-works__content-skill:not(:last-child) {
    margin-right: 14px;
  }
}
@media screen and (min-width: 768px) {
  .page-works__content-skills {
    margin-top: 46px;
  }
}

.page-works__content-skill {
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-works__content-skill {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
    font-weight: 400;
  }
}
.page-works__content-skill:not(:last-child)::after {
  content: "/";
  position: absolute;
  top: 44%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -17px;
  width: 14px;
}
@media screen and (min-width: 768px) {
  .page-works__content-skill:not(:last-child)::after {
    right: -19px;
  }
}

.page-works__content-explain {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-works__content-explain {
    margin-top: 16px;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
    line-height: 28px; /* 175% */
    font-weight: 400;
  }
}

.page-works__content-link {
  margin-top: 20px;
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.page-works__content-link:hover {
  color: #7A9E63;
}
.page-works__content-link p {
  margin-left: 23px;
}
@media screen and (min-width: 768px) {
  .page-works__content-link p {
    margin-left: 26px;
  }
}
.page-works__content-link p::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url("../img/link.svg");
}
@media screen and (min-width: 768px) {
  .page-works__content-link {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
    font-weight: 400;
  }
}

.page-works__button {
  margin-top: 80px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-works__button {
    margin-top: 160px;
  }
}
.page-works__button .button {
  font-size: 16px;
  padding-block: 14px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.about__categories {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .about__categories {
    margin-top: 100px;
    gap: 20px;
  }
}

.profile__content {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .profile__content {
    margin-top: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 900px) {
  .profile__content {
    margin-top: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .profile__content {
    margin-top: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 900px) {
  .profile-delete {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .profile-delete {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .profile-delete .profile__likes .profile__likes-content {
    margin-left: 30px;
  }
}

.profile-delete2 {
  display: none;
}
@media screen and (min-width: 900px) {
  .profile-delete2 {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .profile-delete2 {
    display: none;
  }
}

.profile__content-left {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .profile__content-left {
    max-width: 450px;
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .profile__content-left {
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
    max-width: 748px;
  }
}
@media screen and (min-width: 1280px) {
  .profile__content-left {
    max-width: 500px;
    margin-top: 0;
  }
}

.profile__content-right {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .profile__content-right {
    margin-left: 30px;
  }
}
@media screen and (min-width: 900px) {
  .profile__content-right {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1280px) {
  .profile__content-right {
    margin-left: 64px;
  }
}
@media screen and (max-width: 374px) {
  .profile__content-right img {
    max-width: 300px;
    height: 300px;
  }
}
@media screen and (min-width: 768px) {
  .profile__content-right img {
    max-width: 250px;
    height: 250px;
  }
}
@media screen and (min-width: 900px) {
  .profile__content-right img {
    max-width: 450px;
    height: 450px;
  }
}
@media screen and (min-width: 1280px) {
  .profile__content-right img {
    max-width: 348px;
    height: 348px;
  }
}

.profile__texts {
  text-align: justify;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .profile__texts {
    text-align: left;
  }
}

.profile__likes {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .profile__likes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .profile__likes {
    margin-top: 40px;
  }
}

.profile__likes-title span {
  border-bottom: 1px solid #D36F39;
  display: inline-block;
}

.profile__likes-content {
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .profile__likes-content {
    margin-top: 0;
    margin-left: 40px;
  }
}
.profile__likes-content p {
  margin-left: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .profile__likes-content p {
    margin-left: 22px;
  }
}
.profile__likes-content p::before {
  position: absolute;
  content: "";
  background-image: url("../img/profile-icon.svg");
  background-size: contain;
  width: 10px;
  height: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
}
@media screen and (min-width: 768px) {
  .profile__likes-content p::before {
    width: 14px;
    height: 14px;
    left: -22px;
  }
}

.skills,
.tools,
.story {
  margin-top: 110px;
}
@media screen and (min-width: 768px) {
  .skills,
  .tools,
  .story {
    margin-top: 180px;
  }
}

@media screen and (min-width: 1280px) {
  .about__inner {
    padding-inline: 40px;
  }
}

.about__cards {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 768px) {
  .about__cards {
    margin-top: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 76px 48px;
  }
}

.about__card {
  text-align: center;
  max-width: 275px;
}
@media screen and (min-width: 768px) {
  .about__card {
    max-width: 242px;
  }
}
@media screen and (min-width: 1280px) {
  .about__card {
    max-width: 192px;
    width: 100%;
  }
}

.about__logo {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .about__logo {
    width: 55px;
    height: 55px;
  }
}

.about__stars {
  margin-top: 6px;
  line-height: 28px; /* 200% */
}
@media screen and (min-width: 768px) {
  .about__stars {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
  }
}

.about__name {
  margin-top: 4px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__name {
    font-size: 16px;
    line-height: 28px; /* 175% */
  }
}

.about__explain {
  margin-top: 5px;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .about__explain {
    font-size: 16px;
    line-height: 26px; /* 162.5% */
  }
}

.story {
  padding-top: 70px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FEF3ED), color-stop(52.5%, #FFF6F1), to(#FFF9F5));
  background: linear-gradient(180deg, #FEF3ED 0%, #FFF6F1 52.5%, #FFF9F5 100%);
}
@media screen and (min-width: 768px) {
  .story {
    padding-top: 120px;
  }
}

.story__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .story__title {
    text-align: left;
    padding-left: 66px;
  }
}

.story__texts {
  margin-top: 50px;
  text-align: justify;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .story__texts {
    margin-top: 100px;
    padding-inline: 66px;
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
  }
}
.story__texts .story__text:nth-child(n+2) {
  margin-top: 26px;
}

.bold {
  font-weight: 700;
}

/* アニメーション前のスタイル */
.underline {
  display: inline;
  position: relative;
  padding-bottom: 3px;
  background-image: -webkit-gradient(linear, left top, right top, from(#D36F39), to(#D36F39));
  background-image: linear-gradient(90deg, #D36F39, #D36F39); /* 単色の場合は同じ色、グラデーションさせる場合は別々の色 */
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 6%; /* '30%'の部分にマーカーの太さを記入 */
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out; /* マーカーを引く速度を調整 */
}

/* アニメーション発火時 */
.underline.inview {
  background-size: 100% 6%; /* '30%'の部分は上で設定した太さに合わせる */
}

.page-contact {
  padding-bottom: 150px;
}
@media screen and (min-width: 768px) {
  .page-contact {
    padding-bottom: 240px;
  }
}

@media screen and (min-width: 768px) {
  .page-contact__inner {
    width: 100%;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 900px) {
  .page-contact__inner {
    min-width: 860px;
  }
}
@media screen and (min-width: 1280px) {
  .page-contact__inner {
    padding-inline: 0;
  }
}

.page-contact__section-title {
  text-align: center;
}

.page-contact__text {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-contact__text {
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
  }
}

.textRed {
  color: #D36F39;
}

.page-contact__flow {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  max-width: 400px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.page-contact__flow .page-contact__flow-step:nth-of-type(2) {
  margin-left: 10px;
}
@media screen and (max-width: 374px) {
  .page-contact__flow .page-contact__flow-step:nth-of-type(2) {
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .page-contact__flow {
    margin-top: 60px;
    max-width: 502px;
  }
}
.page-contact__flow::after {
  position: absolute;
  content: "";
  height: 1px;
  width: calc(100% - 56px);
  background: #EBB79B;
  top: 5px;
  left: 20px;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .page-contact__flow::after {
    top: 9px;
  }
}

.page-contact__flow-confirm::before {
  position: absolute;
  content: "";
  height: 1px;
  width: calc(50% - 33px);
  background: #D36F39;
  top: 5px;
  left: 20px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-contact__flow-confirm::before {
    top: 9px;
  }
}

.page-contact__flow-complete::before {
  position: absolute;
  content: "";
  height: 1px;
  width: calc(100% - 56px);
  background: #D36F39;
  top: 5px;
  left: 20px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-contact__flow-complete::before {
    top: 9px;
  }
}

.page-contact__flow-step {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}

.flow-step__round {
  background-image: url("../img/contact-step.svg");
}

.flow-step__round-fade {
  background-image: url("../img/contact-step-fade.svg");
}

.flow-step__round,
.flow-step__round-fade {
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .flow-step__round,
  .flow-step__round-fade {
    width: 21px;
    height: 21px;
  }
}

.flow-step__text {
  color: #D36F39;
}
@media screen and (min-width: 768px) {
  .flow-step__text {
    margin-top: 1px;
  }
}

.flow-step__text-fade {
  color: #EBB79B;
}

.flow-step__text,
.flow-step__text-fade {
  font-size: 13px;
  font-family: "Aboreto", serif;
  line-height: 27px; /* 207.692% */
  letter-spacing: 0.13px;
  text-align: center;
}

.Form {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .Form {
    margin-top: 92px;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
    padding-inline: 40px;
  }
}

.Form-Item:nth-of-type(n + 2) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .Form-Item:nth-of-type(n + 2) {
    margin-top: 34px;
  }
}
.Form-Item:not(:first-of-type) .Form-Item-Label {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .Form-Item:not(:first-of-type) .Form-Item-Label {
    margin-bottom: 15px;
  }
}

input:focus,
textarea:focus {
  outline: 2px solid #7A9E63;
}

.Form-Item-Label-Required {
  margin-left: 3px;
  color: #D36F39;
}
@media screen and (min-width: 768px) {
  .Form-Item-Label-Required {
    margin-left: 2px;
  }
}

.radio-xxx {
  display: inline-block;
}

.wpcf7-form-control {
  border-radius: 4px;
  background: #FFF;
  border: none;
  width: 100%;
  padding: 13px 16px;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control {
    padding: 13px 16px;
  }
}
.wpcf7-form-control::-webkit-input-placeholder {
  color: #C1C1C1;
  font-size: 16px;
}
.wpcf7-form-control::-moz-placeholder {
  color: #C1C1C1;
  font-size: 16px;
}
.wpcf7-form-control:-ms-input-placeholder {
  color: #C1C1C1;
  font-size: 16px;
}
.wpcf7-form-control::-ms-input-placeholder {
  color: #C1C1C1;
  font-size: 16px;
}
.wpcf7-form-control::placeholder {
  color: #C1C1C1;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control::-webkit-input-placeholder {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
  }
  .wpcf7-form-control::-moz-placeholder {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
  }
  .wpcf7-form-control:-ms-input-placeholder {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
  }
  .wpcf7-form-control::-ms-input-placeholder {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
  }
  .wpcf7-form-control::placeholder {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
  }
}

.wpcf7-radio {
  background: none;
  border: none;
  padding: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px 20px;
}
@media screen and (min-width: 768px) {
  .wpcf7-radio {
    gap: 7px 40px;
  }
}
.wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7-radio .wpcf7-list-item:nth-of-type(1) {
  display: inline-block;
}
.wpcf7-radio label input:focus + .wpcf7-list-item-label::before {
  outline: 2px solid #7A9E63;
}
.wpcf7-radio input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.wpcf7-radio input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-radio input:focus + .wpcf7-list-item-label::before {
  border: 1px solid #7A9E63;
}
.wpcf7-radio .wpcf7-list-item-label {
  padding-left: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.wpcf7-radio .wpcf7-list-item-label::before, .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  border-radius: 24px;
  border: 1px solid #7A9E63;
  background: #fff;
  left: 0;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  width: 10px;
  height: 10px;
  background: #7A9E63;
  left: 5px;
  opacity: 0;
}

textarea {
  height: 300px;
  resize: vertical;
}

.wpcf7-textarea .wpcf7-form-control {
  height: 300px;
}

.button-wrap {
  text-align: center;
}
.button-wrap input {
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.button-wrap input:hover {
  background: #fff;
  color: #D36F39;
  border: 1px solid #D36F39;
}
.button-wrap .wpcf7-form-control {
  margin-top: 92px;
  background: none;
  border: none;
  border-radius: 0;
  width: 218px;
  padding: 14px 70px;
  color: #FFF;
  background: #D36F39;
  font-family: "Aboreto", serif;
  font-size: 16px;
  line-height: normal;
}

.flow-step__round-thisPage {
  background-image: url("../img/contact-step.svg");
}

.flow-step__text-thisPage {
  color: #D36F39;
}

.bth__button {
  margin-top: 160px;
  text-align: center;
}
.bth__button .button {
  font-size: 16px;
  padding-block: 14px;
}
@media screen and (max-width: 374px) {
  .bth__button .button {
    padding: 14px 44px;
  }
}

.submitButton__wrap {
  margin-top: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.submitButton__wrap .button-wrap .wpcf7-form-control {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .submitButton__wrap {
    margin-top: 130px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
  }
}
.submitButton__wrap .button-wrap input,
.submitButton__wrap .back__button input {
  max-width: 202px;
}

.back__button {
  text-align: center;
}
.back__button .button {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  min-width: 202px;
  background: #b4b4b4;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  border: 1px solid transparent;
  border-radius: 0;
}
.back__button .button:hover {
  background: #8F8F8F;
  color: #fff;
  border: 1px solid #8F8F8F;
}

.fadeUp {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
}

.fadeUp2 {
  padding: 10px;
  -webkit-animation: fadeIn 1s normal backwards;
          animation: fadeIn 1s normal backwards;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeUp_mv span {
  display: inline-block;
  white-space: pre; /* スペースを正しく表示 */
}

.fadeUp_mv,
.fadeUp_mv span {
  font-family: "Carlito", serif;
  font-weight: 700; /* 太さを指定（例: 700はbold） */
}

.wpcf7-spinner,
.wpcf7-response-output {
  display: none;
}


.grecaptcha-badge {
  visibility: hidden;
}


.recaptchaMessage {
  margin-top: 40px;
  color: #b4b4b4;
  font-size: 14px;
}