@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');



/*-----------------------------------------
-------------------------------------------
-------------------------------------------
-------------------------------------------

目次　※各々レスポンシブ対応あり

01 共通部分設定＆リセットCSS
02 ヘッダーの設定
03 コンテンツの設定
04 フッターの設定

-------------------------------------------
-------------------------------------------
-----------------------------------------*/

/*-----------------------------------------
01 共通部分設定＆リセットCSS
-------------------------------------------*/
body {
  padding: 0;
  margin: 0;
}

div.body {
  margin: auto;
  min-width: 1100px;
}

@media screen and (max-width:768px) {
  div.body {
    min-width: auto;
  }
}

div.body * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.center {
  width: calc(100% - 20px);
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width:768px) {
  .center {
    max-width: 500px;
  }
}
.body a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.body a:hover {
  opacity: 1;
}

.body img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.body p,
.body a,
.body h2,
.body h3,
.body h4,
.body span,
.body div {
  text-shadow: none;
  margin: auto;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif !important;
  color: var(--gray01);
}

.body li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}


.fnt-main {
  font-family: 'Noto Sans JP', sans-serif;
}

:root {
  --orange01: #E95006;
  --orange02: #ff6629;
  --orange03: #fd7c36;
  --brown01:#493C2F;
  --gray01: #505050;
  --blue01: #0075C1;
  --blue02: #23B3D3;
  --yellow01: #FFE000;
  --yellow02: #fdf6bc;
}

/*-----------------------------------------
01 共通部分設定＆リセットCSS　ここまで
-------------------------------------------*/


/*-----------------------------------------
02 ヘッダーの設定
-------------------------------------------*/
/*背景*/
section.headGrp {
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20240510/summer_header_haikei.png)no-repeat;
  background-size: cover;
  background-position: center top;
}

.headGrp div.wrap01,
.headGrp div.wrap01 div.center {
  position: relative;
}

@media screen and (max-width:768px) {
  section.headGrp {
    background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20240510/summer_header_haikei_sp.png)no-repeat;
    background-size: cover;
    background-position: center top;
  }
  
}
/*黄色の斜線↑*/
.headGrp div.wrap01::after {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: var(--yellow01);
  clip-path: polygon(0 calc(100% - 5px), 100% 0%, 100% 100%, 0 100%);
}
@media screen and (max-width:400px) {
  .headGrp div.wrap01::after {
    height: 40px;
  }
}
/*有効期限*/
div.header_date {
  position: absolute;
  top: 18px;
  left: calc(50% + 195px);
  transform: translateX(-50%);
  display: inline-block;
  padding: 5px 15px;
  background: #fff;
  border: 3px solid var(--blue01);
  border-radius: 5px;
}

div.header_date::before,
div.header_date::after {
  content: "";
  position: absolute;
  top: -21px;
  transform: translateX(-50%);
  width: 3px;
  height: 18px;
  background: var(--blue01);
}

div.header_date::before {
  left: 20%;
}

div.header_date::after {
  left: 80%;
}

p.header_date_p {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue01);
  white-space: nowrap;
}
@media screen and (max-width:768px) {
  div.header_date{
    left: 50%;
  }
}
@media screen and (max-width:400px) {
  p.header_date_p{
    font-size: 5vw;
  }
}
/*タイトルの横並び*/
div.header_flex {
  display: flex;
  align-items: flex-end;
  padding-top: 30px;
  position: relative;
  z-index: 10;
}

div.header_flex_left {
  width: 45%;
  margin: auto 10px 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div.header_flex_left h2.header_title{
  background: none;
}
div.header_flex_right {
  width: 50%;
  margin: auto auto 0 10px;
}
@media screen and (max-width:768px) {
  div.header_flex {
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
  }
  div.header_flex_left{
    width: 100%;
  margin: auto;
  }
  div.header_flex_right {
    width: 90%;
  margin: auto;
  }
}
@media screen and (max-width:400px) {
  div.header_flex {
    padding-top: 90px;
  }
}
/*テキスト*/
div.header_text{
  padding: 0.5em 0.5em 1em;
}
div.header_text p{
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}
/*チラシを見る*/
div.header_btn {
  width: 95%;
  max-width: 400px;
  margin: 0;
  position: relative;
  padding: 3px;
  filter: drop-shadow(5px 5px 0 var(--blue01));
}

div.header_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  z-index: 1;
}

div.header_btn a {
  display: block;
  padding: 10px;
  background: var(--orange01);
  font-size: 22px;
  font-weight: 700;
  color: #fff !important;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  position: relative;
  z-index: 2;
}

div.header_btn a:hover {
  background: var(--orange03);
}

@media screen and (max-width:768px) {
  div.header_btn{
    margin:  20px auto 30px;
    max-width: 360px;
  }
}
@media screen and (max-width:400px) {
  div.header_btn a{
    font-size: 6vw;
  }
}
/*メニュー*/
.headGrp div.wrap02 {
  background: var(--yellow01);
  position: relative;
}
.headGrp div.wrap02::after {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: -69px;
  left: 0;
  background: var(--yellow01);
  clip-path: polygon(0 0, 100% 0, 100% 5px, 0 100%);
}

ul.menu_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 30px 0 10px;
}
li.menu_li{
  display: inline-block;
  min-width: 120px;
  filter: drop-shadow(3px 3px 0 var(--orange01));
  margin:0 2px 15px;
}
li.menu_li a {
  text-decoration: none;
  padding: 0.5em 2em 0.5em 1.25em;
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background: #fff;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  color: var(--brown01);
  position: relative;
}
li.menu_li a::after{
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid var(--brown01);
  border-left: 2px solid var(--brown01);
  transform: translateY(-50%)rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}
li.menu_li a:hover{
  opacity: 1;
  background: var(--yellow02);
}
@media screen and (max-width:400px) {
  .headGrp div.wrap02::after {
    height: 40px;
    bottom: -39px;
  }
  li.menu_li a{
    font-size: 15px;
  }
}

/*ハンバーガーメニュー-----------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 25%;
  height: 100vh;
  /*ナビの高さ*/
  background: var(--yellow01);
  /*動き*/
  transition: all 0.6s;
}
@media screen and (min-width: 769px) {
#g-nav {
  border-left: 3px solid #fff;
}
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 25%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 20px*2);
  max-width: 400px;
  max-width: max-content;
  padding-left: 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  padding: 0 0 10px;
  filter: drop-shadow(3px 3px 0 var(--orange01));
  /* border-bottom: 2px dotted rgba(255, 255, 255, 0.5); */
}

#g-nav li a {
  text-decoration: none;
  padding: 0.5em 2em 0.5em 1.25em;
  display: block;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background: #fff;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  color: var(--brown01);
  position: relative;
}
#g-nav li a::after{
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid var(--brown01);
  border-left: 2px solid var(--brown01);
  transform: translateY(-50%)rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}
#g-nav li.li_title{
  border: none;
  margin-top: 30px;
}
#g-nav li.li_title a{
background: #fff;
color: var(--green01)!important;
font-size: 18px;
text-align: left;
padding: 0.35em 0.5em;
}

#g-nav li a:hover{
  opacity: 1;
  background: var(--yellow02);
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  bottom: 115px;
  right: -4px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background: var(--orange01)!important;
  border: 3px solid #fff;
  border-radius: 3px 0 0 3px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 17px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 17px;
}

.openbtn span:nth-of-type(2) {
  top: 30px;
}

.openbtn span:nth-of-type(3) {
  top: 43px;
}

.openbtn.active span:nth-of-type(1) {
  top: 26px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 38px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}
@media screen and (min-width: 769px) {
  #g-nav,
  #g-nav.panelactive #g-nav-list{
    max-width: 360px;
  }
}
@media screen and (max-width: 768px) {
  #g-nav li a{
    font-size: 20px;
    text-align: left;
  }
  .openbtn {
    width: 60px;
    height: 55px;
    bottom: 110px;
  }

  .openbtn span {
    left: 15px;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 25px;
  }

  .openbtn span:nth-of-type(3) {
    top: 35px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 17px;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 17px;
  }

  #g-nav {
    width: 100%;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    width: 100%;
  }

}

/*ハンバーガーメニューここまで---------------*/




@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {}


/*-----------------------------------------
02 ヘッダーの設定　ここまで
-------------------------------------------*/

/*-----------------------------------------
03 コンテンツの設定
-------------------------------------------*/

/*COREIL*/
div.coreilGrp{
  padding: 10px 10px 10px 200px;
  width: 100%;
  max-width: 800px;
  margin: 60px auto auto;
  position: relative;
}
div.coreilGrp::after{
  display: inline-block;
  content: "";
  width: 180px;
  height: 180px;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20230420/coreil_img_new.png)center / contain no-repeat;
  position: absolute;
  bottom: 30px;
  left: 0px;
}
@media screen and (max-width:768px) {
  div.coreilGrp{
    padding: 10px;
  }
  div.coreilGrp::after{
    display: none;
  }
}
@media screen and (max-width:400px) {
  div.coreilGrp{
    margin: 30px auto auto;
  }
}
div.coreilGrp p{
  text-align: center;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 600;
}
div.coreilGrp img{
  border-radius: 10px;
  transition: all 0.3s;
}
div.coreilGrp img:hover{
  opacity: 0.8;
  transform: translateY(-5px);
}
div.coreilGrp p.fukidashi{
  font-size: 16px;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0 1em;
  margin-bottom: 1em;
  width: fit-content;
}
div.coreilGrp p.fukidashi::before,
div.coreilGrp p.fukidashi::after{
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  border-radius: 10px;
  background: var(--orange01);
}
div.coreilGrp p.fukidashi::before{
  left: 0;
  transform: rotate(-25deg);
}
div.coreilGrp p.fukidashi::after{
  right: 0;
  transform: rotate(25deg);
}
div.coreilGrp p.fukidashi span{
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  display: contents;
color: var(--orange01);
font-size: 125%;
}

div.coreilGrp p.text{
  font-size: 20px;
  margin-top: 14px;
  color: red;
  border: none;
}
@media screen and (max-width:768px) {
  div.coreilGrp{
    padding-top: 20px;
}

}


/*カテゴリー別タイトル*/
div.product_title{
  display: inline-block;
  filter: drop-shadow(5px 5px 0 var(--orange01));
  margin: 30px auto;
}
div.product_title p{
  display: block;
  font-size: 28px;
  font-weight: 700;
  padding: 0.5em 2em;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

section.mainGrp div.wrap:nth-of-type(odd) div.product_title p{
  background: var(--yellow01);
}
section.mainGrp div.wrap:nth-of-type(even) div.product_title p{
  background: #fff;
}

@media screen and (max-width:768px) {
  div.product_title p{
    font-size: 6vw;
  }
}
/*白背景と黄背景の交互*/
section.mainGrp div.wrap{
  
}
section.mainGrp div.wrap:nth-of-type(1){
padding-top: 20px!important;
}
section.mainGrp div.wrap:nth-of-type(odd){
padding: 80px 0;
}
section.mainGrp div.wrap:nth-of-type(even){
  padding: 0px 0;
  background: var(--yellow01);
  position: relative;
}
section.mainGrp div.wrap:nth-of-type(even)::before,
section.mainGrp div.wrap:nth-of-type(even)::after{
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  background: var(--yellow01);
}
section.mainGrp div.wrap:nth-of-type(even)::before{
  top: -69px;
  clip-path: polygon(0 calc(100% - 5px), 100% 0%, 100% 100%, 0 100%);
}
section.mainGrp div.wrap:nth-of-type(even)::after{
  bottom: -69px;
  clip-path: polygon(0 0, 100% 0, 100% 5px, 0 100%);
}


div.product_title_text{
  margin-bottom: 30px;
  max-width: 650px;
}
div.product_title_text p{
  text-align: justify;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.75em;
  }
p.kikan_text{
  color: red;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {
  
}


/*-----------------------------------------
03 コンテンツの設定ここまで
-------------------------------------------*/

/*-----------------------------------------
04 フッターの設定
-------------------------------------------*/

section.footGrp{
  background: var(--orange03);
  padding: 40px 0;
}
section.footGrp div.center{
  max-width: 800px;
}
div.footer_flex{
  display: flex;
  align-items: center;
}
div.footer_text{
  width: 50%;
}
div.footer_img{
  width: 45%;
  padding: 30px;
}
div.footer_text p{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff!important;
}
div.dl_btn {
  margin-top: 20px;
}
div.dl_btn a{
  display: block;
  background: #fff;
  padding: 0.5em 1em;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange03)!important;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {
  div.footer_flex{
    flex-direction: column-reverse;
  }
  div.footer_text{
    width: 100%;
    max-width: 400px;
  }
  div.footer_img{
    width: 100%;
    max-width: 400px;
  }
}

/*-----------------------------------------
04 フッターの設定ここまで
-------------------------------------------*/




/*スマ介_____EC-CUBE対策*/
main.l-container {
  width: 100%;
}

.c-main {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

#contentInner {
  width: auto;
  padding-bottom: 0;
}

#wide_main_contents {
  width: 100%;
}

.c-breadcrumb {
  width: 1200px;
  margin: auto;
}

@media screen and (max-width: 1230px) {
  main.l-container {
    width: 123rem;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .l-container {
    width: 120rem;
  }

  #contentInner {
    width: 1200px;
    padding-bottom: 0;
  }

  #wide_main_contents {
    width: 1200px
  }
}