@charset "UTF-8";

/* =========================== */
/* 商材一覧ページ */
/* =========================== */

.items .pageHeader {
  margin-bottom: 0;
  padding-bottom: 1.5em;
}
.items .pageTitle--def {
  padding-bottom: .5em;
}
.items .pageHeader__desc {
  margin-top: .5em;
}

/* セクション */
.itemsSection {
  background-color: #fdf3e7;
  padding-top: 3rem;
  padding-bottom: 6rem;
  position: relative;
}

/* 商材カード一覧 */
.itemsCardList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
}
.itemsCardList__item {
  width: 100%;
}
.itemsCard {
  background: #fff;
  box-shadow: 0px 0px 10px 1px rgba(51, 51, 51, 0.1);
  height: 100%;
  display: flex;
  align-items: stretch;
}
.itemsCard__thumb {
  flex: 0 0 100px;
  width: 100px;
  background: #f0f1f2;
  overflow: hidden;
  display: block;
}
.itemsCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.itemsCard__body {
  flex: 1;
  min-width: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.itemsCard__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 1em;
  padding-bottom: .5em;
  border-bottom: 1px solid #d2d3d4;
  color: #db632e;
}
.itemsCard__group {
  margin-bottom: 1.2em;
}
.itemsCard__group:last-child {
  margin-bottom: 0;
}
.itemsCard__groupLabel {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  background: #db632e;
  padding: .3em .8em;
  border-radius: 2px;
  line-height: 1.3;
}
.itemsCard__link {
  display: flex;
  align-items: center;
  padding: .8rem 0;
  border-bottom: 1px solid #f0f1f2;
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  transition: color .2s;
}
.itemsCard__link:last-child {
  border-bottom: none;
}
.itemsCard__link:hover {
  color: #db632e;
}
.itemsCard__linkText {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
.itemsCard__link::after {
  content: "›";
  font-size: 2rem;
  color: #db632e;
  margin-left: auto;
  padding-left: .5em;
  font-weight: normal;
  line-height: 1;
}

/* =========================== */
/* 商材別のメリット (タブ切り替え) */
/* =========================== */
.itemsMerit {
  padding: 3rem 0 4rem;
}

.itemsTabs {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2px;
  border-bottom: 3px solid #db632e;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.itemsTabs__item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}
.itemsTabs__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  background: #f0f1f2;
  border: none;
  padding: .9em .2em;
  font-size: .95rem;
  line-height: 1.3;
  color: #777;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px 6px 0 0;
  transition: background-color .2s, color .2s;
  white-space: normal;
  word-break: break-all;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}
.itemsTabs__brSp {
  display: none;
}
@media screen and (max-width: 767px) {
  .itemsTabs__brSp {
    display: inline;
  }
}
.itemsTabs__btn:hover {
  color: #c95320;
  background: #fff1e4;
}
.itemsTabs__btn.is-active {
  color: #fff;
  background: #db632e;
}

.itemsTabPanels {
  position: relative;
  background: #fff;
  padding: 2.5rem 1.5rem;
}
.itemsTabPanel {
  display: none;
}
.itemsTabPanel.is-active {
  display: block;
}
.itemsTabPanel__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.itemsTabPanel__img {
  width: 100%;
  background: #f0f1f2;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.3rem;
  overflow: hidden;
}
.itemsTabPanel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.itemsTabPanel__body {
  flex: 1;
}
.itemsTabPanel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
}
.itemsTabPanel__list > li {
  padding: 1.2rem 0;
  border-bottom: 1px solid #f0f1f2;
}
.itemsTabPanel__list > li:first-child {
  padding-top: 0;
}
.itemsTabPanel__list__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #db632e;
  margin: 0 0 .3em;
}
.itemsTabPanel__list__text {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
}
.itemsTabPanel__more {
  text-align: right;
  margin: 0;
}

/* よくある質問への導線 */
.itemsFaqLink {
  text-align: center;
  padding: 2rem 0 3rem;
  margin: 0;
}

/* お客様相談センター (merit.cssと共通デザイン) */
.items .custCenter {
  background-color: #fff;
  padding-bottom: 2.5rem;
}
.items .custCenter__titleBr {
  display: none;
}
@media screen and (max-width: 767px) {
  .items .custCenter__titleBr {
    display: inline;
  }
}
.items .custCenter__title {
  font-size: 1.5rem;
  padding: 0.9em 1em;
  margin: 0 0 2rem;
  text-align: center;
  color: #fff;
  background-color: #34becf;
  line-height: 1.5;
}
.items .custCenter__telLabel {
  text-align: center;
  font-size: 1.3rem;
  color: #555;
  margin: 0 0 .6em;
}
.items .custCenter__tel {
  font-size: 2.6rem;
  margin: 0 0 .6em;
  text-align: center;
  font-family: IwaNGoPro-Lt, sans-serif;
  line-height: 1.2;
}
.items .custCenter__tel a {
  text-decoration: none;
  color: #333;
}
.items .custCenter__tel img {
  height: 2rem;
  margin-right: 1rem;
  vertical-align: baseline;
}
.items .custCenter__note {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin: 0 0 2rem;
}
.items .custCenter__contact {
  text-align: center;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid #d2d3d4;
}
.items .custCenter__btn {
  display: inline-block;
  font-size: 1.4rem;
  padding: .9em 3em;
  color: #fff;
  background: #db632e;
  border: 2px solid #db632e;
  border-radius: 2em;
  text-decoration: none;
  font-weight: bold;
  transition: all .3s;
}
.items .custCenter__btn::after {
  content: "›";
  display: inline-block;
  margin-left: .8em;
  font-size: 1.4em;
  line-height: 1;
  font-weight: normal;
  vertical-align: -2px;
}
.items .custCenter__btn:hover {
  background: #c95320;
  border-color: #c95320;
  color: #fff;
}

/* =========================== */
/* PC (768px+) */
/* =========================== */
@media screen and (min-width: 768px) {
  .items .pageHeader {
    padding-bottom: 2em;
  }

  /* 商材カード 2カラム */
  .itemsCardList__item {
    width: calc(50% - 1rem);
  }
  .itemsCard__thumb {
    flex: 0 0 180px;
    width: 180px;
  }
  .itemsCard__body {
    padding: 2rem;
  }
  .itemsCard__title {
    font-size: 2rem;
  }
  .itemsCard__link {
    font-size: 1.5rem;
  }

  /* セクション */
  .itemsSection {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  /* メリットタブ */
  .itemsMerit {
    padding: 4rem 0 5rem;
  }
  .itemsTabs {
    gap: 4px;
  }
  .itemsTabs__btn {
    font-size: 1.5rem;
    padding: 1.3em 1em;
    white-space: nowrap;
  }
  .itemsTabPanels {
    padding: 3.5rem 3rem;
  }
  .itemsTabPanel__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .itemsTabPanel__img {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .itemsTabPanel__list__title {
    font-size: 1.7rem;
  }
  .itemsTabPanel__list__text {
    font-size: 1.4rem;
  }

  /* お客様相談センター */
  .items .custCenter {
    padding-bottom: 3.5rem;
  }
  .items .custCenter__title {
    font-size: 1.8rem;
    padding: 1em;
    margin: 0 0 2.5rem;
  }
  .items .custCenter__telLabel {
    font-size: 1.4rem;
    margin-bottom: .8em;
  }
  .items .custCenter__tel {
    font-size: 3.4rem;
    margin-bottom: .8em;
  }
  .items .custCenter__tel img {
    height: auto;
    margin-right: 1.5rem;
  }
  .items .custCenter__note {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
  }
  .items .custCenter__contact {
    padding-top: 2.5rem;
  }
  .items .custCenter__btn {
    font-size: 1.6rem;
  }
}
