@charset "utf-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

/* メイン共通 */
main{
  width:90%;
  margin: 0 auto;
}

body{
	background-color: rgb(53, 53, 53);
	text-align: center;
}
/* ローディングアニメーション */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: rgb(58, 58, 58);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
    z-index: 1000;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  .loading__logo {
    opacity: 0;
    animation: logo_fade 1.7s 1s forwards;
    width: 300px;
  }

  @keyframes logo_fade {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    60% {
      opacity: 1;
      transform: translateY(0);
    }
  
    100% {
      opacity: 0;
    }
  }

@keyframes fadeIn { 
    0% {opacity: 0;} /* 始め */
    100% {opacity: 2;} /* 終わり */
}


p{
    font-family: 'Zen Maru Gothic', serif;
}

h1,h2,h3{
    font-family: 'Zen Maru Gothic', serif;
}

li,ul{
    font-family: 'Zen Maru Gothic', serif;
}

dl,dt{
    font-family: 'Zen Maru Gothic', serif;
}

/* メニュー */
header{
    background: #222222da;
    width: 100%;
    font-family: serif;
    position: fixed;
    top: 0;
    left: 0;
    /* 最前面に */
    z-index: 100;
}

nav ul li{
    /* ブロックレベル性質を持ちつつ横に並ぶ */
    display: inline-block;
	margin: 1.7%;
	display:inline-block;position:relative;cursor:pointer;
}

nav ul li a{
    color: #ffffff;
    padding: 1em 2em;
}

nav li a{
	text-decoration: none;
}

nav ul li::after{
	content:'';position:absolute;left:50%;bottom:-3px;width:60%;height:3px;opacity:0;background-color:#808080;transform:translate(-50%,0);transition:all .3s ease-in-out;
}
nav ul li:hover::after{width:100%;opacity:1;}


/* Twitterに飛べるロゴ、表示されて一番最初のマーク */
#logo{
	width: 100%;
	margin: auto;
	padding: 10%;
}

/* お知らせのアコーディオンメニュー */
.accordion-005 {
  font-family: serif;
	margin: auto;
    max-width: 40%;
}

.accordion-005:not([open]) {
    margin-bottom: 7px;
}

.accordion-005 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-left: 5px solid #e95353;
    background-color: #636363;
    color: #f2f2f2;
    font-weight: 600;
    cursor: pointer;
}

.accordion-005 summary::-webkit-details-marker {
    display: none;
}

.accordion-005 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333;
    border-right: 3px solid #333333;
    content: '';
    transition: transform .3s;
}

.accordion-005[open] summary::after {
    transform: rotate(225deg);
}

.accordion-005 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 2em 2em;
    color: #f2f2f2;
    transition: transform .5s, opacity .5s;
}

.accordion-005[open] p {
    transform: none;
    opacity: 1;
}

/* お知らせ */
#sum h2{
	font-size: 2em;
  color: #f2f2f2;
  margin-bottom: 5%;
  margin-top: 2%;
}

#sum h3{
  font-size: 1.5em;
  color: #f2f2f2;
  margin-bottom: 3%;
  margin-top: 7%;
}

/* 商品 */
#box_type1 h2{
	font-size: 2em;
	color: #f2f2f2;
	margin-bottom: 3%;
	margin-top: 10%;
}


.lush{
  background-color: #f3f3ff;
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 3%;
}
.lush:hover{
  opacity: 0.8;
}

.grey a{
  margin: auto;
}
.grey ul{
  margin-bottom: 10%;
}

.grey{
  color:#fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  margin-bottom: 10%;
}
.grey article{
  text-align: center;
  width: 30%;
  margin-bottom: 3%;
}

/* フタとま三段マルチケースシリーズ */
#sum1 h2{
  margin-top: 17%;
  color: #f2f2f2;
  font-size: 1.7em;
  margin-bottom: 5%;
}

.grey2 a{
  margin: auto;
}
.grey2 ul{
  margin-bottom: 10%;
}

.grey2{
  color:#fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  margin-bottom: 10%;
}
.grey2 article{
  text-align: center;
  width: 30%;
  margin-bottom: 3%;
}

.sum2{
  font-size: 1.4em;
}

/* フッター */
footer{
	margin-top: 2%;
	background-color: #242424;
	color: #f3f3f3;
}

#glass img{
	margin-top: 2%;
	margin-bottom: 1%;
    width: 90px;
    transition: transform 0.2s ease 0s;
    }
#glass img:hover{
        transform:translate(0, -5%) ;
    }

    /* リンク */
  .link1{
    margin: auto;
    text-align: center;
  }
  .link1 img{
    margin-top: 2%;
    width: 50%;
    background-size:contain;
    height: 25vh;
  }

.link2{
  color: #f2f2f2;
  font-size: 3em;
  margin-top: 3%;
}
.link3{
  color: #f2f2f2;
  font-size: 1.5em;
  margin-top: 2%;
  margin-bottom: 7%;
}

/* フタとまシリーズ */

.lush3{
  margin-bottom: 2%;
}

.grey4{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  margin-bottom: 2%;
  justify-content: space-around;
}

.grey4 article img{
  text-align: center;
  width: 32%;
  height: auto;
  object-fit: cover;
}

.grey5{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  margin-bottom: 2%;
  width: 100%;
  justify-content: space-around;
}

.grey5 article img{
  text-align: center;
  width: 32%;
  height: auto;
  object-fit: cover;
}

.grey6{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  margin-top: 1%;
  margin-bottom: 2%;
  justify-content: space-around;
}

.grey6 article img{
  text-align: center;
  width: 24%;
  height: auto;
  object-fit: cover;
}

#sum5 h2{
  margin-top: 2%;
  color: #f2f2f2;
  font-size: 1.5em;
  margin-bottom: 2%;
}

.btn1{
  text-align: center;
  text-decoration: none;
  font-family: serif;
  color:#f2f2f2;
  font-weight: bold;
  border: solid 3px #f2f2f2;
  display: inline-block; 
  padding:  1em;
  width: 25%;
  border-radius: 12px;
  margin-top: 3%;
  margin-bottom: 3%;
  text-decoration: none;
}

.btn1:hover{
  color: #191a19;
  background-color: #f2f2f2;
}

.lush4{
  width: 32%;
  height: auto;
  object-fit: cover;
  text-align: center;
}

li{
  color: #ffffff;
}

.goods1s{
  color: #f2f2f2;
  font-size: 1.5em;
  margin-top: 3%;
}
.goods2s{
  color: #f2f2f2;
  font-size: 1em;
  margin-top: 2%;
  margin-bottom: 7%;
}

.goods{
  color:#fff;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
  margin-bottom: 7%;
}
.goods article{
  width: 45%;
  margin-bottom: 3%;
}

.goods h4{
  font-size: 1.2em;
  font-family: serif;
}
.goods article a {
  font-family: serif;
  color:#f2f2f2;
  text-decoration: none;
  font-size: 
  1.3em;
}

.goods3s{
  color: #f2f2f2;
  font-size: 1em;
  margin-top: 2%;
  margin-bottom: 2%;
}

