@charset "utf-8";

/* CSS Document */




/* -------------------- header -------------------- */

/* 背景色変更 不要な場合は削除 */
header {
  background-color: #fffcf8; 
}



/* -------------------- contents -------------------- */

img {
width: 100%;
}



h1 {
    font-weight: normal;
    width: 60%;
    margin: auto;
    max-width: 600px;
}

div#content-wrapper img {
    margin-bottom: 10px;
}


.item_number {
    font-size: 24px;
    font-family: 'Caveat', cursive;
    margin-bottom: -10px;
}

.text_module {
    margin: 0 0 40px;
}




.text {
font-size:16px;
line-height : 2;
font-weight: 600;
}






.content {
    padding: 40px 80px 60px;
}

.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 140px 0;
    color: #222;
    word-break: break-word;
    line-break: strict;
    word-wrap: normal;
}



@media screen and (max-width: 1060px){
.content {
    padding: 40px 80px 60px;
}

}



.intro {
    margin: auto;
    background-color: #deb8877d;
    width: 100%;
    padding: 100px 0;
}


.intro_text {
    max-width: 910px;
    margin: auto;
    font-weight: 600;
}

.intro_text {
    padding: 0 40px 0;
}



.item {
    padding: 40px 80px 60px;
}

.item {
    max-width: 910px;
    margin: 0 auto;
    padding: 40px 140px 0;
    color: #222;
    word-break: break-word;
    line-break: strict;
    word-wrap: normal;
}




@media screen and (max-width: 667px){


h1 {
    width: 84%;

}

.content {
    padding: 40px 20px 60px;
}

.text_module {
    padding: 0 20px;
}
.text {
    font-size: 15px;
}

}



@media screen and (max-width: 1060px){
.item {
    padding: 40px 20px 60px;
}

}




.item-title {
    padding: 2px 0 2px 0px;
    margin: 0 0 20px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1px;
}








.headline {
    padding: 2px 0 2px 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 5px solid #7d7d7d;
}

.headline {
    border-left-color: #e6874b;
}


.headline_module {

		padding: 40px 0;
}

@media screen and (max-width: 1100px){
.headline  {
    font-size: 22px;
}

.headline_module {

		padding: 40px 0;
}


}

@media screen and (max-width: 667px){
.headline  {
    font-size: 20px;

}


.headline_module {

		padding: 30px 0;
}

}





.photo_module {
    margin: 0 auto 40px;
    padding: 20px 0 0;
}


@media screen and (max-width: 1100px){
.photo_module.vertical {
    width: 90%;
}

.photo_module {
    margin-bottom: 40px;
    padding-top: 20px;
}

}

@media screen and (max-width: 667px){

.photo_module.vertical {
    width: 100%;
    margin: auto;
    padding-top: 0;
}
}

/*== 商品一覧へのリンク） */


.all_link {
    width: 90%;
    display: block;
    margin: 0 auto 80px;
    max-width: 800px;
}


.btn {
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    border: 1px solid #555;
    /* ボーダーの色と太さ */
    padding: 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
    width: 100%;
}



.btn span {
    position: relative;
    z-index: 3;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.btn:hover span {
    color: #fff;
}

.all_link a:hover {
    opacity: 1;
}



/*== 背景が流れる（下から上） */
.bgbottom:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #333;
    /*背景色*/
    width: 100%;
    height: 0;
    /*アニメーション*/
    transition: .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

/*hoverした際の形状*/
.bgbottom:hover:before {
    height: 100%;
    background-color: #333;
}



/*== 商品一覧へのリンク　ここまで */


/* -------------------- フェードアップ -------------------- */


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.photo_module{
    opacity: 0;
}





/* -------------------- pagetop -------------------- */

/* ページの上部へ　右下固定版 */

#pagetop--fixed {
  position: fixed;
  bottom: 10vh;
  right: 1vw;
  background: #222;
  opacity: 0.7;
  border-radius: .2rem;
}

#pagetop--fixed a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#pagetop--fixed a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: auto;
  text-align: center;
}

