@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;600&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% - 40px);
  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: auto;
  vertical-align: top;
}

.body p,
.body a,
.body h1,
.body h2,
.body h3,
.body h4,
.body li,
.body span,
.body div {
  text-shadow: none;
  margin: auto;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif !important;
  color: var(--gray01);
  background: none;
  line-height: 1.35;
  border-bottom: none;
}

.body li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}




:root {
  --green01:#ecf2e7;
  --green02:#667c3e;

--main-colr:var(--green02);
--sub-colr:var(--green01);
}

/*-----------------------------------------
01 共通部分設定＆リセットCSS　ここまで
-------------------------------------------*/

/*-----------------------------------------
02 ヘッダーの設定
-------------------------------------------*/
section.headGrp{
  position: relative;
  padding-top: 30px;
}
section.headGrp::after{
  content: "";
  display: block;
  background: var(--sub-colr)!important;
  width: 100%;
  height: calc(100% - 250px);
  position: absolute;
  top: 0;
  left: 0;
z-index: 1;
border-radius: 0 0 100px 100px;
}
section.headGrp>div{
  position: relative;
  z-index: 5;
}
/*追従メニュー*/
.menuGrp{
  height: 90px;
  position: relative;
  z-index: 99!important;
}
div.menu_Button{
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 15px 30px;
  border-radius: 100px;
  width: 95%;
  max-width: 800px;
  z-index: 999;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.1));
}
div.menu_Button.fixed_menu_Button{
position: fixed;
}
ul.menu_ul{
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 10px;
  max-width: 700px;
  margin: auto;
  padding: 0;
}
ul.menu_ul li{
  display: block;
  width: 100%;
}
ul.menu_ul a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5em 1em;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6b6b6b;
  border-radius: 100px;
}
ul.menu_ul li:first-of-type a{
padding: 0;
width: 150px;
}
ul.menu_ul a span{
  display: block;
  margin: auto 8px auto 0;
  text-align: center;
  width: 18px;
  height: 18px;
background-color: var(--main-colr);
border-radius: 50px;
position: relative;
}
ul.menu_ul a:hover{
  background: var(--sub-colr);
}
ul.menu_ul a span::after{
content: "";
display: block;
width: 4px;
height: 4px;
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
position: absolute;
top: 49%;
left: 50%;
transform: translate(-50%,-50%)rotate(45deg);
}



/*自動スクロール*/

div.conceptGrp{
  display: grid;
  grid-template-columns: 1fr 375px;
  gap: 20px;
  padding: 60px 0;
}

div.conceptGrp h2{
  font-size: 60px;
  letter-spacing: 0.05em;
  text-align: left;
  font-family: "Shippori Mincho", serif!important;
  font-weight: 400;
  color: var(--main-colr);
}
div.splide-wrapper{
  width: 100%;
}
.splide__slide img {
  height: auto;
  width:100%;
}


/*ABOUT*/
div.aboutGrp{
  padding: 90px 0 0;
}
div.aboutGrp div.center{
  max-width: 900px;
}
h3.title_h3{
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main-colr);
}
div.about-box{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: #fff;
  margin-top: 80px;
  filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.1));
}
div.about-box-img{
  position: relative;
  top: -40px;
  left: -40px;
}
div.about-box-text{
  width: 100%;
  margin:auto;
  text-align: left;
}
div.about-box-text img{
max-width: 225px;
margin-bottom: 30px;
}
div.about-box-text p{
  font-size: 22px;
  letter-spacing: 0.1em;
      font-family: "Shippori Mincho", serif !important;
    font-weight: 600;
    color: var(--main-colr);
}




@media screen and (max-width:768px) {
  section.headGrp::after{
        height: calc(100% - 150px);
    border-radius: 0 0 40px 40px;
  }
  div.menu_Button{
    max-width: 500px;
    padding: 10px 20px;
  }
  ul.menu_ul{
    grid-template-columns: 1fr 1.5fr;
  }
  ul.menu_ul li.pc{
    display: none;
  }
  ul.menu_ul a{
    font-size: 16px;
  }
  div.conceptGrp{
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
  }
  div.conceptGrp h2{
    font-size: 40px;
    text-align: center;
  }
  div.conceptGrp div.logo{
    max-width: 250px;
  }
  div.aboutGrp{
    padding-top: 70px;
  }
  div.aboutGrp div.center{
    max-width: 400px;
  }
  div.about-box{
    grid-template-columns: 1fr;
    padding: 25px 25px 30px;
    margin-top: 30px;
  }
  div.about-box-img{
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
  }
  div.about-box-img img:last-of-type{
    width: 200px;
    position: absolute;
    bottom: 0px;
    left: 0px;
  }
  div.about-box-text{
    text-align: center;
    padding: 0 10px;
  }
  div.about-box-text p{
    text-align: left;
    font-size: 15px;
  }
  h3.title_h3{
    font-size: 30px;
  }
}

@media screen and (max-width:550px) {
  div.menu_Button{
    padding: 10px;
  }
  ul.menu_ul{
    gap: 5px;
  }
  ul.menu_ul a{
        padding: 0.5em 0.5em;
    font-size: 3.5vw;
  }
div.conceptGrp h2{
  font-size: 6vw;
}
h3.title_h3{
  font-size: 6vw;
}
div.about-box-img img:last-of-type{
    width: 150px;
  }
}



/*-----------------------------------------
02 ヘッダーの設定 ここまで
-------------------------------------------*/

/*-----------------------------------------
03 コンテンツの設定
-------------------------------------------*/
.mainGrp div.wrap01{
  padding-top: 100px;
}
/*ボディケアアイテム　タブ切替*/
/* タブ */
div.tabGrp{
padding-top: 40px;
}
div.tab-list {
 display: grid;
 grid-template-columns: repeat(3,1fr);
 gap: 20px;
 width: calc(100% - 30px);
 max-width: 1000px;
 margin: auto auto 50px;
}
div.panel-list{
  padding: 50px 15px;
}
div.tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
div.tab-item:hover{
  opacity: 0.7;
}
div.tab-item.is-active{
  background: var(--sub-colr);
  border: 1px solid var(--sub-colr);
  pointer-events: none;
  position: relative;
}
div.tab-item.is-active::after{
content: "";
display: block;
width: 30px;
height:20px;
background: var(--sub-colr);
clip-path: polygon(0 0, 100% 0, 50% 100%);
position: absolute;
bottom: -19px;
left: 50%;
transform: translateX(-50%);
}
div.tab-item.is-active:hover{
  opacity: 1;
}
div.tab-item img{
  max-width: 100px;
}
div.tab-item p{
  display: block;
  margin: auto;
  font-size: 20px;
  
  color: var(--main-colr);
  font-family: "Shippori Mincho", serif!important;
  font-weight: 600;
}
/* パネル */
.panel-list {
  position: relative;
}
.panel-list::before,
.panel-list::after{
content: "";
display: block;
width: 100%;
background: var(--sub-colr);
position: absolute;
left: 0;
z-index: 1;
}
.panel-list>div{
  position: relative;
  z-index: 5;
}
.panel-list::before{
height: 230px;
top: 0;
}
.panel-list::after{
height: 20px;
bottom: 0;
}
.panel-item {
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 30px;
}
.panel-item.is-active {
  display: block;
  animation: panel-show .9s ease-in-out forwards;
}

/* パネル切り替えのアニメーション */
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


@media screen and (max-width:768px) {
  .mainGrp div.wrap01{
    padding-top: 80px;
  }
div.tab-list{
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 600px;
}
div.tab-item img{
  max-width: 80px;
}
div.tab-item p{
  font-size: 18px;
}
}
@media screen and (max-width:550px) {
div.tab-list{
  grid-template-columns: 1fr;
  max-width: 400px;
}
}



/*リカバリーガン・エクサガン共通部分*/
div.panel-item-title{
  display: grid;
  grid-template-columns: 400px auto;
  gap: 40px;
  width: calc(100% - 30px);
  max-width: 1000px;
  margin: auto;
}
div.panel-item-title p,
div.panel-item-title h4{
  text-align: left;
  color: var(--main-colr);
    font-family: "Shippori Mincho", serif!important;
  font-weight: 400;
}
div.panel-item-title>div{
  margin: 0 auto auto 0;
}
div.panel-item-title>div p{
  font-size: 26px;
  padding-left: 0.5em;
}
div.panel-item-title>div h4{
  font-size: 60px;
}
div.pointGrp{
  display: grid;
  gap: 20px;
  padding: 20px 0;
  margin-bottom: 40px;
}
div.point-item{
  color: var(--main-colr);
  display: grid;
  grid-template-columns: 115px auto;
}

div.point-item p{
  display: block;
  margin-left: 15px;
  font-size: 18px;
    font-family: "Shippori Mincho", serif!important;
  font-weight: 600;
}

div.attachmentGrp{
  display: grid;
  width: 90%;
  gap: 10px;
  padding: 40px 30px 30px;
  border: 1px solid var(--main-colr);
  position: relative;
  text-align: center;
}
div.attachmentGrp p.midashi{
  display: inline-block;
  padding: 5px 20px;
  white-space:nowrap;
  background: #fff;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
    font-family: "Shippori Mincho", serif!important;
    font-weight: 600;
  color: var(--main-colr);
}
div.attachmentGrp img{
  width: 70%;
  max-width: 130px;
  margin: auto auto 10px;
}
div.attachmentGrp p{
  text-align: center;
  font-family: "Shippori Mincho", serif!important;
    font-weight: 600;
    color: var(--main-colr);
}
div.attachmentGrp p.text{
  border: none;
}
div.attachmentGrp p.label{
  display: inline-block;
  margin: auto auto 5px;
  min-width: 100px;
  padding: 5px;
  font-size: 18px;
  border: 1px solid #b6c7a7;
}
div.attachmentGrp p.label.small{
  font-size: 14px;
}


@media screen and (max-width:768px) {
  .panel-list::before{
    height: 360px;
  }
div.panel-item-title{
  grid-template-columns: 1fr;
  gap: 0px;
  max-width: 500px;
  text-align: center;
  justify-items: center;
}
div.panel-item-title>img{
  max-width: 400px;
  grid-row: 2/3;
}
div.panel-item-title>div{
  margin: 0 auto auto auto;
}
div.panel-item-title>div p{
  font-size: 25px;
  text-align: center;
}
div.panel-item-title>div h4{
  font-size: 45px;
  text-align: center;
}
div.pointGrp{
  grid-template-columns: 1fr 1fr!important;
    max-width: 600px;
}
div.point-item{
  grid-template-columns: 80px auto;
  margin: 0;
}
div.point-item:last-of-type{
    grid-column: 1/3;
  }
div.point-item p{
    font-size: 16px;
  }
  div.photoGrp{
    width: 100%;
    max-width: 450px;
    padding-bottom: 50px;
  }
div.attachmentGrp p,
div.attachmentGrp p.label{
  font-size: 13px;
}

}


@media screen and (max-width:550px) {
  .panel-list::before{
    height: 58vw;
  }
  div.panel-item-title>div p{
    font-size: 4vw;
  }
  div.panel-item-title>div h4{
    font-size: 8vw;
  }
div.panel-item-title>img{
  width: 70%;
}
div.pointGrp{
  grid-template-columns: 1fr!important;
    max-width: 400px;
}
div.point-item{
  grid-template-columns: 60px 1fr;
}
    div.point-item:last-of-type {
        grid-column: 1 / 2;
    }
    div.point-item p{
      font-size: 14px;
    }
}
/*リカバリーガン*/
.panel-item01 div.pointGrp{
  grid-template-columns: repeat(3,auto);
}
.panel-item01 div.panel-item-title{
  grid-template-columns: 300px auto;
}
.panel-item01 div.pannel-grid{
  display: grid;
  grid-template-columns: 650px auto;
  gap: 20px;
  padding-bottom: 40px;
}
.panel-item01 div.attachmentGrp{
  grid-template-columns: 1fr 1fr;
  max-width: 375px!important;
}

@media screen and (max-width:768px) {
  .panel-item01 div.pointGrp{
    margin-bottom: 20px;
  }
  
  .panel-item01 div.pannel-grid{
    grid-template-columns: 1fr;
    
  }

  
}
/*エクサガンハンディ*/
.panel-item02 div.panel-item-title>div h4{
font-size: 45px;
}

.panel-item02 div.point-grid{
  display: grid;
  grid-template-columns: 575px 1fr;
  gap: 20px;
  max-width: 1000px;
}
.panel-item02 div.pannel-grid{
  display: grid;
  grid-template-columns: auto 650px;
  gap: 20px;
  padding-bottom: 80px;
}
.panel-item02 div.attachmentGrp{
  grid-template-columns: 1fr 1fr;
  max-width: 375px;
}

@media screen and (max-width:768px) {
  .panel-item02 div.panel-item-title>div p{
    font-size: 20px;
  }
  .panel-item02 div.panel-item-title>div h4{
    font-size: 36px;
  }
  .panel-item02 div.point-grid{
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .panel-item02 div.point-img{
    grid-row: 2/3;
    padding-bottom: 30px;
    max-width: 80%;
  }
  .panel-item02 div.pointGrp{
    margin-bottom: 0px;
    padding-bottom: 0;
    grid-row: 1/2;
  }

  .panel-item02 div.pannel-grid{
    grid-template-columns: 1fr;
  }
  .panel-item02 div.attachmentGrp{
    grid-row: 2/3;
  }
  
}

@media screen and (max-width:550px) {
.panel-item02 div.panel-item-title>div p{
  font-size: 4vw;
}
.panel-item02 div.panel-item-title>div h4{
  font-size: 7vw;
}
}
/* エクサガン LUXE (ラグゼ) */
.panel-item03 div.panel-item-title>div h4{
font-size: 45px;
}
.panel-item03 div.pointGrp{
  grid-template-columns: repeat(3,auto);
}
.panel-item03 div.pannel-grid{
  display: grid;
  grid-template-columns: 650px auto;
  gap: 20px;
  padding-bottom: 80px;
}
.panel-item03 div.attachmentGrp{
  grid-template-columns: repeat(6,1fr);
  max-width: 1000px;
  
}
.panel-item03 div.attachment-item{
  margin-top: 0;
}
div.kuhaku{
  padding-bottom: 80px;
}

@media screen and (max-width:768px) {
  .panel-item03 div.panel-item-title>div p{
    font-size: 20px;
  }
  .panel-item03 div.panel-item-title>div h4{
    font-size: 36px;
  }
  .panel-item03 div.pointGrp{
    margin-bottom: 0px;
    padding-bottom: 0;
    grid-row: 1/2;
  }

  .panel-item03 div.pannel-grid{
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .panel-item03 div.photoGrp{
    padding-bottom: 0px;
    grid-row: 2/3;
  }
  .panel-item03 div.point-img{
    padding-bottom: 30px;
        max-width: 80%;
  }
  .panel-item03 div.attachmentGrp{
    grid-template-columns: 1fr 1fr;
    max-width: 375px;
    grid-row: 2/3;
  }
}
@media screen and (max-width:550px) {
.panel-item03 div.panel-item-title>div p{
  font-size: 4vw;
}
.panel-item03 div.panel-item-title>div h4{
  font-size: 6.25vw;
}
}

/*比較表*/
.mainGrp div.wrap02{
  padding: 80px 0;
}
.mainGrp div.wrap02 div.center{
  max-width: 1000px;
}
div.tableGrp{
  display: grid;
  grid-template-columns: 165px 1fr 1fr 1fr;
}
div.tableGrp>div{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
}
div.tableGrp>div p{
  color: #6b6b6b;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.1em;
}
div.tableGrp>div:nth-of-type(4n){
  border-right: none;
}
div.tableGrp>div:nth-of-type(n+21):nth-child(-n+24){
  border-bottom: none;
}
div.table-title{
  background: #e9e9e9;
}
iv.tableGrp>div.table-title p{
  font-size: 20px;
}
div.table-contents img{
  width: 90%;
  margin: 10px auto 0;
}
div.table-text{
text-align: left;
margin-top: 15px;
}
div.table-text p{
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 0.25em;
}
div.table-text li{
  font-size: 14px;
  color: #6b6b6b;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.35em;
}
div.table-text li::before{
content: "\025cb";
}

div.container {
  overflow-x: auto; /* tableタグのはみ出た要素を隠す */
  white-space: nowrap; /* テキストの折り返しなし */
  border: 1px solid #d6d6d6;
}

span.scroll-hint-icon{
  box-sizing: content-box;
  padding: 20px 10px 10px 10px;
}
div.scroll-hint-text{
  font-weight: bold;
  color: #fff!important;
}
@media screen and (max-width:768px) {
  .mainGrp div.wrap02{
    padding: 40px 0;
  }
  .mainGrp div.wrap02 div.center{
    max-width: 500px;
  }
  div.tableGrp{
    grid-template-columns: auto 1fr 1fr 1fr;
  }
  div.tableGrp>div{
    padding: 10px 13px;
  }
  div.tableGrp>div p{
    font-size: 14px!important;
  }
  div.table-contents img{
    width: 80%;
  }
  div.table-text p{
    font-size: 16px;
  }
  div.table-text li{
    font-size: 13px;
  }
}


/*チラシはこちら*/
div.flyerBtn {
    margin: 0 auto 0;
    padding: 0 15px;
}
div.flyerBtn a {
    display: block;
    max-width: 400px;
    padding: 20px;
    border-radius: 100px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background: var(--main-colr);
}

/*他の商品をチェック*/
div.osusumeGrp{
  margin: 60px auto 0;
}

div.osusumeGrp h3.title_h3{
  
  font-family: "Shippori Mincho", serif!important;
  font-weight: 400;
}
div.bannerGrp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: calc(100% - 30px);
    max-width: 1100px;
    margin-top: 40px;
}

@media screen and (max-width:768px) {
  div.bannerGrp {
    grid-template-columns: 1fr;
    gap: 20px;
}
}

/*TOPに戻る*/
section.footGrp{
  padding: 0 15px;
}
div.backBtn {
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding:40px 0 100px;
}
div.backBtn a {
    display: block;
    width: 100%;
    padding: 20px 20px 20px 40px;
    font-size: 16px;
    text-align: center;
    color: #353535;
    background: #ebebeb;
    border: 1px solid #8f8f8f;
    border-radius: 5px;
    position: relative;
}
div.backBtn a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #353535;
    border-left: 1px solid #353535;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(0, -50%) rotate(45deg);
}

@media screen and (max-width:500px) {
  div.backBtn a{
    font-size: 4vw;
  }
}
/*-----------------------------------------
03 コンテンツの設定 ここまで
-------------------------------------------*/

/*商品一覧*/
div.productsGrp{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
  margin-bottom: 40px;
}
div.back99{
  display: flex;
  width: 100%;
  height: 100%;
}
div.back99 a {
     display: block;
    width: 100%;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 10px 10px 40px 10px;
    position: relative;
    margin: 0;
    
}
div.back99 a::after {
    content: "商品を見る";
    display: block;
    width: calc(100% - 20px);
    border-radius: 5px;
    background: var(--main-colr);
    color: #fff;
    font-size: 14px;
    letter-spacing: .1em;
    padding: 3px 0;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
div.back99 a:hover{
  opacity: 0.8;
  transform: translateY(-5px);
}
.back99 figure{
  margin: 0;
}
p.procd,
div.c-items5Col__price,
div.c-items5Col__priceTax,
div.c-items5Col__name{
font-size: 13px;
}
div.c-items5Col__name{
  font-weight: 700;
}

@media screen and (max-width:768px) {
  div.productsGrp{
  grid-template-columns: repeat(3,1fr);
}
div.c-items5Col__name br{
  display: none;
}
}
@media screen and (max-width:500px) {
  div.productsGrp{
  grid-template-columns:repeat(2,1fr);
}
}
/*アニメーション*/
 .fadein{
  opacity: 0;
 }
.fadein.is-active {
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}




/*スマ介_____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 (max-width: 1230px) {
  main.l-container {
    width: 123rem;
  }
}

@media (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
  }
}