@charset "UTF-8";
/*********************************************
 * ・基本のレイアウト
 * ・header
 * ・contents
 * ・breadcrumb
 * ・sideBar
 * ・footer
 *********************************************/
html {
  font-size: 62.5%;
}
:root {
  --main-color: #132b3b;
  --sub-color: #e72410;
  --accent-color: #0f96af;
  --text-color: #231815;
  --bg-color: #f5f5f5;
  --line-color: #c6c6c6;
}
body {
 width: max(1280px,100%);
 color: var(--text-color);
	background: var(--bg-color);
 line-height: 1.8;
 font-size: 1.5rem;
 font-family:  "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}
*, *:before, *:after {
  box-sizing: border-box;
}
a:link {
  color: var(--text-color);
  transition-duration: .3s;
  text-decoration: none;
}
a:visited:hover ,
a:hover {
  color: var(--main-color);
}
a:visited {
  color: #74325c;
}
/*------------
 基本のフレーム
------------*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrapper {
  min-height: 100vh;
  flex-direction: column;
}
/*header{
	height: 263px;
	height: 263px;
}*/
.contents {
  flex: 1;
  flex-direction: row-reverse;
  min-height: 1100px;
}
.mithat_contents {
  flex: 1;
  flex-direction: row-reverse;
  min-height: 1750px;
}
main {
  width: calc(100% - 245px);
}
aside#sideBar {
  width: 245px;
}
/*---メインコンテンツのインナー---*/
.inner {
  margin: 0 auto;
  width: 800px;
}
/*---別ウィンドウで開いた場合---*/
.brank-container{
	margin: 0 auto;
	width: 90%;
}
/*------------------------
 header
------------------------*/
/*---
headerBar
---*/
#headerBar {
/*---	変更前	2023.01.18
  padding: 5px 25px;
---*/
  padding: 5px 5px;
  background: var(--main-color);
}
.headerBar-list.flex {
  width: 100%;
  justify-content: flex-end;
}
.subject {
	justify-content: flex-start;  /* 文章を左寄せする(※) */
	color: white;
}
.headerBar-list li {
  margin-left: 30px;
/*---	変更前	2023.01.18
	padding: 0 5px;
---*/
	padding: 0 0px;
	position: relative;
	transition-duration: .3s;
}
.headerBar-list li:hover {
	background: var(--accent-color);
}
.headerBar-list .user canvas {
	margin-left: 5px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: -30px;
}
.headerBar-list .kengen {
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	writing-mode: vertical-rl;
	background: var(--sub-color);
}

.headerBar-list li:before {
 content: '';
  width: 15px;
  height: 15px;
	position: absolute;
	top: 5px;
	left: -20px;
}
.headerBar-list .logout:before {
	background: url("../img/icon-logout.svg");
	background-size: contain;
}
.headerBar-list .login:before {
	background: url("../img/icon-login.svg");
	background-size: contain;
}
.headerBar-list .help:before {
	background: url("../img/icon-help.svg");
	background-size: contain;
}
.headerBar-list a {
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
}
.headerBar-list table:before {
	padding: 0px 0px;
	background: var(--main-color);
}
.headerBar-list table td:before {
	padding: 0px 0px;
	background: var(--main-color);
}
/*---
logoArea
---*/
#logoArea {
/*---	変更前	2023.01.18
  padding: 20px;
---*/
  padding: 5px 20px;
  width: 245px;
	display: flex;
	align-items: center;
box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
z-index: 1;
}
#logoArea a {
  width: 100%;
  height: 100%;
}
#logoArea img {
  width: 100%;
  height: auto;
  pointer-events: auto;
  z-index: 1;
  position: relative;
}
/*---
headerContents
---*/
#headerContents {
	width: calc(100% - 245px);
	background: #fff;
	transition-duration: .3s;
}
/*===headerContents fixed====*/
#headerContents.fixed{
/*---	変更前	2023.01.18
	position: fixed;
---*/
	top: 0;
	right: 0;
	z-index: 100;
}
#headerContents.fixed .headerContentsWrap{
/*---	変更前	2023.01.18
	padding: 10px;
---*/
	padding: 5px;
}
#headerContents.fixed .searchArea{
	width: 100%;
	margin: 0;
}
#headerContents.fixed .search_container input[type="text"]{
	width: 100%;
}
#headerContents.fixed .headerContents-note,
#headerContents.fixed .headerContents-menu{
	display: none;
}

/*===END headerContents fixed====*/
.headerContentsWrap{
/*---	変更前	2023.01.18
	padding: 30px 20px;
---*/
	padding: 5px 5px;
	position: relative;
}
.headerContents-note{
	font-size: 1.2rem;
	justify-content: flex-start!important;
}
.limit{
	margin-right: 1em;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.5;
	color: var(--main-color);
}
.limit span{
    margin-right: 5px;
	padding: 1px 2px;
	color: #fff;
	background-color: var(--main-color);
    display: inline-block;
}
/*===検索====*/
.searchArea{
	width: calc(100% - 120px);
	margin: 15px 0 0;
	justify-content: flex-start!important;
}
/*カテゴリーで検索*/
.searchArea-category {
	width: 200px;
	height: 40px;
	overflow: hidden;

}
.searchArea-category select {
	width: 100%;
	padding: 1em;
	cursor: pointer;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	color: #fff;
}
.searchArea-category select option{
	color: var(--text-color);
}
.searchArea-category select::-ms-expand {
    display: none;
}
.searchArea-category {
	position: relative;
	background: var(--main-color);
	color: #fff;
}
.searchArea-category::before {
	position: absolute;
	top: 18px;
	right: 10px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #fff;
	pointer-events: none;
}
/*キーワード検索*/
.search_container {
	position: relative;
}
.searchArea-keywords{
	width: calc(100% - 220px);
}
.search_container input[type="text"] {
	width: 100%;
 	padding: 10px;
	height: 40px;
	border: none;
	padding-right: 45px;
	overflow: hidden;
	background: var(--bg-color);
}
.search_container a {
	position: absolute;
	top:0;
	right: 0;
	width: 40px;
	height: 40px;
	background-color: inherit;
	cursor: pointer;
	border: none;
	background: var(--main-color);
	background-image: url("../img/icon-search.svg");
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-position: center;
}
/*===カート、マイメニュー====*/
.headerContents-menu{
	position: absolute;
	bottom: 30px;
	right: 20px;
	z-index: 5;
}
.headerContents-menu li:first-child{
	margin-bottom: 10px;
	overflow: hidden;
}
.headerContents-menu li a{
	padding: 15px 10px;
	width: 120px;
	height: 40px;
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 1.3rem;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	justify-content: center;
}
/*カート*/
.headerContents-menu .cart a{
	background: var(--sub-color);
	color: #fff;
	display: flex;
	justify-content: center;
}
.headerContents-menu .cart a:before{
	content: url("../img/icon-cart.svg");
	margin-right: 5px;
	width: 15px;
	height: 15px;
}
/*マイメニュー*/
.headerContents-menu .new-member > a,
.headerContents-menu .mymenu > a{
	background: #fff;
	color: var(--text-color);
	border: solid 1px var(--line-color);
}
.headerContents-menu .mymenu > a:after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 5px 0 5px;
	border-color: var(--main-color) transparent transparent transparent;
	position: absolute;
	right: 10px;
}
.headerContents-menu .mymenu:hover > a{
	background: var(--line-color);
}
.mymenu .submenu{
	padding: 10px;
 	display: none;
	position: absolute;
	top: 89px;
	background: #fff;
	border: solid 1px var(--line-color);
	width: 240px;
	right: 0;
	box-shadow: 0px 12px 20px -20px rgba(0,0,0,0.6);
}
.mymenu:hover .submenu{
	display: block;
}
.headerContents-menu .mymenu .submenu li:first-child{
	margin: 0;
}
.headerContents-menu .mymenu .submenu  li a{
padding: 5px 5px 5px 10px;
width: 100%;
height: auto;
display: block;
	position: relative;
}
.headerContents-menu .mymenu .submenu  li a:before{
	content: '〉';
	color: var(--accent-color);
	position: absolute;
	left: 0;
}
.headerContents-menu .mymenu .submenu  li a:hover{
	color: var(--sub-color);
}
/*---
global-nav
---*/
.global-nav {
	margin: 0 auto;
	border-top: solid 1px var(--line-color);
	border-bottom: solid 1px var(--line-color);
	background: #fff;
}
.global-nav .nav-list {
  display: flex;
  margin: 0 auto;
  padding: 0;
  z-index: 3;
  position: relative;
  justify-content: space-evenly;
  align-items: stretch;
}
.global-nav .nav-list > li{
  flex-grow: 1;
}
.global-nav .nav-list .nav-item a {
  height: 100%;
  padding: 20px 1em;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text-color);
	position: relative;
	display: flex;
  align-items: center;
  justify-content: center;
}
.global-nav .nav-list > li:not(:first-child) > a::before{
	content: '';
	height: 20px;
	width: 1px;
	background: var(--line-color);
	position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}
/* 親メニュー*/
.parent::after{
	content: '▼';
	position: absolute;
	top: 25px;
	transform: translateX(15px) scale(.7,.7);
	transition-duration: .3s;
}
.global-nav .nav-list .nav-item:hover.parent::after{
	top: 25px;
	transform:translateX(15px)  rotate(-180deg) scale(.7,.7);
}
/* カレント */
.global-nav .nav-list .nav-item a.current {
  color: var(--main-color);
}
/* サブナビゲーション */
@media print {
  /*printで適用する内容*/
  .nav-item_sub {
    display: none;
  }
}
.global-nav .nav-list .nav-item:hover > a {
  color: var(--main-color);
  position: relative;
}

.global-nav .nav-list .nav-item.current > a:after ,
.global-nav .nav-list .nav-item:hover > a:after {
  content: '';
  margin: 0 auto;
  position: absolute;
  bottom: 9px;
  right: 0;
  left: 0;
  width: 100px;
  height: 5px;
  background: var(--main-color);
}

.nav-list {
  position: relative;
}
/*子メニュー*/
.nav-item_sub {
    background: #fff;
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    top: 67px;
    right: 0;
    transition: all 1s ease 0.5s;				/*	Menu表示設定マウスオーバー後、1秒語	*/
    visibility: hidden;
    border-top: solid 1px var(--line-color);
    border-bottom: solid 1px var(--line-color);
    left: 0;
	box-shadow: 0px 12px 20px -20px rgba(0,0,0,0.6);
}
.nav-item_sub .inner {
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
}
.global-nav .nav-list .nav-item a.nav_top {
	padding: 30px 20px 20px;
    width: 20%;
    font-size: 1.6rem;
  font-weight: bold;
    background: var(--bg-color);
	position: absolute;
	left: 0;
}
.global-nav .nav-list .nav-item a.nav_top:hover {
	color: var(--text-color);
	background: var(--line-color);
}
.nav-item_sub .inner ul {
	padding: 10px 0;
	margin-left: 20%;
	display: flex;
	flex-wrap: wrap;
	width: 80%;
}
.global-nav .nav-list .nav-item_sub li {
  width: 33.3%;
}
.global-nav .nav-list .nav-item_sub a {
  padding: 10px 15px;
  text-align: left;
  position: relative;
  color: var(--text-color);
	font-weight: normal;
	justify-content: flex-start;
  transition-duration: 0s;
}

.global-nav .nav-list .nav-item_sub a:not(.nav_top):before {
	content: '〉';
	margin-right: 5px;
	color: var(--sub-color);
	font-weight: bold;
}

.global-nav .nav-list .nav-item_sub a:hover {
  color: var(--sub-color);
}

.nav-item:hover .nav-item_sub {
  opacity: 1;
  visibility: visible;
}
/*写真のメニュー*/
.nav-products-menu a{
	position: relative;
}
.global-nav .nav-list .nav-item_sub .nav-products-menu a:before{
	content: none;
}
.nav-products-menu img{
	width: 100%;
}
.nav-products-menu p{
	margin: 0 auto;
	padding: 1em;
	width: calc(100% - 30px);
	position: absolute;
	right: 0;
	left: 0;
	bottom: 10px;
	text-align: center;
	background: rgba(0,0,0,.5);
	color: #fff;
}
/*------------------------
 #contentsArea
------------------------*/
#contentsArea{
	display: flex;
	flex-direction: column;
}
.contentsArea-inner{
    margin: 30px auto;
	padding: 0 25px;
	min-height: 100vh;
	width: min(1000px,100%);
	background: #fff;
}
/*------------------------
 #breadcrumb
------------------------*/
#breadcrumb {
	border-top: solid 1px var(--line-color);
	border-bottom: solid 1px var(--line-color);
	background: #fff;
}
.breadcrumb {
	padding: 10px 20px 0;
	margin: 0 auto 10px;
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
}
.breadcrumb li {
  margin: 0;
  padding: 0;
}
.breadcrumb li:after {
  content: '〉';
  padding: 0 7px;
  font-size: 1.1rem;
	color: #666;
}
.breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb li:before {
  content: none;
}
.breadcrumb li,
.breadcrumb a {
  font-size: 1.1rem;
	color: var(--text-color);
	cursor: default;
}
.breadcrumb a {
  pointer-events: none;
}
/*------------------------
 aside#categoryArea
------------------------*/
#categoryArea{
	margin-top: auto;
	padding: 40px 0;
	width: 100%;
  background: url("../img/slide/top-slide-bg.jpg") no-repeat top;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
	color: #fff;
}
#categoryArea:before{
  content: '';
  background: inherit;
  filter: blur(20px);
  position: absolute;
  top: -20px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  z-index: -1;
}
#categoryArea h2{
	margin: 0 ;
	padding-bottom: 0;
	border: none;
}
#categoryArea h2:before{
	content: none;
}
#categoryArea h3{
	width: 100%;
}
.categoryArea-press,
.categoryArea-mold{
	align-self: baseline;
}
.categoryArea-press ul,
.categoryArea-mold ul{
	width: 48%;
}
#contentsArea #categoryArea a.btm_arrow{
	color: #fff!important;
	font-size: 1.4rem;
}
/*------------------------
 aside#sideBar
------------------------*/
aside#sideBar{
padding: 0 20px;
background: var(--bg-color);
z-index: 1;
	position: relative;
	box-shadow: 0 10px 10px 1px rgba(0,0,0,0.1);
}
aside#sideBar::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 312px;
	background-image: url("../img/side-bgimg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}
/* 必ず文字色が黒ではないためコメントアウト
aside#sideBar a{
	color:var(--text-color)!important;
}
*/
/*カレンダー*/
.calendar-box .holiday{
	position: relative;
}
.calendar-box .holiday:after{
	content: '';
	position: absolute;
	top: 5px;
	left: -20px;
	width: 12px;
	height: 12px;
	background: var(--sub-color);
}
.calendar-table{
	margin: 0px 0px 5px;
	border: none;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	border-color: var(--text-color);
}
.calendar-table th,
.calendar-table td{
	padding: 3px;
	border: var(--text-color) solid 1px;
}
.calendar-table th{
	background: var(--main-color);
	color: #fff;
}
.calendar-table td{
	color: var(--text-color);
	background: #fff;
}
.calendar-table td.holiday{
	color: var(--sub-color);
}
.calendar-table .sun{
	background: var(--sub-color);
}
.calendar-table .sat{
	background: var(--accent-color);
}

.calendar-table td.calender-today{
		background: #D0ffD0;
}
.calendar-table td.calender-three{
	    background: #9999ff;
}
.calendar-table td.calender-five{
	    background: #ffc966;
}
.calendar-table td.calender-eight{
	    background: #e3e548;
}

/*------------------------
 footer
------------------------*/
footer {
  padding: 85px 0 55px;
  background: var(--bg-color);
  position: relative;
	z-index: 1;
}
footer a:link,
footer a:visited{
	color:var(--text-color);
}
footer .inner{
	width: 1000px;
}
/*footerTop*/
#footerTop{
	padding-bottom: 40px;
	border-bottom: solid 1px var(--line-color);
	align-items: flex-end;
}
#footer-logoArea{
	margin-right: auto;
	width: 245px;
	height: auto;
}
#footer-logoArea img{
	width: 100%;
	height: auto;
}
.footer_logo img {
  margin: 0 auto 35px;
  display: block;
  width: min(90%, 220px);
  height: auto;
}
/*footerBottom*/
#footerBottom h2{
	border: none;
}
#footerBottom h2:before{
	content: none;
}
#footerContactArea a.btm{
	margin: 0 0 15px;
	padding: 8px 25px 8px 8px;
	width: 350px;
}
#footerContactArea a.btm_arrow{
	color: var(--text-color)!important;
}
#footerContactArea h4{
	margin-bottom: 15px;
	font-size: 1.5rem;
	font-weight: bold;
}
/*copyArea*/
#copyArea{
	margin-top: 50px;
	padding-top: 50px ;
	border-top: solid 1px var(--line-color);
}
.seal{
	margin-right: auto;
}
.seal img{
	width: 130px;
	height: auto;
}
small {
  margin: 55px 0 0;
  font-size: 1.2rem;
  letter-spacing: .2rem;
}
/*--page top--*/
#pagetop {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}
#pagetop a {
  width: 100%;
  height: 100%;
  text-align: center;
  background: var(--sub-color);
  color: #fff!important;
  font-size: 1.3rem;
  line-height: 2em;
	justify-content: center;
	align-content: center;
	transform: rotate(90deg);
}
.cousor_hand{
	cursor: pointer;
}