@charset "utf-8";
/* CSS Document */

/*==================================================
  CSS CUSTOM PROPERTY
==================================================*/
:root {
  --width-content: 1200px;

  --color-main: #8FC42F;
  --color-red: #FF7338;
  --color-orange: #FF7338;
  --color-yellow: #FFF82B;
  --color-ygreen: #8FC42F;
  --color-green: #40AA1E;
  --color-blue: #1E6FDA;
  --color-lightblue: #49BEE2;
  --color-navy: #00258F;
  --color-purple: #662D90;
  --color-pink: #F72B80;
  --color-salmon: #FF9898;
  --color-beige: #F5F5DC;
  --color-black: #333;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-lightgray: #CCC;
  --color-palegray: #F5F5F5;
  --color-palegreen: #EBF6D8;
  --color-paleorange: #FFEFEE;

  --rad-common: 5px;
  --rad-full: 50vh;

  --font-en: Arial, Helvetica, "sans-serif";
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
  --font-en-cur: "Playwrite AU VIC", cursive;
}

@media print,
screen and (min-width: 768px) {
  :root {
    --gutter-supernarrow: 20px;
    --gutter-narrow: 40px;
    --gutter-medium: 60px;
    --gutter: 80px;
    --gutter-wide: 100px;
    --gutter-superwide: 120px;

    --font-xxlarge: 48px;
    --font-xlarge: 32px;
    --font-large: 24px;
    --font-medium: 18px;
    --font-normal: 16px;
    --font-sub: 14px;
    --font-small: 13px;
    --font-xsmall: 12px;
    --font-xxsmall: 11px;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --gutter-supernarrow: 10px;
    --gutter-narrow: 20px;
    --gutter-medium: 40px;
    --gutter: 60px;
    --gutter-wide: 80px;
    --gutter-superwide: 100px;

    --font-xxlarge: 28px;
    --font-xlarge: 22px;
    --font-large: 18px;
    --font-medium: 16px;
    --font-normal: 14px;
    --font-sub: 13px;
    --font-small: 12px;
    --font-xsmall: 11px;
    --font-xxsmall: 10px;
  }
}


/*==================================================
  GENERAL SETTINGS common
==================================================*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-ja);
  font-size: 10px;
  line-height: 1.6;
  background: #fff;
  color: var(--color-black);
}

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

body {
  font-size: var(--font-normal);
  min-width: 320px;
  position: relative;
}

main {
  display: block;
  word-break: break-word;
  position: relative;
}

a {
  text-decoration: none;
}

@media (any-hover:hover) {

  a:hover,
  a:active {
    text-decoration: none;
    filter: alpha(opacity=70);
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
}

@media (min-width: 767px) {

  /* ▼スマホサイズでのみ架電可能▼ */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


/*==================================================
  HEADER common
==================================================*/
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  margin-left: var(--gutter-supernarrow)
}


/*==================================================
  FOOTER common
==================================================*/
.footer {
  border-top: solid 1px var(--color-lightgray);
}

.footer__mainBox {
  margin-bottom: var(--gutter-superwide);
}

.footer__mainBox__logoBox__btnlist__item input.footer__logout {
  padding: 0;
  height: 52px;
  text-align: center;
}

.footer__mainBox__infoBox__shopinfoBox__photo {
  border-radius: var(--rad-common);
  overflow: hidden;
}

.footer__mainBox__infoBox__shopinfoBox__detail__tel {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.footer__mainBox__infoBox__shopinfoBox__detail__tel__num {
  font-size: var(--font-large);
}

.footer__mainBox__infoBox__shopinfoBox__detail__list {
  font-size: var(--font-small);
}

.footer__mainBox__infoBox__sns {
  max-width: 500px;
  width: 100%;
  margin-top: var(--gutter-supernarrow);
}

.footer__copyright {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--color-main);
  color: #FFF;
  line-height: 1;
  padding: 1em;
}

/*footFix*/
.footFix {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
}

.footFix .ancPagetop {
  width: 65px;
  height: 65px;
  background: rgb(143 196 47 / 85%);
  border-radius: var(--rad-full);
  border: solid 1px #FFF;
  font-size: var(--font-xsmall);
  line-height: 1;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: all .3s ease;
  overflow: hidden;
}

.footFix .ancPagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.footFix .ancPagetop a:hover {
  opacity: 1;
  background: var(--color-main);
  transition: all .3s ease;
}


/*==================================================
  MAIN common
==================================================*/
/*
===== 共通パーツ ==========================================
*/
/*************** メインタイトル ****************/
.ttlWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--color-palegreen);
  padding: 1.25em 0;
  font-size: var(--font-xlarge);
  font-weight: bold;
  text-align: center;
}

.mainTtl:first-letter {
  color: var(--color-main);
}

/*************** パンくず ****************/
#bread {
  width: 100%;
  max-width: 100%;
  font-size: var(--font-xsmall);
  line-height: 1;
  padding: 0.5em var(--gutter-supernarrow);
  color: var(--color-darkgray);
  background: var(--color-palegreen);
  position: absolute;
  top: 0;
  left: 0;
}

#bread>span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid var(--color-darkgray);
  border-right: 1px solid var(--color-darkgray);
  transform: rotate(45deg);
  margin-right: 5px;
}

#bread a {
  display: inline-block;
  margin-right: 5px;
  padding-left: 5px;
  text-decoration: underline;
}

@media (any-hover:hover) {
  #bread a:hover {
    text-decoration: none;
  }
}

/*************** コンテンツラッパー ****************/
#postbox {
  width: 100%;
  margin: 0 auto;
  margin-bottom: var(--gutter);
}

#container {
  margin: 0 auto !important;
}

.wire {
  width: 100%;
  max-width: var(--width-content);
  margin-right: auto;
  margin-left: auto;
}

@media print,
screen and (max-width:1200px) {
  .wire {
    max-width: 100%;
    padding-right: 2.5%;
    padding-left: 2.5%;
  }
}

/*************** タイトル ****************/
#main .secTtl {
  font-size: var(--font-large);
  font-weight: bold;
  padding-bottom: 1em;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1em;
  border-bottom: solid 2px var(--color-lightgray);
}

#main .secTtl02 {
  font-size: var(--font-large);
  font-weight: bold;
  margin-bottom: 2.5em;
  position: relative;
  text-align: center;
}

#main .secTtl02::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 6px;
  background: var(--color-main);
  border-radius: 3px;
  position: absolute;
  top: calc(100% + 0.5em);
  left: 50%;
  transform: translateX(-50%);
}

#main .secTtl03 {
  font-size: var(--font-large);
  font-weight: bold;
  padding-bottom: 1em;
  line-height: 1.3;
  border-bottom: solid 2px var(--color-lightgray);
}

#main .secTtl04 {
  font-size: var(--font-medium);
  font-weight: bold;
  padding: 0.5em;
  line-height: 1.3;
  background: var(--color-darkgray);
  text-align: center;
  color: #FFF;
}

/*
===== 部品 ==========================================
*/
/*************** 開閉タイトル ****************/
.oc_bar01,
.oc_bar01_open,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open {
  cursor: pointer;
}

.oc_bar01,
.oc_bar01_open,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open,
.srchbox01 .selectbox01 h3 {
  cursor: pointer;
  font-size: var(--font-large);
  font-weight: bold;
  padding-bottom: 0.5em;
  border-bottom: dotted 1px var(--color-black);
}

.oc_bar01_open:after,
.srchbox01 .selectbox01 .selectbox_ttl_open:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "＋";
  float: right;
  color: #fff;
  border-radius: var(--rad-common);
  text-shadow: none !important;
  padding: 5px;
  background: var(--color-main);
}

.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "－";
  float: right;
  color: #fff;
  border-radius: var(--rad-common);
  text-shadow: none !important;
  padding: 5px;
  background: var(--color-main);
}

/*
===== WP投稿 ==========================================
*/
/***** archivePage **************************/
/* pagenavi */
.wp-pagenavi {
  max-width: var(--width-content);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  padding: 10px 15px;
  display: inline-block;
}

.wp-pagenavi span.current {
  background-color: var(--color-black);
  color: #fff;
}

/* return-arvhive link */
.archivePage .return_archive {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.archivePage .return_archive a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4em;
}

/* archivePage taxonomy navigation */
.archivePage .archive_catBox {
  margin-bottom: var(--gutter);
}

.archivePage .archive_catBox .catList {
  display: flex;
  justify-content: center;
  gap: var(--gutter-narrow);
  flex-wrap: wrap;
}

.archivePage .archive_catBox .catItem {
  width: 100%;
  max-width: 300px;
}

.archivePage .archive_catBox .catItem a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3em;
  font-size: var(--font-medium);
  font-weight: bold;
}

/* archivePage list-rowtype */
.archivePage .itemList.list-row .item {
  border-bottom: solid 1px var(--color-lightgray);
}

.archivePage .itemList.list-row .item:first-child {
  border-top: solid 1px var(--color-lightgray);
}

.archivePage .itemList.list-row a {
  display: block;
  width: 100%;
  padding: var(--gutter-supernarrow);
}

/* archivePage list-cardtype */
.archivePage .itemList.list-card {
  display: flex;
  flex-wrap: wrap;
}

.archivePage .itemList.list-card .item {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: var(--rad-common);
  overflow: hidden;
}

.archivePage .itemList.list-card .item a {
  position: relative;
  display: block;
}

.archivePage .itemList.list-card .item .iconWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  margin-bottom: 0.5em;
}

.archivePage .itemList.list-card .info {
  padding: var(--gutter-supernarrow);
}

.archivePage .itemList.list-card .ttl {
  margin-bottom: 0.5em;
}

.archivePage .itemList.list-card .photo {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.archivePage .itemList.list-card02 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--gutter-narrow);
}

.archivePage .itemList.list-card02 .item a {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--gutter-narrow);
  background: #FFF;
  padding: 1em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.archivePage .itemList.list-card02 .photo {
  width: 25%;
  aspect-ratio: 3 / 2;
}

.archivePage .itemList.list-card02 .info {
  width: calc(75% - var(--gutter-narrow));
}

.archivePage .itemList.list-card02 .iconWrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 0.5em;
}

.archivePage .itemList.list-card02 .icon_txt {
  font-size: var(--font-xsmall);
}

.archivePage .itemList.list-card02 .item .ttl {
  font-size: var(--font-normal);
  width: 100%;
  height: 3.2em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* archivePage general */
.archivePage #postbox {
  margin-top: var(--gutter-medium);
}

.archivePage .itemList {
  margin-bottom: var(--gutter-medium);
}

.archivePage .item .date {
  font-family: var(--font-en);
  font-weight: bold;
  margin-bottom: 1em;
}

.archivePage .item .icon_txt.icon_new {
  font-size: var(--font-xsmall);
}

.archivePage .itemList.list-row .icon_txt.icon_new {
  margin: 0 0 0 0.5em !important;
}

.archivePage .item .ttl {
  font-size: var(--font-medium);
  font-weight: bold;
}

/* archivePage has termlink */
.archivePage #postbox:has(aside) {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 var(--gutter-narrow);
}

.archivePage #postbox .mainWrap {
  width: 100%;
}

.archivePage aside.sideWrap {
  width: 100%;
}

.archivePage aside.sideWrap>section {
  margin-bottom: var(--gutter-narrow);
}

.archivePage aside.sideWrap>section>h2 {
  background: var(--color-darkgray);
  text-align: center;
  color: #FFF;
  padding: 1em;
  font-weight: bold;
  border-radius: var(--rad-common);
}

.archivePage aside.sideWrap>section>h2 img.iconimg {
  vertical-align: middle;
}

.archivePage aside.sideWrap>section li {
  border-bottom: solid 1px var(--color-lightgray);
  padding: 1em;
}

/***** singlePage **************************/
/* singlePage general */
.singlePage #postbox {
  margin-top: var(--gutter-narrow);
}

.singlePage #titleBox {
  margin-bottom: var(--gutter-narrow);
}

.singlePage #titleBox .date {
  font-weight: bold;
  margin-bottom: 0.5em;
}

.singlePage #titleBox .date--modified {
  color: var(--color-gray);
}

.singlePage:not(.single-gallery) #titleBox .icon_txt.icon_new {
  font-size: var(--font-xsmall);
  padding: 0.25em 0.5em;
}

.singlePage:not(.single-gallery) #titleBox .icon_txt.icon_new {
  margin: 0 0 0 0.5em !important;
  padding: 0.5em;
}

.singlePage #titleBox .single_ttl {
  margin-top: 0.5em;
}

.singlePage article#content {
  margin-bottom: var(--gutter);
}

.singlePage #form {
  margin: var(--gutter) auto;
}

.singlePage aside.sideWrap {
  margin-top: var(--gutter-medium);
}

/* What You See Is What You Get :) // START ==========　*/
.wpwysiwyg {
  font-size: var(--font-normal);
}

.wpwysiwyg .aligncenter,
.wpwysiwyg .alignright {
  margin-left: auto;
  display: table;
}

.wpwysiwyg .aligncenter {
  margin-right: auto;
}

.wpwysiwyg div {
  margin-top: var(--gutter-medium);
  margin-bottom: var(--gutter-medium);
}

.wpwysiwyg iframe div {
  margin: inherit;
}

/* heading */
.wpwysiwyg h1,
.wpwysiwyg h2,
.wpwysiwyg h3,
.wpwysiwyg h4,
.wpwysiwyg h5,
.wpwysiwyg h6 {
  margin: 1em 0;
  font-weight: bold;
}

/* paragraph */
.wpwysiwyg p {
  margin: 1em 0;
}

/* media & embedding */
.wpwysiwyg img,
.wpwysiwyg video,
.wpwysiwyg iframe,
.wpwysiwyg embed {
  max-width: 100%;
}

.wpwysiwyg iframe[title='YouTube video player'] {
  height: auto;
  aspect-ratio: 16 / 9;
}

/* link */
.wpwysiwyg a {
  text-decoration: underline;
  color: var(--color-main);
  font-weight: bold;
  display: inline;
}

/* lists */
.wpwysiwyg ul {
  list-style: disc;
  margin-left: 1.5em;
}

.wpwysiwyg ol {
  list-style: decimal;
  margin-left: 1.5em;
}

.wpwysiwyg li {
  margin-bottom: 0.5em;
}

/* blockquote */
.wpwysiwyg blockquote {
  background: var(--color-palegray);
  padding: 1em;
  font-style: italic;
  color: var(--color-darkgray);
}

/* What You See Is What You Get :) // END ========== */

/***** Table of Contents Plus *****/
#toc_container {
  min-width: 30%;
  padding: 1em 1.5em .5em;
  border-radius: var(--rad-common);
  background: #FFF;
  border-color: var(--color-lightgray);
}

#toc_container .toc_title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--font-large);
  position: relative;
  padding-left: 1.3em;
  margin-bottom: .5em;
}

#toc_container .toc_title .toc_toggle {
  font-size: var(--font-small);
}

#toc_container .toc_list {
  padding: 0;
}

#toc_container .toc_list li {
  list-style: none;
  border-bottom: 1px dotted var(--color-lightgray);
  padding-bottom: .5em;
  margin-bottom: .5em;
  position: relative;
}

#toc_container .toc_list li:last-child {
  border: 0;
  padding-bottom: 0;
}

#toc_container .toc_list li ul {
  border-top: 1px dotted var(--color-lightgray);
  padding: 1em 0 0 0;
  margin: 0;
}

#toc_container .toc_list li ul li {
  margin-left: 1.5em;
}

#toc_container .toc_list li .toc_number {
  color: var(--color-gray);
}

.singlePage #mapBox {
  padding-top: 80px;
  margin-top: -50px;
}

.page_title01 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  background: url(../img/common/page_title01_bg.webp)no-repeat top center;
  padding: 50px 0;
  margin-bottom: 50px;
}

.page_title02 {
  font-size: 1.4em;
  font-weight: bold;
  padding: 15px 0 15px 16px;
  background: url(../img/common/icon01.webp)no-repeat left center;
  background-size: 8px;
  border-bottom: solid 2px #CCC;
  line-height: 1;
  margin-bottom: 20px;
}

#postbox .wp-caption {
  max-width: 100% !important;
}

.navigation {
  padding: 1em;
  text-align: center;
  background: var(--color-palegray);
  border-radius: var(--rad-common);
  font-size: var(--font-sub);
}

/*************** リキャプチャ ****************/
.recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* バッヂ */
.grecaptcha-badge {
  bottom: 160px !important;
  overflow: hidden;
  z-index: 1000;
}

/*************** スライダー ****************/
.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto !important;
}

/*arrow*/
.slick-arrow::before {
  content: "" !important;
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
}

.slick-arrow.slick-prev,
.slick-arrow.slick-prev::before {
  left: 0 !important;
}

.slick-arrow.slick-next,
.slick-arrow.slick-next::before {
  right: 0 !important;
}

.slick-next,
.slick-prev {
  z-index: 99 !important;
  width: 50px !important;
  height: 50px !important;
}

.slick-next::before {
  background: url(../img/common/arrow_right.webp) !important;
  background-size: contain !important;
}

.slick-prev::before {
  background: url(../img/common/arrow_left.webp) !important;
  background-size: contain !important;
}

.slick-dots li,
.slick-dots li button {
  width: 16px !important;
  height: 16px !important;
}

.slick-dots li button:before {
  content: "" !important;
  width: 13px !important;
  height: 13px !important;
  background: #999;
  border-radius: 8px;
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  background: #333;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/*************** MAP ****************/
#map {
  width: 98% !important;
  height: auto;
  margin: 10px auto;
}

#map iframe {
  width: 100% !important;
  height: 350px !important;
}

/*ACFでMAPを表示*/
.acf-map {
  width: 100%;
  height: 400px;
  border: 1px solid #E0E0E0;
  margin: 20px 0;
}

/*
===== エラーページ ==========================================
*/
.errorBox_com {
  margin-bottom: 1.5em;
  text-align: center;
}

.err404Page #postbox {
  margin-top: var(--gutter-medium);
}

.err404Page .err404 {
  margin: 30px 0;
  padding: 50px 20px;
  border: 5px solid #E6E6E6;
}

/*
===== 完了ページ ==========================================
*/
.thanksPage #postbox {
  margin-top: var(--gutter-medium);
}

.thanksBox {
  border: 3px solid var(--color-palegray);
  background: #fff;
  padding: var(--gutter) 2.5%;
  max-width: 95%;
  margin: 0 auto;
}

.thanksBox_ttl {
  font-weight: bold;
  font-size: var(--font-medium);
  margin-bottom: 2em;
  color: var(--color-red);
  text-align: center;
}

.thanksBox_com {
  text-align: center;
  margin-bottom: var(--gutter-narrow);
}



/*///////////////////////////////////////////////////////////

Wide（768px～）

///////////////////////////////////////////////////////////*/
@media print,
screen and (min-width: 768px) {

  /*==================================================
  HEADER min768
==================================================*/
  header.fixed {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
    background: #FFF;
  }

  .header__inner {
    height: 80px;
  }

  .header__logo {
    width: 200px;
  }

  .header__menuwrap {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-right: var(--gutter-supernarrow);
  }

  .header__gnavi {
    overflow: hidden;
  }

  .header__gnavi__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    font-size: var(--font-sub);
    gap: 0.25em 1em;
  }

  .header__gnavi__list__item {
    overflow: hidden;
  }

  .header__tel {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .header__tel__num {
    font-size: var(--font-large);
  }

  .header__memberbtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 52px;
  }

  .header__memberbtn a img {
    margin-right: 10px;
  }

  .header__memberbtn--logout input.btn_logout {
    padding: 0;
    text-align: center;
    width: 140px;
    height: 52px;
    font-size: var(--font-sub);
    font-weight: normal;
  }

  /*
  ===== header__membernavi ==========================================
  */
  .header__membernavi {
    width: 100%;
    padding: 10px;
    background: var(--color-palegray);
  }

  .header__membernavi__inner,
  .header__membernavi__listwrap,
  .header__membernavi__itemwrap,
  .header__membernavi__list,
  .header__membernavi__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header__membernavi__ttl {
    padding-right: 1em;
    margin-right: 1em;
    border-right: dotted 1px var(--color-black);
    gap: 5px;
  }

  .header__membernavi__ttl.ttl--membermenu {
    color: var(--color-main);
  }

  .header__membernavi__itemwrap {
    font-size: var(--font-sub);
    gap: 1em;
  }

  .header__membernavi__list__label {
    font-weight: normal;
    margin-right: 5px;
  }

  .header__membernavi__list__item.item--input {
    margin-right: 10px;
  }

  .header__membernavi__list__item.item--input input {
    padding: 5px;
    font-weight: normal;
    font-size: var(--font-xsmall);
    width: 15vw;
    max-width: 20em;
  }

  .header__membernavi__greeting {
    font-size: var(--font-xsmall);
  }

  .header__membernavi__list.list--member {
    font-size: var(--font-small);
    gap: 1em;
  }

  .header__membernavi__list__item.item--link {
    text-decoration: underline;
  }

  .header__membernavi__btn input[type="submit"] {
    text-align: center;
    width: 7em;
    height: 2.5em;
    border-radius: var(--rad-full) !important;
    line-height: 1;
    color: #FFF;
    padding: 0;
  }

  .header__membernavi__btn input.btn_login {
    background: var(--color-main);
  }

  .header__membernavi__btn input.btn_logout {
    background: var(--color-darkgray);
  }


  /*==================================================
    FOOTER min768
  ==================================================*/
  .footer__sitemap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: var(--gutter-medium);
    margin-bottom: var(--gutter-medium);
  }

  .footer__sitemap__list.col1 {
    width: 25%;
  }

  .footer__sitemap__list.col2 {
    display: flex;
    flex-wrap: wrap;
    width: 37.5%;
  }

  .footer__sitemap__list.col2 .footer__sitemap__list__cont {
    width: 50%;
  }

  .footer__sitemap__list__label {
    width: 100%;
    padding-left: 1em;
    margin-bottom: 1em;
    border-left: solid 5px var(--color-main);
  }

  .footer__sitemap__list__cont {
    font-size: var(--font-small);
    margin-bottom: 1em;
  }

  .footer__mainBox__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gutter-narrow);
  }

  .footer__mainBox__logoBox,
  .footer__mainBox_logoBox__logo {
    width: 100%;
    max-width: 380px;
  }

  .footer__mainBox__logoBox__btnlist {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
  }

  .footer__mainBox__logoBox__btnlist__item {
    width: 186px;
    height: 52px;
  }

  .footer__mainBox__infoBox__shopinfoBox {
    display: flex;
    gap: var(--gutter-supernarrow);
  }

  .footer__mainBox__infoBox__shopinfoBox__photo {
    width: 96px;
    height: 96px;
  }

  .footer__mainBox__infoBox__shopinfoBox__detail__list__item {
    display: flex;
    margin-bottom: 0.5em;
  }

  .footer__mainBox__infoBox__shopinfoBox__detail__list__item__label {
    flex-shrink: 0;
  }

  .footFix__list {
    position: absolute;
    right: 0;
    bottom: 95px;
  }

  .footFix__list__item {
    font-weight: bold;
    font-size: var(--font-small);
    color: #FFF;
  }

  .footFix__list__item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 90px;
    height: 70px;
    padding-right: 20px;
    border-top-left-radius: var(--rad-common);
    border-bottom-left-radius: var(--rad-common);
    line-height: 1;
    transform: translateX(20px);
    transition: transform .3s ease;
  }

  .footFix__list__item a:hover {
    opacity: 1;
    transform: translateX(0);
  }

  .footFix__list__item a:hover img {
    animation: jump .5s ease-in-out 1;
  }

  @keyframes jump {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }

    100% {
      transform: translateY(0);
    }
  }

  .footFix__list__item a.shoprsv {
    background: var(--color-main);
  }

  .footFix__list__item a.signup {
    background: var(--color-red);
  }


  /*==================================================
    MAIN min768
  ==================================================*/
  /*
  ===== WP投稿 ==========================================
  */
  /***** archivePage **************************/
  /* archivePage list-cardtype */
  .archivePage .itemList.list-card {
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--gutter-narrow);
  }

  .archivePage .itemList.list-card02 {
    justify-content: flex-start;
  }

  /***** singlePage **************************/
  .wpwysiwyg h1 {
    font-size: 2em;
  }

  .wpwysiwyg h2 {
    font-size: 1.8em;
  }

  .wpwysiwyg h3 {
    font-size: 1.7em;
  }

  .wpwysiwyg h4 {
    font-size: 1.6em;
  }

  .wpwysiwyg h5 {
    font-size: 1.5em;
  }

  .wpwysiwyg h6 {
    font-size: 1.4em;
  }
}



/*///////////////////////////////////////////////////////////

  Super Wide（1200px～）

///////////////////////////////////////////////////////////*/
@media print,
screen and (min-width: 1200px) {

  /*==================================================
    FOOTER min1200
  ==================================================*/
  .footer__mainBox__inner {
    justify-content: space-between;
  }


  /*==================================================
    MAIN min1200
  ==================================================*/
  /*
  ===== WP投稿 ==========================================
  */
  /***** archivePage **************************/
  .archivePage #postbox .mainWrap {
    width: calc(100% - 280px - (var(--gutter-narrow)));
  }

  .archivePage #postbox aside {
    width: 280px;
  }
}



/*///////////////////////////////////////////////////////////

  Medium Wide（～1199px）

///////////////////////////////////////////////////////////*/
@media print,
screen and (max-width: 1199px) {

  /*==================================================
    MAIN max1199
  ==================================================*/
  /*
  ===== WP投稿 ==========================================
  */
  /***** archivePage **************************/
  .archivePage #postbox:has(aside) {
    flex-direction: column-reverse;
  }
}



/*///////////////////////////////////////////////////////////

  Narrow（～767px）

///////////////////////////////////////////////////////////*/
@media screen and (max-width: 767px) {
  body {
    min-width: 300px;
  }

  .slick-dots li button:before {
    width: 10px !important;
    height: 10px !important;
  }


  /*==================================================
    HEADER max767
  ==================================================*/
  header {
    display: flex;
    justify-content: space-between;
    height: 60px;
  }

  .header__inner {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1999;
    background: rgba(255, 255, 255, 0.9);
  }

  .header__logo {
    width: 45%;
    max-width: 160px;
  }

  .header__menuwrap--sp__btnlist {
    display: flex;
  }

  .header__menuwrap--sp__btnlist>li {
    width: 60px;
    height: 60px;
  }

  .header__menuwrap--sp__btnlist>li>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    width: 100%;
    height: 100%;
  }

  .header__menuwrap--sp__btnlist__item.item--login a {
    background: var(--color-main);
    color: #FFF;
    font-size: var(--font-small);
  }

  .header__menuwrap--sp__btnlist__item.item--signup a {
    background: var(--color-red);
    color: #FFF;
    font-size: var(--font-small);
  }

  .header__menuwrap--sp__btnlist__item.item--member {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.3;
    background: var(--color-red);
    color: #FFF;
    font-weight: bold;
  }

  .header__menuwrap--sp__btnlist__item.item--hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px 0;
    line-height: 1;
    background: #FFF;
    position: relative;
    z-index: 99;
  }

  .header__menuwrap--sp__btnlist__item.item--hamburger span {
    width: 36px;
    height: 2px;
    background: var(--color-black);
    transition: all .3s ease;
  }

  .header__menuwrap--sp__btnlist__item.item--hamburger.close span:first-of-type {
    transform: translateY(8px) rotate(45deg);
  }

  .header__menuwrap--sp__btnlist__item.item--hamburger.close span:nth-of-type(2) {
    width: 0;
  }

  .header__menuwrap--sp__btnlist__item.item--hamburger.close span:nth-of-type(3) {
    transform: translateY(-12px) rotate(-45deg);
  }

  /*
  ===== hamburger menu ==========================================
  */
  .header__spmenu {
    width: 100%;
    height: calc(100vh - 60px);
    overflow-y: scroll;
    position: fixed;
    left: 0;
    top: 60px;
    background: var(--color-palegreen);
    z-index: 9999;
  }

  .header__spmenu__btnBox {
    margin: var(--gutter-narrow) 2.5%;
  }

  .header__spmenu__btnlist {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
  }

  .header__spmenu__btnlist__item.col1 {
    width: 100%;
  }

  .header__spmenu__btnlist__item.col2 {
    width: 50%;
  }

  .header__spmenu__btnlist__item.search,
  .header__spmenu__btnlist__item.estimate {
    border-bottom: solid 1px var(--color-lightgray);
  }

  .header__spmenu__btnlist__item.rail,
  .header__spmenu__btnlist__item.shop {
    border-right: solid 1px var(--color-lightgray);
  }

  .header__spmenu__btnlist__item__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25em;
    font-weight: bold;
    padding: 0.75em 0;
    font-size: var(--font-medium);
  }

  .header__spmenu__btnBox.btnBox--02 .header__spmenu__btnlist__item__btn {
    gap: 0;
  }

  .header__spmenu__btnlist__item__btn img {
    height: 26px;
  }

  .header__spmenu__btnlist__item.estimate a .sub,
  .header__spmenu__btnlist__item.sellers a .sub,
  .header__spmenu__btnlist__item.gallery a .sub {
    font-size: var(--font-xsmall);
  }

  .header__spmenu__btnlist__item.estimate a .emp img,
  .header__spmenu__btnlist__item.sellers a .emp img,
  .header__spmenu__btnlist__item.gallery a .emp img {
    margin-right: 5px;
  }

  .header__spmenu__tablelist {
    display: flex;
    flex-wrap: wrap;
    background: #FFF;
    border-bottom: solid 1px var(--color-lightgray);
  }

  .header__spmenu__tablelist__item {
    border-top: solid 1px var(--color-lightgray);
    width: 50%;
  }

  .header__spmenu__tablelist__item.col1 {
    width: 100%;
  }

  .header__spmenu__tablelist__item:nth-child(odd) {
    border-right: solid 1px var(--color-lightgray);
  }

  .header__spmenu__tablelist__item a {
    display: block;
    font-size: var(--font-sub);
    padding: 1em;
  }

  .header__spmenu__txtlist {
    display: flex;
    justify-content: center;
    gap: 2em;
    font-size: var(--font-small);
    margin: var(--gutter-narrow) 2.5%;
  }

  .header__spmenu__txtlist a {
    text-decoration: underline;
  }

  /*
  ===== modal ==========================================
  */
  .header__membermodal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 70%);
    padding: var(--gutter-medium) 2.5%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 100;
  }

  .header__membermodal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .header__membermodal.active {
    opacity: 1;
    visibility: visible;
  }

  .header__membermodal__body {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    max-width: 290px;
    width: 100%;
    background: var(--color-palegreen);
    border-radius: var(--rad-common);
    padding-bottom: var(--gutter-narrow);
    overflow: hidden;
  }

  .header__membermodal__ttl {
    padding: 0.5em;
    font-size: var(--font-medium);
    font-weight: bold;
    color: #fff;
    background-color: var(--color-main);
  }

  .header__membermodal__list {
    padding: var(--gutter-narrow) 2.5%;
    border-bottom: solid 1px var(--color-gray);
    margin-bottom: var(--gutter-narrow);
  }

  .header__membermodal__list__item {
    margin-bottom: var(--gutter-supernarrow);
  }

  .header__membermodal__list__item.item--logout {
    margin-bottom: 0;
    margin-top: var(--gutter-narrow);
  }

  .header__membermodal__list__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    width: 100%;
    height: 4em;
    border-radius: var(--rad-full);
    font-weight: bold;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
  }

  .header__membermodal__list__item input.btn_logout {
    padding: 0;
    text-decoration: underline;
    color: var(--color-blue);
  }

  .header__membermodal__close__btn {
    display: inline-block;
    background: var(--color-gray);
    padding: 0.5em 2em;
    color: #FFF;
    border-radius: var(--rad-full);
    text-align: center;
    margin: 0 auto;
  }


  /*==================================================
    FOOTER max767
  ==================================================*/
  footer {
    padding-top: var(--gutter-medium);
    margin-bottom: 60px;
  }

  footer.nomgn {
    margin-bottom: 0;
  }

  .footer__mainBox__logoBox__logo {
    width: 240px;
    margin: 0 auto var(--gutter-narrow);
  }

  .footer__mainBox__logoBox__btnlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gutter-supernarrow);
    margin-bottom: var(--gutter-narrow);
  }

  .footer__mainBox__logoBox__btnlist__item {
    width: clamp(170px, calc(50% - 5px), 300px);
    height: 56px;
  }

  .footer__mainBox__infoBox__shopinfoBox {
    display: flex;
    justify-content: center;
    gap: var(--gutter-supernarrow);
  }

  .footer__mainBox__infoBox__shopinfoBox__photo {
    width: 90px;
    height: 90px;
  }

  .footer__mainBox__infoBox__shopinfoBox__detail {
    width: cal(100% - var(--gutter-supernarrow) - 90px);
  }

  .footer__mainBox__infoBox__shopinfoBox__detail__tel__num {
    font-size: var(--font-xxlarge);
  }

  .footer__mainBox__infoBox__sns {
    margin-right: auto;
    margin-left: auto;
  }

  /*footFix*/
  .footFix {
    bottom: 60px;
  }

  .footFix.no-fixnav {
    bottom: 0;
  }

  .footer__fixnavi {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    background: #FFF;
    border-top: solid 2px var(--color-gray);
  }

  .footer__fixnavi__list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
  }

  .footer__fixnavi__list__item {
    width: 25%;
    height: 60px;
  }

  .footer__fixnavi__list__item:nth-child(n+2) {
    border-left: dotted 1px var(--color-gray);
  }

  .footer__fixnavi__list__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    height: 100%;
    background: #FFF;
    font-weight: bold;
    font-size: var(--font-small);
  }

  .footer__fixnavi__list__item a img {
    height: 26px;
  }


  /*==================================================
    MAIN max767
  ==================================================*/
  /*
  ===== 共通パーツ ==========================================
  */
  #bread {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: auto;
  }

  /*
  ===== 部品 ==========================================
  */
  /*(開閉タイトル)*/
  .oc_bar01,
  .oc_bar01_open,
  .srchbox01 .selectbox01 .selectbox_ttl,
  .srchbox01 .selectbox01 .selectbox_ttl_open,
  .srchbox01 .selectbox01 h3 {
    font-size: 1.2em;
  }

  /*
  ===== WP投稿 ==========================================
  */
  /***** archivePage **************************/
  .wp-pagenavi {
    width: 96%;
  }

  /* archivePage list-cardtype */
  .archivePage .itemList.list-card {
    justify-content: center;
    gap: var(--gutter-narrow);
  }

  .archivePage aside.sideWrap .cateList {
    margin-top: 1em;
  }

  .archivePage aside.sideWrap .cateList {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
  }

  .archivePage aside.sideWrap .cateList li {
    border-bottom: none;
    text-decoration: underline;
    padding: 0;
  }

  .archivePage aside.sideWrap select.monList--select {
    margin-top: 1em !important;
    width: 100%;
    border-radius: 0;
  }

  /***** singlePage **************************/
  .navigation {
    font-size: var(--font-xsmall);
  }

  .wpwysiwyg h1 {
    font-size: 1.8em;
  }

  .wpwysiwyg h2 {
    font-size: 1.6em;
  }

  .wpwysiwyg h3 {
    font-size: 1.5em;
  }

  .wpwysiwyg h4 {
    font-size: 1.4em;
  }

  .wpwysiwyg h5 {
    font-size: 1.2em;
  }

  .wpwysiwyg h6 {
    font-size: 1.1em;
  }

  .wp-pagenavi {
    width: 96%;
  }

  .gmap_view {
    margin: 10px;
    border: 1px solid #E6E6E6;
    height: 300px;
    clear: both;
  }

  .gmap_view img {
    width: auto !important;
  }

  .yolp-ymapbanner {
    width: 150px !important;
    top: inherit !important;
    right: inherit !important;
    bottom: 26px !important;
  }

  .yolp-ymapbanner img {
    width: 100% !important;
    height: auto !important;
  }

  .yolp-ctrl .map {
    width: auto !important;
  }

  .map {
    width: 98% !important;
    height: auto;
    margin: 10px auto;
    clear: both;
  }

  .map iframe {
    height: 300px !important;
  }

  .mapp-canvas,
  .mapp-layout {
    width: 98% !important;
    height: 300px;
    margin: auto;
    border: 1px solid #E6E6E6;
    clear: both;
  }

  #map {
    width: 98% !important;
    height: auto;
    margin: 10px auto;
  }

  #map iframe {
    width: 100% !important;
    height: 300px !important;
  }

  /*ACFでMAPを表示*/
  .acf-map {
    height: 300px;
    margin: 0;
  }

}