/*footer固定ロゴ*/
.floating {
	position: fixed;
    left: 0;
    right: 0;
	fill: #000;
	margin: 0 auto;
	z-index: 2;
}
@media screen and (min-width: 813px) {
    .h-scroll .floating {
        left: 0;
    }
}
/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 12px 20px;
    z-index: 1000;
}
#serizawa_logo {
}
.header-center {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; /* 中央に配置 */
	position: absolute;
    left: 0;
    right: 0;
	top: 60px;
	width: 120px;
    margin: 0 auto;
	opacity: 1;
    transition: opacity 0.3s ease; /* トランジションの設定 */
}
.header-center.hidden {
    opacity: 0;
	display: none;
}
.header-center a.logo {
    width: inherit;
}

.header-left {
    flex: 1;
    text-align: left;
}

.header-right {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end; /* アイコンを横並びに配置 */
    width: 80px; /* 適宜調整 */
	position: relative;
	margin-right: 15px;
}
.header-right div {
	position: absolute;
	right: -7px;
    top: -9px;
}
.header-right .cart {
	right: 1%;
}
.header-right .login {
	right: 6%;
}
.header-right .search {
	right: 6%;
}
.header-right .language {
	right: 22%;
    top: -28px;
}

svg#log_in {
	margin-right: 15px;
}

svg#search {
	margin-right: 22px;
	margin-top: 1px;
}

.header_menu-button {
    cursor: pointer;
	margin-top: 4px;
}

.bar {
	width: 16px;
    height: 1px;
    background-color: #000;
    margin: 8px 0;
}

.header_menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
	padding: 80px 30px 0;
    transition: right 0.3s, opacity 0.5s; /* アニメーションのプロパティと時間を指定 */
    opacity: 0; /* 最初は透明 */
	overflow-y: auto;
}
.menu-open {
    right: 0; /* 画面内に表示 */
    opacity: 1; /* フェードイン */
}

header ul {
    list-style: none;
    padding: 0;
}

header li {
    margin: 10px 0;
	line-height: 2.0em;
}

header a {
    text-decoration: none;
}

.close-button {
    text-align: right;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close-button span {
    font-size: 30px;
    cursor: pointer;
    float: right;
}

dl#lower_menu {
    margin-top: 4em;
}
#lower_menu .ttl-accordion {
    margin-top: 0;
	width: 120px;
}

/* ハンバーガーメニューが開かれたときのスタイル */
.menu-open {
    right: 0;
}

/* メディアクエリ：813px以上の場合 */
@media (min-width: 813px) {
	.header {
		padding: 21px 3%;
	}
    .header_menu {
		width: 30%;
		padding: 80px 60px 0;
	}
	dl#lower_menu {
		/*position: absolute;
		bottom: 10%;
		left: 60px;*/
		margin-top: 10vh;
	}
	.sub-menu-icon {
		margin-left: 25px;
	}
	.header-right .language {
		right: 13%;
		top: -20px;
	}
	.header-right div > dl > dd {
		text-align: left;
		margin-right: -45px;
	}
	.header-right .search {
		right: 54px;
	}
	.header-right .cart {
		right: 17px;
	}
}


/*footer*/
#footer {
	z-index: 3;
	padding: 90px 0px 20px;
	border-top: 1px solid #333;
	font-weight: 300;
}
#footer section {
	margin: 0px 0px 80px;
    width: 100%;
    padding: 0 20px;
}
#footer a, #footer a:hover, #footer a:visited {
	font-size: 12px;
	color: #858585;
}
#footer a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}
#footer .copyright {
	font-family: "ABChanel Corpo Regular";
	padding: 20px;
	border: none;
}
#footer .copyright span {
    font-size: 12px;
}
#footer .copyright p {
    text-align: left;
    margin-bottom: 0px;
    font-size: 8px;
}

footer#footer section {
}

.sec-basic {
  	margin: 0 auto;
  	font-size: 12px;
	line-height: 2.8;
}
@media (min-width: 813px) {
	body {
		font-size: 13px;
	}
	.sec-basic {
		font-size: 13px;
	}
	dd.box-accordion p {
    margin: 0px 0 5px;
	}
}
.mod-accordion .ttl-accordion {
  padding: 5px 0 5px;
  position: relative;
	font-weight: 500;
}


 /*プラスアイコンの横線*/
 .ttl-accordion::before, .ttl-accordion::after {
     position: absolute;
	 top: 50%;                /*縦位置*/
     right: 0px;                /*横位置*/
     content: '';                /*文字や画像など*/
     display: inline-block;
     width: 10px;
	height: 12px;             /*縦幅*/
     border-top: 2px solid #000; /*横線*/ 
     /*水平方向の移動距離*/
     transform: translateX(-50%);
 }
 
 /*プラスアイコンの縦線*/
 .ttl-accordion:after {
    top: 36%;
    right: 11px;
     transform: rotate(90deg); /*回転量*/
 }

div.header-right .ttl-accordion:after {
    top: 20%;
}

@media (min-width: 813px) {
  #footer .ttl-accordion::before,
  #footer .ttl-accordion::after {
    display: none; /* アコーディオンのプラスアイコンの横線非表示 */
  }

	#footer section {
		width: 97%;
		margin: 0px 20px 80px;
	}
	#footer section:first-of-type {
		text-align: left;
	}
	#footer .mod-accordion .box-accordion {
		display: block;
		padding: 0px;
		margin-right: 10%;
	}
	.mod-accordion .ttl-accordion {
		margin-top: 10px;
	}
	.footer_flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	#footer dl.mod-accordion {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.footer_flex div:nth-of-type(2) {
		width: 65%;
	}
	dl.mod-accordion {
		margin-top: 0px;
	}
	  #footer .ttl-accordion, #footer .box-accordion {
		display: none;
	  }
	dt.ttl-accordion:hover ,dd.box-accordion p span:hover {
		cursor: pointer;
		text-decoration: underline;
		text-underline-offset: 4px;
	}
	#footer dt.ttl-accordion:hover {
		cursor: inherit;
		text-decoration: none;
	}
	#footer h3 {
		line-height: 2.8;
		margin: 10px 0 28px;
		font-family: initial;
		font-size: 12px;
        text-align: left;
        color: #000;
        font-weight: 500;
	}
	.sec-basic div {
		margin: 0 20px;
	}
	.sec-basic div:first-of-type {
		margin: 0;
		width: 100%;
	}
	.sec-basic div:nth-last-of-type(2) {
		margin: 0 20px 0 0;
	}
	.sec-basic p.pc_ttl {
		margin-bottom: 30px;
		color: #999;
	}
	#footer .copyright {
		padding: 20px 40px;
	}
}


/*ヘッダドロワー内用*/
#lower_menu .ttl-accordion::before, #lower_menu .ttl-accordion::after {
     border-top: 1px solid #000;  
 }
#lower_menu .ttl-accordion:after {
    top: 15%;
	left: 83%;
 }


.ttl-accordion.is-active::after {
    display: none;
}

.mod-accordion .box-accordion {
  display: none;
  padding: 0px;
	line-height: 1.7em;
	margin: 0;
}

#fs_ProductCategory .header {
    background: #fff !important;
}




/*250623*/
header.header .floating {
    top: 9px;
    width: 136px;
    margin: 0 auto;
    transition: opacity 0.8s, top 0.5s, left 0.5s, width 0.5s;
    opacity: 1;
    display: block;
    left: -52%;
}

/* 検索ベースレイアウト */
.search-wrapper {
  position: relative;
  display: inline-block;
}

/* チェックボックスは非表示 */
#search-toggle {
  display: none;
}

/* アイコンスタイル */
.search-label {
  cursor: pointer;
  user-select: none;
}

/* オーバーレイ（クリックで閉じる） */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 10;
}

/* フォーム初期状態 */
.search-form {
  position: absolute;
  top: 40px;
  left: 0;
  padding: 16px;
  background: white;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

/* ×ボタン */
.close-label {
  display: inline-block;
  float: right;
      font-size: 25px;
  cursor: pointer;
  margin-left: 8px;
  color: #888;
	margin-top: -18px;
}

/* チェック時にフォームとオーバーレイを表示 */
#search-toggle:checked ~ .overlay {
	display: block;
    background: #000;
    opacity: 0.5;
    position: fixed;
    z-index: 0;
}
#search-toggle:checked ~ .search-form {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
	top: 50px;
    width: 100%;
    position: fixed;
}

[type=text] {
    font-size: 12px;
}

@media (min-width: 813px) {
	#search-toggle:checked ~ .search-form {
	    padding: 25px 18%;
	}

	header.header .floating {
		top: 20px;
		left: 45px;
        margin: 0;
	}
}