/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
@font-face {
  font-family: "SF Pro";
  src: url("../font/SF-Pro.ttf") format("truetype");
}
*/

/* 共通部分
----------------------------------------------------------------- */

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* フォントファミリー */
html {
  font-family: aktiv-grotesk, yu-gothic-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
  line-height: 1.85;
  letter-spacing: 0.15em;
  color: #202020;
  -webkit-font-smoothing: antialiased;
}
body {
  position: relative;
  font-size: 1.6rem;
  overflow-wrap: break-word;
}

/* 文字リンク色 */
a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  outline: none;
}
a:link {
  text-decoration: none;
  color: #212121;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:visited {
  text-decoration: none;
  color: #212121;
}
a:active {
  text-decoration: none;
  color: #212121;
}
a:hover {
  text-decoration: none;
  color: #212121;
}
a.no-click {
  pointer-events: none;
}

/* p justify */
p {
  margin: 0;
  padding: 0;
  /*
	text-align: justify;
	text-justify: auto;
  */
}
i {
  font-style: italic;
}
strong {
  font-weight: 600;
}
span.ruby {
  font-size: 75%;
}
img {
  line-height: 0;
  vertical-align: bottom;
}
/* 見出しリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.85;
}
/* リストリセット */
ul,
ol {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}

/* フォームリセット */
input[type="text"],
textarea {
  font-size: inherit;
}
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

/* 英文 */
/*
.en_txt {
  font-family: "SF Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}
*/
.jp_min {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

/* PC表示時 */
@media screen and (min-width: 750px) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.5;
  }

  .sp {
    display: none;
  }
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  html {
    line-height: 1.85;
    letter-spacing: 0.07em;
  }
  body {
    font-size: 1.4rem;
  }

  .pc {
    display: none;
  }
}

/* 共通＿インナーブロック
----------------------------------------------------------------- */
.cmnInner {
  width: 100%;
  max-width: calc(1200px + (25px * 2));
  margin: 0 auto;
  padding: 96px 25px 0;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  .cmnInner {
    max-width: 100%;
    padding: 0px 25px 0;
  }
}

/* 共通＿ボタン
----------------------------------------------------------------- */
.cmnBtn {
}
.cmnBtn a {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: auto;
  margin: 0;
  padding: 16px 42px;
  border: #b7b7b7 1px solid;
  border-radius: 3px;
  color: #707070;
  transition: all 0.3s ease;
}
/* スマホ表示時 */
@media screen and (min-width: 750px) {
  .cmnBtn a:hover {
    background: #707070;
    border: #707070 1px solid;
    color: #fff;
    opacity: 1;
  }
  .cmnBtn a:hover img {
    filter: brightness(0) invert(1);
  }
}

/* 共通＿ヘッダー
----------------------------------------------------------------- */
:root {
  --header-height: 60px;
}
header {
  width: 100%;
  position: fixed;
  z-index: 9999;
}
header .headerInner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  position: relative;
  background: rgba(33, 33, 33, 0.4);
}
header .headerInner .ttl {
  width: fit-content;
  line-height: 0;
}
header .headerInner .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  cursor: pointer;
}
header .headerInner .hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
header .menu {
  width: 100%;
  height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
header .menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
header .menu nav {
  display: block;
  width: 375px;
  height: 100%;
  padding: 96px 100px 96px;
  position: absolute;
  top: 0;
  right: -375px;
  background: #393939;
  transition: right 0.3s ease-in-out;
}
header .menu nav .close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
header .menu nav .close::before,
header .menu nav .close::after {
  content: "";
  width: 141%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
header .menu nav .close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
header .menu nav .close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
header .menu nav .items {
  width: 175px;
}
header .menu nav .items:not(:first-of-type) {
  margin-top: 30px; /* 36px */
  padding-top: 30px; /* 36px */
  border-top: #848484 solid 1px;
}
header .menu nav .items .item {
  width: 100%;
  margin-top: 30px;
  font-size: 2rem;
  line-height: 1;
}
header .menu nav .items .item:first-of-type {
  margin-top: 0;
}
header .menu nav .items .item a {
  display: block;
  color: #fff;
}
header .menu nav .items .item .c-items {
  margin-top: 24px;
  padding-left: 10px;
}
header .menu nav .items .item .c-items .c-item {
  margin-top: 10px;
  font-size: 1.6rem;
}
header .menu nav .items .item .c-items .c-item:first-of-type {
  margin-top: 0;
}
header .menu nav .items .item .c-items .c-item a {
  display: flex;
}
header .menu nav .items .item .c-items .c-item a::before {
  content: "-";
  flex-shrink: 0;
  display: block;
  margin-right: 0.5em;
}
header .menu nav .items .item.icon a {
  display: flex;
  align-items: center;
}
header .menu nav .items .item.icon a span {
  margin-right: 0.7em;
}

header .menu.open {
  pointer-events: all;
}
header .menu.open::before {
  opacity: 0.4;
}
header .menu.open nav {
  right: 0;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  header .headerInner {
    justify-content: flex-start;
    height: 50px;
  }
  header .headerInner .ttl {
    width: 102px;
    height: 16px;
  }
  header .headerInner .ttl img {
    width: 100%;
    height: 100%;
  }
  header .headerInner .hamburger {
    height: 18px;
    right: 20px;
  }
  header .menu nav .close {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
  }
  header .menu nav .items:not(:first-of-type) {
    margin-top: 24px;
    padding-top: 24px;
  }
  header .menu nav .items .item {
    margin-top: 24px;
    font-size: 1.8rem;
    line-height: 1;
  }
  header .menu nav .items .item .c-items .c-item {
    font-size: 1.4rem;
  }
}

/* 共通＿フッター
----------------------------------------------------------------- */
footer {
  width: 100%;
  padding: 144px 0 48px;
  background: #fff;
}
footer .footerInner {
  margin: 0 auto;
  padding: 0 3.35%;
}
footer .ttl_box {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  border-top: #707070 1px solid;
  border-bottom: #707070 1px solid;
}
footer .ttl_box .ttl {
}
footer .ttl_box .ttl a {
  display: block;
  line-height: 0;
}
footer .ttl_box .snsIcon {
  margin-left: 50px;
  width: fit-content;
  height: auto;
}
footer .ttl_box .snsIcon a {
  display: block;
  line-height: 0;
}
footer .ttl_box .snsIcon a img {
}

footer .menu {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 24px 0;
}
footer .menu .items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
}
footer .menu .items:not(:last-of-type) {
  margin-right: 50px;
  padding-right: 50px;
  border-right: #707070 1px solid;
}
footer .menu .items .item {
  font-size: 1.4rem;
  line-height: 1.8;
}
footer .menu .items .item:not(:first-of-type) {
  margin-left: 50px;
}

footer .copyright {
  margin-top: 48px;
  font-size: 1.2rem;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  footer {
    padding: 96px 0 24px;
  }
  footer .footerInner {
    padding: 0 20px;
  }
  footer .ttl_box {
    padding: 16px 0;
  }
  footer .ttl_box .ttl {
    width: 102px;
  }
  footer .ttl_box .ttl a img {
    width: 100%;
    height: 100%;
  }
  footer .ttl_box .snsIcon {
    margin-left: 24px;
  }
  footer .ttl_box .snsIcon a img {
    width: 18px;
    height: 18px;
  }

  footer .menu {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-template-rows: auto auto;
    align-items: flex-start;
    gap: 0 4%;
    margin-top: 24px;
  }
  footer .menu .items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  footer .menu .items:not(:last-of-type) {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  footer .menu .items:nth-of-type(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 5;
  }
  footer .menu .items:nth-of-type(1) .item:not(:first-of-type) {
    margin-top: 8px;
  }
  footer .menu .items:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  footer .menu .items:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 14px;
    /* padding-top: 4px;
    padding-bottom: 4px;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4; */
  }
  footer .menu .items:nth-of-type(4) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    margin-top: 14px;
  }
  footer .menu .items .item:not(:first-of-type) {
    margin-top: 2px; /* 14px */
    margin-left: 0;
  }

  footer .copyright {
    margin-top: 30px;
  }
}

/* 共通＿メイン
----------------------------------------------------------------- */
main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

main section {
  background: #fff;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
}

/* 共通＿セクションタイトル
----------------------------------------------------------------- */
main .cmnTtl {
  width: 100%;
  height: auto;
  padding: 0;
  line-height: 0;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  main .cmnTtl {
    width: auto;
    height: 20px;
  }
  main .cmnTtl img {
    width: auto;
    height: 100%;
  }
}

/* 共通＿子ページタイトル
----------------------------------------------------------------- */
.detail main .cmnPageTtl {
  display: flex;
  justify-content: center;
  align-content: stretch;
  width: 100%;
  height: 580px;
  position: relative;
  z-index: -1;
}
.detail main .cmnPageTtl .img_box {
  width: 100%;
  height: 580px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.detail main .cmnPageTtl .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.detail main .cmnPageTtl .ttl_box {
  padding-bottom: 60px;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}
.detail main .cmnPageTtl .ttl_box .ttl {
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  .detail main .cmnPageTtl {
    height: 100svh;
  }
  .detail main .cmnPageTtl .img_box {
    height: 100svh;
  }
}

/* 共通＿子ページ　アンカーリンク
----------------------------------------------------------------- */
.detail main .cmnAnchorLink {
  width: 100%;
  padding-top: 48px;
  background: #fff;
}
.detail main .cmnAnchorLink .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  max-width: calc(1200px + (25px * 2));
  margin: 0 auto 0;
  padding: 0 25px;
}
.detail main .cmnAnchorLink .items .item {
  margin-right: 50px;
  padding-right: 50px;
  border-right: #707070 solid 1px;
}
.detail main .cmnAnchorLink .items .item:last-of-type {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.detail main .cmnAnchorLink .items .item a {
  display: block;
  width: 100%;
  height: 100%;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  .detail main .cmnAnchorLink {
    margin-top: 30px;
  }
  .detail main .cmnAnchorLink .items {
    gap: 16px 0;
  }
  .detail main .cmnAnchorLink .items .item {
    width: 50%;
    margin: 0;
    padding: 0;
  }
  .detail main .cmnAnchorLink .items .item:not(:nth-of-type(odd)) {
    border: none;
  }
  .detail main .cmnAnchorLink .items .item a {
    text-align: center;
  }
}

/* --------------------------------------------------------------

トップページ

----------------------------------------------------------------- */

/* メインビジュアル
----------------------------------------------------------------- */
#top #mainVisual {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100svh;
  position: relative;
  z-index: -1;
}
#top #mainVisual .img_box {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
#top #mainVisual .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#top #mainVisual .ttl_box {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  position: relative;
  text-align: center;
  z-index: 2;
}
#top #mainVisual .ttl_box .ttl {
  line-height: 0;
}
#top #mainVisual .ttl_box .txt {
  width: fit-content;
  margin-top: 20px;
  color: #fff;
  z-index: 2;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #mainVisual .ttl_box .ttl {
    width: 220px;
    margin: 0 auto;
  }
  #top #mainVisual .ttl_box .ttl img {
    width: 100%;
  }
}

/* 動画エリア
----------------------------------------------------------------- */
#top #movie {
  width: 100%;
  height: 100svh;
  position: relative;
  background: #fff;
}
#top #movie .movie_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#top #movie .movie_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#top #movie .txt_box {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  justify-content: flex-start;
  align-content: flex-end;
  width: 100%;
  max-width: calc(1200px + (25px * 2));
  height: 100%;
  margin: 0 auto;
  padding: 0 25px 72px;
  position: relative;
  z-index: 2;
}
#top #movie .txt_box .catch {
  font-size: 2.8rem;
}
#top #movie .txt_box .txt {
  margin-top: 24px;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #movie .txt_box {
    padding-bottom: 30px;
  }
  #top #movie .txt_box .catch {
    font-size: 2.1rem;
  }
}

/* News Categroy
----------------------------------------------------------------- */
#news_box {
  padding-top: 100px;
}
#news_box .inner {
  width: 1024px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  /* background: linear-gradient(#CCCCD5, 10%, #DDDDE6); */
  border-radius: 10px;
  background: #f0f0f0;
  text-align: center;
}
/* タイトル */
#news_box .inner .ttl_box {
  width: fit-content;
  margin: 0 auto;
  padding: 0 10%;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
}
#news_box .inner .ttl_box .title {
  font-size: 2rem;
}
/* テキスト */
#news_box .inner .txt_box {
  padding-top: 2.5rem;
  line-height: 1.75;
}
#news_box .inner .txt_box .text {
  margin-bottom: 2rem;
}
/* 実施日 */
#news_box .inner .day_box {
  margin-bottom: 3rem;
}
#news_box .inner .day_box .title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-items: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  padding: 0 3rem;
  font-size: 1.7rem;
}
#news_box .inner .day_box .title::before {
  content: "";
  width: 10px;
	height: 10px;
  margin-right: 1.5rem;
  border-top: 1px solid #382E1F;
  border-left: 1px solid #382E1F;
  transform: rotate(-45deg);
}
#news_box .inner .day_box .title::after {
  content: "";
  width: 10px;
	height: 10px;
  margin-left: 1rem;
  border-top: 1px solid #382E1F;
  border-left: 1px solid #382E1F;
  transform: rotate(130deg);
}
#news_box .inner .day_box .day {
  margin-top: 0.5rem;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.1;
}
#news_box .inner .day_box .day .en {
  font-weight: 500;
}
#news_box .inner .day_box .day .text {
  font-size: 1.6rem;
  /* font-weight: normal; */
}
#news_box .inner .day_box .day .dow {
  font-size: 18px;
  font-weight: bold;
  font-feature-settings: "palt";
}
/* 改定価格 */
#news_box .inner .price_box {
  display: grid;
  grid-template-columns: 30px 1fr 1fr 30px;
  width: 65%;
  margin: 0 auto;
}
#news_box .inner .price_box::before,
#news_box .inner .price_box::after {
  content: '';
	width: 30px;
	height: auto;
}
#news_box .inner .price_box::before {
  grid-column: 1;
  grid-row: 1;

  border-top: 1px solid #b7b7b7;
  border-left: 1px solid #b7b7b7;
  border-bottom: 1px solid #b7b7b7;
}
#news_box .inner .price_box::after {
  grid-column: 4;
  grid-row: 1;

  border-top: 1px solid #b7b7b7;
  border-right: 1px solid #b7b7b7;
  border-bottom: 1px solid #b7b7b7;
}
#news_box .inner .price_box .price_item_a,
#news_box .inner .price_box .price_item_b {
  padding: 2rem 0;
  line-height: 1.3;
}
#news_box .inner .price_box .product_name {
  font-weight: bold;
}
#news_box .inner .price_box .new_price {
  font-size: 22px;
  font-weight: 500;
}
#news_box .inner .price_box .ex_tax {
  font-size: 12px;
  font-feature-settings: "palt";
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #news_box {
    padding: 3rem 2rem;
  }
  #news_box .inner {
    width: 100%;
    padding: 5rem 2.5rem;
  }
  /* タイトル */
  #news_box .inner .ttl_box .title {
    font-size: 1.89rem;
  }
  /* 実施日 */
  #news_box .inner .day_box .day .text {
    font-weight: normal;
  }
  /* 改定価格 */
  #news_box .inner .price_box {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    width: 100%;  
  }
  #news_box .inner .price_box::before,
  #news_box .inner .price_box::after {
	  width: 20px;
  }
  #news_box .inner .price_box::before {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  #news_box .inner .price_box::after {
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
  }
  #news_box .inner .price_box .price_item_a {
    grid-column: 2;
    grid-row: 1;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
  #news_box .inner .price_box .price_item_b {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0;
    padding-bottom: 2rem;
  }
  #news_box .inner .price_box .product_name {
    font-size: 1.6rem;
    font-weight: bold;
  }
}  
/* 751px以上1350px以下 */
@media (min-width: 751px) and (max-width: 1350px) {
  #news_box {
    padding: 5rem 2rem;
  }
  #news_box .inner {
    width: 100%;
    padding: 5rem 2.5rem;
  }  
  /* 改定価格 */
  #news_box .inner .price_box {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    /* width: 80%;   */
  }
  #news_box .inner .price_box::before,
  #news_box .inner .price_box::after {
	  width: 30px;
  }
  #news_box .inner .price_box::before {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  #news_box .inner .price_box::after {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  #news_box .inner .price_box .price_item_a {
    grid-column: 2;
    grid-row: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #news_box .inner .price_box .price_item_b {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0;
    padding-bottom: 2rem;
  }
}


/* Item Category
----------------------------------------------------------------- */
#top #itemCategory {
  padding-top: 96px;
  padding-bottom: 48px;
}
#top #itemCategory .ttl_box {
  width: 100%;
  max-width: calc(1200px + (25px * 2));
  margin: 0 auto;
  padding: 0 25px;
}
#top #itemCategory .ttl_box .cmnTtl {
  line-height: 0;
}
#top #itemCategory .item_box {
  width: 100%;
  max-width: calc(1200px + (25px * 2));
  margin: 53px auto 0;
  padding: 0 25px;
}
#top #itemCategory .item_box .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 48px;
  gap: 60px 1.33%;
}
#top #itemCategory .item_box .items .item {
  width: 24%;
}
#top #itemCategory .item_box .items .item a {
  display: block;
  width: 100%;
  height: 100%;
}
#top #itemCategory .item_box .items .item a img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
}
#top #itemCategory .item_box .items .item a .name {
  margin-top: 60px;
  text-align: center;
}

#top #itemCategory .column_box {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  width: 100%;
  height: 700px;
  margin-top: 144px;
  border-radius: 10px;
  background: #f0f0f0;
  overflow: hidden;
}
#top #itemCategory .column_box .img_box {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100%;
  height: auto;
  overflow: hidden;
}
#top #itemCategory .column_box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#top #itemCategory .column_box .txt_box {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  align-self: center;
  padding: 0 18% 0 10%;
}
#top #itemCategory .column_box .txt_box .ttl {
  line-height: 0;
}
#top #itemCategory .column_box .txt_box .txt {
  margin-top: 48px;
}
#top #itemCategory .column_box .txt_box .cmnBtn {
  margin-top: 132px;
}
#top #itemCategory .column_box .txt_box .cmnBtn a {
  color: #000;
}

/* 1200pxより大きい時表示時 */
/*
@media screen and (min-width: 1440px) {
  #top #itemCategory .item_box {
    width: 100%;
    max-width: 100%;
    padding-left: 8.35%;
    padding-right: 8.35%;
  }
}
*/

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #itemCategory {
    padding-top: 72px;
    padding-bottom: 48px;
  }
  #top #itemCategory .item_box {
    margin: 48px auto 0;
  }
  #top #itemCategory .item_box .items {
    margin-top: 48px;
    gap: 60px 2%;
  }
  #top #itemCategory .item_box .items .item {
    width: 49%;
    margin-right: 0;
  }
  #top #itemCategory .item_box .items .item a .name {
    margin-top: 24px;
  }

  #top #itemCategory .column_box {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    width: 100%;
    height: auto;
    margin-top: 96px;
  }

  #top #itemCategory .column_box .txt_box {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding: 48px 25px 38px;
  }
  #top #itemCategory .column_box .txt_box .txt {
    margin-top: 14px;
  }
  #top #itemCategory .column_box .txt_box .cmnBtn {
    width: 100%;
    margin-top: 48px;
  }
  #top #itemCategory .column_box .txt_box .cmnBtn a {
    width: 100%;
  }
}

/* Collection
----------------------------------------------------------------- */
#top #collection {
  padding-top: 96px;
  padding-bottom: 72px;
}

#top #collection .cmnTtl {
  max-width: calc(1200px + (25px * 2));
  margin: 0 auto;
  padding: 0 25px;
}
#top #collection .items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 48px;
}
#top #collection .items .item {
  aspect-ratio: 3 / 4;
  width: calc((100% - (2% * 3)) / 4);
  overflow: hidden;
}
#top #collection .items .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#top #collection .items .item a .photo {
  width: 100%;
  height: 100%;
  position: relative;
}
#top #collection .items .item a .photo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(80, 80, 80, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#top #collection .items .item a .photo img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  object-position: 50% 50%;
}
#top #collection .items .item a .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #collection {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  #top #collection .items {
    flex-wrap: wrap;
    margin-top: 48px;
    gap: 30px 4%;
  }
  #top #collection .items .item {
    width: calc((100% - (4% * 1)) / 2);
  }
  #top #collection .items .item a .txt {
    height: 16px;
  }
  #top #collection .items .item a .txt img {
    width: auto;
    height: 100%;
  }
}

/* PC表示時 */
@media screen and (min-width: 750px) {
  #top #collection .items .item a:hover {
    opacity: 1;
  }
  #top #collection .items .item a:hover .photo::after {
    opacity: 1;
  }
}

/* Benefit
----------------------------------------------------------------- */
#top #benefit {
}
#top #benefit .cmnInner {
  display: grid;
  grid-template-columns: 45% 45%;
  grid-template-rows: auto 1fr;
  gap: 0 5%;
}
#top #benefit .img_box {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
#top #benefit .img_box img {
  width: 100%;
  height: auto;
}
#top #benefit .ttl_box {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
#top #benefit .ttl_box .txt {
  margin-top: 12px;
  font-size: 1.2rem;
}

#top #benefit .articles {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin-top: 54px;
}
#top #benefit .articles article:not(:first-of-type) {
  margin-top: 54px;
}
#top #benefit .articles article .ttl {
  font-size: 1.6rem;
  font-weight: 600;
  color: #707070;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #benefit {
    padding-top: 72px;
    padding-bottom: 0;
  }

  #top #benefit .cmnInner {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, auto);
    gap: 0 5%;
    padding-left: 0;
    padding-right: 0;
  }

  #top #benefit .img_box {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin-top: 54px;
  }
  #top #benefit .ttl_box {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-left: 36px;
    padding-right: 36px;
  }
  #top #benefit .articles {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-top: 36px;
    padding-left: 36px;
    padding-right: 36px;
  }
  #top #benefit .articles article:not(:first-of-type) {
    margin-top: 24px;
  }
  #top #benefit .articles article .ttl {
    font-size: 1.4rem;
    color: #707070;
  }
}

/* Feature
----------------------------------------------------------------- */
#top #feature {
}
#top #feature .articles {
}
#top #feature .articles article {
  display: flex;
  margin-top: 60px;
}
#top #feature .articles article:first-of-type {
  margin-top: 0;
}
#top #feature .articles article .txt_box {
  width: 50%;
  padding-right: max(9.8%, 25px);
}
#top #feature .articles article .txt_box .txt {
  margin-top: 30px;
}
#top #feature .articles article .img_box {
  aspect-ratio: 3 / 2;
  width: 50%;
  height: auto;
  overflow: hidden;
}
#top #feature .articles article .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #top #feature {
    padding-top: 72px;
  }

  #top #feature .cmnInner {
    max-width: 100%;
    padding: 0;
  }

  #top #feature .articles article {
    display: block;
  }

  #top #feature .articles article .txt_box {
    width: 100%;
    max-width: calc(1200px + (25px * 2));
    padding: 0 25px;
  }
  #top #feature .articles article .txt_box .cmnTtl {
    height: 26px;
  }

  #top #feature .articles article .txt_box .txt {
    margin-top: 30px;
  }
  #top #feature .articles article .img_box {
    width: 100%;
    margin-top: 24px;
  }
}

/* --------------------------------------------------------------

コレクション

----------------------------------------------------------------- */

/* ページタイトル
----------------------------------------------------------------- */

/* コレクションリスト
----------------------------------------------------------------- */
#collection .collectionList {
  padding-top: 96px;
  padding-bottom: 48px;
}
#collection .collectionList .ttl_box {
  width: 100%;
  max-width: calc(1200px + (25px * 2));
  margin: 0 auto;
  padding: 0 25px;
}
#collection .collectionList .ttl_box .ttl {
  font-size: 2.4rem;
  font-weight: 200;
}

#collection .collectionList .items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  gap: 24px 1.25%;
}
#collection .collectionList .items .item {
  aspect-ratio: 347 / 520;
  width: calc((100% - (1.25% * 3)) / 4);
}
#collection .collectionList .items .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #collection .cmnPageTtl {
    margin-bottom: 12px;
  }
  #collection .collectionList {
    padding-top: 60px;
  }
  #collection .collectionList .items {
    margin-top: 30px;
    gap: calc(100vw * 125 / 100 / 100) 1.25%;
  }

  #collection .collectionList .items .item {
    aspect-ratio: 347 / 520;
    width: calc((100% - (1.25% * 1)) / 2);
  }
}

/* --------------------------------------------------------------

アイテム

----------------------------------------------------------------- */

/* ページタイトル
----------------------------------------------------------------- */

/* アイテムリスト
----------------------------------------------------------------- */
#item .itemList {
  width: 100%;
  max-width: calc(1200px + (25px * 2));
  margin: 0 auto;
  padding: 72px 25px 72px;
}
#item .itemList .ttl {
  font-size: 2.4rem;
  font-weight: 400;
}
#item .itemList .copy {
  width: fit-content;
  margin-top: 26px;
  padding: 7px 12px;
  background: #b7b7b7;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
}
#item .itemList ul + .copy {
  margin-top: 58px;
}

#item .itemList .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 48px;
  gap: 60px calc((100% - (23% * 4)) / 3);
}
#item .itemList .items .item {
  width: 23%;
}
#item .itemList .items .item a {
  display: block;
}
#item .itemList .items .item a .img_box {
  aspect-ratio: 158 / 212;
  width: 100%;
  height: auto;
  position: relative;
}
#item .itemList .items .item a .img_box img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}
#item .itemList .items .item a .img_box img.def {
  z-index: 2;
}
#item .itemList .items .item a .img_box img.hover {
  z-index: 1;
}
#item .itemList .items .item a .txt_box {
  margin-top: 14px;
}
#item .itemList .items .item a .txt_box .size {
  display: flex;
}
#item .itemList .items .item a .txt_box .size span {
  display: inline-block;
  margin-top: 12px;
}
#item .itemList .items .item a .txt_box .size span:first-of-type {
  margin-right: 1em;
}
#item .itemList .items .item a .txt_box .price {
  margin-top: 8px;
}
#item .itemList .items .spacer {
  width: 100%;
}

/* 1200pxより大きい時表示時 */
@media screen and (min-width: 1440px) {
  #item .cmnAnchorLink .items,
  #item .itemList {
    width: 100%;
    max-width: 100%;
    padding-left: 8.35%;
    padding-right: 8.35%;
  }
}

/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #item .itemList {
    padding: 72px 25px 0;
  }
  #item .itemList .ttl {
    font-size: 2rem;
  }
  #item .itemList .copy {
    width: 100%;
    margin-top: 9px;
    padding: 7px 12px;
    font-size: 1.3rem;
    text-align: center;
  }
  #item .itemList ul + .copy {
    margin-top: 60px;
  }
  #item .itemList .items .spacer {
    display: none;
  }
  #item .itemList .items {
    margin-top: 48px;
    gap: 60px 2%;
  }
  #item .itemList .items .item {
    width: 49%;
    margin-right: 0;
  }
}

/* PC表示時 */

@media screen and (min-width: 750px) {
  #item .itemList .items .item a:hover {
    opacity: 1;
  }
  #item .itemList .items .item a .img_box img {
    display: block;
    width: 100%;
    height: 100%;
  }
  #item .itemList .items .item a:hover .img_box img.def {
    opacity: 0;
  }
  #item .itemList .items .item a:hover .img_box img.hover {
    opacity: 1;
  }
}

/* ONLINE CATALOG
----------------------------------------------------------------- */
#bnr_online_catalog {
  padding-top: 198px;
}
#bnr_online_catalog .cmnInner {
  margin-top: 0;
  padding-top: 0;
}
#bnr_online_catalog a {
  display: block;
  max-width: 780px;
  margin: 0 auto;
}
#bnr_online_catalog a img {
  width: 100%;
  max-width: 780px;
}
/* スマホ表示時 */
@media screen and (max-width: 750px) {
  #bnr_online_catalog {
    padding-top: 120px;
  }
}
