/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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, td, tfoot, th, thead, tr,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Remove list bullets */
ul, ol {
  list-style: none;
}

/* Remove link underline */
a {
  text-decoration: none;
  color: inherit;
}

/* Keep heading sizes */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Link hover effect */
a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

:root {
  --text-color: #000;
  --bg-color-primary: #ffffff;
  --bg-color-secondary: #F9FAFE;
  --bg-color-tertiary: #F4F5F7;
  --bg-color-quaternary:#FDF5F1;
  --accent-color: #d61518;
  --font-size-base: 16px;
  --font-family-base: Yu Gothic, yugothic, sans-serif;
  --container-max-width: 1400px;
  --container-inner-width: 1200px;
  --container-sm-width: 750px;
  --container-padding: clamp(15px, 2vw, 20px);
}

html {
  font-size: 16px;
}

body {
  color: #000;
  font-size: 16px;
  font-family: "Yu Gothic", "yugothic", sans-serif;
  background-color: #ffffff;
  line-height: 1.6;
}

section {
  padding-inline: clamp(15px, 2vw, 20px);
}
section.no_pd {
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  container-type: inline-size;
  container-name: max-container;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  container-type: inline-size;
  container-name: inner-container;
}

.small-inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  container-type: inline-size;
  container-name: small-inner-container;
}

.middle-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  container-type: inline-size;
  container-name: middle-inner-container;
}

.small-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.section_padding {
  padding: 80px 20px;
}

.innferpadding {
  padding-inline: clamp(15px, 2vw, 20px);
}
.innferpadding.no_pd {
  padding: 0;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt60 {
  margin-top: 60px;
}

.ptb20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ptb30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.title_section {
  padding-top: 100px;
}
.title_section .page_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-family: "Yu Gothic", "yugothic", sans-serif;
}
.title_section .page_title .jp {
  font-size: clamp(2.25rem, 1.9090909091rem + 1.4545454545vw, 3rem);
  color: #232323;
}
.title_section .page_title .en {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .nosp {
    display: none;
  }
}
.pagination {
  text-align: center;
  margin: 40px 0;
}
.pagination .wp-pagenavi {
  display: inline-block;
}
.pagination .wp-pagenavi a,
.pagination .wp-pagenavi span.current {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  border: 1px solid #d61518;
  color: #d61518;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
}
.pagination .wp-pagenavi span.current {
  background-color: #d61518;
  color: #fff;
}

.text-accent {
  color: #d61518;
}

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

.text-break-pc span {
  display: inline-block;
}

.bg-white {
  background-color: #fff;
}

.bg-secondary {
  background-color: #F9FAFE;
}

.bg-tertiary {
  background-color: #F4F5F7;
}

.bg-quaternary {
  background-color: #FDF5F1;
}

.section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 700;
}
.section_title::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  background: url("../images/common/icon_title.svg") no-repeat center/contain;
}

h2.section_title {
  font-size: clamp(2rem, 1.8863636364rem + 0.4848484848vw, 2.25rem);
}

h3.section_title {
  font-size: clamp(1.25rem, 1.1363636364rem + 0.4848484848vw, 1.5rem);
}

.btn_common {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: #d61518;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s;
  width: 310px;
  font-weight: 700;
  font-size: 1rem;
  height: 60px;
  margin-right: auto;
  margin-left: auto;
}
.btn_common span {
  width: 225px;
  text-align: center;
}
.btn_common::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  background: url("../images/common/icon_arrow_right.svg") no-repeat center/contain;
  vertical-align: middle;
}
.btn_common:hover {
  background-color: rgb(167.5574468085, 16.4425531915, 18.7914893617);
}

.btn_common_s {
  width: 210px;
  height: 36px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  background-color: #d61518;
  color: #fff;
  text-decoration: none;
  border-radius: 18px;
  transition: background-color 0.3s;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.flexbox.flex-reverse {
  flex-direction: row-reverse;
}
@supports (container-type: inline-size) {
  @container middle-inner-container (max-width: 959px) {
    .flexbox {
      flex-direction: column;
    }
    .flexbox.flex-reverse {
      flex-direction: column;
    }
  }
}

.pickup_products {
  padding: 80px 20px;
}
.pickup_products .pickup_lists {
  display: grid;
  margin-top: 40px;
  margin-bottom: 40px;
  grid-template-columns: repeat(4, 330px);
  justify-content: center;
}
.pickup_products .pickup_item {
  width: 330px;
  padding: 10px 10px 30px;
  display: flex;
  flex-direction: column;
}
.pickup_products .pickup_figure {
  border-radius: 20px;
  overflow: hidden;
  width: 300px;
  height: 300px;
  margin: 0 auto 10px;
}
.pickup_products .pickup_figure img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pickup_products h4 {
  margin-bottom: 10px;
  min-height: 50px;
}
.pickup_products .pickup_price {
  font-size: 1.25rem;
}
.pickup_products .pickup_buy_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: #d61518;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s;
  width: 350px;
  max-width: 100%;
  font-weight: 700;
  font-size: 1rem;
  height: 60px;
  margin-right: auto;
  margin-left: auto;
  gap: 20px;
}
.pickup_products .pickup_buy_btn span {
  width: 180px;
  text-align: center;
}
.pickup_products .pickup_buy_btn::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  background: url("../images/common/icon_cart.svg") no-repeat center/contain;
  vertical-align: middle;
}
.pickup_products .pickup_buy_btn::after {
  content: "";
  display: inline-block;
  width: 1.5625rem;
  height: 1.5625rem;
  margin-left: 0.5rem;
  background: url("../images/common/icon_arrow_right.svg") no-repeat center/contain;
  vertical-align: middle;
}
@supports (container-type: inline-size) {
  @container max-container (max-width: 1319px) {
    .pickup_products .pickup_lists {
      grid-template-columns: repeat(2, 330px);
    }
  }
}
@supports (container-type: inline-size) {
  @container max-container (max-width: 699px) {
    .pickup_products .pickup_lists {
      grid-template-columns: repeat(1, 330px);
    }
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  padding: 1rem clamp(15px, 2vw, 20px);
  max-width: 100dvw;
  z-index: 100;
  margin: auto;
}

header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100dvw;
  margin: 0 auto;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #000;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  font-weight: 700;
  letter-spacing: 0.085em;
}
.nav-menu a {
  color: #d61518;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-menu a:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.5rem;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #d61518;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}
.footer_wrap {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.footer_logo {
  align-items: flex-start;
}

.footer_infomation_content {
  align-items: flex-start;
  line-height: 1.6;
  letter-spacing: 0.085em;
}

.footer_nav_wrap {
  display: flex;
  justify-content: flex-end;
}
.footer_nav_wrap .footer_nav {
  display: flex;
  gap: 20px;
}
.footer_nav_wrap .footer_nav a {
  font-weight: 700;
  color: #d61518;
}

@media (max-width: 1024px) {
  .footer_logo,
  .footer_infomation_content,
  .footer_nav_wrap {
    justify-content: center;
  }
}
.footer_sns {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.footer_sns p {
  font-size: 2.25rem;
  font-weight: 700;
}
.footer_sns .snsbtn {
  width: 250px;
  color: #d61518;
  align-items: center;
  justify-content: center;
  border: 1px solid #d61518;
  padding: 14px 40px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
.footer_sns .snsbtn:before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
.footer_sns .snsbtn.sns_fb::before {
  background: url("../images/common/sns_fb.svg") no-repeat center/contain;
}
.footer_sns .snsbtn.sns_ig::before {
  background: url("../images/common/sns_ig.svg") no-repeat center/contain;
}
.footer_sns .snsbtn:hover {
  background-color: #d61518;
  color: #ffffff;
}

.copylight {
  font-size: 0.75rem;
  padding: 10px 20px;
}

#gotop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  transition: bottom 0.3s ease;
  cursor: pointer;
}
#gotop img {
  width: 80px;
}

#main_visual {
  margin: 0 auto 100px;
  max-width: 100dvw;
  container-type: inline-size;
  container-name: mv-container;
}

.mv_grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 750px 1fr;
  position: relative;
  height: min(100dvh, 1300px);
  overflow: hidden;
}
.mv_grid .mv_bg {
  grid-column: 1;
  grid-row: 1/-1;
  justify-self: center;
}
.mv_grid .mv_text {
  grid-column: 1;
  grid-row: 1/2;
  padding: 40px 40px 0;
  align-self: center;
}
.mv_grid .mv_scroll {
  grid-column: 1;
  grid-row: 2/3;
  justify-self: center;
  margin-top: auto;
  margin-bottom: 40px;
}
@supports (container-type: inline-size) {
  @container mv-container (max-width: 1399px) {
    .mv_grid {
      grid-template-rows: 1fr 100px;
      height: auto;
    }
    .mv_grid .mv_text {
      width: clamp(600px, 60vw, 740px);
    }
  }
}
@media (max-width: 768px) {
  .mv_grid {
    grid-template-rows: 1fr min(20vw, 60px);
  }
  .mv_grid .mv_text {
    width: clamp(300px, 70vw, 600px);
  }
  .mv_grid .mv_scroll {
    height: 50px;
  }
}

.top_about {
  margin-top: 40px;
  margin-bottom: 100px;
}
.top_about .top_about_inner {
  background-image: url("../images/top/bg_fairy1.png"), url("../images/top/bg_fairy2.png");
  background-position: left top, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}
.top_about .top_about_title {
  color: #d61518;
}
.top_about .top_about_subtitle {
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  max-width: 500px;
  margin: 1.25rem auto 1.875rem;
}
.top_about p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  max-width: 500px;
  margin: 20px auto;
  letter-spacing: 0.085em;
}
@supports (container-type: inline-size) {
  @container small-inner-container (max-width: 679px) {
    .top_about .top_about_inner {
      background-size: 100px, 100px;
    }
    .top_about .top_about_subtitle {
      font-size: clamp(1.25rem, 3.5294117647vw, 1.5rem);
    }
  }
}
@supports (container-type: inline-size) {
  @container small-inner-container (max-width: 599px) {
    .top_about .top_about_inner {
      background-size: 50px, 50px;
    }
  }
}

.top_grace {
  background-color: var(--bg-color-secondary);
}
.top_grace .grace-inner {
  padding: 80px 20px;
}
.top_grace .top_grace_bg {
  text-align: center;
  background-image: url("../images/top/bg_grace.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1150px;
  min-height: 500px;
}
.top_grace .top_grace_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1.8;
  letter-spacing: 0.085em;
}
.top_grace .top_grace_box p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
}
.top_grace .top_grace_box .sasara_grace {
  display: none;
}
.top_grace .top_grace_box_inner {
  min-height: 320px;
  max-width: 500px;
  text-align: left;
  margin-bottom: 40px;
}
.top_grace .section_title {
  margin-bottom: 0.625rem;
  letter-spacing: 0.085em;
}
.top_grace .section_subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  line-height: 1.6;
  margin-bottom: 7.5rem;
}
@media (max-width: 1024px) {
  .top_grace .top_grace_bg {
    background-image: none;
  }
  .top_grace .top_grace_box {
    flex-direction: column;
  }
  .top_grace .top_grace_box .sasara_grace {
    display: block;
  }
  .top_grace .top_grace_box .sasara_grace img {
    height: 350px;
  }
}

.top_products {
  padding: 80px 20px;
}

.products_textbox {
  display: flex;
  justify-content: center;
  gap: 30px 70px;
}
.products_textbox .title_box {
  max-width: 350px;
}
.products_textbox .title_box .top_products_title {
  line-height: 1.8;
  letter-spacing: 1.2px;
  font-size: clamp(2.25rem, 2.1363636364rem + 0.4848484848vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.products_textbox .title_box .top_products_title span {
  display: inline-block;
}
.products_textbox .content_box {
  max-width: 585px;
}
.products_textbox .content_box p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.085em;
  line-height: 1.8;
}
@supports (container-type: inline-size) {
  @container middle-inner-container (max-width: 959px) {
    .products_textbox {
      flex-direction: column;
      align-items: center;
    }
    .products_textbox .title_box {
      max-width: 100%;
    }
    .products_textbox .content_box {
      max-width: 100%;
    }
  }
}

.top_products_itembox {
  display: grid;
  justify-content: center;
  margin-top: 60px;
  grid-template-columns: repeat(4, 250px);
  margin-bottom: 80px;
}
.top_products_itembox .product_item {
  width: 250px;
  padding: 0 10px 20px;
}
.top_products_itembox .product_item p {
  min-height: 135px;
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 20px 0;
}
.top_products_itembox .product_item_title {
  height: 62px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-bottom: 1px solid #000;
}
@supports (container-type: inline-size) {
  @container middle-inner-container (max-width: 959px) {
    .top_products_itembox {
      grid-template-columns: repeat(2, 250px);
    }
  }
}
@supports (container-type: inline-size) {
  @container middle-inner-container (max-width: 599px) {
    .top_products_itembox {
      grid-template-columns: repeat(1, 250px);
    }
  }
}

.amazake_plane .product_item_title {
  border-color: #61CDEF;
}

.amazake_yuzu .product_item_title {
  border-color: #FFDB6E;
}

.amazake_ringo .product_item_title {
  border-color: #D61518;
}

.amazake_mikan .product_item_title {
  border-color: #EE6B30;
}

.top_voice {
  padding: 80px 20px;
}

.top_voice_lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.voice_item {
  display: flex;
  gap: 20px;
  padding: clamp(20px, 4vw, 40px);
  background-color: #fff;
  border-radius: 20px;
}
.voice_item .voice_item_img {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  background-color: #F4F5F7;
  border-radius: 50%;
  overflow: hidden;
  align-self: center;
}
.voice_item .voice_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.voice_item .voice_text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.085em;
}
.voice_item.voice_item_reverse {
  flex-direction: row-reverse;
}

@supports (container-type: inline-size) {
  @container middle-inner-container (max-width: 959px) {
    .voice_item {
      flex-direction: column !important;
    }
  }
}
.top_infomation {
  padding: 60px min(3vw, 40px) 80px;
}

.infomation_box {
  display: flex;
  padding: 20px 0;
}
.infomation_box .infomation_titlebox {
  width: 210px;
  flex: 0 0 210px;
}
.infomation_box .infomation_titlebox h3 {
  font-size: 2.25rem;
  font-weight: 700;
}
.infomation_box .infomation_titlebox a {
  color: #d61518;
  text-decoration: underline;
}
.infomation_box .infomation_list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.infomation_box .infomation_list .infomation_time {
  color: #C79521;
}
.infomation_box .infomation_list .infomation_item {
  height: 100px;
  width: 100%;
  display: flex;
  gap: 20px;
  border-bottom: 1px dotted #000;
  align-items: center;
}
.infomation_box .infomation_list .infomation_item:first-of-type {
  border-top: 1px dotted #000;
}
@supports (container-type: inline-size) {
  @container max-container (max-width: 899px) {
    .infomation_box {
      flex-wrap: wrap;
      gap: 20px;
    }
  }
}
@supports (container-type: inline-size) {
  @container max-container (max-width: 599px) {
    .infomation_box .infomation_list .infomation_item {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 0;
      gap: 0px;
      height: auto;
    }
  }
}

.page-about_top {
  padding-block: 60px;
  padding-inline: clamp(15px, 2vw, 20px);
}
.page-about_top .about_top_text {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.085em;
}
.page-about_top .yoncoma {
  padding: 40px 10px;
}

.page-about_origin {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about_origin_box {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}
.about_origin_box .about_origin_box_image {
  width: 300px;
  flex: 0 0 300px;
}
.about_origin_box .about_origin_box_image2 {
  width: 400px;
  max-width: 100%;
  flex: 0 0 400px;
}
.about_origin_box .about_origin_box_text {
  flex: 1 1 auto;
  font-size: 1.25rem;
  line-height: 2;
}
@supports (container-type: inline-size) {
  @container inner-container (max-width: 999px) {
    .about_origin_box {
      flex-direction: column;
    }
  }
}

.about_origin_infomation {
  text-align: center;
  font-size: 1.25rem;
  line-height: 2;
  padding: 40px 0;
}

.page-about_gaba {
  padding-top: 40px;
  padding-bottom: 80px;
}

.gaba_box {
  background-color: #FDF5F1;
  border-radius: 40px;
  padding: 40px 60px;
}
@media (max-width: 768px) {
  .gaba_box {
    padding: 20px;
  }
}

.gaba_box_inner {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}
.gaba_box_inner figure {
  width: 400px;
  flex: 0 0 400px;
  max-width: 100%;
}
.gaba_box_inner div {
  flex: 1 1 auto;
  max-width: 440px;
}
.gaba_box_inner div p {
  font-size: 1.25rem;
}
@media (max-width: 1024px) {
  .gaba_box_inner {
    flex-direction: column;
    align-items: center;
  }
  .gaba_box_inner figure {
    flex: auto;
  }
  .gaba_box_inner div {
    max-width: 100%;
  }
}

.page-about_fairy {
  padding-top: 80px;
  padding-bottom: 60px;
}

.about_fairy_box {
  background-color: #fff;
  display: grid;
  max-width: 1000px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  gap: 20px;
  grid-template-areas: "mirurun_img  title title sararan_img" "mirurun_img  info  info  sararan_img" "mirurun_info mirurun_info sararan_info sararan_info";
  grid-template-rows: auto 270px 200px;
  grid-template-columns: 200px 1fr 1fr 200px;
}
.about_fairy_box .fairy_box_title {
  grid-area: title;
  text-align: center;
  color: #d61518;
}
.about_fairy_box .fairy_box_mirurun {
  grid-area: mirurun_img;
}
.about_fairy_box .fairy_box_sasaran {
  grid-area: sararan_img;
}
.about_fairy_box figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_fairy_box .fairy_box_infomation {
  grid-area: info;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 2;
  letter-spacing: 1px;
}
.about_fairy_box .fairy_box_mirurun_info {
  grid-area: mirurun_info;
  background-color: #FFF5F5;
  border: 1px solid #FFD9D9;
}
.about_fairy_box .fairy_box_sararan_info {
  grid-area: sararan_info;
  background-color: #F1F8ED;
  border: 1px solid #CCE9D7;
}
.about_fairy_box .fairy_box_fbox {
  padding: 20px;
  letter-spacing: 1px;
  border-radius: 10px;
}
.about_fairy_box .fairy_box_fbox h4 {
  font-size: 1.5rem;
  font-weight: 700;
  padding-top: 10px;
}
.about_fairy_box .fairy_box_fbox p {
  padding: 10px;
  font-size: 18px;
}
@supports (container-type: inline-size) {
  @container middle-inner-container (max-width: 999px) {
    .about_fairy_box {
      grid-template-areas: "title title" "info info" "mirurun_img sararan_img" "mirurun_info sararan_info";
      grid-template-rows: 150px 270px 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
  }
}
@supports (container-type: inline-size) {
  @container middle-inner-container (max-width: 799px) {
    .about_fairy_box {
      grid-template-areas: "title " "info " "mirurun_img " "mirurun_info " "sararan_img" "sararan_info";
      grid-template-rows: auto 1fr 300px auto 300px auto;
      grid-template-columns: 1fr;
      padding: 10px;
    }
    .about_fairy_box .fairy_box_infomation span {
      display: inline-block;
    }
  }
}

.overview_greeting {
  padding-block: 60px;
}

.overview_greeting_title {
  color: #d61518;
  font-size: 2.25rem;
  font-weight: 700;
  margin-block: 20px;
  text-align: center;
}

.overview_content_title {
  color: #d61518;
  font-size: 2.25rem;
  font-weight: 700;
  margin-block: 20px;
}

.overview_greeting_box {
  padding: 20px;
  gap: 40px;
}
.overview_greeting_box div {
  max-width: 485px;
  font-size: clamp(1.75rem, 1.6363636364rem + 0.4848484848vw, 2rem);
  font-weight: 700;
}
.overview_greeting_box figure {
  max-width: 210px;
}
.overview_greeting_box figure img {
  width: 100%;
}

.overview_table .overview_item {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.overview_table .overview_item dt {
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #F0F0F0;
}
.overview_table .overview_item dd {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  padding: 20px;
  border-right: 1px solid #C5C5C5;
}
.overview_table .overview_item dt,
.overview_table .overview_item dd {
  border-left: 1px solid #C5C5C5;
  border-top: 1px solid #C5C5C5;
}
.overview_table .overview_item:last-child dt, .overview_table .overview_item:last-child dd {
  border-bottom: 1px solid #C5C5C5;
}
@media (max-width: 1024px) {
  .overview_table .overview_item {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr;
    margin-bottom: 10px;
  }
  .overview_table .overview_item dt {
    font-size: 1rem;
    border: 1px solid #C5C5C5;
  }
  .overview_table .overview_item dd {
    border-top: none;
    border-left: 1px solid #C5C5C5;
    border-right: 1px solid #C5C5C5;
    border-bottom: 1px solid #C5C5C5;
  }
}

.overview_map {
  margin-bottom: 60px;
}
.overview_map > div h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d61518;
  margin-top: 40px;
}
.overview_map > div p {
  font-size: 1.125rem;
}
.overview_map > div figure {
  margin-block: 10px;
}

.product_wrap {
  display: flex;
  flex-wrap: wrap;
}

.category_wrap {
  flex: 0 0 300px;
}
@supports (container-type: inline-size) {
  @container inner-container (max-width: 1199px) {
    .category_wrap {
      flex: auto;
      width: 100%;
    }
  }
}

.items_wrap {
  flex: 1 1 900px;
}
.items_wrap h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 20px 0 30px;
}

.category_list {
  margin: 60px 60px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 15px 30px;
}
.category_list a {
  border: 1px solid #d61518;
  color: #d61518;
  padding: 6px 20px;
  height: 42px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category_list a.is_active {
  color: #fff;
  background-color: #d61518;
}
@supports (container-type: inline-size) {
  @container inner-container (max-width: 1199px) {
    .category_list {
      margin: 60px 0 40px 0;
      flex-direction: row;
      flex-wrap: wrap;
    }
  }
}

.item_lists {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.item_lists .item {
  padding: 10px;
  margin: 0 auto 30px;
  max-width: 300px;
}
.item_lists .item .item_figure {
  width: 280px;
  height: 300px;
  margin: 0 auto 20px;
}
.item_lists .item .item_figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  margin: auto;
}
.item_lists .item h4 {
  padding: 5px 0;
  margin-bottom: 14px;
}
.item_lists .item .item_price {
  font-size: 1.25rem;
  padding-block: 5px;
}

.singlepage {
  padding: 60px clamp(15px, 2vw, 20px) 80px;
}
.singlepage .post_date {
  font-size: 1rem;
  color: #C79521;
  margin-bottom: 20px;
  text-align: right;
}
.singlepage .page_content {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}/*# sourceMappingURL=style.css.map */