@charset "UTF-8";

/*-- ---------- --*/
/*-- layout css --*/
/*-- ---------- --*/

/*-- l-header --*/
header{
    position: fixed;
    left:0;
    right:0;
    top:0;
    background-color: #fff;
    z-index: 1000;
}
header > .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:210px;
    max-width: initial;
    padding-left: clamp(var(--pad-min),calc(var(--pad-min) + (var(--pad-max) - var(--pad-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),var(--pad-max));
    padding-right: clamp(var(--pad-min),calc(var(--pad-min) + (var(--pad-max) - var(--pad-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),var(--pad-max));
}
/*-- header__top --*/
.header__top{
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem 0 0;
}
/*-- header__bottom--*/
.header__bottom{
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 0 2rem;
}
/*-- 検索窓 --*/
.area_search_header{
    position: absolute;
    bottom:10px;
    right:0px;
    margin: 0;
}
.area_search_header #search-toggle{
    font-size: 14px;
    border:1px solid #000;
    color:#000;
    padding: 5px 25px;
    border-radius: 20px;
}
.area_search_header #search-toggle i{
    margin-right: 5px;
}
/* ポップアップ初期状態は非表示 */
.search-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* 半透明背景 */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
/* 検索フォーム部分 */
.search-popup form {
    position: absolute;
    top:0;
    left:0;
    right:0;
    width:100%;
    background: #fff;
    height:210px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}
/* 検索入力 */
.search-popup .search__area{
    display: flex;
    align-items: center;
    justify-content:center;
    width: 80%;
    background-color: #efefef;
    margin: 0 auto;
    padding: 12px 30px 12px 5px;
    border:0px solid #000;
    border-radius: 0px;
}
.search-popup div label{display: none;}
.search-popup input[type="text"] {
    order:2;
    width: calc(100% - 40px);
    padding: 0px 5px;
    font-size: 14px;
}
.search-popup button {
    display: flex;
    align-items: center;
    justify-content: center;
    order:1;
    padding: 5px 10px;
    font-size: 18px;
    width:40px;
}
/* アイコンの大きさを調整 */
.search-submit i {
    font-size: 16px;
}
/* 閉じるボタン */
#search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    z-index: 10;
}

/*-- ナビゲーション --*/
/* ===== 親（子カテゴリ）横並び ===== */
.header__bottom .nav-products__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 親アイテム */
.header__bottom .nav-products__item {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0px;
}
.header__bottom .nav-products__item::after{
    content:'';
    display:block;
    width:2px;
    height:20px;
    background: #000;
}
/* 孫カテゴリ（初期非表示） */
.header__bottom .nav-products__sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    padding: 8px 0;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 1000;
}
/* hover で表示 */
.header__bottom .nav-products__item:hover .nav-products__sub {
    display: block;
}
/* リンク */
.header__bottom .nav-products a {
    font-size: 1.6rem;
    line-height: 1.3;
    color:#000;
    display: block;
    padding: 8px;
    white-space: nowrap;
    text-decoration: none;
    margin:0 12px;
}
.header__bottom .nav-products__item:last-child a{
    margin-right: 0px;
}
.header__bottom .nav-products__item:last-child::after{
    display: none;
    margin-right: 0px;
}
/* 孫リンク */
.header__bottom .nav-products__sub li{
    margin: 10px 0;
}
/* ===== 空カテゴリ ===== */
.header__bottom .is-empty > a {
    opacity: .7;
}
/*-- ヘッダー　競技ゴルフボタン --*/
.header__tournament__hum{display: none;}
.header__tournament{
    margin-left: auto;
    margin-right: 20px;
    padding-right: 20px;
    border-right:2px solid #000;
    display: flex;
    align-items: flex-end;
    height:100%;
}
.header__tournament a{
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    padding: 5px 40px;
    border:1px solid #4b4646;
    text-decoration: none;
    height:100%;
}
/*-- ボタン --*/
.header__bottom .shop-buttons{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.header__bottom .shop-buttons a{
    padding: .5rem 2rem;
}
.burger-btn {
    display: none;
}
/*-- ロゴ --*/
.l-header .area_logo_header{
    position: relative;
    padding:0;
    display: flex;
    align-items: center;
}
.l-header .area_logo_header img{
    width:30rem;
}
/*-- ドロワー --*/
.burger-btn,
.header-drawer {
	display: none;
}
.drawer-search{
	display: none;
}
@media (max-width:1400px){
/* リンク */
.header__bottom .nav-products a {
    font-size: 1.4rem;
    padding: 8px;
    margin:0 10px;
}
}
@media (max-width:1235px){
header > .container{
    height:100px;
}
.header__top{
    padding: 0;
    align-items: center;
    justify-content:center;
}
/*-- 検索窓 --*/
.area_search_header{
    position: relative;
    bottom:0px;
    right:0px;
    margin: 0;
}
/*-- ドロワー --*/
.header__bottom {
	display: none;
}
.burger-btn {
	display: block;
}
.header-drawer {
	display: block;
	position: fixed;
	inset: 0;
	z-index: 1000;
    margin: 0;
}
.nav-wrapper {
    height: 100vh;
    overflow-y: hidden; /* body.noscroll で背景止める */
	transform: translateX(-100%);
	transition: transform .4s ease;
}
.nav-wrapper.slide-in {
	transform: translateX(0);
}
.open__bg {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.5);
	opacity: 0;
	transition: opacity .3s;
	pointer-events: none;
}
.active__bg {
	opacity: 1;
	pointer-events: auto;
}
body.noscroll {
  overflow: hidden; /* 背景スクロール停止 */
}
.header-drawer__inner{
    position: relative;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width:100%;
    height:100%;
    margin: 0;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 0;
    transition:all .5s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* スマホで慣性スクロール */
    z-index: 2;
}
/*-- ナビゲーション --*/
.nav-products .nav-products__list {
    flex-direction: column;
}
/* 親アイテム */
.nav-products .nav-products__item {
    position: relative;
    display: block;
    margin: 0px;
}
.nav-products .nav-products__item::after{
    content:'';
    display:none;
}
/* 孫カテゴリ（初期非表示） */
.nav-products .nav-products__sub {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    min-width: initial;
    background: #fff;
    padding: 0 0 0 1em;
    list-style: none;
    box-shadow: inherit;
    z-index: 1;
}
/* リンク */
.nav-products a {
    color:#000;
    display: block;
    padding: 8px;
    white-space: nowrap;
    text-decoration: none;
    margin:0;
}
.nav-products .nav-products__item:last-child::after{
    display: none;
    margin-right: 0px;
}
/* 孫リンク */
.nav-products .nav-products__sub a {
    padding: 8px 16px;
}
/* ===== 空カテゴリ ===== */
.nav-products .is-empty > a {
    opacity: .7;
}

/* =========================
   アコーディオン（ドロワー内ナビ）
========================= */
.header-drawer .nav-products .nav-products__sub {
	display: none;
}
.header-drawer .nav-products .nav-products__item {
	position: relative;
}
.header-drawer .nav-products .nav-products__item > a {
	display: flex;
	padding: 12px 16px;
	font-weight: 500;
}
.header-drawer .nav-products .nav-products__item.is-open > a {
	font-weight: 600;
}
.header-drawer .nav-products .nav-products__item .nav-products__item__link{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;
}
.header-drawer .nav-products .nav-products__item .nav-products__item__link::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	transform: translateY(-50%) rotate(45deg);
	transition: transform 0.3s;
}
.header-drawer .nav-products .nav-products__item.is-open .nav-products__item__link::after {
	transform: translateY(-50%) rotate(-135deg);
}

/* view-all */
.header-drawer .nav-products .view-all a {
	display: block;
	padding: 10px 16px;
	font-weight: 500;
	color: #0073aa;
}
.header-drawer .header-bottom{
    display: flex;
    position: relative;
    z-index: 5;
}
/*-- ヘッダー　競技ゴルフボタン --*/
.header__tournament{display: none;}
.header__tournament__hum{
    margin-top: 0;
    margin-left: 0;
    margin-right: 0px;
    padding-right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height:initial;
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
}
.header__tournament__hum a{
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    padding: 5px 20px;
    border:1px solid #4b4646;
    text-decoration: none;
    height:35px;
}
/*-- ボタン --*/
.header-drawer .h-onlineshop__widget h2{
    padding-left: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin: 3rem 0 0;
}

/* 以下、ハンバーガーボタン */
.burger-btn,
.burger-btn span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.burger-btn {
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
    width: 35px;
    height: 30px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    z-index:80;
}
.burger-btn span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color:#000;
}
.burger-btn span:nth-of-type(1) {
    top: 5px;
}
.burger-btn span:nth-of-type(2) {
    top:50%;
    transform: translate(-50%,-50%);
}
.burger-btn span:nth-of-type(3) {
    bottom: 5px;
}
.close__btn{
    position: absolute;
    top:15px;
    right:20px;
    width:25px;
    height:25px;
    z-index: 100;
}
.close__btn::before,
.close__btn::after{
    content:'';
    position: absolute;
    top:50%;
    width:25px;
    height:2px;
    background: #000;
}
.close__btn::before{
    transform: translateY(-50%)rotate(45deg);
}
.close__btn::after{
    transform: translateY(-50%)rotate(-45deg);
}
.burger-btn.close{
    display: block;
}
.header__top .area_search_header{
	display: none;
}
.drawer-search{
	display: block;
}
/*-- 検索窓 --*/
.drawer-search #search-toggle{
    display: none;
}
/* ポップアップ初期状態は非表示 */
.drawer-search .search-popup {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    right:0;
    width: 100%;
    height: 100%;
    background: transparent; /* 半透明背景 */
    justify-content: center;
    align-items: center;
    z-index: 1;
}
/* 検索フォーム部分 */
.drawer-search .search-popup form {
    position: relative;
    width:100%;
    background: #fff;
    margin-top: 3rem;
    padding: 3rem 0;
    height:auto;
    display: flex;
    gap: 10px;
    z-index: 5;
}
/* 検索入力 */
.search-popup .search__area{display: flex;align-items: center;justify-content:center;width: 100%;margin: 0 auto;}
.search-popup input[type="text"] {
    font-size: 16px;
}
.search-popup input[type="submit"] {
    font-size: 16px;
}
.search-popup #searchsubmit{
    
}
/* 閉じるボタン */
#search-close {
    display: none;
}
}
@media (max-width:768px){
.l-header .area_logo_header img{
    width: 100%;
    max-width:30rem;
}
/*-- ヘッダー　競技ゴルフボタン --*/
.header__tournament__hum a{
    font-size: 12px;
    padding: 5px 10px;
    height:initial;
}
}
@media (max-width:640px){
.header__top{
    padding: 0;
    align-items: center;
    justify-content:space-between;
}
.l-header .area_logo_header img{
    width: 100%;
    max-width:30rem;
}
.burger-btn {
    position: relative;
    top:auto;
    transform: translateY(0);
    width: 30px;
    height: 25px;
}
.burger-btn span:nth-of-type(1) {
    top: 2px;
}
.burger-btn span:nth-of-type(2) {
    top:50%;
    transform: translate(-50%,-50%);
}
.burger-btn span:nth-of-type(3) {
    bottom: 2px;
}
/*-- ヘッダー　競技ゴルフボタン --*/
.header__tournament__hum{
    position: relative;
    top:auto;
    transform: translateY(0);
}
.header__tournament__hum a{
    font-size: 12px;
    padding: 6px 8px;
    height:initial;
}
}
/*-- l-footer --*/
.l-footer{
    position: relative;
    background:#000000 ;
    padding: 3rem 0;
}
.l-footer > .footer__inner{
    max-width: initial;
    padding-left: clamp(var(--pad-min),calc(var(--pad-min) + (var(--pad-max) - var(--pad-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),var(--pad-max));
    padding-right: clamp(var(--pad-min),calc(var(--pad-min) + (var(--pad-max) - var(--pad-min)) * ((100vw - var(--vw-min)) / (var(--vw-max) - var(--vw-min)))),var(--pad-max));
}
.l-footer p,.l-footer a{color:#fff;text-decoration: none;}
.two-images {
    display: flex;
    justify-content: center; /* 横並びを中央寄せ */
    gap: 20px;               /* 画像間の隙間 */
}
.two-images figure,.two-images img {
    display: block;
    max-width: 5.0rem;        /* 必要に応じてサイズ固定 */
    margin: 0!important;
}
.l-footer .footer__list{margin: 3rem 0;}
@media (max-width:640px){
.l-footer .footer__list > *{
    width:100%;
}
}
/*-- l-main --*/
.l-main{
    margin-top: 210px;
}
section{padding:80px 0 ;}
.l-main section:first-child{padding-top:20px; }
.home section{padding:60px 0 ;}
.section__header,.search__header{
    position: relative;
    margin: 0 auto 6rem;
    padding: 3rem 0;
}
.section__header{text-align: center;}
.search__header{   
    border-bottom: solid 1px #e3e3e3;
}
.section__header.page__title{
    padding: 3rem 0;
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: 1px;
    border-top: solid 1px #e3e3e3;
    border-bottom: solid 1px #e3e3e3;
    text-align: center;
}
.section__header p{
    position: relative;
    text-align: center;
    margin: 20px auto 0;
    width:80%;
}
@media (max-width:1235px){
.l-main{
    margin-top: 100px;
}
}
@media screen and (max-width: 768px){
section{padding:60px 0;}
.home section{padding:40px 0 ;}
.section__header{
    margin: 0 auto 30px;
}
.section__header p{
    margin: 15px auto 0;
    text-align: left;
    width:100%;
}
}
@media screen and (max-width: 640px){

}


/*-- 404.php --*/
.error404 section{
	padding:160px 0;
    min-height:calc(100vh - 226px - 210px);
}
.error404 section h1{
	font-weight: 500;
    margin: 0 0 4rem;
}
.error404 section p{
	margin: 0 0 1.5rem;
}
.error404 .error404__links{
    margin: 3rem 0 0;
    max-width: 300px;
}
@media screen and (max-width: 768px){
.error404 #f-wrap section{
	padding:0px 0 80px;
    min-height:initial;
}
.error404 .error404__links{
    margin: 3rem auto 0;
    max-width: 100%;
}
}
@media screen and (max-width: 640px){

}

/*- ------------- -*/
/*- ページネーション -*/
/*- ------------- -*/
.pagination,.pagination .nav-links{display:flex;justify-content:center;margin:40px 0 0;}
.pagination .pagination{margin:0;}
.pagination .page-numbers{
    display:flex;align-items:center;justify-content:center;margin:0 5px;width:36px;height:36px;
    font-size:16px;font-weight:500;text-decoration: none;
}
.pagination .current{
	color: var(--white-color);
	background: #000;
	width:36px;
	height:36px;
	border-radius:50%;
	font-size:16px;
    font-weight:500;
}
.pagination .prev,.pagination .next{position:relative;width:36px;height:36px;}
.pagination .prev::before,.pagination .next::before{content:'';position:absolute;top:50%;border-top:2px solid #1a1a1a;width:10px;height:10px;}
.pagination .prev::before{border-left:2px solid #1a1a1a;transform:translatey(-50%)rotate(-45deg);}
.pagination .next::before{border-right:2px solid #1a1a1a;transform:translatey(-50%)rotate(45deg);}

/*- ------- -*/
/*- パンくず -*/
/*- ------- -*/
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.75;
    color: var(--main-color);
    margin: 10px 0 40px;
}
.breadcrumb span{
    padding:0 8px;
}
.breadcrumb a {
    text-decoration: none;
    color: var(--main-color);
}

/*- ------------- -*/
/*- ブロックエディタ -*/
/*- ------------- -*/
.single main{overflow-x: clip;}
/* 通常ブロック */
.entry-content{width:100%; padding: 0 40px;}
.entry-content > *:not(.alignfull),
.page-content > *:not(.alignfull),
.wp-block-post-content > *:not(.alignfull) {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

/* 幅広ブロック */
.entry-content .alignwide,
.page-content .alignwide,
.wp-block-post-content .alignwide {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

/* 全幅ブロック */
.entry-content > .alignfull,
.page-content > .alignfull,
.wp-block-post-content > .alignfull {
    width: 100%;
    max-width: initial;
    padding: 0;
}

/* メディアクエリは同じ原則でコピー */
@media (max-width:1200px){
  .entry-content > *:not(.alignfull),
  .page-content > *:not(.alignfull),
  .wp-block-post-content > *:not(.alignfull) {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .entry-content .alignwide,
  .page-content .alignwide,
  .wp-block-post-content .alignwide {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .entry-content > .alignfull,
  .page-content > .alignfull,
  .wp-block-post-content > .alignfull {
    width: calc(100% + 80px);
    margin: 0 -40px;
  }
}
/* 他のメディアクエリも同様に置換 */

@media (max-width:1000px){
.single__body__content{padding:0px;}
/* single.php の本文内の段落・見出し・グループなどすべて */
.entry-content > *:not(.alignfull),
.page-content > *:not(.alignfull),
.wp-block-post-content > *:not(.alignfull) {
    max-width: 840px;      /* 通常ブロックの最大幅 */
}
/* 幅広ブロックも同じ幅に */
.entry-content .alignwide,
.page-content .alignwide,
.wp-block-post-content .alignwide {
    max-width: 840px;
}
/* 全幅ブロックは画面いっぱい */
.entry-content > .alignfull,
.page-content > .alignfull,
.wp-block-post-content > .alignfull{
    width: calc(100% + 60px);
    margin: 0 -30px;
}
}
@media (max-width:900px){
.entry-content{width:100%; padding: 0 20px;}
/* single.php の本文内の段落・見出し・グループなどすべて */
.entry-content > *:not(.alignfull),
.page-content > *:not(.alignfull),
.wp-block-post-content > *:not(.alignfull){
    max-width: 100%;     /* 通常ブロックの最大幅 */
}
/* 幅広ブロックも同じ幅に */
.entry-content .alignwide,
.page-content .alignwide,
.wp-block-post-content .alignwide{
    max-width: 100%;
}
}
@media (max-width:768px){
.single__body__content{padding:0px;}
/* single.php の本文内の段落・見出し・グループなどすべて */
.single__body__content> *:not(.alignfull) {
    margin-left: auto;
    margin-right: auto;
    width:100%;
}
/* 全幅ブロックは画面いっぱい */
.entry-content > .alignfull,
.page-content > .alignfull,
.wp-block-post-content > .alignfull{
    width: calc(100% + 40px);
    margin: 0 -20px;
}
}
/* グリッドやカラムを中央寄せにするカスタムクラス */
.my-center-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.my-center-grid {
    display: grid;
    justify-content: center;
    place-content: center;
    place-items: center;
}
/*-- フォントサイズ --*/
.single .single__body__content h2{font-size:28px;color:#595757;}
.single .single__body__content h3{font-size:24px;color:#595757;}
.single .single__body__content h4{font-size:20px;color:#595757;}
.single .single__body__content h5{font-size:18px;color:#595757;}
.single .single__body__content a{font-size:16px;color:#595757;}
.single .single__body__content .wp-block-heading{font-weight:700;}
.single__body__content .wp-element-caption{text-align: left;font-size:14px!important;color:#595757;}
.single__body__content .has-small-font-size{font-size:12px!important;}
.single .single__body__content ul.wp-block-list{
    padding-left: 0;
}
.single .single__body__content ul.wp-block-list li {
    display: flex;
    margin-bottom: 0.5em;
    list-style: none!important;
    list-style-position: inside!important;
}
.single .single__body__content ul.wp-block-list li::before{
    content:'・';
    display: block;
    margin-right:5px; 
}
.single .part2 a{display: block;text-align: right;text-decoration:underline!important;}
@media (max-width:768px){
.single .single__body__content h2{font-size:22px;}
.single .single__body__content h3{font-size:18px;}
.single .single__body__content h4{font-size:16px;}
.single .single__body__content h5{font-size:14px;}
.single .single__body__content p,.single .single__body__content a{font-size:14px;}
.single__body__content .wp-element-caption,.single__body__content .has-small-font-size{font-size:12px!important;}
}
.single .single__body__content a{
	text-decoration:underline;
}
/*-- vk_slide --*/
.sidebar-widget .vk_slider_item_container{
    padding:0 15px;
}
/*-- 画像サイズ -*/
/* 90%幅 */
.single__body__content .wp-block-image.img-90 img {
    width: 90%;
    height: auto;
}
/* 80%幅 */
.single__body__content .wp-block-image.img-80 img {
    width: 80%;
    height: auto;
}
/* 必要に応じて追加クラスを増やせます */
.single__body__content .wp-block-image.img-70 img {
    width: 70%;
    height: auto;
}
/*-- ------ --*/
/*-- search --*/
/*-- ------ --*/
#search__page a{text-decoration: none;}
#search__page .article__txtarea{margin: 1.5rem 0 1rem;}
#search__page .cats{gap:10px;}
#search__page .cats a{text-decoration: none;}
/*-- ------- --*/
/*-- archive --*/
/*-- ------- --*/
#archive__page .cats__title{
    padding-top: 25rem;
    margin-top: -17rem;
}
#archive__page a{text-decoration: none;}
#archive__page .article__txtarea{margin: 1.5rem 0 1rem;}
#archive__page .cats{gap:10px;}
#archive__page .cats a{text-decoration: none;}
/*-- ------ --*/
/*-- single --*/
/*-- ------ --*/
.single__header{
    position: relative;
    margin: 0 auto 6rem;
}
.single__header h1{
    padding: 3rem 0;
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: 1px;
    border-top: solid 1px #e3e3e3;
    border-bottom: solid 1px #e3e3e3;
    text-align: center;
}
.single__header .single__header__info{
    position: relative;
    margin-bottom: 15px;
}
.single__header .single__header__info time,.single__header .single__header__info .cats a{
    text-decoration: none;
}

/*-- single__body__products --*/
.single__body__products .product-gallery-thumbs-col{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:15px;
}
.single__body__products .product-gallery-thumbs-col img {
    cursor: pointer;
    border: 2px solid transparent;
}
.single__body__products .product-gallery-thumbs-col img.active {
    border-color: none;
}
.single__body__products .product-info__list{
    margin: 4rem 0 0;
    border-top: solid 1px #e3e3e3;
    border-left: solid 1px #e3e3e3;
    border-right: solid 1px #e3e3e3;
}
.single__body__products .product-info__list li{
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
}
.single__body__products .product-info__list li strong{
    width:150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: solid 1px #e3e3e3;
    background: #fbfbfb;
}
.single__body__products .product-info__list li p{
    width:calc(100% - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: solid 1px #e3e3e3;
    background: #fff;
}
.single__body__products .products__content__title{
    margin: 4rem 0 0;
}
.single__body__products .product-price{
    margin: 1.5rem 0 2rem;
}
.single__body__products .products__content > *{font-size: 14px;}
.single__body__products .shop__btns{
    align-items: center;
    margin: 3rem 0 0;
    gap: 20px;
    width: 100%;
    padding: 10px 0;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}
.single__body__products .shop__btn__title{
    width:130px;
}
.single__body__products .shop__btn{
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width:calc(100% - 150px);
}
.single__body__products .product-link{
    width:calc(50% - 5px);
}
.single__body__products .product-link a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 5px 10px ;
    color:#fff;
    text-decoration: none;
}
.single__body__products .product-link a::after{
    content:'';
    position: relative;
    width:10px;
    height:10px;
    margin-left: 10px;
    border-top:2px solid #fff ;
    border-right:2px solid #fff ;
    transform: rotate(45deg);
}
.single__body__products .product-link.product-link-rakuten a{
    background: #BF0000;
}
.single__body__products .product-link.product-link-yahoo a{
    background: #FF8400;
}
/*-- #support__inner --*/
#support__inner{justify-content: space-between;}
#support__inner .l-fl__inner{
    width:calc(50% - 30px);
}
/*-- .single__bottom --*/
.single__bottom{
	width:100%;
	margin:80px 0 80px;
	padding:0;
}
.single__bottom .single__return{
    margin: 0 auto;
    text-align: center;
    max-width: 180px;
}
.single__bottom .l-fl{
	position:relative;
	align-items:center;
	justify-content:center;
}
.single__bottom .nav-previous,.single__bottom .nav-next{
	position:relative;
	width:50px;
	padding:0;
}
.single__bottom .nav-previous a,.single__bottom .nav-next a{
    display: block;
}
.single__bottom .back-txt{
    width:200px;
    margin: 0 30px;
}
.single__bottom .back-txt a{
    color:#328cbe;
}
.single__bottom .cats__link{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}
.single__bottom .cats__link a{
    display: block;
    text-align: center;
    line-height: 1.5;
    color:#328cbe;
    margin-bottom: 15px;
    text-decoration: underline!important;
}
.single__bottom .cats__link a:last-child{
    margin-bottom: 40px;
}
@media (max-width:1200px){
.single__body__products .shop__btns{
    gap: 10px;
}
.single__body__products .shop__btn__title{
    width:100%;
    text-align: center;
}
.single__body__products .shop__btn{
    flex-wrap: nowrap;
    gap: 10px;
    width:100%;
}
}
@media (max-width:1100px){
/*-- ------- --*/
/*-- archive --*/
/*-- ------- --*/
#archive__page .cats__title{
    padding-top: 14rem;
    margin-top: -6rem;
}
}
@media (max-width:900px){
/*-- single__body__products --*/
.single__body__products .product-gallery-main-col{
    display: none;
}
.single__body__products .product-gallery-thumbs-col{
    grid-template-columns: repeat(2, 1fr);
    gap:15px;
}
.single__body__products .product-gallery-thumbs-col img {
    cursor: pointer;
    border: 2px solid transparent;
}
.single__body__products .product-gallery-thumbs-col img.active {
    border-color: none;
}
.single__body__products .product-info__list{
    margin: 4rem 0 0;
    border-top: solid 1px #e3e3e3;
    border-left: solid 1px #e3e3e3;
    border-right: solid 1px #e3e3e3;
}
.single__body__products .product-info__list li{
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
}
.single__body__products .product-info__list li strong{
    width:150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: solid 1px #e3e3e3;
    background: #fbfbfb;
}
.single__body__products .product-info__list li p{
    width:calc(100% - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: solid 1px #e3e3e3;
    background: #fff;
}
.single__body__products .products__content__title{
    margin: 4rem 0 0;
}
.single__body__products .product-price{
    margin: 1.5rem 0 2rem;
}
/*-- #support__inner --*/
#support__inner .l-fl__inner{
    width:calc(50% - 19px / 2);
}
.scroll-img{
    overflow-x: auto;
}
.scroll-img img{
    min-width: 700px;
}
.section__catspost ul{
    grid-template-columns: repeat(2, 1fr);
    gap:15px;
}
}
@media screen and (max-width: 768px){
/*-- .wp-block-column order --*/
/* 数字による順番指定 */
.wp-block-column[class*="s-order-"] {
order: initial; /* 念のためリセット */
}
.wp-block-column.s-order-1 { order: 1; }
.wp-block-column.s-order-2 { order: 2; }
.wp-block-column.s-order-3 { order: 3; }
.wp-block-column.s-order-4 { order: 4; }
.wp-block-column.s-order-5 { order: 5; }
/*-- single --*/
.single section:first-child{padding: 40px 0 0;}
.single-box {
    margin-top: -10px;
}
.single__header h1{
	line-height:1.6;
}
.single__body{
	margin:30px 0 10px;
}
.section__catspost .section__header h2 span {
    margin-left: 0px;
}
.section__catspost h2 .sans-txt{
    width:100%;
    display: flex;
}
/*-- #support__inner --*/
#support__inner{justify-content: normal;}
#support__inner .l-fl__inner{
    width:100%;
}
#support__inner .l-fl__inner:last-child{
    margin-top: 4rem;
}
}
@media screen and (max-width: 640px){
/*-- single --*/
.single__bottom .l-fl{}
.single__bottom .nav-previous{
	width:35px;
    margin-right: auto;
}
.single__bottom .nav-next{
	width:35px;
    margin-left: auto;
}
.single__bottom .nav-previous a,.single__bottom .nav-next a{
    width:35px;
    height:35px;
}
.single__bottom  .back-txt{
    width:150px;
    margin: 0;
}
}
@media (max-width:600px){
.scroll-img img{
    min-width: 600px;
}    
}
