@charset "UTF-8";
:root {
  --base: "Noto Sans JP", sans-serif;
  --sub: "Montserrat", sans-serif;
  --mc: #8fac23;
  --sc: #6f7070;
  --fc: #333;
  --bc: #f4f7e8;
  --mq: 4.8;
}

/*---変数---*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul,
li {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #5b4b4b;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
  border: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.--en {
  font-family: var(--sub);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

section {
  position: relative;
}

input[type=submit],
input[type=button] {
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

main {
  display: block;
}

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

sup {
  position: relative;
  top: -1ex;
  vertical-align: baseline;
}

button {
  outline: none;
}

iframe {
  display: block;
}

/*import*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  font-family: var(--base);
  font-size: 1rem;
  color: var(--fc);
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: var(--base);
  }
}
body.fix {
  position: fixed;
  width: 100%;
}

body.open {
  overflow: hidden;
}

html,
body {
  position: relative;
  width: 100%;
}

*:focus {
  outline: none;
}

p,
li,
dl,
tr,
th,
td,
div {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.75;
}
@media screen and (max-width: 479px) {
  p,
  li,
  dl,
  tr,
  th,
  td,
  div {
    font-size: 1.4rem;
  }
}

span {
  font-weight: inherit;
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  line-height: 1.35;
}

a,
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

.pc-tb {
  display: block;
}
@media screen and (max-width: 479px) {
  .pc-tb {
    display: none !important;
  }
}

.tb-sp {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb-sp {
    display: block !important;
  }
}

.tb {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
}
@media screen and (max-width: 479px) {
  .tb {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 479px) {
  .sp {
    display: block !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.6s forwards;
}

@keyframes fadeDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(80px);
  }
}
.fade-down {
  animation: fadeDown 0.6s forwards;
}

@keyframes fade {
  0% {
    opacity: 0;
    visibility: hidden;
    filter: blur(1rem);
  }
  100% {
    opacity: 1;
    visibility: visible;
    filter: blur(0);
  }
}
.js-fade {
  opacity: 0;
  filter: blur(1rem);
}
.js-fade.is-view {
  animation: fade 1.4s ease forwards;
}

@keyframes scale {
  0% {
    opacity: 0;
    scale: 1.1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.js-scale {
  opacity: 0;
  scale: 1.1;
  display: inline-block;
}
.js-scale.is-view {
  animation: scale 1.5s ease forwards;
}

*:has(> .js-scale) {
  overflow: hidden;
}

.cmn-wrap {
  position: relative;
  margin: 0 auto;
  padding-inline: 32px;
  width: 100%;
}
.cmn-wrap.--full {
  padding-bottom: 0;
  padding-inline: 0;
}

.cmn-ttl {
  position: relative;
  text-align: center;
}
.cmn-ttl__main {
  font-weight: 500;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .cmn-ttl__main {
    font-size: 2.4rem;
  }
}
.cmn-ttl__sub span {
  position: relative;
  color: var(--mc);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .cmn-ttl__sub span {
    font-size: 1.6rem;
  }
}
.cmn-ttl__sub span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  transform: translateY(-50%);
  width: 38px;
  height: 1px;
  border: 1px dashed var(--mc);
}
.cmn-ttl__sub span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  width: 38px;
  height: 1px;
  border: 1px dashed var(--mc);
}

.cmn-btn__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-inline: auto;
  max-width: 416px;
  height: 70px;
  border-radius: 40px;
  background: var(--mc);
  border: 1px solid var(--mc);
  transition: 0.4s;
}
@media screen and (max-width: 479px) {
  .cmn-btn__link {
    height: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .cmn-btn__link:hover {
    background: #fff;
  }
  .cmn-btn__link:hover .cmn-btn__st {
    color: var(--mc);
  }
  .cmn-btn__link:hover .cmn-btn__arrow svg path {
    stroke: #8fac23;
  }
}
.cmn-btn__st {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  transition: 0.4s;
}
@media screen and (max-width: 479px) {
  .cmn-btn__st {
    font-size: 1.6rem;
  }
}
.cmn-btn__arrow {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
  aspect-ratio: 14/11;
}
@media screen and (max-width: 479px) {
  .cmn-btn__arrow {
    right: 16px;
  }
}
.cmn-btn__arrow path {
  transition: 0.4s;
}
.cmn-btn.--hd .cmn-btn__link {
  height: 50px;
}
@media screen and (max-width: 1279px) {
  .cmn-btn.--hd .cmn-btn__st {
    font-size: 1.2rem;
  }
}
.cmn-btn.--hd .cmn-btn__arrow {
  right: 20px;
}
.cmn-btn.--cta .cmn-btn__st {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 479px) {
  .cmn-btn.--cta .cmn-btn__st {
    font-size: 1.6rem;
  }
}

.wrap {
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .wrap {
    padding-inline: 0;
  }
}
.wrap::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(./img/bg-body.jpg) no-repeat center center/cover;
}

.content {
  position: relative;
  margin-top: 40px;
  margin-inline: auto;
  width: 480px;
  background: #fff;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  overflow: clip;
}
@media screen and (max-width: 1024px) {
  .content {
    margin: 64px auto 0;
    width: 100%;
    max-width: 480px;
  box-shadow: initial;
  }
}
.content.open {
  background: transparent;
  box-shadow: none;
}

@media screen and (max-width: 1024px) {
  #top,
  #sec-concept,
  #sec-showroom,
  #sec-fq,
  #sec-contact,
  #sec-works,
  #sec-company {
    scroll-margin-top: 55px;
  }
}

.hd {
  display: flex;
  width: 100%;
}
.hd-cnt {
  position: fixed;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  width: 100%;
  height: 100vh;
}
@media (min-width: 1025px) {
  .hd-cnt {
    gap: 480px;
  }
}
@media screen and (min-width: 1025px) {
  .hd-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    padding-top: 37px;
    padding-inline: 10px;
    width: calc((100% - 480px) / 2);
    text-align: center;
  }
}
.hd-name {
  max-width: 240px;
  width: 85%;
  height: auto;
  aspect-ratio: 224/44;
  z-index: 1001;
}
@media screen and (max-width: 479px) {
  .hd-name {
    margin-bottom: 5%;
  }
}
.hd-name__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hd-menu {
  width: calc((100% - 480px) / 2);
}
@media screen and (min-width: 1025px) {
  .hd-nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
    padding-block: 50px;
    padding-inline: min(1.5609756098vw, 5.5rem);
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .hd-nav {
    padding-block: 50px;
    padding-inline: 55px;
  }
}
.hd-nav__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hd-nav__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  padding-left: 24px;
  border-left: 1px solid #d6d6d6;
}
.hd-nav__item {
  width: 100%;
  max-width: 240px;
}
.hd-nav__link {
  position: relative;
  display: block;
  padding-block: 4.5px;
  width: 100%;
  transition: 0.4s;
}
.hd-nav__link-main {
  position: relative;
  display: inline-block;
  padding: 0;
  font-size: 1.6rem;
  transition: 0.4s;
}
@media screen and (max-width: 1070px) {
  .hd-nav__link-main {
    font-size: 1.5rem;
  }
}
.hd-nav__link-sub {
  position: relative;
  display: inline-block;
  padding: 0;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  transition: 0.4s;
}
@media screen and (max-width: 1070px) {
  .hd-nav__link-sub {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .hd-nav__link.active span {
    font-weight: 600;
  }
}
@media screen and (min-width: 1025px) {
  .hd-nav__link:hover {
    font-weight: 600;
  }
}
.hd-cta {
  max-width: 344px;
  width: 100%;
}
.hd-cta .main-cta {
  border: 1px solid var(--mc);
  border-radius: 6px;
  overflow: hidden;
}
.hd-cta .main-cta .cta-box {
  padding-block: 24px;
  background: #fff;
}
.hd-cta .main-cta .cta-box__anchor {
  margin-top: 5px;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .hd {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 55px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    line-height: 1;
    transition: all 0.4s;
    z-index: 1000;
  }
  .hd-cnt {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 26px;
    width: 100%;
    height: 100%;
  }
  .hd-name {
    position: relative;
    margin-bottom: 0;
    width: 112px;
    z-index: 1001;
  }
  .hd-cta {
    display: none;
  }
  .hd-menu {
    width: 100%;
  }
  .hd-nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 24px;
    width: 100%;
    height: 100svh;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  .hd-nav__wrap {
    height: 100svh;
  }
  .hd-nav__list {
    flex-direction: column;
    border: none;
  }
  .hd-nav__item {
    padding: 0;
    width: 100%;
  }
  .hd-nav__link {
    padding-block: 12px;
    width: 240px;
    text-align: center;
  }
  .hd-nav__link-main {
    font-size: 1.6rem;
  }
  .hd-nav__link-sub {
    font-size: 1.2rem;
  }
  .hd-toggle {
    position: relative;
    margin-inline: auto 0;
    width: 24px;
    height: 100%;
    cursor: pointer;
    z-index: 1002;
  }
  .hd-toggle div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 24px;
    height: 18px;
  }
  .hd-toggle span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    background: #333;
    color: #333;
    transition: 0.35s ease-in-out;
  }
  .hd-toggle__line {
    height: 2px;
  }
  .hd-toggle__line:nth-child(1) {
    top: 0;
  }
  .hd-toggle__line:nth-child(2) {
    top: 9px;
  }
  .hd-toggle__line:nth-child(3) {
    top: 18px;
    left: auto;
    right: 0;
    width: 50%;
  }
}
.hd.open {
  background: transparent;
}
.hd.open .hd-nav {
  opacity: 1;
  transition: 0.4s;
  visibility: visible;
}
.hd.open .hd-toggle span:nth-child(1) {
  top: 7px;
  transform: rotate(330deg);
}
.hd.open .hd-toggle span:nth-child(2) {
  left: 50%;
  width: 0;
}
.hd.open .hd-toggle span:nth-child(3) {
  top: 7px;
  transform: rotate(-330deg);
  width: 100%;
}

.ft {
  position: relative;
  padding-block: 22px;
}
@media screen and (max-width: 1024px) {
  .ft {
    padding-bottom: 100px;
        background: #fff;
  }
}
.ft__pagetop {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 999;
}
.ft__pagetop-link {
  position: absolute;
  bottom: 0;
  right: 32px;
  display: block;
  width: 50px;
  height: auto;
  aspect-ratio: 1;
  opacity: 0;
  transform: translateY(70px);
}
@media screen and (max-width: 479px) {
  .ft__pagetop-link {
    right: 24px;
  }
}
.ft__logo-link {
  display: block;
  margin-inline: auto;
  width: 225px;
}
@media screen and (max-width: 479px) {
  .ft__logo-link {
    width: 180px;
  }
}
.ft__logo-img {
  width: 100%;
  height: auto;
}
.ft__copy {
  margin-top: 15px;
}
.ft__copy-st {
  font-size: 1.2rem;
  text-align: center;
}

.banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  z-index: 1001;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .banner {
    pointer-events: none;
  }
}
.banner__cnt {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2.1333333333vw;
}
.banner__link {
  display: block;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .banner__link {
    display: none;
  }
}
.banner__link.--phone {
  width: calc(216/7.5*1%);
}
.banner__link.--contact {
  width: calc(518/7.5*1%);
}

.main-cta {
  border-block: 1px solid var(--mc);
}
.main-cta__link {
  position: relative;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .main-cta__link:hover .cmn-btn__link {
    background: #fff;
  }
  .main-cta__link:hover .cmn-btn__st {
    color: var(--mc);
  }
  .main-cta__link:hover .cmn-btn__arrow svg path {
    stroke: #8fac23;
  }
}
.main-cta .cta-box {
  padding-block: 30px;
  background: #fff;
}
.main-cta .cta-box__anchor {
  margin-top: 9px;
  margin-inline: auto;
  max-width: 416px;
  width: 90%;
}
.main-cta .cta-box__note {
  margin-block: 18px 24px;
  margin-inline: 32px;
  padding: 12px 16px;
  height: 150px;
  background: #f4f7e8;
  border-radius: 6px;
  overflow-y: auto;
}
@media screen and (max-width: 479px) {
  .main-cta .cta-box__note {
    margin-inline: 24px;
  }
}
.main-cta .cta-box__note-ttl {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
.main-cta .cta-box__note-st {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed #d6d6d6;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.8571428571;
}

.sec-fv__cnt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 40px;
  background: url(./img/bg-fv.jpg) no-repeat center center/cover;
  z-index: 1;
}
.sec-fv__ph {
  height: 100%;
}
.sec-fv__block {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.sec-fv__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 128px;
  height: auto;
  aspect-ratio: 128/74;
  background: url(./img/bg-fv-catch.png) no-repeat center center/contain;
}
@media screen and (max-width: 479px) {
  .sec-fv__ttl {
    width: 100px;
  }
}
.sec-fv__ttl-main {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.1666666667;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 479px) {
  .sec-fv__ttl-main {
    font-size: 1.8rem;
  }
}
.sec-fv__ttl-main small {
  font-size: 1.6rem;
}
@media screen and (max-width: 479px) {
  .sec-fv__ttl-main small {
    font-size: 1.4rem;
  }
}
.sec-fv__catch {
  margin-top: 25px;
  font-weight: 500;
  font-size: 3.2rem;
  letter-spacing: 0.3em;
  line-height: 1.7;
  writing-mode: vertical-rl;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-fv__catch {
    font-size: 2.4rem;
  }
}
.sec-fv__catch .--line {
  position: relative;
}
.sec-fv__catch .--line::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 95%;
  border-radius: 2px;
  background: #eef3de;
  z-index: -1;
}
.sec-fv__info {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 312px;
  height: auto;
  aspect-ratio: 312/58;
  background: url(./img/bg-fv-info.png) no-repeat center center/contain;
}
@media screen and (max-width: 479px) {
  .sec-fv__info {
    width: 260px;
  }
}
.sec-fv__info-st {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 479px) {
  .sec-fv__info-st {
    width: 300px;
    font-size: 1.6rem;
  }
}

.sec-concept {
  padding-block: 56px;
  background: var(--bc);
}
.sec-concept__ph {
  margin-top: 40px;
  border-radius: 6px;
  overflow: hidden;
}
.sec-concept__catch {
  margin-top: 40px;
}
.sec-concept__catch-st {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 38px;
  text-align: left;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 479px) {
  .sec-concept__catch-st {
    font-size: 1.8rem;
  }
}
.sec-concept__txt {
  position: relative;
  margin-top: 25px;
  width: 100%;
  z-index: 1;
}
.sec-concept__txt-st {
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1.875;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
}
.sec-concept__gallery {
  position: relative;
  margin-top: 54px;
}
.sec-concept__gallery::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 93.2%;
  height: 120%;
  border-radius: 6px 0px 0px 6px;
  background: #dde6bc;
}
.sec-concept .swiper-wrapper {
  transition-timing-function: linear;
}
.sec-concept .swiper-slide img {
  height: auto;
  width: 100%;
}

.sec-showroom {
  position: relative;
  padding-block: 58px;
}
.sec-showroom__cnt {
  margin-block: 10px 16px;
}
.sec-showroom__txt {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2.1111111111;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .sec-showroom__txt {
    font-size: 1.6rem;
  }
}
.sec-showroom .showroom-tab {
  margin-top: 32px;
}
.sec-showroom .showroom-tab__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
}
.sec-showroom .showroom-tab__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 16px) / 2);
  height: 84px;
}
.sec-showroom .showroom-tab__btn {
  position: relative;
  padding: 0;
  height: auto;
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #d7d7d6;
  color: #707070;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
}
.sec-showroom .showroom-tab__btn.active {
  background: var(--mc);
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .sec-showroom .showroom-tab__btn:hover {
    background: var(--mc);
    font-weight: 500;
    color: #fff;
  }
}
.sec-showroom .showroom-tab__btn-st {
  font-family: var(--base);
  font-weight: normal;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.0833333333;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-tab__btn-st {
    font-size: 1.8rem;
  }
}
.sec-showroom .showroom-tab__btn-st small {
  font-size: 1.8rem;
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-tab__btn-st small {
    font-size: 1.6rem;
  }
}
.sec-showroom .showroom-block {
  padding-block: 25px 34px;
}
.sec-showroom .showroom-block__gallery {
  position: relative;
}
.sec-showroom .showroom-block__data {
  margin-top: 24px;
  padding-block: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  background: #f7f7f7;
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-block__data {
    flex-direction: column;
  }
}
.sec-showroom .showroom-block__data-list {
  padding-inline: 24px;
  width: 50%;
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-block__data-list {
    width: 100%;
  }
}
.sec-showroom .showroom-block__data-list:first-child {
  border-right: 1px solid #dddcdd;
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-block__data-list:first-child {
    border: none;
  }
}
.sec-showroom .showroom-block__data-item {
  letter-spacing: 0.05em;
  line-height: 2.375;
}
.sec-showroom .showroom-block__data-item span {
  margin-right: 8px;
  color: var(--sc);
}
.sec-showroom .showroom-slide {
  position: relative;
  overflow: visible;
}
.sec-showroom .showroom-slide__thumbs {
  margin-top: 16px;
  padding: 0;
  width: 100%;
  overflow-x: auto;
}
.sec-showroom .showroom-slide__thumbs .swiper-slide {
  aspect-ratio: 101/60;
  text-align: center;
  overflow: hidden;
}
.sec-showroom .showroom-slide__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-showroom .showroom-slide__main {
  /*height: 250px;*/
}
.sec-showroom .showroom-slide__main-item {
  border-radius: 6px;
  overflow: hidden;
}
.sec-showroom .showroom-slide__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-showroom .swiper-slide-thumb-active {
  opacity: 1;
}
.sec-showroom .swiper-button-next, .sec-showroom .swiper-button-prev {
  position: absolute;
/*   top: 50%; */
  top: 42%;
  right: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: url(./img/icon-arrow_slide.svg) no-repeat center center/cover;
  transition: 0.4s;
  z-index: 1;
}
.sec-showroom .swiper-button-next::after, .sec-showroom .swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: ) {
  .sec-showroom .swiper-button-next:hover, .sec-showroom .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.sec-showroom .swiper-button-prev {
  left: -15px;
  right: auto;
  transform: scale(-1, 1);
}
.sec-showroom .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #d6d6d7;
  opacity: 1;
}
.sec-showroom .swiper-pagination-bullet-active {
  background: #333;
}
.sec-showroom .swiper-pagination-bullets {
  bottom: 0;
}
.sec-showroom .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.sec-showroom .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.sec-showroom .showroom-floor {
  margin-top: 37px;
}
.sec-showroom .showroom-floor__ttl {
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5833333333;
}
.sec-showroom .showroom-floor__ttl::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 11px;
  height: 15px;
  background: url(./img/icon-ttl-showroom.svg) no-repeat center center/cover;
}
.sec-showroom .showroom-floor__ph {
  position: relative;
  margin-top: 15px;
	border: 1px solid #ccc;
}
.sec-showroom .showroom-floor__ph::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: url(./img/icon-zoom.png) no-repeat center center/contain;
  pointer-events: none;
}
.sec-showroom .showroom-tour {
  margin-top: 30px;
}
.sec-showroom .showroom-tour__ttl {
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5833333333;
}
.sec-showroom .showroom-tour__ttl::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 11px;
  height: 15px;
  background: url(./img/icon-ttl-showroom.svg) no-repeat center center/cover;
}
.sec-showroom .showroom-tour__video {
  margin-top: 12px;
  width: 100%;
  aspect-ratio: 416/232;
}
.sec-showroom .showroom-tour__video iframe {
  width: 100%;
  height: 100%;
}
.sec-showroom .showroom-point {
  margin-top: 32px;
}
.sec-showroom .showroom-point__ttl {
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5833333333;
}
.sec-showroom .showroom-point__ttl::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 11px;
  height: 15px;
  background: url(./img/icon-ttl-showroom.svg) no-repeat center center/cover;
}
.sec-showroom .showroom-point .showroom-point-slide {
  position: relative;
  margin-top: 15px;
  margin-inline: -32px;
}
.sec-showroom .showroom-point .showroom-point-slide__item {
  padding-bottom: 36px;
  padding-inline: 32px;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-point .showroom-point-slide__item {
    padding-inline: 16px;
  }
}
.sec-showroom .showroom-point .swiper-button-next {
  right: 18px;
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-point .swiper-button-next {
    right: 5px;
  }
}
.sec-showroom .showroom-point .swiper-button-prev {
  left: 18px;
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-point .swiper-button-prev {
    left: 5px;
  }
}
.sec-showroom .showroom-point .showroom-point-box {
  padding: 24px;
  border-radius: 6px;
  background: #f7f7f7;
  height: 100%;
}
.sec-showroom .showroom-point .showroom-point-box__ph {
  border-radius: 6px;
  overflow: hidden;
}
.sec-showroom .showroom-point .showroom-point-box__name {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.sec-showroom .showroom-point .showroom-point-box__name-st {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.sec-showroom .showroom-point .showroom-point-box__name-num {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  color: #adaaac;
  writing-mode: vertical-rl;
}
.sec-showroom .showroom-point .showroom-point-box__txt {
  margin-top: 10px;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
.sec-showroom .showroom-map {
  margin-top: 15px;
}
.sec-showroom .showroom-map__ttl {
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5833333333;
}
.sec-showroom .showroom-map__ttl::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 11px;
  height: 15px;
  background: url(./img/icon-ttl-showroom.svg) no-repeat center center/cover;
}
.sec-showroom .showroom-map__cnt {
  margin-top: 15px;
  width: 100%;
  height: auto;
  aspect-ratio: 416/246;
}
.sec-showroom .showroom-map__cnt iframe {
  width: 100%;
  height: 100%;
}
.sec-showroom .showroom-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
  padding-block: 12px 20px;
  padding-inline: 24px;
  background: var(--bc);
  border-radius: 6px;
}
.sec-showroom .showroom-info__name {
  margin-inline: auto;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
  color: var(--mc);
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-info__name {
    font-size: 1.6rem;
  }
}
.sec-showroom .showroom-info__txt {
  margin-top: 10px;
  padding-top: 12px;
  width: 100%;
  border-top: 1px solid #dde6bc;
  letter-spacing: 0.05em;
  line-height: 2;
}
.sec-showroom .showroom-info__txt span {
  display: inline-block;
  width: 65px;
  color: var(--sc);
}
@media screen and (max-width: 479px) {
  .sec-showroom .showroom-info__txt span {
    display: block;
  }
}
.sec-showroom .showroom-anchor {
  margin-top: 24px;
  cursor: pointer;
}

.sec-fq {
  position: relative;
  padding-block: 12px 40px;
  background: var(--bc);
}
.sec-fq::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  border-radius: 50%;
  background: var(--bc);
}
.sec-fq__cnt {
  margin-top: 32px;
}
.sec-fq .fq-list__item:not(:first-child) {
  margin-top: 16px;
}
.sec-fq .fq-box {
  position: relative;
  padding-block: 24px 30px;
  padding-inline: 24px;
  border-radius: 6px;
  background: #fff;
}
.sec-fq .fq-box__num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 30px;
  border-radius: 6px 0px;
  background: var(--mc);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
}
.sec-fq .fq-box__ph {
  border-radius: 6px;
  overflow: hidden;
}
.sec-fq .fq-box__ttl {
  margin-top: 16px;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 479px) {
  .sec-fq .fq-box__ttl {
    font-size: 1.6rem;
  }
}
.sec-fq .fq-box__ans {
  margin-top: 8px;
}
.sec-fq .fq-box__ans-ttl {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sec-fq .fq-box__ans-ttl span {
  width: 20px;
  background: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--mc);
}
.sec-fq .fq-box__ans-ttl::after {
  content: "";
  display: inline-block;
  flex: 1;
  width: 100%;
  height: 1px;
  background: var(--fc);
}
.sec-fq .fq-box__ans-txt {
  margin-top: 8px;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
.sec-fq .fq-box__ans-txt .--color {
  font-weight: 500;
  color: var(--mc);
}

.sec-contact {
  padding-block: 56px 55px;
}

.sec-works {
  position: relative;
  padding-block: 58px 30px;
  background: url(./img/bg-works.jpg) no-repeat center center/cover;
}
.sec-works__cnt {
  margin-top: 40px;
}
.sec-works .works-list {
  width: 100%;
}
.sec-works .works-list__item {
  position: relative;
}
.sec-works .works-list__item:not(:first-child) {
  margin-top: 15px;
}
.sec-works .works-box {
  position: relative;
  padding-block: 0 min(24vw / var(--mq), 2.4rem);
  z-index: 1;
}
.sec-works .works-box__data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-block: 25px;
  width: 100%;
  height: 72px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #d7d6d6;
}
.sec-works .works-box__data-item {
  padding-inline: 24px;
  /*width: 50%;*/
  letter-spacing: 0.05em;
  line-height: 2.375;
}
@media screen and (max-width: 479px) {
  .sec-works .works-box__data-item {
    padding-inline: 16px;
  }
}
.sec-works .works-box__data-item span {
  letter-spacing: 0.05em;
  color: var(--sc);
}
.sec-works .works-box__data-item:nth-child(1) {
  /*border-right: 1px solid #dddcdd;*/
}
.sec-works .works-slide {
  position: relative;
  overflow: visible;
}
.sec-works .works-slide__thumbs {
  margin-top: 16px;
  padding: 0;
  width: 100%;
  overflow-x: auto;
}
.sec-works .works-slide__thumbs .swiper-slide {
  position: relative;
  aspect-ratio: 101/60;
  text-align: center;
  overflow: hidden;
}
.sec-works .works-slide__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-works .works-slide__thumbs .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .sec-works .works-slide__thumbs .swiper-slide:hover::after {
    opacity: 1;
  }
}
.sec-works .works-slide__main {
}
.sec-works .works-slide__main-item {
  border-radius: 6px;
  overflow: hidden;
}
.sec-works .works-slide__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-works .swiper-button-prev, .sec-works .swiper-button-next {
  top: 120px;
  width: 30px;
  aspect-ratio: 1;
}
.sec-works .swiper-button-prev::after, .sec-works .swiper-button-next::after {
  content: "";
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  background: url(./img/icon-arrow_slide.svg) no-repeat center center/cover;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  transition: 0.4s;
}
@media screen and (max-width: 479px) {
  .sec-works .swiper-button-prev::after, .sec-works .swiper-button-next::after {
    width: 25px;
  }
}
.sec-works .swiper-button-prev.swiper-button-disabled, .sec-works .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}
.sec-works .swiper-button-prev {
  left: -15px;
}
.sec-works .swiper-button-prev::after {
  transform: scale(-1, 1);
}
.sec-works .swiper-button-next {
  right: -15px;
}

.sec-company {
  padding-top: 56px;
  background: linear-gradient(0deg, rgba(250, 250, 248, 0) 1.11%, #fafaf8 100%);
}
.sec-company__cnt {
  margin-top: 10px;
}
.sec-company__txt {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2.1111111111;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .sec-company__txt {
    font-size: 1.6rem;
  }
}
.sec-company .company-slide {
  margin-top: 35px;
  position: relative;
}
.sec-company .company-slide__item {
  padding-bottom: 40px;
  padding-inline: 32px;
  height: auto;
}
@media screen and (max-width: 479px) {
  .sec-company .company-slide__item {
    padding-inline: 16px;
  }
}
.sec-company .swiper-button-next, .sec-company .swiper-button-prev {
  position: absolute;
  top: 50%;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: url(./img/icon-arrow_slide.svg) no-repeat center center/cover;
  transition: 0.4s;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-company .swiper-button-next, .sec-company .swiper-button-prev {
    right: 5px;
  }
}
.sec-company .swiper-button-next::after, .sec-company .swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: ) {
  .sec-company .swiper-button-next:hover, .sec-company .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.sec-company .swiper-button-prev {
  left: 18px;
  right: auto;
  transform: scale(-1, 1);
}
@media screen and (max-width: 479px) {
  .sec-company .swiper-button-prev {
    left: 5px;
  }
}
.sec-company .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #e8edd1;
  opacity: 1;
}
.sec-company .swiper-pagination-bullet-active {
  background: var(--mc);
}
.sec-company .swiper-pagination-bullets {
  bottom: 0;
}
.sec-company .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.sec-company .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.sec-company .company-box {
  padding-block: 24px 26px;
  padding-inline: 24px;
  height: 100%;
  border-radius: 6px;
  background: var(--bc);
}
.sec-company .company-box__ph {
  border-radius: 6px;
  overflow: hidden;
}
.sec-company .company-box__name {
  margin-top: 22px;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 479px) {
  .sec-company .company-box__name {
    font-size: 1.6rem;
  }
}
.sec-company .company-box__txt {
  margin-top: 12px;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
.sec-company .company-overview {
  margin-top: 20px;
  padding-block: 40px 30px;
  padding-inline: 24px;
  background: url(./img/bg-company.jpg) no-repeat center center/cover;
}
.sec-company .company-overview__item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.sec-company .company-overview__name {
  padding-block: 9px;
  padding-inline: 8px;
  width: 130px;
  border-right: 1px solid #d7d6d5;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: var(--sc);
}
@media screen and (max-width: 479px) {
  .sec-company .company-overview__name {
    padding-inline: 0 8px;
    width: 95px;
    letter-spacing: 0;
  }
}
.sec-company .company-overview__value {
  flex: 1;
  padding-block: 9px;
  padding-inline: 25px 8px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  line-height: 30px;
}
@media screen and (max-width: 479px) {
  .sec-company .company-overview__value {
    padding-inline: 8px;
  }
}
.sec-company .company-overview__value span {
  position: relative;
  display: inline-block;
  padding-left: 10px;
}
.sec-company .company-overview__value span::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 4px;
  height: auto;
  aspect-ratio: 1;
  background: var(--mc);
  border-radius: 50%;
}


/* フォーム部分 */
.wpcf7-list-item {
  margin: 0 0 1em 0;
}

form {
  overflow: hidden;
}

form ul {
  display: block;
  margin-bottom: 32px;
  margin-top: 40px;
}

.item-notice {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 13px;
  line-height: 1.5;
  font-size: 14px !important;
}

.item-notice strong {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

.item-notice p {
  font-size: 14px;
}

form ul li:last-of-type {
  width: 100%;
}

form ul .item-name {
  color: #2c2928;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

form ul .item-name span.item-req {
  color: #fff;
  background: #8FAC23;
  text-align: center;
  padding: 6px 22px;
	border-radius: 100px;
  font-size: 14px;
}

form ul .item-name span.item-noreq {
  color: #fff;
  background: #b4b4b4;
  text-align: center;
  padding: 6px 22px;
	border-radius: 100px;
  font-size: 14px;
}

form ul li:last-of-type .item-form {
  width: 100%;
  display: block;
}

form ul li:last-of-type .item-form span {
  width: 100%;
  display: block;
}

form ul li:last-of-type input {
  width: 100%;
  display: block;
}

form ul li:last-of-type textarea {
  width: 100%;
  display: block;
  resize: vertical;
  height: 240px;
}

form ul li:last-of-type input,
form ul li:last-of-type textarea,
form ul li:last-of-type select {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  background: #f4f7e8;;
}

@media (max-width: 1024px) {
  form ul .item-name {
    font-size: 14px;
  }
}
.section-form__check1 {
  text-align: center;
  font-size: 14px;
}

.contact__form ul.form-tab button.active {
  color: #186a68;
  border-top: 1px solid #186a68;
  border-bottom: 1px solid #186a68;
}

.submit_btn {
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
  border-radius: 100px;
  border: none;
  margin: auto;
  /* border: 1px solid #216724; */
  position: relative;
}

.section-form__check {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}

.section-form__check span {
  background: none;
}

form [type=submit] {
  background: #8FAC23;
  height: 56px;
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  padding: 16px;
  margin: auto;
  margin-top: 0px;
  position: relative;
  font-size: 18px;
  opacity: 1;
  transition: 0.3s;
  color: #fff;
}

@media (min-width: 1025px) {
  form [type=submit]:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
}
.submit_btn:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 6px;
  top: 50%;
  transform: translateY(-48%);
  right: 24px;
  size: cover !important;
  position: center center !important;
}

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

li.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
  display: flex;
  justify-content: space-between;
}

li.item-form.itemform_add_search span {
  width: calc(100% - 140px);
}

li.item-form.itemform_add_search button {
  width: 120px;
  background: #216724;
  border: none;
  color: #fff;
}

.form-caption {
  margin-bottom: 120px;
}

.form-caption p {
  font-size: 16px;
  text-align: center;
}

.section-form-privacy__cnt {
  height: 180px;
  overflow-y: scroll;
  padding: 18px;
  margin-bottom: 32px;
}

.section-form-privacy__cnt h3 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  margin-top: 32px;
}

.section-form-privacy__cnt h3:first-of-type {
  margin-top: 0;
}

.section-form-privacy__cnt p {
  font-size: 14px;
}

.formError {
  z-index: 20 !important;
}

.xdsoft_datetimepicker {
  z-index: 21 !important;
}

@media screen and (max-width: 640px) {
  form ul {
    /* margin-bottom:32px; */
    margin-top: 5%;
    margin-bottom: 3%;
    flex-wrap: wrap;
  }
  form ul li:first-of-type,
  form ul li:last-of-type {
    width: 100%;
  }
  form ul li:first-of-type {
    margin-bottom: 16px;
  }
  form ul li:last-of-type input,
  form ul li:last-of-type textarea {
    padding: 16px;
    font-size: 14px;
  }
  form [type=submit] {
    font-size: 18px;
  }
  .form-caption {
    margin-bottom: 32px;
  }
  .form-caption p {
    font-size: 14px;
    text-align: left;
  }
  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }
  .item-notice,
  li.item-form.itemform_add_search span {
    width: 100%;
  }
  .section-form__check {
    margin-bottom: 5%;
  }
}
.wpcf7-form-control {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  width: 100%;
}

.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-radio label input {
  width: 24px;
  height: 24px;
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: calc(100% - 36px);
}

.wpcf7-not-valid-tip {
  /*   display: none !important; */
}

.contact__form .privacy-policy-scroll {
  background: #fff;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.contact__form .privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
  color: #2c2928;
}

.contact__form .privacy-policy-scroll p a {
  color: #5839ff;
}

.form__notice {
  font-size: 14px;
  margin-top: 16px;
}

.privacy-policy-scroll {
  background: #fff;
  padding: 20px 16px;
  max-height: 200px;
  height: 100%;
  margin-top: 24px;
  overflow: hidden scroll;
}

.privacy-policy-scroll::-webkit-scrollbar {
  width: 8px;
}

.privacy-policy-scroll::-webkit-scrollbar-thumb {
  background: #a7a7a7;
  border-radius: 10px;
}

.privacy-policy-scroll::-webkit-scrollbar-track {
  background: #fff;
}

.privacy-policy-scroll .simplebar-track {
  width: 0.3rem;
}

.privacy-policy-scroll .simplebar-scrollbar {
  width: 0.3rem;
}

.privacy-policy-scroll .simplebar-scrollbar::before {
  width: 0.3rem;
  color: #fff;
  opacity: 1;
}

.privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
}

@media (max-width: 640px) {
  .form__notice {
    font-size: 12px;
    margin-top: 2%;
  }
}
.item-form.itemform_add_search {
  display: flex !important;
  gap: 16px;
}

.item-form.itemform_add_search .wpcf7-form-control-wrap {
  width: calc(100% - 96px);
}

.item-form.itemform_add_search button.wpcf7c-elm-step1 {
  width: 80px;
  background: #8FAC23;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

span.wpcf7-form-control.wpcf7-radio {
  background: unset;
}

.privacy-box {
  background: #fff;
  border: solid 1px #d8d8d8;
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px 26px;
  box-sizing: border-box;
}

.privacy-box h3 {
  color: #111111;
  font-size: 16px;
  line-height: 1.71;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2%;
}

.privacy-box p {
  color: #111111;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
}

.privacy-box p:not(:last-of-type) {
  margin-bottom: 4%;
}

@media (max-width: 1024px) {
  .privacy-box {
    padding: 2% 2% 3%;
  }
}
@media (max-width: 640px) {
  .privacy-box {
    padding: 4% 4% 5%;
  }
}
.section-form__check1,
.section-form__check2 {
  padding: 24px;
  text-align: center;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  background: none;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1;
}

span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wpcf7-form-control-wrap[data-name=radio-plan] span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control.wpcf7-radio label input[type=radio] {
  width: 18px;
  height: 18px;
  border: 1px solid #111111;
  /* 枠線の色 */
  border-radius: 50%;
  /* 丸くする */
  color: #ffffff;
  /* 背景色 */
  -moz-appearance: none;
  appearance: none;
  /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none;
  /* Safari対応 */
  outline: none;
  /* フォーカス時の枠線を消す */
  cursor: pointer;
  /* ポインタを変更 */
  background: #fff !important;
}

.wpcf7-form-control.wpcf7-radio label input[type=radio]:checked {
  color: #000000 !important;
  /* チェック時の背景色 */
  box-shadow: inset 0 0 0 4px #ffffff;
  /* 中央に白い丸を作る */
  background: var(--fc) !important;
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: 100%;
}

@media (max-width: 640px) {
  .wpcf7-form-control.wpcf7-radio label input[type=radio] {
    padding: 8px;
  }
}
/* チェック時のスタイル */
.wpcf7-list-item {
  margin: 0;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.wpcf7-list-item input[type=radio] {
  width: auto !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.section-form__check1 .wpcf7-list-item,
.section-form__check2 .wpcf7-list-item,
.section-form__check3 .wpcf7-list-item {
  justify-content: center;
}

/* form radio */
/* ラジオボタンが選択された状態 */
input[type=radio]:checked + label {
  background-color: #e0e0e0;
  /* 背景色（選択されたときの色） */
  color: #8FAC23;
  /* 文字色 */
  border: 2px solid #c6a160;
  /* 枠線の色 */
  font-weight: bold;
  /* 太字 */
}

input[type=radio] + label {
  padding: 10px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

input[type=radio]:not(:checked) + label {
  background-color: #fff;
  color: #666;
  border: 1px solid #ddd;
}


.form-date-notice02 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}


.contact-form .form-spot {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.contact-form .form-spot__item {
  flex: 1;
  cursor: pointer;
}
.contact-form .form-spot__item img {
  opacity: 0.6;
  transition: 0.4s;
}
.contact-form .form-spot__item.--active img {
  opacity: 1;
}

.mfp-figure:after {
	background: #fff;
}