/* トップページの見出し行、英語+日本語 */
.c-heading__left {
  flex-wrap: wrap;
  width: 100%; 
}
@media screen and (min-width: 768px) {
  .c-heading__left {
    flex-wrap: wrap;
    width: 100%; 
  }
}
.c-heading-ttl, .c-heading-ttl-jp {
  width: 100%;
  text-align: center;  
}
/*@media screen and (min-width: 768px) {
  .c-heading-ttl, .c-heading-ttl-jp {
    width: auto;
    text-align: left;
  }
}*/
 .c-heading-ttl-jp {
   font-size: 12px;
   margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .c-heading-ttl-jp {
    font-size: 21px;
    margin-top: 9px;
    margin-bottom: 20px;
    /*margin-left: 1em;*/
  }
}

/* SP用ヘッダー直下 */
.p-subheader{
  margin: 0 16px;
}
@media screen and (min-width: 768px) {
  .p-subheader{
    display: none;
  }
}
.p-subheader h2 {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 10px 0;
}
#search-form-sp form {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.p-subheader-search__keyword {
  font-size: 16px;
  border: 1px solid #707070;
  border-radius: 18px;
  -webkit-appearance: none;
  padding: 4px 6px;
  height: 2em;
  width: calc(100% - 70px);
}
.p-subheader-search__button {
  font-size: 15px;
  color: #fff;
  background: var(--general-corp-color-green);
  border: none;
  padding: 0.3em 1em;
}

/* BEST SELLER */
.p-seller {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-seller {
    font-size: 15px;
  }
}
.p-seller h3 {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-seller h3 {
    font-size: 18px; 
  }
}
.p-seller img {
  border: 1px solid #999;
}

/* PRODUCT カテゴリーの並ぶ場所 */
.p-category .c-row {
  row-gap: 0;
}
@media screen and (min-width: 768px) {
  .p-category .c-row {
    row-gap: var(--general-column-gap-sp);
  }
}
.p-category img {
  border: 1px solid #999;
  width: 70px; 
}
@media screen and (min-width: 768px) {
  .p-category img {
    width: 80px; 
  }
}
.p-category .c-accordion-item a {
  padding: 0;
  margin: 1em;
}
@media screen and (min-width: 768px) {
  .p-category .c-accordion-item a {
    font-size: 18px;
  }
}
.p-category .c-accordion-item__ttl {
  justify-content: flex-start;
  align-items: center;
  column-gap: 1em;
}
.p-category .c-accordion-item__ttl:not(.u-not) {
  padding: 10px 30px 10px 10px;
}
@media screen and (min-width: 768px) {
  .p-category .c-accordion-item__ttl:not(.u-not) {
    padding: 20px 30px 20px 20px;
  }
}
.p-category .c-accordion-item__txt {
  padding: 0 1em 0.25em 82px;  
}
@media screen and (min-width: 768px) {
  .p-category .c-accordion-item__txt {
    padding: 0 1em 0.25em 94px;  
  }
}
.p-category .c-accordion-item__cate {
  display: inline;
  border-bottom: 1px solid #7c7c7c;
}
.p-category__text {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-category__text {
    font-size: 18px;
    border-bottom: 1px solid #999;
    line-height: 1.5;
  }
}
.p-category .l-header-nav__slist {
  display: none;
  border-top: 1px solid #ddd;
  padding: 0 1em;
}

/* TOPIC */
.p-topics {
  font-size: 12px; 
}
@media screen and (min-width: 768px) {
  .p-topics {
    font-size: 15px; 
  }
}
.p-topics h3 {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-topics h3 {
    font-size: 18px;
  }
}
.p-topics img {
  border: 1px solid #999;
}
.p-topics .c-here__link {
  margin: 0 auto;
  text-align: center;
  width: 15em;
}
.p-topics .c-here__link a {
  font-size: 16px;
  padding: 10px 0 11px;
}
@media screen and (min-width: 768px) {
  .p-topics .c-here__link a {
    font-size: 18px;
    padding: 10px 0 11px;
  }
}
.p-topics .c-here__arrow::before {
  top: calc(50% - 4px);
}
/* INFORMATION */
.p-info .c-row {
  align-items: center;
}
.p-info-box {
  border: 1px solid #999; 
}
.p-info-box a {
  position: relative;
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  /*justify-content: center;*/
  min-height: 134px;
  padding: 5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-info-box a {
    min-height: 150px;
    padding: 0 15px;
  }
}
.p-info-box a::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  transform: rotate(-45deg);
}
.p-info-box > a > img {
  width: 20%;
}
@media screen and (min-width: 768px) {
  .p-info-box > a > img {
    width: 24%;
  }
}
.p-info-box h3 {
  margin-right: 20%;
  text-align: center;
  width: 100%;
}
.p-info-box__main {
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-info-box__main {
    font-size: 24px;
  }
}
.p-info-box__sub {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-info-box__sub {
    font-size: 18px;
  }
}

/* INFORMATION 営業日表示している箱 */
.c-col-7 {
  font-size: 18px;
  width: calc(100% / 7);
}
@media screen and (min-width: 768px) {
  .c-col-7 {
    font-size: 20px;
  }
}
.c-col-7 img {
  margin-top: 5px;
}
.p-info-box-day {
  padding: 10px;
  min-height: 136px;
}
@media screen and (min-width: 768px) {
  .p-info-box-day {
    padding: 10px;
    min-height: 150px;
  }
}
.p-info-box-day .c-row {
  flex-wrap: nowrap;
  column-gap: 10px;
  row-gap: 0;
}
@media screen and (min-width: 768px) {
  .p-info-box-day .c-row {
    margin: 0 auto;
    width: 80%;
  }
}
.p-info-box-day .c-col-7{
  text-align: center;
}
.p-info-box-day__hour {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-info-box-day__hour {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.p-info-box-day__blue {
  color: #5886BF;
}
.p-info-box-day__red {
  color: #D81212;
}

/* NEWS */
.p-news-date {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .p-news-date {
    font-size: 14px; 
  }
}
.p-news-title {
  font-size: 14px; 
}
@media screen and (min-width: 768px) {
  .p-news-title {
    font-size: 14px; 
  }
}
.p-news .c-here__link a {
  border: none;
  margin-bottom: 0;
  padding: 17px 0 7px;
}
@media screen and (min-width: 768px) {
  .p-news .c-here__link a {
    border-bottom: 1px solid #999;
    margin-bottom: 10px;
    padding: 20px 20px 10px;
  }
}
.p-news .c-here__arrow::before {
  top: calc(50% + 1px);
}
.p-news .c-here__link a {
  border-top: none;
  border-right: none;
  border-left: none;
}
.p-news .c-here__link .p-news-date {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news .c-here__link .p-news-date {
    width: 11em;
  }
}
.p-news-next {
  text-align: right;
}
.p-news-next a {
  border-bottom: 1px solid #707070;
  padding-bottom: 2px;
}
/*
.c-accordion-item__ttl {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--general-text-color);
    cursor: pointer;
    font-weight: 500;
    line-height: 1;
}
*/

/* フッター直上 */
.l-bottom .c-row {
  column-gap: 14px;
  row-gap: 14px;
}
.l-bottom .c-here__link a {
  font-size: 17px;
  border: 1px solid #999;
  padding: 15px;
  text-align: center; 
}
@media screen and (min-width: 768px) {
  .l-bottom .c-here__link a {
    font-size: 17px;
    padding: 25px;
  }
}
.l-bottom-in {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--general-column-gap-sp);
  row-gap: var(--general-column-gap-sp);
}
@media screen and (min-width: 768px) {
  .l-bottom-in {
    column-gap: var(--general-column-gap-pc);
    row-gap: var(--general-column-gap-pc);
  }
}

.p-category .l-header-nav__list, .p-category .l-header-nav__list-contents {
  width: 100%; 
}

/* フェードアップ（PC時のみ）、共通CSSに置くと一部動作しない */
@media screen and (min-width: 768px) {
  .u-fade {
    opacity: 0;
    transition: all 2s;
  }
  .u-fade.is-scroll {
    opacity: 1;    
  }
  .u-fade-4item {
    opacity: 0;
    transform: translate(0, 40px);
    transition: all 2s ease;
  }
  .u-fade-4item:nth-of-type(4n+1) {
    transition: all 500ms;
  }
  .u-fade-4item:nth-of-type(4n+2) {
    transition: all 1000ms;
  }
  .u-fade-4item:nth-of-type(4n+3) {
    transition: all 1500ms;
  }
  .u-fade-4item:nth-of-type(4n+4) {
    transition: all 2000ms;
  }
  .u-fade-4item.is-scroll {
    opacity: 1;
    transform: translate(0, 0) !important;
  }
}

/* slickアニメーション用（PC時のみ） */
@media screen and (min-width: 768px) {
  #slider div img {
    margin: 0 auto;
    /*transform: scale(1.1);
    transition: 9s ease-out;*/
  }
  #slider div.is-animation img {
    /*transform: scale(1);*/
  }
  #slider2 div img {
    margin: 0 auto;
    /*transform: scale(1.1);
    transition: 9s ease-out;*/
  }
  /*#slider2 div.is-animation img {
    transform: scale(1);
  }*/
}
/* スライドショー */
#slider, #slider2 {
  background-color: #fff;
  margin: 0 auto 40px;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  #slider, #slider2 {
    margin: 0 auto 70px;
    max-width: 1920px;
  }
}
#slider.slick-initialized,
#slider2.slick-initialized {
  opacity: 1;
}
#slider .slick-slide,
#slider2 .slick-slide {
  position: relative;
  transition: opacity 2s ease 0s !important;
}
/*#slider .slick-slide > a,
#slider2 .slick-slide > a {
  pointer-events: none;
}*/
#slider .slick-slide a:hover,
#slider2 .slick-slide a:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  #slider .slick-slide img2
  #slider2 .slick-slide img {
    max-width: 100%;
    height: auto;
  }
}
/* スライドショーのドットのサイズ */
#slider .slick-dots,
#slider2 .slick-dots {
  position: static;
  margin-top: -25px;
}
@media screen and (min-width: 768px) {
  #slider .slick-dots,
  #slider2 .slick-dots {
    position: absolute;
    bottom: 10px;
    margin-top: 0;
  }
}
#slider .slick-dots li,
#slider2 .slick-dots li {
  margin: 0 2px;
}
#slider .slick-dots li button::before,
#slider2 .slick-dots li button::before {
  color: var(--mv-dot-button-color);
  content: "●";
  font-size: 20px;
  opacity: 1;
}
#slider .slick-dots li.slick-active button::before,
#slider2 .slick-dots li.slick-active button::before {
  color: var(--mv-dot-button-color-active);
  content: "●";
  font-size: 20px;
}

/* スライドショーのキャプション */
.p-mv-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--general-background-color-gray);
  margin-right: 20px;
  padding: 5px;
  width: 100%;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-mv-caption {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    background: transparent;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv-caption {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .slick-active .p-mv-caption {
    animation: fadeCaption 1.5s ease-in 0.5s normal both;
  }
  @keyframes fadeCaption {
    0% { opacity: 0; transform: translateY(-40%);}
    100% { opacity: 1; transform: translateY(-50%);}
  }
}
.p-mv-caption__ttl {
  color: var(--general-text-color);
  font-size: var(--mv-caption-font-size-sp);
  font-weight: var(--mv-caption-font-weight-sp);
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .p-mv-caption__ttl {
    color: var(--mv-caption-text-color);
    font-family: var(--mv-caption-font-family);
    font-size: var(--mv-caption-font-size-pc);
    font-weight: var(--mv-caption-font-weight-pc);
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.3));
    margin-right: 0;
  }
}
.p-mv-caption__link {
  display: inline-block;
  line-height: 1;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-mv-caption__link {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .slick-active .p-mv-caption__link {
    animation: fadeLink 0.3s ease-in 2s normal both;
  }
  @keyframes fadeLink {
    0% { opacity: 0; }
    100% { opacity: 1;}
  }
}
.p-mv-caption__link a {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  color: var(--general-text-color);
  font-size: 12px;
  padding: 8px 12px;
}
@media screen and (min-width: 768px) {
  .p-mv-caption__link a {
    background: var(--mv-button-background-color);
    color: var(--mv-button-text-color);
    font-size: 16px;
    padding: 8px 20px;
  }
}
.p-mv-caption__link a:hover {
  background: var(--mv-button-background-color-hover);
  color: var(--mv-button-text-color-hover);
}
