/*----------------------------------------------------

base.css

----------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  color: var(--clr-txt);
  line-height: 1;
  font-family: var(--font-jp);
  letter-spacing: var(--letter-space-s);
  font-size: var(--font-size-base);
}
.preload {
  transition: 0 !important;
}
#wrap {
  display: block;
  overflow: hidden;
}
article {}
#lower article {}
section {}
.inner {
  margin: 15vw 5vw;
  line-height: var(--lh-base-l)
}
.sp {}
.pc {
  display: none;
}
@media (min-width: 600px) {
  article {}
  #lower article {}
  section {}
  .inner {
    margin: 10vw 8vw;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media (min-width:1025px) {
  body {
    font-size: 1.6rem;
  }
  article {}
  #lower article {}
  section {}
  .inner {
    margin: 120px 8vw 120px 15vw;
    max-width: 1240px
  }
  .contents .cont-wrap {
    margin: 0 3vw;
  }
}
/* Header
----------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: .2s;
}
/*#lower header {
  border-bottom: 1px solid #eee;
  background: rgba(0, 0, 0, 0)
}*/
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 2.5vw;
}
header a {}
header h1 {
  background-image: url("../user_data/logo.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 40px auto;
}
header h1 a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding-left: 50px;
  font-family: var(--font-md);
  font-weight: var(--bold);
  font-size: 1.8rem;
}
/*#lower header h1 a {
  background-image: url("logo.svg");
}

#top header h1 a, #lower .page-wrap header h1 a {
  background-image: url("logo.svg");
}
.gh__open header h1 {
  z-index: 102;
}
.gh__open header h1 a {
  background-image: url("logo_d.svg") !important;
}*/
@media (min-width: 600px) {
  .site-header {
    height: 80px;
  }
  header h1 {
    background-image: url("../user_data/logo.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 50px auto;
  }
  header h1 a {
    height: 50px;
    line-height: 50px;
    padding-left: 70px;
    font-size: 2.2rem;
  }
  /*  .site-header.hide {
    top: -86px;
  }*/
  /*  .gh__open header h1 {
    top: 24px;
  }*/
}
@media (min-width: 1025px) {
  .site-header {
    height: 100px;
  }
  /*  .site-header.hide {
    top: -106px;
  }*/
  header h1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 140px;
    display: flex;
    justify-content: center;
    transition: .3s;
    background-position: center top 30px;
    background-size: 60px auto;
  }
  header h1 a {
    height: auto;
    padding: 110px 0 0;
    line-height: 1;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-size: 2.8rem;
    letter-spacing: var(--letter-space-l);
  }
  /*  #top header h1 a, #lower .page-wrap header h1 a {
    background-image: url("logo_w.svg") !important;
  }
  .gh__open header h1 a {
    background-image: url("logo.svg") !important;
  }*/
}
/* ハンバーガーボタン
----------------------------------------------------*/
.gnav-humburger {
  position: fixed;
  top: 10px;
  right: 5vw;
  z-index: 120;
  cursor: pointer;
  pointer-events: auto;
  transition: all .2s ease-in-out;
  display: flex;
  justify-content: space-between
}
.gh__open .gnav-humburger {
  position: fixed;
}
.gnav-humburger-wrapper {
  width: 28px;
  height: 28px;
  padding-top: 10px;
}
.gnav-humburger span.gnav-humburger-bar {
  display: block;
  width: 100%;
  margin: 0 auto 8px;
  height: 1px;
  background: var(--clr-key-dk);
  transition: all .2s ease-in-out;
}
.gnav-humburger span.gnav-humburger-bar:last-child {
  margin-bottom: 0;
}
.gh__open .gnav-humburger span.gnav-humburger-bar.top {
  transform: translateY(9px) rotate(-45deg);
}
.gh__open .gnav-humburger span.gnav-humburger-bar.middle {
  opacity: 0
}
.gh__open .gnav-humburger span.gnav-humburger-bar.bottom {
  transform: translateY(-9px) rotate(45deg);
}
/*.gh__open .gnav-humburger span.gnav-humburger-bar {
  background: var(--clr-bk) !important;
}*/
@media (min-width: 600px) {
  .gnav-humburger {
    top: 20px;
  }
  .gnav-humburger-wrapper {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1025px) {
  .gnav-humburger {
    display: none;
  }
}
/* グローバルメニュー
----------------------------------------------------*/
.gnav {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 101;
  top: 0;
  right: 0;
  overflow: scroll;
  opacity: 0;
  visibility: hidden; /*フェードインの場合*/
  /*transform: translateZ(0) translateX(100%);スライドの場合*/
}
.gh__open .gnav {
  background: #fff;
  opacity: 1;
  visibility: visible; /*フェードインの場合*/
  /* transform: translateZ(0) translateX(0);スライドの場合*/
}
.gh__open .gnav, .gh__close .gnav {
  transition: all 200ms ease-out;
}
.gnav-inner {
  padding: 20vw 6vw 15vw;
  font-family: var(--font-md);
  /*font-weight: var(--bold);*/
}
.gnav-item {}
/*.gnav-item:first-of-type {
  border-top: 1px dashed #ccc;
}*/
.gnav-item > a {
  margin: 10px 0 0;
  padding: 1.2em 0;
  display: block;
  text-align: center;
  background: url("../user_data/bg-sp_menu.png");
  background-size: cover;
  border-radius: var(--radius-l)
}
.gnav-sub {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1em;
}
.gnav-sub-item {
  width: 50%;
}
.gnav-sub-item > a {
  padding: 5px;
  margin: 10px 0 0;
  display: block;
}
body.noscroll {
  overflow: hidden;
}
/*subMenu*/
.gnav-item.js_openParent {
  position: relative;
  width: 100%;
}
.gnav-smenuOpne {
  position: absolute;
  top: 12px;
  right: 10px;
  z-index: 20;
  transition: all 400ms ease-out;
  transform-origin: center;
}
.js_openParent.js_fire > .gnav-smenuOpne {
  transform: rotate(180deg);
}
.js_openParent.js_fire > .gnav-smenuOpne > .gnav-smenuOpne-box:after {
  opacity: 0;
}
/*開閉ボタン*/
.js_openSwitch {
  cursor: pointer;
}
.gnav-smenuOpne-box {
  width: 24px;
  height: 24px;
  transform-origin: center;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23333" d="M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M13,7H11V11H7V13H11V17H13V13H17V11H13V7Z" /></svg>') no-repeat center center;
}
.gnav-smenuOpne-box::before {
  font-size: 14px;
  line-height: 1
}
/*subMenu link*/
.gnav-child {}
.gnav-child-item {
  border-bottom: 1px dashed #ddd;
  margin: 0 10px 0 10%;
}
.gnav-child-item:last-child {
  border-bottom: 0;
}
.gnav-child-item a {
  display: block;
  padding: 1.5em 0 1.5em 3.5rem;
  position: relative;
  text-align: left;
  line-height: var(--lh-base-s);
}
.gnav-child-item a::after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  left: .9rem;
  transform: translatey(-50%);
  font-size: 1rem;
}
.gnav-child-item a::before {
  position: absolute;
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  left: 0;
  transform: translatey(-50%);
  color: #eee;
  font-size: 2.6rem;
}
.js_openTarget {
  display: none;
}
@media (min-width: 600px) {
  .gnav {
    width: 100%;
  }
  .gnav-inner {
    padding: 15vw 15vw 20vw;
  }
}
@media (min-width: 1025px) {
  .gnav {
    position: fixed;
    top: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    width: auto;
    height: auto;
  }
  .gh__open .gnav {
    background: none;
  }
  .gnav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px 0 110px;
    height: 100px;
    transition: .3s
  }
  .gnav-item {}
  .gnav-item a {
    font-size: 1.5rem;
  }
  .gnav-item a {
    margin: 0;
    padding: 1em 1vw;
    background: none;
    border-radius: 0;
  }
  .gnav-item a:hover {
    opacity: 1;
  }
  .gnav-home {
    display: none;
  }
  .transform .gnav-item > a {
	text-shadow:
	#fff 0 0 5px,
    #fff 0 0 8px,
    #fff 0 0 15px,
	#fff 0 0 5px,
    #fff 0 0 8px,
    #fff 0 0 15px,
	#fff 0 0 5px,
    #fff 0 0 8px,
    #fff 0 0 15px;
  }
  /*menu hover*/
  .gnav-item > a {
    position: relative;
  }
  .gnav-item > a::after {
    position: absolute;
    bottom: 7px;
    left: 10px;
    content: '';
    width: calc(100% - 20px);
    height: 1px;
    background: var(--clr-key);
    transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
  }
  .gnav-item > a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
  .gnav-sub {
    position: fixed;
    justify-content: flex-start;
    bottom: 0;
    left: 3vw;
    height: 28vh;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    padding-bottom: 15px;
  }
  .gnav-sub .gnav-sub-item {
    width: auto;
  }
  .gnav-sub .gnav-sub-item a {
    padding: .2em .5em;
    position: relative;
    font-size: 1.3rem;
  }
  .gnav-sub .gnav-sub-item a:after {
    content: '/';
    display: inline-block;
    transform: rotate(125deg);
    padding: 0 0 .2em .3em
  }
  .gnav-sub-item a::before {
    position: absolute;
    top: 0;
    left: 5px;
    content: '';
    height: calc(100% - 10px);
    width: 1px;
    background: var(--clr-key);
    transform: scale(1, 0); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
  }
  .gnav-sub-item a:hover::before {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
  .gnav-sub .gnav-sub-item:last-child a:after {
    opacity: 0;
  }
  /*subMenu*/
  .gnav-item.js_openParent {
    width: auto;
  }
  .gnav-item.js_openParent a::before {
    display: none;
  }
  .gnav-smenuOpne {
    display: none;
  }
  .gnav-item .gnav-child {
    top: 70px;
    padding: 10px;
    position: fixed;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .5s all;
    width: 240px;
  }
  .gnav-item:hover .gnav-child {
    opacity: 1;
    visibility: visible;
    transition: .3s all;
  }
  .gnav-child-box {
    border-radius: var(--radius-m);
    filter: drop-shadow(0 1px 5px #aaa);
    background: rgba(255, 255, 255, 1);
    height: 0;
    overflow: hidden;
    transition: .5s all;
  }
  .gnav-item:hover .gnav-child-box {
    height: auto;
    overflow: inherit;
    padding: 10px 0
  }
  .gnav-child-box::after {
    background-color: #fff;
    content: "";
    height: 10px;
    position: absolute;
    width: 10px;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    left: 20%;
    transform: translateX(-50%);
    top: -10px;
  }
  .gnav-child-item {
    display: block;
    border-bottom: 0;
    transition: .3s;
    margin: 10px;
  }
  .gnav-child-item:hover {
    background: var(--clr-key-20);
    border-radius: var(--radius-m);
  }
  .gnav-child-item a {
    padding: 2px 10px 2px 2em;
    position: relative;
    color: var(--clr-txt);
  }
  body.noscroll {
    overflow: inherit;
  }
}
/* scroll header
----------------------------------------------------*/
/*header.headerClrScroll {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #eee;
}
header.headerClrScroll h1 a {
  background-image: url("logo.svg");
}
header.headerClrScroll .gnav-humburger span.gnav-humburger-bar {
  background: var(--clr-bk);
}
@media (min-width: 600px) {}
@media (min-width: 1025px) {
  header.headerClrScroll .gnav-item a {
    color: var(--clr-bk);
  }
  header.headerClrScroll .gnav-item > a::after {
    background: var(--clr-txt);
  }
}*/
/*
* 下にスクロールで消えて上にスクロールで固定表示
*/
/*.site-header.hide {
  top: -66px;
}
@media (min-width: 600px) {
  .site-header.hide {
    top: -86px;
  }
}
@media (min-width: 1025px) {
  .site-header.hide {
    top: -106px;
  }
  .hide .gnav-item .gnav-child {
    top: -20px;
  }
}*/
/*
* 固定メニュー
*/
/*@media (min-width: 1025px) {
  .site-header.transform {
    height: 70px;
  }
  .site-header.transform h1 {
    width: 240px;
  }
  .transform .gnav-inner {
    height: 70px;
  }
  .transform .gnav-item .gnav-child {
    top: 55px;
  }
}*/
/* Container
----------------------------------------------------*/
@media (min-width: 600px) {}
@media (min-width: 1025px) {}
/* Footer
----------------------------------------------------*/
footer {
  line-height: var(--lh-base-s);
  font-size: var(--font-size-sm);
}
footer .footer {
  padding: 1px 10vw 80px
}
footer .foot-ttl {
  font-size: var(--font-size-base);
  font-weight: var(--bold);
  color: var(--clr-key-dk);
  font-family: var(--font-md);
  text-align: center;
  line-height: var(--lh-base-s);
  background: url("../user_data/logo.svg") no-repeat center bottom;
  background-size: 50px;
  padding-bottom: 60px;
}
footer .foot-ttl strong {
  font-size: var(--font-size-md);
  display: block;
}
footer .foot-wrap {
  margin: 2em 0;
}
footer .foot-link ul {
  display: flex;
  flex-wrap: wrap;
}
footer .foot-link li {
  padding: .3em 0;
  width: 50%;
}
footer .foot-link .menu1 li:first-child {
  width: 100%;
}
footer .copylight {
  line-height: var(--lh-base-2l);
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 600px) {
  footer .copylight {
    padding-bottom: 0;
  }
  footer .foot-link .menu1 li, footer .foot-link .menu1 li:first-child {
    width: calc(100% / 3);
  }
  footer .foot-link .menu2 {
    margin-top: 30px;
    justify-content: center;
  }
  footer .foot-link .menu2 li {
    width: auto;
    padding: 0 1em;
  }
}
@media (min-width: 1025px) {
  footer .footer {
    padding: 120px 150px 50px
  }
  footer .foot-ttl {
    background-size: 70px;
    padding-bottom: 80px;
  }
  footer .foot-link .menu1 {
    margin-left: 5vw
  }
  footer .foot-link li {
    padding: .7em 0;
  }
  footer .foot-wrap {
    margin: 4em auto;
    width: 900px;
  }
  footer .foot-link .menu2 {
    margin-top: 60px;
  }
  footer .foot-link li a {
    position: relative;
    color: var(--clr-txt);
  }
  footer .foot-link li a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--clr-txt);
    transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
  }
  footer .foot-link li a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
}
/* global
----------------------------------------------------*/
/*.nav-global {}
.nav-global .global-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-global .global-item a {
  padding: .2em .5em;
}*/
/* sns
----------------------------------------------------*/
/*.nav-sns {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.nav-sns .sns-item {
  margin: 0 .5em;
}
.nav-sns a {
  display: block;
}
.nav-sns i {
  font-size: 2.5rem;
  color: var(--clr-txt);
}
@media (min-width: 600px) {}
@media (min-width: 1025px) {
  .nav-sns {
    margin-top: 0;
  }
  .nav-sns .sns-item {
    margin: 0 .5em 0 0;
  }
  .nav-sns i {
    color: var(--clr-txt);
  }
}*/
/* sec_btn
----------------------------------------------------*/
.link-btn {}
.link-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  width: fit-content;
  margin: auto;
  border-radius: 50vh;
  padding: 3px 35px 5px 40px;
  color: #fff !important;
  border: 1px solid var(--clr-key);
  background-color: var(--clr-key);
  text-decoration: none !important;
}
.link-btn a:after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  top: 55%;
  left: 10px;
  transform: translatey(-50%);
  transition: .3s;
}
.link-btn.btn-w {}
.link-btn.btn-w a {
  color: var(--clr-txt);
  border: 1px solid #fff;
  background-color: #fff;
}
@media (min-width: 600px) {
  .link-btn a {
    max-width: 400px;
  }
}
@media (min-width:1025px) {
  .link-btn a:hover {}
  .link-btn a:hover::after {
    left: 15px;
  }
  .link-btn.link-btn-edge a {
    margin-left: 0
  }
  .link-btn.btn-w a:hover {
    color: #fff;
    border: 1px solid var(--clr-bk);
    background-color: var(--clr-bk);
  }
}
/* 
----------------------------------------------------*/
.cont-ttl {
  margin-bottom: 1em;
  font-family: var(--font-md);
  color: var(--clr-key-dk);
  line-height: var(--lh-base-s);
}
.cont-ttl h2 {
  font-size: var(--font-size-lg);
  /*position: relative;*/
}
#lower .cont-ttl h2 {
  font-size: var(--font-size-hg);
}
@media (min-width: 600px) {
  #lower .cont-ttl {
    margin-bottom: 2em;
  }
}
@media (min-width:1025px) {
  #top .cont-ttl {
    display: flex;
    justify-content: center;
  }
  #top .cont-ttl h2, #top .cont-ttl p {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
  }
  #top .cont-ttl p {
    order: 2;
  }
  #top .cont-ttl h2 {
    order: 1;
  }
  #lower .cont-ttl {
    margin-bottom: 3em;
  }
}
/*  pankuzu
----------------------------------------------------*/
.topicpath {
  font-size: 1.1rem;
  padding: 20px 0;
}
.topicpath ul {
  display: flex;
  align-items: center;
  opacity: .6;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
}
.topicpath ul::-webkit-scrollbar {
  display: none;
}
.topicpath a {
  background-image: var(--bg-angle-right-bk);
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 1.4rem;
  padding: 1em 1em 1em 0;
}
.topicpath a:after {
  content: '\f105';
  display: inline-block;
  font-family: FontAwesome;
  font-weight: normal;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: 1em;
}
@media (min-width: 600px) {
  .topicpath {}
  .topicpath ul {}
}
@media (min-width:1025px) {
  .topicpath {
    padding: 20px 0 40px;
  }
  .topicpath ul {
    overflow: hidden
  }
}

/* 
----------------------------------------------------*/
.form-wrap {
  border-top: 1px dashed #ccc;
  padding-top: 3vw;
  line-height: 1.8;
}
.form-wrap input, .form-wrap textarea {
  padding: 1em;
  background-color: var(--clr-key-10);
  margin: .2em 0
}
.form-wrap input[type="file"] {
  background-color: #fff;
  padding-left: 0;
}
::placeholder {
  color: #aaa;
}
.form-wrap input + .error {
  padding-top: .5em;
  width: 100%;
}
/*.form-item-mds {
  font-weight: 700;
  border-left: 3px solid var(--clr-green-l);
  font-size: 110%;
  color: var(--clr-green-l);
  padding: .3em 1em;
  margin-bottom: -1em;
}*/
.label-required {
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: var(--letter-space-m);
    padding: 0.2rem 0.5rem;
    background: var(--clr-red);
    border-radius: var(--radius-s);
    margin: 0 .5em;
	color: #fff;
}
.form-item {
  margin: 2em 0 0;
}
.form-item-ttl {
  font-weight: 700;
}
.form-item-txt {}
.form-submit {
	margin-top: 20px;
}
.form-wrap input.submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: var(--lh-base-ss);
  min-height: 60px;
  width: 90%;
  margin: auto;
  color: #fff;
  background-color: var(--clr-bk);
  transition: 0.3s ease-in-out;
}
/*.form-wrap input.submit-btn.return-btn {
  min-height: 34px;
  padding: .5em 1em;
  background-color: var(--clr-gray-sl);
  border: 1px solid var(--clr-gray-sl);
}*/
.form-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
/*cf7*/
.cf7-message, .cf7-add, .cf7-mail, .cf7-company {
  width: 100%;
}
.cf7-name {
  width: 60%;
}
.cf7-post, .cf7-tel {
  width: 50%;
}
.cf7-message {
  height: 160px;
}
/**/
.wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7-form-control.wpcf7-checkbox, .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.form-wrap .wpcf7-list-item {
  width: 100%;
  margin: 0;
}
.form-wrap .form-sub .wpcf7-list-item {
  width: 31%;
}
.form-wrap .wpcf7-list-item label {
  cursor: pointer;
  display: block;
}
.form-wrap .wpcf7-list-item input {
  display: none;
}
.form-wrap .wpcf7-list-item span {
  padding: 1.2em 1em 1.2em 35px;
  min-height: 56px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--clr-key-10);
}
.form-wrap .wpcf7-list-item input:checked + span {
  color: #fff;
  background-color: var(--clr-key-50);
}
.form-wrap .wpcf7-list-item span::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  width: 15px;
  height: 15px;
  background-color: #fff;
}
.form-wrap .wpcf7-radio .wpcf7-list-item span::before {
  border-radius: 50vh;
}
.form-wrap .wpcf7-list-item span::after {
  z-index: 1;
  position: absolute;
  content: "";
  opacity: 0;
}
.form-wrap .wpcf7-radio .wpcf7-list-item span::after {
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  width: 7px;
  height: 7px;
  background-color: #333;
  border-radius: 50%;
}
.form-wrap .wpcf7-checkbox .wpcf7-list-item span::after {
  transform: translateY(-60%) rotate(-45deg);
  top: 50%;
  left: 16px;
  width: 12px;
  height: 8px;
  margin-top: -1px;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
}
.form-wrap .pt-jouken {
  padding: 15px;
  margin: 0 0 1em;
  border: 1px solid #ccc;
}
.form-wrap .pt-jouken p {
  color: var(--clr-red)
}
.form-wrap .pt-jouken ul {
  font-family: var(--font-min);
  font-size: 1.4rem;
}
.form-privacy {}
.form-pri-txt {
  border: 1px solid var(--clr-gray);
  padding: 15px;
  height: 150px;
  overflow: scroll;
  font-family: var(--font-min);
  font-size: 1.4rem;
  margin-bottom: .5em;
}
.form-privacy-l .form-pri-txt {
  height: 300px;
}
.form-pri-txt dt {
  margin: 0 0 .5em;
}
.form-pri-txt dd {
  margin: 0 0 1em;
}
.form-lead-foot .wpcf7-list-item {
  width: 100% !important;
}
.form-lead-foot .wpcf7-list-item label {
  display: inherit;
}
.form-lead-foot .wpcf7-list-item span {
  padding: 0 0 0 1.5em;
  min-height: auto;
  display: inherit;
  background-color: inherit;
}
.form-lead-foot .wpcf7-list-item span::before {
  left: 0;
  top: 8px;
  transform: none;
  background-color: var(--clr-gray-sl);
}
.form-lead-foot.wpcf7-checkbox .wpcf7-list-item span::after {
  left: 2px;
  top: 15px;
}
.form-lead-foot .wpcf7-list-item input:checked + span, .form-lead-foot .wpcf7-list-item input:checked + span a {
  color: var(--clr-green-l);
  background-color: inherit;
}
.form-wrap input.submit-btn:disabled {
  opacity: .2;
}
.form-wrap .wpcf7-list-item input:checked + span::after {
  opacity: 1;
}
/*必須項目未入力の時に『送信ボタン下』に表示されるメッセージを非表示*/
/*.wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}*/
/*送信成功した時に『送信ボタン下』に表示されるメッセージを非表示*/
/*.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}*/
/*ローディング削除*/
div.wpcf7 .ajax-loader {
  display: none !important;
}
/**/
.form-comp .page-head {
  margin: 0 0 30px;
}
.form-comp .link-btn {
  margin-top: 30px;
}
@media (min-width: 600px) {
  .form-lead-head, .form-lead-foot {
    text-align: center;
  }
  .form-item {
    margin: 40px 0 0;
	align-items: center;
  }
  .form-item-ttl {
    width: 230px;
	margin: 0 !important;
  }
  .form-wrap_confirm .form-item-ttl {
    padding-top: 0;
  }
  .form-item-txt {
    margin-top: 0;
    width: calc(100% - 240px)
  }
  .form-wrap input.submit-btn {
    max-width: 300px;
  }
  .form-privacy .form-item-ttl {
    width: 100%;
    text-align: center;
  }
  .form-privacy .form-item-txt {
    width: 100%;
  }
  .form-pri-txt {
    margin: 1em 0;
  }
  .form-comp .link-btn {
    margin-top: 50px;
  }
  /**/
  .form-comp {
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .form-wrap {
    max-width: 940px;
    margin: 0 auto;
  }
  /*cf7*/
  .cf7-name {
    width: 50%;
  }
  .cf7-post, .cf7-tel {
    width: 25%;
  }
  .form-wrap .form-cre .wpcf7-list-item {
    width: 32%;
  }
  .cf7-message, .cf7-add, .cf7-mail, .cf7-company {
    width: 100%;
  }
  .cf7-message {
    height: 160px;
  }
  /*  .form-wrap .wpcf7-list-item {
    width: 24%;
  }*/
  .form-wrap .form-item-txt.form-2rows .wpcf7-list-item {
    width: 49%;
  }
  .form-wrap .form-mid .wpcf7-list-item {
    width: 32%;
  }
  .form-wrap .form-sub .wpcf7-list-item {
    width: 24%;
  }
  .form-item-txt {
    width: calc(100% - 260px);
  }
  .form-pri-txt {
    padding: 35px;
    height: 240px;
  }
  .form-privacy-l .form-pri-txt {
    height: 600px;
    overflow: scroll;
  }
  .form-wrap input.submit-btn {
    max-width: 400px;
	margin-top: 40px;
  }
  .form-wrap input.submit-btn:hover {
    background-color: var(--clr-bk-50);
    opacity: 1;
  }
  .form-wrap input.submit-btn:disabled {
  background-color: var(--clr-bk-20);
  opacity: 1;
}
  /*.form-wrap input.submit-btn:not(:disabled):hover {
    background-color: var(--clr-bk-50);
  }*/
}
/* 
----------------------------------------------------*/
@media (min-width: 600px) {}
@media (min-width: 1025px) {}