@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

*{
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  font-style:normal
}
html{font-size:62.5%}

body{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  line-height:1.5;
  font-family: 'Noto Sans JP','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','YuGothic','Yu Gothic',Meiryo,メイリオ,sans-serif;
  font-size: 1.5rem;
  text-rendering:auto;
  font-feature-settings: "palt";
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.075em;
  color: #333;
  position: relative;
  overflow-x: hidden;
}
img{max-width:100%;height:auto;vertical-align:bottom;-ms-interpolation-mode:bicubic}
table{width:100%;border-collapse:collapse;border-spacing:0}
li{list-style:none}
p{margin:0}
a{
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #333;
}
a:hover{opacity: 0.7;}

main{overflow-x: hidden;}


/* Base
================================*/
.pcOnly{
  display: block;
}
.spOnly{
  display: none;
}
 @media screen and (max-width: 768px) {
  .pcOnly{display: none;}
  .spOnly{display: block;}
}
.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex; -ms-flex-wrap: wrap; flex-wrap: wrap;
}
.contentsInner{
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contentsInner{
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}


.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1.0s;
  animation-delay: 0.2s;
  animation-fill-mode:forwards;
  opacity:0;
  }

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeUpTrigger{
    opacity: 0;
}



/* メインコンテンツ
==============================================*/
.page_wrapper{
  position: relative;
}

/*ヘッダー*/
header{
  position: absolute;
  z-index: 999;
}
.header_humBtn {
  display: block;
  position: fixed;
  top: 50px; left: 50px;
  width: 44px;
  height: 24px;
  z-index: 999;
}
.header_humBtn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  transition: transform .5s, opacity .5s;
}
.header_humBtn:hover{
  cursor: pointer;
}
.header_humBtn span:nth-child(1) {
  top: 0;
}
.header_humBtn span:nth-child(2) {
  top: 10px;
}
.header_humBtn span:nth-child(3) {
  bottom: 0;
}
.header_humBtn.show span:nth-child(1) {
  transform: translateY(3px) rotate(-45deg);
  top: 5px;
  left: 0;
}
.header_humBtn.show span:nth-child(2) {
  opacity: 0;
}
.header_humBtn.show span:nth-child(3) {
  transform: translateY(-3px) rotate(45deg);
  top: 11px;
  left: 0;
}


.header_inner {
  overflow: auto;
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.6);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  visibility: hidden;
}

.header_inner.show {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0,0,0,0.8);
  z-index: 998;
  transition: transform .5s, opacity .5s;
}

.header_contentsWrapper{
  position: absolute;
  top: 53%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.header_menu li a{
  width: 100%;
  display: inline-block;
  color: #fff;
  padding: 30px 0;
}

.is-open {
  overflow: hidden;
}
.is-open .header_inner {
  z-index: 998;
  visibility: visible;
  opacity: 1;
}

.header_nav{
  margin-top: 130px;
}
.header_nav ul li{
  margin-top: 30px;
  font-size: 3.5rem;
  font-weight: bold;
}
.header_nav ul li:nth-of-type(1){
  margin-top: 0;
}
.header_nav a{
  color: #fff;
}

.header_bottomArea{
  display: block;
  margin-top: 90px;
}
.header_bottomArea .header_icArea{
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.header_bottomArea .header_icArea li{
  margin-left: 10px;
}
.header_bottomArea .header_icArea li a{
  display: inline-block;
  color: #fff;
  width: 50px; height: 50px;
  border: 1px solid #fff;
}
.header_bottomArea .header_icArea li:nth-of-type(1){
  margin-left: 0;
}
.header_tel{
  font-size: 2.5rem;
  font-weight: bold;
}
.header_tel a{
  display: inline-block;
  color: #fff;
}
.header_sns{
  margin-top: 40px;
 justify-content: center;
 align-items: center;
}
.header_sns li{
  display: inline-block;
  margin-left: 45px;
}
.header_sns li:nth-of-type(1){
  margin-left: 0;
}
.header_note{
  margin-top: 30px;
  font-size: 1.5rem;
}
.header_inner a:hover {
  opacity: 0.6;
}
.header_tel a:hover{
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .header_humBtn{
    top: 25px;
    left: 20px;
    width: 40px;
    height: 22px;
  }
  .header_humBtn span:nth-child(2) {
    top: 9px;
  }
  .header_contentsWrapper{
    width: 80%;
    top: 55%;
  }
  .header_nav{
    margin-top: 0;
  }
  .header_nav ul{
    margin-top: 40px;
  }
  .header_nav ul li{
    margin-top: 20px;
    font-size: clamp(2.0rem,5vw,3.5rem);
  }
  .header_bottomArea{
    margin-top: 55px;
  }
  .header_tel{
    font-size: clamp(1.8rem,3vw,3.5rem);
  }
  .header_sns{
    margin-top: 20px;
  }
  .header_sns li {
    max-width: 35px;
    margin-left: 25px;
  }
}




/*MV*/
.mvArea{
  width: 100vw;
  height: 100vh;
  position: relative;
}
.mvArea > img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: -20px;
}
.mv_txWrap{
  position: absolute;
   top: 46%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.mv_tx{
    text-align: center;
  }
@media screen and (max-width: 768px) {
  .mv_tx img{
    max-width: 80%;
    margin: 0 auto;
  }
}




/*about*/
.aboutArea{
  width: 100vw;
  height: 100vh;
  position: relative;
  text-align: center;
}
.about_bg{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about_txWrap{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.about_ttl > span{
  display: block;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 3.5rem;
  font-size: clamp(1.8rem,3.4vw,3.5rem);
  color: #fff;
}
.about_tx{
  margin-top: 75px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about_ttl img{
    max-width: 80%;
  }
  .about_tx{
    font-size: 1.5rem;
    font-size: clamp(1.4rem,3vw,1.7rem);
  }
}



/*series*/
.series1_Area{
  padding-top: 90px;
  padding-bottom: 170px;
  background-color: #FFE93C;
  text-align: center;
  color: #5A0908;
}
.series2_Area{
  position: relative;
  padding-top: 130px;
  padding-bottom: 320px;
  background: url("../img/bg_03.jpg") no-repeat top;
  background-size:cover;
  text-align: center;
  color: #FAD902;
}
.series3_Area{
  padding-top: 115px;
  padding-bottom: 220px;
  background-color: #FFFBD8;
  text-align: center;
  color: #5E0A0E;
}
.series_ttl{
  position: relative;
  font-size: 3.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  
}
.series_ttl::after{
  content: "";
  position: absolute;
  width: 175px;
  height: 5px;
  background-color: #5A0908;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -10px;
}
.series2_Area .series_ttl::after{
  background-color: #FAD902;
}
.series1_ttl_img{
  margin-top: 130px;
  margin-bottom: 65px;
}
.series2_ttl{
  margin-top: 77px;
  margin-bottom: 75px;
}

.series2_ttl_img{
  margin-top: 77px;
  margin-bottom: 75px;
}
.series_tx{
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.productList.series1{
  position: relative;
  margin-top: 260px;
}
.productList.series2{
  margin-top: 260px;
}
.productList.series3{
  margin-top: 95px;
}
.productList li.productList_item:nth-of-type(n+2){
  padding-bottom: 150px;
  margin-top: 90px;
}
.productList_item_imgBox > div{
  max-width: 782px;
  margin: 40px auto 0;
  justify-content: space-between;
}
.productList.series1 > li > .productList_item_imgBox{
  position: relative;
}
.productList.series1 > li > .productList_item_imgBox img{
  max-width: 782px;
  border-radius: 30px;
}
.productList.series1 > li > .productList_item_imgBox .flex img{
  max-width: 370px;
  aspect-ratio: 370/217;
  object-fit: cover;
}
.productList.series1 > li{
  position: relative;
}

.productList.series1 > li:nth-of-type(1)::before{
  position: absolute;
  content: "";
  background: url("../img/potato1.png") no-repeat;
  top:-120px;
  left: 0;
  width: 107px;
  height: 89px;
}
.productList.series1 > li:nth-of-type(1) > .productList_item_imgBox::before{
  position: absolute;
  content: "";
  background: url("../img/potato2.png") no-repeat;
  bottom: 216px;
  right: -100px;
  width: 123px;
  height: 116px;
}
.productList.series1 > li:nth-of-type(1) > .productList_item_imgBox::after{
  position: absolute;
  content: "";
  background: url("../img/potato3.png") no-repeat;
  bottom: 61px;
  left: -60px;
  width: 77px;
  height: 97px;
}
.productList.series1 > li:nth-of-type(1)::after{
  position: absolute;
  content: "";
  background: url("../img/potato4.png") no-repeat;
  bottom: 250px;
  right: -120px;
  width: 107px;
  height: 89px;
}
.productList.series1 > li:nth-of-type(2) > .productList_item_imgBox::before{
  position: absolute;
  content: "";
  background: url("../img/potato5.png") no-repeat;
  bottom: -185px;
  left: -5px;
  width: 77px;
  height: 97px;
}
.productList.series1 > li:nth-of-type(2)::before{
  position: absolute;
  content: "";
  background: url("../img/potato6.png") no-repeat;
  bottom:180px;
  right: -70px;
  width: 117px;
  height: 104px;
}
.productList.series1 > li:nth-of-type(2)::after{
  position: absolute;
  content: "";
  background: url("../img/potato7.png") no-repeat;
  bottom: 0;
  left: 73px;
  width: 114px;
  height: 100px;
}
.product_tx_list::after{
  position: absolute;
  content: "";
  background: url("../img/potato2.png") no-repeat;
  top: 116px;
  left: -126px;
  width: 123px;
    height: 116px;
}
.product_tx_list li:nth-of-type(2)::after{
  position: absolute;
  content: "";
  background: url(../img/potato1.png) no-repeat;
  bottom: -120px;
  right: -187px;
  width: 107px;
  height: 89px;
}
.series2_Area::after{
  position: absolute;
  content: "";
  background: url("../img/img_s2-bg02.png") no-repeat;
  background-size: 100%;
  bottom: 0;
  left: -5px;
  width: 346px; height: 311px;
}

.product_ttl{
  margin-top: 70px;
  font-size: 4.0rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.product_tx{
  margin-top: 40px;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: 500;
}
.product_tx_list{
  position: relative;
  margin-top: 100px;
  margin-bottom: 80px;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: 500;
}
.product_tx_list li{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 92%;
  margin: 0 auto;
  margin-top: 80px;
}
.product_tx_list li._reverse{
  flex-direction: row-reverse;
  justify-content: space-between;
}
.product_tx_list li div{
  width: 58%;
  text-align: left;
}
.product_tx_list li div h4{
  font-size: 2.1rem;
}
.product_tx_list li div h4 span{
  background: #5A0908;
  color: #ffe93c;
  display: inline-block;
  padding: 5px 0;
  width: 65px;
  text-align: center;
  line-height: 1;
  margin-right: 10px;
}
.product_tx_list li div p{
  margin-top: 20px;
  font-size: 2.0rem;
}
.product_tx_list li img{
  width: 37%;
  aspect-ratio: 9/10;
  object-fit: cover;
  border-radius: 30px;
}


.product_priceArea{
  max-width: 520px;
  margin: 35px auto 0;
  font-size: 2.0rem;
  font-weight: 500;
}
.product_priceArea li{
  position: relative;
  margin-top: 15px;
  justify-content: space-between;
  height: 30px;
  align-items: center;
}
.product_priceArea span{
  display: inline-block;
}
.product_priceArea .price-ttl{
  padding-right: 10px;
  font-weight: 500;
}

.product_priceArea .price-yen{  
  width: 160px;
  position: relative;
  font-size: 130%;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}
.product_priceArea .price-tax{
  font-size: 75%;
  margin-left: 5px;
  font-weight: 100;
}
.series1_Area .product_priceArea .price-yen::after{
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background-color: #5E0A0E;
  top: 50%; right: 180px;
  transform: translateY(-50%);
}
.series1_Area .product_priceArea li:nth-of-type(2) {
  align-items: center;
}
.series1_Area .product_priceArea li:nth-of-type(2) .price-yen::after{
  width: 30px;
}
.series1_Area .product_priceArea li:nth-of-type(3) .price-yen::after{
  width: 90px;
}

.product_priceArea.no-line{
  margin-top: 20px;
}
.product_priceArea.no-line .price-yen::after{
  display: none;
}
.series2_Area .product_priceArea .price-yen::after{
  position: absolute;
  content: "";
  width: 80px;
  height: 1px;
  background-color: #FAD902;
  top: 50%; right: 175px;
  transform: translateY(-50%);
}





@media screen and (max-width: 1199px) {
  .productList.series1 > li:nth-of-type(1) > .productList_item_imgBox::before{
    left: -5px;
  }
  .productList.series1 > li:nth-of-type(2)::before{
    right: 0;
  }
}

@media screen and (max-width: 999px) {
  .product_tx{
    position: relative;
    z-index: 800;
  }
  .productList.series1,.productList.series2{
    padding: 0 20px;
  }
  .productList.series1 > li:nth-of-type(1)::before{
    background-size: contain;
    top: -95px;
    width: 10vh;
    max-height: 100px;
  }
  .productList.series1 > li:nth-of-type(1) > .productList_item_imgBox::before{
    background-size: contain;
    width: 10vh;
    bottom: -23%;
    left: auto;
    right: 0;
    max-height: 100px;
  }
  .productList.series1 > li:nth-of-type(1) > .productList_item_imgBox::after{
    background-size: contain;
    bottom: -25%;
    left: 5px;
    width: 7vh;
    max-height: 100px;
  }
  .productList.series1 > li:nth-of-type(1)::after{
    background-size: contain;
    bottom: -8%;
    right: 10px;
    width: 9vh;
    max-height: 100px;
  }
  .productList.series1 > li:nth-of-type(2) > .productList_item_imgBox::before{
    background-size: contain;
    bottom: -58%;
    left: 0;
    width: 8vh;
    max-height: 100px;
  }
  .productList.series1 > li:nth-of-type(2)::before{
     display: none;
  }
  .productList.series1 > li:nth-of-type(2)::after{
    background-size: contain;
    bottom: 10vh;
    left: auto;
    right: 0;
    width: 10vh;
    max-height: 100px;
  }
  .series2_Area::after{
    background-size: 100%;
    bottom: 0;
    left: -5px;
    width: 346px; height: 311px;
  }
}


@media screen and (max-width: 500px) {
  .productList.series1,.productList.series2{
    padding: 0;
  }
  .productList.series1 > li:nth-of-type(1)::before{
    top: -8vh;
    left: -5%;
    width: 8vh;
  }
  .productList.series1 > li:nth-of-type(1) > .productList_item_imgBox::before{
    display: none;
  }
  .productList.series1 > li:nth-of-type(1) > .productList_item_imgBox::after{
    bottom: -78%;
    left: -1%;
    width: 5vh;
  }
  .productList.series1 > li:nth-of-type(1)::after{
    bottom: -16%;
    right: -3%;
    width: 8vh;
  }
  .productList.series1 > li:nth-of-type(2) > .productList_item_imgBox::before{
    bottom: -58%;
    left: -10px;
    width: 5vh;
  }
  .productList.series1 > li:nth-of-type(2)::after{
    display: none;
  }
  .product_tx_list li:nth-of-type(2)::after{
    background-size: contain;
    width: 10vh;
    max-height: 100px;
    top: inherit;
    bottom: 23vw;
    left: 92%;
    width: 8vh;
  }
}




@media screen and (max-width: 768px) {
  .series1_Area{
    padding-top: 70px;
    padding-bottom: 120px;
  }
 .series_ttl{
   font-size: clamp(3.0rem,8vw,3.9rem);
 }
 .series_ttl::after{
    max-width: 155px;
  }
 .series1_ttl_img{
   max-width: 80%;
   margin-top: 20%;
   margin-bottom: 8%;
 }
 .series2_ttl_img{
   max-width: 80%;
   margin-top: 20%;
   margin-bottom: 10%;
 }
 .series_tx{
   font-size: clamp(1.4rem,4.0vw,1.7rem)
 }
 .product_ttl{
   margin-top: 30px;
   font-size: clamp(1.5rem,8vw,2.4rem);
 }
 .product_tx{
   font-size: clamp(1.3rem,3.8vw,1.7rem);
 }
 .productList{
   padding: 0 10px;
 }
 .productList_item_imgBox > div {
   margin: 20px auto 0;
}
.productList_item_imgBox > div > img{
  width: calc(100% / 2 - 10px);
}
 .productList.series1,.productList.series2{
   margin-top: 100px;
 }
 .productList li.productList_item:nth-of-type(n+2){
   padding-bottom: 0;
 }
 .series2_Area{
   padding-bottom: 170px;
 }
 .series2_Area::after{
   max-width: 150px;
   max-height: 135px;
 }
 .product_priceArea{
   font-size: clamp(1.3rem,3.8vw,1.7rem);
 }
 .product_priceArea .price-yen{
   width: 135px;
 }
 .series1_Area .product_priceArea .price-yen::after{
  width: 22vw;
  right: 152px;
 }
 .series1_Area .product_priceArea li:nth-of-type(2) .price-yen::after {
    width: 9vw;
  }
  .series1_Area .product_priceArea li:nth-of-type(3) .price-yen::after {
    width: 65px;
  }
  .series2_Area .product_priceArea .price-yen::after{
    right: 145px;
    width: 25px;
  }
  .product_tx_list li div h4{
    margin-top: 10px;
  }
  .product_tx_list li div h4 span{
    display: block;
  }
  .product_tx_list li img{
    aspect-ratio: 9/12;
  }
  .product_tx_list li div p{
    font-size: clamp(1.3rem, 3.8vw, 1.7rem);
  }
}
@media screen and (max-width: 700px) {
  .product_priceArea li{
    height: auto;
  }
 .product_priceArea .price-yen {
    width: 35%;
  }
  .series1_Area .product_priceArea li:nth-of-type(3) .price-yen::after {
    left: -40%;
    width: 30%
  }
  .series2_Area .product_priceArea .price-yen::after {
    left: -25%;
    width: 20%
  }
  .series1_Area .product_priceArea .price-yen::after{
    width: 13.5vw;
    right: 35vw;
  }
  .series1_Area .product_priceArea li:nth-of-type(2) .price-yen::after{
    width: 13.5vw;
    right: 35vw;
  }
  .productList.series1 > li > .productList_item_imgBox img{
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .productList.series1 > li > .productList_item_imgBox img,.productList.series1 > li > .productList_item_imgBox .flex img,.product_tx_list li img{
    border-radius: 20px;
  }
  .product_tx_list li{
    width: 80%;
    margin-top:40px
  }
  .product_tx_list li,.product_tx_list li._reverse{
    flex-direction: column-reverse;
  }
  .product_tx_list li div,.product_tx_list li img{
    width: 100%;
  }
  .product_tx_list li img{
    aspect-ratio: 4/3;
  }
  .product_tx_list li div h4{
    margin-top: 20px;
    text-align: center;
    line-height: 1.25;
    font-size: 1.7rem;
  }
  .product_tx_list li div h4 span{
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  .product_tx_list li div p{
    margin-top: 10px;
  }
  .product_tx_list{
    margin-bottom: 80px;
  }
}



.more_Area{
  position: relative;
  min-height: 500px;
  background: url(../img/bg_02.jpg) no-repeat bottom / cover;
  font-size: 4.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.08em;
}
.more_Area_txWrap{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.pagetopBtn{
  position: fixed;
  bottom: 20px; right: 20px;
  width: 64px; height: 64px;
  z-index: 999;
}
.pagetopBtn.hide{
  opacity: 0.2;
}

@media screen and (max-width: 768px) {
  .more_Area{
    min-height: 60vh;
    background: url(../img/bg_02.jpg) no-repeat right 35% bottom / cover;
    font-size: clamp(2.0rem,8vw,4.5rem);
  }
  .pagetopBtn{
    width: 44px; height: 44px;
  }
}

/* footer
================================*/
.footer{
  padding: 200px 0 150px;
  background-color: #fff;
  color: #000;
  text-align: center;
}
.footer_accessArea{
  margin-top: 50px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
}
.footer_icArea{
  margin-top: 30px;
  justify-content: center;
  text-align: center;
}
.footer_icArea li{
  display: inline-block;
  width: 40px; height: 40px;
  margin-right: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.footer_sns{
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}
.footer_sns li{
  display: inline-block;
  margin-left: 45px;
}
.footer_sns li:nth-of-type(1){
  margin-left: 0;
}
.footer_note{
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
}
.footer_bnList{
  margin-top: 50px;
  align-items: center;
  justify-content: center;
}
.footer_bnList li{
  margin-right: 20px;
}
.footer_bnList li:nth-of-type(3n){
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .footer{
    padding: 80px 0 80px;
  }
  .footer_ttl img{
    max-width: 60%;
  }
  .footer_accessArea{
    margin-top: 30px;
    font-size: clamp(1.2rem,2vw,2.0rem);
  }
  .sp_time{
    display: block;
    margin-top: 10px;
  }
  .footer_sns{
    margin-top: 30px;
  }
  .footer_sns li{
    max-width: 35px;
    margin-left: 25px;
  }
  .footer_note{
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .footer_bnList{
    margin-top: 40px;
  }
  .footer_bnList li{
    width: calc(100% / 2 - 10px);
    margin-right: 10px;
  }
  .footer_bnList li:nth-of-type(3n){
    margin-right: 15px;
  }
  .footer_bnList li:nth-of-type(2n){
    margin-right: 0;
  }
  
}





.series1_top_link a{
  display: block;
  margin-top: 5px;
  margin-bottom: 60px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.8;
  border: 3px solid #5a0908;
  padding: 21px;
  color: #5A0908;
  /* box-shadow: 3px 3px 0 #5a0908; */
  
}
.series1_top_link a:hover{
  opacity: 1;
  background-color: #fff07a;
}

.series1_top_link a span{
  display: inline-block ;
  font-size: 3.2rem;
  margin: 5px 0 10px;
  border-bottom: 1px solid #5A0908;
  line-height: 1.3;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.series1_top_link a:hover span{
  color: #ff5c00;
  border-bottom: 1px solid #ff5c00;
}
.series1_top_link a p.tx-normal{
  font-weight: 500;
}


.productList_item_link{
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: 500;
  font-size: 2.0rem;
  color: #5A0908;
}
.productList_item_link a{
  margin-top: 5px;
  font-size: 3.0rem;
  font-weight: bold;
  color: #5A0908;
}
.productList_item_link a:hover{
  color: #ff5c00;
  opacity: 1;
}
.product01_img{
  margin: 40px auto 0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .series1_top_link a{
    font-size: clamp(1.4rem, 4.0vw, 1.7rem);
  }
  .series1_top_link a span{
    font-size: 2.6rem;
  }
  .productList_item_link{
    margin-top: -3rem;
    margin-bottom: -3rem;
    line-height: 1.5;
    font-size: clamp(1.3rem, 3.8vw, 1.7rem);
  }
  .productList_item_link a{
    display: block;
    margin-top: 5px;
    font-size: clamp(1.5rem, 8vw, 2.10rem);
    line-height: 1.25;
  }
  .product01_img{
    width: 75%;
  }
}