<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body {
  font-family: "alphameric-bold", "Noto Sans JP", "貂ｸ繧ｴ繧ｷ繝�け菴�", YuGothic,
    "貂ｸ繧ｴ繧ｷ繝�け", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "繝偵Λ繧ｮ繝手ｧ偵ざ ProN W3", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  font-size: 16px;
}

main {
  overflow: hidden;
}

/* header */
header {
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* nav */
.nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-list {
  display: flex;
}

.nav-list a {
  display: block;
  font-size: 1em;
  color: #000;
  border-right: 1px solid #000;
  padding: 0 0.625em;
}

.nav-list :last-child a {
  border-right: 0;
  padding-right: 0;
}

.logo {
  padding-left: 1.25em;
}
.logo img {
  margin-right: 10px;
}
.nav-search form {
  display: flex;
}

.nav-search input[type="text"] {
  border-radius: 0;
  width: 100%;
  border: 1px solid #000;
  border-right: 0;
  padding: 0.3125em 0;
  background-color: #eeeeee;
}

.nav-search input[type="text"]:focus {
  outline: 0;
}

.nav-search input[type="submit"] {
  border-radius: 0;
  background: url(../images/search_icon.png) no-repeat center;
  width: 40px;
  height: 33px;
  border: 1px solid #000;
  border-left: 0;
  background-color: #eeeeee;
}

@media (orientation: portrait), (max-width: 768px) {
  input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }

  header {
    font-size: 16px;
  }

  .logo {
    /* flex-basis: 150px; */
    padding: 0;
  }

  .hamburger {
    width: 50px;
    background-color: transparent;
    z-index: 999;
  }

  .hamburger .line {
    width: 25px;
    height: 2px;
    margin: 5px auto;
    display: block;
    background-color: #23316d;
    transition: all 0.3s ease-in-out;
  }

  .hamburger.beClicked .line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.beClicked .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.beClicked .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4em 1em 1em;
    background-color: rgb(0, 0, 0, 10%);
    z-index: 99;
    transform: translateY(-100%);
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
  }

  .nav.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  body.open {
    overflow: hidden;
  }

  .nav-search {
    margin: 0 0 1em;
  }

  .nav-search input[type="text"],
  .nav-search input[type="submit"] {
    background-color: rgb(255, 255, 255, 90%);
  }

  .nav-list {
    order: 1;
    flex-direction: column;
    padding: 1em;
    height: 100%;
    background-color: rgb(255, 255, 255, 90%);
    border-radius: 10px;
    overflow-y: scroll;
  }

  .nav-list &gt; li {
    width: 100%;
  }

  .nav-list a {
    padding: 1em;
    border: 0;
    border-bottom: 1px solid #000;
  }
}

.inner {
  max-width: 1080px;
  margin: auto;
}
.container {
  /*padding: 0 4em;*/
}
.btn--totop {
  position: fixed;
  right: 10%;
  bottom: 10%;
  width: 71px;
  height: 71px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  background-image: linear-gradient(110deg, #ffefef, #e49a9a);
  border: 2px solid #fff;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s;
  z-index: 100;
}

.btn--totop::before,
.btn--totop::after {
  content: "";
  position: absolute;
  top: 45%;
  width: 30%;
  height: 4px;
  border-radius: 20px;
  background-color: #fff;
  transform: rotate(-45deg);
}

.btn--totop::before {
  left: 27%;
  transform: rotate(-45deg);
}

.btn--totop::after {
  right: 25%;
  transform: rotate(45deg);
}

.btn--totop .txt {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
}

.btn--totop .txt::after {
  content: "";
  display: block;
  margin-top: 5px;
  width: 100%;
  height: 2px;
  background: #fff;
}

.btn--totop.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

/*------ main visual ------*/
main {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #494949;
}
section {
  margin: 0 0 10em;
}
.mv {
  position: relative;
  font-family: "Century Gothic", CenturyGothic, Futura, AppleGothic, sans-serif;
  background-image: linear-gradient(0deg, #f6cecf, #de9091 28%, #f6cecf);
  color: #6d2326;
  height: 56.375em;
  overflow: hidden;
  font-weight: bold;
  font-size: 14px;
}
.mv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-image: linear-gradient(180deg, #e7a9a9, #eeb4b3 19%, #f6cecf);
  z-index: 0;
}
.mv__box {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  height: inherit;
}
.mv__side {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 5% 0;
  margin-left: 7%;
  z-index: 3;
  overflow: hidden;
}
.mv__side &gt; img {
  max-width: 10em;
  margin-right: 2.6%;
  animation: mv__ttl 1s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.mv__img {
  max-width: 58.9375em;
  position: absolute;
  right: 0;
  top: -9em;
  z-index: 2;
  animation: showText 2s cubic-bezier(0.19, 1, 0.22, 1.1) forwards;
}
.mv__bg--circle {
  position: absolute;
  width: 55%;
  height: 120%;
  background-color: rgb(255, 255, 255, 35%);
  right: 0;
  bottom: -30%;
  border-radius: 70% 50% 0 53%;
  z-index: 1;
  animation: circle-fade-in 1s cubic-bezier(0.19, 1, 0.22, 1.1) forwards;
}
.mv__ttl {
  width: fit-content;
  font-size: 6.25em;
  line-height: 1.2;
  letter-spacing: 5px;
  overflow: hidden;
}
.mv__ttl__point {
  color: #d66161;
  font-size: 1.2em;
  margin-right: 10px;
}
.mv__ttl span {
  display: inline-block;
  line-height: 1;
  animation: mv__ttl 1.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.mv__desc {
  font-size: 0.5em;
  overflow: hidden;
}
.mv__txt &gt; * {
  margin-bottom: 0.5em;
}
.mv__arrow {
    display: none;
  position: relative;
  width: 0;
  height: 2px;
  background-color: #6578d0;
  animation: line-fade-in 2s 1s cubic-bezier(0.19, 1, 0.22, 1.1) forwards;
}
.mv__arrow::after {
  content: "";
  position: absolute;
  width: 10%;
  bottom: -6px;
  right: -2px;
  height: 2px;
  background-color: #6578d0;
  transform: rotate(-45deg);
}
.item {
  display: inline-block;
  transform: translateY(150%);
}

.mv .item {
  -webkit-animation: showText 3s cubic-bezier(0.19, 1, 0.22, 1.1) forwards;
  animation: showText 3s cubic-bezier(0.19, 1, 0.22, 1.1) forwards;
}

@keyframes line-fade-in {
  0% {
    width: 0;
  }
  100% {
    width: 13.75em;
  }
}
@keyframes circle-fade-in {
  0% {
    transform: scale(5);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes mv__ttl {
  0% {
    transform: translateY(140%);
  }
  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes showText {
  0% {
    transform: translateY(150%);
  }

  to {
    transform: translateY(0);
  }
}

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

  to {
    transform: translateY(0);
  }
}
.swiper {
  overflow: visible;
}
.swiper-horizontal &gt; .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -30px;
}
.marquee {
  position: relative;
  max-width: 1920px;
  margin: -200px auto 10em;
  z-index: 10;
  opacity: 0;
  animation: fade-in 5s 1s cubic-bezier(0.19, 1, 0.22, 1.1) forwards;
}
.swiper-slide,
.swiper-backface-hidden .swiper-slide {
  max-width: 150px;
  transform: scale(0.7);
  text-align: center;
}
.swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.swiper-pagination-bullet-active {
  --swiper-pagination-color: #6177d6;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}

/* site direct */
.site__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site__direct a {
  display: block;
  width: calc((100% - 8px) / 2);
  margin: 0 0 1.5em;
  text-align: center;
  background-color: #fff;
  border: 2px solid #6d2326;
  border-radius: 15px;
  overflow: hidden;
  transform: scale(1);
  transition: scale 0.3s;
}
.direct__ttl {
  display: block;
  padding: 1.5em 0 1.5em;
  font-size: 2.1875em;
  font-weight: 700;
  color: #6d2326;
  background-image: linear-gradient(110deg, #f5f5f5, #aeaeae);
}
.site__direct .arrow {
  padding: 1em;
  display: block;
  background-color: #fff;
}

/* product */
.products {
  margin: 0 0 4em;
}
.product__info .main__ttl {
  margin: 0 auto 1em;
  padding: 0.5em 0;
  font-size: 3.4375em;
  font-weight: bold;
  background-color: #6d2326;
  color: #fff;
  text-align: center;
}
.product__info .description {
  margin: 0 auto 3em;
  font-size: 1.5625em;
  line-height: 1.7;
}

.products__ttl {
  position: relative;
  margin: 0 auto 3em;
  padding: 0.5em 0;
  font-size: 2.5em;
  font-weight: bold;
  color: #6d2326;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid #6d2326;
}
.products__ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15%;
  width: 100%;
  height: 1px;
  background-color: #6d2326;
}

.product__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product__card {
  width: calc((100% - 12px - 6%) / 3);
  margin: 0 1% 2%;
  border: 2px solid #e5e5e5;
  background-color: #fff;
  font-weight: bold;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
}
.card__img {
  margin-bottom: 1em;
}
.card__inner {
  padding: 1.25em 0.625em;
}
.card__ttl {
  font-size: 0.9375em;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.card__price {
  font-size: 1.4375em;
  text-align: right;
  width: 90%;
  margin: 0 auto 1em;
}
.card__price span {
  font-size: 0.8em;
}
.card__btn {
  display: block;
  width: 90%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.85em;
  font-size: 1.125em;
  text-align: center;
  color: #fff;
  background-color: #6d2326;
  border: 1px solid #6d2326;
  transition: 0.3s;
}
.card__btn2 {
  display: block;
  width: 90%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.85em;
  font-size: 1.125em;
  text-align: center;
  color: #fff;
  background-color: #facb23;
  border: 1px solid #facb23;
  transition: 0.3s;
}

.product__inner {
  max-width: 980px;
  margin: auto;
}

.products__link {
  display: block;
  padding: 1em;
  margin: 4em auto 0;
  width: 50%;
  font-size: 1.125em;
  font-weight: bold;
  text-align: center;
  color: #6d2326;
  border: 1px solid #6d2326;
}

/* page to top */
.pagetop {
  position: relative;
  display: block;
  font-size: 2.1875em;
  width: 9.0857em;
  font-weight: 700;
  text-align: center;
  padding: 2em 0 0;
  margin: 0 auto;
  transition: 0.3s;
  z-index: 2;
}
/* scroll &amp; animation */

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
  position: relative;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}
.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}
.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

@keyframes fade-in-bottom {
  0% {
    top: 100px;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media (hover: hover) {
  .site__direct a:hover {
    scale: 1.02;
  }
  .site__direct a:hover .direct__ttl {
    background-image: linear-gradient(110deg, #fff0f0, #e29898);
  }
  .pagetop:hover {
    scale: 1.1;
  }
  .card__btn:hover {
    color: #6d2326;
    background-color: #fff;
  }
  .card__btn2:hover {
    color: #facb23;
    background-color: #fff;
  }
}

/* media queries */
@media (orientation: portrait) {
  .br--pc {
    display: none;
  }

  .mv--sp {
    width: 85%;
  }
}

@media (orientation: landscape) {
  .br--sp {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .mv {
    font-size: 1.5vmin;
  }
}
@media screen and (max-width: 1280px) {
  .mv {
    font-size: 0.75vw;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 12px;
  }
}
@media screen and (max-width: 990px) {
  .inner {
    margin: 0 2em;
  }
  .container {
    padding: 0 2em;
  }
}
@media screen and (max-width: 940px) {
  .mv__side {
    align-items: flex-start;
    flex-flow: column-reverse;
  }
  .mv__arrow {
    max-width: 13.75em;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    font-size: 14px;
  }
  .mv__img {
    max-width: 85%;
    top: auto;
    bottom: -9em;
  }
  .mv__bg--circle {
    width: 120%;
    left: -10%;
    bottom: -70%;
    border-radius: 50%;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  body {
    font-size: 10px;
  }
  main .inner {
    margin: 0;
  }
  .container,
  .product__inner {
    padding: 0 1em;
  }
  .mv {
    font-size: 12px;
    height: 35em;
  }
  .mv__box {
    align-items: flex-start;
  }
  .mv__img {
    bottom: -5em;
  }
  .mv__arrow {
    max-width: 8em;
  }
  .mv__arrow::after {
    bottom: -3px;
  }
  .mv__side {
    margin-top: 10%;
  }
  .mv__txt {
    margin: 0 0 5%;
  }
  .mv__side &gt; img {
    max-width: 5.18em;
  }
  .mv__ttl {
    font-size: 2.6875em;
    line-height: 1.5;
    letter-spacing: 2px;
  }
  .marquee {
    margin: -150px auto 7em;
  }
  .site__direct {
    margin: 0 0 7em;
  }
  .site__direct .arrow {
    max-width: 26px;
    margin: auto;
  }
  .site__direct a {
    font-size: 6px;
    border-radius: 8px;
  }
  .product__info {
    font-size: 8px;
  }
  .products__ttl {
    margin: 0 0.7125em 3em;
  }
  .product__cards {
    font-size: 2.85vw;
  }
  .product__card {
    width: calc((100% - 8px - 4%) / 2);
  }

  .products__link {
    width: 90%;
    font-size: 12px;
  }
  .swiper-slide,
  .swiper-backface-hidden .swiper-slide {
    max-width: 100px;
  }
}
</pre></body></html>