@charset "utf-8";
/* CSS Document */

/* =========================
  メインビジュアル位置調整
========================= */
.fs-body-top {
  padding-top:220px;
}

@media screen and (max-width: 435px) {
  .fs-body-top {
    padding-top:270px;
  }
}

/* ==============================
   メインビジュアルスライダー
============================== */

.top-main-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.top-main-swiper {
  width: 100%;
  position: relative;
}

.top-main-swiper .swiper-slide {
  width: 100%;
}

.top-main-swiper .swiper-slide a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.top-main-swiper picture {
  display: block;
  width: 100%;
}

.top-main-swiper img {
  display: block;
  width: 100%;
  height: auto;
}

/* ページネーション */
.top-main-swiper .swiper-pagination {
  bottom: 16px;
}

.top-main-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #fff;
  opacity: 0.6;
}

.top-main-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* 矢印 */
.top-main-swiper .swiper-button-prev,
.top-main-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  color: #fff;
}

.top-main-swiper .swiper-button-prev::after,
.top-main-swiper .swiper-button-next::after {
  font-size: 28px;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .top-main-swiper .swiper-pagination {
    bottom: 10px;
  }

  .top-main-swiper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .top-main-swiper .swiper-button-prev,
  .top-main-swiper .swiper-button-next {
    display: none;
  }
}

/***************************
 ** TOPページ内ボタン
****************************/

.link_btn_area {
  margin: 0 auto 5rem;
}
.link_btn_area a {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  font-size: 1.4em;
  font-weight: bold;
  border: 1px solid #888;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 550px;
  padding: 18px 25px;
  transition: 0.3s ease-in-out;
}
.link_btn_area a:hover {
  background: #888;
  color: #fff;
  text-decoration: none;
}
/*.link_btn_area a:visited {
  color: #000;
}*/
.link_btn_area a:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: 0.3s ease-in-out;
}
.link_btn_area a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 736px) {
  .link_btn_area {
    margin: 0 auto 4rem;
  }
  .link_btn_area a {
    font-size: 1.4rem;
  }
}


/***************************
 ** パスワード再設定バナー配置
 ****************************/

.pass-reset {
  margin: 20px auto 0;
}
.passreset_SP {
  display: none;
}

@media (max-width:736px) {
  .passreset_SP {
    display: block;
	width: 100%;
  }
  .passreset_PC {
    display: none;
  }
}


/***************************
 ** TOPページ見出し・キーワードタグ
 ****************************/

.top_headline {
  padding: 4em 0 5em;
  text-align: center;
}
.top_headline dt {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  margin-bottom: 2em;
}
.top_headline dd span {
  color: #d23528;
}

@media (max-width:736px) {
  .top_headline {
    padding: 2em 0;
  }
}

.keyword_tag{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 12px;
  margin:0 0 5em;
  padding:0;
}

.keyword_tag li{
  list-style:none;
  margin:0;
  padding:0;
}

.keyword_tag li a{
  display:flex;
  align-items:center;
  justify-content:center;

  min-height:42px;
  padding:8px 18px;

  border:1px solid #d0d0d0;
  border-radius:999px;

  background:#fff;
  color:#333;

  text-decoration:none;

  transition:
    background .3s,
    border-color .3s,
    color .3s,
    transform .3s,
    box-shadow .3s;
}

.keyword_tag li span{
  display:block;
  font-size:14px;
  font-weight:500;
  line-height:1.4;
}

.keyword_tag li a:hover{
  background:#f5f8ff;
  border-color:#1d3f82;
  color:#1d3f82;
  text-decoration:none;

  transform:translateY(-2px);

  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.keyword_tag li a:focus-visible{
  outline:2px solid #1d3f82;
  outline-offset:2px;
}

/* スマホ */
@media (max-width:736px){

  .keyword_tag{
    gap:8px;
    margin-bottom:3em;
  }

  .keyword_tag li a{
    min-height:38px;
    padding:6px 14px;
  }

  .keyword_tag li span{
    font-size:13px;
  }

}


/***************************
 ** ご利用シーンから探す
 ****************************/

.search_scene {
  background-color: #FBFAF6;
  padding: 2em 0;

  /* 背景を画面いっぱいに */
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);

  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);

  margin-bottom: 5em;
}

/* ==========================
   グループ
========================== */

.search_scene_group {
  margin-bottom: 2.5em;
}

.search_scene_group:last-child {
  margin-bottom: 0;
}

.search_scene_title {
  margin: 0 0 1em;
  padding-left: .8em;
  border-left: 5px solid #1d3f82;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #1d3f82;
}

/* ==========================
   タグ
========================== */

.search_scene .keyword_tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 12px;

  margin: 0;
  padding: 0;
}

.search_scene .keyword_tag li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search_scene .keyword_tag li a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 8px 18px;

  border: 1px solid #d0d0d0;
  border-radius: 999px;

  background: #fff;
  color: #333;
  text-decoration: none;

  transition: all .3s ease;
}

.search_scene .keyword_tag li a p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.search_scene .keyword_tag li a:hover {
  background: #f5f8ff;
  border-color: #1d3f82;
  color: #1d3f82;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.search_scene .keyword_tag li a:hover p {
  text-decoration: none;
}

/* スマホ */
@media screen and (max-width:736px){

  .search_scene{
    padding:1.5em 1.5em;
    margin-bottom:3em;
  }

  .search_scene_group{
    margin-bottom:2em;
  }

  .search_scene_title{
    font-size:17px;
    margin-bottom:.8em;
  }

  .search_scene .keyword_tag{
    gap:8px;
  }

  .search_scene .keyword_tag li a{
    min-height:38px;
    padding:6px 14px;
  }

  .search_scene .keyword_tag li a p{
    font-size:13px;
  }

}


/***************************
 ** 知る・学ぶ
 ****************************/

.know-learn_column{
  margin: 0 auto 3em;
  max-width: 1100px;
}

.know-learn_column ul{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PCは4列 */
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.know-learn_column li{
  margin: 0;
}

.know-learn_column a{
  display: block;
  overflow: hidden; /* 拡大時にはみ出さない */
  border-radius: 8px;
}

.know-learn_column img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s ease;
}

.know-learn_column a:hover img{
  transform: scale(1.03);
}

/* タブレット */
@media (max-width: 1024px){

  .know-learn_column ul{
    grid-template-columns: repeat(2, 1fr);
  }

}

/* スマホ */
@media (max-width: 767px){

  .know-learn_column{
    margin-bottom: 2em;
  }

  .know-learn_column ul{
    grid-template-columns: repeat(2, 1fr); /* スマホも2列 */
    gap: 12px;
  }

}


/***************************
 ** 売れ筋ランキング、新着商品、カテゴリ別ランキング
 ****************************/

.top_scroll_item h2 {
  display: none;
}
.top_scroll_item > div {
  margin-bottom: 2em;
}


/***************************
 ** 製造工程ムービー
 ****************************/

.process_movie {
  margin: 6em auto 5em;
}
.process_movie video {
  width: 100%;
  height: auto;
  display: block; /* 下部にできる謎の隙間を消す */
}


/***************************
 ** お客様の声
 ****************************/

.review_column {
  margin-bottom: 5em;
}

.review_column ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
  margin: 0;
  padding: 0;
}

.review_column ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.review_column ul li > a {
  display: block;
  width: 38%;
  flex-shrink: 0;
}

.review_column ul li > a img {
  width: 100%;
  height: auto;
  display: block;
}

.review_column dl {
  width: auto;
  flex: 1;
  min-width: 0;
  margin: 0;
}

.review_column dl dt {
  font-weight: bold;
  border-bottom: 1px solid #000;
  padding-bottom: 1em;
  margin-bottom: 1em;
  line-height: 1.5;
  word-break: break-word;
}

.review_column dl dt span {
  font-size: 0.9em;
  color: #ffdd68;
}

.review_column dl dd {
  margin: 0;
  line-height: 1.7;
  word-break: break-word;
}

/* スマホ */
@media screen and (max-width: 736px) {

  .review_column {
    margin-bottom: 3em;
  }

  .review_column ul {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .review_column ul li {
    align-items: flex-start;
    gap: 12px;
  }

  .review_column ul li > a {
    width: 34%;
  }

  .review_column dl dt {
    font-size: 13px;
    padding-bottom: 0.6em;
    margin-bottom: 0.6em;
  }

  .review_column dl dd {
    font-size: 12px;
    line-height: 1.6;
  }
}


/***************************
 ** よくあるご質問
 ****************************/

.faq-section{
  margin:0 auto 3em;
  padding:40px 20px;
}

.faq-container{
  border-top:1px solid #d8c897;
}

.faq-item{
  border-bottom:1px solid #d8c897;
}

.faq-question{
  width:100%;
  padding:18px 14px;
  background:#fff;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  cursor:pointer;
  text-align:left;
}

.faq-item.is-active .faq-question{
  background:#FBFAF6;
}

.faq-question-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.faq-q,
.faq-a{
  width:24px;
  height:24px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:#fff;
  font-size:13px;
  font-weight:700;
  line-height:1;
}

.faq-q{
  background:#001f4d;
}

.faq-a{
  background:#ef5b4f;
}

.faq-title{
  font-size:16px;
  font-weight:700;
  color:#001f4d;
  line-height:1.6;
}

.faq-arrow{
  position:relative;
  width:12px;
  height:12px;
  flex-shrink:0;
}

.faq-arrow::before{
  content:"";
  position:absolute;
  top:2px;
  left:1px;
  width:8px;
  height:8px;
  border-right:2px solid #001f4d;
  border-bottom:2px solid #001f4d;
  transform:rotate(45deg);
  transition:transform .3s ease;
}

.faq-item.is-active .faq-arrow::before{
  top:5px;
  transform:rotate(225deg);
}

.faq-answer-wrapper{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .35s ease;
}

.faq-item.is-active .faq-answer-wrapper{
  grid-template-rows:1fr;
}

.faq-answer{
  overflow:hidden;
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:0 14px;
}

.faq-item.is-active .faq-answer{
  padding:0 14px 22px;
  background:#fff;
}

.faq-answer-body{
  flex:1;
}

.faq-answer-body p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:#24415f;
}

@media (max-width:767px){
  .faq-section{
    padding:30px 15px;
  }

  .faq-question{
    padding:16px 10px;
  }

  .faq-title{
    font-size:15px;
  }

  .faq-answer{
    padding:0 10px;
  }

  .faq-item.is-active .faq-answer{
    padding:0 10px 18px;
  }
}


/***************************
 ** TOPのお知らせ
 ****************************/

/* お知らせ一覧 */
.top-notice-list {
  border-top: 1px solid #ddd;
  margin-bottom: 60px;
}

/* お知らせ一覧 */
.top-notice-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  border-bottom: 1px solid #ddd;
  transition: background-color .3s ease;
}

.top-notice-item:hover {
  background-color: #faf7f2;
}

.top-notice-date {
  width: 120px;
  flex-shrink: 0;
  color: #666;
  font-size: 14px;
}

.top-notice-link {
  flex: 1;
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  line-height: 1.7;
}

.top-notice-link:hover {
  color: #333;
  text-decoration: none;
}

.top-notice-loading,
.top-notice-empty {
  padding: 20px 0;
  text-align: center;
  color: #888;
}

@media (max-width: 767px) {

  .top-notice-item {
    display: block;
    padding: 16px;
  }

  .top-notice-item:hover {
    transform: none;
  }

  .top-notice-date {
    width: auto;
    display: block;
    margin-bottom: 6px;
  }

}