@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

/*----------------------------------------------------------------------
基本レイアウト
----------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
}

.wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

.container {
  position: relative;
}

.section_content {
  padding: 80px 0;
}
@media screen and (max-width: 834px) {
  .section_content {
    padding: 40px 0;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 1440px) {
  .flex {
    flex-direction: column;
  }
}

.header a img {
  transition: 0.3s;
}

.header a img:hover {
  opacity: 0.5;
}

hr {
  border: none;
  padding: 20px 0 0;
}

.sp {
  display: none;
}

.inner {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}

.notice {
  font-size: clamp(1.8rem, 1.708rem + 0.41vw, 2.2rem);
  font-weight: 900;
  line-height: 1.4;
  color: #FF3B17;
}
@media screen and (max-width: 480px) {
  .notice {
    text-align: left;
    margin-bottom: 0.5rem;
  }
}

.limited-offer {
  margin-top: 1rem;
  font-size: clamp(2.2rem, 2.015rem + 0.82vw, 3rem);
  font-weight: 900;
}
@media screen and (max-width: 1440px) {
  .limited-offer {
    margin-top: 2rem;
  }
}
.limited-offer span {
  color: #FF3B17;
}

.global-ttl {
  padding-bottom: 40px;
}
.global-ttl img {
  height: 50px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 1440px) {
  .global-ttl img {
    height: 40px;
  }
}
@media screen and (max-width: 834px) {
  .global-ttl {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .subat {
    text-align: left;
    line-height: 1.4;
  }
}
.subat span {
  color: #FF3B17;
  font-weight: bold;
}

.btn a {
  position: relative;
  font-size: clamp(1.8rem, 1.754rem + 0.21vw, 2rem);
  font-weight: 800;
  padding: 1.5rem;
  color: white;
  background: #0079C3;
  display: block;
  border-radius: 50px;
  box-shadow: 0 5px 0 rgba(34, 34, 34, 0.2);
  transition: 0.3s all;
}
.btn a:hover {
  opacity: 0.7;
  transform: translateY(5px);
  box-shadow: 0 0 0 rgba(34, 34, 34, 0.2);
}
.btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows.svg) no-repeat center/contain;
  width: 1.25rem;
  height: 1.25rem;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

/*----------------------------------------------------------------------
ヘッダー
----------------------------------------------------------------------*/
.header {
  height: 80px;
  position: relative;
  z-index: 9999;
}

.logo {
  width: 200px;
  padding: 25px 0 0 25px;
}

/*========= ボタンのためのCSS ===============*/
.toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  transition: all 0.5s;
  cursor: pointer;
  background: #0079C3;
  border-radius: 50%;
  z-index: 999999;
}

/*×に変化*/
.toggle span {
  width: 30px;
  height: 3px;
  left: 15px;
  display: block;
  background: #fff;
  position: absolute;
  transition: 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.toggle::after {
  content: "MENU";
  font-size: 1.1rem;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
}

.toggle.active::after {
  content: "CLOSE";
  color: #fff;
}

.toggle span:nth-of-type(1) {
  top: 11px;
}

.toggle span:nth-of-type(2) {
  top: 20px;
}

.toggle span:nth-of-type(3) {
  top: 29px;
}

.toggle .openbtn-area {
  transition: 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.toggle.active .openbtn-area {
  transform: rotateY(-360deg);
}

.toggle.active span:nth-of-type(1) {
  top: 15px;
  transform: translateY(6px) rotate(-45deg);
}

.toggle.active span:nth-of-type(2) {
  opacity: 0;
}

.toggle.active span:nth-of-type(3) {
  top: 27px;
  transform: translateY(-6px) rotate(45deg);
}

.nav_logo a {
  width: 130px;
  margin: 0 auto 20px;
}

.g-nav .menu-logo {
  width: 180px;
  margin: 0 auto 15px;
}

.g-nav .menu-logo a {
  border-bottom: none;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.g-nav .menu-logo a::before {
  display: none;
}

.g-nav {
  position: fixed;
  opacity: 0;
  width: 40%;
  height: 100vh;
  top: 0;
  right: -100%;
  margin: auto;
  background: #fff;
  transition: 0.7s ease-in-out;
  visibility: hidden;
  box-shadow: 0 5px 10px 3px rgba(0, 0, 0, 0.1);
}

.g-nav.panelactive {
  right: 0;
  opacity: 1;
  z-index: 9998;
  visibility: visible;
}

/*ナビゲーションの縦スクロール*/
.g-nav.panelactive .g-nav-list {
  position: fixed;
  z-index: 999;
  width: 40%;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.g-nav.panelactive ul {
  display: block;
}

.g-nav-list li {
  margin-left: 0;
}

.g-nav a {
  font-size: 2.4rem;
  font-weight: 900;
  color: #222;
  text-decoration: none;
  padding: 15px 0;
  margin: 0 60px;
  border-bottom: 1px solid #ccc;
  display: block;
  letter-spacing: 0.1em;
  position: relative;
  text-align: left;
}

.g-nav a::before {
  position: absolute;
  content: "";
  background: url("../images/arrows3.svg") no-repeat center/contain;
  width: 20px;
  height: 20px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s;
}

/*----------------------------------------------------------------------
recommend
----------------------------------------------------------------------*/
.recommend {
  background: url(../images/flag_line_top.svg) repeat-x top/300px, url(../images/flag_line_btm.svg) repeat-x bottom/300px;
  padding: 120px 0;
}
@media screen and (max-width: 1440px) {
  .recommend {
    background: url(../images/flag_line_top.svg) repeat-x top/200px, url(../images/flag_line_btm.svg) repeat-x bottom/200px;
    padding: 80px 0;
  }
}

.item_list {
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .item_list {
    width: 600px;
  }
}
.item_list .flex {
  flex-wrap: wrap;
}
@media screen and (max-width: 1440px) {
  .item_list .flex {
    flex-direction: column-reverse;
  }
}
.item_list .l_box {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 1440px) {
  .item_list .l_box {
    width: 100%;
  }
}
.item_list .r_box {
  width: 50%;
  margin-left: 2rem;
}
@media screen and (max-width: 1440px) {
  .item_list .r_box {
    width: 100%;
    margin-left: 0;
    margin-bottom: 2rem;
  }
}

.item_box {
  background: #FFF3D3;
  padding: 40px;
  position: relative;
  border-radius: 25px;
  margin-bottom: 4rem;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .item_box {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 480px) {
  .item_box {
    padding: 20px;
  }
}

.itembraname img {
  height: 30px;
}
@media screen and (max-width: 834px) {
  .itembraname img {
    height: 20px;
  }
}

.itemname {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  margin: 0.5rem 0 1rem;
}

.itemnamber {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.itemRegprice {
  font-weight: 600;
}

.itemSellprice {
  color: #FF3B17;
  font-size: clamp(4rem, 3.769rem + 1.03vw, 5rem);
  line-height: 1.6;
  font-family: "M PLUS Rounded 1c";
  font-weight: 900;
}

.item_discount-ttl {
  font-weight: 800;
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 480px) {
  .item_discount-ttl {
    font-size: 4.2vw;
  }
}
.item_discount-ttl span {
  color: #FF3B17;
}

.item_discount-lead {
  font-size: 1.4rem;
  font-weight: 800;
  background: #FF3B17;
  color: white;
  padding: 0.5rem 1rem;
}
.item_discount-lead span {
  color: #FFEC3F;
}

.item_discount-detail {
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  font-weight: 900;
  background: white;
  padding: 1rem;
}
.item_discount-detail span {
  color: #FF3B17;
}

.more-btn {
  margin-top: 3rem;
}
@media screen and (max-width: 1440px) {
  .more-btn {
    margin-top: 1.5rem;
  }
}
.more-btn a {
  position: relative;
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-weight: 900;
  color: white;
  background: #199BF2;
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  padding: 1.75rem 2rem;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s all;
}
.more-btn a:hover {
  filter: brightness(1.2);
  transform: translateY(7px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.more-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows.svg) no-repeat center/contain;
  width: 1rem;
  height: 1rem;
  right: 2.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

/*----------------------------------------------------------------------
フッター
----------------------------------------------------------------------*/
/** 共通フッターボタン **/
.btn_block {
  background: #FFEC3F;
  padding: 80px 0;
}
@media screen and (max-width: 1440px) {
  .btn_block {
    padding: 40px 0;
  }
}

.btn_list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -30px;
}
.btn_list .btn {
  width: calc(33.3333333333% - 30px);
  margin-left: 30px;
  background: white;
  padding: 20px 30px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1440px) {
  .btn_list .btn {
    width: calc(50% - 30px);
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .btn_list .btn {
    width: calc(100% - 30px);
  }
}
.btn_list .btn span {
  font-size: clamp(3rem, 2.769rem + 1.03vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  display: block;
}

footer {
  background: white;
}

/* sponsor */
.sponsor .sub_txt {
  margin: 0 auto 1.5em;
  max-width: 60%;
}

.sponsor .sub_txt span {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5em;
}

.sponsor .subat {
  font-family: "Noto Sans JP";
  display: inline-block;
  text-align: left;
}

.backtotop {
  position: fixed;
  display: none;
  bottom: 1.5rem;
  right: 1.5rem;
}

.backtotop a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}

.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  padding: 15px 0;
  font-size: 1.3rem;
}

@media screen and (max-width: 834px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .logo {
    width: 150px;
    padding: 25px 0 0 15px;
  }
  .g-nav,
  .g-nav.panelactive .g-nav-list {
    width: 100%;
  }
  .g-nav a {
    margin: 0 30px;
  }
  .copy {
    font-size: 1rem;
    margin-top: 1em;
  }
}
/*# sourceMappingURL=common.css.map */