@charset "utf-8";
/* CSS Document */
*, *::before, *::after {
  box-sizing: border-box
}
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  line-height: 1.5;
}
body {
  line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
/*====================================
----------------------------------
  		目次
----------------------------------
0. 基本構造
1. ヘッダー
    1.1	SPヘッダー
    1.2 PCヘッダー
2. メイン
    1.1	メインコンテンツ
    1.2 サイドバー
3. フッター
4. 商品一覧
5. フリーページ
====================================*/
/*====================================
 
	0. 基本構造
 
====================================*/
body {
  background: #fef8ee;
  line-height: 1.5;
  font-family: 'Noto Serif JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 100%;
  color: #494949;
}
a {
  color: #494949;
}
img {
  max-width: 100%;
}
i {
  font-family: "Font Awesome 6 Free";
}
ul {
  list-style: none;
}
@media(max-width: 767px) {
  body {
    font-size: 90%;
  }
  .sp_no {
    display: none !important;
  }
  .inner {
    padding: 20px 6%;
  }
}
@media(min-width: 768px) {
  .pc_no {
    display: none !important;
  }
  .inner {
    max-width: 1000px;
    margin: 0 auto;
  }
}
/*====================================
 
	1. ヘッダー
 
====================================*/
header {
  background-image: url("https://img21.shop-pro.jp/PA01453/791/etc/bg_header.jpg");
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}
/*
 	1.1 SPヘッダー
====================================*/
@media(max-width: 768px) {
  .header_sp_ttl_copy {
    font-size: 0.65rem;
  }
  h1 {
    padding: 15px 0;
  }
  h1 img {
    width: 120px;
  }
  .header_sp_ttl {
    width: 100%;
    height: 80px;
    padding: 10px;
    border-top: 2px solid #494949;
    text-align: center;
  }
  .header_sp_top-nav {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    background-position: center;
  }
  .header_sp_top-nav li {
    width: 25%;
    text-align: center;
    padding: 10px 0;
  }
  .header_sp_top-nav a {
    color: #494949;
    text-decoration: none;
    display: block;
    padding: 0 5px;
  }
  .header_sp_top-nav li:not(:last-of-type) a {
    border-right: 1px solid #D7D7D7;
  }
  .header_sp_top-nav i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  /*　ハンバーガーボタン　*/
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .16);
  }
  .global-nav {
    position: fixed;
    right: -320px; /* これで隠れる */
    top: 0;
    width: 300px; /* スマホに収まるくらい */
    height: 100vh;
    padding: 40px 0 80px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: fixed;
    right: 10px;
    top: 10px;
    width: 45px; /* クリックしやすいようにちゃんと幅を指定する */
    height: 45px; /* クリックしやすいようにちゃんと高さを指定する */
    cursor: pointer;
    z-index: 300;
  }
  .global-nav__list {
    margin: 0;
    padding: 0;
    background-color: #fff;
  }
  .global-nav__item {
    text-align: center;
    padding: 0 14px;
  }
  .global-nav__item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #E7E7E7;
    text-decoration: none;
    color: #111;
  }
  .global-nav__item a:hover {
    background-color: #eee;
  }
  .global-nav h2 {
    padding: 20px 10px 10px 14px;
    text-align: left;
  }
  .global-nav__list_category, .global-nav__list_pattern {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 11px;
  }
  .global-nav__list_category img, .global-nav__list_pattern img {
    display: block;
    margin: 0 auto 10px;
  }
  .global-nav__list_category li {
    text-align: center;
    background-color: #F3F3F3;
    width: 31.0%;
    margin: 3px;
  }
  .global-nav__list_pattern li {
    width: 31.0%;
    margin: 3px;
  }
  .global-nav__list_category li a, .global-nav__list_pattern li a {
    display: block;
    color: #494949;
    text-decoration: none;
    font-size: 0.65rem;
    line-height: 1.2;
    padding: 8px;
  }
  .global-nav__list_category::after, .global-nav__list_pattern::after {
    content: "";
    display: block;
    width: 31.0%;
    height: 0;
    padding: 8px;
    margin: 3px;
  }
  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 25px;
    height: 2px;
    background-color: #494949;
    transition: all .6s;
    border-radius: 2px;
  }
  .hamburger__line--1 {
    top: 14px;
  }
  .hamburger__line--2 {
    top: 22px;
  }
  .hamburger__line--3 {
    top: 30px;
  }
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    right: 0;
  }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(405deg);
    top: 20px;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-405deg);
    top: 20px;
  }
}
/*
 	1.2 PCヘッダー
====================================*/
@media(min-width: 768px) {
  .header_pc ul a {
    text-decoration: none;
  }
  .header_pc_top {
    background-color: #494949;
    text-align: right;
    padding: 8px 0 10px;
  }
  .header_pc_top a {
    color: #fff;
    font-size: 0.8rem;
    padding: 0 15px;
  }
  .header_pc_top li:last-of-type a {
    padding-right: 0;
  }
  .header_pc_top a:hover {
    text-decoration: underline;
  }
  .header_pc_top-nav {
    display: flex;
    justify-content: flex-end;
  }
  .header_pc_top-nav li {
    line-height: 1.0;
  }
  .header_pc_left {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    line-height: 0.5;
  }
  .header_pc_left a {
    text-decoration: none;
    color: #494949;
    font-weight: bold;
  }
  .header_pc_left span {
    display: block;
    padding-bottom: 8px;
    line-height: 0.9;
    font-size: 0.8rem;
  }
  .header_pc_left p img {
    margin-right: 10px;
  }
  h1 {
    margin-right: 20px;
  }
  .header_pc_ttl {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
  }
  .header_pc_right p {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .header_pc_login-cart {
    display: flex;
  }
  .header_pc_login-cart a {
    color: #fff;
    padding: 3px 24px;
    text-align: center;
    font-size: 0.8rem;
    display: block;
  }
  .header_pc_login-cart li:first-of-type {
    background-color: #bf4825;
    margin-right: 8px;
  }
  .header_pc_login-cart li:last-of-type {
    background-color: #c7953d;
  }
  .header_pc_gnav {
    display: flex;
    padding: 20px 0 10px;
    justify-content: space-between;
  }
  .header_pc_gnav img {
    display: block;
    margin: 0 auto 5px;
    width: 46px;
    height: 46px;
  }
  .header_pc_gnav li {
    width: 142px;
    text-align: center;
  }
  .header_pc_gnav a {
    text-align: center;
    font-size: 0.8rem;
    color: #494949;
    width: 125px;
    font-weight: bold;
  }
  .header_pc_gnav li:not(:last-of-type) {
    border-right: 1px solid #d0d0d0;
  }
}
/*====================================
 
	2. メイン
 
====================================*/
/*
 	2.1 メインコンテンツ
====================================*/
/*スライダー部分*/
#app {
  overflow: hidden;
  background: url("../images/common/bg_green.jpg");
}
.swiper-container {
  width: 100%;
  max-width: 800px !important;
  margin: 0 auto !important;
  overflow: visible !important;
}
@media(max-width: 767px) {
  #app {
    padding: 20px 0 0;
    margin: 0;
  }
  .swiper-slide img {
    padding: 0 10px;
  }
}
.main h2 {
  font-size: 1.12rem;
  padding: 10px 0;
  border-bottom: 1px solid #626262;
  margin-bottom: 20px;
}
.main > div {
  margin-bottom: 35px;
}
.top_news dt {
  color: #c34723;
}
.top_news dd:not(:last-of-type) {
  margin-bottom: 10px;
}
.top_category ul, .top_pattarn ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_category li {
  width: 50%;
  flex: 0 0 50%;
  margin-bottom: 20px;
}
.top_pattarn li {
  width: 33.3%;
  flex: 0 0 33.3%;
  margin-bottom: 20px;
  padding: 0 5px;
}
.top_pattarn ul::after {
  content: "";
  display: block;
  width: 33.3%;
  height: 0;
}
.list_ttl {
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  color: #333;
}
.list_txt {
  display: block;
  font-size: 0.8rem;
}
@media(max-width: 767px) {
  .top_category li:nth-child(odd) {
    padding-right: 7px;
  }
  .top_category li:nth-child(even) {
    padding-left: 7px;
  }
}
@media(min-width: 768px) {
  main {
    display: flex;
    flex-direction: row-reverse;
  }
  .main {
    width: 770px;
    margin-left: 30px;
  }
  main {
    padding-top: 30px;
  }
  .top_category li {
    width: 25.0%;
    flex: 25.0%;
    padding: 0;
    margin-bottom: 45px;
  }
  .top_category li:not(:last-of-type) img {
    width: 95%;
  }
  .top_category li:last-of-type img {
    float: left;
  }
  .top_category li:last-of-type {
    margin-bottom: 20px;
  }
  .top_category li:last-of-type .list_ttl, .top_category li:last-of-type .list_txt {
    padding-left: 200px;
    text-align: left;
  }
  .top_category li .list_txt {
    padding: 0 10px;
  }
  .top_pattarn li {
    width: 18.0%;
    flex: 0 0 18.0%;
  }
}
/*
 	2.2 サイドバー
====================================*/
aside > div, aside > ul {
  margin-bottom: 30px;
}
.side_menu li {
  border: 1px solid #494949;
  background-image: url("https://img21.shop-pro.jp/PA01453/791/etc/icon_arrow_gray.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-color: #fff;
}
.side_menu li:not(:last-of-type) {
  margin-bottom: 5px;
}
.side_menu li a {
  display: block;
  text-decoration: none;
  color: #494949;
  padding: 8px;
}
.form-input {
  display: block;
  width: 100%;
  padding: 12px;
  color: #55595c;
  border: 1px solid #ccc;
  border-radius: .20rem;
  margin-top: 10px;
}
.btn-search {
  width: 100%;
  background-color: #7f7d7a;
  padding: 10px;
  margin-top: 10px;
  color: #fff;
  border: none;
}
@media(max-width: 767px) {
  .side_bnr {
    display: flex;
  }
  .side_bnr > li:nth-of-type(1) {
    padding-right: 10px;
  }
}
@media(min-width: 768px) {
  aside {
    width: 200px;
    margin-top: 10px;
  }
  aside > div {
    margin-bottom: 35px;
  }
  aside h2 {
    font-size: 1.12rem;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  aside h3 {
    margin-bottom: 10px;
  }
  aside h3:not(:first-of-type) {
    margin-top: 30px;
  }
  .side_cart-btn {
    background-image: url("https://img21.shop-pro.jp/PA01453/791/etc/icon_cart.png");
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-color: #c7953d;
    text-align: center;
    margin-bottom: 35px;
  }
  .side_cart-btn a {
    display: block;
    color: #fff;
    padding: 10px 0 10px 20px;
    width: 200px;
    text-decoration: none;
  }
  .side_product h3 {
    width: 200px;
    position: relative;
    padding: 10px 0;
    display: inline-block;
  }
  .side_product h3::before, .side_product h3::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 6px;
    box-sizing: border-box;
  }
  .side_product h3::before {
    top: 0;
    border-top: 2px solid #494949;
    border-bottom: 1px solid #494949;
  }
  .side_product h3::after {
    bottom: 0;
    border-top: 1px solid #494949;
    border-bottom: 2px solid #494949;
  }
  .side_product a {
    text-decoration: none;
    color: #494949;
  }
  .side_product a:hover {
    text-decoration: underline;
  }
  .side_menu_category li {
    border-bottom: 1px dotted #494949;
  }
  .side_menu_category li a {
    display: block;
    padding: 10px;
    background-image: url("https://img21.shop-pro.jp/PA01453/791/etc/icon_arrow_gray.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
  }
  .side_bnr > li:nth-of-type(1) {
    margin-bottom: 10px;
  }
  .side_menu_pattern li {
    position: relative;
    padding: 10px;
  }
  .side_menu_pattern li img {
    display: block;
    margin-right: 10px;
    position: absolute;
    top: 5px;
    left: 0;
  }
  .side_menu_pattern li span {
    padding-left: 40px;
  }
  .side_menu li {
    font-size: 0.9rem;
  }
}
/*====================================
 
	3. フッター
 
====================================*/
footer {
  background-color: #E8E8E8;
}
footer h2 {
  background: #DBDBDB;
  text-align: center;
  padding: 8px;
  margin: 35px 0 20px;
}
.footer_more {
  text-align: right;
  color: #c34723;
  display: block;
  margin-top: 10px;
}
.footer_bottom {
  margin-top: 35px;
  background-image: url("https://img21.shop-pro.jp/PA01453/791/etc/bg_footer.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  padding: 20px;
}
.footer_logo {
  display: block;
  text-align: right;
}
.footer_logo img {
  width: 120px;
}
.footer_copy {
  color: #ccc;
  font-size: 0.5rem;
  margin-bottom: 10px;
}
@media(max-width: 767px) {
  .col3 {
    padding-top: 5px;
  }
}
@media(min-width: 768px) {
  .col3 {
    padding: 30px 0;
    display: flex;
    font-size: 0.8rem;
  }
  .col3 > div:nth-last-of-type(2) {
    margin: 0 20px;
  }
  .footer_nav {
    display: flex;
    margin: 30px 0;
  }
  .footer_nav a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
  }
  .footer_nav a:hover {
    text-decoration: underline;
  }
  .footer_nav li:first-of-type a {
    padding-left: 0;
  }
  .footer_copy {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  .footer_logo img {
    width: 200px;
  }
}
/*====================================
 
	4. 商品一覧
 
====================================*/
.topicpath-nav {
  font-size: 0.8rem;
}

@media(max-width: 767px) {
  .topicpath-nav:first-of-type {
    padding-top: 15px;
  }
}
.txt_r {
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.product_list li {
  text-align: center;
  margin-bottom: 30px;
}
.product_list_name {
  display: block;
  padding: 10px 0;
}
.product_list_price {
  font-size: 0.8rem;
}
ul.inline > li, ol.inline > li {
  padding-left: 0;
}
.product_num {
  margin-top: 50px;
}
/*====================================
 
	5. フリーページ
 
====================================*/
.about_doguyasuji img {
    margin-top: 20px;
}
.about_pro ul {
    margin-top: 20px;
}
.about_pro li img {
    margin-bottom: 20px;
}
.qa-list dl {
    position: relative;
    margin: 30px 0 0;
    cursor: pointer;
    border: 1px solid #e5d0ae;
}
.qa-list dl:first-child {
  margin-top: 0;
}
.qa-list dl::after {
    position: absolute;
    top: 27px;
    right: 26px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.qa-list .open::after {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 20px 60px 20px 60px;
    font-weight: bold;
    background: #f9edda;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 20px;
    display: block;
    content: 'Q.';
    color: #c7953d;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    left: 20px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #bf4825;
}
.qa-list dl dd {
    position: relative;
    margin: 0;
    padding: 20px 20px 20px 60px;
    background-color: #fff;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width: 767px) {
 .qa-list dl {
    margin: 10px 0 0;
}
.qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}
.qa-list dl dt {
    padding: 16px 40px 16px 50px;
    font-size: 14px;
}
.qa-list dl dt::before {
    font-size: 14px;
    top: 20px;
    left: 20px;
}
.qa-list dl dd::before {
    font-size: 14px;
    left: 20px;
    margin-top: 5px;
}
.qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 50px;
    font-size: 14px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
}
#map {
	width: 100%;
	box-sizing: border-box;
	margin: 20px auto;
}
#map .inner {
	position: relative;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
}
#map .inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 960px) {
	#map .inner {
		padding-top: 75%;
	}
}
@media (max-width: 600px) {
	#map .inner {
		padding-top: 100%;
	}
}