.m-heading is-en {
	font-size: 18px;
    letter-spacing: 0;
}


.tocco {
  max-width: 1200px;
  margin: 0px auto 0px;
  padding: 24px 16px;
  background-color:#fff;
  font-family: YuGoPr6N-M, 'Yu Gothic Medium', 'Yu Gothic', '游ゴシック', YuGothic, '游ゴシック体', Hiragino, 'Kaku Gothic ProN', 'Hiragino Sans', MSPGothic, Meiryo, sans-serif;
}


.suyunn {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  background-color:#e9e9f3;
  font-family: YuGoPr6N-M, 'Yu Gothic Medium', 'Yu Gothic', '游ゴシック', YuGothic, '游ゴシック体', Hiragino, 'Kaku Gothic ProN', 'Hiragino Sans', MSPGothic, Meiryo, sans-serif;
}


.na-title {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 100;
}



.na-title img {
	width: 150px;
}


.na-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* スマホ：3列 */
  gap: 12px;
}
.na-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.na-item img {
  width: 100%;
  /*aspect-ratio: 3 / 4;*/
  object-fit: cover;
}
.na-name {
  margin: 8px 0 4px;
  font-size: 9px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.na-price {
  font-size: 12px;
  color: #666;
}

/* PC時：6列 */
@media (min-width: 768px) {
  .na-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .na-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .new-arrival {
    padding: 32px;
  }
  .na-name {
    font-size: 14px;
  }
  .na-price {
    font-size: 13px;
  }
}




/* more */

.na-more {
  text-align: center;
  margin-top: 10px;
}

.na-more-btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #333;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.na-more-btn:hover {
  background-color: #555;
}





/* レコメンドスタイル */


 .banner-area {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* スマホ：2列 */
      gap: 16px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 16px;
    }

    .banner-item {
      border-radius: 0px;
      overflow: hidden;
      background-color: #fff;
    }

    .banner-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (min-width: 768px) {
      .banner-area {
        grid-template-columns: repeat(4, 1fr); /* PC：4列 */
      }
    }
	
	
	.na-title {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 100;
	margin-top: 0px;
}


	.recommend-title {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 100;
	margin-top: 50px;
}

.na-title h2 {
    padding-top: 0;
    padding-bottom: 30px;
    border: none;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}





/*特集エリア*/
.blog-area {
  padding: 40px 20px;
  background-color: #fff;
}

.blog-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* PC：2列 */
  gap: 0px;
  
  max-width: 1200px;
  margin: 0 auto;
}

.blog-item {
  background: #fff;
  border: 0px solid #ddd;
  padding: 20px;
}

.blog-link {
  display: flex;
  flex-direction: row; /* 常に横並びに */
  gap: 20px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}

.blog-img {
  width: 40%;
  object-fit: cover;
}

.blog-text {
  flex: 1;
}

.blog-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.blog-heading {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.blog-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ▼ スマホ：1列（でも横並びのまま） */
@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }

  /* blog-linkのflex-directionはそのままrowに */
  .blog-img {
    width: 40%;
    height: auto;
  }
}


@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-img {
    width: 40%;
    height: auto;
  }

  /* ▼ スマホで仕切り線を追加 */
  .blog-item {
    border-bottom: 1px solid #ddd;
    padding-bottom:20px;
    margin-bottom: 20px;
  }

  /* 最後のブログだけは仕切り線を非表示に */
  .blog-item:last-child {
    border-bottom: none;
  }
}


/************************** フッターエリア *************************/
/*******************************************************************/
/*******************************************************************/
/************************** フッターエリア *************************/
/*******************************************************************/
/*******************************************************************/
.footer-elia {
  background: #f5f5f5;
  padding: 40px 20px;
  font-family: sans-serif;
  color: #333;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ブランドロゴ */
.footer-logos {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
.footer-logos img {
  max-height: 50px;
}

/* フッターナビ横並び */
.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-wrap: wrap;
}
.footer-nav li {
  font-size: 14px;
  white-space: nowrap;
}
.footer-nav a {
  text-decoration: none;
  color: #333;
}

/* SNSアイコン */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-social img {
  width: 24px;
  height: 24px;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  font-size: 13px;
}

/* ▼ スマホ用レイアウト */
@media (max-width: 768px) {
  .footer-logos img {
    max-height: 30px;
  }
  .footer-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-logos {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}


/****************************もっと見るボタン****************************/
/****************************もっと見るボタン****************************/
/****************************もっと見るボタン****************************/
/****************************もっと見るボタン****************************/
.u-mt60 {
    margin-top: 60px;
}
.u-mt60 {
    margin-top: 40px;
	margin-bottom: 50px;
}
.l-MoreBtn {
    width: 100%;
    text-align: center;
}


.tp-MoreBtn {
    letter-spacing: 0.1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: solid 1px #747474;
    position: relative;
    width: 200px;
    padding: 10px 0 10px;
    font-size: 0.8rem;
    line-height: 1;
    margin: 0 auto;
}


.tp-MoreBtn::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    padding: 10px 10px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    font-size: 0.5rem;
}

.tp-MoreBtn {
    font-family: "JosefinSans-Regular", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
}

.tp-MoreBtn::after {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1;
    display: block;
    content: "▼";
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 0.5rem;
    pointer-events: none;
}


a {
    text-decoration: none;
    text-decoration-skip-ink: none;
    color: #333;
}
/****************************もっと見るボタン****************************/
/****************************もっと見るボタン****************************/
/****************************もっと見るボタン****************************/


.tp-Title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
}


.tp-Title > span {
    display: block;
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: normal;
    color: #747474;
}


.tp-Title > span, .tp-MoreBtn {
    font-family: "JosefinSans-Regular", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
}





/****************************インフォメーション　エリア****************************/

.info-area {
	margin: 0 auto;
  background-color: #fff;
  padding: 40px 20px 80px 20px;
  font-family: sans-serif;
  max-width: 480px;
}

.info-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.info-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 12px 0;
  border-bottom: 0px solid #ddd;
  font-size: 15px;
}

.info-list li a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
  flex: 1;
  text-align: left;
}

.info-list li a:hover {
  color: #888;
}

.info-date {
  color: #888;
  font-size: 13px;
  margin-right: 20px;
  min-width: 100px;
}






/* ▼ スマホ用スタイル ▼ */
@media (max-width: 768px) {
	
	.info-area {
  padding: 40px 20px 0px 20px;
}
	
	
  .info-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-date {
    margin-bottom: 5px;
  }
}





/*カテゴリーエリア*//*カテゴリーエリア*//*カテゴリーエリア*//*カテゴリーエリア*//*カテゴリーエリア*//*カテゴリーエリア*/

.category-area {
  padding: 0px 20px 120px;
  background-color: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.category-area h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* PC：5列 */
  gap: 20px;
  margin-top: 20px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0 10px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: opacity 0.3s;
  height: 50px;
}

.category-item:hover {
  opacity: 0.7;
}

.category-left {
  display: flex;
  align-items: center;
}

.category-left img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-right: 10px;
}

.category-arrow {
  font-size: 16px;
}

/* スマホ：2列表示 */
@media (max-width: 768px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .category-left img {
    width: 25px;
    height: 25px;
  }

  .category-item {
    font-size: 12px;
  }
}

/*カテゴリーエリア*//*カテゴリーエリア*//*カテゴリーエリア*//*カテゴリーエリア*//*カテゴリーエリア*//*カテゴリーエリア*/







/*サイト内*/

	._w100_area{
		margin-top: -180px;
	}
	#contents{
		max-width: 100%;
	}
	@media screen and (max-width: 768px) {
	  #main-column {
		padding: 0 0 !important;
	  }
	}
	.state_r{
		display: none;
	}
	#bread-crumb{
		display: none;
	}
	article h1{
		overflow: hidden;
		  height: 0;
		  border: none;
		  opacity: 0;
		  padding: 0;
	}
	#main-column h2{
		padding-top: 0;
		padding-bottom: 0px;
		border: none;
		font-weight: normal;
		font-family: 'Noto Serif JP', serif;
	}
	.state_r{
		display: none;
	}
	.info_page_top_area {
	  background: #fff;
	}
	
/*サイト内*/






   /*スマホで横スライドに切り替え*/
    <style>
    

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0.5rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }
	
	
	 .title-area {
    text-align: center;
    padding: 30px 10px 20px;
    font-size: 24px;
    font-weight: normal;
    color: #333;
    margin-bottom: 30px;
	font-family: 'Noto Serif JP', serif;
  }

    @media (min-width: 787px) {
      .container {
        grid-template-columns: repeat(5, 1fr);
        display: grid;
        overflow-x: unset;
      }
    }

    @media (max-width: 786px) {
      .container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
      }

      .card {
        flex: 0 0 80%;
        scroll-snap-align: start;
        margin-right: 0.5rem;
      }
    }

    .card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    /*.card:hover {
      transform: translateY(-5px);
    }*/

    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .card-body {
      padding: 1rem;
    }

    .card-title {
      font-weight: bold;
      font-size: 1.1rem;
      margin: 0.5rem 0 0.2rem;
    }

    .card-role {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 0.8rem;
    }

    .card-text {
      font-size: 0.95rem;
      color: #333;
      line-height: 1.5;
    }
	
	 .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.5rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
	  margin-top: 0px;
    }

    @media (min-width: 787px) {
      .container {
        grid-template-columns: repeat(5, 1fr);
        display: grid;
        overflow-x: unset;
      }
    }

    @media (max-width: 786px) {
      .container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
      }

      .card {
        flex: 0 0 80%;
        scroll-snap-align: start;
        margin-right: 0.5rem;
      }
    }

    .card {
      background: #fff;
      border-radius: 0px;
      overflow: hidden;
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    /*.card:hover {
      transform: translateY(-5px);
    }*/

    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .card-body {
      padding: 1rem;
    }

    .card-title {
      font-weight: bold;
      font-size: 1.1rem;
      margin: 0.5rem 0 0.2rem;
    }

    .card-role {
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 0.8rem;
    }

    .card-text {
      font-size: 0.95rem;
      color: #333;
      line-height: 1.5;
    }
	
	
@media (max-width: 786px) {
  .container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    padding: 1rem;
  }

  .card {
    flex: 0 0 auto;
    width: 140px; /* カード全体を小さく */
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card img {
    width: 120px;
    height: auto;
    display: block;
  }

  .card-body {
    padding: 0.5rem;
    text-align: center;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-role {
    font-size: 0.8rem;
  }

  .card-text {
    font-size: 0.85rem;
  }
}


.btn-box-row {
    margin: 0;
    padding: 20px 0 0 0;
}

.btn-box-row .btn-box {
    width: 290px;
    margin: 0 auto;
}

.btn-box-row .btn-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0 11px 0;
    background-color: #000;
    border-radius: 4px;
    color: #fff;
    font-size: 1.4rem;
    font-family: "Libre Baskerville", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}




	

   /*スマホで横スライドに切り替え*/
   
.logo-area-tocco {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 100;
    margin-top: 50px;
	background-color: #f6e8f1;
	padding: 50px;
}
@media (min-width: 768px) {
    .logo-area-tocco {
        font-size: 28px;
        margin-bottom: 24px;
		max-width: 1200px;
		margin: 0 auto;
    }
   
}
 .logo-area-suyunn {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 100;
    margin-top: 50px;
	background-color: #e7f1f5;
	padding: 50px;
}
@media (min-width: 768px) {
 .logo-area-suyunn {
        font-size: 28px;
        margin-bottom: 24px;
		max-width: 1200px;
		margin: 0 auto;
		
    }
     
   
}
   


</style>