@charset "UTF-8";

/* ============================================================

    base

============================================================ */
body {
  min-width: 1024px;
  counter-reset: count 0;
}

main {
  margin: 30px 0 0;
}

.crumb {
  margin-bottom: 15px;
}

/*  parts
------------------------------------------------------------ */
/* 見出し */
.p-general_ttl {
  margin-bottom: 45px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: .05em;
}

.p-general_ttl_small {
  display: block;
  margin-top: 10px;
  color: #808080;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: .05em;
  line-height: 1.75;
}

/* ボタン */
.p-general_more {
  margin-top: 80px;
  text-align: center;
}

.p-general_more_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 50px;
  position: relative;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: .05em;
  border: 1px solid #000;
  background: #fff;
}

.p-general_more_btn::after {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -7px;
  margin-left: 20px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 30px;
  border: solid #000;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  content: "";
}

.p-general_more_btn.is-opened::after {
  margin-top: -3px;
  transform: rotate(-135deg);
}

/*  animation
------------------------------------------------------------ */
/* 下からふわっと移動しながらフェードイン */
.anim_fade-up.is-inactive {
  opacity: 0;
  transform: translateY(30px);
}

.anim_fade-up.is-active {
  opacity: 1;
  transition: .7s ease-in-out;
  transform: translateY(0);
}


/* ============================================================

    accordion

============================================================ */
.accordion {
  width: 1024px;
  margin: 0 auto;
  margin-top: 40px;
  text-align:center; 
  color: white;
  border: 1px solid #000;
}

.accordion_index {
  padding: 10px 40px; 
  position: relative;
  list-style: none;
  background-color: #000;
  background-image: url("../img/icn_wp_menu_w.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: 38px center;
  cursor: pointer;
}

.accordion_index::-webkit-details-marker {
  display: none;
}

.accordion_index::after {
  display: block;
  content:'';
  width: 10px;
  height: 10px;
  margin-top: -8px;
  margin-left: 20px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 47px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  transition: transform 0.2s;
  cursor: pointer;
}

.accordion[open] > .accordion_index::after {
  transform: rotate(225deg);
  margin-top: -4px;
}

.accordion_index:hover {
  opacity: .7;
  transition: .2s opacity;
}

.accordion_index_ttl {
  font-size: 18px;
  line-height: 2;
  margin-right: 20px;
}

.accordion_index:hover .accordion_index_ttl {
  text-decoration: underline;
}

.accordion_content {
  text-align: left;
  padding: 17px 40px;
}

.accordion_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 0;
}

.accordion_item {
  font-size: 18px;
  line-height: 1.5;
}

.accordion_item::before {
  counter-increment: count 1;
  content: "- " counter(count) ".";
  color: #000;
  display: inline-block;
  margin-right: 20px;
}


/* ============================================================

    mainvisual

============================================================ */
.mainvisual {
  overflow: hidden;
}

.mainvisual img {
  width: 100%;
  min-height: 500px;

  -o-object-fit: cover;
     object-fit: cover;
}

/* ============================================================

    lead

============================================================ */
.lead {
  padding: 45px 0;
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: .05em;
  background: #f2f2f2;
}

.lead_more {
  margin-top: 30px;
  text-align: center;
}

.lead_more_btn {
  padding-left: 20px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .05em;
  border-bottom: 1px solid #000;
}

.lead_more_btn:hover {
  text-decoration: none;
}

.lead_more_btn::before, .lead_more_btn::after {
  width: 9px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 4px;
  background-color: #000;
  content: "";
}

.lead_more_btn::after {
  transform: rotate(90deg);
}

.lead_more_btn.is-opened::after {
  transform: none;
}

/* ============================================================

    content

============================================================ */
.content {
  padding: 80px 0;
}

.content + .content {
  border-top: 1px solid #d9d9d9;
}

.content_inner {
  display: block;
  width: 1024px;
  margin: 0 auto;
}

.content_list {
  display: flex;
  flex-wrap: wrap;
}

.content_list_item {
  display: flex;
  flex-direction: column;
  width: 314px;
  margin-top: 40px;
  margin-right: 40px;
  position: relative;
  padding-bottom: 60px;
}

.content_list_item:nth-child(3n) {
  margin-right: 0;
}

.content_list_item:nth-child(-n+3) {
  margin-top: 0;
}

.content_list_thumb {
  margin-bottom: 10px;
}

.content_list_thumb_img {
  width: 100%;
  height: 314px;

  -o-object-fit: cover;
     object-fit: cover;
}

.content_list_ttl {
  margin-top: 6px;
  word-break: break-all;
}

.content_list_ttl a {
  font-weight: bold;
}

.content_list_btmbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.content_list_txt {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: .05em;
  word-break: break-all;
}

.content_list_seeitem {
  margin-top: 13px;
  color: #fff;
  font-weight: bold;
  background-color: #000;
}

.content_list_seeitem_btn {
  width: 100%;
  padding: 13px 30px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  letter-spacing: .05em;
  background-color: #000;
}

.content_list_seeitem_btn::after {
  width: 15px;
  height: 6px;
  margin-top: -3px;
  border: solid #fff;
  border-width: 0 2px 1px 0;
  transform: skewX(45deg);
}

.content_more {
  margin-top: 60px;
}

/* 長文テキスト用レイアウト */
.is-longtext .content_list {
  margin-bottom: -22px;
}

.is-longtext .content_list::after {
  width: 100%;
  height: 22px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  content: "";
}

.is-longtext .content_list_item {
  margin: 0;
  padding: 20px 19px;
  box-sizing: content-box;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}

.is-longtext .content_list_item:nth-child(3n) {
  padding-right: 0;
  border-right: none;
}

.is-longtext .content_list_item:nth-child(3n+1) {
  padding-left: 0;
}

.is-longtext .content_list_item:nth-child(-n+3) {
  padding-top: 0;
}

.is-longtext .content_list_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  min-height: 2.4em;
  margin: 6px 0 8px;
  line-height: 1.75;
  text-align: center;
}

.is-longtext .content_list_ttl a {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
  word-break: break-all;
}

.is-longtext .content_list_txt {
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(2.28em * 5); /* 1行の高さ×最大行数 */
  -webkit-box-orient: vertical;
  line-height: 2.28;
  -webkit-line-clamp: 5;
  margin-top: 0;
}

.is-longtext .content_list_btmbox {
  flex-direction: column;
  justify-content: flex-start;
  position: static;
}

.is-longtext .content_list_readmore {
  margin-top: auto;
  text-align: center;
}

.is-longtext .content_list_readmore_btn {
  display: inline-block;
  padding-left: 10px;
  margin: 0;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  line-height: 2.28;
  letter-spacing: .05em;
  text-decoration: underline;
}

.is-longtext .content_list_readmore_btn::before, .is-longtext .content_list_readmore_btn::after {
  width: 6px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 2px;
  background-color: #000;
  content: "";
}

.is-longtext .content_list_readmore_btn:hover {
  text-decoration: none;
}

.is-longtext .content_list_readmore_btn::after {
  transform: rotate(90deg);
}

/* ============================================================

    product

============================================================ */

/* セクション全体のレイアウト */
.product {
  padding: 80px 0;
}

.lead + .product {
  border-top: none;
}

.product_item:not(:first-of-type) {
  margin-top: 80px;
}

.product_list_wrap {
  margin: 50px auto 0;
  text-align: center;
}

.product_more {
  margin-top: 60px;
}

/* 項目ごとのタイトル */
.product_subttl {
  padding: 18px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: .05em;
  border-top: 4px solid #000;
  border-bottom: 1px solid #000;
}

.product_subttl_small {
  display: block;
  color: #808080;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  letter-spacing: .05em;
}

/* 項目ごとのタブ */
.product_tab {
  justify-content: center;
  margin-top: 40px;
}

.product_tab_term {
  padding: 0;
  border-right: 1px solid #808080;
}

.product_tab_button {
  width: 180px;
  color: #ccc;
  text-align: center;
}

/* 項目ごとの商品一覧 */
.product_list {
  margin-top: 50px;
  text-align: left;

  gap: 20px;
}

.product_list .p-itemlist_item {
  width: 154px;
  margin-top: 0;
}

.product_list .p-itemlist_img img {
  width: 100%;
  height: auto;
  max-height: 185px;

  -o-object-fit: contain;
     object-fit: contain;
}

/* 項目ごとのもっと見るボタン */
.product_link {
  width: 320px;
  margin: 50px auto 0;
  color: #fff;
  font-weight: bold;
}

.product_link_btn {
  color: #fff;
  font-weight: bold;
  background-color: #000;
}

.product_link_btn::after {
  width: 15px;
  height: 6px;
  margin-top: -3px;
  border: solid #fff;
  border-width: 0 2px 1px 0;
  transform: skewX(45deg);
}

/* ============================================================

    blog

============================================================ */
.blog {
  padding: 80px 0;
  border-top: 1px solid #d9d9d9;
}

.lead + .blog {
  border-top: none;
}

.blog_list {
  display: flex;
  flex-wrap: wrap;
}

.blog_list_item {
  width: 314px;
  margin-top: 60px;
  margin-right: 40px;
}

.blog_list_item:nth-child(3n) {
  margin-right: 0;
}

.blog_list_item:nth-child(-n+3) {
  margin-top: 0;
}

.blog_list_btn {
  display: flex;
  flex-direction: column;
}

.blog_list_thumb {
  order: -1;
  margin-bottom: 10px;
}

.blog_list_thumb_img {
  width: 100%;
  height: 314px;

  -o-object-fit: cover;
     object-fit: cover;
}

.blog_list_ttl {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-top: 6px;
  font-weight: normal;
  line-height: 1.75;
  word-break: break-all;

  -webkit-line-clamp: 3;
}

/* ============================================================

    shop

============================================================ */
.shop {
  padding: 80px 0;
  background: #f2f2f2;
}

.lead + .shop {
  border-top: 1px solid #fff;
}

.shop_tab {
  display: flex;
  margin: -10px auto 50px;
  border-bottom: 1px solid #ccc;
}

.shop_tab_btn {
  display: block;
  margin-bottom: -1px;
  padding: 20px 20px 23px;
  position: relative;
  color: #808080;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .05em;
}

.shop_tab_btn:not(.is-active) {
  color: #808080;
}

.shop_tab_btn.is-active {
  color: #000;
}

.shop_tab_btn.is-active:hover {
  text-decoration: none;
  opacity: 1;
}

.shop_tab_btn.is-active::after {
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  content: "";
}

.shop_content_wrap {
  min-height: 358px;
}

.shop_content {
  display: flex;
  justify-content: space-between;
}

.shop_content_txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 494px;
}

.shop_content_ttl {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: .05em;
}

.shop_content_info_item {
  display: flex;
  margin-bottom: 7px;
}

.shop_content_info_item:last-child {
  margin-bottom: 0;
}

.shop_content_info_term {
  width: 5.5em;
  white-space: nowrap;
}

.shop_content_info_desc {
  width: calc(100% - 5.5em);
}

.shop_content_more {
  margin-top: auto;
  text-align: left;
}

.shop_content_more_btn {
  color: #fff;
  background: #000;
}

.shop_content_more_btn::after {
  width: 15px;
  height: 6px;
  margin-top: -3px;
  border: solid #fff;
  border-width: 0 2px 1px 0;
  transform: skewX(45deg);
}

.shop_content_img {
  order: -1;
}

.shop_content_img img {
  width: 480px;
  height: 358px;

  -o-object-fit: cover;
     object-fit: cover;
}

/* ============================================================

    other

============================================================ */
.other {
  padding: 80px 0 100px;
  border-top: 1px solid #d9d9d9;
}

.lead + .other, .shop + .other {
  border-top: none;
}

.other_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.other_list_item {
  width: 435px;
  margin-bottom: 40px;
}

.other_list_item:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.other_list_btn {
  display: flex;
  flex-direction: column;
  min-height: 160px;
  padding-left: 178px;
  box-sizing: border-box;
  position: relative;
}

.other_list_ttl {
  margin-bottom: 6px;
}

.other_list_txt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  -webkit-line-clamp: 4;
}

.other_list_thumb {
  position: absolute;
  top: 0;
  left: 0;
}

.other_list_thumb_img {
  width: 160px;
  height: 160px;

  -o-object-fit: cover;
     object-fit: cover;
}

.other_link {
  margin-top: 50px;
}

.other_link_btn {
  color: #fff;
  background: #000;
}

.other_link_btn::after {
  width: 15px;
  height: 6px;
  margin-top: -3px;
  border: solid #fff;
  border-width: 0 2px 1px 0;
  transform: skewX(45deg);
}

/* ============================================================

    contentmodal

============================================================ */

.contentmodal_cont {
  width: 1026px;
  height: auto;
  padding: 40px;
}

.contentmodal_cont_inner {
  display: flex;
  overflow: auto;
}

.contentmodal_cont_img {
  flex-shrink: 0;
  width: 314px;
  margin-right: 40px;
}

.contentmodal_cont_img img {
  width: 100%;
  height: 314px;

  -o-object-fit: contain;
     object-fit: contain;
}

.contentmodal_cont_txtwrap_txt {
  margin-top: 20px;
  line-height: 2.2;
}

.contentmodal_cont_txtwrap_moreitem {
  margin-top: 70px;
  text-align: left;
}

.contentmodal_cont_txtwrap_moreitem_btn {
  color: #fff;
  font-weight: bold;
  background-color: #000;
}

.contentmodal_cont_txtwrap_moreitem_btn::after {
  width: 15px;
  height: 6px;
  margin-top: -3px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  border-right-width: 2px;
  transform: skewX(45deg);
}

.contentmodal_cont_txtwrap_close {
  display: none;
}
