@charset "UTF-8";
/* ========================================================
	reset.css
	Format,Font Reset
======================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  border: 0;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font: inherit;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

html {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: #3F3832;
  font-size: 1.4rem;
  line-height: 2;
  width: 100%;
  position: relative;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", "Josefin Sans", sans-serif;
}
@media (max-width: 480px) {
  body {
    font-size: 1.3rem;
  }
}

a, a:link, a:visited {
  color: #3F3832;
  text-decoration: none;
  transition: 0.5s;
}
a:hover, a:link:hover, a:visited:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
  transition: 0.5s;
}

.ecContainer {
  margin: auto;
  width: 90%;
  max-width: 1280px;
  height: auto;
  box-sizing: border-box;
}

/*============================================================================
	header
=============================================================================*/
header {
  display: block;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  padding: 0;
  transition: all 0.3s;
  background: #fff;
}
header .headWrap {
  height: 100%;
  align-items: center;
  padding-left: min(80px,11.112vw);
  padding-right: min(80px,11.112vw);
}
@media (max-width: 1200px) {
  header .headWrap {
    padding-left: 25px;
  }
}
@media (max-width: 480px) {
  header .headWrap {
    padding: 0 5%;
  }
}
header .headWrap .hdLogo {
  display: block;
  width: 177px;
  height: 27px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  header .headWrap .hdLogo {
    width: 36%;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
}
header .headWrap .hdLogo a {
  align-items: flex-end;
}
header .headWrap .hdLogo a span + span {
  margin-left: 12px;
}
header .headWrap .hdLogo a span.sub {
  padding-bottom: 8px;
}
@media (max-width: 480px) {
  header .headWrap .hdLogo a {
    align-items: center;
  }
  header .headWrap .hdLogo a span + span {
    margin-left: 0;
  }
  header .headWrap .hdLogo a span.sub {
    padding-top: 1px;
    padding-bottom: 0;
    display: flex;
    width: 70%;
  }
}
header .headWrap .hdMenuWrap {
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
header .headWrap .nav_wrap {
  align-items: stretch;
}
@media (max-width: 1300px) {
  header .headWrap .nav_wrap {
    display: none;
  }
}
header .headWrap .nav_wrap .mainNav {
  display: flex;
  align-items: center;
}
header .headWrap .nav_wrap .mainNav ul > li {
  position: relative;
}
header .headWrap .nav_wrap .mainNav ul > li + li {
  margin-left: 30px;
}
header .headWrap .nav_wrap .mainNav ul > li > a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  position: relative;
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
}
header .headWrap .nav_wrap .mainNav ul > li > a:hover {
  color: #497D7A;
}
header .headWrap .nav_wrap .mainNav ul > li.dropMenu > a span {
  position: relative;
  padding-left: 20px;
}
header .headWrap .nav_wrap .mainNav ul > li.dropMenu > a span::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 0;
  transform: rotate(45deg) translateY(-50%);
  display: block;
  width: 5.65px;
  height: 5.65px;
  border-bottom: solid 1px #3F3832;
  border-right: solid 1px #3F3832;
}
header .headWrap .nav_wrap .mainNav ul > li.dropMenu > a span:hover::before {
  border-bottom: solid 1px #D2E3D2;
  border-right: solid 1px #D2E3D2;
}
header .headWrap .nav_wrap .mainNav ul > li .dropdown {
  position: absolute;
  top: 24px;
  left: 0;
  transform: scaleY(0);
  transform-origin: center top;
  transition: all 0.3s;
  width: 216px;
  padding: 30px 0;
  background: #fff;
}
@media (max-width: 1200px) {
  header .headWrap .nav_wrap .mainNav ul > li .dropdown {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    display: block;
    padding: 20px 0 0;
  }
}
header .headWrap .nav_wrap .mainNav ul > li .dropdown .ddlist {
  transition: all 0.3s;
  position: relative;
  padding: 0 15px;
}
header .headWrap .nav_wrap .mainNav ul > li .dropdown .ddlist a {
  position: relative;
  font-size: 1.2rem;
  padding: 3px 0 3px 1em;
  display: block;
}
header .headWrap .nav_wrap .mainNav ul > li .dropdown .ddlist a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 2.6px;
  height: 2.6px;
  border-radius: 5px;
  background: #3F3832;
}
header .headWrap .nav_wrap .mainNav ul > li .dropdown .ddlist:hover a {
  opacity: 1;
  color: #D2E3D2;
}
header .headWrap .nav_wrap .mainNav ul > li .dropdown .ddlist:hover a::before {
  background: #D2E3D2;
}
header .headWrap .nav_wrap .mainNav ul > li:hover .dropdown {
  transform: scaleY(1);
}
@media (max-width: 1200px) {
  header .headWrap .nav_wrap .mainNav ul > li:hover .dropdown {
    transform: unset;
  }
}
@media (max-width: 1200px) {
  header .headWrap .nav_wrap .mainNav ul li + li {
    margin-left: 0;
    margin-top: 30px;
  }
  header .headWrap .nav_wrap .mainNav ul li .dropdown .ddlist + .ddlist {
    margin: 0;
  }
}
header .headWrap .iconNav {
  margin-left: 20px;
}
header .headWrap .iconNav li {
  width: 55px;
  height: 80px;
}
header .headWrap .iconNav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #497D7A;
  font-size: 1.2rem;
}
header .headWrap .iconNav li a span {
  display: block;
  text-align: center;
}
header .headWrap .iconNav li a span.txt {
  margin-top: 5px;
}
header .headWrap .iconNav li.cart a {
  color: #fff;
}
@media (max-width: 1300px) {
  header .headWrap .iconNav {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  header .headWrap .iconNav {
    padding-right: 40px;
  }
  header .headWrap .iconNav li {
    width: 50px;
    height: 80px;
  }
  header .headWrap .iconNav li a {
    font-size: 1rem;
    line-height: 1.2;
  }
}

/*================================================================
	humburger
================================================================*/
.hum {
  width: 60px;
  height: 80px;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 20px;
  z-index: 9999;
}
@media (max-width: 480px) {
  .hum {
    right: 0;
  }
}
.hum .inner {
  display: block;
  width: 20px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hum .burger {
  position: absolute;
  transition: 0.5s;
  width: 100%;
  height: 2px;
  top: 0px;
  right: 0;
  background-color: #3F3832;
}
.hum .burger:nth-child(2) {
  top: 8px;
}
.hum .burger:nth-child(3) {
  top: 16px;
}

.hum.tapped {
  top: -3px;
}
.hum.tapped .burger:nth-child(1) {
  top: 12px;
  transform: rotate(135deg);
}
.hum.tapped .burger:nth-child(2) {
  display: none;
}
.hum.tapped .burger:nth-child(3) {
  top: 12px;
  transform: rotate(-135deg);
}

/*================================================================
	menu
================================================================*/
.nav-bg {
  position: fixed;
  right: 0;
  top: 0;
  width: 38.89%;
  max-width: 560px;
  height: 100dvh;
  z-index: 100;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  cursor: pointer;
  mix-blend-mode: multiply;
}
@media (max-width: 1200px) {
  .nav-bg {
    width: 60%;
  }
}
@media (max-width: 820px) {
  .nav-bg {
    width: 100%;
  }
}
.nav-bg.tapped {
  opacity: 1;
  visibility: visible;
}
.nav-bg .menuNavi {
  padding-right: min(80px,11.112vw);
  padding-left: min(80px,11.112vw);
  padding-top: min(140px,19.444vw);
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .nav-bg .menuNavi {
    padding-top: 120px;
  }
}
@media (max-width: 1024px) {
  .nav-bg .menuNavi {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.nav-bg .navWrap {
  gap: 11%;
  row-gap: 40px;
}
@media (max-width: 480px) {
  .nav-bg .navWrap {
    gap: 2%;
    row-gap: 40px;
  }
}
.nav-bg .navWrap dl {
  width: 44.5%;
}
@media (max-width: 480px) {
  .nav-bg .navWrap dl {
    width: 49%;
  }
}
.nav-bg .navWrap dl dt {
  margin-top: 15px;
}
@media (max-width: 480px) {
  .nav-bg .navWrap dl dt {
    margin-top: 10px;
  }
}
.nav-bg .navWrap dl dt:first-of-type {
  margin-top: 0;
}
.nav-bg .navWrap dl dt + dd {
  margin-top: 0.5em;
}
@media (max-width: 480px) {
  .nav-bg .navWrap dl dt + dd {
    margin-top: 0.5em;
  }
}
.nav-bg .navWrap dl dt a {
  display: block;
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
}
.nav-bg .navWrap dl dt a:hover {
  color: #497D7A;
}
.nav-bg .navWrap dl dt a:hover::before {
  border-top: solid 1px #497D7A;
  border-right: solid 1px #497D7A;
}
.nav-bg .navWrap dl dd + dd {
  margin-top: 0.5em;
}
@media (max-width: 480px) {
  .nav-bg .navWrap dl dd + dd {
    margin-top: 0.5em;
  }
}
.nav-bg .navWrap dl dd a {
  display: block;
  position: relative;
  font-size: 1.3rem;
  white-space: nowrap;
}
.nav-bg .navWrap dl dd a:hover {
  color: #497D7A;
}
.nav-bg .subNavi {
  width: 100%;
  margin: 60px 0 0;
}
@media (max-width: 1200px) {
  .nav-bg .subNavi {
    margin-top: 60px;
  }
}
.nav-bg .subNavi ul {
  gap: 20px;
}
.nav-bg .subNavi ul li a {
  font-size: 1.1rem;
}
.nav-bg .subNavi .insta {
  margin-top: 15px;
}
.nav-bg .subNavi .insta a {
  display: block;
  width: 100%;
}
.nav-bg .subNavi .copy {
  font-size: 1.1rem;
  margin: 20px 0 0;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 1200px) {
  .nav-bg .subNavi .copy {
    margin-left: 0;
    margin-top: 20px;
  }
}

body.open header .headWrap .hdMenuWrap .nav_wrap .mainNav {
  display: block;
}
body.open header .headWrap .hdMenuWrap .nav_wrap .mainNav ul li a {
  color: #3F3832;
}
body.open header .headWrap .hdLogo {
  z-index: 200;
}
body.open header .headWrap ul.iconNav {
  z-index: 200;
  margin-left: auto;
}
/*============================================================================
	footer
=============================================================================*/
footer {
  height: auto;
  margin: 0;
  position: relative;
}

#ftNavi {
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 55px 0 50px;
  background: #D5CAB5;
}
#ftNavi .flogo {
  width: 177px;
}
#ftNavi .flogo img {
  width: 100%;
}
#ftNavi .mainNavi {
  margin-left: 14.84%;
  width: calc(100% - 177px - 14.84%);
}
@media (max-width: 1024px) {
  #ftNavi .mainNavi {
    margin-left: 0;
    margin-top: 40px;
    width: 100%;
  }
}
#ftNavi .navWrap {
  justify-content: space-between;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  #ftNavi .navWrap {
    column-count: 2;
    display: block;
    gap: 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  #ftNavi .navWrap {
    column-count: unset;
  }
}
#ftNavi .navWrap dl {
  flex: 1;
  width: 19.56%;
}
@media (max-width: 1024px) {
  #ftNavi .navWrap dl {
    display: inline-block;
    width: 50%;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  #ftNavi .navWrap dl {
    width: 100%;
  }
}
#ftNavi .navWrap dl dt {
  margin-top: 15px;
}
#ftNavi .navWrap dl dt:first-of-type {
  margin-top: 0;
}
#ftNavi .navWrap dl dt + dd {
  margin-top: 1em;
}
#ftNavi .navWrap dl dt a {
  display: block;
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
}
#ftNavi .navWrap dl dt a:hover {
  color: #497D7A;
}
#ftNavi .navWrap dl dt a:hover::before {
  border-top: solid 1px #497D7A;
  border-right: solid 1px #497D7A;
}
#ftNavi .navWrap dl dd + dd {
  margin-top: 1em;
}
#ftNavi .navWrap dl dd a {
  display: block;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
}
#ftNavi .navWrap dl dd a:hover {
  color: #497D7A;
}
#ftNavi .subNavi {
  width: 100%;
}
@media (max-width: 480px) {
  #ftNavi .subNavi {
    flex-direction: column;
  }
}
#ftNavi .subNavi ul {
  gap: 20px;
  line-height: 20px;
}
#ftNavi .subNavi ul li a {
  font-size: 1.3rem;
}
#ftNavi .subNavi .copy {
  font-size: 1.3rem;
  margin: 0 0 0 auto;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 1024px) {
  #ftNavi .subNavi .copy {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
#ftNavi .insta {
  margin-left: 30px;
}
#ftNavi .insta a {
  display: block;
  width: 100%;
}
@media (max-width: 480px) {
  #ftNavi .insta {
    margin-left: 0;
    margin-top: 20px;
  }
}

.fInfo {
  background: #3F3832;
  color: #D5CAB5;
  padding: 25px 0;
  text-align: center;
  line-height: 1.5;
}
.fInfo a {
  color: #D5CAB5 !important;
}
@media (max-width: 480px) {
  .fInfo {
    font-size: 1.2rem;
  }
}

/*============================================================================
	contentsArea
=============================================================================*/
div#main-column > img {
  display: none;
}

#main-column {
  box-sizing: border-box;
  float: unset;
  width: 100%;
  margin: 0;
  padding-top: 80px;
}
#main-column h2 {
  border: none;
  padding: 0;
}

#sub-column {
  float: none;
  width: 100%;
  margin: 0;
}
@media (max-width: 1024px) {
  #sub-column {
    position: relative;
    right: 0;
    padding: 0;
    background-color: unset;
  }
  #sub-column h2 {
    background-color: unset;
  }
  #sub-column div.subc_cal_cont {
    margin: 0;
  }
}

#subc_calendar {
  max-width: 500px;
  width: 90% !important;
  margin: 0 auto min(80px,11.112vw) !important;
}
#subc_calendar .cap-info {
  background-color: unset;
}
@media (max-width: 1024px) {
  #subc_calendar {
    width: 90%;
  }
}

/*============================================================================
	commonTtl
=============================================================================*/
h2.commonTtl {
  position: relative;
  font-size: 2.8rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  border: none;
}
h2.commonTtl span {
  color: #D2E3D2;
  font-size: 4.2rem;
}
@media (max-width: 480px) {
  h2.commonTtl {
    font-size: 2.4rem;
  }
  h2.commonTtl span {
    font-size: 3.6rem;
  }
}

/*============================================================================
	commonBtn
=============================================================================*/
.moreBtn {
  height: 53px;
  line-height: 53px;
}
@media (max-width: 480px) {
  .moreBtn {
    height: 40px;
    line-height: 40px;
  }
}
.moreBtn a {
  display: block;
  padding: 0 5em;
  width: fit-content;
  text-align: center;
  position: relative;
  border-radius: 26.5px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.moreBtn a span {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.moreBtn a:hover {
  background: #3F3832;
  color: #fff;
}
.moreBtn a:hover::after {
  transform: scale(1.05);
  border: 1px solid #3F3832;
}
.moreBtn.green a::after {
  background: #497D7A;
}
.moreBtn.green a span {
  color: #fff;
}
.moreBtn.white a::after {
  background: #FFFEFA;
}
.moreBtn.white a::before {
  filter: invert(1);
}
.moreBtn.white a span {
  color: #3F3832;
}
.moreBtn.white:hover a {
  background: #3F3832;
}
.moreBtn.white:hover a span {
  color: #fff;
}

/*============================================================================
	contentBlock
=============================================================================*/
.contentBlock {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .contentBlock {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.contentBlock .descBox {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .contentBlock .descBox {
    width: 100%;
  }
}
.contentBlock .descBox h3 {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3888888889;
}
@media (max-width: 480px) {
  .contentBlock .descBox h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
.contentBlock .descBox p {
  line-height: 2;
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}
.contentBlock .descBox .moreBtn {
  margin-top: 40px;
}
.contentBlock .descBox .moreBtn a {
  border: 1px solid #3F3832;
}
.contentBlock .imgBox {
  width: 50%;
}
.contentBlock .imgBox picture, .contentBlock .imgBox figure {
  width: 100%;
  display: block;
  position: relative;
}
.contentBlock .imgBox picture::before, .contentBlock .imgBox figure::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 83.33%;
}
.contentBlock .imgBox picture source, .contentBlock .imgBox picture img, .contentBlock .imgBox figure source, .contentBlock .imgBox figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 480px) {
  .contentBlock .imgBox picture, .contentBlock .imgBox figure {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contentBlock .imgBox {
    width: 100%;
  }
}
.contentBlock.productBlock .descBox {
  width: 50%;
}
.contentBlock.productBlock .descBox h3 {
  letter-spacing: 0;
}
.contentBlock.productBlock .descBox p.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .contentBlock.productBlock .descBox p.brand {
    font-size: 1.2rem;
  }
}
.contentBlock.productBlock .descBox .priceBox {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-bottom: 30px;
}
.contentBlock.productBlock .descBox .priceBox em {
  font-size: 1.8rem;
  letter-spacing: 0;
  font-weight: 700;
}
.contentBlock.productBlock .descBox .moreBtn {
  margin-top: 45px;
}
@media (max-width: 480px) {
  .contentBlock.productBlock .descBox .priceBox {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }
  .contentBlock.productBlock .descBox .priceBox em {
    font-size: 1.6rem;
  }
  .contentBlock.productBlock .descBox .moreBtn {
    margin-top: 20px;
  }
}
.contentBlock.productBlock .imgBox {
  width: 50%;
}
.contentBlock.productBlock .imgBox picture, .contentBlock.productBlock .imgBox figure {
  width: 100%;
  display: block;
  max-width: 480px;
}
.contentBlock.productBlock + .productBlock {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .contentBlock.productBlock + .productBlock {
    margin-top: 80px;
  }
}

.productRecommendWrap {
  background: #D5CAB5;
  padding: 120px 0;
  border-bottom: 1px solid #3F3832;
}
@media (max-width: 480px) {
  .productRecommendWrap {
    padding: 80px 0;
  }
}
.productRecommendWrap h2.commonTtl {
  margin-bottom: 40px;
  text-align: center;
}
.productRecommendWrap ul {
  display: flex;
  max-width: 1154px;
  width: 90%;
  gap: 3.21%;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .productRecommendWrap ul {
    flex-direction: column;
  }
}
.productRecommendWrap ul li {
  width: 31.2%;
}
@media (max-width: 480px) {
  .productRecommendWrap ul li {
    width: 75%;
    margin: 0 auto;
  }
}
.productRecommendWrap ul li a {
  display: block;
  width: 100%;
}
.productRecommendWrap ul li a figure {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.productRecommendWrap ul li a .descBox .productTtl {
  font-weight: 700;
  letter-spacing: 0;
}
.productRecommendWrap ul li a .descBox .productTtl span {
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #3F3832;
  padding: 0 5px;
  margin-right: 6px;
  line-height: 20px;
  width: fit-content;
}
@media (max-width: 480px) {
  .productRecommendWrap ul li a .descBox .productTtl span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 480px) {
  .productRecommendWrap ul li a .descBox .productTtl {
    line-height: 1.5;
  }
}
.productRecommendWrap ul li a .descBox .priceBox {
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 5px;
  gap: 10px;
  display: flex;
}
.productRecommendWrap ul li a .descBox .priceBox span {
  font-size: 1rem;
  font-weight: 400;
  text-indent: -4px;
}
@media (max-width: 820px) {
  .productRecommendWrap ul li a .descBox .priceBox {
    flex-direction: column;
    gap: 0;
  }
}
.productRecommendWrap ul li.blue a figure {
  background: #9EB8C7;
}
.productRecommendWrap ul li.green a figure {
  background: #497D7A;
}
.productRecommendWrap ul li.yellow a figure {
  background: #D1C168;
}
@media (max-width: 480px) {
  .productRecommendWrap ul li + li {
    margin-top: 40px;
  }
}

/*============================================================================
	floating-menu
=============================================================================*/
#floating-menu {
  bottom: 0;
  right: 0;
}

#page-top a {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  background: url("../../asset/img/common/page_top.svg") no-repeat center center/contain;
  cursor: pointer;
}
#page-top a:hover {
  opacity: 0.7;
  background: url("../../asset/img/common/page_top.svg") no-repeat center center/contain;
}
#page-top a img {
  display: none;
}
@media (max-width: 480px) {
  #page-top a {
    width: 50px;
    height: 50px;
  }
}

#contents #main-column .footer_area {
  display: none !important;
}

/*============================================================================
	regulation
=============================================================================*/
/*============================================================================
	調整用
=============================================================================*/
.fl {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}

.fl-pc {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 1200px) {
  .fl-pc {
    display: block;
  }
}

.fl-tab {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 1024px) {
  .fl-tab {
    display: block;
  }
}

.fl-smp {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
@media (max-width: 480px) {
  .fl-smp {
    display: block;
  }
}

.fl-jst {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fl-cen {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fl-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fl-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fl-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fl-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.mt0 {
  margin-top: min(0vw,0px) !important;
}

.mb0 {
  margin-bottom: min(0vw,0px) !important;
}

.pt0 {
  padding-top: min(0vw,0px) !important;
}

.pb0 {
  padding-bottom: min(0vw,0px) !important;
}

.mt10 {
  margin-top: min(3vw,10px) !important;
}

.mb10 {
  margin-bottom: min(3vw,10px) !important;
}

.pt10 {
  padding-top: min(3vw,10px) !important;
}

.pb10 {
  padding-bottom: min(3vw,10px) !important;
}

.mt20 {
  margin-top: min(6vw,20px) !important;
}

.mb20 {
  margin-bottom: min(6vw,20px) !important;
}

.pt20 {
  padding-top: min(6vw,20px) !important;
}

.pb20 {
  padding-bottom: min(6vw,20px) !important;
}

.mt30 {
  margin-top: min(9vw,30px) !important;
}

.mb30 {
  margin-bottom: min(9vw,30px) !important;
}

.pt30 {
  padding-top: min(9vw,30px) !important;
}

.pb30 {
  padding-bottom: min(9vw,30px) !important;
}

.mt40 {
  margin-top: min(12vw,40px) !important;
}

.mb40 {
  margin-bottom: min(12vw,40px) !important;
}

.pt40 {
  padding-top: min(12vw,40px) !important;
}

.pb40 {
  padding-bottom: min(12vw,40px) !important;
}

.mt50 {
  margin-top: min(15vw,50px) !important;
}

.mb50 {
  margin-bottom: min(15vw,50px) !important;
}

.pt50 {
  padding-top: min(15vw,50px) !important;
}

.pb50 {
  padding-bottom: min(15vw,50px) !important;
}

.mt60 {
  margin-top: min(18vw,60px) !important;
}

.mb60 {
  margin-bottom: min(18vw,60px) !important;
}

.pt60 {
  padding-top: min(18vw,60px) !important;
}

.pb60 {
  padding-bottom: min(18vw,60px) !important;
}

.mt70 {
  margin-top: min(21vw,70px) !important;
}

.mb70 {
  margin-bottom: min(21vw,70px) !important;
}

.pt70 {
  padding-top: min(21vw,70px) !important;
}

.pb70 {
  padding-bottom: min(21vw,70px) !important;
}

.mt80 {
  margin-top: min(24vw,80px) !important;
}

.mb80 {
  margin-bottom: min(24vw,80px) !important;
}

.pt80 {
  padding-top: min(24vw,80px) !important;
}

.pb80 {
  padding-bottom: min(24vw,80px) !important;
}

.mt90 {
  margin-top: min(27vw,90px) !important;
}

.mb90 {
  margin-bottom: min(27vw,90px) !important;
}

.pt90 {
  padding-top: min(27vw,90px) !important;
}

.pb90 {
  padding-bottom: min(27vw,90px) !important;
}

.mt100 {
  margin-top: min(30vw,100px) !important;
}

.mb100 {
  margin-bottom: min(30vw,100px) !important;
}

.pt100 {
  padding-top: min(30vw,100px) !important;
}

.pb100 {
  padding-bottom: min(30vw,100px) !important;
}

br {
  display: inline;
}
@media (min-width: 1201px) {
  br.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  br.showTab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  br.show768 {
    display: none !important;
  }
}
@media (min-width: 821px) {
  br.showTab_m {
    display: none !important;
  }
}
@media (min-width: 481px) {
  br.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  br.hdnPC {
    display: none;
  }
  br.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  br.hdnTab {
    display: none;
  }
  br.showTab {
    display: inherit;
  }
}
@media (max-width: 820px) {
  br.hdnTab_m {
    display: none;
  }
  br.showTab_m {
    display: inherit;
  }
}
@media (max-width: 768px) {
  br.hdn768 {
    display: none;
  }
  br.show768 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  br.hdnSP {
    display: none;
  }
  br.showSP {
    display: inherit;
  }
}

span {
  display: inline-block;
}
@media (min-width: 1201px) {
  span.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  span.showTab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  span.show768 {
    display: none !important;
  }
}
@media (min-width: 481px) {
  span.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  span.hdnPC {
    display: none !important;
  }
  span.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  span.hdnTab {
    display: none !important;
  }
  span.showTab {
    display: inherit;
  }
}
@media (max-width: 768px) {
  span.hdn768 {
    display: none !important;
  }
  span.show768 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  span.hdnSP {
    display: none !important;
  }
  span.showSP {
    display: inherit;
  }
}

p, div, figure, ul {
  display: block;
}
@media (min-width: 1201px) {
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  p.show768, div.show768, figure.show768, ul.show768 {
    display: none !important;
  }
}
@media (min-width: 481px) {
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  p.hdnPC, div.hdnPC, figure.hdnPC, ul.hdnPC {
    display: none !important;
  }
  p.showPC, div.showPC, figure.showPC, ul.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  p.hdnTab, div.hdnTab, figure.hdnTab, ul.hdnTab {
    display: none !important;
  }
  p.showTab, div.showTab, figure.showTab, ul.showTab {
    display: inherit;
  }
}
@media (max-width: 768px) {
  p.hdn768, div.hdn768, figure.hdn768, ul.hdn768 {
    display: none !important;
  }
  p.show768, div.show768, figure.show768, ul.show768 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  p.hdnSP, div.hdnSP, figure.hdnSP, ul.hdnSP {
    display: none !important;
  }
  p.showSP, div.showSP, figure.showSP, ul.showSP {
    display: inherit;
  }
}

li {
  display: list-item;
}
@media (min-width: 1201px) {
  li.showPC {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  li.showTab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  li.show768 {
    display: none !important;
  }
}
@media (min-width: 481px) {
  li.showSP {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  li.hdnPC {
    display: none !important;
  }
  li.showPC {
    display: inherit;
  }
}
@media (max-width: 1024px) {
  li.hdnTab {
    display: none !important;
  }
  li.showTab {
    display: inherit;
  }
}
@media (max-width: 768px) {
  li.hdn768 {
    display: none !important;
  }
  li.show768 {
    display: inherit;
  }
}
@media (max-width: 480px) {
  li.hdnSP {
    display: none !important;
  }
  li.showSP {
    display: inherit;
  }
}

.ta_cnt {
  text-align: center;
}

.ta_right {
  text-align: right;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*==========================================================
	character
==========================================================*/
/* 白目のスタイル */
#blue_eye #white-part {
  transform-origin: center center;
}

/* 黒目の左右移動アニメーション定義 */
@keyframes moveEyes01 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes moveEyes02 {
  0% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveEyes03 {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-6px);
  }
}
/* 黒目に左右移動アニメーションを適用 */
#blue_eye .cls-1 {
  transform-origin: center center;
  animation-name: moveEyes01;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* まぶたの初期スタイル - 重要！ */
#blue_eye #upper-eyelid {
  transform: translateY(-100%); /* 初期状態は上に隠れている */
  transform-origin: top center;
}

/* まぶたの瞬きアニメーション定義 */
@keyframes blink-eyelid {
  0%, 95% {
    /* 開いている状態 */
    transform: translateY(-100%);
  }
  97%, 98% {
    /* 閉じている状態 (ほんの一瞬) */
    transform: translateY(0%);
  }
}
/* まぶたにアニメーションを適用 */
#blue_eye #upper-eyelid {
  animation-name: blink-eyelid;
  animation-duration: 2s; /* 4秒ごとに瞬き */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: 0s; /* すぐに始める */
  animation-play-state: running; /* 明示的に再生状態を指定 */
  will-change: transform; /* パフォーマンス最適化 */
}

.blueImg picture {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.blueImg picture::before {
  content: "";
  display: block;
  padding-top: 203.67%;
}
.blueImg picture source, .blueImg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.blueImg figure {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.blueImg figure::before {
  content: "";
  display: block;
  padding-top: 203.67%;
}
.blueImg figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.blueImg .eye {
  position: absolute;
  top: 8.02%;
  left: 5%;
  width: 38.33%;
  height: 11.95%;
}
.blueImg .eye svg {
  width: 100%;
  height: 100%;
}

#yellow_eye .cls-1 {
  transform-origin: center center;
  animation-name: moveEyes02;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.yellowImg picture {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.yellowImg picture::before {
  content: "";
  display: block;
  padding-top: 184.64%;
}
.yellowImg picture source, .yellowImg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.yellowImg figure {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.yellowImg figure::before {
  content: "";
  display: block;
  padding-top: 184.64%;
}
.yellowImg figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.yellowImg .eye {
  position: absolute;
  top: 30.64%;
  left: 54.21%;
  width: 18.17%;
  height: 6.32%;
}
.yellowImg .eye svg {
  width: 100%;
  height: 100%;
}

#pink_eye .cls-1 {
  transform-origin: center center;
  animation-name: moveEyes03;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.pinkImg picture {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.pinkImg picture::before {
  content: "";
  display: block;
  padding-top: 87.37%;
}
.pinkImg picture source, .pinkImg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.pinkImg figure {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.pinkImg figure::before {
  content: "";
  display: block;
  padding-top: 87.37%;
}
.pinkImg figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.pinkImg .eye {
  position: absolute;
  top: 17.02%;
  right: 12.19%;
  width: 30.85%;
  height: 22.56%;
}
.pinkImg .eye svg {
  width: 100%;
  height: 100%;
}

#green_eye .cls-1 {
  transform-origin: center center;
  animation-name: moveEyes01;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.greenImg picture {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.greenImg picture::before {
  content: "";
  display: block;
  padding-top: 106.11%;
}
.greenImg picture source, .greenImg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.greenImg figure {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.greenImg figure::before {
  content: "";
  display: block;
  padding-top: 106.11%;
}
.greenImg figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.greenImg .eye {
  position: absolute;
  bottom: 9.8%;
  right: 41.92%;
  width: 19.18%;
  height: 11.55%;
}
.greenImg .eye svg {
  width: 100%;
  height: 100%;
}