@charset "utf-8";

.ickitLpPage {
  font-size: 1.3rem;
  line-height: 1.4;
}
.ickitLpPage .c-heading03 {
  margin-bottom: 20px;
  font-weight: 700;
}

.section + .section {
  margin-top: 60px;
}

.topSection {
  padding: 20px;
  background: #ededed;
  display: flex;
  gap: 0 40px;
}
.topSection__image {
  width: 380px;
}
.topSection__detail {
  flex: 1;
  display: flex;
  flex-flow: column;
}
.topSection__text {
  font-size: 1.5rem;
  line-height: 1.6;
  word-break: auto-phrase;
}
.topSection__note {
  margin-top: 14px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.topSection__ancList {
  margin-top: auto;
}

@media screen and (max-width: 1023px) {
  .topSection {
    display: flex;
    flex-flow: column;
    gap: 20px 0;
  }
  .topSection__image {
    align-self: center;
  }
  .topSection__detail {
    flex: 1;
    display: flex;
    flex-flow: column;
  }
  .topSection__text {
    font-size: 1.5rem;
    line-height: 1.6;
    word-break: normal;
  }
}
@media screen and (max-width: 767px) {
  .topSection__image {
    width: auto;
    max-width: 380px;
  }
  .topSection__detail .anchorLinkListArea .list {
    display: flex;
  }
  .topSection__detail .anchorLinkListArea .list > li {
    width: 100%;
  }
}

.aboutSection__ancList {
  margin-top: 20px;
  display: flex;
  gap: 20px 40px;
}
.aboutSection__ancItem {
  flex: 1;
}
.aboutSection__ancLink {
  position: relative;
  display: flex;
  text-decoration: none;
  color: #000;
  border: 1px solid var(--site-color-main);
  height: 100%;
}
.aboutSection__ancLink::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -12px;
  background: url(/assets/images/icon_arrow03.svg) no-repeat center center;
  background-size: 24px 24px;
}
.aboutSection__ancLink-image {
  width: 120px;
}
.aboutSection__ancLink-image img {
  height: 100%;
  object-fit: cover;
}
.aboutSection__ancLink-detail {
  flex: 1;
  padding: 16px 88px 16px 16px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.aboutSection__ancLink-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.aboutSection__type {
  margin-top: 30px;
}
.aboutSection__typeTitle {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.aboutSection__typeList {
  margin-top: 10px;
  border-top: 1px solid #ccc;
}
.aboutSection__typeItem {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  display: flex;
  gap: 0 20px;
}
.aboutSection__typeItem-title {
  width: 200px;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
}
.aboutSection__typeItem-title::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--site-color-main);
  position: absolute;
  left: 5px;
  top: 6px;
}
.aboutSection__typeItem-body {
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .aboutSection__ancList {
    flex-flow: column;
  }
}
@media screen and (max-width: 767px) {
  .aboutSection__ancLink-image {
    width: 80px;
  }
  .aboutSection__ancLink-title {
    font-size: 1.3rem;
  }
  .aboutSection__ancLink-detail {
    font-size: 1.2rem;
    padding: 10px 30px 10px 10px;
  }
  .aboutSection__ancLink::after {
    width: 16px;
    height: 16px;
    right: 8px;
    margin-top: -8px;
    background-size: 16px 16px;
  }
  .aboutSection__typeItem {
    display: flex;
    flex-flow: column;
    gap: 10px 0;
  }
  .aboutSection__typeItem-title {
    width: auto;
  }
  .aboutSection__typeItem-body {
    padding-left: 15px;
  }
}

.kitSection__item {
  padding: 20px;
  background: #f8f8f8;
}
.kitSection__item + .kitSection__item {
  margin-top: 40px;
}
.kitSection__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
.kitSection__headTitle {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.kitSection__headTitle-name {
  padding-right: 20px;
}
.kitSection__headTitle-image {
  width: 80px;
}
.kitSection__headTitle-title {
  flex: 1;
}
.kitSection__headTitle-sub {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--site-color-main);
}
.kitSection__headTitle-main {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--site-color-main);
}
.kitSection__headAnc {
  flex-shrink: 0;
}
.kitSection__body {
  margin-top: 30px;
  display: flex;
  gap: 0 40px;
}
.kitSection__bodyItem {
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .kitSection__body {
    flex-flow: column;
    gap: 20px 0;
  }
  .kitSection__headTitle-sub {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--site-color-main);
  }
  .kitSection__headTitle-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--site-color-main);
  }
}
@media screen and (max-width: 767px) {
  .kitSection__item {
    padding: 10px;
  }
  .kitSection__head {
    flex-flow: row wrap;
  }
  .kitSection__headTitle {
    gap: 0 10px;
  }
  .kitSection__headTitle-image {
    width: 60px;
  }
  .kitSection__headAnc {
    padding-top: 10px;
    width: 100%;
    text-align: right;
  }
}

.buyList {
  display: flex;
  flex-flow: column;
  gap: 15px 0;
}
.buyList__head {
  display: flex;
}
.buyList__headType {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-weight: 700;
  background-color: var(--site-color-main);
}
.buyList__headName {
  flex: 1;
  background: #ddd;
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  font-weight: 700;
}
.buyList__headName span {
  font-weight: 400;
}
.buyList__item {
  background: #fff;
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.buyList__itemImage {
  width: 100px;
}
.buyList__itemName {
  flex: 1;
  padding: 0 20px 0 15px;
}
.buyList__itemName-sub {
  margin-bottom: 5px;
}
.buyList__itemName-main {
  font-weight: 700;
}
.buyList__itemBuy {
  margin-left: auto;
}
.buyList__itemBuy-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0 6px;
  color: var(--site-color-main);
}
.buyList__itemBuy-link::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icon_cart.svg) no-repeat center center;
  background-size: 24px 24px;
}
.buyList__itemBuy-link:hover {
  text-decoration: underline;
}
.buyList__itemBuy-soon {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  padding: 0 10px;
  height: 30px;
  border: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  .buyList__headType {
    height: auto;
    min-height: 30px;
  }
  .buyList__headName {
    height: auto;
    min-height: 30px;
    padding: 10px;
  }
  .buyList__item {
    padding: 10px;
    display: grid;
    grid-template-columns: 100px 1fr;
  }
  .buyList__itemImage {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .buyList__itemName {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    padding: 0 0 0 10px;
  }
  .buyList__itemBuy {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    padding-top: 10px;
    text-align: right;
  }
  .buyList__itemBuy-link {
    display: inline-flex;
  }
}

.recommendBox {
  padding: 15px 20px 25px 20px;
  background: #fff;
  border: 1px solid #ccc;
}
.recommendBox + .recommendBox {
  margin-top: 15px;
}
.recommendBox__head {
  background: var(--site-color-main);
  padding: 5px 15px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 20px;
}
.recommendBox__set {
  display: flex;
  gap: 0 30px;
}
.recommendBox__image {
  width: 220px;
}
.recommendBox__detail {
  flex: 1;
}
.recommendBox__sub {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.recommendBox__main {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.recommendBox__list {
  display: flex;
  flex-flow: column;
  gap: 12px 0;
}
.recommendBox__prod {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.recommendBox__prodType {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: #fff;
  background: var(--site-color-main);
  font-weight: 700;
  position: relative;
  top: 2px;
}
.recommendBox__prodName {
  flex: 1;
  font-weight: 700;
}
.recommendBox__buy {
  text-align: center;
  margin-top: 30px;
}
.recommendBox__soon {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid #eee;
  font-size: 1.6rem;
  color: #000;
}
.recommendBox__buyLink {
  display: inline-flex;
  align-items: center;
  padding: 15px 20px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  gap: 0 6px;
}
.recommendBox__buyLink::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icon_cart.svg) no-repeat center center;
  background-size: 24px 24px;
}
.recommendBox__buyLink.contact::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icon_contact.svg) no-repeat center center;
  background-size: 24px 24px;
}
@media screen and (max-width: 767px) {
  .recommendBox {
    padding: 10px;
  }
  .recommendBox__set {
    flex-flow: column;
    gap: 20px;
  }
  .recommendBox__image {
    margin: 0 auto;
  }
  .recommendBox__buyLink {
    font-size: 1.3rem;
  }
}

.dlBox {
  margin-top: 15px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ccc;
}
.dlBox .c-heading03 {
  font-size: 1.6rem;
}

.howtoSection .brnArea {
  padding: 20px;
  background-color: #f8f8f8;
  text-align: center;
  margin-top: 25px;
}
.howtoSection .brnArea img {
  height: auto;
}

.contactSectionArea {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .contactSectionArea {
    margin-bottom: 0px;
  }
}
