/* ///////////////////////////////////////////////////////////////////// 
//  共通部分
/////////////////////////////////////////////////////////////////////*/
body {
  font-family: "Noto Sans JP", '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #3c3c3c;
  line-height: 1.8;
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5 {
  line-height:1.5;
  margin: 0;
}
a:hover, a:visited {
  transition: 0.3s;
  color:inherit;
}
.fs-p-searchForm__button 
.fs-p-searchForm__button::before {content:""!important;}
ul,ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
}
img {
  max-width: 100%;
}
.hdr_logo img{
  max-width: 60%;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:hover img {
  /*text-decoration: underline;
  opacity: 0.8;*/
}
header{
position: sticky;
top: 0;
z-index: 1000;
background-color: white;
}
.wrapper {
  max-width: 1240px;
  padding: 50px 20px 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.main,.side + .fs-l-pageMain {
  width: 75%;
  max-width: 890px;
}
.side {
  width: 23.5%;
  max-width: 280px;
}
main.fs-l-main {
    display: block;
}
.dnone {
  display: none;
}
.mainTitle {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #3c3c3c;
  margin-bottom: 45px;
}
.mainTitle span {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  color: #8c8c8c;
}
.mainTitle span.mainTitle_inner {
  font-size: inherit;
  font-weight: inherit;
}
.mainTitle span.mainTitle_inner span.inline-b {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
}
.mainTitle span.mainTitle_inner span.inline-b img {
  vertical-align: middle;
}
.subTitle {
  text-align: center;
  margin-bottom: 55px;
}
.morebtn {
  text-align: center;
  font-size: 14px;
  margin-top: 45px;
}
.morebtn a {
  position: relative;
  border: solid 2px #333;
  border-radius: 50px;
  display: block;
  width: 250px;
  padding: 20px 0;
  margin: auto;
  color: #333;
}
.morebtn a:after {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  display: inline-block;
  width: 12px;
  height: 19px;
  color: #b20606;
}
.morebtn a:hover {
  border-color: #b20606;
  color: #b20606;
  text-decoration: none;
}

.toggle {
  position: relative;
}
.accordion li .accordion_icon,
.accordion li .accordion_icon span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}
.accordion li .accordion_icon {
  position: absolute;
  width: 12px;
  height: 12px;
  top:20px;
  right:10px;
}
.accordion li .accordion_icon span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #333;
}
.accordion li .accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion li .accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.accordion li .accordion_icon.active span:nth-of-type(1) {
  display:none;
}
.accordion li .accordion_icon.active span:nth-of-type(2) {
  transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.itemflex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.flex1clm {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
}
.flex1clm_unit{
  width:calc(100%);
  list-style: none;
}
.flex1clm_unit:nth-child(n+2){
  margin-top:20px;
}

.flex2clm {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
}
.flex2clm_unit{
  width:calc(100%/ 2);
  list-style: none;
}
.flex2clm_unit:nth-child(n+3){
  margin-top:30px;
}
.flex2clm.itemflex > .flex2clm_unit {
  width:calc((100% - 20px)/ 2);
}
.flex2clm.itemflex > .flex2clm_unit:nth-child(n+2) {
  margin-left: 20px;
}
.flex2clm.itemflex > .flex2clm_unit:nth-child(2n+1) {
  margin-left: 0;
}

.flex3clm {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  -webkit-box-pack:center;
  -ms-flex-pack:center;
  justify-content:center;
}
.flex3clm_unit{
  width:calc(100%/ 3);
  list-style: none;
}
.flex3clm_unit:nth-child(n+4){
  margin-top:15px;
}
.flex3clm.itemflex > .flex3clm_unit {
  width:calc((100% - 50px)/ 3);
}
.flex3clm.itemflex > .flex3clm_unit:nth-child(n+2) {
  margin-left: 25px;
}
.flex3clm.itemflex > .flex3clm_unit:nth-child(3n+1) {
  margin-left: 0;
}

.flex4clm {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  justify-content:flex-start;
}
.flex4clm_unit{
  width:calc(100%/ 4);
  list-style: none;
}
.flex4clm_unit:nth-child(n+5){
  margin-top:30px;
}
.flex4clm.itemflex > .flex4clm_unit {
  width:calc((100% - 60px)/ 4);
}
.flex4clm.itemflex > .flex4clm_unit:nth-child(n+2) {
  margin-left: 20px;
  /*margin-top: auto;*/
}
.flex4clm.itemflex > .flex4clm_unit:nth-child(4n+1) {
  margin-left: 0;
}

.flex5clm {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  justify-content:flex-start;
}
.flex5clm_unit{
  width:calc(100%/ 5);
  list-style: none;
}
.flex5clm_unit:nth-child(n+6){
  margin-top:20px;
}
.flex5clm.itemflex > .flex5clm_unit {
  width:calc((100% - 104px)/ 5);
}
.flex5clm.itemflex > .flex5clm_unit:nth-child(n+2) {
  margin-left: 26px;
}
.flex5clm.itemflex > .flex5clm_unit:nth-child(5n+1) {
  margin-left: 0;
}

.flex6clm {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  justify-content:flex-start;
}
.flex6clm_unit{
  width:calc(100%/ 6);
  list-style: none;
}
.flex6clm_unit:nth-child(n+7){
  margin-top:20px;
}
.flex6clm.itemflex > .flex6clm_unit {
  width:calc((100% - 85px)/ 6);
}
.flex6clm.itemflex > .flex6clm_unit:nth-child(n+2) {
  margin-left: 17px;
}
.flex6clm.itemflex > .flex6clm_unit:nth-child(6n+1) {
  margin-left: 0;
}

.flex7clm {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  justify-content:flex-start;
}
.flex7clm_unit{
  width:calc(100%/ 7);
  list-style: none;
}
.flex7clm_unit:nth-child(n+8){
  margin-top:20px;
}
.flex7clm.itemflex > .flex7clm_unit {
  width:calc((100% - 120px)/ 7);
}
.flex7clm.itemflex > .flex7clm_unit:nth-child(n+2) {
  margin-left: 20px;
}
.flex7clm.itemflex > .flex7clm_unit:nth-child(7n+1) {
  margin-left: 0;
}

.underline {
  display: inline-block;
  border-bottom: solid 1px;
}
.inline-b {
  display: inline-block;
  vertical-align: middle;
}
.inline-b_img {
  padding-right: 10px;
}

.justify_s {
  justify-content: space-between!important;
}
.justify_fs {
  justify-content: flex-start!important;
}
.justify_end {
  justify-content: flex-end!important;
}
.justify_c {
  justify-content: center!important;
}
.align_c {
  align-items: center;
}

.pre_content {
  position: relative;
  display: inline-block;
}
.pre_content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}
.pre_content:after {
  content: "現在準備中";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;left: 0;
  z-index: 2;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.redtxt {
  color: #ff0000;
}

.cInner {
  max-width: 1200px;
  margin: auto;
}

.arrow_r {
  position: relative;
  padding-right: 60px;
}
.arrow_r:after {
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 2px solid #262627;
  border-right: 2px solid #262627;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  margin-left: 15px;
}
.arrow_r:hover:after {
  transition: 0.3s;
  right: 15px;
}

.arrow_l {
  position: relative;
  padding-left: 30px;
}
.arrow_l:after {
  content: "";
  top: 50%;
  left: 10px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 2px solid #262627;
  border-right: 2px solid #262627;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.arrow_l:hover:after {
  transition: 0.3s;
  left: 15px;
}

.arrow_disc_r {
  position: relative;
  padding-right: 20px;
}
.arrow_disc_r:hover {
  text-decoration: none;
}
.arrow_disc_r:before {
  position: absolute;
  content: "";
  -webkit-transition: 0.25s;
  transition: 0.25s;
  top: 15%;
  right: -10px;
  display: inline-block;
  width: 25px;
  height: 25px;
  background: #3c3c3c;
  border-radius: 25px;
}
.arrow_disc_r:hover:before {
  transition: 0.3s;
  right: -15px;
}
.arrow_disc_r:after {
    content: "";
    top: 50%;
    right: 0px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    position: absolute;
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    margin-left: 15px;
}
.arrow_disc_r:hover:after {
  transition: 0.3s;
  right: -5px;
}

.tabContent {
  display: none;
}

.tabContent.active {
  display: block;
}

.tabSwitch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  /*background: #f9f7ed;*/
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .tabSwitch.scrollX {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow: scroll;
    overflow-x: scroll;
    overflow-y: visible;
  }
  .tabSwitch.scrollX li {
    white-space: nowrap;
    -webkit-box-flex: auto;
    -ms-flex-positive: auto;
    flex-grow: auto;
  }
}

.tabSwitch > li {
  list-style: none;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  cursor: pointer;
}

.tabSwitch:hover, .tabSwitch > li:hover {
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.tab--typeB .tabSwitch li {
  pointer-events: all;
  background: inherit;
  text-align: center;
  /*color: #ddd5c6;*/
  min-width: 150px;
  padding: 12px 0;
  font-size: 1.6rem;
  /*font-weight: bold;*/
  position: relative;
}
.tab--typeB .tabSwitch li:hover {
  border-left: solid 1px #f9f7ed;
  /*background: #997e5d;*/
  color: #3c3c3c;
}
.tab--typeB .tabSwitch li.active {
  /*background: #997e5d;*/
  color: #3c3c3c;
}

/* タブ全体 */
.tabSwitch {
    display: flex;             /* 横並びにする */
    gap: 10px;                 /* タブ間の余白 */
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;        /* 下に余白 */
    border-bottom: 1px solid #ddd; /* 下線でタブエリアを区切る */
}

/* タブ個々 */
.tabSwitch li {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    border-bottom: 2px solid transparent; /* アクティブで色が出る */
    transition: all 0.3s;
}

/* ホバー時 */
.tabSwitch li:hover {
    color: #000;
}

/* アクティブタブ */
.tabSwitch li.active {
    color: #000;
    font-weight: bold;
    border-bottom: 5px solid #033C93;
}

@media (max-width: 992px) {
  .tab--typeB .tabSwitch li {
    padding: 15px;
    font-size: 12px;
  }
}

.section-main {
  margin-bottom: 75px;
}

.bar_sec .cInner {
  border-top: solid 1px #dcdcdc;
  padding-top: 75px;
  margin-top: 75px;
}

/* ヘッダー */
.hdrtop_bnrsec {
  background: #888889;
  color: #fff;
}
.hdrtop_bnrbox {
  background: #997e5d;
}
.hdrtop_bnrtxt {
  font-size: 1.2rem;
  padding: 5px 0;
}

.hdrmiddle {
  padding: 20px 0;
}
.hdrmiddle .cInner {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  justify-content: space-between;
}
.hdrmid_menu {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.hdrmid_menu li {
  min-width: 26px;
  text-align: center;
  font-size: 1.4rem;
  color: #3c3c3c;
}
.hdrmid_menu li:nth-of-type(n+2) {
  margin-left: 12px;
  margin-right: 12px;
}
.hdrmid_menu li p {
  white-space: nowrap;
  letter-spacing: -0.08em;
  font-size: 1.4rem;
}
.hdrmid_menu li .hdrmid_menu_img {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.cartunit {
  position: relative;
  width: 25%;
}
.cartunit .cartAmount {
  position: absolute;
  top: 1px;
  right: 7px;
  z-index: 1;
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin: auto;
  text-align: center;
  background: #033C93;
  color: #fff;
  font-size: 12px;
  border-radius: 50px;
}

.topnav {
  background: #F4F4F4;
  margin-bottom: 30px;
}
.topnav .topnavList {
  /*border-left: solid 1px #3c3c3c;
  border-right: solid 1px #3c3c3c;*/
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  justify-content: center;
}
.topnav .topnavList .topnavList_unit {
  width: calc(100%/ 6);
}
/*.topnav .topnavList .topnavList_unit:nth-of-type(n+2) {
  border-left: solid 1px #3c3c3c;
}*/

.topnav .topnavList .topnavList_unit:nth-of-type(n+2) a p {
  border-left: solid 1px #3c3c3c;
}
.topnav .topnavList .topnavList_unit a {
  position: relative;
  display: block;
  padding: 15px 0 15px;
  text-align: center;
  color: #3c3c3c;
}
.topnav .topnavList .topnavList_unit a:hover {
  text-decoration: none;
}
/*.topnav .topnavList .topnavList_unit a:after {
  content: "";
  bottom: 25px;
  right: 0;left: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: absolute;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #3c3c3c;
  border-right: 2px solid #3c3c3c;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  margin: auto;
}*/
.topnav .topnavList .topnavList_unit a:hover:after {
  transition: 0.3s;
  bottom: 20px;
}

.concept .concept_box {
  /*position: relative;
  border: solid #997e5d 1px;*/
  text-align: center;
  max-width: 990px;
  padding: 50px 0;
  margin: auto;
}
.concept .concept_box:before {
  content: "";
  display: block;
  width: 36px;
  height: 37px;
  position: absolute;
  bottom: -1px;
  left: -1px;
  background-size: contain;
}
.concept .concept_box:after {
  content: "";
  display: block;
  width: 36px;
  height: 37px;
  position: absolute;
  top: -1px;
  right: -1px;
  background-size: contain;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; /* 両端に少し余白 */
}

/* デフォルト：PC用画像は表示、SP用画像は非表示 */
.p-bnr-area__bnr img[src*="sp"] {
  display: none;
}

/* 768px 以下のとき */
@media (max-width: 768px) {
  /* SP用画像を表示 */
  .p-bnr-area__bnr img[src*="sp"] {
    display: block;
    width: 100%; /* 必要に応じてサイズ調整 */
    height: auto;
  }

  /* PC用画像は非表示 */
  .p-bnr-area__bnr img[src*="pc"] {
    display: none;
  }
}


.p-specials__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCは3カラム */
  gap: 24px; /* カード間の余白 */
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.p-specials__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.p-specials__item:hover {
  transform: translateY(-4px);
}

.p-specials__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-specials__title {
  font-size: 2rem;
  margin: 12px;
}

.p-specials__body {
  font-size: 1.4rem;
  margin: 0 12px 16px;
  color: #555;
}

@media (max-width: 950px) {
  .p-specials__list {
    grid-template-columns: repeat(2, 1fr);
  }
}



.topsearch_sec {
  background: #F4F4F4;
  padding: 45px 0;
}
.topsearch_sec .mainTitle {
  color: #3c3c3c;
}
.topsearch_sec .fs-c-inputTextGroup {
  justify-content: center;
}
.topsearch_sec .fs-c-dropdown__menu {
  width: 300px;
  height: 35px;
}
.topsearch_sec .fs-c-inputTextGroup > * + * {
    margin-left: 13px;
}
.topsearch_sec button {
  border: none;
  border-radius: 50px;
  background: #033C93;
  color: #fff;
  display: block;
  min-width: 240px;
  max-width: 240px;
  padding: 5px 0;
  margin: 45px auto 0;
}
.topsearch_sec button.arrow_r:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.topbnr_area .itemflex .topbnr_img {
  margin-bottom: 15px;
}


/*10%OFF*/
#price10off {
  position: relative;
  padding: 40px 15px;
  background: #fdf5f2;
  margin: 20px auto 10px;
  background-repeat: no-repeat;
  border: 2px solid #d93c20;
  max-width: 1200px;
}

#price10off .inner {
  max-width: 1200px;
  margin: 0 auto;
}

#price10off h2.seibottl {
  margin-bottom: 0;
}

#price10off h2.seibottl.redttl {
font-family: "Noto Serif JP", serif;
color: #d93c20;
text-align: center;
font-size: 4.6rem;
font-weight: bold;
}
#price10off h2.seibottl.redttl:before,
#price10off h2.seibottl.redttl:after {
  border-color: #d93c20;
}

#price10off .subttl {
  margin-top: 20px;
}
#price10off .subttl span {
  color: #d93c20;
  display: flex;
  align-items: center;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
#price10off .subttl span:before,
#price10off .subttl span:after {
  border-top: 2px solid #d93c20;
  content: "";
  display: inline;
  flex-grow: 1;
}
#price10off .subttl span:before {
  margin-right: 0.5em;
}
#price10off .subttl span:after {
  margin-left: 0.5em;
}

#price10off p {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #3c3c3c;
}

#price10off .officon {
  width: 120px;
  position: absolute;
  right: 20px;
  top: 20px;
}

#price10off .offitemlistcolum4 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 1%;
}
#price10off .offitemlistcolum4 li {
  border: 1px solid #d93c20;
  position: relative;
  background: #fff;
  width: 24%;
  box-sizing: border-box;
}
#price10off .offitemlistcolum4 li a {
  text-decoration: none;
  display: block;
}
#price10off .offitemlistcolum4 li a img {
  width: 100%;
}
#price10off .offitemlistcolum4 li a .soryoicon {
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  z-index: 1;
}
#price10off .offitemlistcolum4 li h5 {
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  margin-top: 10px;
  padding: 0 5%;
}
#price10off .offitemlistcolum4 li h5 a {
  color: #3c3c3c;
}
#price10off .offitemlistcolum4 li h5 a span {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}
#price10off .offitemlistcolum4 li .price {
  /*display: flex;*/
  align-items: center;
  text-align: right;
  margin-top: 5px;
  /*padding: 0 5%;*/
}
#price10off .offitemlistcolum4 li .price a {
  color: #d93c20;
  font-size: 2.7rem;
}
#price10off .offitemlistcolum4 li .price a small {
  font-size: 15px;
  /*margin-right: 5px;*/
}
/*#price10off .offitemlistcolum4 li .price:before {
  border-top: 1px solid #d93c20;
  content: "";
  display: inline;
  flex-grow: 1;
  margin-right: 0.5em;
}*/

.offitemlistcolum4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 列 */
  gap: /* 適宜間隔 */;
}

.offitemlistcolum4 li {
  display: grid;
  grid-template-rows: 1fr auto auto;  /* 上部要素、価格要素を下に */
}

.offitemlistcolum4 li .price {
  grid-row: 3;  /* 一番下の行に配置 */
}

#price10off a.morebtn {
  width: 414px;
  display: block;
  margin: 0 auto;
}
#price10off a.morebtn img {
  width: 100%;
}

/* 価格ブロック */
.price.offprice {
  text-align: right; /* 金額は右寄せ */
}

/* 「カタログ価格より10%OFF」部分 */
.price.offprice small {
  display: block;              /* ボックス化 */
  background: #c00;            /* 赤背景 */
  color: #fff;                 /* 白文字 */
  font-weight: bold;
  text-align: center;          /* 中央揃え */
  padding: 4px 8px;
  /*margin-bottom: 5px;*/
  border-left: none !important; /* 左側罫線を削除 */
  font-size: 13px;
  line-height: 1.4;
}

/* 金額部分 */
.price.offprice a {
  color: #3c3c3c;   /* 通常テキスト色 */
  text-decoration: none;
  font-size: 14px;
}

/* （税込）部分だけ調整 */
.price.offprice .tax {
  color: #777;        /* グレー */
  font-size: 12px;    /* 小さく */
  font-weight: normal; /* 細字 */
  margin-left: 4px;   /* 少し余白 */
}

/* ホバー時にふわっと浮く */
.offitemlistcolum4 li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offitemlistcolum4 li:hover {
  transform: translateY(-4px); /* 上に5px動く */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 影を付けて浮いた感 */
}

/* ------------------------------
   10%OFFセクション レスポンシブ
   ------------------------------ */
@media (max-width: 768px) {
  #price10off {
    padding: 20px 10px;
  }

  #price10off h2.seibottl.redttl {
    font-size: 2.7rem; /* タイトルを小さめに */
  }

  #price10off .subttl {
    margin-top: 10px;
  }
  #price10off .subttl span {
    width: 80%; /* 横幅を広めに */
    font-size: 1.4rem;
  }

  #price10off p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
  }

  /* アイコンはそのまま右上に固定 */
  #price10off .officon {
    width: 80px;
    right: 10px;
    top: 10px;
  }

  /* 商品リストを2カラムに */
  #price10off .offitemlistcolum4 {
    gap: 2%;
  }
  #price10off .offitemlistcolum4 li {
    width: 48%;
    margin-bottom: 20px;
  }

  #price10off .offitemlistcolum4 li h5 {
    font-size: 12px;
    padding: 0 4%;
  }

  #price10off .offitemlistcolum4 li h5 a span {
    font-size: 10px;
  }

  /* 価格調整 */
  #price10off .offitemlistcolum4 li .price a {
    font-size: 2rem; /* 少し縮小 */
  }
  #price10off .offitemlistcolum4 li .price a small {
    font-size: 13px;
  }
  #price10off .offitemlistcolum4 li .price .tax {
    font-size: 11px;
  }

  /* 「一覧はこちら」ボタンも幅100%に */
  #price10off .select_who_nameR {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {

  /* テキスト部分をラップする */
  #price10off .text-wrap {
    max-width: calc(100% - 50px); /* 右に画像分の幅を確保 */
  }

  #price10off h2.seibottl,
  #price10off .subttl {
    margin: 0;
    line-height: 1.2;
  }

  /* 画像 */
  .officon {
    width: 40px;                  /* SP用に縮小 */
    height: auto;
    flex-shrink: 0;               /* 縮まない */
    position: static;             /* absolute解除 */
  }
}


/*神奈川の味ギフト*/
.kanagawa-gift-header {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 20px; /* 画像とテキストの間隔 */
}

.kanagawa-gift-header .mainTitle img {
  height: auto;
  display: block;
}

.kanagawa-gift-header .subTitle {
  flex: 1; /* 右側テキストは残り幅いっぱい */
  font-size: 14px;
  line-height: 1.8;
  margin-top: 50px;
  margin-left: 50px;
  text-align: left;
}

/* PC用 */
.pc-only { display: block; }
.sp-only { display: none; }

/* SP用（例: 768px以下） */
@media screen and (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}


.kanagawa-gift-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* カード間の隙間 */
  /*margin: 0 -10px;*/
}

/* カード本体 */
.kanagawa-gift-item {
  background: #fff;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  width: 24%; /* PCでは4カラム */
  margin: 0 0 20px 0;
}

/* a を flexコンテナにする */
.kanagawa-gift-item a {
  display: flex;
  flex-direction: column;
  height: 100%; /* li の高さに合わせる */
  text-decoration: none;
  color: inherit;
}

/* 画像 */
.kanagawa-gift-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

/* テキスト */
.kanagawa-gift-item .kanagawa_txt {
  flex: 1; /* 可変部分 */
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ボタン */
.kanagawa-gift-item .kanagawa_name.arrow_r {
  margin-top: auto;      /* 一番下に寄せる */
  padding: 10px;
  background-color: #fff; /* 白背景 */
  color: #3c3c3c;        /* 文字色は濃いグレー */
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #ccc; /* 薄いグレーの罫線 */
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  width: 100%;           /* 幅を揃える */
  box-sizing: border-box;
}

/* ホバー */
.kanagawa-gift-item .kanagawa_name.arrow_r:hover {
  background-color: #F4F4F4; /* 薄いグレー背景 */
  text-decoration: none;
}

#select_kanagawa {
  background-color: #fafafa; /* 薄いグレー背景 */
  border: 1px solid #e0e0e0; /* 全体を囲む罫線 */
  border-radius: 8px;        /* 少し角丸にすると柔らかい印象 */
  padding: 40px 20px;        /* 内側の余白 */
  margin: 75px auto;         /* 上下に余白 */
  max-width: 1200px;
}

#select_kanagawa .cInner {
  margin: 0 auto;
}

.kanagawa-gift {
  background: url("https://saikaya.itembox.design/item/img/top_kanagawa_bg.png") no-repeat center top;
  background-size: 1200px auto; /* 背景を幅1200pxで縮尺維持 */
  padding: 40px 20px; /* 内側余白（上下左右調整可） */
  box-sizing: border-box;
}

/* 神奈川ギフト専用4カラム＆レスポンシブ調整 */
#select_kanagawa .kanagawa-gift-list > .kanagawa-gift-item {
  width: calc(25% - 15px) !important; /* 左右マージンを考慮して幅調整 */
  margin-left: 0 !important;    /* 左マージンリセット */
  margin-bottom: 20px;          /* 下余白 */
}

/* 768px以下で2カラム */
@media screen and (max-width: 768px) {
  #select_kanagawa .kanagawa-gift-list > .kanagawa-gift-item {
    width: calc(50% - 10px) !important;
    margin-left: 0 !important;  /* 左マージンリセット */
    margin-bottom: 15px;
  }

  #select_kanagawa .kanagawa-gift-header {
    flex-direction: column;
  }

  #select_kanagawa .kanagawa-gift-header .subTitle {
    margin-left: 0;
    margin-top: 20px;
  }
  #select_kanagawa .kanagawa-gift-header .mainTitle {
    margin:0 auto;
  }
  #select_kanagawa .kanagawa-gift-header .subTitle {
    color: #3c3c3c; /* 黒文字 */
    text-shadow:
      0 0 10px rgba(255, 255, 255, 1),
      10px 10px 10px rgba(255, 255, 255, 0.9),
      -1px -1px 6px rgba(255, 255, 255, 0.9),
      1px -1px 6px rgba(255, 255, 255, 0.9),
      -1px 1px 6px rgba(255, 255, 255, 0.9);
  }
}

.p-bnr-area__bnr {
    display: inline-block;        /* transformを効かせるために必要 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-bnr-area__bnr:hover {
    transform: translateY(-4px);
}


.select_price li a {
  display: block;
  background: white;
  padding: 15px 0;
  text-align: center;
  color: #3c3c3c;
  font-size: 1.8rem;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.select_price li a:after {
  border-color: #3c3c3c;
}
.select_price li a:hover {
  text-decoration: none;
  background: #F4F4F4;
  color: #3c3c3c;
}
.select_price li a:hover:after {
  border-color: #3c3c3c;
}

#select_category{
  background: #F4F4F4;
  padding-bottom: 75px;
}

.select_category .flex4clm_unit {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.select_category .itemflex li a:hover {
  text-decoration: none;
  transform: translateY(-4px);
}
.select_category .itemflex li .category_name {
  background: #fff;
  color: #3c3c3c;
  letter-spacing: -0.08em;
  font-size: 2.0rem;
  padding: 5px 0;
  text-align: center;
  font-weight: 500;
}
.select_category .itemflex li .category_name.arrow_r:after {
  border-color: #3c3c3c;
}
.select_category .itemflex li a:hover .arrow_r:after {
  transition: 0.3s;
  right: 15px;
}
.select_category .itemflex li .category_txt {
  /*min-height: 183px;*/
  padding: 15px;
  font-size: 1.4rem;
}

.select_who.section-main.bar_sec.bar_sec .cInner {
border-top: none;
padding-top: 0px;
margin-top: 0px;
}

.select_who .itemflex li .select_who_pic {
  justify-content: space-between;
  margin-bottom: 10px;
}
.select_who .itemflex li .select_who_pic .select_who_picL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  /*width: 45%;*/
}
.select_who .itemflex li .select_who_pic .select_who_picR {
  /*width: 54%;*/
  font-weight: 300;
  word-break: break-all;
}
.select_who .itemflex li .select_who_name {
  justify-content: space-between;
  margin-bottom: 10px;
}
.select_who .itemflex li .select_who_name .select_who_nameL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 45%;
  font-size: 1.8rem;
  font-weight: bold;
}

p.select_who_nameL{
  margin-bottom: :5px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;  
}

p.select_who_nameR{
  width: 80%;
  padding: 8px 0;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  color: #3c3c3c;
  text-align: center;
  margin: 0 auto;
  transition: background 0.3s; /* スムーズに変化 */
}

p.select_who_nameR a {
  display: block;          /* クリック範囲を広げる */
  color: inherit;          /* 親の文字色を継承 */
  text-decoration: none;   /* 下線を消す */
}

p.select_who_nameR:hover {
  background: #f4f4f4;     /* 薄いグレーに変更 */
}

p.select_who_nameR a.arrow_r:after {
  border-color: #3c3c3c;
  background: #f4f4f4;     /* 矢印部分も同じ色に */
}

/* ボタンの基本スタイル */
p.peroffbtn {
  width: 80%;
  padding: 8px 0;
  border-radius: 30px;
  background: #c00;
  border: 1px solid #c00;
  text-align: center;
  margin: 0 auto;
  transition: all 0.3s;
}

/* テキスト部分 */
p.peroffbtn a.peroff_arrow_r {
  display: block;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-right: 24px;
  right: 18px;
}

/* 右矢印 */
p.peroffbtn a.peroff_arrow_r:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

/* ホバー時の変化 */
p.peroffbtn:hover {
  background: #f4f4f4;
  border: 1px solid #ccc;
}

p.peroffbtn:hover a.peroff_arrow_r {
  color: #000;
}

p.peroffbtn:hover a.peroff_arrow_r:after {
  border-color: #000;
  right: 6px;
}

@media screen and (max-width: 768px) {
  p.peroffbtn {
    width: 100%!important;
    padding: 10px 0;
  }

  p.peroffbtn a.peroff_arrow_r {
    font-size: 14px; /* 文字が大きすぎる場合に調整 */
    padding-right: 30px; /* 改行しても矢印と干渉しにくい */
    white-space: normal; /* ←改行を許可 */
  }

  p.peroffbtn a.peroff_arrow_r:after {
    right: 14px; /* 少し内側にして余裕を確保 */
  }
  #price10off p {
    margin-top: 10px;
  }
  #price10off .offitemlistcolum4 {
        margin: 10px 0px 0px 0px;
        gap: 10px;
  }
  #price10off .offitemlistcolum4 li {
    margin-bottom: 0;
  }    
}



.select_who .itemflex li .select_who_name .select_who_nameR {
  width: 54%;
  text-align: right;
}
.select_who .itemflex li .select_who_name .select_who_nameR a {
  display: block;
  padding: 8px 0;
  border-radius: 50px;
  background: #997e5d;
  color: #fff;
  text-align: center;
}
.select_who .itemflex li .select_who_name .select_who_nameR a:hover {
  text-decoration: none;
}
.select_who .itemflex li .select_who_name .select_who_nameR a.arrow_r:after {
  border-color: #fff;
}
.select_who .itemflex li .select_who_img .flex2clm {
  width: 100%;
}
.select_who .itemflex li .select_who_img .flex2clm_unit {
  text-align: center;
  font-size: 0;
}
.select_who .itemflex li .select_who_img .flex2clm_unit:nth-child(n+3){
  margin-top:12px;
}
.select_who .itemflex li .select_who_img .flex2clm.itemflex > .flex2clm_unit {
  width:calc((100% - 10px)/ 2);
}
.select_who .itemflex li .select_who_img .flex2clm.itemflex > .flex2clm_unit:nth-child(n+2) {
  margin-left: 10px;
}
.select_who .itemflex li .select_who_img .flex2clm.itemflex > .flex2clm_unit:nth-child(2n+1) {
  margin-left: 0;
}

/* 画像と説明文を縦並びにする */
.select_who_pic.itemflex {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.select_who_picL img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; /* 画像とテキストの間の余白 */
}

.select_who_picR {
    font-size: 14px; /* 必要に応じて調整 */
    line-height: 1.5;
}

.ranking {
    background: #F4F4F4;
    padding: 75px 0 30px;
    margin-bottom: 75px;
}

.ranking .flex4clm_unit:nth-child(n+5){
  margin-top:25px;
}
@media screen and (min-width: 769px) {
.flex4clm.itemflex > .flex4clm_unit {
  width:calc((100% - 99px)/ 4);
}
.flex4clm.itemflex > .flex4clm_unit:nth-child(n+2) {
  margin-left: 33px;
}
.flex4clm.itemflex > .flex4clm_unit:nth-child(4n+1) {
  margin-left: 0;
}
}
.ranking .itemflex a:hover {
  text-decoration: none;
}
.ranking .itemflex a:hover *{
  opacity: 0.8;
}
.ranking .flex4clm_unit .itemflex_img {
  position: relative;
}
.ranking .flex4clm_unit .itemflex_img:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-bottom: 60px solid transparent;
  border-left: 60px solid transparent;
}
.ranking .flex4clm_unit .itemflex_img:after {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  content: "";
  line-height: 1;
  color: #fff;
  font-size: 1.6rem;
}
.ranking .flex4clm_unit:nth-of-type(1) .itemflex_img:before {
  border-left-color: #d5ab3d;
}
.ranking .flex4clm_unit:nth-of-type(1) .itemflex_img:after {
  content: "1";
}
.ranking .flex4clm_unit:nth-of-type(2) .itemflex_img:before {
  border-left-color: #626161;
}
.ranking .flex4clm_unit:nth-of-type(2) .itemflex_img:after {
  content: "2";
}
.ranking .flex4clm_unit:nth-of-type(3) .itemflex_img:before {
  border-left-color: #8c4100;
}
.ranking .flex4clm_unit:nth-of-type(3) .itemflex_img:after {
  content: "3";
}
.ranking .flex4clm_unit:nth-of-type(n+4) .itemflex_img:before {
  width: 46px;
  height: 46px;
  border: none;
  background: #3c3c3c;
}
.ranking .flex4clm_unit:nth-of-type(n+4) .itemflex_img:after {
  top: 15px;
  left: 18px;
}
.ranking .flex4clm_unit:nth-of-type(4) .itemflex_img:after {
  content: "4";
}
.ranking .flex4clm_unit:nth-of-type(5) .itemflex_img:after {
  content: "5";
}
.ranking .flex4clm_unit:nth-of-type(6) .itemflex_img:after {
  content: "6";
}
.ranking .flex4clm_unit:nth-of-type(7) .itemflex_img:after {
  content: "7";
}
.ranking .flex4clm_unit:nth-of-type(8) .itemflex_img:after {
  content: "8";
}
.ranking .itemflex_txt {
  margin-top: 5px;
  color: #666666;
}
.ranking .itemflex_name {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 2.4rem;
}
.ranking .itemflex_price {
  line-height: 1.5;
  font-size: 3.0rem;
  font-weight: bold;
}
.ranking .itemflex_price span {
  color: #666666;
  font-size: 1.4rem;
  font-weight: normal;
}

.news {
  margin-bottom: 145px;
}
.news .news_boxList {
  max-width: 950px;
  margin: auto;
  border-top: dashed 1px #3c3c3c;
}
.news .news_boxList .fs-pt-column__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding: 8px 70px;
  border-bottom: dashed 1px #3c3c3c;
}
.news .news_boxList .fs-pt-column__item .fs-pt-column__heading {
  width: 15%;
  letter-spacing: 0.08em;
  font-size: inherit;
  font-weight: inherit;
}
.news .news_boxList .fs-pt-column__item .fs-pt-column__description {
  width: 80%;
  margin: 0;
}

footer {
  margin-top: 260px;
}
footer .ftrtop {
  border-top: solid 1px #dcdcdc;
  border-bottom: solid 1px #dcdcdc;
  padding: 50px 0;
  margin-bottom: 30px;
}
footer .ftrtop h4 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 40px;
}
footer .ftrtop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
footer .ftrtop ul li.tel_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
footer .ftrtop ul li.tel_info:before {
  content: "TEL";
  background: #3c3c3c;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  font-size: 1.4rem;
  font-weight: normal;
  margin-right: 20px;
}
footer .ftrtop ul li.tel_info strong {
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 5.0rem;
  font-weight: 500;
  padding-bottom: 5px;
}
footer .ftrtop ul li.tel_info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-left: 15px;
  text-align: center;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 500;
}
footer .ftrtop ul li.tel_info span:before {
  content: url(https://noguchi56.itembox.design/item/corekara/do_ic02.png);
  padding-right: 10px;
}
footer .ftrtop ul li.tel_info span:after {
  content: url(https://noguchi56.itembox.design/item/corekara/do_ic03.png);
  padding-left: 10px;
}
footer .ftrtop ul li.mail_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 2.0rem;
  font-weight: 500;
  margin-left: 45px;
}
footer .ftrtop ul li.mail_info:before {
  content: "WEB";
  background: #f0ece7;
  color: #3c3c3c;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  font-size: 1.4rem;
  font-weight: normal;
  margin-right: 8px;
}

footer .ftrmid {
  margin-bottom: 65px;
}
footer .ftrmid.flex2clm.itemflex > .flex2clm_unit {
  width:calc((100% - 70px)/ 2);
}
footer .ftrmid.flex2clm.itemflex > .flex2clm_unit:nth-child(n+2) {
  margin-left: 70px;
}
footer .ftrmid .ftrmid_txtbox {
  position: relative;
  padding: 12px 0 0 28px;
}
footer .ftrmid .ftrmid_txtbox:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 1px;
  height: 390px;
  background: #dcdcdc;
}
footer .ftrmid .ftrmid_txtbox h4 {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 500;
}
footer .ftrmid .ftrmid_txtbox h4 a {
  padding-right: 30px;
}
footer .ftrmid .ftrmid_txtbox .ftrmid_txtboxList .ftrmid_txtboxList_unit {
  font-size: 1.4rem;
}

footer .ftrbt .fnav {
  background: #3c3c3c;
}
footer .ftrbt .fnav {
  text-align: center;
  padding: 15px 0;
}
footer .ftrbt .fnav .fnav_unit {
  display: inline-block;
}
footer .ftrbt .fnav .fnav_unit:nth-of-type(n+2) {
  margin-left: 30px;
}
footer .ftrbt .fnav .fnav_unit a {
  font-size: 1.4rem;
  color: #fff;
}
footer .copy {
  padding: 25px 0;
  text-align: center;
  font-size: 1.4rem;
}

.fcopy {
display: flex;
flex-flow: wrap-reverse;
align-items: center;
justify-content: space-around;
}
footer .copy {
padding: 25px 0px 25px 30px;
text-align: center;
font-size: 1.4rem;
}
.fcopy_box {
display: flex;
vertical-align: middle;
padding: 25px 25px 25px 30px;
justify-content: flex-start;
}
.liqur_stop_img {
width: 40px;
height: 100%;
}
p.caution {
position: relative;
color: #000;
font-size: 10px;
line-height: 1.2;
text-align: left;
margin: auto;
padding: 0px 10px;
}
/* レイアウト調整 */
.category_img, .topbnr_img, .mv_sec, .hdr_logo, .hdrtop_bnrbox, .itemflex_img {
  font-size: 0;
}
.contactform{
  height: 1350px;
}
@media only screen and (max-width: 950px){
.contactform{
  height: 1450px;
}
}
@media only screen and (max-width: 670px){
.contactform{
  height: 1800px;
}
}
.formmein {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.p-ranking__item._rank01,
.p-ranking__item._rank02{
    width:50%;
    margin-bottom:50px
}

.p-ranking__item._rank01{
    padding-right:20px
}

.p-ranking__item._rank02{
    padding-left:20px
}

.p-ranking__item._rank03,
.p-ranking__item._rank04,
.p-ranking__item._rank05,
.p-ranking__item._rank06,
.p-ranking__item._rank07,
.p-ranking__item._rank08,
.p-ranking__item._rank09,
.p-ranking__item._rank10
{
    width:calc(25% - 16px);
    margin-bottom: 20px;
}

.p-ranking__item._rank04,
.p-ranking__item._rank05,
.p-ranking__item._rank06,
.p-ranking__item._rank08,
.p-ranking__item._rank09,
.p-ranking__item._rank10{
    margin-left:20px
}

.p-ranking__scrollbar{
    display:none
}
.c-ranking-item__head {
    position: relative;
}
.c-ranking-item__rank {
    position: absolute;
    top: 2px;
    left: 10px;
    z-index: 2;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}
.c-ranking-item__head::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 60px 0 0;
    content: "";
}

.c-ranking-item._rank02 .c-ranking-item__head::before {
    border-color: #807c7c transparent transparent transparent;
}
.c-ranking-item._rank01 .c-ranking-item__head::before {
    border-color: #d5ab3d transparent transparent transparent;
}
.c-ranking-item._rank03 .c-ranking-item__head::before {
    border-color: #8c4100 transparent transparent transparent;
}
.c-ranking-item._rank04 .c-ranking-item__head::before {
    border-color: #3c3c3c transparent transparent transparent;
}
.c-ranking-item._rank05 .c-ranking-item__head::before {
    border-color: #3c3c3c transparent transparent transparent;
}
.c-ranking-item._rank06 .c-ranking-item__head::before {
    border-color: #3c3c3c transparent transparent transparent;
}
.c-ranking-item._rank07 .c-ranking-item__head::before {
    border-color: #3c3c3c transparent transparent transparent;
}
.c-ranking-item._rank08 .c-ranking-item__head::before {
    border-color: #3c3c3c transparent transparent transparent;
}
.c-ranking-item._rank09 .c-ranking-item__head::before {
    border-color: #3c3c3c transparent transparent transparent;
}
.c-ranking-item._rank10 .c-ranking-item__head::before {
    border-color: #3c3c3c transparent transparent transparent;
}
tr.fs-c-orderTotalTable__itemPriceSummary.fs-c-orderTotalTable__mainRow {
    height: auto;
}


.c-importantblock {
padding: 0px 0px 0px;
width: 100%;
text-align: center;
display: flex;
justify-content: center;
}
.c-importantblock__inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
max-width: 1200px;
margin: 0 auto;
text-align: left;
display: inline-block;
width: fit-content;
}
.c-importantblock__text {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.c-importantblock__text {
width: 100%;
}
.c-importantblock__text .c-text {
font-size: 17px;
line-height: 28px;
}
.c-link {
position: relative;
text-decoration: underline;
text-decoration-skip-ink: none;
-webkit-transition: 0.175s;
transition: 0.175s;
cursor: pointer;
}
.c-importantblock__text .c-label {
margin-right: 5px;
}
.c-label.-black {
background: black;
}
.c-label {
display: inline-block;
height: 28px;
padding: 0 15px;
color: #fff;
min-width: 56px;
font-size: 15px;
line-height: 28px;
text-align: center;
font-weight: bold;
white-space: nowrap;
}
span, small, strong {
font-style: normal;
line-height: inherit;
margin: 0;
padding: 0;
cursor: inherit;
}

 /* info-boxを3カラムに */
 .info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center; /* ← 中央揃え */
}

/* 各項目 */
.info-item {
  flex: 0 1 320px; /* 1つの幅を指定（例：320px） */
  box-sizing: border-box;
}

  
  /* 見出し */
  .info-title {
    font-size: 18px;  /* ← 少し大きめ */
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
  }
  
  /* 本文 */
  .info-text {
    font-size: 14px;
    color: #000;
    margin: 0;
    line-height: 1.6;
  }
  
  /* SP用：1カラムにする */
  @media screen and (max-width: 768px) {
    #infomation{
    padding: 20px;
	}
	.info-title {
	font-size:16px;
	}
  .info-box {
    gap: 40px;
  }
    .info-item {
      flex: 1 1 100%;
    }
	.info-text {
    font-size: 13px;
    padding: 0px 10px 0px 10px;

}
}