@charset "UTF-8";
/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/* ---------------------------------------------------------
config
--------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@media screen and (max-width: 751px) {
  [data-sc-pc] {
    display: none !important;
  }
}

@media print, screen and (min-width: 750px) {
  [data-sc-sp] {
    display: none !important;
  }
}

html {
  font-size: clamp(7px, 0.78125vw, 10px);
}

@media (max-width: 750px) {
  html {
    font-size: 10px;
  }
}
body {
  font-family: YakuHanMPs, "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
  color: #3E3E3E;
  font-size: 1.6rem;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  word-break: break-all;
}

img {
  border-style: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

a,
button {
  outline: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: 0.3s;
  opacity: 1;
}
a:hover,
button:hover {
  cursor: pointer;
  opacity: 0.7;
}
a img,
button img {
  transition: 0.3s;
}
/* ---------------------------------------------------------

  --------------------------------------------------------- */
/* Minimal Reset with Modern Best Practices */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Remove default button styles */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

/* Set cursor to pointer for buttons */
button {
  cursor: pointer;
}

/* Remove link underline and inherit color */
a {
  text-decoration: none;
  color: inherit;
}

/* Image responsive */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Ensure tables are readable */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Prevent content overflow issues */
iframe, embed, object {
  max-width: 100%;
}

/* Prevent input zooming on iOS */
input, textarea {
  font-size: 16px;
}

/* Hide scrollbars but keep scrolling possible */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/**
 * SCSS 共通スタイルファイル
 * ヘッダー、フッター、ナビゲーションなどの共通要素
 */
.row {
  display: flex;
}
@media screen and (max-width: 751px) {
  .row {
    flex-direction: column;
  }
}
.row > * {
  flex: 1 1 0;
}

.w-lg {
  max-width: 124rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.w-sm {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media screen and (max-width: 751px) {
  .w-lg .w-sm {
    padding: 0;
  }
}
.top-lg {
  max-width: 164rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.top-sm {
  max-width: 134rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.custom-logo {
  width: 18rem;
}
@media screen and (max-width: 751px) {
  .custom-logo {
    width: 9rem;
  }
}

.front .custom-logo {
  width: 23rem;
}
@media screen and (max-width: 751px) {
  .front .custom-logo {
    width: 9rem;
  }
}

.innerlogo {
  padding: 2rem 2rem;
  background: #fff;
}
@media screen and (max-width: 751px) {
  .innerlogo {
    padding: 1rem 1rem;
  }
}

header.site-header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: calc(100% - 34rem);
  z-index: 1000;
}
@media screen and (max-width: 751px) {
  header.site-header {
    display: block;
  }
}
header.site-header .header__nav {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
  flex: 1;
  font-weight: 700;
  margin-top: 4.4rem;
  color: #3E3E3E;
}
@media screen and (max-width: 751px) {
  header.site-header .header__nav {
    display: none;
  }
}
header.site-header .menu-item {
  position: relative;
}
header.site-header .menu-item button {
  background: none;
  border: none;
  cursor: pointer;
}
header.site-header .menu-item .menu-item__childlist {
  display: none;
  position: absolute;
  top: 1.5em;
  left: 0;
  background: hsla(0, 0%, 100%, 0.9);
  z-index: 1000;
  width: 15em;
  padding: 2em;
}
header.site-header .menu-item .menu-item__childlist li {
  border-bottom: 1px solid;
  font-weight: 500;
  line-height: 3;
}
header.site-header .menu-item:hover .menu-item__childlist {
  display: block;
}
header.site-header .menu-item.reform {
  padding-right: 2em;
}
header.site-header .menu-item.reform::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 0.55rem;
  width: 1.2rem;
  height: 1.2rem;
  border-left: 2px solid #3e3e3e;
  border-bottom: 2px solid #3e3e3e;
  transform: translateX(-50%) rotate(-45deg);
}

.fixNavWrap {
  display: flex;
  width: 29.5rem;
  justify-content: space-between;
  position: fixed;
  top: 3rem;
  right: 3rem;
  z-index: 1001;
}
@media screen and (max-width: 751px) {
  .fixNavWrap {
    width: 22rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}
.fixNavWrap .head__contactbtn {
  background: #EDE302;
  border-radius: 2em;
  cursor: pointer;
  font-weight: 500;
  padding: 0.7em 1.65em;
}
@media screen and (max-width: 751px) {
  .fixNavWrap .head__contactbtn {
    font-size: 1.3rem;
  }
}
.fixNavWrap #site-navigation .menu-toggle {
  background: #50A000;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  color: #fff;
  border-radius: 2em;
  cursor: pointer;
  z-index: 1000;
  font-weight: 700;
  padding: 0.7em 0;
  width: 8rem;
}
@media print, screen and (min-width: 750px) {
  .fixNavWrap #site-navigation .menu-toggle {
    width: 10rem;
  }
}
@media screen and (max-width: 751px) {
  .fixNavWrap #site-navigation .menu-toggle {
    font-size: 1.3rem;
  }
}
.fixNavWrap #site-navigation .menu-container {
  display: block;
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: #b8ed83;
  width: 50rem;
  border-radius: 3rem;
  padding: 5rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95); /* 少し小さくから始める */
  transition: opacity 0.3s ease, transform 0.3s ease;
  /* 内部テキストを非表示でスタート */
}
@media screen and (max-width: 751px) {
  .fixNavWrap #site-navigation .menu-container {
    width: 95.5vw;
    overflow: scroll;
    height: 60rem;
  }
}
.fixNavWrap #site-navigation .menu-container * {
  opacity: 0;
  transform: translateY(5px); /* 少し下から */
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fixNavWrap #site-navigation .menu-container.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1); /* 元の大きさへ */
  /* 背景が出てからテキスト表示 */
}
.fixNavWrap #site-navigation .menu-container.active * {
  transition-delay: 0.2s; /* 背景後に遅れて */
  opacity: 1;
  transform: translateY(0);
}
.fixNavWrap ul#primary-menu {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  letter-spacing: 0;
}
@media screen and (max-width: 751px) {
  .fixNavWrap ul#primary-menu {
    font-size: 1.5rem;
  }
}
.fixNavWrap ul#primary-menu li {
  margin-bottom: 1em;
  border-bottom: 1px solid #fff;
  padding-bottom: 1em;
}
.fixNavWrap ul#primary-menu .menu-item__childlist {
  padding-left: 4em;
  line-height: 1.5;
  font-weight: 500;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.fixNavWrap ul#primary-menu .menu-item__childlist ul {
  list-style: disc;
}
.fixNavWrap ul#primary-menu .menu-item__childlist li {
  border-bottom: none;
}
.fixNavWrap ul#primary-menu .menu-item__childlist.active {
  max-height: 500px;
  margin-top: 3rem;
}

button.accordion-toggle {
  position: relative;
  width: 100%;
  text-align: left;
}
button.accordion-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.9rem;
  width: 1.2rem;
  height: 1.2rem;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateX(-50%) rotate(-45deg);
}

.site-footer .ftGrid {
  display: flex;
}
@media screen and (max-width: 751px) {
  .site-footer .ftGrid {
    display: block;
  }
}
.site-footer .ftGrid .wrp_l {
  flex: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.site-footer .ftGrid .wrp_r {
  flex: 1;
}
.site-footer .ftGrid .ft-item-1 {
  flex: 1;
  background-color: #FBF7EF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-footer .ftGrid .ft-item-1 .accsecWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}
@media screen and (max-width: 751px) {
  .site-footer .ftGrid .ft-item-1 .accsecWrap {
    display: block;
    padding-top: 5rem;
  }
}
.site-footer .ftGrid .ft-item-1 picture {
  width: 25rem;
}
@media screen and (max-width: 751px) {
  .site-footer .ftGrid .ft-item-1 picture {
    width: 54%;
    display: block;
    margin: 0 auto;
    padding-right: 5vw;
    /* margin-left: 4.5vw; */
  }
}
.site-footer .ftGrid .ft-item-1 .r {
  margin-left: 10rem;
  text-align: left;
}
@media screen and (max-width: 751px) {
  .site-footer .ftGrid .ft-item-1 .r {
    margin-left: 0;
    margin-top: 3em;
    text-align: center;
    padding-bottom: 3em;
  }
}
.site-footer .ftGrid .ft-item-1 p {
  font-size: 1.5rem;
  letter-spacing: 0;
}
.site-footer .ftGrid .ft-item-1 p:not(:last-child) {
  margin-bottom: 2em;
}
.site-footer .ftGrid .ft-item-2 {
  flex: 1;
}
@media screen and (max-width: 751px) {
  .site-footer .ftGrid .ft-item-2 {
    flex: none;
    height: 30rem;
  }
}
.site-footer .ftGrid .ft-item-2 iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.site-footer .ftGrid .ft-item-3 {
  background-color: #87B828;
  color: #fff;
  text-align: center;
  padding-top: 10rem;
}
@media screen and (max-width: 751px) {
  .site-footer .ftGrid .ft-item-3 {
    padding-top: 5rem;
  }
}
.site-footer .ftGrid .ft-item-3 .pc-navWrap {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 1450px) {
  .site-footer .ftGrid .ft-item-3 .pc-navWrap {
    padding: 0 5vw;
    display: block;
    margin-left: 10rem;
  }
  .site-footer .ftGrid .ft-item-3 .pc-navWrap .pc-nav {
    margin-bottom: 2em;
  }
}
.site-footer .ftGrid .ft-item-3 .pc-nav {
  padding-left: 1rem;
  text-align: left;
  list-style: disc;
  line-height: 2.24;
}
.site-footer .ftGrid .ft-item-3 .odennwa {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
@media print, screen and (min-width: 750px) {
  .site-footer .ftGrid .ft-item-3 .odennwa {
    margin-top: 2em;
  }
}
.site-footer .ftGrid .ft-item-3 .tel-icon {
  width: 7rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.site-footer .ftGrid .ft-item-3 .telnam {
  width: 34rem;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: block;
}
.site-footer .ftGrid .ft-item-3 .odenn_txt {
  font-size: 1.5rem;
  letter-spacing: 0;
  margin-bottom: 3rem;
}
.site-footer .ftGrid .ft-item-3 .top-btn01 {
  color: #50A000;
  background-color: #fff;
  display: block;
  text-align: end;
  padding: 1.1em 1.5em 0.9em 0;
  letter-spacing: 0;
  border-radius: 3em;
  width: 23em;
  margin: 0 auto;
}
@media screen and (max-width: 751px) {
  .site-footer .ftGrid .ft-item-3 .top-btn01 {
    font-size: 1.5rem;
    width: 18em;
  }
}
.site-footer .ftGrid .ft-item-3 .top-btn01 img {
  width: 3.7rem;
  margin-top: -0.7rem;
  margin-left: 1.5rem;
}
.site-footer small {
  font-size: 11px;
  margin-top: 11rem;
  padding-bottom: 3rem;
  display: block;
  letter-spacing: 0.01em;
}

.sp-navWrap {
  width: calc(100% - 9rem);
  padding-bottom: 10rem;
}
@media screen and (max-width: 751px) {
  .sp-navWrap {
    width: calc(100% - 4rem);
  }
}
.sp-navWrap li {
  border-top: 1px solid #50A000;
  font-weight: 500;
  line-height: 2;
  padding: 1.3rem 0;
}
.sp-navWrap li.last {
  border-bottom: 1px solid #50A000;
}
.sp-navWrap__row {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.sp-navWrap__row li {
  flex: 1;
}
.sp-navWrap__row li:nth-of-type(odd) {
  margin-right: 1rem;
}
.sp-navWrap__row li:nth-of-type(even) {
  margin-left: 1rem;
}
.sp-navWrap ul + a {
  font-size: 1.3rem;
  margin-top: 3rem;
  display: block;
}

.sp-nav-open {
  display: block;
}
.sp-nav-open .nav-toggle-btn {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.sp-nav-open .nav-toggle-btn:hover {
  opacity: 0.8;
}
.sp-nav-open .nav-toggle-btn .toggle-icon {
  position: absolute;
  right: 2rem;
  top: 1rem;
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s ease;
}
.sp-nav-open .nav-toggle-btn .toggle-icon::before, .sp-nav-open .nav-toggle-btn .toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #50A000;
  transition: all 0.3s ease;
}
.sp-nav-open .nav-toggle-btn .toggle-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sp-nav-open .nav-toggle-btn .toggle-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.sp-nav-open .nav-toggle-btn[aria-expanded=true] .toggle-icon::after {
  opacity: 0;
}
.sp-nav-open .nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sp-nav-open .nav-submenu li {
  border-top: 1px solid rgba(80, 160, 0, 0.3);
  padding: 1.5rem 0;
  font-size: 1.4rem;
  width: 47%;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
  /* flex: 50%; */
  /* margin: 0 1rem; */
}
.sp-nav-open.is-open .nav-submenu {
  max-height: 50rem; /* 十分な高さを設定 */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1.7rem 0 -1rem 0;
}
.sp-nav-open.is-open .nav-submenu li {
  opacity: 1;
  transform: translateY(0);
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/* ---------------------------------------------------------
メインビジュアルアニメーション
--------------------------------------------------------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.secMv__inner {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.secMv__inner.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
テキスト周り
--------------------------------------------------------- */
.ttlh_2Style {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  text-align: left;
  font-size: 4.6rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 751px) {
  .ttlh_2Style {
    font-size: 3rem;
    text-align: center;
  }
}
.ttlh_2Style span.en {
  font-family: "Helvetica Neue", Helvetica, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  margin-bottom: 1.5em;
  letter-spacing: 0.055em;
}
@media screen and (max-width: 751px) {
  .ttlh_2Style span.en {
    font-size: 1.1rem;
  }
}
.ttlh_2Style span.unl {
  color: #50A000;
  display: inline-block;
  border-bottom: 1px solid;
  margin-bottom: 0.25em;
  text-indent: -0.7rem;
  letter-spacing: 0.085em;
  line-height: 1.7;
}

.ttlh_2Style p {
  font-size: 1.5rem;
}

.top-btn01 {
  display: block;
  color: #fff;
  text-align: end;
  padding: 1.5em 2em 1.5em 0;
  margin: 0 auto;
  border-radius: 3em;
  width: 15em;
  background-color: #87B828;
}
.top-btn01 img {
  width: 2.2rem;
  margin-top: -0.5rem;
  margin-left: 3rem;
}

/* ---------------------------------------------------------
スクロールがぞう
--------------------------------------------------------- */
.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee__inner {
  display: flex;
  width: max-content;
  padding-top: 3rem;
  animation: scroll-marquee 40s linear infinite;
}
@media screen and (max-width: 751px) {
  .marquee__inner {
    animation: scroll-marquee 60s linear infinite;
  }
}

.manuWrap {
  display: flex;
  padding-top: 15rem;
  padding-bottom: 14rem;
}
@media screen and (max-width: 751px) {
  .manuWrap {
    padding: 0;
  }
}
.manuWrap .l {
  width: 21.5rem;
  margin-left: 4.5rem;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manufacturer {
  flex: 1;
}
@media screen and (max-width: 751px) {
  .manufacturer {
    margin-top: 7rem;
    margin-bottom: 7rem;
    text-align: center;
  }
}
.manufacturer > p {
  margin-bottom: 3rem;
}
@media screen and (max-width: 751px) {
  .manufacturer > p {
    margin-bottom: 4rem;
    margin-top: 1rem;
  }
}
.manufacturer img {
  height: 8rem;
  width: auto;
  margin: 0 3rem;
  width: 20rem;
  object-fit: contain;
}
@media screen and (max-width: 751px) {
  .manufacturer img {
    height: 7rem;
    width: auto;
    margin: 0 2rem;
    width: 20rem;
  }
}
.manufacturer img.sikaku {
  height: 13rem;
  margin: 0 3rem;
  width: 18rem;
  margin-top: -3rem;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ---------------------------------------------------------
トップページ固有の上書き
--------------------------------------------------------- */
.front .custom-logo {
  left: 5rem;
  top: 4rem;
  position: absolute;
}
@media screen and (max-width: 751px) {
  .front .custom-logo {
    left: 1rem;
    top: 1rem;
  }
}
.front .site-header .header__nav {
  display: none;
}

/* ---------------------------------------------------------
トップページのスタイル
--------------------------------------------------------- */
.secMv {
  position: relative;
  background-image: url("../../images/top/mv.jpg");
  background-size: cover;
  background-position: center top;
  padding-bottom: 12rem;
  padding-top: 0;
}
@media print, screen and (min-width: 750px) {
  .secMv {
    aspect-ratio: 1/1.99;
  }
}
.secMv__inner {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.secMv__p {
  width: 33rem;
  margin-top: 1rem;
}
@media screen and (max-width: 751px) {
  .secMv__p {
    width: 22rem;
    margin-top: 0;
  }
}
.secMv .ttl,
.secMv .news-section {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 9rem;
}
@media screen and (max-width: 751px) {
  .secMv .ttl,
  .secMv .news-section {
    bottom: -4rem;
  }
}
.secMv .ttl {
  color: unset;
  font-family: "Shippori Mincho", serif;
  /* text-shadow: 0 0 20px #000000; */
  font-size: 2rem;
  font-weight: 600;
  line-height: 5rem;
  letter-spacing: 0.3rem;
  /* text-align: center; */
  /* margin-top: 50rem; */
  /* margin-bottom: 60rem; */
  position: absolute;
  bottom: 12rem;
  left: 13rem;
}
@media screen and (max-width: 751px) {
  .secMv .ttl {
    font-size: 4vw;
    margin-left: 3rem;
  }
}

.news-section {
  background: #fff;
  width: 67rem;
  padding: 1em 0 1em 3em;
  border-radius: 3em 0 0 3em;
  margin: auto 0 auto auto;
}
@media screen and (max-width: 751px) {
  .news-section {
    width: 80%;
  }
}
.news-section .news-item {
  display: flex;
}
@media screen and (max-width: 751px) {
  .news-section .news-item {
    display: block;
  }
}
.news-section .news-date {
  width: 6em;
  color: #3E3E3E;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 1rem;
  margin-right: 2rem;
  letter-spacing: 0.16em;
}
.news-section .news-title {
  color: #50A000;
  font-size: 1.5rem;
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分を「...」にする */
  white-space: nowrap;
}

.lead {
  position: relative;
  padding: 28.8rem 0 0 0;
  margin-bottom: 5rem;
}
@media screen and (max-width: 751px) {
  .lead {
    background: #FBF7EF;
    padding-bottom: 0;
    padding-top: 10.2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 9rem;
    margin-bottom: 0;
  }
}
.lead .lWrap {
  max-width: 146rem;
  margin: 0 auto;
  padding: 0 4rem;
}
@media screen and (max-width: 751px) {
  .lead .lWrap {
    padding: 0;
  }
}
.lead .l {
  position: relative;
  padding-top: 0;
}
@media print, screen and (min-width: 750px) {
  .lead .l:before {
    position: absolute;
    content: "";
    bottom: -20rem;
    left: -1rem;
    width: 80rem;
    height: 16rem;
    background: url(../../images/top/lead_l.png) no-repeat center/contain;
  }
}
.lead .ttlh_2Style {
  margin-bottom: 5.2rem;
}
.lead .ttlh_2Style span.en {
  margin-bottom: 4.5em;
  text-indent: -0.3rem;
}
@media screen and (max-width: 751px) {
  .lead .ttlh_2Style span.en {
    margin-bottom: 1.5em;
  }
}
.lead p {
  font-size: 1.8rem;
  line-height: 4rem;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 751px) {
  .lead p {
    letter-spacing: -0.11rem;
  }
}
.lead .r {
  position: absolute;
  flex: none;
  width: 50%;
  max-width: 94rem;
  top: 39rem;
  right: 0;
}
@media screen and (max-width: 751px) {
  .lead .r {
    position: static;
    width: 100%;
    padding: 8rem 1.6rem 0;
  }
}
.lead .leadimg {
  display: block;
  width: 94%;
  margin: 0 auto;
  margin-top: -3rem;
  margin-bottom: 6rem;
}

.sec_koe {
  margin-top: 26rem;
  padding: 0;
}
@media screen and (max-width: 751px) {
  .sec_koe {
    margin-top: 1rem;
  }
}
.sec_koe .wrap {
  position: relative;
}
.sec_koe .ttlbox {
  position: absolute;
  left: 8.6%;
  margin-top: 7rem;
}
@media screen and (max-width: 751px) {
  .sec_koe .ttlbox {
    position: static;
  }
}
.sec_koe .ttlh_2Style {
  font-size: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 751px) {
  .sec_koe .ttlh_2Style {
    font-size: 3rem;
  }
}

.sec_jisseki {
  background-color: #FBF7EF;
  margin-top: 13rem;
  padding-top: 13rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 751px) {
  .sec_jisseki {
    padding-top: 7.5rem;
    margin-top: 9rem;
    padding-bottom: 13rem;
  }
}
.sec_jisseki .ttlh_2Style {
  text-align: center;
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 750px) {
  .sec_jisseki .ttlh_2Style {
    margin-bottom: 4rem;
  }
}
.sec_jisseki .ttlh_2Style + p {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.2;
  margin-top: 2em;
  margin-bottom: 4.3em;
}
@media screen and (max-width: 751px) {
  .sec_jisseki .ttlh_2Style + p {
    padding: 0 3rem;
    text-align: left;
    margin-bottom: 5.5rem;
    line-height: 2;
  }
}
.sec_jisseki .imgwrapSP {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 6rem;
}
@media screen and (max-width: 751px) {
  .sec_jisseki .imgwrapSP {
    margin-bottom: 4rem;
  }
}
.sec_jisseki .imgwrapSP .box {
  width: auto;
  margin: 0;
}
.sec_jisseki .row {
  position: relative;
  justify-content: space-between;
  align-items: center;
  max-width: 1550px;
  margin: 0 auto;
  margin-top: 6rem;
  padding: 0 2rem;
}
.sec_jisseki .row .custom-nav {
  /* text-align: center; */
  flex: none;
  position: relative;
  top: -2rem;
  left: 0px;
  width: 17rem;
}
.sec_jisseki .row .custom-nav .swiper-button-prev,
.sec_jisseki .row .custom-nav .swiper-button-next {
  width: 6rem;
  margin: 0 1rem;
}
.sec_jisseki .row .custom-nav .swiper-button-prev {
  transform: rotate(180deg);
}
.sec_jisseki .row .custom-nav .swiper-button-next::after,
.sec_jisseki .row .custom-nav .swiper-button-prev::after {
  content: none !important;
}
.sec_jisseki .top-btn01 {
  width: 21em;
  flex: none;
  margin: 0;
  margin-left: 5rem;
}
@media screen and (max-width: 751px) {
  .sec_jisseki .top-btn01 {
    margin-left: 0;
    margin: 0 auto;
    padding: 0.5em 1em;
    width: 18em;
  }
}

.sec_showroom {
  background-color: #FFFFE5;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 751px) {
  .sec_showroom {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}
.sec_showroom .ttlh_2Style {
  font-size: 4.17rem;
}
@media print, screen and (min-width: 750px) {
  .sec_showroom .ttlh_2Style {
    margin-bottom: 1.5rem;
  }
  .sec_showroom .ttlh_2Style .en {
    margin-bottom: 3.7rem;
  }
}
@media screen and (max-width: 751px) {
  .sec_showroom .ttlh_2Style {
    font-size: 3rem;
  }
}
.sec_showroom .ttlh_2Style + p {
  display: block;
  max-width: 34em;
  padding-right: 2em;
  line-height: 2;
}
@media screen and (max-width: 751px) {
  .sec_showroom .ttlh_2Style + p {
    padding: 0.5rem 3rem;
    line-height: 2.1;
  }
}
.sec_showroom > .row {
  align-items: center;
}
.sec_showroom .l {
  flex: none;
  width: 53%;
}
.sec_showroom .r {
  position: relative;
  padding-left: 10rem;
}
@media screen and (max-width: 751px) {
  .sec_showroom .r {
    padding: 0;
  }
}
.sec_showroom .r:before {
  position: absolute;
  content: "";
  bottom: -5rem;
  left: 51rem;
  width: 14rem;
  height: 18rem;
  background: url(../../images/top/sr_man.webp) no-repeat center/contain;
}
@media screen and (max-width: 1390px) {
  .sec_showroom .r:before {
    left: -17rem;
    bottom: 0rem;
  }
}
@media screen and (max-width: 751px) {
  .sec_showroom .r:before {
    top: -14.5rem;
    left: auto;
    right: calc(50% - 5rem);
    width: 10rem;
    height: 13rem;
  }
}
.sec_showroom .sr-btn-mail {
  background-color: #50A000;
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
  border-radius: 3em;
  margin-top: 7rem;
  margin-bottom: 2.5rem;
  display: block;
  max-width: 43rem;
}
@media print, screen and (min-width: 750px) {
  .sec_showroom .sr-btn-mail {
    max-width: 41rem;
    margin-left: -1.7rem;
  }
}
@media screen and (max-width: 751px) {
  .sec_showroom .sr-btn-mail {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 2.5rem;
    padding: 1rem 0;
    letter-spacing: 0.01em;
    font-size: 1.5rem;
  }
}
.sec_showroom .sr-btn-tel {
  width: 38rem;
  display: block;
}
@media print, screen and (min-width: 750px) {
  .sec_showroom .sr-btn-tel {
    margin-left: -0.8rem;
  }
}
@media screen and (max-width: 751px) {
  .sec_showroom .sr-btn-tel {
    width: 67%;
    margin: 0 auto;
    margin-top: -0.7rem;
  }
}
.sec_showroom .sp_img {
  margin-bottom: 6rem;
  margin-top: 6rem;
}

.sec_three {
  padding-top: 26rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 751px) {
  .sec_three {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.sec_three .ttlh_2Style {
  line-height: 1.57;
}
@media screen and (max-width: 751px) {
  .sec_three .ttlh_2Style {
    margin-bottom: 5rem;
  }
}
.sec_three .ttlh_2Style + p {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 2.5em;
  margin-left: -0.3rem;
}
.sec_three .ttlh_2Style .en {
  margin-left: -0.5rem;
  letter-spacing: 1px;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 751px) {
  .sec_three .ttlh_2Style .en {
    margin-bottom: 2rem;
  }
}
.sec_three .ttlh_2Style .unl {
  letter-spacing: -0.05em;
  line-height: 1.5;
}
.sec_three .row {
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: space-between;
}
.sec_three .l {
  width: 37%;
  width: 32%;
  position: sticky;
  top: 13rem;
  flex: none;
  padding-top: 3rem;
  padding-left: 3rem;
}
@media screen and (max-width: 751px) {
  .sec_three .l {
    width: 100%;
    position: static;
    padding-top: 3.6rem;
    padding-left: 0;
  }
}
.sec_three .r {
  width: 59%;
  flex: none;
}
@media screen and (max-width: 751px) {
  .sec_three .r {
    width: 100%;
    margin-top: 7rem;
    padding: 0 1rem;
  }
}
.sec_three .box {
  position: relative;
  padding: 7.2rem 1rem;
  margin-bottom: 6rem;
  padding-top: 0;
}
.sec_three .box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url(../../images/top/sec_three_over.webp) no-repeat center/cover;
  transition: 0.3s ease;
  opacity: 1;
}
@media screen and (max-width: 751px) {
  .sec_three .box:before {
    opacity: 0.6;
  }
}
@media screen and (max-width: 751px) {
  .sec_three .box {
    margin-bottom: 2rem;
    position: relative;
    padding: 1rem 0rem 10rem;
  }
}
.sec_three .box h3 {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  text-align: center;
  font-size: 4.6rem;
  padding-top: 3rem;
}
@media screen and (max-width: 751px) {
  .sec_three .box h3 {
    line-height: 1.1;
  }
}
.sec_three .box h3 .nam {
  position: absolute;
  top: 3rem;
  left: 3rem;
  color: #50A000;
  border-bottom: 1px solid;
  font-size: 4.7rem;
  line-height: 1;
  padding-bottom: 1.1rem;
}
@media screen and (max-width: 751px) {
  .sec_three .box h3 .nam {
    position: static;
    font-size: 5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
}
.sec_three .box h3 .ttl {
  position: relative;
  color: #50A000;
  font-size: 4.3rem;
  letter-spacing: 0;
  line-height: 2;
  padding: 0.3rem 1.5rem 0;
  padding-bottom: 0.8rem;
  z-index: 1;
}
@media screen and (max-width: 751px) {
  .sec_three .box h3 .ttl {
    font-size: 2.4rem;
    line-height: 2.4;
  }
}
.sec_three .box h3 .ttl:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  z-index: -1;
  transition: width 0.3s ease;
}
@media screen and (max-width: 751px) {
  .sec_three .box h3 .ttl:before {
    width: 100%;
  }
}
.sec_three .box .three-p {
  position: relative;
  color: #50A000;
  font-size: 1.8rem;
  line-height: 2;
  width: 81%;
  padding: 3rem 4rem;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 5rem;
  z-index: 1;
}
.sec_three .box .three-p:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: width 0.3s ease;
}
.sec_three .box .box-btn {
  position: relative;
  display: block;
  color: #50A000;
  border: 1px solid;
  width: 22rem;
  margin: 0 auto;
  padding: 1rem 0;
  padding-bottom: 1.1rem;
  text-align: center;
  text-indent: -1em;
  border-radius: 2em;
  transition: 0.3s ease;
}
.sec_three .box .box-btn:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  right: 2.4rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.4rem;
  background: #50A000;
}
@media screen and (max-width: 751px) {
  .sec_three .box .top-btn01 {
    text-align: end;
    position: absolute;
    right: 0;
    bottom: -1px;
    padding: 0.6em 0 0.3em 1em;
    border-radius: 10px 0 0 0;
    width: auto;
    color: #87B828;
    background: #fff;
  }
}
@media screen and (max-width: 751px) {
  .sec_three .box .top-btn01 img {
    width: 3.2rem;
    margin-top: -0.5rem;
    margin-left: 1.5rem;
  }
}
.sec_three .con01 {
  background: url(../../images/top/sec_three_01.webp) no-repeat top center/cover;
}
.sec_three .con02 {
  background: url(../../images/top/sec_three_02.webp) no-repeat top center/cover;
}
.sec_three .con03 {
  background: url(../../images/top/sec_three_03.webp) no-repeat top center/cover;
}

.three-linkbox:hover {
  opacity: 1;
}
.three-linkbox:hover .three-p:before,
.three-linkbox:hover .ttl:before {
  width: 100% !important;
}
.three-linkbox:hover .box-btn {
  color: #fff;
  border-color: #50A000;
  background-color: #50A000;
}
.three-linkbox:hover .box-btn:before {
  background: #fff;
}
.three-linkbox:hover .box:before {
  opacity: 0;
}

.sec_reform {
  background-color: #FBF9F4;
  padding-top: 19rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 751px) {
  .sec_reform {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
}
.sec_reform .ttlh_2Style {
  text-align: center;
  margin-bottom: 6.2rem;
}
@media print, screen and (min-width: 750px) {
  .sec_reform .ttlh_2Style {
    font-size: 4rem;
    margin-bottom: 6.8rem;
  }
}
@media screen and (max-width: 751px) {
  .sec_reform .ttlh_2Style {
    margin-bottom: 4.2rem;
  }
}
.sec_reform .wrap {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7.6rem 1rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 751px) {
  .sec_reform .wrap {
    grid-template-columns: 1fr;
    background: none;
    padding: 0 1rem;
    gap: 0.8rem 1rem;
  }
}
.sec_reform .refoBox {
  display: block;
  position: relative;
}
.sec_reform .refoBox:hover {
  opacity: 1;
}
.sec_reform .refoBox:hover .img-wrapper img {
  filter: brightness(100%);
  transform: scale(1.05);
}
.sec_reform .refoBox .img-wrapper {
  overflow: hidden;
}
.sec_reform .refoBox .img-wrapper img {
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media screen and (max-width: 751px) {
  .sec_reform .refoBox .img-wrapper img {
    height: 24rem;
    filter: brightness(0.7) contrast(1.2) sepia(0.1) saturate(0.8);
  }
}
@media screen and (max-width: 751px) {
  .sec_reform .refoBox:before {
    position: absolute;
    content: "";
    top: 18rem;
    right: -1px;
    width: 6rem;
    height: 6rem;
    background: url(../../images/top/refo_arrow.png) no-repeat center/contain;
  }
}
.sec_reform .refoBox .ttl {
  color: #50A000;
  position: absolute;
  right: 0;
  top: 0;
  writing-mode: vertical-rl;
  font-size: 2rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.3rem;
  padding: 3rem 2.4rem;
  background: #fff;
  border-radius: 0 0 0 1.8rem;
}
@media screen and (max-width: 751px) {
  .sec_reform .refoBox .ttl {
    color: #fff;
    right: auto;
    left: 3rem;
    top: 3rem;
    writing-mode: unset;
    font-size: 2.7rem;
    font-weight: 700;
    padding: 0;
    background: none;
    text-shadow: 0 0 10px #767676;
  }
}
.sec_reform .refoBox .txt {
  width: 80%;
  margin: 0 auto;
  margin-top: 3rem;
  line-height: 2;
  margin-bottom: 3.5rem;
  min-height: 6em;
}
@media screen and (max-width: 751px) {
  .sec_reform .refoBox .txt {
    height: auto;
    width: auto;
    margin-top: 1.9rem;
    line-height: 1.7;
  }
}
.sec_reform .refoBox .miru {
  width: 20rem;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 751px) {
  .sec_reform .refoBox .miru {
    display: none;
  }
}

a.recruit {
  display: block;
  max-width: 119rem;
  margin: 21rem auto;
  padding: 0 2rem;
}
@media screen and (max-width: 751px) {
  a.recruit {
    margin: 8rem auto;
    padding: 0 4rem;
  }
}

.sec_chirasi {
  background-color: #FBF7EF;
  padding-top: 9rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 751px) {
  .sec_chirasi {
    padding-top: 8rem;
    padding-bottom: 13rem;
  }
}
@media print, screen and (min-width: 750px) {
  .sec_chirasi .ttlh_2Style {
    margin-bottom: 1rem;
  }
  .sec_chirasi .ttlh_2Style .en {
    margin-bottom: 2.7rem;
  }
}
@media screen and (max-width: 751px) {
  .sec_chirasi .ttlh_2Style {
    margin-bottom: 0;
  }
}
.sec_chirasi .ttlh_2Style span.unl {
  margin-left: 0.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}
.sec_chirasi .wrap {
  position: relative;
}
.sec_chirasi .ttlbox {
  position: absolute;
  left: calc(50% - 64rem);
  width: 44rem;
}
@media screen and (max-width: 751px) {
  .sec_chirasi .ttlbox {
    width: 100%;
    position: static;
  }
}
@media screen and (max-width: 1420px) {
  .sec_chirasi .ttlbox {
    left: 9rem;
  }
}
@media screen and (max-width: 1220px) {
  .sec_chirasi .ttlbox {
    left: 5rem;
  }
}
.sec_chirasi .ttlbox p {
  line-height: 2.1;
  font-size: 1.8rem;
  margin-bottom: 8rem;
  letter-spacing: 0.03em;
}
.sec_chirasi .ttlbox .top-btn01 {
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .sec_chirasi .ttlbox .top-btn01 {
    width: 12.5em;
  }
}
.sec_chirasi .chirasiBox_sp {
  padding: 0 3rem;
  margin-top: 3rem;
}
.sec_chirasi .chirasiBox_sp p {
  margin-bottom: 4rem;
}
@media screen and (max-width: 751px) {
  .sec_chirasi .chirasiBox_sp p {
    margin-bottom: 3rem;
    line-height: 2.1;
    margin-top: -1rem;
  }
}
@media screen and (max-width: 751px) {
  .sec_chirasi .top-btn01 {
    padding: 0.5em 2em 0.5em 0;
  }
}

.chirasi-swiper {
  padding-bottom: 6rem;
  width: 56.5%;
  margin: auto 0 auto auto;
  list-style: none;
}
@media screen and (max-width: 751px) {
  .chirasi-swiper {
    width: 95%;
    padding-bottom: 1rem;
  }
}
.chirasi-swiper .swiper-slide {
  width: 48rem; /* 固定幅 */
}
@media screen and (max-width: 751px) {
  .chirasi-swiper .swiper-slide {
    width: 34rem;
    margin-bottom: 3rem;
  }
}
.chirasi-swiper .swiper-scrollbar {
  background: #eee;
  height: 10px;
  border-radius: 5px;
}
.chirasi-swiper .swiper-scrollbar-drag {
  background: #50A000;
  border-radius: 5px;
}

/* ---------------------------------------------------------
ショールーム用流れるアニメーション
--------------------------------------------------------- */
.showroom-sp-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 6rem;
  margin-top: 6rem;
}
@media screen and (max-width: 751px) {
  .showroom-sp-slider {
    margin-bottom: 4rem;
  }
}
.showroom-sp-slider img {
  flex: 0 0 auto;
  width: 75%;
  height: auto;
  animation: slideShowroom 20s linear infinite;
}
@keyframes slideShowroom {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-600%);
  }
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/* ---------------------------------------------------------
テキスト周り
--------------------------------------------------------- */
.inner p {
  margin-top: 1em;
}

.inner__header {
  position: relative;
  margin-top: 10rem;
}
.inner__header .ttlWrap {
  position: absolute;
  font-family: "Shippori Mincho", serif;
  bottom: -1px;
  left: -1px;
}
@media screen and (max-width: 751px) {
  .inner__header .ttlWrap {
    position: static;
    margin-top: 4rem;
  }
}
.inner__header .ttlWrap .entry-title {
  background: #fff;
  padding: 1rem 4rem;
  font-size: 4rem;
  color: #50A000;
}
@media screen and (max-width: 751px) {
  .inner__header .ttlWrap .entry-title {
    font-size: 2.8rem;
    padding: 0 2rem;
  }
}
.inner__header .ttlWrap .en {
  font-size: 2rem;
  background: #fff;
  padding: 1rem 4rem;
}
@media screen and (max-width: 751px) {
  .inner__header .ttlWrap .en {
    font-size: 1.2rem;
    padding: 0 2rem;
    margin-bottom: 0em;
    display: block;
  }
}
.inner__header img {
  width: calc(100% - 6rem);
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 751px) {
  .inner__header img {
    height: 20rem;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}

.sekosub {
  position: absolute;
  font-family: "Shippori Mincho", serif;
  color: #50A000;
  left: 1rem;
  font-size: 2rem;
  background: #fff;
  bottom: 8rem;
  padding: 1rem 3rem;
}

.breadcrumb {
  font-size: 14px;
  margin-top: 2rem;
  margin-bottom: 1em;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb li {
  position: relative;
  margin-right: 0.5em;
  padding-right: 0.75em;
}
.breadcrumb li::after {
  content: ">";
  position: absolute;
  right: 0;
  top: -0.2rem;
  color: #999;
}
.breadcrumb li:last-child {
  color: #333;
}
.breadcrumb li:last-child::after {
  content: none;
}
.breadcrumb li a {
  text-decoration: underline;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}

.h3Wrap {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  margin-bottom: 9rem;
}
@media screen and (max-width: 751px) {
  .h3Wrap {
    display: block;
  }
}
.h3Wrap > p {
  margin-top: 4rem;
  flex: 1;
}
.h3Wrap > .r {
  margin-top: 4rem;
  flex: 1;
}
.h3Wrap > .r p {
  margin-top: 0;
}

.inner_h3_Style {
  width: 40rem;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  text-align: left;
  color: #50A000;
  font-size: 4rem;
}
@media screen and (max-width: 751px) {
  .inner_h3_Style {
    width: 100%;
    font-size: 2.4rem;
    text-align: center;
  }
}
.inner_h3_Style span.en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.4rem;
  display: block;
  font-weight: 400;
  text-indent: 1rem;
  color: #3E3E3E;
}
.inner_h3_Style span.unl {
  color: #50A000;
  display: inline-block;
  border-bottom: 1px solid;
  letter-spacing: 0.3rem;
  margin-bottom: 0.25em;
}

.ttl_underline {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  text-align: left;
  color: #50A000;
  font-size: 2.5rem;
  border-bottom: 1px solid;
  padding-bottom: 0.5em;
  margin-bottom: 0.7em;
  margin-top: 3em;
}
@media screen and (max-width: 751px) {
  .ttl_underline {
    font-size: 2rem;
  }
}
.ttl_underline.nam {
  padding-left: 2em;
  text-indent: -1.35em;
}

section .ttl_underline:first-child {
  margin-top: 0;
}

h4.ttl_bold {
  color: #50a000;
  margin-top: 4em;
  font-size: 2rem;
}

.a_underline {
  display: block;
  text-align: end;
}
.a_underline span {
  border-bottom: 1px solid;
  position: relative;
  margin-right: 1em;
}
.a_underline span:after {
  content: ">";
  position: absolute;
  bottom: -1px;
  right: -1em;
}

/* ---------------------------------------------------------
余白
--------------------------------------------------------- */
section {
  padding: 7rem 0;
}

.sec_color {
  background-color: #FBF7EF;
}

article.innerContent {
  margin-top: 2rem;
  margin-bottom: 10rem;
}

.sec01_bgON {
  padding: 10rem 0;
  background-color: #FBF7EF;
}
.sec01_bgON .h3Wrap {
  margin-bottom: 0;
}
.sec01_bgON .inner_h3_Style {
  width: 15em;
}
@media screen and (max-width: 751px) {
  .sec01_bgON .inner_h3_Style {
    width: 100%;
  }
}

/* ---------------------------------------------------------
ごあいさつ
--------------------------------------------------------- */
.greeting .sec01 .l {
  width: 36rem;
  flex: none;
  margin-right: 8rem;
}
@media screen and (max-width: 751px) {
  .greeting .sec01 .l {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4rem;
  }
}
.greeting .sec01 .r .name {
  text-align: end;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 3rem;
}
.greeting .bookBox {
  display: flex;
  background: #FFFFE5;
  align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 751px) {
  .greeting .bookBox {
    display: block;
  }
}
.greeting .bookBox.re {
  flex-direction: row-reverse;
}
.greeting .bookBox img {
  width: 35rem;
  height: 35rem;
  object-fit: cover;
}
@media screen and (max-width: 751px) {
  .greeting .bookBox img {
    width: 100%;
    height: auto;
  }
}
.greeting .bookBox .r {
  flex: 1;
  padding: 2rem;
  padding-left: 6rem;
}
@media screen and (max-width: 751px) {
  .greeting .bookBox .r {
    padding-left: 2rem;
  }
}
.greeting .bookBox h4 {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #50A000;
  font-size: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 751px) {
  .greeting .bookBox h4 {
    font-size: 2rem;
  }
}
.greeting .bookBox h4:before {
  position: absolute;
  content: "";
  bottom: -0.5em;
  left: 1rem;
  width: 12rem;
  height: 1px;
  background: #50A000;
}
.greeting .bookBox h5 {
  font-weight: 700;
  font-size: 1.5rem;
}
.greeting .fbLink {
  display: block;
  text-align: center;
  width: 26rem;
  margin: 0 auto;
  margin-top: 7rem;
}

/* ---------------------------------------------------------
会社概要
--------------------------------------------------------- */
.company dl {
  margin: 0;
  padding: 0;
}
.company dl > div {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 1.5em 0;
}
@media screen and (max-width: 751px) {
  .company dl > div {
    display: block;
  }
}
.company dt {
  flex: 0 0 10em;
  font-weight: bold;
}
@media screen and (max-width: 751px) {
  .company dt {
    margin-bottom: 1rem;
  }
}
.company dd {
  flex: 1;
  margin: 0;
  line-height: 1.5;
}

/* スマホ対応 */
/* ---------------------------------------------------------
リフォームメニュー
--------------------------------------------------------- */
.reformCard {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 751px) {
  .reformCard {
    display: block;
  }
}
.reformCard:not(:last-child) {
  padding-bottom: 8rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 8rem;
}
.reformCard > img {
  width: 45rem;
  margin-right: 5rem;
}
@media screen and (max-width: 751px) {
  .reformCard > img {
    margin-right: 0;
    margin-bottom: 2rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    max-width: none;
  }
}
.reformCard.re {
  flex-direction: row-reverse;
}
.reformCard.re > img {
  margin-right: 0;
  margin-left: 5rem;
}
@media screen and (max-width: 751px) {
  .reformCard.re > img {
    margin-left: calc(50% - 50vw);
  }
}
.reformCard .txtBox {
  flex: 1;
}
.reformCard .ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #50A000;
  font-size: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid;
}
@media print, screen and (min-width: 750px) {
  .reformCard .ttl {
    margin-top: -1rem;
  }
}
@media screen and (max-width: 751px) {
  .reformCard .ttl {
    font-size: 2.6rem;
  }
}
.reformCard span {
  display: inline-block;
  background: #FFFFE5;
  font-size: 0.9em;
  font-weight: 400;
  padding: 0.2em 1em;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.reformCard .txt {
  margin-top: 1em;
  margin-bottom: 1em;
}

.reformCard__btn {
  display: block;
  font-size: 1.5rem;
  text-align: right;
  color: #fff;
  width: 13em;
  padding: 1rem 1rem 1rem 0;
  border-radius: 3em;
  background: #50A000;
}
.reformCard__btn img {
  width: 2rem;
  margin-left: 0.6rem;
  margin-top: -0.5rem;
}

/* ---------------------------------------------------------
流れ
--------------------------------------------------------- */
.flowCard {
  display: flex;
  flex-direction: row-reverse;
}
.flowCard:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (max-width: 751px) {
  .flowCard {
    display: block;
  }
}
.flowCard img {
  width: 45%;
  aspect-ratio: 1.4/1;
}
@media screen and (max-width: 751px) {
  .flowCard img {
    border-radius: 2rem 2rem 0 0;
    width: 100%;
  }
}
.flowCard .txtBox {
  background-color: #FFFFE5;
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 751px) {
  .flowCard .txtBox {
    border-radius: 0 0 2rem 2rem;
  }
}
.flowCard .nam span {
  font-size: 2em;
  margin-left: 0.25em;
}
.flowCard .ttl {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #50A000;
  font-size: 3.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 751px) {
  .flowCard .ttl {
    font-size: 2.6rem;
  }
}

/* ---------------------------------------------------------
内容別のご予算の目安
--------------------------------------------------------- */
.pricw-bnr {
  display: flex;
  background: #FFFFE5;
  align-items: center;
  margin-top: 9rem;
}
@media screen and (max-width: 751px) {
  .pricw-bnr {
    display: block;
  }
}
.pricw-bnr > img {
  width: 40rem;
  aspect-ratio: 1.8/1;
}
.pricw-bnr .txtBox {
  padding: 3rem;
  flex: 1;
}
@media screen and (max-width: 751px) {
  .pricw-bnr .txtBox {
    padding: 2rem;
  }
}
.pricw-bnr .reformCard__btn {
  width: 19em;
  margin: 0 0 0 auto;
  margin-top: 3rem;
}
@media screen and (max-width: 751px) {
  .pricw-bnr .reformCard__btn {
    width: 14em;
    margin: 3rem auto 0 auto;
  }
}

.priceCard:not(:last-child) {
  margin-bottom: 13rem;
}
.priceCard h4 {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #50A000;
  font-size: 3.6rem;
  border-bottom: 1px solid;
  margin-bottom: 0.3em;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 751px) {
  .priceCard h4 {
    font-size: 3.1rem;
  }
}
.priceCard h4 + p {
  font-weight: 500;
  color: #50A000;
  font-size: 2.4rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 751px) {
  .priceCard h4 + p {
    font-size: 2rem;
  }
}
.priceCard .r {
  margin-left: 4rem;
}
.priceCard .r img {
  width: 60rem;
  height: 40.6rem;
  object-fit: cover;
}
@media screen and (max-width: 751px) {
  .priceCard .r {
    display: none;
  }
}
.priceCard dl div {
  display: flex;
  border: 1px solid #50a000;
  margin-bottom: -1px;
  line-height: 3;
}
.priceCard dl div:last-child dt {
  border-bottom: none;
}
.priceCard dt {
  background: #50a000;
  font-size: 1.5rem;
  border: 1px solid #50a000;
  border-bottom: 1px solid #fff;
  color: #fff;
  letter-spacing: 0.4rem;
  width: 10em;
  text-align: center;
}
.priceCard dd {
  flex: 1;
  margin-bottom: -1px;
  padding-left: 1em;
}
.priceCard p.txt {
  background: #FBF7EF;
  border-radius: 1rem;
  margin-top: 5rem;
  padding: 4rem 2rem 2rem 2rem;
}
.priceCard .point {
  position: relative;
}
.priceCard .point .poiP {
  position: absolute;
  top: -1.7rem;
  left: 2rem;
  font-size: 2rem;
  font-weight: 700;
}
.priceCard .point .poiP img {
  width: 2.5rem;
  margin-right: 1rem;
  margin-top: -1rem;
}

/* ---------------------------------------------------------
補助金について
--------------------------------------------------------- */
.subsidy .h3Wrap ul {
  list-style: none;
  padding-left: 0;
  margin-top: 2em;
  margin-bottom: 3rem;
  padding-left: 2rem;
}
.subsidy .h3Wrap ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
.subsidy .h3Wrap ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #50A000;
  border-radius: 50%;
}

.faq-item {
  margin-bottom: 5rem;
}
@media screen and (max-width: 751px) {
  .faq-item {
    font-size: 1.5rem;
  }
}
.faq-item dt {
  background-color: #50A000;
  color: #fff;
  padding: 2rem;
  padding-left: 8rem;
  font-weight: 700;
  position: relative;
  border-radius: 1rem 1rem 0 0;
}
.faq-item dt::before {
  content: "Q. ";
  font-weight: 700;
  position: absolute;
  top: 0.75em;
  left: 3rem;
  font-size: 2rem;
}
.faq-item dd {
  background-color: #FFFFE6;
  padding: 3rem;
  margin: 0;
  padding-left: 8rem;
  position: relative;
  border-radius: 0 0 1rem 1rem;
}
.faq-item dd::before {
  content: "A. ";
  color: #50A000;
  font-weight: 700;
  position: absolute;
  top: 2em;
  left: 3rem;
  font-size: 2rem;
}

.recruitDL dl {
  display: flex;
}
@media screen and (max-width: 751px) {
  .recruitDL dl {
    display: block;
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width: 750px) {
  .recruitDL dl:first-child dd {
    margin-top: 0;
  }
}
.recruitDL dl:last-child dt {
  border-bottom: none;
}
.recruitDL dt {
  background: #50A000;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding: 3rem 0;
  text-align: center;
  width: 24rem;
  flex-shrink: 0;
  font-weight: 600;
}
@media screen and (max-width: 751px) {
  .recruitDL dt {
    width: 100%;
    padding: 1rem 0;
  }
}
.recruitDL dd {
  flex: 1;
  border: 2px solid #50A000;
  padding: 3rem 2rem;
  margin: 0;
  margin-top: -2px;
}
@media screen and (max-width: 751px) {
  .recruitDL dd {
    padding: 2rem 1rem;
  }
}
.recruitDL dd .green:first-child {
  margin-top: 0;
}
.recruitDL p {
  margin: 0;
}
.recruitDL p.green {
  font-size: 1.8rem;
  font-weight: 700;
  color: #50A000;
  margin-bottom: 1em;
  margin-top: 3em;
}
.recruitDL ul {
  list-style: disc;
  padding-left: 1.5em;
}
.recruitDL ul li {
  margin-bottom: 1.5rem;
}

.to-form-btn {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2.22;
  padding: 2rem;
  padding-left: 5rem;
  margin: 0 auto;
  margin-top: 5rem;
  width: 22em;
  border-radius: 4em;
  background: #EDE302;
}
@media screen and (max-width: 751px) {
  .to-form-btn {
    font-size: 1.5rem;
    padding: 1rem;
    padding-left: 3rem;
    width: 100%;
  }
}
.to-form-btn img {
  display: inline-block;
  width: 8rem;
}
@media screen and (max-width: 751px) {
  .to-form-btn img {
    width: 5rem;
  }
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/* スライダー全体の調整 */
/* ========================================
リフォームのスワイパー
======================================== */
.reform-swiper {
  padding-top: 1.4rem; /* ポコンで上が切れないように */
  padding-bottom: 2.8rem;
  overflow: hidden;
}

/* カード */
.reform-swiper .swiper-slide {
  width: 30rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.28s ease;
  position: relative;
  will-change: transform;
}

/* “ポコン”やや強め */
.reform-swiper .swiper-slide:hover {
  transform: translateY(-1.2rem);
}

.reform-swiper .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.reform-swiper .box p {
  position: absolute;
  top: calc(50% - 2rem);
  right: 0;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 2;
}

.reform-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.24); /* 幕の濃さ（お好みで） */
  opacity: 1; /* ほんの少しフェードも入れる */
  transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  z-index: 1;
}

.reform-swiper .swiper-slide:hover::before {
  background: rgba(0, 0, 0, 0); /* 幕の濃さ（お好みで） */
}

.reform-swiper a img:hover,
.reform-swiper button img:hover {
  filter: none;
}

.reform-swiper a:hover {
  opacity: 1;
}

/* スクロールバー */
.reform-swiper .swiper-scrollbar {
  position: static;
  height: 0.8rem;
  background: #E6E6E6;
  border-radius: 999px;
  opacity: 1;
}

.reform-swiper .swiper-scrollbar-drag {
  height: 100%;
  background: #999999;
  border-radius: 999px;
  transition: height 0.2s ease;
  will-change: height;
}

.reform-swiper .swiper-scrollbar:hover .swiper-scrollbar-drag {
  height: 0.4rem;
}

/* ⛔ ワープの原因になり得るため “保険”の左マージンは撤去（空白はJSの spaceBetween に任せる） */
/* .swiper-slide + .swiper-slide { margin-left:2.4rem }  ← 削除 */
@media (min-width: 768px) {
  .reform-swiper .swiper-slide {
    width: 34rem;
  }
}
@media (min-width: 1024px) {
  .reform-swiper .swiper-slide {
    width: 36rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reform-swiper .swiper-slide,
  .reform-swiper .swiper-scrollbar-drag,
  .reform-swiper .swiper-slide::before {
    transition: none !important;
  }
}
/* =========================================
お客様の声
============================================ */
.swiper-koe {
  position: relative;
  width: calc(100% - 55rem);
  margin: auto 0 auto auto;
  overflow: hidden;
}
@media screen and (max-width: 751px) {
  .swiper-koe {
    width: 100%;
  }
}
.swiper-koe .swiper-slide {
  width: 42rem;
  padding-top: 1rem;
}
@media screen and (max-width: 751px) {
  .swiper-koe .swiper-slide {
    width: 100%;
  }
}

/* ボタン類*/
.swiper-koe__swiper-buttonWrap {
  display: block;
  position: relative;
  width: 17rem;
  margin: 0 auto;
  margin-top: 5rem;
}
@media screen and (max-width: 751px) {
  .swiper-koe__swiper-buttonWrap {
    width: 12rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
  }
}
.swiper-koe__swiper-buttonWrap .swiper-button-prev:after,
.swiper-koe__swiper-buttonWrap .swiper-rtl .swiper-button-next:after,
.swiper-koe__swiper-buttonWrap .swiper-button-next:after,
.swiper-koe__swiper-buttonWrap .swiper-rtl .swiper-button-prev:after {
  content: "";
}
.swiper-koe__swiper-buttonWrap .swiper-button-next,
.swiper-koe__swiper-buttonWrap .swiper-button-prev {
  width: 6rem;
}
@media screen and (max-width: 751px) {
  .swiper-koe__swiper-buttonWrap .swiper-button-next,
  .swiper-koe__swiper-buttonWrap .swiper-button-prev {
    width: 4rem;
  }
}
.swiper-koe__swiper-buttonWrap .swiper-button-prev {
  transform: rotate(180deg);
}

/* 各カード */
.swiper-koe .card {
  position: relative;
  background-color: #FFFFE5;
  border-radius: 2rem;
  padding: 4rem;
  margin: 3rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  height: 19em;
}
@media screen and (max-width: 751px) {
  .swiper-koe .card {
    margin: 3rem;
    margin-bottom: 8rem;
    padding: 0 2rem;
    padding-top: 3rem;
    font-size: 1.8rem;
    padding-bottom: 6rem;
  }
}
.swiper-koe .card::after {
  position: absolute;
  content: "";
  top: -4rem;
  right: 2rem;
  width: 9rem;
  height: 12rem;
  background: url(../../images/top/koe01.png) no-repeat center/contain;
}
@media screen and (max-width: 751px) {
  .swiper-koe .card::after {
    top: auto;
    bottom: -8rem;
    right: auto;
    left: 0;
  }
}
.swiper-koe .card.c1::after {
  background: url(../../images/top/koe01.png) no-repeat center/contain;
}
.swiper-koe .card.c2::after {
  background: url(../../images/top/koe02.png) no-repeat center/contain;
}
.swiper-koe .card.c3::after {
  background: url(../../images/top/koe03.png) no-repeat center/contain;
}
.swiper-koe .card.c4::after {
  background: url(../../images/top/koe04.png) no-repeat center/contain;
}
.swiper-koe .card.c5::after {
  background: url(../../images/top/koe05.png) no-repeat center/contain;
}
.swiper-koe .card.c6::after {
  background: url(../../images/top/koe06.png) no-repeat center/contain;
}
.swiper-koe .card .card__ttl {
  position: relative;
  margin-bottom: 2em;
}
.swiper-koe .card .card__ttl:before {
  position: absolute;
  content: "";
  bottom: -1em;
  left: 0;
  width: 20px;
  height: 1px;
  background: #50A000;
}

.sec_koe .swiper-pagination {
  bottom: 3rem;
}
.sec_koe .swiper-pagination-bullet {
  background: #fff;
  border: 2px solid #50A000;
  width: 12px;
  height: 12px;
  opacity: 1;
}
.sec_koe .swiper-pagination-bullet-active {
  background-color: #50A000;
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
.post-type-archive-news article.news-item {
  margin-bottom: 5rem;
}
@media print, screen and (min-width: 750px) {
  .post-type-archive-news article.news-item {
    padding: 0 4rem;
  }
}

ul.work-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 10rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 751px) {
  ul.work-cat-list {
    margin-top: 4rem;
  }
}
ul.work-cat-list li {
  width: calc(20% - 1rem);
  background-color: #50A000;
}
@media screen and (max-width: 751px) {
  ul.work-cat-list li {
    width: calc(50% - 0.5rem);
  }
}
ul.work-cat-list li a {
  position: relative;
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  color: #fff;
  padding: 0.7em 1.3em;
  padding-right: 2em;
}
@media screen and (max-width: 751px) {
  ul.work-cat-list li a {
    font-size: 1.1rem;
  }
}
ul.work-cat-list li a:before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1.35rem;
  width: 1.5rem;
  height: 1.5rem;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateX(-50%) rotate(-45deg);
}
@media screen and (max-width: 751px) {
  ul.work-cat-list li a:before {
    top: 0.8rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}

.bgWorks {
  background-color: #FBF7EF;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-bottom: 10rem;
}

ul.work-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
}
@media screen and (max-width: 751px) {
  ul.work-list {
    gap: 8rem 3rem;
  }
}

li.work-item {
  flex: 0 0 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
}
@media screen and (max-width: 751px) {
  li.work-item {
    flex: auto;
    max-width: 100%;
  }
}

.work-thumb {
  position: relative;
  margin-bottom: 3rem;
}
.work-thumb img {
  aspect-ratio: 1.5/1;
  object-fit: cover;
}

.work-category {
  position: absolute;
  left: 0;
  bottom: -2rem;
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  padding: 0.5em 3em;
  background: #50A000;
  z-index: 1;
}

h2.work-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 2rem;
}

span.work-more {
  text-align: end;
  display: block;
}
span.work-more img {
  width: 3rem;
  margin-top: -0.5rem;
  margin-left: 1rem;
}

.nav-links {
  color: #50a000;
  text-align: center;
  margin: 5rem 0 5rem 0;
  font-size: 2rem;
}
.nav-links .current {
  background-color: #50A000;
  color: #fff;
  padding: 0.8rem 1.9rem 1rem 1.9rem;
  border-radius: 2em;
}
.nav-links > * {
  margin: 0 0.5rem;
}

.single .bgWorks {
  margin-top: 10rem;
}
.single h1.post-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 3rem;
}
.single time.post-date {
  font-family: "Helvetica Neue", Helvetica, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  margin-bottom: 4rem;
  display: block;
}
.single .post-thumbnail {
  margin-bottom: 5rem;
}
.single .post-footer {
  margin-top: 8rem;
}
.single .post-footer .post-navigation {
  display: flex;
  width: 30rem;
  justify-content: space-between;
  font-size: 2rem;
  margin: 0 auto;
  color: #87b828;
}
.single .post-footer .post-back {
  margin: 4rem 0;
}

.flyer .work-thumb img {
  aspect-ratio: 1/1.43;
  object-fit: cover;
}
.flyer .work-date {
  text-align: center;
  display: block;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.flyer span.work-more {
  text-align: center;
}
.flyer .work-thumb {
  padding: 0 5rem;
}
@media screen and (max-width: 751px) {
  .flyer li.work-item {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 5rem;
  }
}

/* ---------------------------------------------------------
フォーム
--------------------------------------------------------- */
.inner .contact-p {
  margin: 6em 0;
  line-height: 2;
}
@media screen and (max-width: 751px) {
  .inner .contact-p {
    margin: 3em 0 0;
  }
}
@media print, screen and (min-width: 750px) {
  .inner .contact-p {
    text-align: center;
  }
}
.inner .contact-p span {
  color: #F7931E;
}

.wpcf7-form dl {
  margin-bottom: 3rem;
}
.wpcf7-form dl dt {
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 751px) {
  .wpcf7-form dl dt {
    margin-top: 2rem;
  }
}
.wpcf7-form dl dt span {
  background: #F7931E;
  color: white;
  font-size: 0.9em;
  padding: 0.4rem 0.9rem 0.5rem;
  border-radius: 2em;
  margin-left: 0.5em;
  font-weight: 400;
}
.wpcf7-form dl dd {
  margin: 0;
  padding: 0;
}
.wpcf7-form .form-input,
.wpcf7-form .form-textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  margin-bottom: 1em;
  background-color: #EEF3DC;
}
.wpcf7-form .form-input::placeholder,
.wpcf7-form .form-textarea::placeholder {
  color: #D3D3D3;
}
.wpcf7-form .form-input:focus,
.wpcf7-form .form-textarea:focus {
  outline: none;
  border: 2px solid #50A000;
  background-color: #fff;
}
.wpcf7-form .form-textarea {
  min-height: 12rem;
  resize: vertical;
}
.wpcf7-form .name-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.wpcf7-form .name-row p {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
}
.wpcf7-form .name-row span.sei {
  font-weight: 600;
  min-width: 3rem;
  width: 3em;
  text-align: center;
  margin-top: 1.2rem;
  flex: none;
}
.wpcf7-form .name-row .form-input {
  flex: 1;
  margin-bottom: 0;
}
.wpcf7-form .postal-mark {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-right: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: 1rem;
}
.wpcf7-form .postalWrap p {
  display: flex;
}
.wpcf7-form .form-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}
.wpcf7-form .form-checkbox p {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.wpcf7-form .form-checkbox label {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  /* background: #f8f9fa; */
  /* border: 1px solid #dee2e6; */
  /* border-radius: 0.5rem; */
  cursor: pointer;
  transition: all 0.3s ease;
  /* font-size: 1.4rem; */
  min-width: fit-content;
}
.wpcf7-form .form-checkbox label:hover {
  background: #e9ecef;
}
.wpcf7-form .form-checkbox input[type=checkbox] {
  margin-right: 0.8rem;
  transform: scale(1.2);
}
.wpcf7-form .form-checkbox input[type=checkbox]:checked + label {
  background: #50A000;
  color: white;
  border-color: #50A000;
}
.wpcf7-form .submit-btn {
  background: #50A000;
  color: white;
  padding: 1.5rem 4rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  width: 32rem;
  margin: 4rem auto;
  display: block;
}
.wpcf7-form .submit-btn:hover {
  background: #3d7a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(80, 160, 0, 0.3);
}
.wpcf7-form .submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  display: block;
}
.wpcf7-form .wpcf7-response-output {
  padding: 1.5rem;
  border-radius: 0.6rem;
  margin: 2rem 0;
  font-weight: 500;
}
.wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.wpcf7-form .wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.wpcf7-form .pp {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}
.wpcf7-form .pp span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required.form-checkbox {
  display: block;
}
.wpcf7-form .pp span.hissu {
  background: #F7931E;
  color: white;
  font-size: 0.9em;
  padding: 0.4rem 0.9rem 0.5rem;
  border-radius: 2em;
  margin-left: 0.5em;
  font-weight: 400;
}
@media screen and (max-width: 751px) {
  .wpcf7-form {
    padding: 1.5rem;
  }
  .wpcf7-form .name-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .wpcf7-form .name-row p {
    gap: 0.5rem;
  }
  .wpcf7-form .name-row span {
    min-width: auto;
    text-align: left;
    flex: 1;
  }
  .wpcf7-form .form-checkbox {
    flex-direction: column;
    gap: 0.5rem;
  }
  .wpcf7-form .form-checkbox p {
    flex-direction: column;
    gap: 0.5rem;
  }
  .wpcf7-form .form-checkbox label {
    width: 100%;
    justify-content: flex-start;
  }
  .wpcf7-form .submit-btn {
    width: 100%;
    padding: 1.8rem 2rem;
  }
  .wpcf7-form .postal-mark {
    display: block;
    margin-bottom: 0.5rem;
  }
}
.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/* ---------------------------------------------------------
pc小さい
--------------------------------------------------------- */
@media screen and (max-width: 1380px) and (min-width: 751px) {
  .site-footer .ftGrid .ft-item-1 .accsecWrap {
    display: block;
  }
  .site-footer .ftGrid .ft-item-1 .accsecWrap .r {
    margin-left: 0;
    text-align: center;
  }
  .site-footer .ftGrid .ft-item-1 picture {
    width: 23rem;
    display: block;
    margin: 0 auto;
    margin-bottom: 6rem;
  }
}
/* ---------------------------------------------------------
タブレット
--------------------------------------------------------- */
@media screen and (max-width: 1500px) and (min-width: 751px) {
  .sec_koe .swiper-koe {
    width: calc(100% - 48rem);
  }
}
@media screen and (max-width: 1100px) and (min-width: 751px) {
  .sec_chirasi .ttlbox {
    width: 35%;
  }
  .sec_showroom .row {
    align-items: center;
  }
  .sec_showroom .l {
    width: 47%;
  }
  .sec_showroom .r:before {
    width: 0;
    height: 0;
  }
  .sec_koe .swiper-koe {
    width: calc(100% - 42rem);
  }
  .lead .r {
    width: 45%;
  }
  .lead .l:before {
    left: 3rem;
  }
  .sec_reform .refoBox .txt {
    height: auto;
  }
  header.site-header .menu-item {
    display: none;
  }
  .inner__header .ttlWrap .entry-title {
    font-size: 3rem;
  }
  .inner__header .ttlWrap .en {
    font-size: 1.4rem;
  }
  .inner_h3_Style {
    font-size: 2.5rem;
  }
  .greeting .bookBox h4 {
    font-size: 2rem;
  }
  .reformCard > img {
    width: 30%;
  }
  .flowCard .ttl {
    font-size: 2.6rem;
  }
}/*# sourceMappingURL=style.css.map */