@charset "UTF-8";

/* =========================================================
   Google Fonts
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");


/* =========================================================
   RESET
========================================================= */

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, section {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul { list-style: none; }
table { border-collapse: collapse; }

* { box-sizing: border-box; }


/* =========================================================
   BASE
========================================================= */

html { font-size: 62.5%; }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  color: #333;
  overflow-y: scroll;
  margin: 0;
  background: #FFF7F0;
}

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

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   LAYOUT
========================================================= */

.main {
  max-width: 68rem;
  margin: 0 auto;
  background: #FFF7F0;
  font-size: clamp(1.6rem, 2.6vw, 1.8rem);
}

.main-contents {
  display: grid;
  gap: 3rem;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  gap: 1.2rem;
}

@media (min-width: 560px) {
  .container {
    max-width: 500px;
    margin-inline: auto;
  }
}


/* =========================================================
   PRODUCT LIST (GRID)
========================================================= */

.product-list--1col {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.product-list--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 560px) {
  .product-list--2col {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
  padding: 3rem 2rem;
}

.product-card h3 {
  font-family: "Zen Maru Gothic", serif;
  color: #EB6800;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  height: 100%;
}

.product-card .type img {
  width: 2rem;
  height: auto;
}


/* =========================================================
   IMAGE / PHOTO
========================================================= */

.photo {
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}

.col_2 .product-card .photo img,
.product-list--2col .product-card .photo img {
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


/* =========================================================
   PRICE
========================================================= */

.price {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0;
}

.price .price-tax {
  font-size: 1.5rem;
}


/* =========================================================
   BUTTON
========================================================= */

.link-btn,
.link-btn_g {
  width: 300px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border-radius: 100px;
  text-align: center;
}

.link-btn { background: #EB6800; }
.link-btn_g { background: darkgrey; }

.link-btn a,
.link-btn_g a {
  color: #fff;
  letter-spacing: 2px;
}

.btn {
  display: inline-block;
  text-decoration: none;
}

.btn-order {
  background-color: #EB6800;
  width: calc(100% - 10rem);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
}

@media (min-width: 560px) {
  .btn-order {
    width: 300px;
  }
}

/* =========================================================
   ITEM NAME
========================================================= */

.item-name {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
  color: #EB6800;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 560px) {
  .item-name {
    font-size: 3rem;
  }
}

.product-list--1col .item-name {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 0;
  line-height: 1.2;
}

.product-list--1col .item-name span {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

@media (min-width: 560px) {
  .product-list--1col .item-name {
    font-size: 3rem;
    margin-top: 0;
  }
}


/* =========================================================
   SECTION
========================================================= */

.brand-section {
  background-color: #fff;
  background-image: url("../img/section_bg.png");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 100% auto;
  padding-block: 2rem;
}

.brand-title {
  text-align: center;
}

.brand-title img {
  max-height: 8rem;
}

.area-mikyan {
  display: flex;
  justify-content: center;
  background: url("../img/bg.png") top center no-repeat;
  background-size: contain;
}

.area-mikyan .image-box {
  max-width: 408px;
  margin: 5rem 0 0 5rem;
}

.others {
  text-align: center;
}

.others p {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  margin-top: 2rem;
}


/* =========================================================
   FOOTER
========================================================= */

.area-footer {
  padding: 4rem 0 5rem;
  text-align: center;
  background: #FFF;
}

.back-btn {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid;
}

.back-btn:hover {
  opacity: 0.5;
}


/* =========================================================
   ANIMATION
========================================================= */

.fade-in {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1.3s;
}

.fade-in.is-view {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   UTILITY
========================================================= */

.visually-hidden {
  display: none;
}

figure {
  margin: 0;
}