@charset "utf-8";
/* CSS Document */

/******************************************************
 ** 全ページ、共通下部
******************************************************/
/* ========================================
   ページ下部共通検索
======================================== */
.productFinder {
  background: #FBFAF6;
  padding: 80px 0;
}

/*トップページ-ページ下部商品を探す */
.productFinder_top {
  background: #FBFAF6;
  padding: 80px 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  margin-bottom: 5em;
}

.productFinderInner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sectionTitle {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  text-align: center;
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 60px;
}

/* タブ */
.finderTabs {
  display: flex;
  align-items: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.finderTabs li {
  background: #9e9e9e;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  padding: 25px 40px;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
  transition: .3s;
  white-space: nowrap;
}

.finderTabs li.active {
  background: #fff;
  color: #222;
}

.finderContents {
  display: none;
  background: #fff;
  padding: 40px;
  border-radius: 0 12px 12px 12px;
}

.finderContents.active {
  display: block;
}

/* タブ1 */
.finderGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 25px;
}

.finderItem {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #d5d5d5;
  padding: 12px 8px;
  min-width: 0;
  border-radius: 10px;
  transition: all .25s ease;
}

.finderItem:hover {
  text-decoration: none;
  color: #0b3a83;
  background: #fafcff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11,58,131,.12);
  border-bottom-color: #0b3a83;
}

.finderItem:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(11,58,131,.08);
}

.finderItem,
.finderItem:hover,
.finderItem:focus,
.finderItem:visited {
  text-decoration: none !important;
}

.finderItem img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px;
}

.finderItem span {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
  transition: color .25s ease;
}

.finderItem:hover span {
  color: #0b3a83;
}

/* タブ2・タブ3 */
.finderContents--search {
  padding: 28px 26px 34px;
  border-radius: 0 0 12px 12px;
}

.searchBlock {
  margin-bottom: 34px;
}

.searchBlock:last-child {
  margin-bottom: 0;
}

.searchBlockTitle {
  position: relative;
  margin: 0 0 18px;
  padding-left: 20px;
  color: #0b3a83;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.searchBlockTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 5px;
  height: 1.2em;
  background: #0b3a83;
}

.searchBtnList {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.searchBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  min-height: 42px;
  padding: 9px 20px;
  border: 1px solid #c9ced8;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;   /* 下線なし */
  box-sizing: border-box;
  transition: all .25s ease;
}

.searchBtn:hover {
  text-decoration: none;   /* 念のため */
  color: #0b3a83;
  border-color: #0b3a83;
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11,58,131,.15);
}

.searchBtn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(11,58,131,.12);
}

/* タブレット */
@media (max-width: 1024px) {
  .finderTabs li {
    font-size: 1em;
    padding: 20px 24px;
  }

  .finderGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマホ */
@media (max-width: 767px) {
  .productFinder {
    padding: 50px 0;
  }

  .productFinderInner {
    padding: 0 15px;
  }

  .sectionTitle {
    font-size: 1.4em;
    margin-bottom: 30px;
  }

  .finderTabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
  }

  .finderTabs li {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 14px 16px;
    border-radius: 12px 12px 0 0;
  }

  .finderContents {
    padding: 20px 15px;
    border-radius: 0 0 12px 12px;
  }

  .finderGrid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .finderItem {
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #4f7ff0;
  }

  .finderItem img {
    width: 50px;
    height: 50px;
  }

  .finderItem span {
    font-size: 13px;
    line-height: 1.6;
  }

  .finderContents--search {
    padding: 24px 15px 28px;
  }

  .searchBlock {
    margin-bottom: 30px;
  }

  .searchBlockTitle {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .searchBtnList {
    gap: 10px;
  }

  .searchBtn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 13px;
    justify-content: flex-start;
  }
}



/* ========================================
   強み
======================================== */
.company-strength {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", "MS 明朝", serif;
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  background-color: #fff;
}

.strength-message {
  text-align: center;
  margin-bottom: 120px;
}

.strength-message h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 50px;
}

.strength-message p {
  font-size: 1.5em;
  line-height: 2;
  margin-bottom: 40px;
}

.strength-slider {
  position: relative;
  margin-bottom: 40px;
}

.slider-container {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform .5s ease;
}

.strength-slide {
  flex: 0 0 100%;
}

.strength-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
}

.strength-image {
  margin-bottom: 30px;
}

.strength-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.strength-text {
  font-size: 24px;
  line-height: 2;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  font-size: 70px;
  color: #d8c46a;
  cursor: pointer;
  z-index: 10;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right:20px;
}

.strength-text {
  font-size: 1.5em;
  line-height: 2;
}

/* スマホ */
@media (max-width: 767px) {

  .company-strength {
    margin: 50px auto;
  }

  .strength-message {
    margin-bottom: 60px;
  }

  .strength-message h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .strength-message p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }

  .strength-title {
    font-size: 1.5em;
  }

  .strength-text {
    font-size: 1.2em;
  }
}

/* ========================================
   フッター共通
======================================== */
.footer {
  background: #fff;
  border-top: 1px solid #d9d9d9;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.footer a {
  color: #333;
  text-decoration: none;
  transition: .3s;
}

.footer a:hover {
  opacity: .7;
}

.footer-inner,
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   お問い合わせエリア
======================================== */
.footer-contact {
  padding: 60px 0;
  border-bottom: 1px solid #e5e5e5;
}

.contact-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}

.contact-inner > div {
  width: calc(100% / 3);
}
.contact-icon img {
  height: 50px;
  width: auto;
}

.contact-box a {
  display: block;
}
.contact-box img {
  display: block;
  width: 92%;
  height: auto;
  transition: .3s;
  margin: 0 auto;
}
.contact-box a:hover img {
  opacity: .85;
}

/* ========================================
   バナーエリア
======================================== */
.footer-banner {
  padding: 40px 0;
  background-color: #FBFAF6;
}

.footer-banner .footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.banner-item {
  display: block;
}

.banner-item img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

/* ========================================
   ガイドエリア
======================================== */
.footer-guide {
  padding: 50px 0;
  background-color: #FBFAF6;
}

.footer-guide .footer-inner {
  display: grid;
  grid-template-columns: 360px 260px 1fr;
  gap: 40px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 10px;
}

/* ========================================
   サポートセンター
======================================== */
.support-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.support-list img {
  width: 40px;
}

.support-list span {
  font-size: 24px;
  font-weight: 700;
}

/* ========================================
   ショッピングガイド
======================================== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  position: relative;
  padding-left: 14px;
  font-size: 1.1em;
  font-weight: bold;

}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
}

.payment-area {
  margin-top: 40px;
}
.payment-area h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 10px;
}
/*
.payment-icons {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
}
*/
.payment-icons img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   カレンダー
======================================== */
.calendar-box {
  min-height: 260px;
}

.calendar-note {
  font-size: 1.1em;
  font-weight: bold;
  color: #666;
}

.calendar-note p {
  margin-bottom: 6px;
}

/* ========================================
   フッターボトム
======================================== */
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
}

.footer-bottom .footer-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.footer-brand img {
  max-width: 180px;
}

/* ========================================
   SNS
======================================== */
.footer-sns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  /*border: 1px solid #123c82;
  border-radius: 50%;
  transition: .3s;*/
}

.footer-sns a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,.15);
}

.footer-sns img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* ========================================
   会社情報
======================================== */
.footer-company {
  text-align: right;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.8;
}

/* ========================================
   下部リンク
======================================== */
.footer-bottom-row {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links-bottom a {
  font-size: 1.1em;
  font-weight: bold;
}

/* ========================================
   コピーライト
======================================== */
.copyright {
  font-size: 1.1em;
  font-weight: bold;
  color: #666;
  text-align: right;
  white-space: nowrap;
}

/* ========================================
   スマホ
======================================== */
@media (max-width: 768px) {
  .footer-contact {
    padding: 40px 0;
  }

  .contact-inner {
    display: block;
  }

  .contact-inner > div {
	width: 100%;
  }
  .contact-box img {
    margin-bottom: 1em;
  }

  .contact-tel {
    font-size: 32px;
  }

  .contact-time {
    font-size: 16px;
  }

  .contact-btn {
    width: 100%;
    max-width: 340px;
    height: 70px;
    font-size: 1.8rem;
    border-radius: 18px;
  }

  .footer-banner .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-guide .footer-inner {
    grid-template-columns: 1fr;
  }

  .support-list span {
    font-size: 18px;
  }

  .footer-bottom .footer-inner {
    display: -webkit-block;
    display: block;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-company {
    text-align: center;
  }

  .footer-sns {
    justify-content: center;
  }

  .footer-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }

  .footer-links-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  .copyright {
    text-align: center;
    white-space: normal;
  }
}