@charset "UTF-8";

html {
  font-size: 100%;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

/* スマホのみ改行 */

.sp-br {
  display: none;
}

@media screen and (max-width: 638px) {
  .sp-br {
    display: inline;
  }
}

/* 画面の最大幅 共通で使用 */

.wrapper {
  max-width: 960px;
  margin: 20px auto 130px auto;
  font-size: 0.9rem;
  padding: 0 4%;
}

/* h1タグ用 */

.site-title {
  line-height: 1px;
}

.site-title a {
  display: block;
}

/* h2タグ用 */

.sec-title {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 5px;
  color: #0179b5;
  font-family: "Alice", serif;
  font-weight: normal;
}

h2.sec-title:before {
  content: "";
  display: inline-block;
  width: 130px;
  height: 30px;
  background: url(../img/ttl_s_l.png) no-repeat;
  background-size: contain;
  margin-right: 8px;
}

h2.sec-title:after {
  content: "";
  display: inline-block;
  width: 130px;
  height: 30px;
  background: url(../img/ttl_s_r.png) no-repeat;
  background-size: contain;
  margin-left: 8px;
}

.title-jp {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 65px;
  color: #0179b5;
  font-family: "Sawarabi Mincho";
  font-weight: normal;
}

.title-jp-s {
  font-size: 2em;
  color: #0179b5;
  font-family: "Sawarabi Mincho";
  font-weight: normal;
}

.category-title {
  font-size: 5rem;
  margin-bottom: 5px;
  font-family: "Alice", serif;
  font-weight: normal;
  line-height: 1;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.category-subtitle {
  font-size: 2em;
  font-family: "Sawarabi Mincho";
  font-weight: normal;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.title-contact {
  font-size: 3rem;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 5px;
  color: #0179b5;
  font-family: "Alice", serif;
  font-weight: normal;
}

/*-------------------------------------------

SP

-------------------------------------------*/
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 600px) {
  .wrapper {
    margin-bottom: 50px;
  }
  .sec-title {
    font-size: 2rem;
  }
  .title-jp {
    margin-bottom: 35px;
  }
  h2.sec-title:before {
    width: 80px;
    height: 20px;
    margin-right: 0px;
  }
  h2.sec-title:after {
    width: 80px;
    height: 20px;
    margin-left: 5px;
  }
  .title-jp-s {
    font-size: 1.2em;
  }
  .title-contact {
    font-size: 2rem;
  }
  .category-title {
    font-size: 4rem;
  }
  .category-subtitle {
    font-size: 1.5rem;
  }
}

/*-------------------------------------------

ヘッダー

-------------------------------------------*/

#header {
  width: 100%;
  display: flex; /* h1とnavを横並びに配置します */
  align-items: top; /* 高さを中央でそろえます */
  height: 200px;
  margin: 10px auto;
  padding: 0 2%;
}

#header img {
  width: 180px;
}

#header p {
  display: flex;
  padding: 10px;
  color: #0179b5;
  font-size: 1.5em;
  font-family: "Sawarabi Mincho";
  z-index: 10;
}

.site-title {
  z-index: 10;
}

/*-------------------------------------------

SP

-------------------------------------------*/

@media screen and (max-width: 600px) {
  /*-------------------------------------------

  ヘッダー

  -------------------------------------------*/

  #header {
    max-width: 100%;
    height: auto;
    margin: 5px auto;
  }

  #header img {
    width: 100px;
  }

  #header p {
    display: flex;
    padding: 5px;
    margin-left: 5px;
    font-size: 0.9em;
  }
}

/*-------------------------------------------

メインビジュアル　スライド

-------------------------------------------*/

.css-carousel-slider-s {
  display: none;
}

/* 全体設定 */

.css-carousel-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: -230px;
  z-index: 0;
}

.css-carousel-slider img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* スライド設定 */

.css-carousel-slider .slide-wrap {
  width: 400%; /* 画像の合計数*100%を設定(*2) */
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  z-index: 0;
  animation: css-carousel-slider 20s infinite; /* スライダーアニメーション全体の時間(*3) */
  animation-delay: 2s; /* スライダーが始まるまでの時間(*4) */
}

.css-carousel-slider .slide-wrap-main {
  width: 100%;
  z-index: 1;
  animation: css-carousel-slider-main 20s infinite; /* (*3)と同じ内容を設定 */
  animation-delay: 2s; /* (*4)と同じ内容を設定 */
}

.css-carousel-slider .slide {
  width: 100%;
}

/* スライダーアニメーションの設定(*5) */

@keyframes css-carousel-slider {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(calc(1 / 4 * -100%));
  }
  25% {
    transform: translateX(calc(1 / 4 * -100%));
  }
  45% {
    transform: translateX(calc(2 / 4 * -100%));
  }
  50% {
    transform: translateX(calc(2 / 4 * -100%));
  }
  70% {
    transform: translateX(calc(3 / 4 * -100%));
  }
  75% {
    transform: translateX(calc(3 / 4 * -100%));
  }
  95% {
    transform: translateX(calc(4 / 4 * -100%));
  }
  100% {
    transform: translateX(calc(4 / 4 * -100%));
  }
}

@keyframes css-carousel-slider-main {
  0% {
    transform: translateX(100%);
  }
  75% {
    transform: translateX(100%);
  }
  95% {
    transform: translateX(0%);
  }
}

/*-------------------------------------------

メインビジュアル　スライド SP

-------------------------------------------*/

@media screen and (max-width: 600px) {
  /*-------------------------------------------

  ヘッダー

  -------------------------------------------*/

  .css-carousel-slider {
    display: none;
  }

  /* 全体設定 */

  .css-carousel-slider-s {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: -120px;
    z-index: 0;
  }

  .css-carousel-slider-s img {
    width: 100%;
    height: auto;
    vertical-align: top;
  }

  /* スライド設定 */

  .css-carousel-slider-s .slide-wrap-s {
    width: 400%; /* 画像の合計数*100%を設定(*2) */
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: 0;
    animation: css-carousel-slider-s 20s infinite; /* スライダーアニメーション全体の時間(*3) */
    animation-delay: 2s; /* スライダーが始まるまでの時間(*4) */
  }

  .css-carousel-slider-s .slide-wrap-main-s {
    width: 100%;
    z-index: 1;
    animation: css-carousel-slider-main-s 20s infinite; /* (*3)と同じ内容を設定 */
    animation-delay: 2s; /* (*4)と同じ内容を設定 */
  }

  .css-carousel-slider-s .slide-s {
    width: 100%;
  }

  /* スライダーアニメーションの設定(*5) */

  @keyframes css-carousel-slider-s {
    0% {
      transform: translateX(0);
    }
    20% {
      transform: translateX(calc(1 / 4 * -100%));
    }
    25% {
      transform: translateX(calc(1 / 4 * -100%));
    }
    45% {
      transform: translateX(calc(2 / 4 * -100%));
    }
    50% {
      transform: translateX(calc(2 / 4 * -100%));
    }
    70% {
      transform: translateX(calc(3 / 4 * -100%));
    }
    75% {
      transform: translateX(calc(3 / 4 * -100%));
    }
    95% {
      transform: translateX(calc(4 / 4 * -100%));
    }
    100% {
      transform: translateX(calc(4 / 4 * -100%));
    }
  }

  @keyframes css-carousel-slider-main-s {
    0% {
      transform: translateX(100%);
    }
    75% {
      transform: translateX(100%);
    }
    95% {
      transform: translateX(0%);
    }
  }
}

/*-------------------------------------------

SP

-------------------------------------------*/

@media screen and (max-width: 600px) {
  /*-------------------------------------------

  メインビジュアル　スライド

  -------------------------------------------*/

  .css-carousel-slider {
    margin-top: -50px;
  }
}

/*-------------------------------------------

アイテム

-------------------------------------------*/

.img-title-cl {
  background-image: url(../img/ttl_cat.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  width: 100%;
  height: 380px;
  margin: 0 auto;
  color: #0179b5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.img-title-wt {
  background-image: url(../img/20250815_Hotaru_Website_TitleBG_WetTissue-min.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  width: 100%;
  height: 380px;
  margin: 0 auto;
  color: #3385ca;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.img-title-cm {
  background-image: url(../img/20250815_Hotaru_Website_TitleBG_CatMousse-min.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  width: 100%;
  height: 380px;
  margin: 0 auto;
  color: darkorange;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.img-title-d {
  background-image: url(../img/ttl_dog.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  width: 100%;
  height: 380px;
  margin: 0 auto;
  color: #0179b5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.img-title-treats {
  background-image: url(../img/20251014_Hotaru_Website_TitleBG_Treats.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  width: 100%;
  height: 380px;
  margin: 0 auto;
  color: darkorange;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.item-top {
  width: 100%;
  display: flex; /* h1とnavを横並びに配置します */
  align-items: center; /* 高さを中央でそろえます */
  justify-content: space-between;
  gap: 1rem;
  min-height: 200px;
  margin: 4rem auto 1rem auto;
}

.item-top ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.item-top li img {
  max-width: 125px;
}

.frm-title {
  position: relative;
  min-width: 250px;
  min-height: 100px;
  padding: 0.5rem;
  display: grid;
  place-items: center;
  background-image: url("../img/frame.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.frm-title img {
  width: 100%; /* divの幅に対する割合 */
  position: absolute;
  inset: 0;
}

.good-point-ttl {
  padding: 10px;
  color: #0179b5;
  font-size: 1.5em;
  text-align: center;
  text-wrap: balance;
  font-family: "Sawarabi Mincho";
  line-height: 1.3;
}

.good-point {
  background: #ebf4f9;
  padding: 30px 5px 10px 5px;
  border-radius: 20px;
}

.good-point ul {
  width: 100%;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.good-point li {
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.good {
  width: 60px;
}

.good-point-text {
  font-size: 1em;
  color: #000000;
  font-family: "Sawarabi Mincho";
  text-wrap: balance;
}

.nekosuna {
  width: 150px;
}

.decoration {
  text-align: center;
  margin: 50px auto 10px auto;
}

.decoration img {
  width: 200px;
}

.lineup-ttl {
  padding: 10px;
  margin: 0 auto;
  color: #0179b5;
  font-size: 1.4em;
  text-align: center;
  text-wrap: balance;
  font-family: "Sawarabi Mincho";
  line-height: 1.3;
}

.item-list {
  margin-top: 2rem;
  margin-inline: auto;
}

.item-list ul {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.item-list li {
  text-align: center;
  padding: 10px;
}

.item-list img {
  width: 140px;
}

.ingredient-text {
  font-size: 12px;
  max-width: 30ch;
  text-align: left;
  text-wrap: pretty;
}

.good-point-s {
  background: #ebf4f9;
  padding: 20px 5px 20px 5px;
  border-radius: 20px;
  display: grid;
  place-items: center;
}

.good-point-s ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.good-point-s li {
  text-align: center;
  padding: 10px;
}

.item-list-two {
  margin-top: 40px;
}

.item-list-two ul {
  text-align: center;
}

.item-list-two li {
  width: 20%;
  display: inline-block;
  text-align: center;
  padding: 0px;
}

.item-list img {
  width: 140px;
}

.item-single {
  max-width: 320px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.nekosuna-series {
  display: flex;
  gap: 1rem;
}

.series-img img {
  width: 320px;
  padding-right: 20px;
}

.series-info {
  width: 100%;
}

.item-name {
  font-size: 1em;
  color: #0179b5;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-bottom: 2rem;
}

.item-top-d {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 30px;
}

.item-top-d li {
  display: inline;
}

.item-top-d li img {
  width: 125px;
  margin-right: 10px;
}

.item-list-d ul {
  text-align: center;
  margin-top: 30px;
}

.item-list-d li {
  width: 28%;
  display: inline-block;
  text-align: center;
  padding: 10px;
}

.item-list-d img {
  width: 140px;
}

/*-------------------------------------------

SP

-------------------------------------------*/

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

  .good-point ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  /*-------------------------------------------

  アイテム

  -------------------------------------------*/

  .item-top {
    display: block;
    text-align: center;
    height: 200px;
    margin: 50px auto 0px auto;
  }

  .frm-title {
    width: 200px;
    margin: 0 auto;
  }

  .frm-title .title-jp-s {
    font-size: 1.6em;
  }

  .item-top ul {
    margin-top: 1rem;
  }

  .item-top li img {
    width: 70px;
  }

  .good-point-ttl {
    padding: 10px;
    font-size: 1.1em;
  }

  .good-point ul {
    grid-template-columns: auto;
  }

  .nekosuna {
    width: 120px;
  }

  .lineup-ttl {
    font-size: 1.2em;
  }

  .item-list img {
    width: 160px;
  }

  .good-point-s li {
    width: 90%;
  }

  .item-list-two {
    margin-top: 20px;
  }

  .item-list-two li {
    width: 40%;
    display: inline-block;
    vertical-align: middle;
  }

  .item-list-two img {
    width: 110px;
    margin-top: 20px;
    margin-right: 40px;
  }

  .nekosuna-series {
    display: block;
  }

  .series-img {
    text-align: center;
    margin-inline: auto;
  }

  .series-img img {
    width: 180px;
    padding-right: 0px;
    text-align: center;
  }

  .item-top-d {
    margin-top: 0px;
  }

  .item-top-d li img {
    width: 80px;
    margin-right: 10px;
  }

  .item-list-d ul {
    margin-top: 10px;
  }

  .item-list-d li {
    width: 49%;
    display: inline-block;
    text-align: center;
    padding: 5px;
  }
}

/*-------------------------------------------

Table Settings

-------------------------------------------*/

table {
  font-size: 12px;
  text-align: left;
  border-collapse: collapse;
  table-layout: fixed;
}

caption {
  font-weight: bold;
  margin-bottom: 4px;
}

tr > td:first-child {
  font-weight: bold;
}

td {
  border: none;
  padding: 2px 4px;
}

/*-------------------------------------------

About

-------------------------------------------*/

#about {
  background-image: url(../img/about_bk.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 100px 0 120px 0;
}

.about-logo img {
  width: 200px;
}

.about-txt {
  font-size: 1em;
  color: #000000;
  font-family: "Sawarabi Mincho";
  margin-top: 20px;
}

#about a {
  color: #d91284;
  text-decoration: underline;
}

/*-------------------------------------------

SP

-------------------------------------------*/

@media screen and (max-width: 600px) {
  /*-------------------------------------------

  About

  -------------------------------------------*/

  #about {
    padding: 30px 0 50px 0;
  }

  .about-logo img {
    width: 120px;
  }
}

/*-------------------------------------------

Footer

-------------------------------------------*/

#footer {
  padding: 40px 0 20px 0;
  text-align: center;
}

.copyright {
  font-size: 0.8em;
  color: #0179b5;
  font-family: "Sawarabi Mincho";
}
