@charset "UTF-8";
/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/**
 * variables.scss
 * グローバル変数・設定
 */
/**
 * reset.scss
 * ブラウザのデフォルトスタイルをリセット
 */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

td,
th {
  padding: 0;
  text-align: left;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
html,
body {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open #smooth-wrapper {
  overflow: hidden;
}

.admin-bar .l-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .l-header {
    top: 46px;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 10px 0;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 5px 0;
  }
}
.l-header__inner {
  background-color: rgba(234, 234, 234, 0.24);
  backdrop-filter: blur(30px);
  width: 90%;
  max-width: 1200px;
  padding: 10px 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  border: 1px solid rgba(179, 179, 179, 0.3333333333);
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95%;
  }
}
.l-header__upper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__upper {
    margin: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
}
.l-header__upper__logo {
  max-width: 160px;
  width: 20%;
  z-index: 60;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__upper__logo {
    max-width: 100px;
    width: 30%;
  }
}
.l-header__upper__logo:hover {
  opacity: 0.8;
}
.l-header__upper__logo img {
  width: 100%;
  display: block;
}
.l-header__upper__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 400px;
  width: 40%;
  gap: 3%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .l-header__upper__btn {
    width: 60%;
    display: none;
  }
}
.l-header__upper__btn .item {
  width: 30%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-header__upper__btn .item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .l-header__upper__btn .item {
    width: 100%;
  }
}
.l-header__contents {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header__contents {
    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;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 50;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  }
  .l-header__contents.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 0;
  }
}
.l-header__nav {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    margin-top: 10px;
  }
}
.l-header__nav__list {
  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;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  text-align: center;
  font-size: 14px;
  color: #181818;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .l-header__nav__list {
    gap: 10px;
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav__list {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 6px;
  }
}
.l-header__nav__list .item {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__nav__list .item::after {
  position: absolute;
  right: -7.5px;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(44, 44, 44, 0.2823529412);
  display: block;
  content: "";
}
@media screen and (max-width: 767px) {
  .l-header__nav__list .item::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav__list .item {
    width: 100%;
  }
  .l-header__nav__list .item::after {
    display: none;
  }
}
.l-header__nav__list .item a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header__nav__list .item a {
    font-size: 14px;
  }
}
.l-header__nav__list .item a:hover {
  color: rgb(45, 74, 1);
  background-color: #fff;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  padding: 0 2px;
}
.l-header__nav__list .sp-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__nav__list .sp-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -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;
    width: 100%;
    gap: 7px;
    margin-top: 20px;
  }
  .l-header__nav__list .sp-btn .lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-header__nav__list .sp-btn .item {
    width: 100%;
    max-width: 300px;
  }
  .l-header__nav__list .sp-btn .item img {
    width: 100%;
    height: auto;
    display: block;
  }
  .lower .l-header__nav__list .sp-btn .item {
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  .l-header__contents {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    -webkit-transform: none !important;
            transform: none !important;
    position: static;
    height: auto;
  }
  .l-header__overlay,
  .l-header .sp-btn {
    display: none !important;
  }
}
.l-header__hamburger {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #3d3d3d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.l-header__hamburger.is-open span {
  background-color: #3d3d3d;
}
.l-header__hamburger.is-open span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
.l-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(185, 204, 179, 0.9254901961);
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-header__overlay.is-open {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .l-header__overlay {
    display: none !important;
  }
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open #smooth-wrapper {
  overflow: hidden;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
.l-footer {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cedad0), color-stop(#cedad0), color-stop(#94b298), to(#283d2b));
  background-image: linear-gradient(180deg, #cedad0, #cedad0, #94b298, #283d2b);
  padding: 80px 40px 40px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  /* --- ロゴとSNS（最上段） --- */
  /* --- メインコンテンツ（中央と右） --- */
  /* --- 中央カラム：サービス一覧 --- */
  /* --- 右カラム：会社概要と決済 --- */
  /* 決済枠 */
  /* --- 最下部 --- */
}
@media (max-width: 768px) {
  .l-footer {
    padding: 40px 30px 40px;
  }
}
.l-footer__container {
  max-width: 1000px;
  margin: 0 auto;
}
.l-footer__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .l-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    border-bottom: none;
    margin-bottom: 20px;
  }
}
.l-footer__top .l-footer__logo {
  max-width: 180px;
}
.l-footer__top .l-footer__logo img {
  width: 100%;
}
.l-footer__top .l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.l-footer__top .l-footer__sns img {
  width: 35px;
  height: 35px;
}
.l-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .l-footer__main {
    -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;
    text-align: center;
    gap: 10px;
  }
}
.l-footer__left {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}
.l-footer__left .left-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.l-footer__left .l-footer__link-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-footer__left .l-footer__link-list {
    max-width: 400px;
  }
}
@media (max-width: 500px) {
  .l-footer__left .l-footer__link-list {
    gap: 13px 15px;
  }
}
.l-footer__left .l-footer__link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-footer__left .l-footer__link-list li a {
    gap: 6px;
    font-size: 13px;
  }
}
.l-footer__left .l-footer__link-list li a:hover {
  opacity: 0.7;
}
.l-footer__left .l-footer__link-list li a img {
  width: 8px;
}
.l-footer__left .l-footer__link-list li a p {
  display: inline-block;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-footer__left .l-footer__link-list li a p::after {
  position: absolute;
  content: "";
  display: inline-block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: -1;
}
.l-footer__left .l-footer__link-list li a:hover p::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.l-footer__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}
@media (max-width: 768px) {
  .l-footer__right {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
  }
}
.l-footer__right .l-footer__link-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.l-footer__right .l-footer__link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .l-footer__right .l-footer__link-list li a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    text-align: left;
  }
}
.l-footer__right .l-footer__link-list li a p {
  display: inline-block;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-footer__right .l-footer__link-list li a p::after {
  position: absolute;
  content: "";
  display: inline-block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: -1;
}
.l-footer__right .l-footer__link-list li a:hover p::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.l-footer__payment {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}
.l-footer__payment .l-footer__paypal-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.l-footer__payment .l-footer__paypal-top img {
  height: 20px;
}
.l-footer__payment .l-footer__paypal-top .paypal-text {
  font-size: 10px;
  font-weight: 700;
  color: #003087;
  line-height: 1.3;
}
.l-footer__payment .l-footer__payment-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__payment .l-footer__payment-cards img {
  height: 28px;
}
.l-footer__bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    margin-top: 30px;
  }
}
.l-footer__bottom .l-footer__copyright {
  font-size: 12px;
  color: #ffffff;
}

.top_btn {
  position: fixed !important;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top_btn.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.top_btn:hover .inner {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #dbbc4b;
}
.top_btn .inner {
  width: 50px;
  height: 50px;
  background-color: #283d2b;
  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;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top_btn .inner {
    width: 40px;
    height: 40px;
  }
}
.top_btn .inner::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .top_btn .inner::after {
    width: 8px;
    height: 8px;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
.l-wrapper {
  padding-top: 80px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.l-section {
  width: 88%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .l-section {
    width: 80%;
  }
}
@media (min-width: 1400px) {
  .l-section {
    max-width: 1200px;
    width: 100%;
  }
}

.l-section__inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .l-section__inner {
    width: 86%;
  }
}
@media (min-width: 1400px) {
  .l-section__inner {
    max-width: 1040px;
    width: 100%;
  }
}

.l-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .l-container {
    max-width: 960px;
    width: 100%;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/**
 * _button.scss
 * ボタンコンポーネント
 */
.c-button {
  width: 100%;
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .c-button {
    max-width: 632px;
    margin-top: 80px;
  }
}
.c-button__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-button__contents .item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.c-button__contents .item:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  pointer-events: auto;
  -webkit-box-shadow: 2px -2px 4px rgba(62, 62, 62, 0.7725490196);
          box-shadow: 2px -2px 4px rgba(62, 62, 62, 0.7725490196);
}
.c-button__contents .item:active {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
}
@media screen and (min-width: 768px) {
  .c-button__contents .item {
    width: 48%;
    height: auto;
  }
  .c-button__contents .item img {
    width: 100%;
  }
}

.c-btn_tohome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn_tohome .c-btn_tohome__link {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn_tohome .c-btn_tohome__link:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  -webkit-box-shadow: 2px -4px 4px rgba(107, 107, 107, 0.9019607843);
          box-shadow: 2px -4px 4px rgba(107, 107, 107, 0.9019607843);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.c-btn_tohome .c-btn_tohome__link:active {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.c-pagenavi,
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-pagenavi,
  .wp-pagenavi {
    gap: 20px;
  }
}
.c-pagenavi .page,
.c-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .current {
  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;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1;
  border: 1px solid #222222;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-pagenavi .page,
  .c-pagenavi .current,
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    font-size: 24px;
  }
}
.c-pagenavi .page,
.wp-pagenavi .page {
  background-color: #fff;
  color: #262626;
  text-decoration: none;
}
.c-pagenavi .page:hover,
.wp-pagenavi .page:hover {
  background-color: #222222;
  color: #fff;
}
.c-pagenavi .current,
.wp-pagenavi .current {
  background-color: #222222;
  color: #fff;
  font-weight: 700;
}
.c-pagenavi .dots,
.wp-pagenavi .dots {
  color: #999;
  padding: 0 8px;
}

.page_navi {
  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;
  gap: 24px;
  margin-top: 60px;
}

.c-button__toppage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
.c-button__toppage a {
  width: 251px;
  height: 60px;
  background-color: #478b4a;
  border-radius: 2px;
  padding: 22.5px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: #478b4a;
      -ms-flex-pack: #478b4a;
          justify-content: #478b4a;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-button__toppage a {
    width: 251px;
  }
}
.c-button__toppage a .text {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
}
.c-button__toppage a:hover {
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
  -webkit-box-shadow: 5px 5px 6px rgba(156, 156, 156, 0.7647058824);
          box-shadow: 5px 5px 6px rgba(156, 156, 156, 0.7647058824);
  opacity: 0.9;
}
.c-button__toppage:disabled, .c-button__toppage.is-disabled {
  opacity: 0.5;
  color: #8c8c8c;
  cursor: not-allowed;
  pointer-events: none;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/**
 * _form.scss
 * フォームコンポーネント
 */
.c-form {
  width: 100%;
}

.c-form__group:last-child {
  margin-bottom: 0;
}

.c-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #222222;
}
.c-form__label.is_required::after {
  content: " *";
  color: #d32f2f;
}

.c-form__input,
.c-form__textarea,
.c-form__select {
  width: 100%;
  font-size: 16px;
  border: 1px solid #929292;
  border-radius: 8px;
  background-color: #fff;
  color: #222222;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-form__input:focus,
.c-form__textarea:focus,
.c-form__select:focus {
  outline: none;
  border-color: #478b4a;
  -webkit-box-shadow: 0 0 0 3px rgba(71, 139, 74, 0.1);
          box-shadow: 0 0 0 3px rgba(71, 139, 74, 0.1);
}
.c-form__input:disabled,
.c-form__textarea:disabled,
.c-form__select:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
.c-form__input.is-error,
.c-form__textarea.is-error,
.c-form__select.is-error {
  border-color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.05);
}

.c-form__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Noto Serif JP", serif;
}

.c-form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  color: #999;
}
.c-form__select option {
  text-align: left;
  color: #262626;
}
.c-form__select.has-value {
  text-align: left !important;
  -moz-text-align-last: left !important;
       text-align-last: left !important;
  color: #262626 !important;
}

.c-form-checkbox,
.c-form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form-checkbox input,
.c-form-radio input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #478b4a;
}
.c-form-checkbox label,
.c-form-radio label {
  margin: 0;
  cursor: pointer;
  font-size: 14px;
  color: #222222;
}

.c-form__error {
  color: #d32f2f;
  font-size: 12px;
  display: none;
}
.c-form__error.is-show {
  display: block;
}

.c-form-success {
  color: #388e3c;
  font-size: 12px;
  display: none;
}
.c-form-success.is-show {
  display: block;
}

.c-form-hint {
  font-size: 12px;
  color: #7c7c7c;
}

.submit-button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.submit-button:disabled {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
  opacity: 0.6;
  cursor: not-allowed;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
.section__title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-top: 30px;
  text-shadow: 0 4px 6px rgba(33, 33, 33, 0.4235294118);
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 48px;
    margin-top: 60px;
  }
}
.section__title::before {
  text-shadow: 0 0 0;
  position: absolute;
  bottom: 10px;
  left: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 700;
  font-size: 45px;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  content: "";
}
@media screen and (min-width: 768px) {
  .section__title::before {
    font-size: 90px;
    left: 70%;
  }
}

.section__title-sub {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 4px 6px rgba(33, 33, 33, 0.4235294118);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .section__title-sub {
    font-size: 48px;
  }
}
.section__title-sub::before {
  text-shadow: 0 0 0;
  position: absolute;
  bottom: 5px;
  left: 60%;
  font-weight: 700;
  font-size: 40px;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
  content: "";
  color: #222222;
}
@media screen and (min-width: 768px) {
  .section__title-sub::before {
    font-size: 80px;
    left: 55%;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
.c-mouse-stalker {
  position: fixed;
  pointer-events: none;
  border-radius: 50%; /* 丸めたい場合 */
  padding: 32px 16px;
  background: rgba(107, 137, 88, 0.8);
  color: #fff;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 9999;
  display: none;
  will-change: left, top;
}
@media screen and (min-width: 768px) {
  .c-mouse-stalker {
    display: block;
  }
}

.c-mouse-stalker.is-active {
  opacity: 1;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/* =========================================
   SWELL Style Reset (修正版：装飾のみ解除)
   ========================================= */
/* H2, H3などの「勝手な背景色・枠線」だけを消す */
.custom-page-wrapper h1,
.custom-page-wrapper h2,
.custom-page-wrapper h3,
.custom-page-wrapper h4,
.custom-page-wrapper h5 {
  background: none !important; /* SWELLの背景色を消す */
  border: none !important; /* SWELLの枠線を消す */
  -webkit-box-shadow: none !important;
          box-shadow: none !important; /* SWELLの影を消す */
}

/* SWELLが見出しにつける「擬似要素（線やアイコン）」を消す */
.custom-page-wrapper h1::before,
.custom-page-wrapper h1::after,
.custom-page-wrapper h2::before,
.custom-page-wrapper h2::after,
.custom-page-wrapper h3::before,
.custom-page-wrapper h3::after,
.custom-page-wrapper h4::before,
.custom-page-wrapper h4::after {
  content: none !important;
  display: none !important;
}

/* ========================================
   リセット・ベーススタイル
   ======================================== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-breadcrumb {
  display: none;
}

.c-pageTitle {
  display: none;
}

.l-fixHeader {
  display: none;
}

.l-container {
  max-width: none !important;
}

.l-article {
  max-width: none !important;
}

.l-mainContent__inner > .post_content {
  padding: 0;
  margin: 0;
}

.l-content {
  padding: 0;
  margin: 0;
}

#fix_bottom_menu {
  display: none;
}

.post_content > * {
  margin-bottom: initial !important;
}

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

ul {
  list-style: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.p-kv {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
  /* 背景写真：親のinnerいっぱいに広げる */
  /* ボックス全体のホバー効果（オプション） */
  /* リンクをボックス全体に広げる魔法（ボックス全体がクリック可能になります） */
  /* 見出しテキストのデザイン */
}
.p-kv__inner {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-kv__inner {
    height: auto;
    min-height: 400px;
  }
}
.p-kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-kv__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.557);
  z-index: 2;
}
.p-kv__bg picture,
.p-kv__bg img {
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-kv__label {
  position: absolute;
  z-index: 3;
  top: 15vw;
  left: 4.8611vw;
  /* コンテンツ類はz-indexを上げて背景より前に出す */
}
@media screen and (max-width: 767px) {
  .p-kv__label {
    top: 40%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-kv__label .label {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .p-kv__label .label {
    max-width: 200px;
  }
}
.p-kv__label .label img {
  width: 100%;
}
.p-kv__label .content {
  color: #fff;
  letter-spacing: 0.2em;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-kv__label .content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-kv__label .content .main-title {
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-kv__label .content .main-title {
    line-height: 1.4;
    font-size: clamp(18px, 6.4vw, 22px);
  }
}
.p-kv__label .content .sub-title {
  line-height: 1.6;
  margin-top: 24px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-kv__label .content .sub-title {
    font-size: clamp(14px, 4vw, 16px);
  }
}
.p-kv__label .content .sp {
  display: none;
}
@media (max-width: 480px) {
  .p-kv__label .content .sp {
    display: block;
  }
}
.p-kv .cta__button {
  background-color: #d0d9d1;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
}
@media (max-width: 800px) {
  .p-kv .cta__button {
    padding: 10px 0;
  }
}
.p-kv .cta__button .cp-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-kv .cta__button .cta__button__contents {
  width: 100%;
  max-width: 528px; /* 画像の比率に合わせて幅を設定 */
  /* 指定された背景グラデーション */
  /* ※31.73%以降の指定がなかったため、白で繋いでいます */
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(14.42%, #c5ccc6), color-stop(31.73%, #ffffff), to(#ffffff));
  background: linear-gradient(180deg, #ffffff 0%, #c5ccc6 14.42%, #ffffff 31.73%, #ffffff 100%);
  /* ゴールドの枠線 */
  border: 6px solid var(--c-accent-gold);
  /* 内部の余白とテキスト配置 */
  padding: 8px 40px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative; /* リンク範囲拡張のため */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* 注釈テキストのデザイン */
}
@media (max-width: 800px) {
  .p-kv .cta__button .cta__button__contents {
    padding: 6px 20px;
  }
}
.p-kv .cta__button .cta__button__contents .heading {
  font-family: "Noto Serif JP" !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 24px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  text-align: center !important;
  letter-spacing: 0.1em !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #091d0d !important;
}
@media (max-width: 800px) {
  .p-kv .cta__button .cta__button__contents .heading {
    font-size: 20px;
  }
}
.p-kv .cta__button .cta__button__contents .note {
  font-family: var(--font-serif); /* 明朝体 */
  font-size: 16px;
  font-weight: bold;
  color: #091d0d;
  margin: 0;
  position: relative; /* 前面のリンクより後ろにするため */
  z-index: 0;
}
@media (max-width: 800px) {
  .p-kv .cta__button .cta__button__contents .note {
    font-size: 14px;
  }
}
.p-kv .cta__button .cta__button__contents:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 0 30px rgba(198, 198, 136, 0.832);
          box-shadow: 0 0 30px rgba(198, 198, 136, 0.832);
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.p-kv .cp-cta-main-box .cp-cta-main-button {
  display: block;
  text-decoration: none;
  color: inherit;
  /* 前回のボタンスタイルをリセット */
  background: none;
  border: none;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-kv .cp-cta-main-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* --- ボタンエリア --- */
/* ========================================
//    ヒーローセクション
//    ======================================== */
/* ========================================
   メインコンテンツ
   ======================================== */
.FV-section,
.cp-cta-main-section,
.cp-concept-section,
.cp-recommend-section,
.cp-service-section,
.cp-reason-section,
.cp-flow-section,
.cp-qa-section,
.cp-price-section,
.cp-cta-bottom-section {
  display: block;
  position: relative;
}

/* ========================================
   レスポンシブデザイン - CTAボタンセクション
   ======================================== */
/* 帯セクション */
.banner {
  background: -webkit-gradient(linear, left top, right top, from(#a68113), color-stop(50%, #ceb770), color-stop(75%, #a68113), to(#ddc784));
  background: linear-gradient(90deg, #a68113 0%, #ceb770 50%, #a68113 75%, #ddc784 100%);
  padding: 40px 20px;
  text-align: center;
}

.banner__container {
  max-width: 1000px;
  margin: 0 auto;
}

.banner__text {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner__arrow {
  background: #fff;
  padding: 50px 0;
  text-align: center;
}

.banner__arrow img {
  width: 40px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .banner {
    padding: 30px 15px;
  }
  .banner__text {
    font-size: 22px;
  }
  .banner__arrow img {
    width: 30px;
  }
}
/* 図セクション */
.diagram {
  background: #fff;
  padding: 80px 20px;
  position: relative;
}

.diagram__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.diagram__image {
  margin-bottom: 40px;
}

.diagram__image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.diagram__decoration {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.diagram__decoration img {
  width: auto;
  height: 80px;
  display: block;
}

/* タブレット */
@media (max-width: 1024px) {
  .diagram__decoration img {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .diagram {
    padding: 60px 15px;
  }
  .diagram__image img {
    max-width: 100%;
  }
  .diagram__decoration img {
    height: 50px;
  }
}
@media (max-width: 480px) {
  .diagram__decoration img {
    height: 40px;
  }
}
/* =========================================
   Base Settings (修正版)
   ========================================= */
:root {
  --c-main-green: #123f1b;
  --c-accent-orange: #e27238;
  --c-accent-gold: #a68113;
  --c-bg-light-green: #d0d9d1;
  --c-bg-gray: #f7f7f7;
  --c-white: #ffffff;
  --c-text: #333333;
  --font-base: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  /* 共通の最大幅設定 */
  --site-max-width: 1440px;
}

/* ページ全体のラッパー */
.custom-page-wrapper {
  width: 100%;
  overflow-x: hidden; /* 横スクロール防止 */
  font-family: var(--font-base);
  color: var(--c-text);
  line-height: 1.6;
  background-color: transparent; /* 背景なし（透明） */
}

/* ▼▼▼ ここが重要な修正ポイント ▼▼▼ */
/* ラッパー直下のすべてのセクションに対して
   「幅1440px・中央寄せ」を強制適用します */
/* =========================================
   Concept Section (目指せる状態)
   ========================================= */
/* コンテナ設定（基準点にする） */
.cp-concept-section .cp-container {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 80px;
  z-index: 0;
  background-image: url(../images/common/image-bg03.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* -----------------------------------------
   1. ゴールドのヘッダー帯
   ----------------------------------------- */
.cp-concept-section .cp-concept-header {
  /* 画面幅いっぱいに広げる魔法の記述 */
  width: 100%;
  padding: 40px;
  /* ゴールドのグラデーション */
  background: linear-gradient(135deg, #fff1c8, rgba(166, 129, 19, 0.8705882353), #a68113, #ddc784, #fff1c8);
  /* 高さ・余白調整 */
  text-align: center;
  margin-bottom: 110px;
  position: relative; /* 重なり順の制御のため */
  z-index: 1;
  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 (max-width: 800px) {
  .cp-concept-section .cp-concept-header {
    height: auto;
    padding: 25px 0;
    margin-bottom: 80px;
  }
}

/* タイトル文字 */
.cp-concept-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); /* 文字を少し浮き立たせる */
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* -----------------------------------------
   2. 男性のイラスト（絶対配置で移動）
   ----------------------------------------- */
.cp-concept-image-wrapper {
  position: absolute;
  /* 親コンテナ(.cp-container)の上端からの位置 */
  top: 30px;
  /* 左右中央から右へずらす計算 */
  right: 18.0555vw;
  width: 160px; /* 画像サイズ調整 */
  height: auto;
  z-index: 1; /* ヘッダーより手前に */
  pointer-events: none; /* クリックを透過させる */
}
@media (max-width: 1025px) {
  .cp-concept-image-wrapper {
    width: 100px;
    top: 30px;
    right: 0;
  }
}
@media (max-width: 500px) {
  .cp-concept-image-wrapper {
    width: 70px;
    top: 60px;
    right: 0;
  }
}
.cp-concept-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* -----------------------------------------
   3. チェックリスト（薄い緑の箱）
   ----------------------------------------- */
.cp-checklist-container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* ヘッダーより手前に */
}

/* デザインにある「下向きの矢印（くの字）」を作成 */
.cp-checklist-container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #9c7918; /* ゴールド系の濃い色 */
  border-right: 2px solid #9c7918;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 回転させて矢印にする */
  margin: -70px auto 50px; /* ヘッダーとの隙間に配置（マイナスマージンで上に食い込ませる） */
}

.cp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px; /* リスト間の隙間 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  .cp-checklist {
    width: 85%;
    gap: 20px;
  }
}

.cp-checklist-item {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff)) padding-box, -webkit-gradient(linear, left top, left bottom, from(#a68113), color-stop(50%, #fff4d3), to(#a68113)) border-box;
  background: linear-gradient(#fff) padding-box, linear-gradient(180deg, #a68113 0%, #fff4d3 50%, #a68113 100%) border-box; /* 枠線のグラデーション */
  border: 4px solid transparent;
  /* 薄い緑色の背景 */
  -webkit-box-shadow: 4px 4px 6px #ddd;
          box-shadow: 4px 4px 6px #ddd;
  /* テキスト設定 */
  color: #262626;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  padding: 20px 30px;
  border-radius: 6px; /* 角丸 */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

/* -----------------------------------------
   レスポンシブ対応（スマホ）
   ----------------------------------------- */
@media (max-width: 768px) {
  /* ヘッダー */
  .cp-concept-header {
    padding: 40px 0 80px;
  }
  .cp-concept-title {
    font-size: 22px;
  }
  .sp-only {
    display: block; /* スマホのみ改行 */
  }
  /* リスト */
  .cp-checklist-item {
    font-size: 15px;
    padding: 15px;
    max-width: 500px;
  }
  /* 矢印 */
  .cp-checklist-container::before {
    margin: -60px auto 40px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  .cp-checklist-item {
    text-align: left; /* スマホは左寄せの方が読みやすい場合も */
  }
}
/* =========================================
   Recommend Section (こんな方におすすめ)
   ========================================= */
/* コンテナ設定（1440px幅・背景色あり） */
.cp-recommend-section {
  background-color: #cedad0;
  width: 100%;
}
.cp-recommend-section .cp-container {
  width: 100%;
  max-width: 1440px; /* 画面幅が狭い場合用 */
  /* デザイン画像に合わせた薄いグレーグリーン色 */
  padding: 80px 0 100px;
  margin: 0 auto;
  position: relative;
  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;
  z-index: 0;
}

/* -----------------------------------------
   タイトル（白い吹き出し）
   ----------------------------------------- */
.cp-recommend-section .cp-section-title {
  background-color: #fff;
  width: 100%;
  max-width: 580px;
  padding: 20px;
  margin-bottom: 60px;
  position: relative; /* 吹き出しの尻尾用 */
  z-index: 1; /* 画像より前に出す */
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #262626;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.cp-recommend-section .cp-section-title::after {
  content: "";
  position: absolute;
  bottom: -20px; /* 下に突き出す */
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 20px solid #fff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

/* 吹き出しの尻尾（三角形） */
/* -----------------------------------------
   イラスト画像（絶対配置）
   ----------------------------------------- */
/* 位置調整のためのラッパー */
.cp-recommend-section .cp-recommend-img-col {
  position: absolute;
  top: 60px; /* タイトルと同じくらいの高さに配置 */
  right: 0;
  /* タイトルの右側に配置するための移動量 */
  width: 280px;
  z-index: 1;
}

.cp-recommend-section .cp-recommend-image {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

/* -----------------------------------------
   チェックリスト
   ----------------------------------------- */
.cp-recommend-section .cp-section-title {
  -webkit-box-shadow: 4px 4px 6px rgba(80, 80, 80, 0.2509803922);
          box-shadow: 4px 4px 6px rgba(80, 80, 80, 0.2509803922);
  width: 900px;
  border-radius: 6px;
}
.cp-recommend-section .cp-recommend-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.cp-recommend-section .cp-recommend-list-col {
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.cp-recommend-section .cp-recommend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.cp-recommend-section .cp-recommend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直中央揃え */
  gap: 20px;
}

/* チェックマーク画像 */
.cp-recommend-section .cp-check-mark {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

/* テキスト */
.cp-recommend-section .cp-recommend-text {
  font-size: 22px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

/* 強調文字（赤オレンジ） */
.cp-recommend-section .cp-recommend-text b {
  color: #d35b28; /* デザインに合わせた色 */
  color: #18248d; /* デザインに合わせた色 */
  font-weight: 700;
  font-family: "Noto Sans JP";
}

/* -----------------------------------------
   レスポンシブ対応（スマホ）
   ----------------------------------------- */
@media (max-width: 768px) {
  .cp-recommend-section .cp-container {
    width: 100%;
    padding: 60px 20px;
  }
  /* タイトル */
  .cp-recommend-section .cp-section-title {
    font-size: 20px;
    padding: 20px;
    max-width: 350px;
    margin-bottom: 80px; /* 画像が入るスペースを確保 */
  }
  /* 画像（タイトルの下に配置） */
  .cp-recommend-section .cp-recommend-img-col {
    top: 90px; /* タイトルの下 */
    right: 0;
    width: 160px;
  }
  /* リスト */
  .cp-recommend-section .cp-recommend-list {
    gap: 20px;
  }
  .cp-recommend-section .cp-recommend-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* スマホでは上揃えが見やすい */
    gap: 7px;
  }
  .cp-recommend-section .cp-check-mark {
    width: 24px;
    height: 24px;
    margin-top: 4px;
  }
  .cp-recommend-section .cp-recommend-text {
    font-size: 16px;
  }
}
/* =========================================


   CTAボタンセクション
   ======================================== */
.ca-cta-section {
  background: #83a289;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.ca-cta-section .cta-section {
  max-width: 680px;
  padding: 50px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .ca-cta-section .cta-section {
    padding: 30px 20px;
  }
}
.ca-cta-section .cta-section__container {
  max-width: 1200px;
  margin: 0 auto;
}
.ca-cta-section .cta-section__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .ca-cta-section .cta-section__buttons {
    max-width: 221px;
    gap: 7px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ca-cta-section .cta-section__buttons .cta-section__button {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  .ca-cta-section .cta-section__buttons .cta-section__button {
    max-width: 221px;
  }
}
.ca-cta-section .cta-section__buttons .cta-section__button img {
  width: 100%;
  height: auto;
  display: block;
}
.ca-cta-section .cta-section__buttons .cta-section__button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  opacity: 0.95;
}
.ca-cta-section .cta-section__buttons .sp-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 19px;
}
@media screen and (max-width: 767px) {
  .ca-cta-section .cta-section__buttons .sp-btn {
    gap: 7px;
  }
}

#main_content .post_content {
  background: rgba(0, 0, 0, 0.2);
}

/* -----------------------------------------
レスポンシブ対応（ヘッダー）
   ----------------------------------------- */
/* 画面サイズ1480以上 */
@media (min-width: 1480px) {
  .hero__logo {
    min-width: 336px;
  }
}
/* 画面サイズ1100以下 */
@media (max-width: 1100px) {
  .hero__logo {
    margin-left: 40px;
    min-width: 240px;
  }
  .hero__cta-buttons {
    margin-left: 70px;
  }
  .hero__top-row {
    gap: 0px;
  }
  .hero__cta-button img {
    max-height: 70px;
  }
  .hero__logo img {
    max-height: 70px;
  }
}
/* 画面サイズ1101以上 */
@media (min-width: 1101px) {
  .hero__logo {
    min-width: 336px;
  }
}
/* =========================================
   料金セクション追加分（広告運用・初期費用）
   ※セパレート型（隙間あり）レイアウト
   ========================================= */
/* 1. 外側の箱を透明にし、ブロック間の隙間を作る */
.cp-price-upper-box:has(.cp-price-title-box) {
  background-color: transparent !important;
  padding: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin-bottom: 50px !important; /* 「広告運用代行費」と「初期費用」のブロック間の隙間 */
}
@media screen and (max-width: 767px) {
  .cp-price-upper-box:has(.cp-price-title-box) {
    width: 80%;
  }
}

/* 2. タイトル帯（ゴールド）の設定 */
.cp-price-title-box {
  background-color: #a68113;
  padding: 20px 0;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cp-price-title {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.1em;
}

/* 3. 金額エリア（白背景）の設定 */
.cp-price-upper-box:has(.cp-price-title-box) .cp-price-amount-box {
  background-color: #ffffff;
  padding: 25px 40px;
  border-bottom: none !important; /* 流用元の不要な下線を消す */
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* --- サブテキスト（※月額最低運用費〜）の設定 --- */
.cp-price-amount-desc {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #262626;
  margin: 15px 0 0 0;
}

.cp-price-amount-desc .prefix {
  font-weight: 600;
}

.cp-price-amount-desc .prefix,
.cp-price-amount-desc .tax {
  font-size: 14px;
}

.cp-price-amount-desc .num {
  font-size: 24px;
  color: #262626;
}

.cp-price-amount-desc .unit {
  font-size: 16px;
  color: #262626;
}

/* --- 初期費用などの特大サイズ (special) --- */
.cp-price-amount .num-special {
  font-size: 56px;
  line-height: 1;
  color: #123f1b;
}

.cp-price-amount .unit-special {
  font-size: 32px;
  color: #123f1b;
  font-weight: 700;
}

/* --- レスポンシブ対応（スマホ用） --- */
@media (max-width: 768px) {
  .cp-price-amount .num-special {
    font-size: 56px;
  }
  .cp-price-amount .unit-special {
    font-size: 24px;
  }
  .cp-price-upper-box:has(.cp-price-title-box) .cp-price-amount-box {
    padding: 30px 20px; /* スマホでは白箱の余白を少し狭くする */
  }
}
/* =========================================
   料金セクション追加分（LP制作一式・横並びレイアウト）
   ========================================= */
/* 横並び用の親コンテナ設定 */
.cp-price-upper-box.is-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 auto 50px !important;
  max-width: 680px; /* 全体の横幅（画像に合わせて少し絞っています） */
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important; /* 枠全体に影をつける */
  border-radius: 4px;
  overflow: hidden; /* 角丸からはみ出ないように */
}

/* 左側：タイトルエリア（薄いグレーグリーン） */
.cp-price-upper-box.is-horizontal .cp-price-title-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #e8ede8; /* サイトのテーマに合わせた薄い背景色 */
  margin-bottom: 0 !important; /* ベースの隙間指定を打ち消し */
  padding: 40px 20px;
  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-box-shadow: none;
          box-shadow: none; /* 個別の影を消す */
}

/* タイトルの文字設定 */
.cp-price-upper-box.is-horizontal .cp-price-title {
  color: #333333; /* ゴールド帯用の白文字から黒系に変更 */
  font-size: 24px;
  font-weight: 600;
}

/* 右側：金額エリア（白背景） */
.cp-price-upper-box.is-horizontal .cp-price-amount-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #ffffff;
  padding: 40px 20px;
  margin: 0;
  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-box-shadow: none;
          box-shadow: none; /* 個別の影を消す */
}

/* --- レスポンシブ対応（スマホ用） --- */
@media (max-width: 768px) {
  .cp-price-upper-box.is-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; /* スマホでは画面幅が足りないため縦積みに */
    max-width: 80%;
  }
  .cp-price-upper-box.is-horizontal .cp-price-title-box,
  .cp-price-upper-box.is-horizontal .cp-price-amount-box {
    padding: 30px 20px;
  }
}
/* =========================================
   QA Section アコーディオン用 CSS (修正版)
   ========================================= */
/* --- クリックエリア（Q）--- */
.cp-qa-head {
  cursor: pointer; /* マウスオーバーで指マークにする */
}

/* 質問右側の「ー」アイコン（横線のみ） */
.cp-qa-head::after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: #333;
}

/* --- 開閉エリア（A）--- */
.cp-qa-body {
  /* アコーディオン開閉のための必須設定 */
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* 高さと余白をアニメーション */
  /* 閉じている時はパディングを消して完全に隠す */
  padding-top: 0;
  padding-bottom: 0;
}

/* 開いている時（.active）はパディングを復活させる */
.cp-qa-item.active .cp-qa-body {
  padding-top: 25px; /* 元のCSSの指定に合わせる */
  padding-bottom: 25px;
}

/* =========================================
   QA Section アコーディオン用 CSS (複数行対応)
   ========================================= */
/* --- 開閉エリア（A）--- */
/* --- 開閉エリア（A）--- */
.cp-qa-body {
  background-color: #eae7e7;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important; /* ✅ アイコンとテキストを上下中央に */
  gap: 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* ⚠️ 悪さをしている 40px を無効化し、JSで制御できるようにする */
  max-height: 0 !important;
  height: auto !important;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, visibility 0.4s;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, visibility 0.4s;
  /* 閉じている時は上下パディングを 0 に */
  padding: 0 30px !important;
}

/* 開いている時（.is-active）のスタイル */
.cp-qa-item.is-active .cp-qa-body {
  /* JSが動くならここは auto でも良いですが、念のため十分な数値を */
  max-height: 1000px !important;
  visibility: visible;
  padding-top: 40px !important; /* ✅ 上下の余白をしっかり確保 */
  padding-bottom: 40px !important;
}

/* 「A」のアイコン設定 */
.cp-qa-icon.a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d1b86c;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* ✅ アイコンが絶対につぶれないように固定 */
  margin: 0; /* 余計なマージンをリセット */
}

/* テキストエリア */
.cp-qa-a-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
  line-height: 1.8;
  margin: 0 !important;
  padding: 0 !important;
  display: block; /* 余計な flex 干渉を防ぐ */
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/* スマホ */
.p-home {
  /* ========================================
   ペインポイントセクション
   ======================================== */
  /* ========================================
   解決セクション
   ======================================== */
  /* ========================================
   私たちについてセクション
   ======================================== */
  /* 9つのCTAセクション */
  /* 実績セクション */
  /* 実績内容セクション */
  /* 特徴セクション */
  /* タブレット */
}
.p-home__hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.p-home__hero__inner {
  position: relative;
  height: 100%;
}
.p-home__hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  position: relative;
}
.p-home__hero__image.wave {
  background-image: url(../images/home/top_kv.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-home__hero__image.wave {
    background-image: url(../images/home/top_kv_sp.jpg);
  }
}
.p-home__hero__image.wave canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-home__hero__image.wave::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(88, 112, 65, 0.85);
  z-index: 2;
  pointer-events: none;
}
.p-home__hero__title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 1.4;
  z-index: 1;
  text-shadow: 4px 4px 8px #2a2a2a;
}
.p-home__hero__title .main-title {
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-home__hero__title .main-title {
    font-size: clamp(20px, 5.866vw, 24px);
  }
}
.p-home__hero__title .subtitle {
  font-size: clamp(20px, 1.666vw, 24px);
  font-weight: 400;
  margin-top: 31px;
}
@media screen and (max-width: 767px) {
  .p-home__hero__title .subtitle {
    font-size: clamp(14px, 4.26vw, 16px);
  }
}
.p-home__slide {
  margin-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  width: 100%;
}
.p-home__slide__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: loop-slide 20s infinite linear;
          animation: loop-slide 20s infinite linear;
}
@-webkit-keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    /* 4セット並んでいる場合、1セット分（25%）進んだ瞬間に
       0に戻せば、見た目上は全く同じ位置に2セット目が来ているので
       ループが繋がり続けます。
    */
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}
@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    /* 4セット並んでいる場合、1セット分（25%）進んだ瞬間に
       0に戻せば、見た目上は全く同じ位置に2セット目が来ているので
       ループが繋がり続けます。
    */
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}
.p-home__slide__wrap .slideshow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-home__slide__wrap .content .image {
  height: auto;
  width: 311px;
}
@media screen and (max-width: 767px) {
  .p-home__slide__wrap .content .image {
    width: 200px;
  }
}
.p-home__slide__wrap .content .image img {
  aspect-ratio: 311/187;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-home__slide__wrap .content .image img {
    aspect-ratio: 311/187;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-home__point__title {
  background: rgba(45, 90, 58, 0.9058823529) !important;
  -webkit-box-shadow: 6px 6px 6px #3a3a3a;
          box-shadow: 6px 6px 6px #3a3a3a;
  max-width: 960px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-home__point__title {
    max-width: 80%;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-home__point__title {
    max-width: 94%;
    padding: 20px 10px;
  }
}
.p-home__point__title h2 {
  color: #fff !important;
  font-size: 28px !important;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-home__point__title h2 {
    font-size: 20px !important;
  }
}
.p-home__point .pain-point__arrow {
  background: #fff;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .p-home__point .pain-point__arrow {
    width: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.p-home__point .pain-point__arrow img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.p-home__point .pain-point__list {
  padding: 0px 20px;
}
@media screen and (max-width: 767px) {
  .p-home__point .pain-point__list {
    padding: 0px 15px;
  }
}
.p-home__point .pain-point__list-container {
  max-width: 900px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-home__point .pain-point__list-container {
    gap: 24px;
  }
}
.p-home__point .pain-point__list-container .pain-point__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 10px rgba(51, 51, 51, 0.2352941176);
          box-shadow: 2px 2px 10px rgba(51, 51, 51, 0.2352941176);
}
@media screen and (max-width: 767px) {
  .p-home__point .pain-point__list-container .pain-point__item {
    padding: 5px;
    gap: 8px;
  }
}
.p-home__point .pain-point__list-container .pain-point__item .pain-point__checkbox {
  width: 16px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-home__point .pain-point__list-container .pain-point__item .pain-point__checkbox {
    width: 13px;
  }
}
.p-home__point .pain-point__list-container .pain-point__item .pain-point__text {
  text-align: left;
  display: block;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-home__point .pain-point__list-container .pain-point__item .pain-point__text {
    font-size: 16px;
  }
}
.p-home__point .pain-point__list-container .pain-point__item .pain-point__text span {
  color: #18248c; /* デザインに合わせた色 */
}
.p-home .pain-point__item:last-child {
  margin-bottom: 0;
}
.p-home .pain-point__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  color: #262620;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home .pain-point__text {
    font-size: 16px;
  }
}
.p-home .p-home__solution {
  background: #fff;
  margin-top: 150px;
  margin-bottom: 150px;
  position: relative;
}
@media (max-width: 800px) {
  .p-home .p-home__solution {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-home .p-home__solution {
    margin-top: 60px;
    margin-bottom: 100px;
  }
}
.p-home .p-home__solution .solution__box {
  margin: 0 80px;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home .p-home__solution .solution__box {
    margin: 0 20px;
  }
}
.p-home .p-home__solution .solution__box .solution__message {
  background: #fff;
  border: 8px solid;
  -o-border-image: linear-gradient(135deg, #ae9444 0%, #fff0c3 50%, #ae9444 100%) 1;
     border-image: linear-gradient(135deg, #ae9444 0%, #fff0c3 50%, #ae9444 100%) 1;
  padding: 40px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-home .p-home__solution .solution__box .solution__message {
    padding: 20px 5px;
  }
}
.p-home .p-home__solution .solution__box .solution__message h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.8;
  color: #123f1b !important;
  margin: 0;
}
@media (max-width: 800px) {
  .p-home .p-home__solution .solution__box .solution__message h2 {
    font-size: 22px;
  }
}
.p-home .p-home__solution .solution__box .image-left {
  width: 200px;
  height: auto;
  position: absolute;
  left: 10.4166vw;
  bottom: -150px;
}
@media (max-width: 800px) {
  .p-home .p-home__solution .solution__box .image-left {
    max-width: 120px;
    left: 0;
    bottom: -100px;
  }
}
.p-home .p-home__solution .solution__box .image-left img {
  width: 100%;
}
.p-home .p-home__solution .solution__box .image-right {
  max-width: 180px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: -100px;
  overflow: visible;
}
@media (max-width: 800px) {
  .p-home .p-home__solution .solution__box .image-right {
    max-width: 150px;
    right: 0;
    bottom: -100px;
  }
}
.p-home .p-home__solution .solution__box .image-right img {
  width: 100%;
}
.p-home .about-us {
  background: #fff;
  padding: 40px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home .about-us {
    padding: 0 32px 60px 32px;
  }
}
.p-home .about-us__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.p-home .about-us__hero {
  position: relative;
  margin-bottom: 60px;
  background-image: url("../images/home/logo4.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-home .about-us__hero {
    margin-bottom: 0;
  }
}
.p-home .about-us__hero h2 {
  font-size: 44px;
  font-weight: 700;
  color: #091d0d !important;
  margin: 0 0 30px 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-home .about-us__hero h2 {
    font-size: 28px;
  }
}
.p-home .about-us__subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin: 10px 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-home .about-us__subtitle {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
  }
}
.p-home .about-us__content {
  position: relative;
  z-index: 1;
}
.p-home .about-us__text-section {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-home .about-us__text-section {
    margin-bottom: 20px;
  }
}
.p-home .about-us__text,
.p-home .about-us__emphasis-text {
  display: inline;
  line-height: 1.6;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #222222), color-stop(50%, #999));
  background-image: linear-gradient(to right, #222222 50%, #999 50%);
  background-size: 200% 100% !important;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-home .about-us__text,
  .p-home .about-us__emphasis-text {
    font-size: 16px;
    text-align: left;
  }
}
.p-home .about-us__emphasis {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-home .about-us__emphasis {
    margin-bottom: 20px;
  }
}
.p-home .about-us__emphasis-text {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #da531d), color-stop(50%, #666666));
  background: linear-gradient(to right, #da531d 50%, #666666 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}
@media screen and (max-width: 767px) {
  .p-home .about-us__emphasis-text {
    text-align: left;
    font-size: 18px;
    margin: 10px 0 20px;
  }
}
.p-home .about-us__decoration {
  position: absolute;
  left: -250px;
  bottom: 0;
  width: 350px;
  opacity: 0.3;
  z-index: 0;
}
.p-home .about-us__decoration img {
  width: 100%;
  height: auto;
  display: block;
}
.p-home .nine-cta {
  background: #fff;
  padding: 60px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home .nine-cta {
    padding: 30px 20px;
  }
}
.p-home .nine-cta .nine-cta__container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-home .nine-cta .nine-cta__header {
  text-align: center;
  margin-bottom: 60px;
}
.p-home .nine-cta .nine-cta__header h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: #333 !important;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home .nine-cta .nine-cta__header h2 {
    font-size: 22px;
  }
}
.p-home .nine-cta .nine-cta__header h2 .nine-cta__title-highlight {
  color: #ff6633;
  font-weight: 700;
  font-size: 28px;
}
.p-home .nine-cta .nine-cta__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-home .nine-cta .nine-cta__grid {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-home .nine-cta .nine-cta__grid {
    width: 93%;
    row-gap: 20px;
  }
}
.p-home .nine-cta .nine-cta__grid .item {
  width: 30%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .p-home .nine-cta .nine-cta__grid .item {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .p-home .nine-cta .nine-cta__grid .item {
    width: 100%;
  }
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  overflow: hidden;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item .image {
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item .image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(55, 85, 17, 0.5607843137);
  z-index: 3;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item .image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item .image .text {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: auto;
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 5;
  font-size: 28px;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item .direction {
  padding: 10px 20px 0px 30px;
  color: #203023;
  font-family: "Noto Sans JP", sans-serif;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #ae9444;
  position: relative;
  padding-right: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item .detail::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  background-color: #ae9444;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item:hover .image img {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item:hover .image::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item:hover .direction {
  color: #373737;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item:hover .detail {
  color: #e3c25d;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item:hover .detail::after {
  background-color: #e3c25d;
}
.p-home .nine-cta .nine-cta__grid .item .nine-cta__item:hover .text {
  opacity: 1;
}
.p-home .nine-cta .nine-cta__decoration {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-home .nine-cta .nine-cta__decoration {
    width: 60%;
  }
}
.p-home .nine-cta .nine-cta__decoration02 {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-home .nine-cta .nine-cta__decoration02 {
    bottom: 50px;
    width: 60%;
  }
}
.p-home .achievement {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home .achievement {
    padding: 60px 20px 40px 20px;
  }
}
.p-home .achievement h2 {
  font-size: 36px !important;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333 !important;
}
@media screen and (max-width: 767px) {
  .p-home .achievement h2 {
    font-size: 24px !important;
    margin-bottom: 24px;
  }
}
.p-home .achievement__title-highlight {
  color: #a68113;
}
.p-home .achievement__description {
  margin-top: 30px;
}
.p-home .achievement__text {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-home .achievement__text {
    font-size: 14px;
    text-align: left;
  }
}
.p-home .achievement-content {
  padding: 60px 20px;
}
@media (max-width: 768px) {
  .p-home .achievement-content {
    padding: 0px 20px 60px;
  }
}
.p-home .achievement-content .achievement-content__container {
  max-width: 1200px;
  margin: 0 auto;
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: #e8ede8;
  min-height: 200px;
}
@media (max-width: 768px) {
  .p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left {
  background: #e8ede8;
  padding: 40px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 44%;
}
@media (max-width: 768px) {
  .p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left {
    width: 100%;
    padding: 30px;
  }
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left .achievement-content__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left .achievement-content__services {
    width: 100%;
    gap: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left .achievement-content__services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left .achievement-content__services .achievement-content__service-box {
  background: #fff;
  padding: 15px 30px;
  font-size: 24px;
  font-weight: 600;
  color: #123f1b;
}
@media (max-width: 768px) {
  .p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left .achievement-content__services .achievement-content__service-box {
    font-size: 18px;
    padding: 10px 30px;
  }
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left .achievement-content__services .achievement-content__plus {
  font-size: 32px;
  font-weight: 700;
  color: #2d5a3a;
}
@media (max-width: 768px) {
  .p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__left .achievement-content__services .achievement-content__plus {
    font-size: 22px;
  }
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__result {
  background: #2d5a3a;
  color: #fff;
  padding: 20px 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__result {
    font-size: 18px;
    padding: 15px 20px;
  }
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__right {
  position: relative;
  overflow: hidden;
  width: 55%;
}
@media (max-width: 768px) {
  .p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__right {
    width: 100%;
    height: auto;
  }
}
.p-home .achievement-content .achievement-content__container .achievement-content__grid .achievement-content__item .achievement-content__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-home .features {
  background: #becfc1;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.p-home .features__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.p-home .features__arrow {
  text-align: center;
  margin: 0 auto 40px auto;
  display: block;
}
.p-home .features__arrow img {
  width: 40px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.p-home .features__content {
  position: relative;
}
.p-home .features__list {
  background: #fff;
  padding: 50px 60px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.p-home .features__item {
  background: #f2f5f3;
  padding: 20px 30px;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.8;
  color: rgba(18, 63, 27, 0.6980392157);
  border-radius: 4px;
  text-align: center;
}
.p-home .features__item:last-child {
  margin-bottom: 0;
}
.p-home .features__highlight {
  color: #db5a25;
  font-weight: 700;
}
.p-home .features__decoration {
  position: absolute;
  bottom: 0;
  right: -50px;
  z-index: 0;
}
.p-home .features__decoration img {
  display: block;
}
@media (max-width: 1024px) {
  .p-home .features__decoration img {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .p-home .features {
    padding: 60px 15px;
  }
  .p-home .features__list {
    padding: 30px 10px;
  }
  .p-home .features__item {
    font-size: 16px;
    padding: 15px 10px;
    text-align: left;
  }
  .p-home .features__decoration img {
    height: 50px;
  }
}
@media (max-width: 480px) {
  .p-home .features__decoration img {
    height: 40px;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/* =========================================
   Service Section (サービス内容)
   ========================================= */
/* コンテナ設定（1440px幅・背景色あり） */
.cp-service-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cp-service-section .cp-section-title {
  /* 画面幅いっぱいに広げる */
  /* 指定のグラデーション */
  background: linear-gradient(135deg, #fff1c8, rgba(166, 129, 19, 0.8705882353), #a68113, #ddc784, #fff1c8);
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* テキスト設定 */
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
  /* 配置調整 */
  padding: 40px 0;
  position: relative;
  /* フレックスで中央配置 */
  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 (max-width: 800px) {
  .cp-service-section .cp-section-title {
    padding: 20px 0;
    font-size: 24px;
  }
}
.cp-service-section .cp-section-title:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 40px;
  height: 40px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .cp-service-section .cp-section-title:after {
    width: 20px;
    height: 20px;
  }
}
.cp-service-section .cp-container {
  width: 100%;
  background-color: #cedad0;
  padding: 80px 0 100px;
  margin: 0 auto;
  position: relative;
  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;
  background-image: url("../images/common/image-bg02.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  /* -----------------------------------------
  バナー画像
  ----------------------------------------- */
  /* -----------------------------------------
  カードグリッド
  ----------------------------------------- */
}
.cp-service-section .cp-container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2745098039);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.cp-service-section .cp-container .cp-service-banner {
  position: absolute;
  /* ▼ top固定をやめ、コンテナの下からの距離に変更 ▼ */
  bottom: 0;
  /* ▼ PC(3カラム)時の右端余白に合わせる ▼ */
  right: 110px;
  width: 260px;
  height: auto;
  z-index: 0; /* カードの上に被せる */
  pointer-events: none; /* クリックの邪魔にならないように */
  text-align: center;
  /* ※ top, margin-bottom は削除または上書きされます */
}
@media (max-width: 1025px) {
  .cp-service-section .cp-container .cp-service-banner {
    width: 200px;
    bottom: 30px;
    right: 0;
  }
}
@media (max-width: 500px) {
  .cp-service-section .cp-container .cp-service-banner {
    width: 150px;
    bottom: 0;
    right: 0;
  }
}
.cp-service-section .cp-container .cp-service-banner img {
  max-width: 100%;
  height: auto;
}
.cp-service-section .cp-container .cp-service-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 30px;
  padding: 0 20px;
  margin: 0 auto 40px;
  width: 80%;
  max-width: 1200px;
}
@media (max-width: 900px) {
  .cp-service-section .cp-container .cp-service-grid {
    width: 100%;
    gap: 20px 15px;
    padding: 0 15px;
  }
}
.cp-service-section .cp-container .cp-service-grid .cp-service-card {
  background: #fff;
  max-width: 350px;
  padding: 20px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  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;
  /* --- タブレット対応 (1150px以下 〜 スマホ直前まで) --- */
  /* --- スマホ対応 (600px以下) --- */
}
@media (max-width: 1150px) {
  .cp-service-section .cp-container .cp-service-grid .cp-service-card {
    width: calc((100% - 40px) / 2);
    min-width: 300px;
  }
}
@media (max-width: 600px) {
  .cp-service-section .cp-container .cp-service-grid .cp-service-card {
    width: 100%;
    max-width: 320px;
  }
}
.cp-service-section .cp-container .cp-service-grid .cp-service-card .cp-service-card-img {
  width: 100%;
  margin-bottom: 20px;
}
.cp-service-section .cp-container .cp-service-grid .cp-service-card .cp-service-card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.cp-service-section .cp-container .cp-service-grid .cp-service-card .cp-service-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  color: #262626;
  text-align: center;
  line-height: 1.6;
}
.cp-service-section .cp-container .cp-service-grid .cp-service-card .cp-service-card-title span {
  font-size: 18px;
  display: block;
  margin-top: 5px;
  font-weight: 600;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/* =========================================
   Reason Section (選ばれる理由 - シンプル版)
   ========================================= */
/* セクション全体の背景（1440px幅・白背景固定） */
.cp-reason-section .cp-container {
  width: 1440px;
  max-width: 100%;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 100px 0; /* 上下の余白 */
  display: block;
  position: relative;
}

/* -----------------------------------------
   1. タイトル（帯なし・文字のみ）
   ----------------------------------------- */
.cp-reason-section .cp-section-title.is-gold {
  background: none !important;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  text-align: center;
  /* ▼ 横並びにするための設定 ▼ */
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 左右中央寄せ */
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; /* 文字の下端を揃える */
  gap: 10px; /* 前後の文字の隙間調整 */
}

/* 上部の小さいテキスト（造園・植木屋...） */
.cp-reason-section .cp-section-title .cp-sub {
  display: inline; /* ブロック解除 */
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  color: #091d0d;
  margin: 0;
}

.cp-reason-section .cp-section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 700;
  color: #a68113;
  letter-spacing: 0.1em;
  margin: 0;
}

/* -----------------------------------------
   2. 中央の「V字」アイコン
   ----------------------------------------- */
.cp-reason-section .cp-reason-box::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-right: 1px solid #a68113; /* ゴールドの細い線 */
  border-bottom: 1px solid #a68113;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 auto 40px; /* 中央に配置し、下のリストと距離をとる */
}
@media screen and (max-width: 767px) {
  .cp-reason-section .cp-reason-box::before {
    width: 15px;
    height: 15px;
    margin: 0 auto 20px; /* 中央に配置し、下のリストと距離をとる */
  }
}

/* -----------------------------------------
   3. 理由リスト（緑のボックス）
   ----------------------------------------- */
.cp-reason-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px; /* ボックス同士の隙間 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cp-reason-item {
  width: 100%;
  max-width: 800px; /* ボックスの横幅 */
  padding: 15px 0;
  background: linear-gradient(60deg, #fdf0c6, #ffffff, #fff8e3, #ffecb3) padding-box, linear-gradient(180deg, #a68113 0%, #fff4d3 50%, #a68113 100%) border-box; /* 枠線のグラデーション */
  border: 3px solid transparent; /* 枠線の太さ（透明にして後ろのグラデーションを見せる） */
  border-radius: 10px; /* 角丸の大きさ（お好みで調整してください） */
  /* 文字の中央揃え */
  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;
  /* テキストスタイル */
  color: #836819;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.342);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.342);
}
@media (max-width: 1024px) {
  .cp-reason-item {
    font-size: 16px;
    height: auto;
    padding: 15px;
    max-width: 500px;
  }
}
@media (max-width: 500px) {
  .cp-reason-item {
    max-width: 100%;
  }
}

/* -----------------------------------------
   レスポンシブ（スマホ）
   ----------------------------------------- */
@media (max-width: 768px) {
  .cp-reason-section .cp-container {
    padding: 60px 20px;
  }
  .cp-reason-section .cp-section-title.is-gold {
    -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;
    gap: 5px;
  }
  .cp-reason-section .cp-section-title .cp-sub {
    font-size: 20px;
  }
  .cp-reason-section .cp-section-title {
    font-size: 24px;
  }
}
/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
body.rules .p-rules {
  line-height: 1.6;
  font-weight: 400;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 200px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}
body.rules .p-rules section {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules section {
    margin-top: 40px;
  }
}
body.rules .p-rules__content {
  width: 80%;
  max-width: 960px;
  font-weight: 600;
  margin-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules__content {
    width: 90%;
    margin-top: 30px;
    font-size: 14px;
  }
}
body.rules .p-rules h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
body.rules .p-rules h2 {
  font-weight: 600;
  color: #478b4a;
  font-size: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules h2 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
body.rules .p-rules ul {
  font-weight: 400;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules ul {
    margin-top: 10px;
  }
}
body.rules .p-rules ul li {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules ul li {
    font-size: 14px;
  }
}
body.rules .p-rules p {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules p {
    font-size: 14px;
    font-weight: 400;
  }
}
body.rules .p-rules .info {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules .info {
    margin-top: 20px;
  }
}
body.rules .p-rules .c-button__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules .c-button__contact {
    margin-top: 40px;
  }
}
body.rules .p-rules .c-button__contact a {
  width: 251px;
  height: 60px;
  background-color: #478b4a;
  border-radius: 2px;
  padding: 22.5px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: #478b4a;
      -ms-flex-pack: #478b4a;
          justify-content: #478b4a;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules .c-button__contact a {
    padding: 22.5px 20px;
  }
}
body.rules .p-rules .c-button__contact a .text {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body.rules .p-rules .c-button__contact a .text {
    font-size: 16px;
  }
}
body.rules .p-rules .c-button__contact a:hover {
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
  -webkit-box-shadow: 5px 5px 6px rgba(156, 156, 156, 0.7647058824);
          box-shadow: 5px 5px 6px rgba(156, 156, 156, 0.7647058824);
  opacity: 0.9;
}
body.rules .p-rules .c-button__contact:disabled, body.rules .p-rules .c-button__contact.is-disabled {
  opacity: 0.5;
  color: #8c8c8c;
  cursor: not-allowed;
  pointer-events: none;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/* FAQセクション */
.faq {
  background: #fff;
  padding: 80px 20px;
}

.faq__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq h2 {
  font-size: 32px !important;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #123f1b !important;
  border-bottom: 2px solid #d1b86c;
  display: inline-block;
  padding-bottom: 10px !important;
}

.faq__subtitle {
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
  color: #123f1b;
}

.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 2px solid #d1b86c;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.faq__question:hover {
  background: #f9f9f9;
}

.faq__number {
  font-size: 24px;
  font-weight: 700;
  color: #123f1b;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  color: #091d0d;
  line-height: 1.6;
}

.faq__icon {
  font-size: 24px;
  font-weight: 700;
  color: #091d0d;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background: #eae7e7;
}

.faq__item.is-active .faq__answer {
  border-top: none;
}

.faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding: 0 25px;
}

.faq__item.is-active .faq__answer {
  padding: 30px 25px;
}

.faq__answer-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d1b86c;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__answer-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}

.faq__answer-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #091d0d;
  margin: 0;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 15px;
  }
  .faq h2 {
    font-size: 28px !important;
  }
  .faq__question {
    padding: 15px 20px;
    gap: 10px;
  }
  .faq__number {
    font-size: 14px;
  }
  .faq__question-text {
    font-size: 14px;
  }
  .faq__icon {
    font-size: 20px;
  }
  .faq__answer {
    padding: 0 20px;
  }
  .faq__item.active .faq__answer {
    padding: 15px 20px;
  }
  .faq__answer-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .faq__answer-text p {
    font-size: 14px;
  }
}
/* =========================================
   QA Section (よくある質問)
   ========================================= */
/* コンテナ設定（1440px幅・白背景） */
.cp-qa-section .cp-container {
  width: 1440px;
  max-width: 100%;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 100px 0;
  display: block;
  position: relative;
}

/* -----------------------------------------
   1. タイトルエリア (FAQ / よくある質問)
   ----------------------------------------- */
.cp-qa-section .cp-section-title {
  text-align: center;
  margin-bottom: 80px;
  font-family: "Noto Serif JP", serif;
  color: #123f1b; /* 濃い緑 */
}

/* FAQ（英語部分） */
.cp-qa-section .cp-section-title .en {
  display: block;
  font-size: 32px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
}

/* FAQの下の細い線 */
.cp-qa-section .cp-section-title .en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #a68113;
}

/* よくある質問（日本語部分） */
.cp-qa-section .cp-section-title {
  font-size: 24px;
  font-weight: 500;
}

/* -----------------------------------------
   2. 質問リスト
   ----------------------------------------- */
.cp-qa-list {
  max-width: 900px; /* デザインに合わせて中央に寄せる */
  margin: 0 auto;
}

.cp-qa-item {
  border-top: 1px solid #ddc784; /* 項目ごとの区切り線 */
  padding-top: 20px;
}

.cp-qa-item:hover {
  background: #f9f9f9;
}

/* 質問（Q）部分 */
.cp-qa-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  margin-left: 20px;
}

.cp-qa-icon.q {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  color: #123f1b;
}

.cp-qa-q-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

/* 質問右側の「ー」アイコン */
.cp-qa-head::after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 1px;
  background-color: #333;
}

/* 回答（A）部分 */
.cp-qa-body {
  background-color: #eae7e7; /* 薄いグレーの背景 */
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  height: 120px;
}

.cp-qa-icon.a {
  background-color: #d1b86c; /* ゴールドの丸背景 */
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
}

.cp-qa-a-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin: 0;
  padding-top: 4px; /* アイコンとの高さ微調整 */
}

/* -----------------------------------------
   レスポンシブ
   ----------------------------------------- */
@media (max-width: 768px) {
  .cp-qa-section .cp-container {
    padding: 60px 20px;
  }
  .cp-qa-list {
    max-width: 100%;
  }
  .cp-qa-q-text {
    font-size: 15px;
    padding-right: 30px;
  }
  .cp-qa-body {
    padding: 20px;
  }
  .cp-qa-a-text {
    font-size: 14px;
  }
}
/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/**
 * _contact.scss
 * お問い合わせページ
 */
.p-contact {
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 200px;
  padding-bottom: 100px;
  background-image: url(../images/common/image-bg02.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
  /* フォーム全体 */
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
.p-contact::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(216, 216, 216, 0.3254901961);
  z-index: 1;
}
.p-contact .title {
  font-size: 42px;
  text-align: center;
  color: #012408;
  position: relative;
  z-index: 2;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-contact .title {
    font-size: 24px;
  }
}
.p-contact .sub-title {
  font-size: 16px;
  text-align: center;
  color: #292929;
  position: relative;
  z-index: 2;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact .sub-title {
    font-size: 14px;
    padding-top: 30px;
  }
}
.p-contact .l-container {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.5529411765);
  backdrop-filter: blur(25px);
  width: 100%;
  margin-top: 40px;
  border-radius: 8px;
  padding: 80px auto;
}
@media screen and (max-width: 767px) {
  .p-contact .l-container {
    padding: 30px 10px;
    margin-top: 40px;
  }
}
.p-contact__form {
  max-width: 650px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 60px;
  /* チェックボックス */
  /* 下の２つのボタン */
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-contact__form .c-form__group {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-contact__form .c-form__group {
    margin-bottom: 20px;
  }
}
.p-contact__form .c-form__group .c-form__label {
  display: block;
  font-weight: bold;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-contact__form .c-form__group .c-form__label {
    font-size: 14px;
  }
}
.p-contact__form .c-form__group .c-form__label .c-form__required {
  font-size: 14px;
  color: #ff3434;
}
@media screen and (max-width: 767px) {
  .p-contact__form .c-form__group .c-form__label .c-form__required {
    font-size: 12px;
  }
}
.p-contact__form .c-form__group .c-form__select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f6f6f6;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  color: #999 !important;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .p-contact__form .c-form__group .c-form__select {
    font-size: 16px;
    padding: 12px;
  }
}
.p-contact__form .c-form__group .c-form__select.has-value {
  color: #333 !important;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  background-color: #fff;
}
.p-contact__form .c-form__group select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  padding: 15px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-contact__form .c-form__group select {
    font-size: 16px;
    padding: 12px;
  }
}
.p-contact__form .c-form__group input,
.p-contact__form .c-form__group textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f6f6f6;
  padding: 15px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-contact__form .c-form__group input,
  .p-contact__form .c-form__group textarea {
    padding: 12px;
    font-size: 16px;
  }
}
.p-contact__form .c-form__group input::-webkit-input-placeholder, .p-contact__form .c-form__group textarea::-webkit-input-placeholder {
  text-align: left;
  color: #999;
}
.p-contact__form .c-form__group input::-moz-placeholder, .p-contact__form .c-form__group textarea::-moz-placeholder {
  text-align: left;
  color: #999;
}
.p-contact__form .c-form__group input:-ms-input-placeholder, .p-contact__form .c-form__group textarea:-ms-input-placeholder {
  text-align: left;
  color: #999;
}
.p-contact__form .c-form__group input::-ms-input-placeholder, .p-contact__form .c-form__group textarea::-ms-input-placeholder {
  text-align: left;
  color: #999;
}
.p-contact__form .c-form__group input::placeholder,
.p-contact__form .c-form__group textarea::placeholder {
  text-align: left;
  color: #999;
}
.p-contact__form .c-form__group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact__form .c-form__group--checkbox {
  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;
  margin-left: auto;
  margin-right: auto;
}
.p-contact__form .c-form__group--checkbox .c-form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.p-contact__form .c-form__group--checkbox .c-form__checkbox-label .c-form__checkbox {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}
.p-contact__form .c-form__group--checkbox .c-form__checkbox-label .c-form__checkbox-text a {
  color: #007acc;
  text-decoration: underline;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .p-contact__form .c-form__group--checkbox .c-form__checkbox-label .c-form__checkbox-text a {
    font-size: 16px;
  }
}
.p-contact__form .contact__btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-left: auto;
  gap: 20px;
  margin-right: auto;
  /* 送信ボタン */
}
@media screen and (max-width: 767px) {
  .p-contact__form .contact__btn__wrapper {
    gap: 5px;
  }
}
.p-contact__form .contact__btn__wrapper .contact__btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-contact__form .contact__btn__wrapper .contact__btn__wrapper {
    gap: 20px;
  }
}
.p-contact__form .contact__btn__wrapper .c-form__submit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 206px;
}
.p-contact__form .contact__btn__wrapper .c-form__submit .c-button__contact {
  background-color: #184120;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  padding: 15px 40px;
  color: #fff;
}
.p-contact .p-contact__thanks {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.3215686275);
  backdrop-filter: blur(10px);
  font-weight: 500;
  color: #012408;
  border-radius: 8px;
}
.p-contact .p-contact__thanks .title {
  font-size: 32px;
}
.p-contact .p-contact__thanks__contents__title {
  margin-top: 40px;
}
.p-contact .p-contact__thanks__contents__text {
  margin-top: 24px;
}

.wpcf7-spinner {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.wpcf7-spinner::before {
  display: none !important;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
body.privacy .p-privacy {
  line-height: 1.6;
  font-weight: 400;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 200px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}
body.privacy .p-privacy__section {
  width: 80%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy__section {
    width: 90%;
  }
}
body.privacy .p-privacy__section section {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy__section section {
    margin-top: 40px;
  }
}
body.privacy .p-privacy__section h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy__section h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
body.privacy .p-privacy__content {
  font-weight: 600;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy__content {
    font-size: 14px;
    margin-top: 30px;
  }
}
body.privacy .p-privacy h2 {
  margin-bottom: 15px;
  font-size: 24px;
  margin-bottom: 30px;
  color: #478b4a;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy h2 {
    font-size: 18px;
  }
}
body.privacy .p-privacy ul {
  font-weight: 400;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy ul {
    margin-top: 10px;
  }
}
body.privacy .p-privacy ul li {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy ul li {
    font-size: 14px;
  }
}
body.privacy .p-privacy p {
  font-weight: 400;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy p {
    font-size: 14px;
  }
}
body.privacy .p-privacy .info {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body.privacy .p-privacy .info {
    margin-top: 20px;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
body.column .p-column .p-column__section {
  padding-top: 200px;
  padding-bottom: 100px;
}
@media (max-width: 800px) {
  body.column .p-column .p-column__section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
body.column .p-column .p-column__section h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  body.column .p-column .p-column__section h1 {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
body.column .p-column__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1200px) {
  body.column .p-column__nav {
    gap: 10px;
  }
}
body.column .p-column__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  width: 100%;
  list-style: none;
  padding: 0;
}
@media (max-width: 1200px) {
  body.column .p-column__nav__list {
    gap: 10px;
  }
}
body.column .p-column__nav__list li a {
  display: inline-block;
  background-color: #526c3c;
  color: #fff;
  padding: 6px 15px;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
body.column .p-column__nav__list li a:hover {
  opacity: 0.8;
}
body.column .p-column__nav__list li a.is-current {
  background-color: #222;
}
body.column .p-column__list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 3.33%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  body.column .p-column__list {
    margin-top: 30px;
    gap: 30px 4%;
  }
}
@media (max-width: 768px) {
  body.column .p-column__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
body.column .p-column__list__item {
  background-color: #fff;
  border: 1px solid #222222;
  width: 31.1%;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 1024px) {
  body.column .p-column__list__item {
    width: 48%;
  }
}
@media (max-width: 768px) {
  body.column .p-column__list__item {
    width: 100%;
  }
}
body.column .p-column__list__item:hover {
  -webkit-transform: translate(-5px, -5px);
          transform: translate(-5px, -5px);
  -webkit-box-shadow: 10px 10px 0 #222222;
          box-shadow: 10px 10px 0 #222222;
  border: 2px solid #222222;
}
body.column .p-column__list__item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
body.column .p-column__list__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  margin: 0;
}
body.column .p-column__list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.column .p-column__list__category {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  background-color: #526c3c;
  padding: 4px 10px;
  font-size: 12px;
  z-index: 1;
}
body.column .p-column__list__content {
  padding: 0 15px;
  margin-top: 20px;
}
body.column .p-column__list__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.column .p-column__list__description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}
body.column .p-column__list__meta {
  font-size: 12px;
  color: #999;
  text-align: right;
}
body.column .p-column .page_navi {
  margin-top: 80px;
  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;
  gap: 20px;
}
@media (max-width: 1200px) {
  body.column .p-column .page_navi {
    margin-top: 50px;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
body.column-single {
  background-color: #f9f9f9;
}
body.column-single .p-column-single {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 80px;
  /* --- 記事ヘッダー --- */
  /* --- アイキャッチ --- */
  /* --- 記事本文（WordPress出力エリア） --- */
  /* --- CTAエリア（格安でHPを...の部分） --- */
  /* --- ページネーション（既存を調整） --- */
}
@media (max-width: 1200px) {
  body.column-single .p-column-single {
    width: 95%;
    padding: 40px 20px;
  }
}
body.column-single .p-column-single__header {
  text-align: left;
  border-bottom: 2px solid #526c3c;
  padding-bottom: 24px;
}
body.column-single .p-column-single__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  color: #333;
}
@media (max-width: 768px) {
  body.column-single .p-column-single__title {
    font-size: 22px;
  }
}
body.column-single .p-column-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}
body.column-single .p-column-single__category {
  background-color: #526c3c;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
body.column-single .p-column-single__eyecatch {
  width: 100%;
  margin: 40px 0;
  border-radius: 8px;
  overflow: hidden;
}
body.column-single .p-column-single__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}
body.column-single .p-column-single__content {
  line-height: 1.8;
  font-size: 16px;
  color: #444;
}
body.column-single .p-column-single__content p {
  margin-bottom: 1.5em;
}
body.column-single .p-column-single__content h2 {
  background: #f4f4f4;
  border-left: 5px solid #526c3c;
  padding: 15px 20px;
  margin: 60px 0 30px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  body.column-single .p-column-single__content h2 {
    font-size: 20px;
  }
}
body.column-single .p-column-single__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ececec;
  position: relative;
}
body.column-single .p-column-single__content h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: #526c3c;
}
body.column-single .p-column-single__content .wp-block-image {
  margin: 40px 0;
}
body.column-single .p-column-single__content .wp-block-image img {
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
body.column-single .p-column-single__content ul.wp-block-list {
  background: #fffef0;
  border: 1px dashed #d1c7a3;
  padding: 25px 25px 25px 45px;
  margin-bottom: 30px;
  border-radius: 8px;
}
body.column-single .p-column-single__content ul.wp-block-list li {
  margin-bottom: 10px;
  list-style-type: disc;
}
body.column-single .p-column-single__content ul.wp-block-list li:last-child {
  margin-bottom: 0;
}
body.column-single .p-column-single__content .swell-block-faq {
  margin: 30px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
body.column-single .p-column-single__content .swell-block-faq__item dt {
  background: #eee;
  padding: 15px;
  font-weight: 700;
}
body.column-single .p-column-single__content .swell-block-faq__item dd {
  padding: 20px;
  background: #fff;
}
body.column-single .p-column-single__content .mark_yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff3b8));
  background: linear-gradient(transparent 60%, #fff3b8 60%);
  font-weight: 700;
}
body.column-single .p-column-single .wp-block-group.has-border {
  background: #fdfdfd;
  border: 2px solid #526c3c;
  padding: 30px;
  margin: 50px 0;
  text-align: center;
  border-radius: 12px;
}
body.column-single .p-column-single .wp-block-group.has-border .swell-block-button {
  margin-top: 20px;
}
body.column-single .p-column-single .wp-block-group.has-border .swell-block-button a {
  background: #d33;
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 0 #900;
          box-shadow: 0 4px 0 #900;
}
body.column-single .p-column-single .wp-block-group.has-border .swell-block-button a:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: none;
          box-shadow: none;
}
body.column-single .p-column-single__pagination {
  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;
  gap: 20px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #ececec;
  /* 1200px以下の調整 */
}
@media (max-width: 1200px) {
  body.column-single .p-column-single__pagination {
    gap: 10px;
    margin-top: 60px;
    padding-top: 30px;
  }
}
body.column-single .p-column-single__pagination__prev, body.column-single .p-column-single__pagination__next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
body.column-single .p-column-single__pagination__prev a, body.column-single .p-column-single__pagination__next a {
  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;
  width: 50px;
  height: 50px;
  border: 1px solid #526c3c;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}
@media (max-width: 1200px) {
  body.column-single .p-column-single__pagination__prev a, body.column-single .p-column-single__pagination__next a {
    width: 40px;
    height: 40px;
  }
}
body.column-single .p-column-single__pagination__prev a::before, body.column-single .p-column-single__pagination__next a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #526c3c;
  border-right: 2px solid #526c3c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  body.column-single .p-column-single__pagination__prev a::before, body.column-single .p-column-single__pagination__next a::before {
    width: 8px;
    height: 8px;
  }
}
body.column-single .p-column-single__pagination__prev a:hover, body.column-single .p-column-single__pagination__next a:hover {
  background-color: #526c3c;
}
body.column-single .p-column-single__pagination__prev a:hover::before, body.column-single .p-column-single__pagination__next a:hover::before {
  border-color: #fff;
}
body.column-single .p-column-single__pagination__prev a::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-left: 4px;
}
body.column-single .p-column-single__pagination__next a::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 4px;
}
body.column-single .p-column-single__pagination__back {
  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;
  padding: 15px 40px;
  font-size: 16px;
  color: #fff;
  background-color: #526c3c;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: bold;
}
@media (max-width: 1200px) {
  body.column-single .p-column-single__pagination__back {
    padding: 10px 25px;
    font-size: 14px;
  }
}
body.column-single .p-column-single__pagination__back:hover {
  opacity: 0.8;
  background-color: #3e522d;
}
body.column-single .p-column-single__pagination__prev:empty, body.column-single .p-column-single__pagination__next:empty {
  width: 50px;
  height: 50px;
  visibility: hidden;
}
@media (max-width: 1200px) {
  body.column-single .p-column-single__pagination__prev:empty, body.column-single .p-column-single__pagination__next:empty {
    width: 40px;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/**
 * _flow.scss
 * 　ご依頼の流れページ
 */
/* =========================================
   Flow Section (実際の流れ)
   ========================================= */
/* コンテナ設定（1440px幅・背景色あり） */
.cp-flow-section {
  width: 100%;
  background-color: #cedad0;
}
.cp-flow-section .cp-container {
  width: 80%;
  margin: 0 auto;
  padding: 100px 0 120px;
  position: relative;
  display: block;
  overflow: hidden; /* 竹がはみ出さないように */
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .cp-flow-section .cp-container {
    padding: 60px 0 80px;
  }
}

/* -----------------------------------------
   1. 竹の背景画像（右上にabsolute）
   ----------------------------------------- */
.cp-flow-bamboo {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 350px; /* サイズは適宜調整 */
  z-index: 1;
  pointer-events: none;
}

.cp-flow-bamboo img {
  width: 100%;
  height: auto;
  opacity: 0.6; /* 完成イメージの馴染み方に合わせて調整 */
}

/* -----------------------------------------
   2. タイトル（濃い緑の帯）
   ----------------------------------------- */
.cp-flow-section .cp-section-title {
  background-color: #123f1b;
  color: #ffffff;
  width: 100%;
  max-width: 680px;
  height: 72px;
  margin: 0 auto 100px;
  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;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cp-flow-section .cp-section-title {
    margin: 0 auto 40px;
    font-size: 24px;
  }
}

/* -----------------------------------------
   3. ステップの並び
   ----------------------------------------- */
.cp-flow-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  /* 矢印（濃い緑） */
}
@media (max-width: 600px) {
  .cp-flow-steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cp-flow-arrow {
  color: #123f1b !important;
  font-size: 24px;
  margin-top: -50px; /* アイコンボックスの高さに合わせて調整 */
  -webkit-transition: -webkit-transform;
  transition: -webkit-transform;
  transition: transform;
  transition: transform, -webkit-transform;
}
@media (max-width: 600px) {
  .cp-flow-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: -10px;
  }
}

/* 各ステップの箱（白の角丸） */
.cp-flow-step {
  width: 166px;
  text-align: center;
}

.cp-flow-icon-box {
  background-color: #ffffff;
  width: 166px;
  height: 108px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  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;
  margin-bottom: 25px;
}

.cp-flow-icon-box img {
  width: 70px; /* アイコンの大きさに合わせて調整 */
  height: auto;
}

/* ステップのテキストラベル（白の角丸カプセル型） */
.cp-flow-title {
  background-color: #ffffff;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 8px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  color: #262626;
  white-space: nowrap;
  width: 158px;
}

/* -----------------------------------------
   レスポンシブ
   ----------------------------------------- */
@media (max-width: 1024px) {
  .cp-flow-steps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .cp-flow-bamboo {
    width: 200px;
    opacity: 0.3;
  }
}
/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/* ========================================
Price Section (料金)
   ========================================= */
/* コンテナ設定（1440px幅・背景色あり） */
.cp-price-section {
  width: 100%;
  background-color: #cedad0; /* デザインに合わせた薄いグレーグリーン */
  /* 2. タイトル帯 */
  /* 3. 料金グリッド */
}
.cp-price-section .cp-container {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 0 120px;
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 0;
  /* 1. 竹の背景画像 */
}
.cp-price-section .cp-container .cp-price-bamboo {
  position: absolute;
  width: 440px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}
.cp-price-section .cp-container .cp-price-bamboo.is-left {
  top: 350px;
  left: 0px;
}
.cp-price-section .cp-container .cp-price-bamboo.is-right {
  top: 0px;
  right: 0px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.cp-price-section .cp-container .cp-price-bamboo img {
  width: 100%;
  height: auto;
}
.cp-price-section .cp-section-title {
  background-color: #123f1b;
  color: #ffffff;
  width: 100%;
  max-width: 680px;
  height: 72px;
  margin: 0 auto 50px;
  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;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .cp-price-section .cp-section-title {
    font-size: 24px;
    width: 80%;
  }
}
.cp-price-section .cp-price-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 30px;
  max-width: 1100px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  .cp-price-section .cp-price-grid {
    gap: 10px;
    -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;
  }
}
.cp-price-section .cp-price-grid .cp-price-card {
  background-color: transparent; /* カード全体を透明に */
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 530px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1100px) {
  .cp-price-section .cp-price-grid .cp-price-card {
    width: 80%;
  }
}

/* 4. 各パーツの共通設定 */
.cp-price-card .cp-price-header-area,
.cp-price-upper-box,
.cp-price-bottom-box {
  width: 100%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 個別に影をつける */
}

/* 5. ヘッダーエリア */
.cp-price-header-area {
  height: 80px;
  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;
}

.cp-price-card:not(.is-recommend) .cp-price-header-area {
  background: linear-gradient(264.61deg, #2c783b 5.98%, #e6f2e8 16.54%, #2c783b 27.1%);
}

.cp-price-card.is-recommend .cp-price-header-area {
  background: linear-gradient(263.88deg, #a68113 3.77%, #fff4d3 14.93%, #a68113 25.88%);
}

.cp-price-name {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .cp-price-name {
    font-size: 20px;
  }
}

/* 6. 上部：金額ボックス（完全な白） */
.cp-price-upper-box {
  background-color: #ffffff;
  padding: 40px 40px 20px;
  margin-bottom: 5px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.cp-price-amount-box {
  padding-bottom: 20px;
  text-align: center;
}

.cp-price-amount {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #123f1b;
  display: block;
}

.cp-price-amount .prefix,
.cp-price-amount .unit,
.cp-price-amount .tax {
  font-size: 18px;
}

.cp-price-amount .num {
  font-size: 48px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cp-price-amount .num {
    font-size: 36px;
  }
}

/* 7. 下部：詳細ボックス（半透明の薄緑） */
.cp-price-bottom-box {
  background-color: rgba(239, 245, 240, 0.75); /* 背景透け */
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  opacity: 0.7;
}

.cp-price-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  color: #262626;
  text-align: center;
  margin-bottom: 25px;
}

/* リスト部分（横に2つ並べる） */
.cp-price-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: left;
}

.cp-price-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.cp-price-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #262626;
  white-space: nowrap;
}

/* 8. 注釈 */
.cp-price-footer-notes {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}
.cp-price-footer-notes p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .cp-price-footer-notes p {
    font-size: 13px;
  }
}

/* 9. レスポンシブ */
@media (max-width: 1024px) {
  .cp-price-bamboo {
    width: 300px;
  }
}
/* =========================================
   Price Rule Section (ご利用条件)
   ========================================= */
.ca-price-rule-card {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  /* 1. タイトル部分（成果報酬型と同じ金色のグラデーション） */
  /* 2. コンテンツメインエリア */
  /* 3. 各条件セクション */
}
@media screen and (max-width: 767px) {
  .ca-price-rule-card {
    width: 80%;
  }
}
.ca-price-rule-card .cp-price-upper-box {
  max-width: 100%;
}
.ca-price-rule-card .ca-price-rule-title {
  height: 60px;
  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;
  background: linear-gradient(263.88deg, #a68113 3.77%, #fff4d3 14.93%, #a68113 25.88%);
}
.ca-price-rule-card .ca-price-rule-title .ca-price-rule-title-text {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .ca-price-rule-card .ca-price-rule-title .ca-price-rule-title-text {
    font-size: 20px;
  }
}
.ca-price-rule-card .ca-price-rule-main {
  padding: 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .ca-price-rule-card .ca-price-rule-main {
    padding: 30px 10px;
  }
}
.ca-price-rule-card .ca-price-rule-main-section {
  border-bottom: 1px dashed #cedad0;
  padding-bottom: 30px;
  /* 4. 注釈リスト */
}
.ca-price-rule-card .ca-price-rule-main-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ca-price-rule-card .ca-price-rule-main-section .ca-price-rule-main-section-hero {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #123f1b;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .ca-price-rule-card .ca-price-rule-main-section .ca-price-rule-main-section-hero {
    font-size: 16px;
  }
}
.ca-price-rule-card .ca-price-rule-main-section .ca-price-rule-main-section-hero::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #a68113;
  border-radius: 50%;
}
.ca-price-rule-card .ca-price-rule-main-section .ca-price-rule-main-section-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
  padding-left: 20px;
}
.ca-price-rule-card .ca-price-rule-main-section .ca-price-rule-main-section-list .ca-price-rule-main-section-list-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  position: relative;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
@media screen and (max-width: 767px) {
  .ca-price-rule-card .ca-price-rule-main-section .ca-price-rule-main-section-list .ca-price-rule-main-section-list-text {
    font-size: 12px;
  }
}
.ca-price-rule-card .ca-price-rule-main-section .ca-price-rule-main-section-list .ca-price-rule-main-section-list-text:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .ca-price-rule-card .ca-price-rule-main-section .ca-price-rule-main-section-list .ca-price-rule-main-section-list-text:not(:last-child) {
    margin-bottom: 4px;
  }
}

/* レスポンシブ調整（1024px以下） */
@media (max-width: 1024px) {
  .ca-price-rule-card {
    max-width: 600px;
    margin-top: 40px;
  }
}
/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
body.company {
  background-image: url(../images/common/image-bg02.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body.company .p-company {
  margin-top: 200px;
  margin-bottom: 100px;
  background-color: rgba(255, 255, 255, 0.7607843137);
  width: 80%;
  padding-top: 60px;
  padding-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  body.company .p-company {
    width: 93%;
    margin-top: 150px;
    margin-bottom: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 500px) {
  body.company .p-company {
    margin-top: 100px;
  }
}
body.company .p-company h1 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  body.company .p-company h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
body.company .p-company__contents {
  font-family: "Noto Sans JP", sans-serif;
  width: 85%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  body.company .p-company__contents {
    width: 93%;
  }
}
body.company .p-company__contents th {
  text-align: center;
  background-color: #123f1b;
  color: #fff;
  text-wrap: nowrap;
  border: 1px solid #a6bd81;
  font-weight: normal;
  padding: 20px 60px;
  font-size: 18px;
}
body.company .p-company__contents th strong {
  font-weight: inherit;
  font-style: inherit;
}
@media screen and (max-width: 767px) {
  body.company .p-company__contents th {
    padding: 15px 10px;
    font-size: 16px;
  }
}
body.company .p-company__contents td {
  text-align: left;
  border: 1px solid #a6bd81;
  background-color: #fff;
  font-weight: 400;
  padding: 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body.company .p-company__contents td {
    padding: 15px 10px 15px 10px;
    font-size: 14px;
  }
}
body.company .p-company__contents td span {
  font-size: 12px;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
body.law {
  background-image: url(../images/common/image-bg02.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body.law .p-law {
  margin-top: 200px;
  margin-bottom: 100px;
  background-color: rgba(255, 255, 255, 0.7607843137);
  width: 80%;
  padding-top: 30px;
  padding-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  body.law .p-law {
    width: 93%;
    margin-top: 130px;
    margin-bottom: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 500px) {
  body.law .p-law {
    margin-top: 100px;
  }
}
body.law .p-law h1 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  body.law .p-law h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  body.law .p-law h1 {
    font-size: 24px;
  }
}
body.law .p-law__contents {
  font-family: "Noto Sans JP", sans-serif;
  width: 85%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) {
  body.law .p-law__contents {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  body.law .p-law__contents {
    width: 95%;
  }
}
body.law .p-law__contents th {
  text-align: center;
  background-color: #123f1b;
  color: #fff;
  text-wrap: nowrap;
  border: 1px solid #a6bd81;
  font-weight: 400;
  padding: 20px;
  font-size: 16px;
}
@media (max-width: 800px) {
  body.law .p-law__contents th {
    padding: 10px 20px;
    font-size: 14px;
    text-wrap: wrap;
    min-width: 160px;
  }
}
@media (max-width: 500px) {
  body.law .p-law__contents th {
    padding: 10px 10px;
    min-width: 80px;
    font-style: 13px;
  }
}
body.law .p-law__contents td {
  text-align: left;
  border: 1px solid #a6bd81;
  background-color: #fff;
  padding: 20px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body.law .p-law__contents td {
    padding: 10px 5px 15px 10px;
    font-size: 14px;
  }
}
body.law .p-law__contents td span {
  font-size: 12px;
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
body.error .p-error__contents {
  background-color: rgba(255, 255, 255, 0.9019607843);
  text-align: center;
  padding: 60px 10px;
}
@media screen and (min-width: 768px) {
  body.error .p-error__contents {
    max-width: 600px;
  }
}
body.error .p-error__contents__title {
  color: #71a444;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  body.error .p-error__contents__title {
    font-size: 30px;
  }
}
body.error .p-error__contents__description {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  body.error .p-error__contents__description {
    font-size: 18px;
    color: #808080;
  }
}

/**
 * style.scss
 * Main SCSS File - FLOCSS構造
 */
/**
 * _display.scss
 * ディスプレイユーティリティクラス
 */
.u-sp-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

.u-tb-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-tb-none {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */