.l-inner {
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
  max-width: 100%;
}

.Flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.jus {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.alc {
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.juc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.tac {
  text-align: center;
}

.st-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}

.mt120 {
  margin-top: 120px;
}

.mb120 {
  margin-bottom: 120px;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .l-inner {
    width: 100%;
  }

  .st-wrap {
    padding-top: calc(140/750*100vw);
    padding-bottom: calc(140/750*100vw);
  }

  .mt120 {
    margin-top: calc(140/750*100vw);
  }

  .mb120 {
    margin-bottom: calc(140/750*100vw);
  }

}

/******************
header
*******************/
.common .group {
  border-top: 4px solid #e30c0c;
  background: #faf7df;
  padding: 15px 20px 15px 0;
  border-bottom: 1px solid rgba(150, 150, 153, 0.4);
  position: relative;
  top: 0;
  transition: all 0.5s;
}

.group ul {
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.common .group ul .link a {
  text-decoration: underline;
  font-family: var(--font-notsans);
  font-size: 14px;
  color: #3A3A3A;
}

.st-fixed-header {
  /* position: fixed; */
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 59px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  background: transparent;

  /* topは動かさない */
  transition:
    background .35s ease,
    box-shadow .35s ease,
    height .35s ease;
}

.js-fixed-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10003;
}

#header-inner .group {
  height: 59px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.group ul li.logo {
  width: 351px;
  line-height: 1;
}

/* ロゴとメニューは最初からクリック可能 */
.st-fixed-header__logo,
.st-fixed-header__menu {
  pointer-events: auto;
}

/* 最初はロゴだけ左に表示 */
.st-fixed-header__logo {
  width: 134px;
  height: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: relative;
}

.st-fixed-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 最初はナビ・検索・アイコンを隠す */
.st-fixed-header__nav,
.st-fixed-header__search,
.st-fixed-header__icons {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

/* 右側は常に右寄せ */
.st-fixed-header__right {
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}

/* ハンバーガーは最初から表示 */
.st-fixed-header__menu {
  width: 70px;
  height: 92px;
  border: none;
  background: #111;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  cursor: pointer;
}

.st-fixed-header__menu span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}

/* スクロール後 */
.st-fixed-header.is-show {
  top: 0;
  height: 65px;
  background: #fff;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.15);

  pointer-events: auto;
}

/* スクロール後はロゴサイズも横長ヘッダー用に */



/* スクロール後にナビ類を表示 */
.st-fixed-header.is-show .st-fixed-header__nav,
.st-fixed-header.is-show .st-fixed-header__search,
.st-fixed-header.is-show .st-fixed-header__icons {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ナビ */
.st-fixed-header__nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.st-fixed-header__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0 28px;
  list-style: none;
}

.st-fixed-header__nav a {
  color: var(--bl);
  font-size: 14px;
  font-weight: var(--midi);
  letter-spacing: .08em;
  text-decoration: none;
}



/* 検索 */
.st-fixed-header__search {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 24px;
}

.st-fixed-header__search form {
  padding-right: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 217px;
  height: 39px;
  background: #F3F3F3;
}

.st-fixed-header__search input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 10px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: var(--font-notserif);
}

.st-fixed-header__search button {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}

/* アイコン */
.st-fixed-header__icons {
  margin: 0 24px 0 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  gap: 20px;
  list-style: none;
}

.st-fixed-header__icons li:nth-child(1) {
  width: 50px;
}

.st-fixed-header__icons li:nth-child(2) {
  width: 41px;
}

.st-fixed-header__icons li:nth-child(3) {
  width: 62px;
}

.st-fixed-header__icons a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0;
  color: #222;
  font-size: 11px;
  text-decoration: none;
  line-height: 1.2;
}

.st-fixed-header.is-show .st-fixed-header__menu {
  width: 58px;
  height: 72px;
}

/* 下層ページだけ、固定時のズレ防止 */
#header-inner.is-subpage.is-fixed::after {
  content: "";
  display: block;
  height: var(--fixed-header-height);
}

/* groupはスクロール後に消す */
#header-inner.is-scrolled .group {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

/* groupにアニメーション */
#header-inner .group {
  transition: opacity .35s ease, visibility .35s ease, -webkit-transform .35s ease;
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease, -webkit-transform .35s ease;
}

@media screen and (max-width: 1360px) {
  .st-fixed-header__nav ul {
    gap: 16px;
  }

}

@media screen and (max-width: 1280px) {
  .st-fixed-header__nav ul {
    display: none;
  }

}

#header-inner {
  position: relative;
  z-index: 9999;
}


/* hamburger */
.st-menu-btn {
  width: 65px;
  height: 65px;
  border: none;
  background: var(--bl);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  cursor: pointer;
}

.st-menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 3px;
}

/* ==============================
  menu button open / close
============================== */

.st-menu-btn {
  position: relative;
  z-index: 10004;
}

.st-menu-btn span {
  transition:
    opacity .25s ease,
    top .35s ease,
    -webkit-transform .35s ease;
  transition:
    transform .35s ease,
    opacity .25s ease,
    top .35s ease;
  transition:
    transform .35s ease,
    opacity .25s ease,
    top .35s ease,
    -webkit-transform .35s ease;
}

/* メニューオープン時、ヘッダーをパネルより上に */
body.is-menu-open .st-fixed-header {
  z-index: 10004;
  background: transparent;
  box-shadow: none;
}

/* メニューオープン中はメニューボタン以外を隠す */
body.is-menu-open .st-fixed-header__logo,
body.is-menu-open .st-fixed-header__nav,
body.is-menu-open .st-fixed-header__search,
body.is-menu-open .st-fixed-header__icons {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* メニューボタンを右上に残す */
body.is-menu-open .st-fixed-header__right {
  margin-left: auto;
}

body.is-menu-open .st-menu-btn {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  background: transparent;
}

/* ×に変形 */
body.is-menu-open .st-menu-btn span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(30deg);
  transform: translateY(9px) rotate(30deg);
}

body.is-menu-open .st-menu-btn span:nth-child(2) {
  opacity: 0;
}


body.is-menu-open .st-menu-btn span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-30deg);
  transform: translateY(-9px) rotate(-30deg);
}

/* 既存の閉じるボタンは使わない場合は非表示 */
.st-menu-close {
  display: none;
}

#header-inner.is-fixed:not(.is-subpage) {
  padding-bottom: 59px;
}

/* ==============================
  menu panel
============================== */

.st-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #111;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}

.st-menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.st-menu-panel__inner {
  min-height: 100vh;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1px 320px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 70px;
  padding: 80px 40px;
}

.st-menu-panel__inner::before {
  content: "";
  width: 1px;
  height: 280px;
  background: rgba(255, 255, 255, .75);
  grid-column: 2;
  grid-row: 1;
}

/* 閉じるボタン */
.st-menu-close {
  position: fixed;
  top: 32px;
  right: 34px;
  z-index: 10002;
  width: 54px;
  height: 54px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.st-menu-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 1px;
  background: #fff;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.st-menu-close span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.st-menu-close span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* login */
.st-menu-login {
  grid-column: 1;
  text-align: center;
}

.st-menu-login__title {
  margin: 0 0 1em;
  font-size: 24px;
}

.st-menu-login__btns {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

a.st-menu-login__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 52px;
  border: 1px solid #fff;
  color: #fff !important;
  font-size: 18px;
  letter-spacing: .07em;
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease;
}

a.st-menu-login__btn--gold {
  background: #A9966B;
  border-color: #A9966B;
  color: #fff !important;
}

.st-menu-login__links {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.st-menu-login__links a {
  color: #BDBDBD;
  font-size: 12px;
  text-decoration: underline;
  font-family: var(--font-notsans);
  letter-spacing: 0;
}

/* nav */
.st-menu-nav {
  grid-column: 3;
}

.st-menu-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-menu-nav li {
  margin-bottom: 22px;
}

.st-menu-nav a {
  color: #fff;
  font-size: 20px;
  letter-spacing: .0;
  text-decoration: none;
  transition: color .3s ease;
  display: block;
}



.st-menu-nav span a {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
  letter-spacing: .08em;
  display: inline-block;
}

.st-menu-sp-search {
  display: none;
}

body.is-menu-open {
  overflow: hidden;
}

/* ==============================
  SP
============================== */

@media screen and (max-width: 768px) {
  #header-inner {
    padding: 0;
  }

  .group ul li.logo {
    padding: 0;
    width: calc(490/750*100vw);
  }

  .common .group ul .link a {
    font-size: 12px;
  }

  .common .group {
    padding: 0 calc(20/750*100vw) 0 0;
    border-bottom: none;
  }

  .group ul {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .group ul li {
    line-height: 1;
  }

  .st-fixed-header__logo img {
  }

  .is-show .st-fixed-header__logo,
  .is-show .st-menu-btn {
    opacity: 1;
  }


  .st-fixed-header.is-show {
    height: calc(104/750*100vw);
  }

  .st-fixed-header__logo,
  .st-fixed-header.is-show .st-fixed-header__logo {
    width: calc(160/750*100vw);
    height: calc(222/750*100vw);
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .st-fixed-header__icons li:nth-child(1) {
    width: calc(75/750*100vw);
  }

  .st-fixed-header__icons li:nth-child(2) {
    width: calc(62.55/750*100vw);
  }

  .st-fixed-header__icons li:nth-child(3) {
    width: calc(93/750*100vw);
  }

  .st-fixed-header__icons {
    margin: 0 calc(20/750*100vw) 0 0;
    gap: calc(26/750*100vw);
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .st-fixed-header__icons a {
    padding: 0;
  }



  .st-fixed-header__nav,
  .st-fixed-header__search {
    display: none !important;
  }

  .st-menu-btn,
  .st-fixed-header.is-show .st-menu-btn {
    width: calc(104/750*100vw);
    height: calc(104/750*100vw);
    padding: 0 16px;
  }

  .st-menu-panel {
    overflow-y: auto;
  }

  .st-menu-close {
    top: calc(41/750*100vw);
    right: calc(26/750*100vw);
  }

  .st-menu-panel__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    max-width: none;
    padding: calc(120/750*100vw) calc(60/750*100vw) calc(140/750*100vw) calc(60/750*100vw);
    gap: calc(60/750*100vw);
  }

  .st-menu-panel__inner::before {
    display: none;
  }

  .st-menu-nav {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1;
    margin-bottom: 0;
  }

  .st-menu-nav li {
    margin-bottom: calc(40/750*100vw);
  }

  .st-menu-nav li:last-child {
    margin-bottom: 0;
  }

  .st-menu-nav a {
    font-size: calc(36/750*100vw);
  }

  .st-menu-nav span a {
    margin-top: calc(16/750*100vw);
    font-size: calc(30/750*100vw);
  }

  .st-menu-sp-search {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    order: 2;
    margin-bottom: 0;
  }

  .st-menu-sp-search form {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: calc(90/750*100vw);
    background: #F3F3F3;
  }

  .st-menu-sp-search input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 calc(30/750*100vw);
    border: none;
    background: transparent;
    font-family: var(--font-notserif);
    font-size: 16px;
  }
  .st-menu-sp-search input[type="text"]:focus{
    border: 0 !important;
  }

  .st-menu-sp-search input::-webkit-input-placeholder {
    font-family: var(--font-notserif);
  }

  .st-menu-sp-search input:-ms-input-placeholder {
    font-family: var(--font-notserif);
  }

  .st-menu-sp-search input::placeholder {
    font-family: var(--font-notserif);
  }



  .st-menu-sp-search button {
    padding-right: calc(20/750*100vw);
    width: calc(80/750*100vw);
    height: calc(80/750*100vw);
    border: none;
    background: transparent;
  }

  .st-menu-sp-search button img {
    width: 100%;
    height: auto;
  }

  .st-menu-login {
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    order: 3;
    padding-top: calc(60/750*100vw);
    border-top: 1px solid rgba(255, 255, 255, .75);
    text-align: left;
  }

  .st-menu-login__title {
    display: none;
  }

  .st-menu-login__btns {
    gap: calc(30/750*100vw);
    margin-bottom: calc(50/750*100vw);
  }

  .st-menu-login__btn {
    height: calc(109/750*100vw);
    font-size: calc(30/750*100vw);
  }

  .st-menu-login__links {
    gap: calc(20/750*100vw);
  }

  .st-menu-login__links a {
    font-size: calc(20/750*100vw);
    font-family: var(--font-notserif);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 4px;
  }
}

/* ==============================
  下層ページ：初期状態
  commonヘッダーを表示したまま固定ヘッダーも表示
============================== */

#header-inner.is-subpage:not(.is-scrolled) .st-fixed-header.is-show {
  top: 59px;
}

/* 下層ページでスクロール後は上に詰める */
#header-inner.is-subpage.is-scrolled .st-fixed-header.is-show {
  top: 0;
}

/* SP */
@media screen and (max-width: 768px) {
  #header-inner.is-subpage:not(.is-scrolled) .st-fixed-header.is-show {
    top: calc(104/750*100vw);
  }

  #header-inner.is-subpage.is-scrolled .st-fixed-header.is-show {
    top: 0;
  }
}

/* ==============================
  contact
============================== */
footer {
  margin-top: -24px;
}

.st-contact {
  padding: 90px 20px;
  background: var(--bg2);
  color: var(--bl);
}

.st-contact .st-inner {
  max-width: 820px;
  margin: 0 auto;
}

.st-contact__head {
  margin-bottom: 48px;
  text-align: center;
}

.st-contact .st-lead {
  margin-bottom: 45px;
}

h2.st-contact__title {
  padding: 0;
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: var(--semi);
  line-height: 1.2;
  letter-spacing: 0;
  font-family: var(--font-zen);
  color: var(--bl);
}

.st-contact__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .08em;
}

.st-contact__box {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
}

.st-contact__box::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 125px;
  background: var(--bg4);
}

.st-contact__tel {
  grid-column: 1;
}

.st-contact__form {
  grid-column: 3;
}

.st-contact__sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: var(--semi);
  line-height: 1.5;
  letter-spacing: .08em;
}

.st-contact__sub img {
  display: block;
  width: 23px;
}

.st-contact__number img {
  width: 59px;
}

.st-contact__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.st-contact__number a {
  color: var(--bl);
  font-size: 42px;
  line-height: 1;
  font-weight: var(--semi);
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
}

.st-contact__time {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.st-contact .st-contact__btn {
  margin: 40px auto 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 320px;
  max-width: 100%;
  min-height: 58px;
  box-sizing: border-box;
  border: 1px solid var(--bl);
  color: var(--bl);
  font-size: 16px;
  letter-spacing: .07em;
  text-decoration: none;
  transition: .3s;
}

@media screen and (max-width: 860px) {
  .st-contact__box {
    gap: 20px;
  }
}


@media screen and (max-width: 768px) {
  .st-contact {
    padding: calc(130/750*100vw) calc(40/750*100vw);
  }

  .st-contact__head {
    margin-bottom: calc(63/750*100vw);
  }

  h2.st-contact__title {
    font-size: calc(34/750*100vw);
  }

  .st-contact .st-lead {
    font-size: calc(26/750*100vw);
  }

  .st-contact__box {
    display: block;
  }

  .st-contact__box::before {
    display: none;
  }

  .st-contact__tel {
    margin-bottom: calc(63/750*100vw);
    padding-bottom: calc(63/750*100vw);
    border-bottom: 1px solid var(--bg4);
  }

  .st-contact__sub {
    margin-bottom: calc(43/750*100vw);
    font-size: calc(32/750*100vw);
  }


  .st-contact__number {
    gap: calc(5/750*100vw);
    margin-bottom: calc(27/750*100vw);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }


  .st-contact__number a {
    font-size: calc(67/750*100vw);
  }

  .st-contact__time {
    font-size: calc(26/750*100vw);
  }

  .st-contact__btn {
    width: calc(500/750*100vw);
    font-size: calc(30/750*100vw);
  }

  .st-contact .st-contact__btn {
    margin-top: calc(50/750*100vw);
  }
}

/* ==============================
  footer
============================== */

.st-footer {
  background: #fff;
  color: var(--bl);
}

.st-footer__main {
  padding: 100px 20px 60px 20px;
}

.st-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 90px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  align-items: start;
}

.st-footer__left {
  text-align: center;
}

.st-footer__group-logo {
  margin-bottom: 24px;
}

.st-footer__group-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.st-footer__company {
  margin-bottom: 20px;
}

.st-footer__label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 84px;
  height: 25px;
  margin-bottom: 12px;
  border: 1px solid var(--bl);
  color: var(--bl);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}

.st-footer__company {
  text-align: left;
}

.st-footer__company img {
  display: block;
  max-width: 100%;
  height: auto;
}

.st-footer__site-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.st-footer__site-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 179px;
  min-height: 38px;
  border: 1px solid var(--bl);
  color: var(--bl);
  font-size: 13px;
  letter-spacing: 0;
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}
a.st-footer__site-btn:link{
  color: var(--bl);
}

.st-footer__nav-block {
  margin-bottom: 38px;
}

.st-footer__nav-block:last-child {
  margin-bottom: 0;
}

.st-footer__nav-block h2 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0;
  font-family: var(--font-Cormorant);
  font-weight: var(--bold);
}

.st-footer__nav-block ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-footer__nav-block li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
}

.st-footer__nav-block li:not(:last-child)::after {
  content: "/";
  margin: 0 14px;
}

.st-footer__nav-block a {
  color: var(--bl);
  text-decoration: none;
  transition: color .3s ease;
}

.st-footer__copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 17px 20px;
  background: var(--bl);
  color: #fff;
  text-align: center;
}

.st-footer__copy small {
  font-size: 12px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .st-footer__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .st-footer__main {
    padding: calc(130/750*100vw) calc(40/750*100vw) calc(90/750*100vw) calc(40/750*100vw);
  }

  .st-footer__inner {
    grid-template-columns: 1fr;
    gap: calc(87/750*100vw);
  }

  .st-footer__group-logo {
    margin-bottom: calc(40/750*100vw);
  }

  .st-footer__group-logo img {
    width: calc(460/750*100vw);
  }

  .st-footer__company {
    margin-bottom: calc(26/750*100vw);
  }

  .st-footer__label {
    min-width: calc(150/750*100vw);
    height: calc(40/750*100vw);
    margin-bottom: calc(18/750*100vw);
    font-size: calc(20/750*100vw);
  }

  .st-footer__company img {
    width: calc(460/750*100vw);
  }

  .st-footer__site-btn-wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }

  .st-footer__site-btn {
    width: calc(257/750*100vw);
    min-height: calc(62/750*100vw);
    font-size: calc(24/750*100vw);
  }


  .st-footer__nav-block {
    margin-bottom: calc(63/750*100vw);
  }

  .st-footer__nav-block h2 {
    margin: 0 0 calc(40/750*100vw);
    font-size: calc(46/750*100vw);
  }

  .st-footer__nav-block li {
    font-size: calc(26/750*100vw);
  }

  .st-footer__nav-block li:not(:last-child)::after {
    content: "/";
    margin: 0 .5em;
  }

  .st-footer__copy {
    padding: calc(30/750*100vw) 10px;
    background: var(--bl);
    color: #fff;
    text-align: center;
  }

  .st-footer__copy small {
    font-size: calc(20/750*100vw);
  }
}

/* ==============================
  hover
============================== */
@media screen and (min-width: 769px) {
  .st-fixed-header__nav a:after {
    margin-top: 5px;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: .5s;
  }

  .st-fixed-header__nav a:hover:after {
    background-color: var(--bl);
  }

  .st-btn:hover,
  .st-contact__btn:hover {
    color: #fff;
    background-color: var(--hover);
    border: 1px solid var(--hover);
    opacity: 1;
  }

  .st-footer__nav-block a:hover {
    opacity: .5;
  }

  .st-menu-login__links a:hover {
    opacity: .5;
  }

  a.st-menu-login__btn:hover {
    opacity: .5;
  }

  .st-menu-nav a:hover {
    color: var(--hover);
  }
  .st-menu-nav a:link{
    color: #fff !important;
  }
}

/* ==============================
  動き
============================== */
/* ふわっとフェードイン */
.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* 少し遅れて表示したい時 */
.fadein-delay-01 {
  transition-delay: .15s;
}

.fadein-delay-02 {
  transition-delay: .3s;
}

.fadein-delay-03 {
  transition-delay: .45s;
}

/* ==============================
  category
============================== */
#main-column {
  margin: 0 auto;
  width: 1200px;
  max-width: 100%;
}

#itemList .item-list-span-img {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
}

#itemList .item-list-span-img img {
  -o-object-fit: cover;
  object-fit: cover;
}

#itemList_wrap #pager-bm:last-child {
  text-align: right;
}

#itemList_wrap #pager-top .pagerlist {
  display: none;
}

#itemList_wrap #pager-bm .pagerlist ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
}

#itemList_wrap #pager-top .pagerlist,
#itemList_wrap #pager-bm .pagerlist {
  float: none;
}

#itemList_wrap #pager-bm .quantity {
  display: none;
}

#itemList_wrap #pager-bm ul li {
  float: none;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 40px;
  font-weight: var(--regu);
}

#itemList_wrap #pager-bm ul li.selected {
  background-color: var(--bl);
  color: #fff;
  width: 40px;
}

#itemList_wrap #pager-bm ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  text-align: center;
  border: 1px solid #BDBDBD;

}

#itemList_wrap #pager-bm ul li a[title="次へ"],
#itemList_wrap #pager-bm ul li a[title="最後へ"],
#itemList_wrap #pager-bm ul li a[title="前へ"],
#itemList_wrap #pager-bm ul li a[title="最初へ"] {
  width: 58px;
}

#itemList .column-set {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 3.33%;
}

.column4 {
  float: none;
  width: auto;
  margin: 0;
  padding-bottom: 0px;
}

#itemList_wrap #pager-bm {
  padding: 0px;
}

.column4:nth-child(4n+1),
.column4:nth-child(3n+1) {
  clear: none;
}

.column4:nth-child(4n) {
  margin: 0;
}

body:has(#itemList_wrap form[name="ITEMLIST"][action*="/list.html"]) .header_area {
  margin: 35px 0 20px 0;
}

body:has(#itemList_wrap form[name="ITEMLIST"][action*="/list.html"]) #bread-crumb + h1 {}

body:has(#itemList_wrap form[name="ITEMLIST"]) #bread-crumb + h1 {
  margin-bottom: 11px;
  line-height: 1.76;
}

footer {
  margin-top: 110px;
}

#itemList_wrap #pager-top {
  padding: 0;
}

.column4 p.sps-itemList-stockDisp,
.column5 p.sps-itemList-stockDisp {
  padding: 8px;
  margin: 10px 0 0;
  background-color: #F3F3F3;
  color: var(--bl);
  text-align: center;
  font-size: 12px;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  #itemList_wrap #pager-bm ul li {
    transition: .5;
  }

  #itemList_wrap #pager-bm ul li:hover {
    opacity: .5;
  }

  #itemList_wrap #pager-top .selectbox .select01,
  #itemList_wrap #pager-top .selectbox .select01:last-child {
    padding-left: 10px;
  }

  select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("https://www.kenkosansai.net/asset/img/arrow-select-pc.png");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 7px;
  }

  /* IE対策 */
  select::-ms-expand {
    display: none;
    background-repeat: no-repeat;

  }
}

@media screen and (max-width: 768px) {
  #main-column {
    padding-left: calc(40/750*100vw);
    padding-right: calc(40/750*100vw);
  }

  #itemList_wrap #pager-top .selectbox,
  #itemList_wrap #pager-bm .selectbox {
    margin-bottom: calc(6/750*100vw);
    font-size: calc(26/750*100vw);
    text-align: left;
    line-height: 1.35;
  }

  #itemList_wrap #pager-top .selectbox .select01 {
    margin: calc(11/750*100vw) 0 calc(21/750*100vw);
    height: calc(66/750*100vw);
    font-size: calc(26/750*100vw);
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    background-color: #fff !important;
    background-image: url("https://www.kenkosansai.net/asset/img/arrow-select.png") !important;
    background-repeat: no-repeat !important;
    background-size: calc(24 / 750 * 100vw) calc(14 / 750 * 100vw) !important;
    background-position: right calc(20 / 750 * 100vw) center !important;

    padding: 0 calc(70 / 750 * 100vw) 0 calc(20 / 750 * 100vw) !important;
    font-size: calc(28/750*100vw);
    color: var(--bl);
  }

  #itemList_wrap #pager-top .quantity {
    padding-bottom: 0;
    line-height: 1;
    text-align: left;
    letter-spacing: 0;
    font-size: calc(26/750*100vw);
    border-bottom: none;
  }

  #itemList {
    margin-top: calc(80/750*100vw);
  }

  #itemList_wrap #pager-bm:last-child {
    text-align: left;
  }

  article #main-column #itemList section.column4 h2,
  article #main-column #itemList section.column4 h2,
  article #main-column #itemList section.column4 h2 {
    margin-bottom: calc(25/750*100vw);
    font-size: 3.2vw;
    line-height: 1.54;
    font-weight: var(--regu);
  }

  .column4 .itemThumb-wrap,
  .column5 .itemThumb-wrap {
    margin: 0 0 calc(17/750*100vw) 0;
  }

  #main-column #itemList .column4 p.price {
    font-size: calc(26/750*100vw);
    font-weight: var(--semi);
    line-height: 1;
  }

  #main-column #itemList .taxin {
    font-size: calc(20/750*100vw);
    font-weight: var(--regu);
  }

  #itemList .column4 p.sps-itemList-stockDisp,
  #itemList .column5 p.sps-itemList-stockDisp,
  .column4 p.sps-itemList-stockDisp,
  .column5 p.sps-itemList-stockDisp {
    padding: calc(15/750*100vw);
    margin: calc(20/750*100vw) 0 0;
    font-size: calc(22/750*100vw);
  }

  #itemList_wrap #pager-bm .pagerlist ul {
    gap: calc(14/750*100vw);
    font-size: calc(23/750*100vw);
  }

  #itemList_wrap #pager-bm ul li {
    font-size: calc(23/750*100vw);
    height: calc(70/750*100vw);
  }

  #itemList_wrap #pager-bm ul li.selected {
    width: calc(70/750*100vw);
  }

  #itemList_wrap #pager-bm ul li a {
    height: calc(70/750*100vw);
    width: calc(70/750*100vw);

  }

  #itemList_wrap #pager-bm ul li a[title="次へ"],
  #itemList_wrap #pager-bm ul li a[title="最後へ"],
  #itemList_wrap #pager-bm ul li a[title="前へ"],
  #itemList_wrap #pager-bm ul li a[title="最初へ"] {
    width: calc(127/750*100vw);
  }

  #itemList .column-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(74/750*100vw) calc(30/750*100vw);
  }

  .column4 {}

  #itemList_wrap #pager-bm {
    margin-top: calc(84/750*100vw);
    padding: 0px;
  }

  .column4:nth-child(4n+1),
  .column4:nth-child(3n+1) {
    clear: none;
  }

  .column4:nth-child(4n) {
    margin: 0;
  }

  body:has(#itemList_wrap form[name="ITEMLIST"][action*="/list.html"]) .header_area {
    margin: calc(32/750*100vw) 0;
  }

  body:has(#itemList_wrap form[name="ITEMLIST"]) #bread-crumb {
    display: none;
  }

  body:has(#itemList_wrap form[name="ITEMLIST"]) #bread-crumb + h1 {
    font-size: calc(40/750*100vw);
    margin-bottom: calc(25/750*100vw);

  }

  footer {
    margin-top: calc(200/750*100vw);
  }

  #itemList_wrap #pager-top {
    padding: 0;
  }
}



#itemList_wrap #pager-top .selectbox .select01:last-child {
  margin-right: 0;
}

/* ==============================
  商品ページ
============================== */
.itemThumb-wrap img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.itemThumb-main + .itemThumb img {
  border: 1px solid #BDBDBD !important;
}

section#itemDetail-wrap table.spec {
  margin: 0 0 0 0;
}

table.spec {
  width: 100%;
}

table.spec tbody {
  display: block;
}

section#itemDetail-wrap table.spec th {
  padding: 16px 0 0 0;
  font-size: 14px;
  width: 80px;
  vertical-align: middle;
}

section#itemDetail-wrap table.spec td {
  padding: 16px 0 0 0;
  font-size: 14px;
  width: calc(100% - 80px);
  min-height: 32px;
}

table.spec tr.date {
  width: 100%;
  padding: 0;
  margin: 0 0 16px;
  background: #FAF7EF;
  box-sizing: border-box;
  display: block;
}

section#itemDetail-wrap table.spec tr.date th,
section#itemDetail-wrap table.spec tr.date td {
  display: block;
  padding: 15px 20px;
  border: none;
  color: #646464;
  font-size: 14px;
  font-weight: var(--regu);
  line-height: 1.6;
  width: 100% !important;
  font-family: var(--font-notsans);
  letter-spacing: 0;
}

table.spec tr.quantityArea,
table.spec tr.option_area {
  display: block;
}

section#itemDetail-wrap table.spec .quantityArea th,
section#itemDetail-wrap table.spec .quantityArea td,
section#itemDetail-wrap table.spec .option_area th,
section#itemDetail-wrap table.spec .option_area td {
  display: block;
  width: 100% !important;
  box-sizing: border-box;
}

section#itemDetail-wrap table.spec .quantityArea th,
section#itemDetail-wrap table.spec .option_area th {
  padding: 20px 0 0 0;
}

section#itemDetail-wrap table.spec .quantityArea td,
section#itemDetail-wrap table.spec .option_area td {
  padding: 9px 0 0 0;
}

table.spec tr.date td br {
  display: none;
}

#js-item-code {
  margin: 10px 0 8px 0;
  font-size: 14px;
  line-height: 1.78;
}

/* 販売期間行が無い場合：先頭のoption_area */
section#itemDetail-wrap table.spec > tbody > tr:nth-child(2) {
  border-top: 1px solid #BDBDBD;

}

section#itemDetail-wrap table.spec tr.quantityArea td select.quantity,
section#itemDetail-wrap table.spec tr.quantityArea td input.quantity,
section#itemDetail-wrap table.spec tr.quantityArea td input,
section#itemDetail-wrap table.spec tr.option_area td select.option_parts,
section#itemDetail-wrap table.spec tr.option_area td input.option_parts,
section#itemDetail-wrap table.spec tr.option td input {
  width: 312px !important;
  height: 42px !important;
  padding-left: 9px;
}

section#itemDetail-wrap table.spec td input {
  padding: 0 11px;
  height: 32px !important;
  width: 58px;
  border: 1px solid var(--bl);
  text-align: right;
  font-size: 14px;
}

section#itemDetail-wrap table.spec th.js-spec-label {
  position: relative;
  min-height: 32px;
  line-height: 1;
}

section#itemDetail-wrap table.spec th.js-spec-label:after {
  content: "：";
  position: absolute;
  right: 0;
  top: calc(50% + 8px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

section#itemDetail-wrap table.spec th.js-spec-label + td {
  line-height: 1;
  padding-left: 20px;
}

.js-item-card-img {
  margin-top: 28px;
  margin-bottom: 25px;
  max-width: 466px;
}

div#main-column section#itemDetail-wrap p.review_txt {
  color: var(--bl);
}

section#itemDetail-wrap p.cancel {
  font-size: 13px;
  padding: 0 0 0 30px;
  background-image: url(https://www.kenkosansai.net/pic-labo/icon-return.png);
  background-repeat: no-repeat;
  background-size: 23px;
  background-position: left center;
  margin-bottom: 14px;
  line-height: 23px;
}

section#itemDetail-wrap p.review_txt {
  font-size: 13px;
  padding: 0 0 0 30px;
  background-image: url(https://www.kenkosansai.net/pic-labo/icon-review.png);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: left top;
  line-height: 23px;
}

section#itemDetail-wrap .description {
  text-align: center;
}

.item-info {}

#main-column h2.item-info__title,
#main-column section.userreview h2 {
  padding: 0;
  margin: 0 0 24px;
  color: var(--bl);
  font-size: 20px !important;
  font-weight: var(--midi);
  letter-spacing: 0.05em;
  text-align: left;
  font-family: var(--font-notserif);
}

#itemDetail-wrap table[bgcolor="#999"] {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #BDBDBD;
  table-layout: fixed;
}

#itemDetail-wrap table[bgcolor="#999"] th,
#itemDetail-wrap table[bgcolor="#999"] td {
  border-bottom: 1px solid #BDBDBD;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: var(--regu);
  line-height: 1.57;
  vertical-align: middle;
  text-align: left;
  color: var(--bl);
}

#itemDetail-wrap table[bgcolor="#999"] th {
  width: 250px;
  background: var(--bg1);
  border-right: none;
}

#itemDetail-wrap table[bgcolor="#999"] td {
  background: #fff;
  border-left: none;
}

#itemDetail-wrap table[bgcolor="#999"] a {
  color: var(--bl);
  text-decoration: underline;
  text-underline-offset: 3px;
}

section#itemDetail-wrap .description {
  margin-top: 40px;
}



article#Detail #main-column section.recommend {
  margin-top: 100px;
  padding-top: 95px;
  padding-bottom: 100px;
}

.recommend .column-set {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.75%;
}

article#Detail section.column5 {
  clear: none !important;
}

.recommend .column-set .column5 {
  width: auto;
  margin: 0;
  padding: 0;
}

.recommend .column5 p.st-item-price {
  font-size: 22px;
  text-align: center;
  font-weight: var(--semi);
  line-height: 1.2;
}

.recommend .column5 p.st-item-price span {
  font-size: 15px;
}

.recommend .column4 .itemThumb,
.column5 .itemThumb {
  margin-bottom: 0;
}

.recommend .column-set .column5 .itemThumb-wrap {
  margin-bottom: 18px;
}

.recommend .column-set .column5 h3 {
  font-size: 16px;
  text-align: center;
  letter-spacing: .05em;
  line-height: 1.75;
  font-weight: var(--regu);
}

.recommend .column-set .column5 .fx_price {
  display: none;
}

#main-column .recommend h2 {
  padding: 0;
  margin: 0 0 24px;
  color: var(--bl);
  font-size: 20px;
  font-weight: var(--midi);
  letter-spacing: 0.05em;
  text-align: left;
  font-family: var(--font-notserif);
}

div#main-column > section.recommend {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  background-color: var(--bg1);
}

.recommend > form {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
}

.recommend .quantityArea {
  display: none;
}

.itemThumb-wrap .js-zoom-text {
  display: block;
  margin-top: 15px;
  text-align: center;
  color: var(--bl);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
  cursor: pointer;
}

.itemThumb-wrap .itemThumb-main + .js-zoom-text {
  margin: 0;
}

.lp-bred {
  margin-left: auto;
  margin-right: auto;
  width: 666px;
  max-width: 100%;
  font-family: var(--font-notsans);
  text-align: left;
  font-size: 13.12px;
  line-height: 1.3;
  letter-spacing: 0;
}

.lp-bred .bordlayoutp3 table {
  width: auto;
  border: 1px solid #967169;
}

.lp-bred .bordlayoutp3 table td {
  border: 1px solid #967169;
}

.lp-bred strong {
  font-weight: var(--bold);
}

.item-course-line dl {
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 1px solid #BDBDBD;
  border-left: 1px solid #BDBDBD;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;

}

.item-course-line dt,
.item-course-line dd {
  border-bottom: 1px solid #BDBDBD;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: var(--regu);
  line-height: 1.57;
  vertical-align: middle;
  text-align: left;
  color: var(--bl);
  float: none;
}

.item-course-line dt {
  margin: 0;
  width: 250px;
  background: var(--bg1);
  border-right: none;
  clear: none;
}

.item-course-line dd {
  background: #fff;
  border-left: none;
  width: calc(100% - 250px);
  border-right: 1px solid #BDBDBD;
}

.item-course-line {
  width: 100%;
  background: none;
  padding: 0 0 0 0;
  clear: none;
  margin: 0 0 0 0;
}

.lp-bred .clearfix p {
  color: #744338;
}

html > body div.item-course-line {
  padding: 0;
}

article#Detail #main-column h1 {
  font-weight: var(--semi);
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

section#itemDetail-wrap .description2 {
  margin-bottom: 75px;
}

section#itemDetail-wrap .cartArea {
  margin-bottom: 0;
}

#cartButton {
  margin-top: 34px;
  width: 370px;
  max-width: 100%;
}

article#Detail .itemOutline ul.infoArea {
  margin: 0;
  height: auto;
}

section#itemDetail-wrap table.price .fx_price th,
section#itemDetail-wrap table.price .fx_price td {
  padding-bottom: 10px !important;
}

.item-tag-off {
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .item-info {
    margin-top: calc(60 / 750 * 100vw);
  }

  .item-info__title {
    margin-bottom: calc(24 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
  }

  #itemDetail-wrap table[bgcolor="#999"],
  #itemDetail-wrap table[bgcolor="#999"] tbody,
  #itemDetail-wrap table[bgcolor="#999"] tr,
  #itemDetail-wrap table[bgcolor="#999"] th,
  #itemDetail-wrap table[bgcolor="#999"] td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }


  #itemDetail-wrap table[bgcolor="#999"] tr:last-child {
    border-bottom: none;
  }

  #itemDetail-wrap table[bgcolor="#999"] th,
  #itemDetail-wrap table[bgcolor="#999"] td {
    border: none;
    padding: calc(24 / 750 * 100vw) calc(28 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
  }

  #itemDetail-wrap table[bgcolor="#999"] th {
    background: #fbf7ef;
  }

  #itemDetail-cont {
    margin: calc(39/750*100vw) 0 0 0;
  }

  .itemThumb ul {
    -webkit-column-gap: calc(13 / 750 * 100vw);
    column-gap: calc(13 / 750 * 100vw);
    row-gap: calc(13 / 750 * 100vw);
  }

  #itemDetail-cont .itemThumb-wrap .itemThumb ul li {
    margin-right: 0;
    width: auto;
  }

  #itemDetail-cont .itemThumb-wrap .itemThumb-main img {
    margin: 0 0 calc(30 / 750 * 100vw) 0;
  }

  section#itemDetail-wrap table.price th {
    padding-bottom: calc(28 / 750 * 100vw);
  }

  section#itemDetail-wrap table.price td {
    padding-left: calc(40 / 750 * 100vw);
    padding-bottom: calc(28 / 750 * 100vw);
    vertical-align: middle !important;
  }


  section#itemDetail-wrap table.spec {
    margin: 0 0 0 0;
  }



  section#itemDetail-wrap table.spec th {
    padding: calc(29 / 750 * 100vw) 0 0 0;
    font-size: calc(28 / 750 * 100vw);
    width: calc(146 / 750 * 100vw);
    vertical-align: middle;
  }

  section#itemDetail-wrap table.spec td {
    padding: calc(45 / 750 * 100vw) 0 0 0;
    font-size: calc(28 / 750 * 100vw);
    width: calc(100% - calc(146 / 750 * 100vw));
    min-height: calc(86 / 750 * 100vw);
  }

  table.spec tr.date {
    margin: 0 0 calc(40 / 750 * 100vw);
  }

  section#itemDetail-wrap table.spec tr.date th,
  section#itemDetail-wrap table.spec tr.date td {
    display: block;
    padding: calc(25 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
    font-weight: var(--regu);
    line-height: 1.53;
  }

  section#itemDetail-wrap table.spec .quantityArea th,
  section#itemDetail-wrap table.spec .option_area th {
    padding: calc(45 / 750 * 100vw) 0 0 0;
  }

  section#itemDetail-wrap table.spec .quantityArea td,
  section#itemDetail-wrap table.spec .option_area td {
    padding: calc(20 / 750 * 100vw) 0 0 0;
  }

  #js-item-code {
    margin: calc(30 / 750 * 100vw) 0 calc(22 / 750 * 100vw) 0;
    font-size: calc(28 / 750 * 100vw);
    line-height: 1;
  }

  article#Detail #main-column h1 {
    line-height: 1.78;
  }



  section#itemDetail-wrap table.spec tr.quantityArea td select.quantity,
  section#itemDetail-wrap table.spec tr.quantityArea td input.quantity,
  section#itemDetail-wrap table.spec tr.quantityArea td input,
  section#itemDetail-wrap table.spec tr.option_area td select.option_parts,
  section#itemDetail-wrap table.spec tr.option_area td input.option_parts,
  section#itemDetail-wrap table.spec tr.option td input {
    width: 100% !important;
    height: calc(86 / 750 * 100vw) !important;
    font-size: calc(26/750*100vw);
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    background-color: #fff !important;
    background-image: url("https://www.kenkosansai.net/asset/img/arrow-select.png") !important;
    background-repeat: no-repeat !important;
    background-size: calc(24 / 750 * 100vw) calc(14 / 750 * 100vw) !important;
    background-position: right calc(20 / 750 * 100vw) center !important;

    padding: 0 calc(70 / 750 * 100vw) 0 calc(20 / 750 * 100vw) !important;
    color: var(--bl);


  }

  section#itemDetail-wrap table.spec td input {
    padding: 0 calc(18 / 750 * 100vw);
    height: calc(65 / 750 * 100vw) !important;
    width: calc(90 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
    border: 1px solid #BDBDBD;
  }

  section#itemDetail-wrap table.spec th.js-spec-label {
    position: relative;
    min-height: calc(65 / 750 * 100vw);
  }

  section#itemDetail-wrap table.price th {
    width: calc(165 / 750 * 100vw) !important;
  }

  section#itemDetail-wrap table.spec th.js-spec-label:after {
    content: "：";
    position: absolute;
    right: 0;
    top: calc(50% + 8px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  section#itemDetail-wrap table.spec th.js-spec-label + td {
    line-height: 1;
    padding-left: calc(40 / 750 * 100vw);
  }

  .js-item-card-img {
    margin-top: calc(49 / 750 * 100vw);
    margin-bottom: calc(30 / 750 * 100vw);
    width: 100%;
  }

  div#main-column section#itemDetail-wrap p.review_txt {
    color: var(--bl);
  }

  section#itemDetail-wrap p.cancel {
    font-size: 3.2vw;
    padding: 0 0 0 calc(50 / 750 * 100vw);
    background-size: calc(37 / 750 * 100vw);
    background-position: left center;
    margin-bottom: calc(21 / 750 * 100vw);
    line-height: 1.2;
  }

  section#itemDetail-wrap p.review_txt {
    font-size: 3.2vw;
    padding: 0 0 0 calc(50 / 750 * 100vw);
    background-size: calc(29 / 750 * 100vw);
    background-position: left top calc(3 / 750 * 100vw);
    line-height: 1.2;
  }

  /**商品情報**/
  #main-column h2.item-info__title,
  #main-column section.userreview h2 {
    padding: calc(24 / 750 * 100vw) calc(40 / 750 * 100vw);
    margin: 0 0 calc(50 / 750 * 100vw);
    color: var(--bl);
    font-size: calc(30 / 750 * 100vw) !important;
    letter-spacing: 0.05em;
    text-align: left;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: var(--bg1);
    font-family: var(--font-zen);
    font-weight: var(--semi);
    line-height: 1.2;
  }

  #itemDetail-wrap table[bgcolor="#999"] {
    border: none;
    border-top: 1px solid #BDBDBD;
    border-left: 1px solid #BDBDBD;
    border-top: 1px solid #BDBDBD;
    border-right: 1px solid #BDBDBD;
  }

  #itemDetail-wrap table[bgcolor="#999"] th,
  #itemDetail-wrap table[bgcolor="#999"] td {
    border: none;
    border-bottom: 1px solid #BDBDBD;
    padding: calc(23 / 750 * 100vw) calc(20 / 750 * 100vw);
    font-size: 3.2vw;
    line-height: 1.45;
  }

  #itemDetail-wrap table[bgcolor="#999"] th {
    width: 100%;
  }

  #itemDetail-wrap table[bgcolor="#999"] td {
    background: #fff;
    border-left: none;
  }

  #itemDetail-wrap table[bgcolor="#999"] a {
    color: var(--bl);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  section#itemDetail-wrap .description {
    margin-top: calc(100 / 750 * 100vw);
  }



  article#Detail #main-column section.recommend {
    margin-top: calc(100 / 750 * 100vw);
    padding: calc(92 / 750 * 100vw) calc(40 / 750 * 100vw) calc(112 / 750 * 100vw) calc(40 / 750 * 100vw);

  }

  .recommend .column-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(74 / 750 * 100vw) calc(28 / 750 * 100vw);
  }

  .recommend .column5 p.st-item-price {
    font-size: calc(28 / 750 * 100vw);
    text-align: center;
    font-weight: var(--semi);
    line-height: 1.2;
  }

  .recommend .column5 p.st-item-price span {
    font-size: calc(20 / 750 * 100vw);
  }

  .recommend .column4 .itemThumb,
  .column5 .itemThumb {
    margin-bottom: 0;
  }

  .recommend .column-set .column5 .itemThumb-wrap {
    margin-bottom: calc(21 / 750 * 100vw);
  }

  .recommend .column-set .column5 h3 {
    font-size: 3.2vw;
    line-height: 1.54;
    font-weight: var(--regu);
  }

  .recommend .column-set .column5 .fx_price {
    display: none;
  }

  #main-column .recommend h2 {
    padding: 0;
    margin: 0 0 calc(36 / 750 * 100vw);
    color: var(--bl);
    font-size: calc(30 / 750 * 100vw);
    font-weight: var(--semi);
    letter-spacing: 0.05em;
    text-align: left;
    font-family: var(--font-zen);
  }

  div#main-column > section.recommend {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    background-color: var(--bg1);
  }

  .itemThumb-wrap .js-zoom-text {
    display: none;
  }

  /**パンLP**/
  .lp-bred {
    margin-left: auto;
    margin-right: auto;
    width: 666px;
    max-width: 100%;
    font-family: var(--font-notsans);
    text-align: left;
    font-size: 13.12px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .lp-bred > .clearfix {
    background-image: url("../../hpgen/HPB/img/item/premium/recipe_bg.jpg"), url("../img/recipe_bg.jpg") !important;
    background-repeat: no-repeat !important;
    background-size: 100% !important;
    background-position: left bottom, left top 25px !important;
  }

  .lp-bred .bordlayoutp3 p[style="float: left;"] {
    float: none;
  }

  .lp-bred .bordlayoutp3 table {
    float: none;
    width: auto;
    border: 1px solid #967169;
  }

  .lp-bred .bordlayoutp3 table td {
    border: 1px solid #967169;
  }

  .lp-bred p:has(img[src*="recipe_img.gif"]) {

    margin: 0 auto 18px auto !important;
    display: block;
  }

  .lp-bred p:has(img[src*="recipe_img.gif"]) {
    width: 100%;
    text-align: center;
  }

  .lp-bred .clearfix .clearfix + p {
    /* 電子オーブンレンジのみでの調理について のp */
    padding-right: 0 !important;
  }

  .lp-bred strong {
    font-weight: var(--bold);
  }

  .item-course-line dl {
    padding: 0;
    margin: 0;
    width: 100%;
    border-top: 1px solid #BDBDBD;
    border-left: 1px solid #BDBDBD;
    border-right: 1px solid #BDBDBD;
    display: block;

  }

  section.userreview {
    padding: 0;
    margin-bottom: 0;
  }

  section#itemDetail-wrap .description2 {
    margin-bottom: calc(100 / 750 * 100vw);
  }
}



#itemDetail-cont .itemThumb-wrap .itemThumb ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-scroll-snap-type: x proximity;
  -ms-scroll-snap-type: x proximity;
  scroll-snap-type: x proximity;
}

#itemDetail-cont .itemThumb-wrap .itemThumb ul li {
  float: none;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
  scroll-snap-align: start;
  width: 105px;
  height: 105px;
}

/* 商品サムネイル */
#itemDetail-wrap .itemThumb li img {
  box-sizing: border-box;
  border: 2px solid transparent !important;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 選択中のサムネイル */
#itemDetail-wrap .itemThumb li img.is-thumb-active {
  border-color: var(--red) !important;
}

@media screen and (max-width: 768px) {

  .item-course-line dt,
  .item-course-line dd {
    border-bottom: 1px solid #BDBDBD;
    padding: calc(23 / 750 * 100vw) calc(20 / 750 * 100vw);
    font-size: 3.2vw;
    line-height: 1.45;
    width: 100%;
  }

  .item-course-line dt {
    margin: 0;
    background: var(--bg1);
    border-right: none;
    clear: none;
  }

  .item-course-line dd {
    background: #fff;
    border-left: none;
    border-right: none;
  }

  .item-course-line {
    width: 100%;
    background: none;
    padding: 0 0 0 0;
    clear: none;
    margin: 0 0 0 0;
  }

  .lp-bred p[style*="background-color:#F9F6EF"] + div,
  .lp-bred p[style*="background-color: #F9F6EF"] + div {
    width: 100% !important;
    height: auto !important;
    margin: calc(40 / 750 * 100vw) 0 !important;
    padding-left: 54%;
    background-size: 100% auto !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    box-sizing: border-box;
    clear: both;
  }

  .lp-bred p[style*="background-color:#F9F6EF"] + div[style*="margin: 20px 0 50px 0"] {
    padding-left: 0;
    padding-right: 54%;
  }

  .lp-bred span[style*="width: 265px"] {
    width: auto !important;
  }

  .lp-bred p[style*="background-color:#F9F6EF"] + div[style*="margin: 20px 0 50px 0"][style*="delicious_img_004.jpg"] {
    padding-right: 0;
    padding-left: 54%;
  }

  .lp-bred p[style*="background-color:#F9F6EF"] + div > p,
  .lp-bred p[style*="background-color: #F9F6EF"] + div > p {
    padding: calc(50 / 750 * 100vw) calc(30 / 750 * 100vw) 0 !important;
    margin: 0 !important;
    color: #744338 !important;
    font-size: 3.2vw !important;
    line-height: 1.2;
    box-sizing: border-box;
    clear: both;
  }

  .lp-bred p[style*="background-color:#F9F6EF"] + div > p img,
  .lp-bred p[style*="background-color: #F9F6EF"] + div > p img {
    max-width: 70%;
    height: auto;
    margin-bottom: calc(20 / 750 * 100vw) !important;

  }

  .item-com-line > div {
    margin-bottom: 0 !important;
    background-size: calc(150 / 750 * 100vw);
    height: auto !important;
    font-size: 3.2vw;
    background-position: center left !important;
  }

  section#itemDetail-wrap .description .item-com-line p {
    padding: 20px 10px 20px 0 !important;
  }

  .item-com-line {
    width: 100%;
  }

  html > body div.item-course-line {
    padding: 0;
  }

  section#itemDetail-wrap .cartArea {
    margin-bottom: 0;
  }

  #cartButton {
    margin-top: calc(60/750*100vw);
  }

  #itemDetail-cont .itemThumb-wrap .itemThumb ul li {
    width: calc(123/750*100vw);
    height: calc(123/750*100vw);
  }

  section#itemDetail-wrap table.price .fx_price th,
  section#itemDetail-wrap table.price .fx_price td {
    padding-bottom: calc(10/750*100vw) !important;
  }

  .item-tag-off {
    padding-top: calc(12/750*100vw);
    padding-bottom: calc(12/750*100vw);
    line-height: 1;
  }
}

/* ==============================
  お客様の声
============================== */
section.userreview table.userreview_list {
  padding: 25px 0 0 0;
  width: 100%;
  margin: 0 0 0 0;
  border-bottom: 1px solid #BDBDBD;
  font-family: var(--font-notserif);
  letter-spacing: 0;
  color: var(--bl);
  font-weight: var(--regu);
}

section.userreview table.userreview_list:nth-child(2) {
  border-top: 1px solid #BDBDBD;
}

section.userreview div.more {
  margin: 28px 0 0 0;
}

section.userreview table.userreview_list tr td.userreview_user {
  padding-top: 25px;
  font-size: 13px;
  line-height: 1;
  color: var(--bl)
}

section.userreview table.userreview_list tr td.userreview_date {
  padding-top: 25px;
  font-size: 12px;
  text-align: right;
  line-height: 1;
  color: #646464;
}


section.userreview table.userreview_list td.userreview_rate {
  padding-top: 13px;
  font-size: 0;
  line-height: 1;
  font-weight: var(--regu);
}

section.userreview table.userreview_list td.userreview_rate img {
  font-size: initial;
  display: inline-block;
  vertical-align: middle;
}

section.userreview table.userreview_list td.userreview_rate img {
  vertical-align: middle;
}

section.userreview table.userreview_list td.userreview_comment {
  padding: 13px 0 22px;
  line-height: 1.46;
  font-size: 13px;
}

section.userreview .userreview_comment .reviewBox_item {
  margin: 0;
}

img[src*="rate_on.png"] {
  content: url("../img/rate_on.png");
  width: 12px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right:0;
}

img[src*="rate_off.png"] {
  content: url("../img/rate_off.png");
  width: 12px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}

img[src*="rate_half.png"] {
  content: url("../img/rate_half.png");
  width: 12px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  section.userreview table.userreview_list {
    padding: 0 0 0 0;
  }

  section.userreview div.more {
    margin: calc(60/750*100vw) 0 0 0;
  }

  section.userreview table.userreview_list tr td.userreview_user {
    padding-top: calc(60/750*100vw);
    font-size: 3.2vw;
  }

  section.userreview table.userreview_list tr td.userreview_date {
    padding-top: calc(60/750*100vw);
    font-size: calc(20/750*100vw);
  }


  section.userreview table.userreview_list td.userreview_rate {
    padding-top: calc(29/750*100vw);
  }

  section.userreview table.userreview_list td.userreview_comment {
    padding: calc(29/750*100vw) 0 calc(56/750*100vw);
    line-height: 1.33;
    font-size: 3.2vw;
  }

  section.userreview .userreview_comment .reviewBox_item {
    margin: 0;
  }

  img[src*="rate_on.png"] {
    width: calc(30/750*100vw);
  }

  img[src*="rate_off.png"] {
    width: calc(30/750*100vw);
  }

  img[src*="rate_half.png"] {
    width: calc(30/750*100vw);
  }
}

.append {
  display: none;
}

.userreview_rate {
  font-size: 0;
}

#contents {
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  #contents {
    padding-top: calc(110/750*100vw);
    padding-bottom: 0;
  }
}

#main-column:has(#itemList_wrap) #bread-crumb {
  margin: 0;
}
div#main-column section#itemDetail-wrap p.review_txt img {
    vertical-align: top;
}
div#main-column section#itemDetail-wrap p.review_txt span{
  padding-right: 0;
  font-weight: var(--bold);
  letter-spacing: 0;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}
div#main-column section#itemDetail-wrap p.review_txt a{
  font-weight: var(--regu);
  padding-left: 0;
  letter-spacing: 0;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}
.ui-dialog{
  z-index: 9999999 !important;
}
