@charset "utf-8";

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
* {box-sizing: border-box;}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-family: "Noto Sans JP", "Noto Sans", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  line-height: 1.4;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  background-color: #FAF4E3;
}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input:focus, textarea:focus {outline: none;}
img {max-width: 100%;}
a {text-decoration: none;}
a:hover, button:hover, input[type="submit"]:hover {cursor: pointer;}
button {
  border: none;
  background: none;
  line-height: 2;
  margin: auto;
  width: 100%;
}
html.is-fixed {
  overflow: hidden;
}
.inview {
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 1.7s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  will-change: transform, opacity;
}
.inview.effect {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.pc-only {
  display: none;
}

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

header

----------------------------------------------------------*/
header {
  background: #000000;
  color: #fff;
  font-size: 34px;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  header {
    font-size: 24px;
  }
}

/************** footer **************/
.l_footer {
  background: #000;
  padding: 5rem 0;
  margin-top: -1px;
}
.l_footer-copyright p {
  color: #fff;
  font-size: 0.8125rem;
  text-align: center;
}

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

メインタグ内　main

----------------------------------------------------------*/
.content-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.maincontents {
  max-width: 1000px;
  margin: 100px auto 0;
}

section {
  margin-top: 30px;
}

.block-item + .block-item {
  margin-top: 100px;
}

#special .block-item + .block-item {
  margin-top: 60px;
}

.ttl-wrap {
  background: url(../img/h2-deco.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 180px;
  max-width: 920px;
  margin: 0 auto;
}

h2 {
  position: relative;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: #B33562;
  margin-bottom: 0.4em;
}

h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 30px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #B33562;
}

.text-box {
  font-size: 20px;
  font-weight: 400;
  margin-top: 30px;
}

.text-box > * {
  margin-top: 24px;
}

.text-box > *:first-child {
  margin-top: 0;
}

@media screen and (max-width: 1280px) {
  .visual-box,
  .text-box {
    padding-left: 4%;
    padding-right: 4%;
  }
}

@media screen and (max-width: 1024px) {
  .maincontents {
    margin: 30px auto 0;
  }

  .block-item + .block-item {
    margin-top: 30px;
  }

  h2 {
    top: 49px;
    font-size: 32px;
  }

  h2:before {
    content: '';
    bottom: -10px;
  }

  .ttl-wrap {
    background-size: 90%;
    background-position-x: center;
    height: 124px;
  }

  .text-box {
    font-size: 16px;
    margin-top: 14px;
  }
}

@media screen and (max-width: 544px) {
  .ttl-wrap {
    background-size: 136%;
  }
}

/************** main **************/
main {
  position: relative;
  overflow: hidden;
}

.button a,
.button a:hover,
.button a:hover::before {
  transition: 0.3s;
}
.button a {
  width: 100%;
  max-width: 280px;
  padding: 1rem;
  color: #fff;
  background: #EA7488;
  display: block;
  border: 1px solid #fff;
  border-radius: 50px;
  position: relative;
  font-size: 1.25rem;
  text-align: center;
  margin: 60px auto 0;
}
/* ホバー可能なデバイスでのみ適用 */
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  .button a:hover {
    opacity: 1;
    background: #fff;
    color: #EA7488;
    border: 1px solid #EA7488;
  }
}

@media screen and (max-width: 1024px) {
  .button a {
    margin: 30px auto 0;
  }
}

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

メインビジュアル　.mainvisual

----------------------------------------------------------*/
.mainvisual {
  margin-top: 50px;
}

.mainvisual .mv-tag {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #B33562;
}

.mainvisual .mv-img {
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .mainvisual {
    margin-top: 20px;
  }

  .mainvisual .mv-img {
    margin-top: 20px;
  }
}

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

製品

----------------------------------------------------------*/
.product-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 920px;
  gap: 30px 15px;
  margin: 60px auto 0;
}

.product-item {
  width: calc((100% - 30px) / 3);
  text-align: center;
}

.product-description {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
}

.product-description > * {
  margin-top: 14px;
}

.product-description span {
  font-size: 26px;
  font-weight: 700;
}

.pd-exclusive {
  display: inline-flex;
  font-weight: 700;
}

.pd-exclusive::before {
  content: "";
  display: inline-block;  
  background-image: url('../img/pd-exclusive.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.4em;
  height: 1.4em;
  margin-right: 5px;
}

@media screen and (max-width: 1280px) {
  .product-box {
    padding-left: 4%;
    padding-right: 4%;
  }
}

@media screen and (max-width: 1024px) {
  .product-box {
    margin: 40px auto 0;
  }

  .product-img img {
    height: 200px;
  }

  .product-description {
    margin-top: 14px;
    font-size: 14px;
  }

  .product-description span {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .product-item {
    width: calc((100% - 30px) / 2);
  }
}

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

Stores

----------------------------------------------------------*/
#stores {
  background-color: #102339;
  color: #fff;
}

section#stores {
  margin-top: 80px;
}

#stores .maincontents {
  padding: 140px 0;
}

#stores .ttl-wrap {
  background: none;
  height: 100%;
  max-width: 920px;
  margin: 0 auto;
}

#stores h2 {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25em;
}

#stores h2:before {
  display:none
}

#stores h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

#stores h3::after {
  background-color: #fff;
  content: "";
  height: 2px;
  width: 85%;
}

#stores h3::after {
  margin-left: 20px;
}

#stores .visual-box {
  padding-left: 4%;
  padding-right: 4%;
}

#stores .text-box {
  font-weight: 400;
}

#stores .text-box span {
  font-size: 24px;
  font-weight: 700;
}

#stores .text-box > * {
  margin-top: 10px;
}

#stores .text-box > *:first-child {
  margin-top: 0;
}

#stores .text-box + .visual-box {
  margin-top: 60px;
}

@media screen and (max-width: 1280px) {
  #stores .ttl2-wrap {
    padding-left: 4%;
    padding-right: 4%;
  }
}

@media screen and (max-width: 1024px) {
  #stores .maincontents {
    padding: 80px 0;
  }

  #stores h2 {
    top: 0;
    font-size: 32px;
  }

  #stores h3 {
    margin-bottom: 16px;
  }
  
  #stores .text-box span {
    font-size: 20px;
  }

  #stores .text-box + .visual-box {
    margin-top: 40px;
  }
}

/*------------------------------------------
  Responsive Grid Media Queries - 1280, 1024, 768, 480
   1280-1024   - デスクトップ（デフォルトのグリッド）
   1024-768    - タブレット横長
   768-480     - タブレット縦長
   480-less    - スマホ
--------------------------------------------*/
@media all and (min-width: 1025px) and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .pc-only {
    display: inherit;
  }
  span.pc-only {
    display: inline;
  }
  .sp-only {
    display: none;
  }
}
@media all and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}