@charset "utf-8";

body
{
    font-family: 'Zen Old Mincho', serif;
    background-color: #ECECEC;
    position: relative;
    font-weight: lighter;
}

a
{
    text-decoration: none;
}
.commodity-title
{
    font-size: 60px;
    text-align: center;
    margin: 20px 0 5% 10px;
    writing-mode: vertical-rl;
    border-bottom: 5px solid #47656F;
    width: max-content;
}
.menu-desc
{
    line-height: 0.7;
    font-weight: bold;
}

.seasonitem-area
{   
    text-align: left;
    border: 1px solid #ccc;
    margin: 0 3% 0 3%;
    background-color: #FFF;
    
}

.seasonitem-area .warapper-item
{
   width: calc(100%/3);
   margin: 3% 5% 0 10%;

}
.seasonitem-desc
{
    font-size: 20px;
    text-align: center;
    background-color: #9D1E1E;
    opacity: 0.9;
    padding: 15px 0 15px 0;
    line-height: 0.8;
    
}


a:visited
{
    color: inherit;
}

.commodity-text
{
    text-align: center;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 0.5;
    margin-bottom: 5%;
}


.botton
{
    display: flex;
    flex-wrap: wrap;
    text-align: center;  
    color: #000;
    margin-left: 40px;
    margin-bottom: 30%;
    
}
.botton-decoration
{   
    font-size: 30px;
    
    
    width: calc(100%/2.5);
    height: 370px;
    text-align: left;
    padding-bottom: 10px;
    text-decoration: none;
    margin-left: 50px;
    
}

p
{
    margin-top: 0;
}

.warapper
{
    overflow: hidden;
    font-size: 20px;
   
}
.warapper-item
{
    
    float: left;
    width: calc(100%/2);
    font-size: 20px;
    
    
}
.season-item
{
    width: calc(100%/3);
    float: left;
    
}

/*フッターcss*/

footer
{
    text-align: center;
    font-size: 20px;
    font-weight: lighter;
}
.footer
{
    border-bottom: 40px solid;
    border-color: #47656F;
    overflow: hidden;
    position: relative;
    
    
}

.footer-icon
{
    float: left;
    margin-left: 15px;
    padding-bottom: 0px;
    
    
    
    
}


/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    text-align: center;
    max-width: auto;
    margin-right: 25px;
    
   
    
    
}

.accordion-area li{
    margin: 10px;
    background-color: #47656F;
    opacity: 0.8;
    height: calc(100%/5);
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:20px;
    font-weight: normal;
    padding: 3% 3% 3% 80px;
    transition: all .4s ease;
    text-align: left;
    
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 30px;
    height: 2px;
    background-color: #333;
    
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
  
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
    padding: 3% 3% 3% 5%;
    text-align: left;
    
   
    
    
    
    
}


/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
    
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 0px;/*スライド左右の余白調整*/
    
    padding: 3px;
}


