@charset "UTF-8";

/* ====================================================
Width Media Quary
==================================================== */
/* ====================================================
 Font
==================================================== */
html {
  margin-top: unset !important;
  font-size: 10px;
  overflow-x: hidden;
  /* スムーズスクロール */
  scroll-behavior: smooth;
}

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

*,
*:after,
*:before,
blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
p,
pre,
td,
th {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "Noto Serif", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS 明朝", "MS Mincho", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #293B2B;
  line-height: 1.8;
}

@media screen and (max-width: 1280px) {
  body {
    font-size: 1.5rem;
  }
}

body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: "Noto Sans JP", "Noto Serif", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS 明朝", "MS Mincho", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}

body a {
  text-decoration: none;
  transition: 0.3s;
  color: #293B2B;
  cursor: pointer;
}

body a:hover,
body a ::before,
body a ::after,
body a :hover::before,
body a :hover::after {
  transition: 0.3s;
}

@media screen and (max-width: 1280px) {
  body .hide-lg {
    display: none !important;
  }
}

body .show-lg {
  display: none !important;
}

@media screen and (max-width: 1280px) {
  body .show-lg {
    display: block !important;
  }
}

body .only-sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  body .only-sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  body .only-pc {
    display: none !important;
  }
}

body ol,
body ul,
body li {
  list-style: none;
}

body img {
  max-width: 100%;
  height: auto;
  display: block;
}

body input[type=text],
body input[type=tel],
body input[type=email],
body select,
body textarea {
  font-size: 1.5rem;
  font-family: "Jost", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  background-color: #f2f2f2;
  border: none;
  padding: 15px;
  width: 100%;
}

body select {
  position: relative;
  width: 100%;
  padding-right: 28px;
  background: url(./img/select.svg) no-repeat center right 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #f2f2f2;
}

body ::placeholder {
  color: #ccc;
}

.content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

a.deco {
  text-decoration: underline;
  color: #008CD6;
  transition: 0.3s;
}

a.deco:hover {
  opacity: 0.5;
  transition: 0.3s;
}

a.txt_link:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.btn {
  background: #293B2B;
  width: 100%;
  max-width: 280px;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  border-radius: 10px;
  letter-spacing: 0.05em;
  margin: 60px auto 0;
  display: block;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn_second {
  margin: 20px auto 0;
}

.btn::before {
  background: #6B593B;
  border-radius: 10px;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 0;
  transform: translateY(-50%) scale(0.1);
  transition: 0.3s;
}

.btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  height: 100%;
  transition: 0.3s ease-in-out;
}

.ttl_h2 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin: 120px auto 60px;
}

@media screen and (max-width: 768px) {
  .ttl_h2 {
    font-size: 2.5rem;
    margin: 80px auto 50px;
  }
}

.ttl_h2_02 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 60px;
}

@media screen and (max-width: 768px) {
  .ttl_h2_02 {
    font-size: 2.5rem;
    margin: 0 auto 50px;
  }
}

.ttl_h3 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .ttl_h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}

.ttl_h4 {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  margin: 60px auto 30px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .ttl_h4 {
    font-size: 1.6rem;
  }
}

.ttl_h4 span {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .ttl_h4 span {
    font-size: 1.4rem;
  }
}

#included-files-fie-on-wp-footer {
  display: none;
}

.u-view-sp {
  display: none;
}

.u-view-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .u-view-sp {
    display: block;
  }

  .u-view-pc {
    display: none;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 0 0 40px;
}

@media screen and (max-width: 1280px) {
  .header_inner {
    height: 70px;
    padding: 0 20px;
  }
}

.header_ico {
  width: 100%;
  max-width: 250px;
  height: 100%;
  max-height: 50px;
}

@media screen and (max-width: 1280px) {
  .header_ico {
    max-width: 135px;
    max-height: 30px;
    position: relative;
    z-index: 1;
  }
}

.header_ico img {
  display: block;
  width: 100%;
  max-height: 50px;
  object-fit: contain;
  object-position: left;
}

@media screen and (max-width: 1280px) {
  .header_ico img {
    max-height: 30px;
  }
}

@media screen and (max-width: 1280px) {
  .header_hamburger {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 56px;
    height: 56px;
    background-color: #293B2B;
    border-radius: 100px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .header_hamburger span {
    background-color: #fff;
    width: 26px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: 0.3s;
  }

  .header_hamburger span::before,
  .header_hamburger span::after {
    content: "";
    background-color: #fff;
    width: 26px;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
  }

  .header_hamburger span::before {
    top: -6px;
  }

  .header_hamburger span::after {
    bottom: -6px;
  }

  .header_hamburger.js-open span {
    background-color: transparent;
    transition: 0.3s;
  }

  .header_hamburger.js-open span::before {
    top: 1px;
    transition: 0.3s;
    transform: translateX(-50%) rotate(45deg);
  }

  .header_hamburger.js-open span::after {
    bottom: -1px;
    transition: 0.3s;
    transform: translateX(-50%) rotate(-45deg);
  }
}

.header_contact {
  position: relative;
  background: #293B2B;
  color: #fff;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 0 0 0 20px;
  letter-spacing: 0.05em;
  padding: 40px 30px;
  overflow: hidden;
}

.header_contact span {
  position: relative;
  z-index: 1;
}

.header_contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #6B593B;
  border-radius: 0 0 0 20px;
  opacity: 0;
  transform: scale(0);
  transform-origin: top right;
  transition: transform 0.2s ease, opacity 0.3s ease;
  z-index: 0;
}

.header_contact:hover::before {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 1280px) {
  .global-nav {
    width: 100vw;
    height: 100vh;
    margin-left: unset;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(150%);
    opacity: 0;
  }

  .global-nav.js-open {
    transform: translateX(-50%);
    transition: 0.3s;
    opacity: 1;
    margin: 0 auto;
  }
}

.global-nav_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 20px 60px;
  background: #F6F2E1;
  border-radius: 50px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1280px) {
  .global-nav_list {
    display: block;
    height: auto;
    padding: 110px 15px 30px;
    background-color: #F6F2E1;
    height: 100%;
    overflow: scroll;
    border-radius: unset;
    box-shadow: unset;
  }
}

@media screen and (max-width: 1280px) {
  .global-nav_item {
    width: 100%;
    height: auto;
    margin-right: 0;
    border-bottom: 1px solid #293B2B;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    transition: 0.3s;
  }
}

@media screen and (max-width: 1280px) {
  .global-nav_item:hover {
    border-bottom: 4px solid #6B593B;
    transition: 0.3s;
  }
}

.global-nav_item:hover .global-nav_link {
  color: #6B593B;
  opacity: unset;
}

.global-nav_link {
  text-decoration: none;
  color: #293B2B;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 1280px) {
  .global-nav_link {
    padding: 5px 0;
    position: unset;
    transform: unset;
    display: block;
  }

  .global-nav_link:hover {
    opacity: 0.5;
    transition: 0.3s;
  }
}

.sub-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background-color: #008CD6;
  padding: 35px 50px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

@media screen and (max-width: 1280px) {
  .sub-nav {
    position: relative;
    top: auto;
    left: auto;
    white-space: normal;
    background-color: rgba(255, 255, 255, 0);
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    display: none;
    transition: unset;
    transform: unset;
    padding-bottom: 20px;
  }
}

.sub-nav.js-fade {
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s;
}

@media screen and (max-width: 1280px) {
  .sub-nav.js-fade {
    transition: unset;
  }
}

.sub-nav_link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  text-align: center;
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 1280px) {
  .sub-nav_link {
    padding: 0 0 0 20px;
    color: #333;
    line-height: 1;
    display: block;
    text-align: left;
    font-weight: 500;
  }

  .sub-nav_link:hover {
    color: #008CD6;
    transition: 0.3s;
  }
}

.sub-nav_link::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  transition: 0.3s;
}

@media screen and (max-width: 1280px) {
  .sub-nav_link::before {
    display: none;
  }
}

.sub-nav_link:hover:before {
  width: 100%;
  transition: 0.3s;
}

.btn-tel {
  display: none;
  border: #008CD6 solid 1px;
  padding: 30px 0 30px 85px;
  position: relative;
  line-height: normal;
  text-align: left;
  margin: 40px auto 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.btn-tel:hover {
  background-color: #F0F8FF;
  transition: 0.3s;
}

.btn-tel span {
  display: block;
  font-weight: 400;
  font-size: 1.4rem;
}

@media screen and (max-width: 1280px) {
  .btn-tel {
    display: block;
  }
}

.btn-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/tel-ico.png) center/contain no-repeat;
  transition: 0.2s;
}

.btn-contact {
  display: block;
  padding: 20px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #008CD6 0%, #6BC7FF 50%, #008CD6 100%);
  background-size: 200% 100%;
  transition: 0.2s;
  margin-left: 50px;
}

.btn-contact:hover {
  background-position: 100% 0;
  color: #EAFF00;
  transition: 0.2s;
}

.btn-contact.header-contact {
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 1280px) {
  .btn-contact.header-contact {
    display: none;
  }
}

.btn-contact.nav-contact {
  display: none;
  position: relative;
  line-height: normal;
  text-align: left;
  margin: auto;
  padding: 30px 0 30px 85px;
}

@media screen and (max-width: 1280px) {
  .btn-contact.nav-contact {
    display: block;
  }
}

.btn-contact.nav-contact.mail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/mail-ico.png) center/contain no-repeat;
  transition: 0.2s;
}

.btn-contact.nav-contact.mail:hover::before {
  background: url(../img/mail-ico_yellow.png) center/contain no-repeat;
  transition: 0.2s;
}

.btn-contact.nav-contact.locker {
  background: linear-gradient(90deg, #16349F 0%, #6BC7FF 50%, #16349F 100%);
  background-size: 200% 100%;
  margin-top: 20px;
}

.btn-contact.nav-contact.locker:hover {
  background-position: 100% 0;
  transition: 0.2s;
}

.btn-contact.nav-contact.locker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/locker-ico.png) center/contain no-repeat;
  transition: 0.2s;
}

.btn-contact.nav-contact.locker:hover::before {
  background: url(../img/locker-ico_yellow.png) center/contain no-repeat;
  transition: 0.2s;
}

@media screen and (max-width: 1280px) {
  .header_open {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 60px;
  }

  .header_open::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(135deg);
    width: 12px;
    height: 12px;
    border-top: 2px solid #008CD6;
    border-right: 2px solid #008CD6;
    transition: 0.3s;
  }

  .header_open.js-open::before {
    top: calc(50% + 2px);
    transform: translateY(-50%) translateX(-50%) rotate(-45deg);
    transition: 0.3s;
  }
}

.footer {
  background: #C9CBA7;
  padding: 0 15px;
}

.footer_inner {
  padding: 60px 0 20px;
}

.footer_ttl {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.footer_flex {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .footer_flex {
    display: block;
  }
}

.footer_ico {
  display: block;
}

.footer_ico figure {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.footer_ico figure img {
  display: block;
}

.footer_link {
  margin-top: 40px;
}

.footer_link_item {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer_link_item a {
  display: block;
  transition: 0.3s;
}

.footer_link_item a:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.footer_info {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer_info {
    display: block;
    margin-top: 30px;
  }
}

.footer_instagram {
  background: url(../img/instagram-ico.png) center/contain no-repeat;
  width: 45px;
  height: 45px;
}

.footer_facebook {
  background: url(../img/facebook-ico.png) center/contain no-repeat;
  width: 45px;
  height: 45px;
}

.footer_copy {
  margin-top: 60px;
  text-align: center;
  font-size: 1.4rem;
}

body {
  background-color: #F6F2E1;
}

.index-hero {
  margin-top: 160px;
  padding: 0 60px;
}

@media screen and (max-width: 1280px) {
  .index-hero {
    margin-top: 90px;
    padding: 0 15px;
  }
}

.slick-slide img {
  border-radius: 20px;
}

.slick-dots {
  bottom: -40px !important;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  width: 50px !important;
  height: 20px !important;
}

.slick-dots li.slick-active button {
  background: #293B2B !important;
  width: 50px !important;
  height: 15px !important;
  border-radius: 20px;
  opacity: 1;
}

.slick-dots li button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #C9CBA7 !important;
  padding: 0 !important;
  width: 50px !important;
  height: 15px !important;
  border-radius: 20px;
}

.slick-dots li button::before {
  display: none;
}

.about_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .about_flex {
    display: block;
  }
}

.about_flex_item {
  flex: 1 1 0;
}

@media screen and (max-width: 768px) {
  .about_flex_item {
    margin-bottom: 30px;
  }
}

.about_flex_item figcaption {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 5px;
}

.about_flex_item img {
  margin-bottom: 30px;
}

.catch_copy {
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .catch_copy {
    font-size: 2.2rem;
  }
}

.sec-product {
  background: #DFD7C8;
  position: relative;
  margin-top: 240px;
  padding-bottom: 240px;
}

@media screen and (max-width: 768px) {
  .sec-product {
    margin-top: 120px;
    padding-bottom: 100px;
  }
}

.sec-product::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120px;
  background: url(../img/product_bg_deco.png) center top/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .sec-product::before {
    top: -50px;
    height: 50px;
  }
}

.category-line {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  color: #6B593B;
  padding: 10px 0;
  border: #6B593B solid 1px;
  border-radius: 50px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .category-line {
    font-size: 2rem;
    margin-bottom: 60px;
  }
}

.product_content {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 15px;
}

.product_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 30px;
}

@media screen and (max-width: 768px) {
  .product_flex {
    gap: 60px 15px;
  }
}

.product_flex_item {
  flex: 0 1 calc((100% - 60px) / 3);
}

@media screen and (max-width: 768px) {
  .product_flex_item {
    flex: 0 1 calc((100% - 15px) / 2);
  }
}

.product_txt {
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .product_txt {
    padding: 0;
    font-size: 1.4rem;
  }
}

.product_txt span.note {
  font-size: 1.2rem;
  margin-top: 5px;
  display: block;
}

.sec-enjoy {
  position: relative;
}

.sec-enjoy::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120px;
  background: url(../img/enjoy_bg_deco.png) center top/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .sec-enjoy::before {
    top: -50px;
    height: 50px;
  }
}

.enjoy_content {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 15px;
}

.enjoy_ttl {
  margin: 0 auto 60px;
}

.enjoy_txt {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .enjoy_txt {
    text-align: left;
  }
}

.Instagram_ttl {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Instagram_ttl span {
  background: url(../img/instagram-ico.png) center/contain no-repeat;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  display: inline-block;
}

.instagram_link {
  display: inline-block;
  text-align: center;
  border-radius: 50px;
  padding: 5px 30px 8px;
  background: #293B2B;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 30px auto 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.instagram_link:hover {
  background: #6B593B;
  transition: 0.3s;
}

.sec-handling {
  background: #6B593B;
}

.handling_content {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 120px 15px;
}

.flex_handling {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .flex_handling {
    display: block;
  }
}

.flex_handling_item {
  flex: 1 1 0;
}

.business {
  background: #C9CBA7;
  padding: 60px;
  border-radius: 20px;
}

@media screen and (max-width: 1280px) {
  .business {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 768px) {
  .business {
    margin-bottom: 30px;
    padding: 40px 15px;
  }
}

.general {
  background: #DFD7C8;
  padding: 60px;
  border-radius: 20px;
}

@media screen and (max-width: 1280px) {
  .general {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 768px) {
  .general {
    padding: 40px 15px;
  }
}

.featherlight-modal {
  display: none;
}

.sec-catalog {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .sec-catalog {
    margin-bottom: unset;
  }
}

.catalog_flex {
  display: flex;
  gap: 30px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .catalog_flex {
    display: block;
  }
}

.catalog_flex_item {
  flex: 0 1 calc((100% - 60px) / 3);
}

@media screen and (max-width: 768px) {
  .catalog_flex_item {
    margin-bottom: 50px;
  }
}

.catalog_img {
  border: #293B2B solid 1px;
  display: block;
}

.catalog_img figure {
  overflow: hidden;
}

.catalog_img figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.btn-download {
  width: 100%;
  max-width: unset;
  margin: 20px auto 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 15px 20px;
}

.btn-download::before {
  z-index: -1;
}

.btn-download span {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(../img/download_ico.png) center/contain no-repeat;
  margin-right: 15px;
}

.page-handling {
  margin: 0 auto 120px;
  padding: 0 15px;
  max-width: 800px;
  width: 100%;
}

.handling_shop {
  margin-top: 20px;
}

.handling_shop li {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 30px;
  font-weight: 700;
  color: #293B2B;
  font-size: 1.8rem;
}

.handling_shop li h4 {
  font-size: 1.8rem;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .handling_shop li h4 {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .handling_shop li {
    margin: 0 auto 20px;
    padding: 20px 15px;
  }
}

.handling_shop li span {
  display: inline-block;
  font-size: 1.5rem;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .handling_shop li span {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}

.handling_shop li .btn_shop {
  display: inline-block;
  color: #293B2B;
  padding: 2px 15px;
  border: 1px solid #293B2B;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 15px;
}

.handling_shop li .btn_shop:hover {
  background: #293B2B;
  color: #fff;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .handling_shop li .btn_shop {
    margin: 0 15px 10px 0;
  }
}

.handling_shop li .btn_map {
  display: inline-block;
  color: #6b593b;
  font-size: 1.2rem;
  font-weight: 400;
}

.handling_shop li .btn_map:hover {
  color: #C9B281;
  transition: all 0.3s ease;
}

.handling_ttl {
  font-size: 2rem;
  letter-spacing: 0.1em;
  position: relative;
  margin-top: 60px;
}

.handling_ttl:first-child {
  margin-top: 0;
}

.handling_ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  border-radius: 100px;
  background: #293B2B;
}

.handling_cate_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .handling_cate_list ul {
    justify-content: unset;
  }
}

.handling_cate_list ul li:hover a.handling_cate {
  background-color: #293B2B;
  color: #fff;
  transition: all 0.3s ease;
}

.handling_cate_list a.handling_cate {
  padding: 3px 30px;
  background: #c9cba7;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #293B2B;
  display: inline-block;
  letter-spacing: 0.05em;
}

.handling_cate_list a.handling_cate.active {
  background-color: #293B2B;
  color: #fff;
}

.handling_cate {
  display: block;
  margin-bottom: 10px;
}

.handling_cate p {
  padding: 3px 30px;
  background: #c9cba7;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #293B2B;
  display: inline-block;
  letter-spacing: 0.05em;
}

.area_select_wrapper {
  max-width: 350px;
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.area_select_box {
  width: 100%;
  padding: 8px 30px 8px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #293B2B;
  background-color: #f9f9f9;
  border: 2px solid #293B2B;
  border-radius: 50px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .area_select_box {
    font-size: 1.4rem;
  }
}

.area_select_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #293B2B transparent transparent transparent;
  pointer-events: none;
}

.area_select_box:focus {
  outline: none;
  background-color: #c9cba7;
}

/*# sourceMappingURL=styles.css.map */



/* お知らせ */
.sec-news {
  padding: 40px 0 70px;
}

/* .sec-news {
  background: #DFD7C8;
  position: relative;
  margin-top: 240px;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .sec-news {
    margin-top: 120px;
    padding-bottom: 40px;
  }
}

.sec-news::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120px;
  background: url(../img/product_bg_deco.png) center top/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .sec-news::before {
    top: -50px;
    height: 50px;
  }
} */

.news_cont {
  margin-top: 20px;
}

.news_item {
  display: block;
  text-decoration: none;
  background: #fff;
  padding: 15px 30px;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 20px;
  font-weight: 700;
  color: #293B2B;
  font-size: 1.8rem;
  box-sizing: border-box;
}

.news_item:hover {
  opacity: 0.8;
}

.news_item .news-date {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #666;
  font-weight: normal;
}

.news_item h4 {
  font-size: 1.8rem;
  display: inline-block;
  margin: 0;
}

.news-detail-article {
  margin-bottom: 50px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.news-detail-header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eaeaea;
}

.news-detail-date {
  display: block;
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 10px;
  font-weight: normal;
}

.news-detail-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #293B2B;
  line-height: 1.4;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .sec-news {
    padding: 10px 0 20px;
  }

  .news_item {
    padding: 20px;
  }

  .news_item h4 {
    font-size: 1.6rem;
  }

  .news-detail-title {
    font-size: 2.1rem;
  }

  .news-detail-article {
    padding: 30px 20px;
  }
}