@charset "utf-8";
/*
theme Name: FunnyStyle
Author: Iida
Description: original theme
version： 2.0.0
*/
/*cssのリセット*/
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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
  text-align: justify;
  font-feature-settings: "palt";
  line-break: strict;
  line-height: 2;
  letter-spacing: 1px;
}
body {
  background: #fcfcfc;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
  text-align: center;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
}
body {
  font-family: 'TT Norms Pro', 'Oswald', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  margin: 0;
  padding: 0;
  color: #404040;
}
/*見出しのフォント*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-size: 1.3rem;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
/*コンテンツのサイズ指定*/
.header-inner,
.container,
.footer-inner {
  box-sizing: border-box;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  padding: 1.25rem;
}
.header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 1rem 3rem;
}
header {    
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    background: #e3f0e6;
    padding: 0;
}
.container {
  padding: 2rem 2rem;
  padding-top:  120px;
}
.container:after {
  display: block;
  clear: both;
  content: '';
}
.contents {
  /*float: left;*/
  width: 100%;
  margin-right: 5%;
  margin-bottom: 10rem;
}
.sidebar {
  display: none;
    /*float: right;
    max-width: 35%;
    width: 21rem;*/
}
/*---------------------------------------------------------
  ヘッダー
  ---------------------------------------------------------*/
.site-title a {
  text-decoration: none;
}
.site-title {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.site-title .img-dog {
    width: 6rem;
    line-height: 0;
    margin-right: 1.6rem;
}
.site-title .title-wrap {
    isplay: flex;
    flex-direction: column;
    align-items: flex-start;
}
.site-title .logo-img {
  width: 15rem;
  line-height: 0;
}
.site-title .subtitle {
  font-size: 0.75rem;
  font-weight: 300;
  margin-bottom: -0.5rem;
}

/*タイトルを画像にする場合*/
/*.site-title a {
  color: #404040;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  font-size: 0.5em!important; 
}*/
/*.site-title a img {
  display: inline-block;
  width: auto;
  height: 44px;
}*/
/*タイトルを文字列にする場合*/
/* .site-title a {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  color: #000;
} */

.navbutton {
  display: none;
}
.header-nav-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  margin-left: 230px;/*タイトル分の余白をあけておく*/
  transform: translateY(-50%);
}
.header-nav {
  font-size: 0;
}
.header-nav li {
  font-size: 1rem;
  display: inline-block;
  margin-right: 1rem;
}
.header-nav li a {
  font-weight: bold;
  display: block;
  text-decoration: none;
  color: #000;
}
.header-nav li a:hover {
  opacity: .6;
}

/*ハンバーガーメニュー*/
.menu-btn {
    /*position: fixed;*/
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
    margin-top: 1.1rem;
}
.menu-btn-parts .icon {
    margin-bottom: 1.1rem;
    padding-top: 0.3rem;
}
.menu-btn-parts .txt {
    font-size: 0.65rem;
    color: #707070;
}
.menu-btn-parts .txt .close {
  display: none;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 38px;
    border-radius: 3px;
    background-color: #707070;
    position: absolute;
}
.menu-btn span:before {
    bottom: 10px;
}
.menu-btn span:after {
    top: 10px;
}
.hamburger-menu .li-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 0 0.7rem 24rem;
}
.hamburger-menu .li-icon {
    width: 2rem;
    line-height: 0;
    margin-top: -0.1rem;
    margin-right: 0.7rem;
}
/*ハンバーガーメニュー　タップで「×」マーク*/
.hamburger-menu{
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
#menu-btn-check:checked ~ .menu-btn .menu {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn .close {
  display: block;
  padding-left: 0.3rem;
}
.menu-content {
    width: 100%;
    position: fixed;
    top: 90px;
    left: 100%;
    z-index: 80;
    background-color: #fff;
    opacity: 0.97;
    transition: all 1s;
    filter: drop-shadow(8px 8px 8px rgba(0,0,0,0.03));
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
.menu-content ul {
    padding: 0.5rem 0 2.5rem 0.7rem;
    margin-left: 0!important;
}
.menu-content ul li {
    border-bottom: solid 1px #d9d9d9;
    list-style: none;
    padding-left: 0.3rem;
    color: #2b2b2b;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    text-decoration: none;
    padding: 12px 15px 6px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2.5px #8a6c51;
    border-right: solid 2.5px #8a6c51;
    transform: rotate(45deg);
    position: absolute;
    right: 2rem;
    top: 1.9rem;
}
/*---------------------------------------------------------
フッター
---------------------------------------------------------*/
.footer-inner {
  color: #999999;
  font-size: 0.8rem!important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav-wrap {
  margin-bottom: -0.3rem;
}
.footer-nav li {
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-block;
    margin-right: 1rem;
}
.footer-nav li:nth-of-type(2n) {
    margin-right: 0;
}
.wrap--footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_site-info {
    display: flex;
    flex-direction: row;
    align-items: center;
}
/*---------------------------------------------------------
サイドバー
---------------------------------------------------------*/
.sidebar-wrapper {
  margin-bottom: 2rem;
}
.sidebar-title {
  font-size: 1.1rem;
  box-sizing: border-box;
  margin: 0 0 1.2rem;
  padding: .5rem;
  color: #000;
  border-bottom: 4px solid #03162f;
}
/*デフォルトウィジェット*/
.widget_recent_entries ul, .widget_meta ul, .widget_recent_comments ul, .widget_pages ul, .widget_meta ul, .widget_categories ul, .widget_archive ul, .widget_nav_menu ul, .calendar_wrap, .tagcloud {
  list-style: none;
}
.widget_recent_entries li, .widget_meta li, .widget_recent_comments li, .widget_pages li, .widget_meta li, .widget_archive li, .widget_nav_menu li {
  position: relative;
  margin-bottom: .5rem;
}
.widget_recent_entries a, .widget_meta a, .widget_recent_comments a, .widget_pages a, .widget_meta a, .widget_categories a, .widget_archive a, .widget_nav_menu a {
  text-decoration: none;
  color: #333;
}
.sidebar-wrapper a:hover {
  opacity: .6;
}
/*カテゴリウィジェット*/
.widget_categories li {
  display: block;
  margin-bottom: .5rem;
}
.widget_categories li a {
  font-size: .95rem;
  position: relative;
  display: block;
  padding: .9rem .6rem .9rem 2rem;
  color: #fff;
  background-color: #03162f;
}
.widget_categories li a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: .6rem;
  content: '\f02b';
  transform: translateY(-50%);
  color: #fff;
}
.widget_categories .children {
  margin-bottom: .5rem;
  padding: 0;
  padding-left: 1rem;
  background-color: #415671;
}
.widget_categories .children li {
  margin-bottom: 0;
}
.widget_categories .children li a {
  font-size: .9rem;
  background-color: transparent;
}
.widget_categories .children li a::before {
  position: absolute;
  top: 50%;
  left: .6rem;
  content: '∟';
  transform: translateY(-50%);
  color: #fff;
}
/*カテゴリウィジェットとアーカイブウィジェットのドロップダウン表示*/
.widget_categories .screen-reader-text {
  display: none;
}
.widget_archive .screen-reader-text {
  position: relative;
  display: block;
  height: 0;
  text-indent: -9999999px;
}
.widget_categories form {
  position: relative;
}
.widget_categories form::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  content: '▼';
  transform: translateY(-50%);
  pointer-events: none;
}
.widget_categories .postform, .widget_archive select {
  font-size: .95rem;
  width: 100%;
  padding: 4px 10px;
  cursor: pointer;
  border: 1px solid #e0e3ef;
  border-radius: 0;
  background-color: #f4f5f9;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.widget_archive label::after {
  position: absolute;
  top: .5rem;
  right: 1rem;
  content: '▼';
  text-indent: 0;
  pointer-events: none;
}
/*タグウィジェット*/
.tagcloud a {
  font-size: .9rem !important;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-bottom: .5rem;
  padding: .2rem .5rem;
  text-decoration: none;
  color: #03162f;
  border: 1px solid #000;
  background-color: #fff;
}
/*メニューウィジェット*/
.widget_nav_menu li a {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  padding-left: 1.3rem;
  color: #333;
}
.widget_nav_menu li a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0;
  content: '\f105';
  transform: translateY(-50%);
  color: #03162f;
}
/*最近の投稿*/
.widget_recent_entries li {
  padding-bottom: .5rem;
  border-bottom: 1px solid #ddd;
}
.widget_recent_entries li a:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  font-weight: 900;
  position: absolute;
  left: 5px;
  content: '\f303';
  color: #000;
}
.widget_recent_entries li a {
  display: block;
  margin-bottom: .3rem;
  padding-left: 1.6rem;
}
.widget_recent_entries .post-date {
  font-size: .8rem;
  display: block;
}
/*商品リスト*/
.sidebar-inner .index002 {
    font-size: 1.1rem;
    line-height: 2.3rem;
    text-indent: 0.4rem;
    color: #808080;
}
.sidebar-inner .column-list .index002 {
    margin-bottom: 1.5rem;
}
.sidebar-inner .column-list li,
body.category-column .column-list li {
  list-style: none;
  margin-bottom: 1.5rem;
}
body.category-column .column-list li {
  margin-bottom: 3rem;
}
.column-list .title {
    font-size: 0.85rem;
    line-height: 1.2rem;
    padding-left: 0.3rem;
    color: #808080;
}
.sidebar-inner .column-list .title {
  font-size: 0.8rem!important;
}

.sidebar-inner .column-list .img {
  line-height: 0;
  margin-bottom: 0.3rem;
}
body.category-column .column-list .img {
  line-height: 0;
  margin-bottom: 0.5rem;
}
.food-introduction .ranking-img {
  width: 4rem;
  line-height: 0;
}
.food-introduction .index002 {
  margin-bottom: 1rem;
}
.food-introduction .prd-img {
  width: 8rem;
  min-width: 8rem;
  line-height: 0;
  margin-right: 1.5rem;
}
.sidebar-inner .food-introduction,
.sidebar-inner .column-list {
  padding: 0.3rem;
}
.food-introduction ul {
  padding-left: 0!important;
}
.food-introduction li {
  list-style: none;
}
.food-introduction a {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 100%;
  text-decoration: none;
  color: #404040;
  border-bottom: solid 1px #e5e5e5;
  padding: 1rem 0;
}
.food-introduction p {
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.food-introduction--price {
    font-size: 0.95rem;
    line-height: 1.3rem;
    text-align: left;
}
.food-introduction--price .price-index {
    font-size: 0.75rem;    
    line-height: 0.8rem;
    margin-bottom: 0.1rem;
    color: #a6a6a6;
}
.food-introduction--price .price {
    text-align: left;
    line-height: 1.2rem;
    margin-bottom: -0.3rem;
}

/*---------------------------------------------------------
記事一覧
---------------------------------------------------------*/
.archive-top h1 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.archive-top p {
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.article-list {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #ddd;
}
.article-list:hover {
  background-color: #eee;
}
.article-list a {
  display: block;
  text-decoration: none;
  color: #333;
}
.article-list a:after {
  display: block;
  clear: both;
  content: '';
}
.article-list .img-wrap {
  position: relative;
  float: left;
  line-height: 1;
}
.article-list .img-wrap img {
  width: 240px;
  height: 160px;
  object-fit: cover;
}
.article-list .img-wrap .cat-data {
  font-size: .75rem;
  position: absolute;
  top: 0;
  right: 0;
  padding: .3rem .5rem;
  color: #fff;
  background-color: #03162f;
}
.article-list .text {
  margin-left: 260px;
}
.article-list .text h2 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.article-list .text .article-date,
.article-list .text .article-author {
  font-size: .75rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: .5rem;
  color: #888;
}
.article-list .text .article-date {
  margin-right: .5rem;
}
.article-list .text .article-author i {
  margin-right: .3rem;
}
.article-list .text p {
  font-size: .8125rem;
  line-height: 1.7;
}
/*ページネーション*/
.pagination {
  margin: 2rem 0;
  text-align: center;
}
.pagination ul {
  font-size: 0;
  text-align: center;
}
.pagination ul li {
  font-size: 1rem;
  display: inline-block;
  margin-right: .5rem;
}
.pagination ul li:last-child {
  border: 0;
  margin-right: 0;
}
.pagination ul li a,
.pagination .current {
  display: block;
  padding: .5rem .8rem;
  border: 1px solid #ccc;
}
.pagination ul li .prev, .pagination ul li .next {
  border: 0;
  padding: 0.5rem 0.3rem;
}
.pagination ul li a {
  text-decoration: none;
  color: #333;
}
.pagination ul li a:hover {
  opacity: .6;
}
.pagination .current {
  color: #fff;
  background-color: #84a9a6;
}
/*検索エンジン*/
.search-engine {
  background-color: #f7f6f5;
  padding: 1.5rem 1.8rem 3rem;
  margin-bottom: 3rem;
}
#feas_0_0, #feas_0_1 {
  width: 100%;
  height: 1.7rem;
  color: #808080;
  margin-bottom: 1rem;
  border-color: #bfbfbf;
  font-size: .9rem;
  letter-spacing: 0.1rem;
  text-indent: 0.3rem;
}
.feas_clevel_01{
  width: 100%;
  display: inline-block;
  font-size: 0.9rem;
}
.feas_clevel_01:nth-of-type(5) {
  width: 100%;
}
.select-title {
  color: #808080;
}
.feas-submit-button {
  width: 100%;
  color: #404040;
  background-color: #f5faf7;
  border-color: #bfbfbf;
  border-style: solid;
  height: 2rem;
  font-size: 1rem;
  margin-top: 1rem;
}

/*---------------------------------------------------------
投稿・固定ページ
---------------------------------------------------------*/
/*共通*/
.article-content {
  margin-bottom: 4rem;
}
.article-content p {
  font-size: 1rem;
  line-height: 2.0;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}
.article-content th,
.article-content td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.article-content ul {
  list-style: disc;
}

/*調整用*/
.adj_margin-bottom001 {
  margin-bottom: 1rem!important;
}
.adj_margin-bottom001_5 {
  margin-bottom: 1.5rem!important;
}
.adj_margin-bottom003 {
  margin-bottom: 3rem!important;
}
.adj_margin-bottom005 {
  margin-bottom: 5rem!important;
}
.adj_margin-bottom007 {
  margin-bottom: 7rem!important;
}
.adj_margin-bottom010 {
  margin-bottom: 10rem!important;
}
.adj_line-heighr000 {
  line-height: 0;
}

/*見出しデザイン*/
.index001 {
  font-size: 1.1rem;
  line-height: 1.2rem;
  text-align: left;
  border-left: solid 7px #e3f0e6;
  background: transparent;
  padding: 0 0.6rem;
}
body.category-column .index001 {
  margin-bottom: 1.5rem;
}
.index002 {
  line-height: 2.7rem;
  border-bottom: 1.8px dashed #e5e5e5;    
  margin: 0 -0.5rem;
  margin-bottom: 1.7rem;
}
.col_fv .index002 span {
  line-height: 2.4rem!important;
  letter-spacing: 1.5px!important;
  padding-bottom: 0.1rem;
  border-bottom: 1.8px dashed #e5e5e5;  
}
.col_fv .index002 {
  font-size: 1.7rem;
  line-height: 2.9rem!important;
  margin: 0;
  border-bottom: none;    
} 
.index003 {
    margin-bottom: 1.5rem;
}
.home .index003 {
  font-size: 1.25rem;
}
.index003 span {
    background-image: repeating-linear-gradient(-45deg, #dec4a1 0, #dec4a1 2px, transparent 2px, transparent 4px );
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 0.3rem;
    padding-bottom: 0.5rem;
}
.index003--2 {
    background-image: repeating-linear-gradient(-45deg, #dec4a1 0, #dec4a1 2px, transparent 2px, transparent 4px );
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 0.3rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
.index004 {
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
    letter-spacing: 1.5px;
    padding: 0.6rem;
    padding-left: 1rem;
    background: #faf4f2;
    border-left: solid 4px #eaaaae;
    line-height: 1.8rem;
}
.shadow001 {
    filter: drop-shadow(0 0.3rem 0.3rem rgba(0,0,0,0.1));
}
.img-position001 {
    margin: 0 auto;
    margin-bottom: 2rem;
}
.sp-only {
  display: none!important;
}
.pc-only {
  display: block!important;
}
.article-title {
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
}
.ranking-foodname--wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.ranking-icon {
    width: 3.5rem;
    line-height: 0;
    margin-right: 0.5rem;
}
.food-tiele {
    padding-bottom: 0.5rem;
}
article.rate-01_s .food-tiele {
    padding-bottom: 0;
}
article.category-sub-prd .food-tiele {
    padding-left: 0.4rem;
}
.foodname {
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 500;
}
article.rate-01_s .foodname {
    font-size: 1.8rem;
    line-height: 1.5rem;
    letter-spacing: 3px;
}
.foodname_sub {
  font-size: 1rem;
}
.shop{
  color: #a6a6a6;
  font-size: 0.7rem;
}
.rate-icon {
    line-height: 0;
    width: 4rem;
    padding-bottom: 0.3rem;
}

/*評価表*/
.table_prd-rate {
  margin-bottom: 2.5rem;
}
.annotation {
  font-size: 0.65rem;
  color: #a6a6a6;
}
.table_prd-rate table {
    table-layout: fixed;
    width: 100%;
}
.table_prd-rate th {
    background-color: #e3f0e6;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.2rem!important;
    padding: 0.8rem 0.1rem;
}
.table_prd-rate td {
    padding: 0.9rem 1.5rem;
    line-height: 0;
}

/*詳細情報表*/
.table_prd-info--wrap .ranking-foodname--wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 1.2rem;
    margin-bottom: 0.7rem;
}
article.category-sub-prd .table_prd-info--title .food-tiele {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}
.table_prd-info--wrap .prd-img {
    width: 8.5rem;
    min-width: 8.5rem;
    line-height: 0;
    padding-right: 0.5rem;
    padding-bottom: 0.7rem;
}
.table_prd-info--title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    padding: 0 2rem;
}
.table_prd-info--title .foodname {
  font-size: 1.5rem;
  line-height: 1.8rem;
}
.table_prd-info--title .shop {
  font-size: 0.65rem;
  line-height: 1.5rem;
}
.table_prd-info {
    position: relative;
    border: solid 4px #f7f7f7;
    margin-bottom: 2rem;
    padding: 1.2rem 3rem;
    padding-top: 9rem;
    margin-top: -10rem;
    z-index: -1;
}
.table_prd-info table {
  width: 100%;
  margin-bottom: 0.5rem;  
}
.table_prd-info th,
.table_prd-info td {
  border-right: 0px none!important;
  border-left: 0px none!important;
  border-top: 0px none!important;
  text-align: left!important;
  font-size: 0.8rem;    
  line-height: 1.1rem;
  letter-spacing: 0;
  padding: 0.7rem 0;
}
.table_prd-info th {
  padding-right: 1rem!important;
  white-space: nowrap;
}

/*おすすめポイント*/
.title_point {
    font-size: 1.1rem;
    font-weight: 600;
    color: #967863;
    text-align: center;
    margin-bottom: 1.7rem;
}
.title_point span {
    padding-bottom: 0.2rem;
    border-bottom: 2px solid;
}
.col_point {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: solid 4px #f7f7f7;
    padding: 4%;
    padding-top: 6%;
    margin-bottom: 3rem;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px));
    background-size: 14px 14px;
    background-repeat: repeat;
    background-position: center center;
}
.col_point li {
    position: relative;
    font-size: 0.95rem;
    list-style: none;
    margin-bottom: 0.4rem;
}
.col_point li::after {
    content: '';
    display: block;
    position: absolute;
    top: 0.5em;
    left: -1.5em;
    width: 10px;
    height: 5px;
    border-left: 3px solid #967863;
    border-bottom: 3px solid #967863;
    transform: rotate(-45deg);
}
.col_point ul {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}
.txt--wrap {
  margin-bottom: 4.5rem;
}
/*ふきだし*/
.balloon5 {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    margin-bottom: 3.5rem;
}
.chatting {
  width: 80%;
  padding-left: 1rem;
}
.faceicon {
  width: 13%;
  margin-left: 1.5rem;
  padding-right: 1rem;
}
.says {
  position: relative;
  font-size: 0.85rem;
  display: inline-block;
  background: #f5f2f0;
  border-radius: 12px;
  padding: 1rem;
  width: -webkit-fill-available;
}
.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  right: -24px;
  border: 12px solid transparent;
  border-left: 12px solid #f5f2f0;
}
.says p {
  margin: 0;
  padding: 0;
  font-size: 95%;
}

/*公式遷移ボタン*/
.btn-text {
  text-align: center;
  color: #f6828a;
  font-size: 0.9rem;
}
.btn_official,
.btn_ranking {
  margin-bottom: 5rem;
}
.shiny-btn9,
.btn9{
  display: block;
  position: relative;
  width: 98%; /*ボタンの幅*/
  padding: 0.5rem 0;
  margin: 0 auto;
  background-color: #84a9a6; /*ボタンの色*/
  box-shadow: 0 3px 0 0 rgba(91, 116, 114, 1); /*影の色(rgbaの値を変更)*/
  border-radius: 35px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  transition: 0.2s;
}
.btn_prdpage .btn9 {
  background-color: #999999;
  box-shadow: 0 3px 0 0 rgba(102, 102, 102, 1); 
  
}
.shiny-btn9::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn9 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn9 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.video-grebo {
  text-align: center;
  margin-bottom: 1rem;
}
.col_fv .fv-title {
    margin-bottom: 0.5rem;
}
.col_fv .fv-title .sub-title {
    font-size: 1.05rem;
    line-height: 1.8rem;
    color: #e78b8b;
}
.col_fv .fv-title .fv-img {
  margin: 0 -0.5rem;
  margin-bottom: 1.5rem;
}

/*もくじ*/
.col_contents {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px));
  background-size: 14px 14px;
  background-repeat: repeat;
  background-position: center center;
  font-size: 0.85rem;
  color: #9f8a7c;
  white-space: nowrap;
  padding: 4%;
  border: solid 4px #f7f7f7;
  margin-bottom: 5rem;
  padding-bottom: 6%;
}
.contents-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #737373;
}
.contents-ol {
  position: relative;
  padding-left: 1.5rem;
}
.contents-ol li a {
  border-bottom: dashed 1px #9f8a7c;
}
.contents-ol li::marker {
  color: #737373;
}
.contents-ol .prd-ol,
.contents-ol .column-ul {
    list-style: none;
    counter-reset: li;
    text-indent: 5rem;
}
.contents-ol .column-ul {
    text-indent: 1rem;
}
.contents-ol .prd-ol li::before {
    position: absolute;
    display: block;
    content: "・第" counter(li) "位";
    counter-increment: li;
    left: -2.5rem;
}
.column-ul li::before {
    content: "・";
    color: #737373;
}
.column-ul--li004::before {
    display: none;
}
.column-ul--li004 {
  text-indent: 2rem;
}
.column-ul--li004 span {
    color: #737373;
}

/*プロフィールデザイン*/
.col_prf {
    position: relative;
    border-top: solid 1px #967863;
    background: #fcf7f7;
    padding: 2rem;
    padding-top: 3rem;
    margin-bottom: 6rem;
}
.col_prf .prf-title {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 1rem;
    padding: 0.2rem 0.5rem;
    background: #967863;
    color: #ffffff;
    font-size: 0.8rem!important;
    border-bottom-left-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}
.col_prf--wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
}
.col_prf--top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.2rem;
    padding-left: 0;
}
.col_prf--top .prf-img {
    width: 5rem;
    margin-right: 2rem;
}
.col_prf--top .prf-img img {
  line-height: 0;
}
.col_prf--top .prf-name {
  padding-bottom: 0.5rem;
}
.col_prf--top .name {
    color: #967863;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.col_prf--top .subprf {
    font-size: 0.7rem;
    color: #999999;
}
.col_prf--under .index {
    color: #e78b8b;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}
.col_prf--under .txt {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #737373;
  letter-spacing: 1px;
}

/*ランキング表*/
.col_ranking {
    background: #f7f6f5;
    margin-bottom: 4rem;
    padding: 1.5rem 1.5rem;
    padding-bottom: 4rem;
}
.ranking-title,
.point-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}
.ranking-subtitle,
.point-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
}
.table_ranking .annotation {
  text-align: center;
  line-height: 0.7rem;
}
.table_ranking .foodname_sub {
    font-size: 0.65rem;
    line-height: 0.8rem;
    text-align: center;
}
.table_ranking {
  table-layout: fixed;
  width: 100%;
  background: #fff;
  font-size: 0.8rem;
}
.table_ranking .tr001 {
    border-top: solid 1px #ddd;
}
.table_ranking .tr011 {
    border-bottom: solid 1px #ddd;
}
.table_ranking th,
.table_ranking td {
    border-right: solid 1px #ddd;
    border-left: solid 1px #ddd;
    text-align: center;
    vertical-align: middle;
    line-height: 1.1rem;
}
.table_ranking th {
  width: 20%;
  padding: 0 0.5rem;
  font-weight: 300;
}
.table_ranking td {
  padding: 0.6rem 1rem;
  line-height: 0.9rem;
}
.table_ranking .tr001 td,
.table_ranking .tr002 td,
.table_ranking .tr003 td {
  padding-bottom: 0.4rem!important;
}
.table_ranking .tr001 td,
.table_ranking .tr002 td {
  padding: 0 0.4rem;
}
.table_ranking .tr003 td {
  padding: 0 0.1rem;
}
.table_ranking .tr004,
.table_ranking .tr006,
.table_ranking .tr008,
.table_ranking .tr010 {
  background-color: #f5faf7;
}
.table_ranking .tr001--td-img {
    width: 2.5rem;
    margin: 0 auto;
    vertical-align: bottom;
}
.table_ranking #tr001--td_glebo .tr001--td-img {
    width: 3.3rem;
}
.table_ranking .tr001 td,
.table_ranking .tr002 td {
  vertical-align: bottom!important;
}
.table_ranking .tr004 td {
    font-size: 3rem;
    font-weight: 500;
    color: #ee6777;
    line-height: 3rem;
}
.table_ranking .tr011 td {
  padding: 0.5rem 0.1rem;
  padding-bottom: 0.8rem;
}
.table_ranking .btn_official {
  margin-bottom: 0;
}
.table_ranking .shiny-btn9,
.table_ranking .btn9 {
  width: -webkit-fill-available;
  font-size: 0.7rem;
  line-height: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.2rem;
}
.table_ranking .shiny-btn9 {
    background-color: #e88893;
    box-shadow: 0 3px 0 0 rgb(178 76 88);
}
.yoko_scroll {
  overflow: auto;
  -webkit-overflow-scrolling: touch; /*惰性を与えてスムーズなスクロールにしますよ*/
}
.yoko_scroll::-webkit-scrollbar {
  height: 5px; /*スクロールバーを出しますよ*/
}
.yoko_scroll::-webkit-scrollbar-track {
  background: #F1F1F1; /*スクロールバーの背景の色*/
}
.yoko_scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC; /*スクロールバーの色を変えるなら*/
}
/* スクロールヒント */
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
    opacity: .7;
}
.scroll-hint-text {
    text-align: center;
}
.scroll-hint-icon {
    height: 87px!important;
}
/*フード選びのポイント*/
.select-point--wrap {
  margin-bottom: 6rem;
}
.col_select-point .select-point--wrap .title {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.col_select-point .select-point--wrap .title-img {
    width: 4rem;
    line-height: 0;
    margin-right: 1rem;
    padding-left: 0.2rem;
    padding-bottom: 0.5rem;
}
.col_select-point .select-point--wrap .title-txt {
    font-size: 1.3rem;
    line-height: 1.8rem;
    font-weight: 500;
    white-space: nowrap;
}
.col_select-point .select-point--wrap .main-img {
  margin-bottom: 2rem;
}
.col_select-point .select-point--wrap .txt {
  margin-bottom: 3rem;
}
.dangerous-dogfood {
    position: relative;
    background: #f2f2f2;
    margin: 0 -0.5rem;
    margin-bottom: 6rem;
    padding: 2.5rem 1.5rem;
    padding-bottom: 2rem;
}
.dangerous-dogfood .main-img {
    margin-bottom: 1.5rem;
}
.dangerous-material {
    display: flex;
    flex-direction: column;
    align-items: center;
}  
.dangerous-material .li-title {
    width: 100%;
    letter-spacing: 1.5px;
    text-align: center;
    color: #fff;
    background-color: #c08086;
    padding: 0.2rem 0;
}

.dangerous-material .list {
    width: 100%;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px));
    background-size: 14px 14px;
    background-repeat: repeat;
    background-position: center center;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dangerous-material .list ul {
    padding: 2rem 2.5rem;
    padding-bottom: 5rem;
}
.dangerous-material .list li {
  line-height: 1.2rem;
  margin-bottom: 0.7rem;
}
.dangerous-material .illust {
    width: 90%;    
    margin-top: -4rem;
}
/*おさらい*/
.col_summary {
    position: relative;
}
.col_summary .headline {
    position: absolute;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    background-color: #967863;
    border-radius: 0;
    padding: 0.1rem 0.7rem;
    padding-left: 2.1rem;
    left: 0;
    top: 0;
}  
.col_summary .headline span {
  position: relative;
}
.col_summary .headline span::before {
    position: absolute;
    content: '';
    display: block;
    top: 0.15rem;
    left: -1.2rem;
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.col_summary .summary--wrap {
    background-color: #fff;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px));
    background-size: 20px 20px;
    background-repeat: repeat;
    background-position: center center;
    border: 1px solid #967863;
    border-radius: 0;
    padding: 1.5rem 0.5rem;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.col_summary .list-title{
    color: #967863;
    margin-bottom: 0.7rem;
}  
.col_summary .summary-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.col_summary .summary-list li {
    color: #967863;
    line-height: 2.2rem;
}  
.col_summary .summary-list span {
    color: #404040;
    border-bottom: dashed 1px #e5e5e5;
    padding-bottom: 0.2rem;
}
.col_summary .comment {
    color: #c08086;
    line-height: 1.3rem;
    text-align: center;
}

/*コラムページ*/
article.category-column {
    padding-top: 1rem;
}
/*コラムページ（合成添加物）*/
.list_synthetic-additives {
    width: 93%;
    margin: 0 auto;
    background: #fff;
    border: solid 3px #c37777;
    margin-bottom: 5rem;
}
.list_synthetic-additives .sa-index {
    padding: 0.3rem 1rem 0.7rem;
    background: #c37777;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.list_synthetic-additives .sa-title--wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
}
.list_synthetic-additives .sa-title--wrap .sa-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.list_synthetic-additives .sa-title--wrap .img_sa-title {    
    width: 3rem;
    line-height: 0;
    margin-right: 1rem;
    padding-top: 0.4rem;
}
.list_synthetic-additives .sa-title--wrap .sub-title {
    font-size: 0.9rem;
    letter-spacing: 1.8px;
}
.list_synthetic-additives .sa-title--wrap .main-title {
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.list_synthetic-additives .additive-and-effect {
    padding: 1.2rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.list_synthetic-additives .additive-and-effect ul {
    font-size: 0.95rem;
    padding-left: 0.5rem;
    list-style: none;
}
.list_synthetic-additives .effect-ul {
  margin-bottom: 0.5rem;
}
.list_synthetic-additives .effect-li {
  font-weight: 700;
  color: #ba6060;
}
.additive-and-effect .additive-ul li {
  line-height: 1.5rem;
}
.additive-and-effect .additive-ul li::before {
  content:"・";
  margin-right: 0.3rem;
}

/*---------------------------------------------------------
検索結果ページ
---------------------------------------------------------*/
.dogfoodlist--wrap article {
    border-bottom: solid #e5e5e5;
    margin-bottom: 7rem;
    padding-bottom: 1.5rem;
}

.title-sort {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.feas_sort_menu {
  color: #806d54;
}
.sort-index {
    font-size: 0.9rem;
    background: #f7ede1;
    border-radius: 25rem;
    padding: 0.05rem 0.6rem;
    margin-right: 0.4rem;
}
/*---------------------------------------------------------
固定ページ（プライバシーポリシー/サイト情報）
---------------------------------------------------------*/
article.page .index001 {
  margin-bottom: 0.5rem;
}
article.post-283 .index001 {
  margin-bottom: 1rem;
}
article.page .index003--2 {
  margin-bottom: 2rem;
  padding-bottom: 0;
}
article.page .contents {
  padding-top: 1rem;
}
article.post-3 ul {
  line-height: 1.5rem;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}
article.post-3 li {
  line-height: 1.5rem;
  margin-bottom: 0.6rem;
}

@media(max-width: 800px) {
  .header-inner {
    padding: 1rem 1.5rem;
  }
  .contents, 
  .sidebar {
    float: none;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .col_fv .fv-img,
  .col_ranking {
    margin: 0 -2rem;
  }
  .hamburger-menu .li-wrap {
    padding: 0;
  }
  .menu-content ul li a::before {
    right: 1rem;
    top: 1.4rem;
  }
}

@media(max-width: 600px) {
  html {
    font-size: 15px;
  }  
  .header-inner {
    height: 75px;
    padding: 0.5rem 1rem;
  }
  .container {
    padding: 0.8rem 1.5rem;
    padding-top: 90px;
  }

  /*---------------------------------------------------------
  ヘッダー
  ---------------------------------------------------------*/
  .navbutton {
    right: .8rem;
  }
  .header-nav-wrap {
    top: 62px;
  }
  .header-nav li a {
    padding: .8rem;
  }
  .header-nav li a:after {
    right: .8rem;
  }
  .site-title .img-dog {
    width: 5rem;
    margin-right: 1rem;
  }
  .site-title .logo-img {
    width: 12rem;
  }
  .site-title .subtitle {
    font-size: 0.65rem;
  }
  .site-title-wrap--left img {
    max-width: 75%;
  }
  .menu-content {
    top: 75px;
  }

  /*---------------------------------------------------------
  記事一覧
  ---------------------------------------------------------*/
  .archive-top h1 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .archive-top p {
    font-size: .8125rem;
    margin-bottom: 1rem;
  }
  .article-list {
    padding: .5rem;
  }
  .article-list .img-wrap img {
    width: 132px;
    height: 88px;
  }
  .article-list .img-wrap .cat-data {
    font-size: .6rem;
  }
  .article-list .text {
    margin-left: 140px;
    padding: 0;
  }
  .article-list .text h2 {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .article-list .text p {
    display: none;
  }
  .article-list .text .article-date, .article-list .text .article-author {
    font-size: .625rem;
    margin-bottom: 0;
  }
  .article-list .text .article-date {
    margin-right: .2rem;
  }
  /*---------------------------------------------------------
  投稿・固定ページ
  ---------------------------------------------------------*/
  .sp-only {
    display: block!important;
  }
  .pc-only {
    display: none!important;
  }
  .index002 {
  margin-bottom: 0.7rem;
  }
  .col_fv .fv-img,
  .col_ranking {
    margin: 0 -1.5rem;
  }
  .col_fv .index002 {
  font-size: 1.35rem;
  line-height: 2.4rem!important;
  } 
  .col_fv .fv-title {
      margin: 0 -0.3rem;
      margin-bottom: 0.5rem;
  }
  .col_fv .fv-title .sub-title {
      font-size: 0.95rem;
      line-height: 1.5rem;
  }
  .col_point li {
    font-size: 0.85rem;
    letter-spacing: 0;
  }
  .title_point {
      font-size: inherit;
      margin-bottom: 1rem;
  }
  .table_prd-rate {
    margin-bottom: 1.5rem;
  }
  .table_prd-rate td {
    padding: 0.7rem;
  }
  .table_prd-rate th {
    font-size: 0.6rem;
    line-height: 0.8rem!important;
    padding: 0.3rem 0.1rem;
    letter-spacing: 0;
  }
  .faceicon {
    width: 20%;
  }
  .chatting {
  padding-left: 0;
  }
  .faceicon {
    padding-right: 0;
  }
  .txt--wrap {
    margin-bottom: 2.5rem;
  }
  .table_prd-info {
    padding: 1.2rem;
    padding-top: 9.5rem;
  }
  .table_prd-info--title {
      padding: 0;
  }
  .col_prf {
    padding: 2rem 1.2rem;
    padding-top: 3rem;
    margin-bottom: 6rem;
  }
  .col_prf--under .index {
      font-size: 0.9rem;
      letter-spacing: 0;
  }
  .col_prf--wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 0;
      padding-left: 0;
  }
  .col_prf--top .prf-img {
      margin-right: 1rem;
  }
  .ranking-subtitle,
  .point-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
  .table_ranking {
    width: 135%;
  }
}