/****
 共通パーツ
***/

:root {
  --mdb-red: #E4007F;
  --mdb-blue: #20AEE5;
  --mdb-orange: #F6AE6A;
  --mdb-green: #A7D398;
  --mdb-purple: #BA79B1;
  --mdb-pink: #F19EC2;
  --mdb-gray: #a3a3a3;
  --mdb-dark: #2e2e2e;
  --mdb-body-color: #231815;
  --mdb-red-orange: #ea5532;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
}


body#home {}

main {
  margin-top: 11rem;
}

@media screen and (max-width: 576px) {
  main {
    margin-top: 8rem;
  }
}

#home main {
  margin-top: 1rem;
}

#supermarket main {
  margin-top: 1rem;
}

.h1,
h1 {
  margin-bottom: 0;
}

.h2,
h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.h3,
h3 {
  font-weight: 600;
  display: flex;
  align-items: center;
  /* 垂直方向の中央揃え */
  margin-bottom: 0.5rem;
}


@media(min-width: 1200px) {

  .h2,
  h2 {
    font-size: 1.4rem;
  }
}

.h3,
h3 {
  font-weight: 600;
  font-size: 1.1rem;

}

@media (max-width: 767px) {

  h2 {
    display: block !important;
    /* h3自体を強制的にブロック要素に戻す */
  }

  h2 .button {
    display: block;
    margin-left: 0 !important;
    margin-top: 10px;
    /* 上に少し隙間をあける */
    width: fit-content;
  }

  h3 {
    display: block !important;
    /* h3自体を強制的にブロック要素に戻す */
  }

  h3 .button {
    display: block;
    margin-left: 0 !important;
    margin-top: 10px;
    /* 上に少し隙間をあける */
    width: fit-content;
  }
}

.h4,
h4 {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--mdb-blue);
}

.h5,
h5 {
  font-weight: 600;
  font-size: 1.0rem;
}

dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

dt {
  width: 15%;
  font-weight: 400;
  padding-left: 5px;

}

dd {
  width: 85%;
}


.custom-list {
  list-style-type: none;
  /* デフォルトのマーカーを削除 */
  padding-left: 0;
  /* 左側のパディングを削除 */
}

.custom-list li {
  margin-left: 1.5em;
  text-indent: -0.4em;
}

.article {
  margin-bottom: 3rem;
}


@media (min-width: 579px) {
  .sp {
    display: none;
  }
}


/****
 ボタン
***/

.button {
  border: none;
  font-size: 1.0rem;
  color: #fff;
  padding: 0.35rem 3.5rem;
  border-radius: 0.4rem;
  background-color: var(--mdb-blue);
  font-weight: 600;
}

.button:hover {
  color: #fff;
}

.button.blue {
  background-color: var(--mdb-blue);

}

.button.orange {
  background-color: var(--mdb-orange);
}

.button.green {
  background-color: var(--mdb-green);
}

.button.purple {
  background-color: var(--mdb-purple);
}

.button.pink {
  background-color: var(--mdb-pink);
}

.button.gray {
  background-color: var(--mdb-gray);
}

.button.dark {
  background-color: var(--mdb-dark);
}

.button-lg {
  border: none;
  font-size: 1.0rem;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  margin-left: 10px;
}



/****
 ナビゲーション
***/

/* Color of the links BEFORE scroll */
.navbar-scroll .nav-link,
.navbar-scroll .fa-bars,
.navbar-scroll .navar-brand {
  color: #4f4f4f;
}

.navbar-scroll .nav-link:hover {
  color: #1266f1;
}

/* Color of the links AFTER scroll */
.navbar-scrolled .nav-link,
.navbar-scrolled .fa-bars,
.navbar-scrolled .navar-brand {
  color: #4f4f4f;
}

/* Color of the navbar AFTER scroll */
.navbar-scroll,
.navbar-scrolled {
  background-color: #fff;
}

#supermarket .navbar-scroll,
#supermarket .navbar-scrolled {
  background-color: #ea5532;
}

/* An optional height of the navbar AFTER scroll */
.navbar.navbar-scroll.navbar-scrolled {
  padding-top: 5px;
  padding-bottom: 5px;
}

nav.navbar .logo {
  margin-bottom: 10px;
  height: 96px;
}

#supermarket nav.navbar .logo {
  height: 110px;
  margin-bottom: 0;
}


@media screen and (max-width: 1024px) {
  nav.navbar .logo {
    height: 60px;
  }


}


@media screen and (max-width: 768px) {
  nav.navbar .logo {
    height: 53px;
  }

  #supermarket nav.navbar .logo {
    height: 66px;
  }

}

nav ul li.nav-item {
  position: relative;
}

nav ul li.nav-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 23px;
  background: #231815;
  position: absolute;
  right: 0;
  top: 56%;
  transform: translateY(-5%);
}

#home nav ul li.nav-item:not(:last-child)::after {
  top: 66%;
}

#home nav ul li.nav-item:not(:last-child)::after {
  transform: translateY(-50%);
}


.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.0rem;
  padding-left: 1.0rem;
  padding-bottom: 1.0rem;
}

.navbar-expand-lg .navbar-nav .nav-link.shop {
  padding-bottom: 1.15rem;
}

.navbar .container {
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .navbar .container {
    align-items: center;
  }
}

.nav-link.active {
  margin-bottom: 3px;
}

nav ul li.nav-item {
  display: flex;
  align-items: flex-end;
}


/****
 スライダー
***/



/* Carousel styling */
#introCarousel,
#introCarousel .carousel-inner,
#introCarousel .carousel-item,
#introCarousel .carousel-item.active {
  height: 308px;
  margin-bottom: 60px;
}

#introCarousel .carousel-item:nth-child(1) {
  background-image: url('../img/slider01.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#introCarousel .carousel-item:nth-child(2) {
  background-image: url('../img/slider02.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#introCarousel .carousel-item:nth-child(3) {
  background-image: url('../img/slider03.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#introCarousel .carousel-item:nth-child(4) {
  background-image: url('../img/slider04.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #20aee5;
}


/* 太地スーパー用 */

#supermarket #introCarousel .carousel-item:nth-child(1) {
  background-image: url('../supermarket/img/super-slider01.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#supermarket #introCarousel .carousel-item:nth-child(2) {
  background-image: url('../supermarket/img/super-slider02.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#supermarket #introCarousel .carousel-item:nth-child(3) {
  background-image: url('../supermarket/img/super-slider03.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#supermarket #introCarousel .carousel-item:nth-child(4) {
  background-image: url('../supermarket/img/super-slider04.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}



/* Height for devices larger than 576px */
@media (min-width: 992px) {
  #introCarousel {
    margin-top: 124px;
  }

}

.multi-carousel .multi-carousel-inner .multi-carousel-item img {
  max-height: 100%;
}

.font-small {
  font-size: 1rem;
}


.carousel-indicators [data-mdb-target] {
  width: 8px;
  /* 幅を円の直径に合わせます */
  height: 8px;
  /* 高さを円の直径に合わせます */
  border-radius: 50%;
  /* これで円になります */
}


@media screen and (max-width: 767px) {

  #introCarousel {
    margin-top: 30px;
  }


  #introCarousel,
  #introCarousel .carousel-inner,
  #introCarousel .carousel-item,
  #introCarousel .carousel-item.active {
    height: 200px;
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .carousel-indicators {
    display: none;
  }

  #introCarousel .carousel-item:nth-child(1) {
    background-image: url('../img/slider01-sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  #introCarousel .carousel-item:nth-child(2) {
    background-image: url('../img/slider02-sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  #introCarousel .carousel-item:nth-child(3) {
    background-image: url('../img/slider03-sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  #introCarousel .carousel-item:nth-child(4) {
    background-image: url('../img/slider04-sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  /* 太地スーパー用 */

  #supermarket #introCarousel .carousel-item:nth-child(1) {
    background-image: url('../supermarket/img/super-slider01-sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  #supermarket #introCarousel .carousel-item:nth-child(2) {
    background-image: url('../supermarket/img/super-slider02-sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  #supermarket #introCarousel .carousel-item:nth-child(3) {
    background-image: url('../supermarket/img/super-slider03-sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }

  #supermarket #introCarousel .carousel-item:nth-child(4) {
    background-image: url('../supermarket/img/super-slider04-sp.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
  }




}



/****
 メイン
***/

.intro-txt {
  font-size: 1.1rem;
  line-height: 2.2rem;
  font-weight: 600;
  font-kerning: normal;
  margin: 0 20px;
}

@media (max-width: 767px) {
  .intro-txt {
    margin: 0 0 20px;
  }

  .intro-txt br {
    display: none;
  }
}

section {
  margin-bottom: 3rem;
}


section#intro{
  margin-bottom: 1rem;
}


p {
  /* font-size: 1.0rem; */
  line-height: 1.8rem;
}



.w-22 {
  width: 22% !important
}



.table {
  color: var(--mdb-body-color);
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 576px) {
  .table {
    width: 680px;

  }
}


.table-bordered {
  border-color: var(--mdb-body-color);
}

table .jp {
  display: block;
  margin-bottom: 0.1rem;
}

table .en {
  display: block;
  font-size: 0.8rem;
}

table .standard {
  background-color: #FDE9D4;
}

table .sup {
  background-color: #E7F3E3;
}

table .night {
  background-color: #E9D9EA;
}

table .fish {
  background-color: #FBE6EF;
}

table .memo {
  text-align: left;
  font-size: 0.85rem;
}

.att {
  color: var(--mdb-red);
  ;
}






@media screen and (max-width: 576px) {

  /*　スマホ対応　*/
  .w-10 {
    width: 24% !important;
  }

  .w-75 {
    width: 100% !important;
  }

  .w-50 {
    width: 100% !important;
  }

  .w-25 {
    width: 38% !important;
  }
}




/****
 フッター
***/

.page-top {
  /* buttonタグのリセットCSS */
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  background-color: transparent;

  position: fixed;
  z-index: 99999;
  bottom: 100px;
  right: 40px;
  padding: 6px 40px;
  width: 160px;
}

@media screen and (max-width: 576px) {
  .page-top {
    bottom: 20px;
    right: 10px;
    padding: 6px 10px;
    width: 60px;
  }


}


footer {
  border-top: solid 1px #c2c2c2;
  font-size: 1rem;
}


@media screen and (max-width: 576px) {

  footer p {
    font-size: 0.8rem;
  }

  footer .d-flex {
    display: block !important;
  }

  footer .d-flex div.me-3 {
    text-align: center;
  }


}

footer .copy {
  text-align: center;
  background-color: #ebebeb;
  padding: 10px;
  font-size: 0.7rem;
}