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

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: 1.3rem;
}
.preload {
  transition: 0 !important;
}
#wrap {
  display: block;
  overflow: hidden;
}
#home article, #home footer {
  position: relative
}
article {}
#lower article {
  padding-top: 60px;
}
section {}
.sp {}
.pc {
  display: none;
}
.inner {
  margin: 10vw 5vw 15vw;
  line-height: var(--lh-base-l)
}
.inner.inner-padding {
  margin: 0;
  padding: 10vw 5vw 15vw;
}
@media (min-width: 768px) {
  body {}
  article {}
  #lower article {
    padding-top: 80px;
  }
  section {}
  .inner {
    margin: 8vw 6vw;
  }
  .inner.inner-padding {
    margin: 0;
    padding: 8vw 6vw;
  }
}
@media (min-width:1000px) {
  body {
    font-size: 1.4rem;
  }
  article {}
  #lower article {
    padding-top: 100px;
  }
  section {}
  .inner {
    margin: 80px 10vw;
  }
  .inner.inner-padding {
    margin: 0;
    padding: 80px 10vw;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media (min-width:1200px) {
  .lower .inner {
    margin: 80px auto;
    max-width: 1080px;
  }
  .lower .inner.inner-padding {
    margin: 0 auto;
    padding: 80px 0;
    max-width: 1080px;
  }
  .lower .inner.inner-narrow {
    max-width: 960px;
  }
}
/* Header
----------------------------------------------------*/
header {
  width: 100%;
  background: var(--clr-bk);
  font-family: var(--font-min);
  font-size: 1rem;
  color: #fff;
  padding: 10px 0;
}
header .head-inner {
  margin: 0 5vw;
  text-align: center;
  line-height: var(--lh-base-l)
}
header .description {
  font-family: var(--font-jp);
  letter-spacing: var(--letter-space-s);
  color: var(--clr-txt-gray);
  padding-bottom: 10px;
}
header h1 {
  width: 55%;
  margin: 0 auto;
}
header h1 a {
  display: block;
  background-image: url("../images/template/logo-wide-wh.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 0;
  padding-top: 19%;
  overflow: hidden;
}
header .sub-header {
  display: none
}
/*
#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: 768px) {
  header {}
  header h1 {
    width: 40%;
  }
}
@media (min-width: 1000px) {
  header {
    width: 100%;
    background: var(--clr-bk);
    font-family: var(--font-min);
    font-size: 1.1rem;
    color: #fff;
    padding: 0;
  }
  .site-header {}
  header .head-inner {
    margin: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
  }
  header .description {
    white-space: nowrap;
    color: var(--clr-txt-gray);
    width: 420px;
    text-align: left;
  }
  header a {
    color: #fff !important;
  }
  header h1 {
    width: 200px;
  }
  header h1 a {
    display: block;
    background-image: url("../images/template/logo-wh.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 0;
    padding-top: 48%;
    overflow: hidden;
  }
  header .sub-header {
    text-align: right;
    padding: 60px 0 1em 0;
    display: block;
    width: 420px;
  }
  header .sub-header p {
    margin-bottom: 1em;
  }
  header .sub-header li {
    display: inline-block;
    margin-left: 1em;
  }
  header .sub-header strong {
    font-size: 1.5rem;
  }
}
/* ハンバーガーボタン
----------------------------------------------------*/
.gnav-humburger {
  /*position: absolute;*/
  top: 23px;
  right: 15px;
  z-index: 120;
  cursor: pointer;
  pointer-events: auto;
  transition: all .2s ease-in-out;
  position: fixed;
  background: var(--clr-bk);
  padding: 10px;
}
.gh__open .gnav-humburger {
  position: fixed;
}
.gnav-humburger-wrapper {
  width: 28px;
  height: 28px;
  padding-top: 8px;
}
.gnav-humburger span.gnav-humburger-bar {
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 1px;
  background: #fff;
  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(5px) rotate(-45deg);
}
.gh__open .gnav-humburger span.gnav-humburger-bar.bottom {
  transform: translateY(-5px) rotate(45deg);
}
.gh__open .gnav-humburger span.gnav-humburger-bar {
  /*background: var(--clr-bk) !important;*/
}
@media (min-width: 768px) {
  .gnav-humburger {
    top: 20px;
    right: 20px;
  }
  .gnav-humburger-wrapper {
    width: 40px;
    height: 40px;
    padding-top: 15px;
  }
  .gnav-humburger span.gnav-humburger-bar {
    margin: 0 auto 10px;
  }
}
@media (min-width: 1000px) {
  .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: rgba(255, 255, 255, 1);
  opacity: 1;
  visibility: visible; /*フェードインの場合*/
  /* transform: translateZ(0) translateX(0);スライドの場合*/
}
.gh__open .gnav, .gh__close .gnav {
  transition: all 200ms;
}
.gnav-inner {
  padding: 100px 8vw 15vw;
  background-image: url("../images/template/logo.svg");
  background-repeat: no-repeat;
  background-position: center top 14px;
  background-size: auto 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gnav-item {
  padding: 5px 0;
  width: 47%;
  text-align: center;
}
.gnav-item.nav-home, .gnav-item.nav-btn, .gnav-item.nav-toi {
  width: 100%;
}
.gnav-item a {
  padding: 1em 5px;
  display: block;
  font-size: 1.2rem;
  border: 1px solid #ccc;
}
.gnav-item.nav-btn a {
  border: 0
}
.nav-gold a {
  color: var(--clr-gold) !important;
}
header a.btn1 {
  background: var(--clr-gold);
}
header a.btn2 {
  background: var(--clr-brown);
  color: #fff !important;
}
.nav-toi {
  font-size: 1.2rem;
  color: var(--clr-txt);
  padding: 5vw 0 0;
  line-height: var(--lh-base-m)
}
.nav-toi .ttl {
  font-weight: 700;
  font-size: 1.4rem;
}
.nav-toi .tel {}
.nav-toi .tel strong {
  font-size: 2.4rem;
  display: block;
}
.nav-toi a.teltime {
  padding: inherit;
  border: 0;
}
.nav-toi a.mailform {
  margin-top: 1em;
  background: var(--clr-bk);
  color: #fff;
}
body.noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .gnav {
    width: 100%;
  }
  .gnav-inner {
    padding: 150px 20vw 20vw;
    background-image: url("../images/template/logo.svg");
    background-position: center top 40px;
    background-size: 26vw auto;
  }
}
@media (min-width: 1000px) {
  .gnav {
    position: inherit;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    width: auto;
    background: #fff;
  }
  .gnav.fixed {
    position: fixed !important;
    height: auto;
    width: 100%;
    overflow: inherit;
  }
  #home .gnav {
    position: relative;
    margin-top: -60px;
  }
  #home .gnav.fixed {
    position: fixed !important;
    margin-top: 0;
  }
  .gh__open .gnav {}
  .gnav-inner {
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0 5vw;
    height: 60px;
    transition: .3s;
    background: none;
  }
  .gnav-item {
    padding: 0;
    width: inherit;
  }
  .gnav-item.nav-home, .gnav-item.nav-btn {
    width: inherit;
  }
  .gnav-item a {
    color: var(--clr-bk) !important;
    font-size: 1.4rem;
    padding: 1em 0;
    font-weight: 700;
    border: 0
  }
  .nav-home a {
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-top: 22px;
    background: url("../images/template/icn-home.svg") no-repeat center;
    background-size: auto 100%;
  }
  #home .nav-home a, .gnav.fixed .nav-home a {
    padding-top: 33px;
    width: 176px;
    background: url("../images/template/logo-wide.svg") no-repeat center;
    background-size: auto 100%;
  }
  .nav-gold a {
    color: var(--clr-gold) !important;
  }
  .nav-sp {
    display: none;
  }
  header .btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: absolute;
    top: 0;
    right: 5vw;
  }
  #home header .btn {
    position: fixed;
  }
  header .gnav.fixed .btn {
    top: auto;
    bottom: -45px;
  }
  #home .gnav.fixed .btn {
    position: absolute;
  }
  header .btn a {
    font-size: 1.5rem;
    text-align: center;
    height: 45px;
    line-height: 45px;
    width: 180px;
    padding: 0;
  }
  body.noscroll {
    overflow: inherit;
  }
}
/* Footer
----------------------------------------------------*/
footer {
  font-size: 1.2rem;
}
.foot-inner {
  padding: 0 5vw 5vw;
  background: var(--clr-gray-darkest);
  color: var(--clr-txt-gray);
  line-height: var(--lh-base-m);
}
.foot-inner * {
  color: var(--clr-txt-gray) !important;
}
.foot-link {
  padding: 8vw 0;
}
.foot-link a {
  display: block;
  padding: .5em;
}
.foot-link p a {
  border-bottom: 1px solid var(--clr-gray-dark)
}
.foot-link ul {
  padding: 1em;
  font-size: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}
.foot-link li {
  width: 48%;
}
.foot-link li a {
  padding: .3em;
  color: var(--clr-gray-dark) !important;
}
.foot-reserve {
  background: var(--clr-gray-darker);
  padding: 20px;
}
.footContact {
  text-align: center;
}
.footContact .tel {
  margin: .5em 0;
}
.footContact .tel strong {
  font-size: 2.4rem;
  display: block;
  font-weight: 700;
  font-family: var(--font-min);
}
.footContact .teltime {
  font-size: 1.2rem;
}
.footContact a.mailform {
  margin-top: 1em;
  background: var(--clr-bk);
  color: #fff;
  display: block;
  padding: 10px;
  font-family: var(--font-min)
}
.foot-inner .btnWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.foot-inner .btnWrap p {
  width: 47%;
  margin: 10px 0;
}
.foot-inner .btnWrap .btn a {
  text-align: center;
  color: #fff;
  background: var(--clr-gray-darkest);
  font-family: var(--font-min);
  display: grid;
  place-items: center;
  height: 40px;
  line-height: var(--lh-base-ss)
}
.foot-inner .btnWrap .btn.gold a {
  background: var(--clr-gold);
  color: var(--clr-txt) !important
}
.foot-inner .btnWrap .btnInu {
  width: 100%;
}
.foot-inner .btnWrap .btnInu img {
  margin: 0 auto;
}
.foot-info {
  padding: 2em 5vw;
  background: var(--clr-bk);
  color: var(--clr-gray-dark);
  line-height: var(--lh-base-s);
  font-size: 1.1rem;
  text-align: center;
}
.foot-info h2 {
  width: 200px;
  margin: 10px auto;
}
.foot-info h2 a {
  display: block;
  height: 0;
  overflow: hidden;
  padding-top: 25%;
  background: url("../images/template/logo-wide-wh.svg") no-repeat center;
  background-size: contain;
}
.foot-info .nav-sns {
  margin: 10px 0;
}
.foot-info .omi {
  margin: 20px 0 0 auto;
  font-size: 1rem;
  letter-spacing: 0;
  font-family: var(--font-min);
}
.foot-info .omi a {
  color: var(--clr-gray-dark);
  display: block;
  background-image: url("../images/template/logo-newomi.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 24px;
  padding-top: 26px;
}
footer .credit {
  padding: 8vw 0;
  text-align: center;
  font-family: var(--font-min);
  font-size: 1rem;
  background: #fff;
}
@media (min-width: 768px) {
  .foot-inner {
    padding: 0 6vw 6vw;
  }
  .foot-link {
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 横3列を均等に */
    gap: 20px; /* 全方向に30pxの間隔 */
  }
  .foot-link ul {
    display: block;
  }
  .foot-link li {
    width: inherit;
  }
  .foot-reserve {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 横3列を均等に */
    gap: 60px;
    padding: 30px;
  }
  footer .credit {
    padding: 4vw 0;
  }
}
@media (min-width: 1000px) {
  .foot-inner {
    padding: 0 10vw;
    display: flex;
    justify-content: space-between;
    align-items: normal;
  }
  .foot-link {
    padding: 40px 0;
    width: calc(100% - 350px);
    gap: 40px; /* 全方向に30pxの間隔 */
  }
  .foot-link ul {
    font-size: 1.2rem;
  }
  .foot-reserve {
    width: 300px;
    padding: 40px 30px;
    display: block;
  }
  .footContact {
    margin-top: 30px;
  }
  .foot-info {
    display: flex;
    place-items: center;
    gap: 16px;
    padding: 1em 10vw;
    text-align: left;
  }
  .foot-info h2 {
    margin: 0;
  }
  .foot-info .omi {
    margin: 0 0 0 auto;
  }
  .foot-info .omi a {
    background-position: right top;
  }
  footer .credit {
    padding: 30px;
    font-size: 1.2rem;
  }
}
/* 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.8rem;
  color: var(--clr-txt);
}
.gnav-inner .nav-sns {
  order: -1;
  width: 100%;
  margin-bottom: 20px;
}
.foot-info .nav-sns i {
  color: var(--clr-gray-dark);
}
@media (min-width: 768px) {}
@media (min-width: 1000px) {
  .nav-sns {
    margin-top: 0;
  }
  .nav-sns .sns-item {
    margin: 0 .5em 0 0;
  }
  .gnav-inner .nav-sns {
    order: 1;
    width: auto;
    margin-bottom: 0;
  }
}
/*  #ReservationModule
------------------------------------------------------------ */
#ReservationModule, #ReservationModule a {
  color: #333;
}
#ReservationModuleInner {
  padding: 20px 30px;
  margin: 0 0 15px;
  background: var(--clr-bk-10);
  line-height: var(--lh-base-m);
  font-size: 1.2rem;
  text-align: left;
  font-family: var(--font-jp)
}
ul.reserveSelect {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
ul.reserveSelect li {
  padding-right: .5em;
}
ul.reserveSelect label {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-right: .3em;
}
ul.reserveSelect label::after {
  position: absolute;
  right: 6px;
  width: 8px;
  height: 5px;
  background-color: var(--clr-gray-darker);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
ul.reserveSelect label select {
  appearance: none;
  padding: .1em calc(.1em + 20px) .1em .6em;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
}
.submit-btn {
  background: var(--clr-bk);
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 10px;
  transition: .3s
}
.submit-btn:hover {
  opacity: .6;
}
.footReserveOther {
  margin-top: 1em;
}
.footReserveOther li a {
  padding: .2em 5px;
  font-size: 1.1rem;
}
/**/
.foot-reserve h2 {
  font-size: 1.6rem;
  font-family: var(--font-min);
  border-bottom: 1px solid var(--clr-gray);
  text-align: center;
  padding: .3em;
}
.foot-reserve .footReserve h2 {
  border-bottom: 1px solid var(--clr-gold);
  color: var(--clr-gold) !important;
}
@media (min-width: 768px) {
  .foot-reserve ul.reserveSelect {
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .footReserve {
    display: none;
  }
}
@media (min-width: 1000px) {
  #WhiteLayer {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 998;
    filter: alpha(opacity=9);
    -moz-opacity: 0.9;
    opacity: 0.9;
  }
  .reserve_win {
    display: none;
  }
  #ReservationModule, #WhiteLayer {
    display: none;
  }
  #ReservationModule {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
  }
  #ReservationModule .wrapper {
    position: relative;
  }
  #ReservationModule, #ReservationModule a {
    color: #fff !important;
  }
  #ReservationModuleInner {
    padding: 30px 35px;
    width: 300px;
    position: absolute;
    top: 40px;
    right: 10vw;
    background: var(--clr-gray-darker);
    line-height: var(--lh-base-l);
    font-size: 1.2rem;
  }
  ul.reserveSelect {
    margin-bottom: 15px;
  }
  .footReserveOther li a {
    display: block;
    padding: 5px 0;
    text-align: left;
    width: 100%;
    font-weight: 400;
    height: auto;
    line-height: 1
  }
  /**/
  .foot-reserve ul.reserveSelect {
    margin: 15px 0;
  }
  .foot-reserve select {
    color: var(--clr-txt) !important;
  }
  .foot-reserve .footReserveOther li a {}
}
/*#subHeader .tel {
	text-align:right;
	padding:0px 10px 7px 0;
}
.subNav {	text-align:right;}
.subNav li a {
	display:block;
	height:13px;
	background:url(../img/nav_sub.gif);
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
}

.subNav li {
	float:left;
	margin-right:11px;
}
.subNav #subNav00 a			{ width:85px;background-position:0 0; }
.subNav #subNav00 a:hover	{ width:85px;background-position:0 -13px; }
.subNav #subNav01 a			{ width:44px;background-position:-96px 0; }
.subNav #subNav01 a:hover	{ width:44px;background-position:-96px -13px; }
.subNav #subNav02 a			{ width:55px;background-position:-151px 0; }
.subNav #subNav02 a:hover	{ width:55px;background-position:-151px -13px; }
.subNav #subNav03 a			{ width:63px;background-position:-217px 0; }
.subNav #subNav03 a:hover	{ width:63px;background-position:-217px -13px; }*/
/*
.reserveSelect p {
}
.reserveSelect {}
.reserveSelect li {}
.reserveSelect li.reserve01 { width:80px; }
.reserveSelect li.reserve02 { width:70px; }
.reserveSelect li.reserve03 { width:60px; }
.reserveSelect li.reserve04 { width:80px; }
.reserveSelect li.reserve05 { width:70px; }
.reserveSelect li.reserve06 { width:70px; }*/
/* customSelect
.customSelect { 
	background:url(customSelect/customSelect-arrow.gif) no-repeat right center #fff;
	padding:5px;
    color:#000;
	text-align:center;
	margin-right:3px;
}
.customSelect.customSelectHover {}
.customSelect.customSelectOpen {}
.customSelect.customSelectFocus {}
.customSelectInner {}
 */
.sec-bg {
  background: var(--clr-gray-slight);
}
.tbl-box {
  margin: 1em 0;
}
.tbl-box table {
  border: var(--line-soli);
}
.tbl-box table th, .tbl-box table td {
  padding: 1em;
}
.tbl-box table th {
  background: var(--clr-gray-light);
  text-align: center;
  vertical-align: middle;
}
.tbl-box table td {
  background: #fff;
}
@media (min-width:1000px) {
  .tbl-box table th, .tbl-box table td {
    padding: 1.5em;
  }
}
/* 
----------------------------------------------------*/
.cont-ttl {
  line-height: var(--lh-base-s);
  height: 160px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#faq .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-faq.jpg");}
#cal .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-cal.jpg");}
#feature .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-feature.jpg");}
#guide .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-guide.jpg");}
#access .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-access.jpg");}
#job .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-job.jpg");}
#rooms .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-rooms.jpg");}
#furusato .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-furusato.jpg");}
#facility .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-facility.jpg");}
#dishes .cont-ttl,
#reserve .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-dishes.jpg");}
#dogrun .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-dogrun.jpg");}
#oneday .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-oneday.jpg");}
#offkai .cont-ttl {  background-image: url("../images/tittle/cnt_ttl-offkai.jpg");}
.cont-ttl h2 {
  font-family: var(--font-min);
  font-size: 2rem;
}
.cont-ttl.grid-center h2 {
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  letter-spacing: .2em
}
.cont-ttl.cont-subttl {
  background: var(--clr-gray-light) url("../images/parts/bg-logo-w.png") no-repeat right center;
  border-left: 3px solid var(--clr-bk);
  height: 80px !important;
  display: grid;
  align-items: center;
  padding: 0 1.5em;
  margin-bottom: 40px;
}
.cont-subttl h2 {  font-size: 1.8rem;}
.sec-ttl {
  margin: 0 0 30px;
  line-height: var(--lh-base-s);
}
.sec-ttl h3 {
  font-size: 1.8rem;
  font-family: var(--font-min);
}
.sec-ttl h3 strong {
  font-size: 125%;
  font-weight: 400;
}
.sec-ttl h3 span {
  font-size: 84%;
  font-weight: 400;
}
.sec-ttl .clr1 {  color: var(--clr-newomi);}
.sec-ttl .clr2 {  color: var(--clr-gold);}
.blk-ttl {  margin-bottom: 1em;}
.blk-ttl h3 {
  font-size: 1.7rem;
  font-family: var(--font-min);
}
@media (min-width: 768px) {
  .cont-ttl {  height: 200px;}
  .cont-ttl h2 {  font-size: 2.8rem;}
  .cont-subttl h2 {
    font-family: var(--font-min);
    font-size: 2rem;
  }
  .sec-ttl {}
  .sec-ttl h3 {  font-size: 2.5rem;}
  .blk-ttl h3 {  font-size: 2.3rem;}
}
@media (min-width:1000px) {
  .cont-ttl {
    height: 300px;
    background-size: auto 100%;
  }
  .cont-ttl h2 {  font-size: 3.4rem;}
  .cont-ttl.cont-subttl {  height: 100px !important;}
  .cont-subttl h2 {
    font-family: var(--font-min);
    font-size: 2.4rem;
  }
  .sec-ttl {  margin: 0 0 40px;}
  .sec-ttl h3 {  font-size: 3.2rem;}
  .blk-ttl h3 {  font-size: 2.8rem;}
}
/* sec_btn
----------------------------------------------------*/
.link-btn {}
.link-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 85%;
  margin: auto;
  color: #fff;
  border: 1px solid var(--clr-txt);
  background-color: var(--clr-txt);
  text-decoration: none !important;
}
.link-btn a:after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 50%;
  right: 20px;
  transform: translatey(-50%);
  transition: .3s;
}
.link-btn.btn-omi a {
  border: 1px solid var(--clr-newomi);
  background-color: var(--clr-newomi);
}
.link-btn.btn-gold a {
  border: 1px solid var(--clr-gold);
  background-color: var(--clr-gold);
}
.link-btn.btn-w a {
  color: var(--clr-txt);
  border: 1px solid #fff;
  background-color: #fff;
}
@media (min-width: 768px) {
  .link-btn a {
    width: 300px;
  }
}
@media (min-width:1000px) {
  .link-btn a:hover {
    color: var(--clr-txt);
    background-color: #fff;
  }
  .link-btn a:hover::after {
    right: 15px;
  }
  .link-btn.btn-omi a:hover {
    border: 1px solid var(--clr-newomi);
    background-color: var(--clr-newomi);
    color: #fff;
  }
  .link-btn.btn-gold a:hover {
    border: 1px solid var(--clr-gold);
    background-color: var(--clr-gold);
    color: #fff;
  }
  .link-btn.btn-w a:hover {
    color: #fff;
    border: 1px solid var(--clr-bk);
    background-color: var(--clr-bk);
  }
}
/* 
----------------------------------------------------*/
/*.lity-container {
  width: calc(100% - 30px) !important;
  max-width: none !important;
  margin: 0 auto !important;
}
.lity-iframe-container {
  padding-top: 120%;
}*/
.subwin {
  background: var(--clr-gray-light);
  padding: 15px;
  line-height: var(--lh-base-l);
}
.subwin-wrap {
  padding: 15px;
  background: #fff url("../images/parts/bg-logo.png") no-repeat right 10px bottom 10px;
}
.subwin-wrap .sub-ttl {
  padding: 15px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: var(--clr-newomi);
  font-size: 120%;
}
.subwin-wrap .sub-txt {
  padding: 15px 0;
}
.subwin-wrap .link-btn {
  margin: 1.5em 0;
}
.sub-kengaku {
  color: var(--clr-newomi);
  border-top: 1px dashed var(--clr-newomi);
  border-bottom: 1px dashed var(--clr-newomi);
  padding: 1em;
  margin: 1em 0;
}
/*オプションメニュー*/
.subwin-wrap .sub_option-pht {
  margin: 15px 0;
}
.subwin-wrap .sub_option-txt {
  margin: 15px 0;
}
.subwin-wrap .sub_option-txt h3 {
  color: var(--clr-newomi);
  text-align: center;
  font-size: 1.6rem;
  font-family: var(--font-min);
  margin-bottom: 1em;
}
.subwin-wrap .sub_option-txt .list {
  text-align: left;
  margin-top: 1.5em;
  font-size: 1.2rem;
}
/*html.lity-active {
  overflow: hidden !important;
}*/
@media (min-width: 600px) {
  .subwin-wrap .sub-txt {
    padding: 20px;
  }
  /*オプションメニュー*/
  .subwin-wrap .sub_option-txt h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  /*  .lity-container {
    width: 600px !important;
  }
  .lity-iframe-container {
    padding-top: 100%;
  }*/
}
/* ページ内メニュ
----------------------------------------------------*/
.lower-submenu {
  border-bottom: 1px dashed #ccc
}
/* 共通スタイル */
details.accordion {
  padding: 0.8em;
  width: 95%;
  margin: 0 auto;
}
details.accordion a {
  text-decoration: none;
}
details.accordion summary {
  cursor: pointer;
  font-weight: bold;
  padding-left: 1.5em
}
details.accordion > summary {
  position: relative;
  padding-right: 1.5em;
  list-style: none;
}
details.accordion > summary::after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  left: 0;
  top: 0;
  font-weight: bold;
  transition: transform 0.3s ease;
}
details.accordion[open] > summary::after {
  transform: rotate(90deg)
}
details.accordion > summary::marker {
  display: none !important;
}
.accordion-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding-top: 10px;
}
.accordion-content a {
  display: block;
  padding: .8em .8em 2em;
  position: relative;
  text-align: center;
  background: var(--clr-gray-slight);
}
.accordion-content a:after {
  position: absolute;
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}
@media (min-width: 768px) {
  details.accordion {
    padding: 1em;
  }
  .accordion-content {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    padding-top: 10px;
  }
}
@media (min-width: 1000px) {
  .lower-submenu {
    border-bottom: 0
  }
  details.accordion {
    padding: .3em;
    width: auto;
  }
  details.accordion > summary {
    cursor: default;
    pointer-events: none;
    display: none;
  }
  details.accordion > summary::marker {
    display: none;
  }
  .accordion-content {
    height: auto !important;
    overflow: visible;
    transition: none;
    grid-auto-flow: column; /* 横並びにする */
    justify-content: center; /* 横方向に中央寄せ */
    grid-template-columns: auto;
    gap: 20px;
    padding-top: 0
  }
  .accordion-content p {}
  .accordion-content a {
    background: #fff;
  }
  .accordion-content a:hover {}
  .accordion-content a:hover::after {}
}
/* 
----------------------------------------------------*/
@media (min-width: 768px) {}
@media (min-width: 1000px) {}
/* 
----------------------------------------------------*/
@media (min-width: 768px) {}
@media (min-width: 1000px) {}
/* 
----------------------------------------------------*/
@media (min-width: 768px) {}
@media (min-width: 1000px) {}
/* 
----------------------------------------------------*/
.privacy-box {
  padding: 1em;
  margin-bottom: 1em;
}
.privacy-box.privacy-lead {
  padding: 0;
}
.privacy-box h2 {
  font-weight: 700;
  margin-left: -1em;
}
@media (min-width: 768px) {}
@media (min-width: 1000px) {}
/* 
----------------------------------------------------*/
.form-wrap {
  border-top: var(--line-soli);
  line-height: 1.8;
}
.form-wrap input,
.form-wrap textarea,
.form-wrap select {
  font-size: 1.6rem;
}
.form-wrap input, .form-wrap textarea {
  padding: .8em;
  background-color: var(--clr-bk-5);
  margin: .2em 0
}
.form-wrap input[type="file"] {
  background-color: #fff;
  padding-left: 0;
}
input[type="date"] {
  -webkit-appearance: textfield; /* デフォルトUIを復活させる */
  appearance: textfield;
}
.wpcf7-form-control-wrap:has(select) {
  align-items: center;
  position: relative;
}
.wpcf7-form-control-wrap:has(select)::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 8px;
  top: 50%;
  margin-top: -4px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.form-wrap select {
  appearance: none;
  height: 2.8em;
  margin: .2em 0;
  padding: .4em calc(.8em + 30px) .4em .8em;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}

::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;
}*/
.form-item {
  padding: 20px 5px;
  border-bottom: var(--line-dash);
}
.mail-check {
  padding-top: 10px;
}
.mobile-txt {
  font-size: 1rem;
  line-height: 1.4;
  border-top: var(--line-dash);
  padding-top: 10px;
  margin-top: 10px;
}
.mobile-txt strong {
  color: var(--clr-red);
}
.label-hissu {
  color: var(--clr-red);
  font-weight: 700
}
.form-item-ttl.icn-hissu::after {
  content: "\5FC5\9808"; /*必須*/
  color: #fff;
  background: var(--clr-red);
  font-size: 0.8em;
  padding: 0.3em;
  border-radius: 0.5em;
  margin-left: 0.3em;
  white-space: nowrap;
}
.form-item-kugiri {
	background: var(--clr-newomi);
	color: #fff;
	padding: 1em;
	font-weight: 700;
	text-align: center;
}
.form-item-ttl {
  font-weight: 700;
}
.form-item-txt {
  margin: .5em 0;
}
.form-item-txt .cap {
  margin-top: .5em;
}
.form-item-txt .parent {
  white-space: nowrap;
  display: inline-block;
  margin-right: 1em;
}
.form-item-txt p:has(.parent) {
  border-bottom: 1px dotted #ccc;
}
.form-item-txt p:has(.parent):last-child {
  border-bottom: none;
}
.form-submit {
  margin-top: 30px;
}
.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;
  border: 1px solid var(--clr-bk);
  background-color: var(--clr-bk);
  background-image: var(--bg-angle-right-wh);
  background-repeat: no-repeat;
  background-position: right 3px center;
  background-size: 16px;
  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-num {
  width: 60px;
}
.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: grid;
  gap: 8px;
  margin: .2em 0;
}
.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: 1em 1em 1em 35px;
  min-height: 46px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--clr-gray-light);
}
.form-wrap .wpcf7-list-item input:checked + span {
  background-color: var(--clr-gold-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: var(--clr-gold);
  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 var(--clr-gold);
  border-left: 2px solid var(--clr-gold);
}
/**/
.form-privacy {}
.form-pri-txt {
  border: 1px solid var(--clr-gray);
  padding: 10px;
  height: 150px;
  overflow: scroll;
  font-size: 1.1rem;
  line-height: var(--lh-base-s);
  margin-bottom: .5em;
}
.form-pri-txt .privacy-box {
  padding: 1em;
  margin-bottom: 0 !important;
}
/**/
/*.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-gold);
  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: 768px) {
  /*.form-lead-head, .form-lead-foot {
    text-align: center;
  }*/
  .form-item {
    display: grid;
    gap: 10px;
    align-items: center;
    grid-template-columns: 200px auto;
  }
  .form-item-ttl {}
  /*.form-wrap_confirm .form-item-ttl {
    padding-top: 0;
  }*/
  .form-item-txt {
    margin: 0;
  }
  .form-wrap input.submit-btn {
    max-width: 300px;
  }
  /**/
  .form-item.form-privacy {
    grid-template-columns: auto;
    gap: 0;
  }
  .form-privacy .form-item-ttl {}
  .form-privacy .form-item-txt {}
  .form-pri-txt {
    margin: 1em 0;
    padding: 15px;
  }
  /**/
  .form-comp .link-btn {
    margin-top: 50px;
  }
  .form-comp {
    text-align: center;
  }
}
@media (min-width: 1000px) {
  .contact-wrap {
    margin: 0 50px;
  }
  .form-wrap {}
  .form-item {
    grid-template-columns: 250px auto;
  }
  /*cf7*/
  .cf7-name, .cf7-mail {
    width: 50%;
  }
  .cf7-post, .cf7-tel {
    width: 25%;
  }
  .cf7-message, .cf7-add, .cf7-company {
    width: 100%;
  }
  .cf7-message {
    height: 160px;
  }
  /*  .form-wrap .wpcf7-list-item {
    width: 24%;
  }*/
  .form-wrap .form-item-txt.form-2rows .wpcf7-form-control {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-wrap .form-item-txt.form-3rows .wpcf7-form-control {
    grid-template-columns: repeat(3, 1fr);
  }
  /*  .form-wrap .form-mid .wpcf7-list-item {
    width: 32%;
  }
  .form-wrap .form-sub .wpcf7-list-item {
    width: 24%;
  }*/
  .form-pri-txt {
    padding: 20px;
    height: 200px;
  }
  /**/
  .form-wrap input.submit-btn {
    max-width: 400px;
  }
  .form-wrap input.submit-btn:hover {
    opacity: .5;
  }
  .form-wrap input.submit-btn:disabled {
    opacity: .2;
    background-image: inherit;
    background-color: inherit;
    color: inherit;
  }
}
/* 
----------------------------------------------------*/
@media (min-width: 768px) {}
@media (min-width: 1000px) {}