@charset "UTF-8";

/* --- 共通設定 --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.94vw;
}

h1,
h2,
h3,
h4,
p,
span,
a,
li,
th,
td {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}

.en {
  font-family: "Tinos", serif;
}

.en2 {
  font-family: "Questrial", sans-serif;
}

body {
  margin: 0;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* --- コンテナ設定 --- */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}

/* 消してる要素 */
.sp-header,
.sp {
  display: none;
}

/* アニメーションの動き */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* 画面に入った時に付与するクラス */
.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* --- ヘッダー --- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-container {
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0.35vw 0;
}

#header.is-active .header-container {
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0.14vw 0.83vw rgba(0, 0, 0, 0.1);
}

.header-box {
  width: 88.89vw;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: flex-start;
  gap: 1.39vw;
}

#header.is-active .header-logo {
  align-items: center;
}

.header-logo img {
  width: 10.21vw;
  transition: width 0.3s ease;
}

#header.is-active .header-logo img {
  width: 5.97vw;
}

.header-logo-text {
  font-size: 1.53vw;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease, margin-top 0.3s ease;
  margin-top: 0.69vw;
}

#header.is-active .header-logo-text {
  color: #266c36;
  margin-top: 0;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 2.78vw;
}

.header-nav a {
  font-size: 1vw;
  color: #fff;
  transition: color 0.3s ease;
}

#header.is-active .header-nav a {
  color: #000;
}

.header-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.69vw;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 1.67vw;
}

.header-bottom {
  display: flex;
  align-items: center;
  gap: 2.78vw;
}

.header-sns img {
  width: 2.78vw;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 0.56vw;
}

.header-tel img {
  width: 1.67vw;
}

.header-tel-icon-active {
  display: none;
}

#header.is-active .header-tel-icon-default {
  display: none;
}

#header.is-active .header-tel-icon-active {
  display: block;
}

.header-tel span {
  font-size: 1.25vw;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}

#header.is-active .header-tel span {
  color: #255c32;
}

.header-contact {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #255c32;
  color: #fff;
  border-radius: 999px;
  font-size: 1vw;
  font-weight: 600;
}

.header-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #266c36;
  clip-path: polygon(50% 0%,
      50% 14.7%,
      50% 28.8%,
      50.2% 42.2%,
      50.7% 55%,
      51.8% 67.2%,
      53.5% 78.8%,
      56.8% 89.7%,
      61.8% 100%,
      100% 100%,
      100% 0%);
  transition: clip-path 0.4s ease;
}

.header-contact:hover::before {
  clip-path: polygon(0% 0%,
      0% 14.7%,
      0% 28.8%,
      0% 42.2%,
      0% 55%,
      0% 67.2%,
      0% 78.8%,
      0% 89.7%,
      0% 100%,
      100% 100%,
      100% 0%);
}

.header-contact:hover {
  opacity: 1;
}

.header-contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.56vw;
  padding: 0.83vw 1.67vw;
}

.header-contact-icon {
  width: 1.46vw;
}

.header-contact-arrow {
  width: 0.69vw;
}

/* ==================== p1：トップページ ==================== */

/* トップ */
.main-v {
  position: relative;
  width: 100%;
  height: 63.19vw;
  overflow: hidden;
}

.main-v-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide-img.is-active {
  opacity: 1;
}

.slide1 {
  background-image: url(../image/top-img1.png);
}

.slide2 {
  background-image: url(../image/top-img2.png);
}

.slide3 {
  background-image: url(../image/top-img3.png);
}

.main-v-container {
  position: relative;
  z-index: 1;
  width: 88.89vw;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-v-title {
  text-align: center;
}

.main-v-title h1 {
  font-size: 4.17vw;
  font-weight: 500;
  color: #fff;
  text-shadow: 0.28vw 0.28vw 0.28vw rgba(0, 0, 0, 0.25);
  margin-bottom: 1.11vw;
}

.main-v-title span {
  display: block;
  font-size: 2.08vw;
  color: #fff;
  text-shadow: 0.28vw 0.28vw 0.28vw rgba(0, 0, 0, 0.25);
}

/* --- ABOUT --- */
.p1-a {
  width: 100%;
  padding-top: 6.94vw;
}

.p1-a-box {
  width: 88.89vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3.47vw;
}

.p1-a-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 1.67vw;
}

.p1-a-head {
  display: flex;
}

.p1-a-icon {
  width: 8.26vw;
  margin-right: -2.5vw;
}

.p1-a-title {
  position: relative;
  font-size: 2.5vw;
  font-weight: 700;
  color: #266c36;
  margin-top: 2.08vw;
}

.p1-a-line {
  align-self: flex-start;
  width: 0.21vw;
  height: 12.5vw;
  background-color: #c9a35c;
}

.p1-a-right {
  width: 57.29vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.94vw;
  margin-top: 1.67vw;
}

.p1-a-text p {
  font-size: 1.11vw;
  line-height: 2;
  color: #333;
}

.sub-btn.p1-a-btn {
  margin-top: 0.83vw;
  margin-left: 12.5vw;
}

/* --- OUR SERVICE --- */
.p1-bcde {
  background-image: url(../image/top-back2.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center 9.44vw;
}

.p1-b {
  width: 100%;
  padding-top: 13.89vw;
}

.p1-b-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p1-b .sub-title-text {
  width: 63.19vw;
}

.p1-b-list {
  width: 80.14vw;
  display: flex;
  justify-content: flex-end;
  gap: 1.67vw;
  margin-top: 6.04vw;
  margin-left: auto;
}

.p1-b-item {
  position: relative;
  display: block;
  width: 39.24vw;
  height: 41.67vw;
  color: inherit;
  text-decoration: none;
}

.p1-b-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p1-b-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.p1-b-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 2.22vw 2.08vw;
  color: #fff;
}

.p1-b-title {
  display: flex;
  align-items: baseline;
  gap: 0.69vw;
  font-size: 1.53vw;
  font-weight: 400;
  margin-bottom: 0.83vw;
}

.p1-b-num {
  font-size: 1.94vw;
  font-weight: 400;
}

.p1-b-text {
  font-size: 1.11vw;
  line-height: 1.7;
}

.p1-b-arrow {
  position: absolute;
  z-index: 2;
  right: 2.22vw;
  bottom: 2.08vw;
  width: 2.5vw;
}

/* --- OUR REASON --- */
.p1-c {
  width: 100%;
  padding-top: 13.54vw;
}

.p1-c-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p1-c .sub-title-text {
  width: 63.19vw;
}

.p1-c-list {
  display: flex;
  justify-content: space-between;
  margin-top: 8.19vw;
}

.p1-c-item {
  position: relative;
  height: 26.6vw;
}

.p1-c-item:nth-child(1) {
  width: 31.32vw;
}

.p1-c-item:nth-child(2) {
  width: 30.83vw;
  margin-top: -8.82vw;
}

.p1-c-item:nth-child(3) {
  width: 30.69vw;
}

.p1-c-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 22.92vw;
  height: 100%;
  background-image: url(../image/top-back3.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}

.p1-c-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p1-c-item:nth-child(1) .p1-c-info {
  left: 16.5%;
  top: 17%;
  transform: translateX(-50%);
  gap: 0.69vw;
}

.p1-c-item:nth-child(2) .p1-c-info {
  left: 20%;
  top: 12%;
  transform: translateX(-50%);
  gap: 0.69vw;
}

.p1-c-item:nth-child(3) .p1-c-info {
  left: 19%;
  top: 17%;
  transform: translateX(-50%);
  gap: 0.69vw;
}

.p1-c-media {
  position: absolute;
  display: flex;
  flex-direction: column;
}

.p1-c-item:nth-child(1) .p1-c-media {
  left: 66%;
  top: 31%;
  transform: translateX(-50%);
  gap: 0.56vw;
}

.p1-c-item:nth-child(2) .p1-c-media {
  left: 65%;
  top: 18%;
  transform: translateX(-50%);
  gap: 1.23vw;
}

.p1-c-item:nth-child(3) .p1-c-media {
  left: 64%;
  top: 5%;
  transform: translateX(-50%);
  gap: 0.56vw;
}

.p1-c-item:nth-child(1) .p1-c-img {
  width: 21.94vw;
}

.p1-c-item:nth-child(2) .p1-c-img {
  width: 16.18vw;
  margin-left: 1.67vw;
}

.p1-c-item:nth-child(3) .p1-c-img {
  width: 19.72vw;
  margin-left: 1.11vw;
}

.p1-c-num {
  font-size: 2.78vw;
  font-weight: 700;
  line-height: 1;
  color: #266c36;
}

.p1-c-title {
  writing-mode: vertical-rl;
  font-size: 1.39vw;
  font-weight: 700;
  line-height: 1.8;
  color: #266c36;
}

.p1-c-text {
  width: 22.22vw;
  font-size: 1.11vw;
  line-height: 1.8;
  color: #555;
}

.sub-btn.p1-c-btn {
  margin: -3.75vw auto 0;
}

/* --- AREA --- */
.p1-d {
  width: 100%;
  padding-top: 12.5vw;
}

.p1-d-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p1-d .sub-title {
  justify-content: center;
}

.p1-d .sub-title-text {
  width: 21.18vw;
}

.p1-d .sub-title-tag-line {
  height: 8.75vw;
}

.p1-d-img {
  width: 78.68vw;
  margin: 1.39vw auto 0;
}

/* --- PRICING --- */
.p1-e {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 12.59vw;
}

.p1-e-container {
  width: 100%;
}

.p1-e-box {
  width: 94.44vw;
  background-image: url(../image/top-img10.png);
  background-size: cover;
  background-position: center;
  border-radius: 3.47vw 0 0 0;
  padding: 6.94vw 8.61vw 9.44vw;
  margin-left: auto;
}

.p1-e .sub-title-tag-line {
  height: 10.63vw;
}

.p1-e .sub-title-tag-text,
.p1-e .sub-title-en,
.p1-e .sub-title-text {
  color: #fff;
}

.p1-e .sub-title-text {
  width: 100%;
}

.sub-btn.p1-e-btn {
  margin-top: 4.17vw;
  margin-left: 28.47vw;
}

/* --- CONTACT --- */
.p1-f {
  width: 96.39vw;
  margin-top: 2.99vw;
  margin-right: auto;
  padding: 4.86vw 5.56vw 4.17vw;
  background-color: #ebf5ed;
  border-radius: 0 0 3.47vw 0;
}

.p1-f .sub-title-text {
  width: 63.19vw;
}

.p1-f-lead {
  font-size: 1.53vw;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.56vw;
}

.p1-f-text {
  width: 100%;
  margin-top: 3.47vw;
  font-size: 1.11vw;
  line-height: 2;
  color: #555;
  text-align: center;
}

.p1-f-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8.5vw;
  margin-top: 4.17vw;
}

.sub-btn.p1-f-btn {
  width: 18.66vw;
}

.p1-f .sub-btn-inner {
  font-size: 1.67vw;
}

.p1-f-btn-mail .sub-btn-inner {
  font-size: 1.39vw;
}

.p1-f-tel-icon {
  width: 1.6vw;
}

.p1-f-mail-icon {
  width: 1.67vw;
}

/* --- INSTAGRAM --- */
.p1-g {
  width: 100%;
  padding: 6.94vw 0 13.89vw;
}

.p1-g-box {
  width: 88.89vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p1-g-head {
  display: flex;
  align-items: center;
  gap: 1.39vw;
}

.p1-g-logo {
  width: 10.42vw;
}

.p1-g-insta-account {
  display: flex;
  flex-direction: column;
  gap: 0.42vw;
}

.p1-g-insta {
  width: 13.89vw;
}

.p1-g-account {
  display: flex;
  align-items: baseline;
  gap: 0.83vw;
}

.p1-g-account-id {
  font-size: 1.39vw;
  font-weight: 700;
  color: #333;
}

.p1-g-account-name {
  font-size: 1.11vw;
  color: #555;
}

.p1-g-feed {
  width: 69.72vw;
  margin: 3.75vw auto 0;
}

/* --- COMPANY --- */
.p1-h {
  width: 100%;
  padding-bottom: 3.61vw;
}

.p1-h-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p1-h .sub-title-text {
  width: 63.19vw;
}

.p1-h-columns {
  display: flex;
  align-items: stretch;
  gap: 3.47vw;
  margin-top: 2.78vw;
}

.p1-h-left {
  width: 42vw;
}

.p1-h-right {
  width: 43.4vw;
}

.p1-h-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 27.08vw;
}

.p1-h-table {
  width: 100%;
  border-collapse: collapse;
}

.p1-h-table th,
.p1-h-table td {
  text-align: left;
  font-size: 1.11vw;
  font-weight: 500;
  padding-top: 1.53vw;
  padding-bottom: 1.53vw;
  vertical-align: top;
}

.p1-h-table th {
  width: 8.68vw;
  color: #333;
  border-bottom: 0.14vw solid #266c36;
  padding-left: 2.08vw;
}

.p1-h-table td {
  color: #555;
  border-bottom: 0.14vw solid #c9a35c;
  padding-left: 3.82vw;
}

.p1-h-btns {
  display: flex;
  gap: 3.21vw;
  margin-top: 2.78vw;
}

.sub-btn.p1-h-btn {
  width: 18.27vw;
}

.p1-h .p1-h-btn:first-child .sub-btn-inner {
  gap: 0.49vw;
}

.p1-h-tel-icon {
  width: 1.6vw;
}

.p1-h .p1-h-btn:first-child .sub-btn-inner {
  font-size: 1.67vw;
}

.p1-h .p1-h-btn:last-child .sub-btn-inner {
  font-size: 1.25vw;
}

/* ==================== 各ページ ==================== */

/* --- 業務内容（p2-a） --- */
.p2-a {
  width: 100%;
  padding: 5.56vw 0 0;
}

.p2-a-container2 {
  padding-top: 14.72vw;
  padding-bottom: 21.53vw;
}

.p2-a-container2 .sub-title-tag-line {
  height: 7.78vw;
}

.p2-a-container2 .p2-a-card:nth-child(2) .p2-a-card-list {
  width: 22.92vw;
}

.p2-a-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p2-a .sub-title-text {
  width: 33.33vw;
}

.p2-a .sub-title-tag-text {
  writing-mode: horizontal-tb;
  font-size: 2.08vw;
  font-weight: 500;
  color: #255c32;
  line-height: 1;
}

.p2-a .sub-title-en {
  font-size: 2.08vw;
}

.p2-a-box2 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 4.17vw;
}

.p2-a-concerns-wrap {
  padding-bottom: 5.07vw;
  background-image: url(../image/p2-back1.png);
  background-size: 100% auto;
  background-position: center top 2.68vw;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.p2-a-concerns-card {
  width: 73.4vw;
  background-color: #fff;
  padding: 1.69vw 2.92vw 5.90vw;
  box-shadow: 0.28vw 0 0.28vw rgba(0, 0, 0, 0.25);
}

.p2-a-container2 .p2-a-concerns-card {
  padding-bottom: 2.99vw;
}

.p2-a-concerns-en {
  text-align: center;
  font-size: 3.33vw;
  font-weight: 700;
  color: #90c132;
}

.p2-a-concerns-sub {
  text-align: center;
  font-size: 1.53vw;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0.83vw;
  padding-bottom: 1.39vw;
  border-bottom: 0.07vw solid #255C32;
}

.p2-a-concerns-list {
  width: 34.72vw;
  margin: 3.47vw auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.39vw;
}

.p2-a-concerns-list li {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  font-size: 1.11vw;
  color: #333;
}

.p2-a-concerns-list img {
  width: 1.53vw;
}

.p2-a-cards {
  display: flex;
  justify-content: center;
  gap: 6.32vw;
  margin-top: 4.17vw;
}

.p2-a-card {
  width: 35.63vw;
  border: 0.14vw solid #c9a35c;
  border-radius: 3vw 0 0 0;
  padding: 1.39vw 1.39vw 3.47vw;
}

.p2-a-card:nth-child(2) {
  border-radius: 0 3vw 0 0;
}

.p2-a-card-head {
  border-radius: 2vw 0 0 0;
  background-color: #ecc264;
  color: #fff;
  font-weight: 700;
  font-size: 1.25vw;
  text-align: center;
  padding: 1.11vw 0;
  margin-bottom: 1.67vw;
}

.p2-a-card:nth-child(2) .p2-a-card-head {
  border-radius: 0 2vw 0 0;
}

.p2-a-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  margin: 0 auto;
}

.p2-a-cards:first-child .p2-a-card-list {
  width: 14.58vw;
}

.p2-a-cards:last-child .p2-a-card-list {
  width: 19.10vw;
}

.p2-a-card-list li {
  display: flex;
  align-items: center;
  gap: 0.83vw;
  font-size: 1vw;
  color: #333;
}

.p2-a-card-list img {
  width: 1.46vw;
}

/* --- 料金のご案内（p3-a） --- */
.p3-a {
  width: 100%;
  padding: 6.94vw 0 22.92vw;
}

.p3-a-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p3-a-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.75vw 1.39vw;
  margin-top: 8.33vw;
}

.p3-a-item {
  flex: 1;
  padding: 1.67vw 1.10vw;
  border: 0.07vw solid #a4d645;
}

.p3-a-item-head {
  background-color: #a4d645;
  color: #333;
  font-weight: 700;
  font-size: 1.11vw;
  text-align: center;
  padding: 0.97vw 0;
}

.p3-a-item-price {
  text-align: center;
  font-size: 2.22vw;
  font-weight: 700;
  color: #90c132;
  padding: 1.39vw 0 0;
}

.p3-a-item-price span {
  font-size: 1.11vw;
  font-weight: 400;
  color: #333;
}

.p3-a-notes {
  width: 73.06vw;
  margin: 10.42vw auto 0;
  background-color: #ebf5ed;
  padding: 2.08vw;
}

.p3-a-notes p {
  font-size: 1.11vw;
  line-height: 2.2;
  color: #333;
}

/* --- 選ばれる理由（p4-a） --- */
.p4-a {
  width: 100%;
  padding: 8.33vw 0 20.83vw;
}

.p4-a-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p4-a .sub-title-text {
  width: 62.19vw;
}

.p4-a-list {
  width: 81.53vw;
  display: flex;
  flex-direction: column;
  gap: 2.78vw;
  margin: 5.56vw auto 0;
}

.p4-a-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.07vw solid #266c36;
  padding-left: 3.47vw;
}

.p4-a-item:nth-child(1) {
  padding-top: 2.57vw;
  padding-bottom: 2.57vw;
  padding-right: 0.76vw;
}

.p4-a-item:nth-child(2) {
  padding-top: 2.92vw;
  padding-bottom: 2.92vw;
  padding-right: 3.06vw;
}

.p4-a-item:nth-child(3) {
  padding-top: 1.67vw;
  padding-bottom: 1.67vw;
  padding-right: 3.06vw;
}

.p4-a-info {
  width: 45.07vw;
}

.p4-a-head {
  display: flex;
  align-items: center;
  gap: 2.43vw;
  padding-bottom: 0.83vw;
  border-bottom: 0.14vw solid #266c36;
}

.p4-a-num {
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1;
  color: #266c36;
}

.p4-a-title {
  display: inline-block;
  font-size: 1.39vw;
  font-weight: 700;
  color: #356130;
}

.p4-a-text {
  font-size: 1.11vw;
  line-height: 2;
  color: #555;
  margin-top: 1.11vw;
  padding-left: 6.46vw;
}

.p4-a-media {
  flex-shrink: 0;
}

.p4-a-item:nth-child(1) .p4-a-img {
  width: 32.43vw;
}

.p4-a-item:nth-child(2) .p4-a-img {
  width: 24.51vw;
}

.p4-a-item:nth-child(3) .p4-a-img {
  width: 27.92vw;
}

/* --- ご挨拶（p5-a） --- */
.p5-a {
  width: 100%;
  padding: 6.94vw 0 13.19vw;
}

.p5-a-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p5-a .sub-title-text {
  width: 64.65vw;
}

/* --- お問い合わせ（p6-a） --- */
.p6-a {
  width: 100%;
  padding: 6.94vw 0 22.22vw;
}

.p6-a-box {
  width: 88.89vw;
  margin: 0 auto;
}

.p6-a .sub-title-text {
  width: 77.62vw;
}

.sub-btn.p6-a-tel {
  width: 20.12vw;
  margin: 4.38vw auto 0;
}

.p6-a-tel-icon {
  width: 1.6vw;
}

.p6-a-tel .sub-btn-inner {
  font-size: 1.67vw;
}

.p6-a-form {
  margin-top: 19.19vw;
}

.p6-a-form-title.sub-title {
  width: fit-content;
  margin: 0 auto;
}

.p6-a-form .sub-title-tag-line {
  height: 7.92vw;
}

.p6-a-form .sub-title-en {
  margin-top: 1.53vw;
}

.p6-a-form-body {
  width: 47.5vw;
  margin: 7.74vw auto 0;
}

.p6-a-form-body table.contact-form-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2.77vw;
  table-layout: fixed;
}

.p6-a-form-body table.contact-form-table th {
  width: 14.79vw;
  text-align: left;
  font-weight: 600;
  font-size: 1.11vw;
  color: #333;
  vertical-align: middle;
}

.p6-a-form-body table.contact-form-table td {
  vertical-align: middle;
}

.p6-a-form-body table.contact-form-table tr:last-child th,
.p6-a-form-body table.contact-form-table tr:last-child td {
  vertical-align: top;
}

.p6-a-form-body .required {
  color: #FF0000;
  font-size: 0.97vw;
  font-weight: 600;
  margin-left: 0.56vw;
}

.p6-a-form-body .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.p6-a-form-body .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  height: 3.19vw;
  background-color: #f8f8f8;
  border: none;
  border-radius: 0.56vw;
  padding: 0.89vw 1.25vw;
  font-size: 1.11vw;
  color: #333;
  border: 1px solid #C9C9C9;
}

.p6-a-form .p6-a-form-body textarea.wpcf7-form-control {
  height: 13.47vw;
  resize: vertical;
}

.p6-a-form-body .contact-form-submit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 15.90vw;
  height: 3.75vw;
  margin: 3.47vw auto 0;
  background-color: #90c132;
  border-radius: 999px;
}

.p6-a-form-body .contact-form-submit p {
  display: flex;
  align-items: center;
}

.p6-a-form-body .contact-form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #a4d645;
  clip-path: polygon(75% 0%,
      70% 14.7%,
      66.7% 28.8%,
      65% 42.2%,
      63.9% 55%,
      63.4% 67.2%,
      63.2% 78.8%,
      63.2% 89.7%,
      63.2% 100%,
      100% 100%,
      100% 0%);
  transition: clip-path 0.4s ease;
}

.p6-a-form-body .contact-form-submit:hover::before {
  clip-path: polygon(0% 0%,
      0% 14.7%,
      0% 28.8%,
      0% 42.2%,
      0% 55%,
      0% 67.2%,
      0% 78.8%,
      0% 89.7%,
      0% 100%,
      100% 100%,
      100% 0%);
}

.p6-a-form-body .contact-form-submit input.wpcf7-submit {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-right: 3.47vw;
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1.11vw;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.p6-a-form-body .contact-form-submit::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 1.39vw;
  transform: translateY(-50%);
  width: 2.5vw;
  height: 0.77vw;
  background-image: url(../image/part6.png);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.wpcf7-spinner {
  display: none;
}

/* お知らせ内容 1100で可変 */
.single-container {
  width: 100%;
  padding: 4.17vw 0;
}

.single-box {
  width: 69.44vw;
  margin: 0 auto;
}

.single-title {
  font-size: 2.22vw;
  font-weight: 600;
  margin-bottom: 2.08vw;
  line-height: 1.4;
}

.single-img {
  width: 100%;
  max-width: 41.67vw;
  margin-bottom: 2.78vw;
}

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

.single-content {
  font-size: 1.11vw;
  line-height: 1.8;
  color: #333;
}

.single-content img {
  max-width: 100%;
  height: auto;
}

/* --- 共通パーツ --- */
.sub-btn {
  width: 15.90vw;
  height: 3.75vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #90c132;
  color: #fff;
  border-radius: 999px;
  font-size: 1.11vw;
}

.sub-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #a4d645;
  clip-path: polygon(75% 0%,
      70% 14.7%,
      66.7% 28.8%,
      65% 42.2%,
      63.9% 55%,
      63.4% 67.2%,
      63.2% 78.8%,
      63.2% 89.7%,
      63.2% 100%,
      100% 100%,
      100% 0%);
  transition: clip-path 0.4s ease;
}

.sub-btn:hover::before {
  clip-path: polygon(0% 0%,
      0% 14.7%,
      0% 28.8%,
      0% 42.2%,
      0% 55%,
      0% 67.2%,
      0% 78.8%,
      0% 89.7%,
      0% 100%,
      100% 100%,
      100% 0%);
}

.sub-btn:hover {
  opacity: 1;
}

.sub-btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2.08vw;
}

.sub-btn-arrow {
  width: 2.5vw;
}

/* --- 共通タイトル --- */
.sub-title {
  display: flex;
  align-items: flex-start;
  gap: 1.67vw;
}

.sub-title-tag {
  display: flex;
  gap: 0.83vw;
  margin-top: 0.28vw;
}

.sub-title-tag-line {
  width: 0.14vw;
  height: 12.5vw;
  background-color: #C89A3E;
}

.sub-title-tag-text {
  writing-mode: vertical-rl;
  font-size: 1.67vw;
  font-weight: 600;
  letter-spacing: 0.14vw;
  color: #333;
}

.sub-title-en {
  font-size: 2.78vw;
  font-weight: 700;
  color: #266c36;
  margin-bottom: 1.11vw;
}

.sub-title-text {
  font-size: 1.11vw;
  line-height: 1.9;
  color: #333;
}

/* 下層ページ共通：sub-titleを中央表示 */
.page .sub-title {
  justify-content: center;
}

/* template-parts.php（会社案内）はトップページにも表示されるため中央寄せを打ち消す */
.page .p1-h .sub-title {
  justify-content: flex-start;
}

/* 下層ページ　メインビュー */
.sub-v {
  position: relative;
  width: 100%;
  height: 34.72vw;
  overflow: hidden;
  background-image: url(../image/sub-img1.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-v-title {
  text-align: center;
}

.sub-v-title h1 {
  font-weight: 700;
  font-size: 2.78vw;
  color: #fff;
  margin-bottom: 0.88vw;
}

.sub-v-title span {
  display: block;
  font-size: 1.67vw;
  font-weight: 500;
  color: #fff;
}

/* --- ページトップへ戻る --- */
.page-top {
  position: fixed;
  right: 2.08vw;
  bottom: 3.58vw;
  width: 3.47vw;
  height: 3.47vw;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 500;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-top img {
  width: 100%;
  height: 100%;
}

/* --- SP固定フッターバー（TEL / お問い合わせ / ページトップ） --- */
.sp-fixed-bar {
  display: none;
}

/* --- フッター --- */
.footer {
  width: 100%;
  background-color: #ebf5ed;
}

.footer-box {
  width: 84.58vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.85vw 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  width: 11.11vw;
}

.footer-name {
  font-size: 1.53vw;
  font-weight: 700;
  color: #266c36;
  margin-top: 1.11vw;
}

.footer-address {
  font-size: 0.97vw;
  color: #333;
  margin-top: 0.28vw;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 2.78vw;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  gap: 2.78vw;
}

.footer-nav a {
  font-size: 1.11vw;
  color: #333;
}

.footer-sns img {
  width: 1.94vw;
}

.copy-right {
  width: 100%;
  background-image: url(../image/top-back4.png);
  background-size: cover;
  background-position: center;
  padding: 1.11vw 0;
}

.copy-right p {
  text-align: center;
  font-size: 0.97vw;
  color: #333;
}

@media screen and (max-width: 767px) {

  /* 全体 */
  #header,
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* SP固定フッターバーの高さ分、コンテンツを避ける */
  body {
    padding-bottom: 13.32vw;
  }

  /* ヘッダー */
  .sp-header {
    position: fixed;
    top: 0.8vw;
    left: 0;
    width: 100%;
    height: 12.27vw;
    background-color: transparent;
    z-index: 9999;
    display: block;
  }

  .sp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2.13vw;
  }

  .sp-header-logo img {
    height: 12vw;
    width: auto;
  }

  .sp-header-right {
    display: flex;
    align-items: center;
    gap: 4.27vw;
  }

  .sp-header-sns img {
    width: 6.93vw;
  }

  /* ハンバーガーボタン */
  .sp-menu-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8vw;
    width: 12vw;
    height: 12vw;
    background-image: url(../image/sp-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: none;
    border-radius: 0.27vw;
    z-index: 1000;
  }

  .sp-menu-btn-lines {
    position: relative;
    width: 6.4vw;
    height: 3.73vw;
  }

  .sp-menu-btn-lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.53vw;
    background-color: #fff;
    transition: 0.3s;
  }

  .sp-menu-btn-lines span:nth-child(1) {
    top: 0;
  }

  .sp-menu-btn-lines span:nth-child(2) {
    top: 1.6vw;
  }

  .sp-menu-btn-lines span:nth-child(3) {
    top: 3.2vw;
  }

  .sp-menu-btn.is-active .sp-menu-btn-lines span:nth-child(1) {
    top: 1.6vw;
    transform: rotate(45deg);
  }

  .sp-menu-btn.is-active .sp-menu-btn-lines span:nth-child(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-active .sp-menu-btn-lines span:nth-child(3) {
    top: 1.6vw;
    transform: rotate(-45deg);
  }

  .sp-menu-btn-text {
    font-size: 2.13vw;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }

  /* 全画面メニュー */
  .sp-header-nav {
    position: fixed;
    top: 0;
    right: -68vw;
    width: 68vw;
    height: 100vh;
    background-color: #fff;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .sp-header-nav.is-active {
    right: 0;
  }

  .sp-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sp-nav-list li {
    margin: 2.67vw 0;
  }

  .sp-nav-list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #255C32;
    text-decoration: none;
    font-size: 4.27vw;
    font-weight: 500;
  }

  /* ==================== p1：トップページ ==================== */

  /* トップ */
  .main-v {
    position: relative;
    width: 100%;
    height: 192vw;
    overflow: hidden;
  }

  .main-v-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
  }

  .slide-img.is-active {
    opacity: 1;
  }

  .main-v-container {
    position: relative;
    z-index: 1;
    width: 92%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-v-title {
    width: 100%;
    text-align: left;
  }

  .main-v-title h1 {
    font-size: 8.9vw;
    font-weight: 500;
    color: #fff;
    text-shadow: 1.08vw 1.08vw 1.08vw rgba(0, 0, 0, 0.25);
    margin-bottom: 4.27vw;
  }

  .main-v-title span {
    text-align: left;
    display: block;
    font-size: 6vw;
    color: #fff;
    text-shadow: 1.08vw 1.08vw 1.08vw rgba(0, 0, 0, 0.25);
  }

  /* ABOUT */
  .p1-a {
    width: 100%;
    padding: 10.67vw 0 20.27vw;
  }

  .p1-a-box {
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p1-a-left {
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .p1-a-head {
    display: flex;
    align-items: flex-start;
  }

  .p1-a-icon {
    width: 31.73vw;
    margin-right: -21.07vw;
  }

  .p1-a-title {
    position: relative;
    font-size: 10.67vw;
    font-weight: 700;
    color: #266c36;
    letter-spacing: 0.64vw;
    margin-top: 8.27vw;
  }

  .p1-a-line {
    width: 48.27vw;
    height: 0.53vw;
    background-color: #c9a35c;
    margin: 4.8vw auto 0;
  }

  .p1-a-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12vw;
    margin-top: 8.53vw;
  }

  .p1-a-text p {
    width: 100%;
    font-size: 4.27vw;
    line-height: 1.875;
    color: #333;
  }

  .sub-btn.p1-a-btn {
    margin: 0;
  }

  /* 共通タイトルの縦並び・線の太さ/位置・フォントサイズ等は基底の .sub-title* （全ページ共通）に統一済み */

  /* OUR SERVICE */
  .p1-bcde {
    background-image: url(../image/sp-back2.png);
    background-position: top;
    padding-top: 47px;
  }

  .p1-b {
    width: 100%;
  }

  .p1-b .sub-title {
    gap: 23.67vw;
    margin-bottom: 12vw;
  }

  .p1-b .sub-title-tag-text::before,
  .p1-b .sub-title-tag-text::after {
    height: 48.27vw;
  }

  .p1-b .sub-title-inner {
    gap: 10.67vw;
  }

  .p1-b .sub-title-text {
    width: 100%;
  }

  .p1-b-box {
    width: 90%;
    margin: 0 auto;
  }

  .p1-b-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6.4vw;
    margin-left: 0;
  }

  .p1-b-item {
    position: relative;
    display: block;
    flex: none;
    width: 100%;
    height: 94.67vw;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
  }

  .p1-b-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .p1-b-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0 5.33vw 5.33vw;
    color: #fff;
  }

  .p1-b-title {
    display: flex;
    align-items: baseline;
    gap: 1.6vw;
    font-size: 4.8vw;
    margin-bottom: 2.13vw;
  }

  .p1-b-num {
    font-size: 5.87vw;
    font-weight: 400;
  }

  .p1-b-text {
    font-size: 3.47vw;
    line-height: 1.7;
    max-width: none;
  }

  .p1-b-arrow {
    position: absolute;
    z-index: 2;
    right: 5.33vw;
    bottom: 5.33vw;
    width: 6.4vw;
  }

  /* OUR REASON */
  .p1-c {
    width: 100%;
    padding: 10.67vw 0;
  }

  .p1-c .sub-title {
    gap: 8.27vw;
    margin-bottom: 4.8vw;
  }

  .p1-c .sub-title-tag-text::before,
  .p1-c .sub-title-tag-text::after {
    height: 40.8vw;
  }

  .p1-c .sub-title-text {
    width: 100%;
  }

  .p1-c-box {
    width: 92%;
    margin: 0 auto;
  }

  .p1-c-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 8vw;
    gap: 10.67vw;
  }

  .p1-c-item {
    position: relative;
    width: 100%;
    height: 102.13vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8vw;
    gap: 6vw;
  }

  .p1-c-item:nth-child(1) {
    width: 100%;
  }

  .p1-c-item:nth-child(2) {
    width: 100%;
    gap: 2.93vw;
    margin-top: 0;
  }

  .p1-c-item:nth-child(3) {
    width: 100%;
    gap: 3.47vw;
    padding-top: 2vw;
  }

  .p1-c-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/top-back3.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
  }

  .p1-c-info {
    width: 100%;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .p1-c-item:nth-child(1) .p1-c-info {
    transform: translateX(0%);
    gap: 3.47vw;
  }

  .p1-c-item:nth-child(2) .p1-c-info {
    transform: translateX(0%);
    gap: 5.07vw;
  }

  .p1-c-item:nth-child(3) .p1-c-info {
    transform: translateX(0%);
    gap: 7.73vw;
  }

  .p1-c-item:nth-child(2) .p1-c-title {
    transform: translateX(0%);
  }

  .p1-c-item:nth-child(3) .p1-c-title {
    transform: translateX(0%);
  }

  .p1-c-media {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p1-c-item:nth-child(1) .p1-c-media {
    transform: translateX(5%);
    gap: 2.93vw;
  }

  .p1-c-item:nth-child(2) .p1-c-media {
    transform: translateX(4%);
    gap: 2.93vw;
  }

  .p1-c-item:nth-child(3) .p1-c-media {
    transform: translateX(8%);
    gap: 2.93vw;
  }

  .p1-c-item:nth-child(1) .p1-c-img {
    width: 84.27vw;
  }

  .p1-c-item:nth-child(2) .p1-c-img {
    width: 62.13vw;
  }

  .p1-c-item:nth-child(3) .p1-c-img {
    width: 66.67vw;
  }

  .p1-c-item:nth-child(1) .p1-c-text {
    width: 79.73vw;
  }

  .p1-c-item:nth-child(2) .p1-c-text {
    width: 73.6vw;
  }

  .p1-c-item:nth-child(3) .p1-c-text {
    width: 70.4vw;
  }

  .p1-c-num {
    font-size: 10.67vw;
    font-weight: 700;
    line-height: 1;
    color: #356130;
  }

  .p1-c-title {
    writing-mode: initial;
    width: auto;
    font-size: 6.4vw;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0.38vw;
    color: #356130;
  }

  .p1-c-text {
    font-size: 4.27vw;
    line-height: 1.88;
    color: #333;
  }

  .sub-btn.p1-c-btn {
    margin: 16vw auto 0;
  }

  /* --- AREA --- */
  .p1-d {
    width: 100%;
    padding-top: 10.67vw;
    padding-bottom: 10.67vw;
  }

  .p1-d-box {
    width: 92%;
    margin: 0 auto;
  }

  .p1-d .sub-title {
    justify-content: center;
    gap: 7.73vw;
    margin-bottom: 8vw;
  }

  .p1-d .sub-title-tag-text::before,
  .p1-d .sub-title-tag-text::after {
    height: 33.6vw;
  }

  .p1-d .sub-title-text {
    width: 100%;
    text-align: center;
  }

  .p1-d-img {
    width: 100%;
    margin: 0 auto;
  }

  /* --- PRICING --- */
  .p1-e {
    position: relative;
    width: 100%;
    aspect-ratio: 375 / 668;
    border-radius: 13.33vw 0 0 0;
    background-image: url(../image/sp-back3.png);
    background-size: cover;
    background-position: center;
    display: flex;
    padding: 14.13vw 0 25.07vw;
  }

  .p1-e-container {
    width: 100%;
  }

  .p1-e-box {
    width: 92%;
    margin: 0 auto;
    background-image: none;
    border-radius: 0;
    padding: 0;
  }

  .p1-e .sub-title {
    gap: 12.27vw;
    margin-bottom: 12.27vw;
  }

  .p1-e .sub-title-tag-text::before,
  .p1-e .sub-title-tag-text::after {
    height: 40.8vw;
  }

  .p1-e .sub-title-tag-text,
  .p1-e .sub-title-en,
  .p1-e .sub-title-text {
    color: #fff;
  }

  .sub-btn.p1-e-btn {
    margin: 6.4vw auto 0;
  }

  /* --- CONTACT --- */
  .p1-f {
    width: 100%;
    padding: 13.33vw 0;
    background-color: #ebf5ed;
    margin-top: 13.87vw;
  }

  .p1-f .sub-title {
    gap: 12.27vw;
    margin-bottom: 4vw;
  }

  .p1-f .sub-title-tag-text::before,
  .p1-f .sub-title-tag-text::after {
    height: 40.8vw;
  }

  .p1-f .sub-title-inner {
    gap: 0;
  }

  .p1-f .sub-title-en {
    margin-bottom: 9.33vw;
  }

  .p1-f .sub-title-text {
    width: 100%;
  }

  .p1-f-box {
    width: 92%;
    margin: 0 auto;
  }

  .p1-f-lead {
    font-size: 6.4vw;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
  }

  .p1-f-text {
    width: 100%;
    margin-top: 8vw;
    font-size: 3.9vw;
    line-height: 2.19;
    color: #555;
    text-align: center;
  }

  .p1-f-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.27vw;
    margin-top: 8vw;
  }

  .sub-btn.p1-f-btn {
    width: 69.33vw;
    height: 14.13vw;
  }

  .p1-f .sub-btn-inner {
    font-size: 6.4vw;
  }

  .p1-f-btn-mail .sub-btn-inner {
    font-size: 5.33vw;
  }

  .p1-f-tel-icon {
    width: 6.13vw;
  }

  .p1-f-mail-icon {
    width: 6.4vw;
  }

  /* --- INSTAGRAM --- */
  .p1-g {
    width: 100%;
    padding: 13.33vw 0;
  }

  .p1-g-box {
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p1-g-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7.73vw;
  }

  .p1-g-logo {
    width: 40vw;
  }

  .p1-g-insta-account {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7.65vw;
  }

  .p1-g-insta {
    width: 53.33vw;
  }

  .p1-g-account {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .p1-g-account-id {
    font-size: 5.33vw;
    font-weight: 700;
    color: #333;
  }

  .p1-g-account-name {
    font-size: 4.27vw;
    color: #555;
  }

  .p1-g-feed {
    margin-top: 6.4vw;
  }

  /* --- COMPANY --- */
  .p1-h {
    width: 100%;
    padding: 13.33vw 0;
  }

  .p1-h .sub-title {
    gap: 10.13vw;
    margin-bottom: 8vw;
  }

  .p1-h .sub-title-tag-text::before,
  .p1-h .sub-title-tag-text::after {
    height: 31.73vw;
  }

  .p1-h .sub-title-text {
    width: 92%;
    margin: 0 auto;
  }

  .p1-h-box {
    width: 100%;
    margin: 0 auto;
  }

  .p1-h-columns {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    margin-top: 6.4vw;
  }

  .p1-h-left {
    width: 100%;
  }

  .p1-h-right {
    width: 100%;
  }

  .p1-h-map {
    display: block;
    width: 100%;
    height: 80vw;
    min-height: 0;
  }

  .p1-h-table {
    width: 92%;
    margin: 6.4vw auto 0;
    border-collapse: collapse;
  }

  .p1-h-table th,
  .p1-h-table td {
    display: grid;
    text-align: left;
    font-size: 4.27vw;
    padding-top: 5.33vw;
    padding-left: 4.27vw;
    vertical-align: top;
  }

  .p1-h-table th {
    width: 100%;
    font-weight: 700;
    color: #333;
    padding-bottom: 0;
    border-bottom: none;
  }

  .p1-h-table td {
    font-weight: 400;
    color: #555;
    padding-bottom: 5.33vw;
    border-bottom: 0.53vw solid #c9a35c;
  }

  .p1-h-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.27vw;
    margin-top: 8vw;
  }

  .sub-btn.p1-h-btn {
    width: 69.33vw;
    height: 14.13vw;
  }

  .p1-h-tel-icon {
    width: 6.13vw;
  }

  .p1-h .p1-h-btn:first-child .sub-btn-inner {
    font-size: 6.4vw;
  }

  .p1-h .p1-h-btn:last-child .sub-btn-inner {
    font-size: 4.8vw;
  }

  /* ==================== 各ページ ==================== */

  /* --- 業務内容（p2-a） --- */
  .p2-a {
    width: 100%;
    padding: 13.33vw 0;
  }

  .p2-a-container2 {
    padding-top: 13.33vw;
    padding-bottom: 13.33vw;
  }

  .p2-a-box {
    width: 92%;
    margin: 0 auto;
  }

  .p2-a .sub-title-text {
    width: 100%;
  }

  .p2-a .sub-title-tag-text {
    writing-mode: horizontal-tb;
    font-size: 8vw;
    font-weight: 500;
    color: #255c32;
    line-height: 1;
  }

  .p2-a .sub-title-tag-text::before,
  .p2-a .sub-title-tag-text::after {
    height: 13vw;
  }

  .p2-a .sub-title-en {
    font-size: 5.33vw;
  }

  .p2-a-box2 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 8vw;
  }

  .p2-a-concerns-wrap {
    padding: 8vw 0;
    background-image: url(../image/p2-back1.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
  }

  .p2-a-concerns-card {
    width: 92%;
    background-color: #fff;
    padding: 6.4vw 5.33vw;
  }

  .p2-a-concerns-en {
    text-align: center;
    font-size: 8vw;
    font-weight: 700;
    color: #90c132;
  }

  .p2-a-concerns-sub {
    text-align: center;
    font-size: 4.27vw;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2.13vw;
    padding-bottom: 3.2vw;
    border-bottom: 0.27vw solid #ddd;
  }

  .p2-a-concerns-list {
    width: 100%;
    margin: 4.27vw 0 0;
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
  }

  .p2-a-concerns-list li {
    display: flex;
    align-items: center;
    gap: 2.13vw;
    font-size: 3.47vw;
    color: #333;
  }

  .p2-a-concerns-list img {
    width: 4.8vw;
    flex-shrink: 0;
  }

  .p2-a-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6.4vw;
    margin-top: 8vw;
  }

  .p2-a-card {
    width: 100%;
    border: 0.27vw solid #c9a35c;
    border-radius: 6vw 0 0 0;
    padding-bottom: 4.27vw;
  }

  .p2-a-card:nth-child(2) {
    border-radius: 0 6vw 0 0;
  }

  .p2-a-card-head {
    border-radius: 6vw 0 0 0;
    background-color: #ecc264;
    color: #fff;
    font-weight: 700;
    font-size: 3.73vw;
    text-align: center;
    padding: 3.2vw 0;
    margin-bottom: 4.27vw;
  }

  .p2-a-card:nth-child(2) .p2-a-card-head {
    border-radius: 0 6vw 0 0;
  }

  .p2-a-card-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
    padding: 0 5.33vw;
  }

  .p2-a-cards:first-child .p2-a-card-list,
  .p2-a-cards:last-child .p2-a-card-list,
  .p2-a-container2 .p2-a-card:nth-child(2) .p2-a-card-list {
    width: 100%;
  }

  .p2-a-card-list li {
    display: flex;
    align-items: center;
    gap: 2.13vw;
    font-size: 3.47vw;
    color: #333;
  }

  .p2-a-card-list img {
    width: 4.53vw;
    flex-shrink: 0;
  }

  /* --- 料金のご案内（p3-a） --- */
  .p3-a {
    width: 100%;
    padding: 13.33vw 0;
  }

  .p3-a .sub-title-tag-text::before,
  .p3-a .sub-title-tag-text::after {
    height: 40.8vw;
  }

  .p3-a-box {
    width: 92%;
    margin: 0 auto;
  }

  .p3-a-note {
    font-size: 3.73vw;
    font-weight: 700;
    color: #333;
    margin-top: 3.2vw;
  }

  .p3-a-list {
    display: flex;
    flex-direction: column;
    gap: 4.27vw;
    margin-top: 8vw;
  }

  .p3-a-item {
    width: 100%;
    border: 0.27vw solid #a4d645;
  }

  .p3-a-item-head {
    font-weight: 700;
    font-size: 3.73vw;
    text-align: center;
    padding: 3.2vw 0;
  }

  .p3-a-item-price {
    text-align: center;
    font-size: 6.4vw;
    font-weight: 700;
    color: #90c132;
    padding: 4.27vw 0;
  }

  .p3-a-item-price span {
    font-size: 3.47vw;
    font-weight: 400;
    color: #333;
  }

  .p3-a-notes {
    width: 100%;
    margin-top: 8vw;
    background-color: #ebf5ed;
    padding: 6.4vw 5.33vw;
  }

  .p3-a-notes p {
    font-size: 3.2vw;
    line-height: 2;
    color: #333;
  }

  /* --- 選ばれる理由（p4-a） --- */
  .p4-a {
    width: 100%;
    padding: 13.33vw 0;
  }

  .p4-a .sub-title-tag-text::before,
  .p4-a .sub-title-tag-text::after {
    height: 40.8vw;
  }

  .p4-a .sub-title-text {
    width: 100%;
  }

  .p4-a-box {
    width: 92%;
    margin: 0 auto;
  }

  .p4-a-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6.4vw;
    margin-top: 8vw;
  }

  .p4-a .p4-a-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4.27vw;
    border: 0.27vw solid #266c36;
    padding: 6.4vw 5.33vw;
  }

  .p4-a-head {
    padding-bottom: 2.67vw;
  }

  .p4-a-info {
    width: 100%;
  }

  .p4-a-num {
    font-size: 6.4vw;
    font-weight: 700;
    line-height: 1;
    color: #266c36;
  }

  .p4-a-title {
    display: inline-block;
    font-size: 4.27vw;
    font-weight: 700;
  }

  .p4-a-text {
    font-size: 3.47vw;
    line-height: 1.9;
    color: #555;
    padding-left: 0;
    margin-top: 3.2vw;
  }

  .p4-a-media {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .p4-a-item:nth-child(1) .p4-a-img {
    width: 73vw;
  }

  .p4-a-item:nth-child(2) .p4-a-img {
    width: 60vw;
  }

  .p4-a-item:nth-child(3) .p4-a-img {
    width: 65vw;
  }

  /* --- ご挨拶（p5-a） --- */
  .p5-a {
    width: 100%;
    padding: 13.33vw 0;
  }

  .p5-a .sub-title-tag-text::before,
  .p5-a .sub-title-tag-text::after {
    height: 20.8vw;
  }

  .p5-a-box {
    width: 92%;
    margin: 0 auto;
  }

  .p5-a .sub-title-text {
    width: 100%;
  }

  /* --- お問い合わせ（p6-a） --- */
  .p6-a {
    width: 100%;
    padding: 13.33vw 0;
  }

  .p6-a .sub-title-tag-text::before,
  .p6-a .sub-title-tag-text::after {
    height: 40.8vw;
  }

  .p6-a-box {
    width: 92%;
    margin: 0 auto;
  }

  .p6-a .sub-title-text {
    width: 100%;
  }

  .sub-btn.p6-a-tel {
    width: 64vw;
    margin: 8vw auto 0;
  }

  .p6-a-tel .sub-btn-inner {
    font-size: 6.4vw;
    gap: 2.27vw;
  }

  .p6-a-tel-icon {
    width: 6.13vw;
  }

  .p6-a-form {
    margin-top: 13.33vw;
  }

  .p6-a-form .sub-title-tag-text::before,
  .p6-a-form .sub-title-tag-text::after {
    height: 31.73vw;
  }

  .p6-a-form-title.sub-title {
    width: fit-content;
    margin: 0 auto;
  }

  .p6-a-form-body {
    width: 100%;
    margin-top: 8vw;
  }

  .p6-a-form-body table.contact-form-table,
  .p6-a-form-body table.contact-form-table tbody,
  .p6-a-form-body table.contact-form-table tr,
  .p6-a-form-body table.contact-form-table th,
  .p6-a-form-body table.contact-form-table td {
    display: block;
    width: 100%;
  }

  .p6-a-form-body table.contact-form-table tr {
    margin-bottom: 5.33vw;
  }

  .p6-a-form-body table.contact-form-table th {
    text-align: left;
    font-weight: 400;
    font-size: 3.73vw;
    color: #333;
    margin-bottom: 2.13vw;
  }

  .p6-a-form-body .required {
    font-size: 3.2vw;
  }

  .p6-a-form-body .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
  }

  .p6-a-form-body .wpcf7-form-control:not(.wpcf7-submit) {
    border-radius: 1.6vw;
    padding: 3.73vw 4.27vw;
    font-size: 3.73vw;
  }

  .p6-a-form-body textarea.wpcf7-form-control {
    height: 16vw;
  }

  .p6-a-form .p6-a-form-body textarea.wpcf7-form-control {
    height: 42.67vw;
  }

  .p6-a-form-body .contact-form-submit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 42.67vw;
    height: 11.73vw;
    margin: 8vw auto 0;
    background-color: #90c132;
    border-radius: 999px;
  }

  .p6-a-form-body .contact-form-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #a4d645;
    clip-path: polygon(75% 0%,
        70% 14.7%,
        66.7% 28.8%,
        65% 42.2%,
        63.9% 55%,
        63.4% 67.2%,
        63.2% 78.8%,
        63.2% 89.7%,
        63.2% 100%,
        100% 100%,
        100% 0%);
    transition: clip-path 0.4s ease;
  }

  .p6-a-form-body .contact-form-submit:hover::before {
    clip-path: polygon(0% 0%,
        0% 14.7%,
        0% 28.8%,
        0% 42.2%,
        0% 55%,
        0% 67.2%,
        0% 78.8%,
        0% 89.7%,
        0% 100%,
        100% 100%,
        100% 0%);
  }

  .p6-a-form-body .contact-form-submit input.wpcf7-submit {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding-right: 8.53vw;
    background-color: transparent;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 3.47vw;
    cursor: pointer;
  }

  .p6-a-form-body .contact-form-submit::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 3.73vw;
    transform: translateY(-50%);
    width: 6.4vw;
    height: 1.96vw;
    background-image: url(../image/part6.png);
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }

  /* お知らせ内容 1100で可変 */
  .single-container {
    width: 100%;
    padding: 40px 0;
  }

  .single-box {
    width: 94%;
    margin: 0 auto;
  }

  .single-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .single-img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }

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

  .single-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .single-content img {
    max-width: 100%;
    height: auto;
  }

  /* 共通パーツ */
  .sub-btn {
    width: 58.67vw;
    height: 14.4vw;
    font-size: 4.27vw;
  }

  .sub-btn-inner {
    gap: 4.27vw;
  }

  .sub-btn-arrow {
    width: 9.6vw;
  }

  /* 共通タイトル */
  .sub-title {
    flex-direction: column;
    align-items: center;
    gap: 8vw;
    margin-bottom: 8vw;
  }

  .sub-title-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 9.33vw;
  }

  .sub-title-tag {
    gap: 2.13vw;
    margin-top: 0.53vw;
  }

  .sub-title-tag-line {
    display: none;
  }

  .sub-title-tag-text {
    position: relative;
    font-size: 6.4vw;
    letter-spacing: 0.38vw;
  }

  .sub-title-tag-text::before,
  .sub-title-tag-text::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0.8vw;
    height: 48vw;
    background-color: #C89A3E;
  }

  .sub-title-tag-text::before {
    left: -2.93vw;
  }

  .sub-title-tag-text::after {
    right: -2.93vw;
  }

  .sub-title-en {
    font-size: 10.67vw;
    letter-spacing: 0.64vw;
    margin-bottom: 0;
  }

  .sub-title-text {
    text-align: left;
    width: 100%;
    font-size: 4.27vw;
    line-height: 2.19;
  }

  /* 下層ページ　メインビュー */
  .sub-v {
    position: relative;
    width: 100%;
    height: 50vw;
    overflow: hidden;
    background-image: url(../image/sub-img1.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sub-v-title {
    text-align: center;
  }

  .sub-v-title h1 {
    font-style: italic;
    font-weight: 700;
    font-size: 8.9vw;
    color: #fff;
    margin-bottom: 4.7vw;
  }

  .sub-v-title span {
    display: block;
    font-size: 6vw;
    color: #fff;
  }

  /* --- ページトップへ戻る（SP固定バーに統合するため非表示） --- */
  .page-top {
    display: none;
  }

  /* --- SP固定フッターバー（TEL / お問い合わせ / ページトップ） --- */
  .sp-fixed-bar {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 500;
    width: 100%;
    height: 13.33vw;
  }

  .sp-fixed-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50.13vw;
    height: 100%;
    background-color: #255c32;
    color: #fff;
    text-decoration: none;
  }

  .sp-fixed-tel-icon {
    width: 5.81vw;
  }

  .sp-fixed-tel span {
    font-size: 5.91vw;
    font-weight: 600;
    letter-spacing: 0.36vw;
    line-height: 1.2;
  }

  .sp-fixed-mail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 36.53vw;
    height: 100%;
    background-color: #199833;
    color: #fff;
    text-decoration: none;
  }

  .sp-fixed-mail-icon {
    width: 6.62vw;
  }

  .sp-fixed-mail span {
    font-size: 4.8vw;
    font-weight: 500;
    letter-spacing: 0.29vw;
  }

  .sp-fixed-pagetop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13.33vw;
    height: 100%;
    background-color: #fff;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .sp-fixed-pagetop img {
    width: 100%;
  }

  /* --- フッター --- */
  .footer {
    width: 100%;
    background-color: #ebf5ed;
  }

  .footer-box {
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8vw 0;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    width: 26.67vw;
  }

  .footer-name {
    font-size: 4.27vw;
    font-weight: 700;
    color: #266c36;
    margin-top: 2.67vw;
  }

  .footer-address {
    font-size: 3.2vw;
    color: #333;
    margin-top: 0.8vw;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10vw;
    margin-top: 10vw;
  }

  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10vw;
  }

  .footer-nav a {
    font-size: 3.73vw;
    color: #333;
  }

  .footer-sns img {
    width: 8vw;
  }

  .copy-right {
    width: 100%;
    background-image: url(../image/top-back4.png);
    background-size: cover;
    background-position: center;
    padding: 4.27vw 0;
  }

  .copy-right p {
    text-align: center;
    font-size: 3.2vw;
    color: #333;
  }

}