@charset "utf-8";

:root {
  --black: 51, 51, 51;
  --red: 255, 0, 0;
  --blue: #00324e;
  --gold: #B28F2C;
  /* アイコン 人気商品 季節限定 風呂敷包みetc. */
  --border: rgba(var(--black), .6);
  --contents_width: 1040px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1100px;
  --sidebar_width: 250px;
  --main_color: #2D80B8;
  /* ボタン,限定アイコン */
  --sub_color: #FFFAE0;
  /* ランキング背景色,ランキングのリボン */
  --title_color: #00314D;
  /* タイトル,王冠のアイコン,第○位 */
  --title_border: #A0A9C8;
  /* タイトルの上下二罫線 */
  --background-color-season: #F7FCFF;
  /* イチオシ背景色,限定ラッピング背景色 */
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
menu,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  /* padding-left: 1.25em; */
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select,
option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}

@media all and (max-width: 767px) {

  input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  button,
  select,
  option {
    font-size: 1.6rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-family: "Noto Serif JP", serif;
  color: rgb(var(--black));
  font-size: 1.3rem;
  line-height: 1.75;
  /* letter-spacing: 0.02em; */
}

@media all and (min-width: 768px) {
  body {
    /* min-width: var(--contents_width_with_padding); */
    min-width: 100vw;
    font-size: 1.6rem;
  }

  body p a:hover {
    text-decoration: none;
  }
}

h2,
h3,
h4 {
  font-weight: normal;
}

.l-container {
  position: relative;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: var(--sidebar_width) 20px auto;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }

  .l-container.is-col2 .l-contents {
    flex: 1;
  }

  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}

@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}

@media all and (min-width: 1100px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1099px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 1100px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1100px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}


.for-pc {
  display: none;
}

.for-sp {
  display: block;
}

@media all and (min-width: 768px) {
  .for-pc {
    display: block;
  }

  .for-sp {
    display: none;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}

.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }

  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}

a.u-zoom .u-zoom__img {
  display: block;
}

a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }

  a.u-zoom:hover .u-zoom__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    max-width: 75vw;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.c-head01 {
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  margin-bottom: 18px;
}

.c-head01 span {
  background: url(../img/bg04.jpg) repeat center/85px;
}

.c-head01::after,
.c-head01::before {
  content: "";
  background: #404040;
  background-size: cover;
  width: 75px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
}

.c-head01::before {
  left: auto;
  right: 0;
}

@media all and (min-width: 768px) {
  .c-head01 {
    font-size: 3rem;
    margin-bottom: 45px;
    letter-spacing: 0.14em;
  }

  .c-head01 span {
    background: transparent;
  }

  .c-head01::after,
  .c-head01::before {
    width: 250px;
  }
}

.is-en .c-head01 {
  letter-spacing: 0.02em;
}

.c-btn01__link {
  border: 1px solid var(--blue);
  color: var(--blue);
  display: block;
  padding: 12px 10px;
  font-size: 1.3rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-btn01 {
    text-align: center;
  }

  .c-btn01__link {
    width: 560px;
    display: inline-block;
    padding: 25px 20px;
    font-size: 1.7rem;
    transition: all 0.3s;
  }

  .c-btn01__link:hover {
    background: var(--blue);
    color: #fff;
  }
}

.is-white .c-btn01__link {
  border: 1px solid #fff;
  color: #fff;
}

.is-white .c-btn01__link:hover {
  background: #fff;
  color: var(--blue);
}

/* .l-header
================================================ */
.l-header {
  background: url(../img/bg01.jpg) repeat #fbfeff;
  background-size: 95px;
}


.l-header__inner {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__logo img {
  height: 40px;
}

.l-header__nav {
  display: flex;
  height: 60px;
}

.l-header__lang {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.l-header__lang-item+.l-header__lang-item {
  margin-left: 10px;
}

.l-header__lang a {
  color: var(--blue);
}

.l-header__cart {
  margin-right: -15px;
}

/* .l-header__cart-ico {
  height: 60px;
  width: 60px;
  display: block;
  background: url(../img/ico_cart01.png) no-repeat center #00314d;
  background-size: 28px auto;
} */

@media all and (min-width: 768px) {
  .l-header {
    /* min-width: var(--contents_width_with_padding); */
    width: 100vw;
  }

  .l-header__inner {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .l-header__logo img {
    height: 55px;
  }

  .l-header__lang {
    margin-right: 30px;
  }

  .l-header__lang-item+.l-header__lang-item {
    margin-left: 10px;
  }

  .l-header__lang a {
    text-decoration: none;
  }

  .l-header__lang a:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }

  .l-header__cart {
    margin-right: 0;
    display: flex;
    align-items: center;
  }

  .l-header__cart-ico {
    margin-left: 16px;
    width: 30px;
    height: 25px;
    background: url(../img/ico_cart02.png) no-repeat center;
    background-size: cover;
  }

  .l-header__cart-ico:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }

  .l-header__cart-shop {
    font-size: 1.5rem;
    color: var(--blue);
    letter-spacing: 0;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}


/* 【PC/SP共通】
================================================ */
.indent {
  text-indent: 1em;
}

@media all and (min-width: 768px) {
  a:hover {
    opacity: 0.85;
  }
}

/* 【PC/SP共通】商品リスト
================================================ */

.item__list-item {
  margin: 0 0 30px;
}

.item__list-item:last-child {
  margin: 0;
}

.item__list-txt-name {
  font-size: 1.6rem;
  margin: 0 0 5px;
  font-weight: bold;
}

.item__list-txt-details {
  font-size: 1.4rem;
  margin: 0 0 5px;
}

.item__list-txt-price {
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.item__list-txt-price span {
  font-size: 1.8rem;
}

.l-contents-btn {
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
  background-color: var(--main_color);
  border-radius: 50px;
  padding: 15px 0;
}

.item__list-txt {
  background-color: #ffffff;
  padding: 20px 15px;
}

@media all and (min-width: 768px) {
  .item__list-txt {
    max-width: 480px;
  }

  .item__list-txt-name {
    font-size: 2.4rem;
    line-height: 1.6;
    max-width: 400px;
  }

  .item__list-txt-details {
    font-size: 1.6rem;
    /* margin: 0 0 50px; */
    margin: 0 0 1em;
    max-width: 400px;
  }

  .item__list-txt-price {
    font-size: 1.6rem;
    margin: 0 0 10px;
  }

  .item__list-txt-price span {
    font-size: 2.2rem;
  }

  .l-contents-btn {
    font-size: 1.6rem;
  }

}


/* 【共通】.item__list-txt-icon
================================================ */
.item__list-txt-icon span {
  font-size: 1.4rem;
  padding: 0 5px 0;
  letter-spacing: .03em;
  line-height: 1.4;
  margin-bottom: 5px;
  display: inline-block;
}

.item__list-txt-icon-fast {
  color: #9e0020;
  border: 1px solid #9e0020;
  background: #ffefbc;
}

.item__list-txt-icon-limited {
  color: #ffffff;
  border: 1px solid var(--main_color);
  background: var(--main_color);
}

.item__list-txt-icon-free-shipping {
  color: #ffffff;
  border: 1px solid #9e0020;
  background: #9e0020;
}

.item__list-txt-icon-normal {
  color: #ffffff;
  border: 1px solid var(--gold);
  background: var(--gold);
}

.l-contents-btn {
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
  background-color: var(--main_color);
  border-radius: 50px;
  padding: 13px 0;
}

@media all and (min-width: 768px) {
  .item__list-txt-icon span {
    margin-bottom: 10px;
  }

}

/* main
================================================ */
main {
  margin: 0;
}

/* .l-main-img
================================================ */
.l-main-img {}

@media all and (min-width: 768px) {
  .l-main-img img {
    width: 100vw;
  }
}

/* .main-txt
================================================ */
.main-txt {
  text-align: center;
  font-size: 32px;
  margin-top: 80px;
  color: var(--title_color);
}

@media all and (max-width: 767px) {
  .main-txt {
    font-size: 22px;
    margin-top: 30px;
  }
}

/* .l-coupon-img
================================================ */
.l-coupon-img {
  background-color: #ffffff;
  padding: 30px 20px;
}

.l-coupon-img img:first-child {
  margin: 0 0 15px;
}

@media all and (min-width: 768px) {
  .l-coupon-img {
    max-width: 1040px;
    padding: 50px 0;
    margin: 0 auto;
  }

  .l-coupon-img__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1040px;
  }

  .l-coupon-img__inner a {
    width: 47%;
  }

  .l-coupon-img img:first-child {
    margin: 0;
  }
}

/* .recommend
================================================ */
.recommend {
  background-color: var(--background-color-season);
  padding: 40px 0;
}

.recommend__head {
  font-size: 2.2rem;
  display: inline-block;
  padding: 0.2em 1em;
  margin: 0 auto 30px;
  color: var(--title_color);
  border-top: double 4px var(--title_border);
  border-bottom: double 4px var(--title_border);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media all and (min-width: 768px) {
  .recommend__inner {
    max-width: 960px;
  }

  .recommend {
    padding: 80px 0 100px;
  }

  .recommend__head {
    font-size: 3.2rem;
    padding: 0.2em 1em;
    margin: 0 auto 50px;
  }

  .recommend__list-item .item__list-item {
    display: flex;
    margin: 0 0 70px;
    align-items: center;
    background-color: #ffffff;
  }

  .recommend__list-item .item__list-item.reverse {
    display: flex;
    flex-direction: row-reverse;
  }

  .recommend__list-item .item__list-item:last-child {
    margin: 0;
  }

  .recommend__list-item .item__list-img {
    max-width: 50vw;
  }

  .recommend__list-item .item__list-txt {
    padding: 20px 40px;
    width: 50vw;
    box-sizing: border-box;
  }

}

/* .content
================================================ */

#content_01 {
  padding-top: 60px;
}

#content_02,
#content_03,
#content_04 {
  padding-top: 100px;
}

@media all and (max-width: 767px) {
  #content_01 {
    padding-top: 40px;
    margin-top: -40px;
  }

  #content_02,
  #content_03,
  #content_04 {
    padding-top: 40px;
  }
}


/* .budget
================================================ */
.budget {
  background-color: #ffffff;
  padding: 40px 0;
}

.budget__head {
  font-size: 2.2rem;
  display: inline-block;
  padding: 0.2em 1em;
  margin: 0 auto 30px;
  color: var(--title_color);
  border-top: double 4px var(--title_border);
  border-bottom: double 4px var(--title_border);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.budget__subhead {
  font-size: 2.0rem;
  text-align: center;
  padding: 0.2em 1em;
  margin: 0 auto 10px;
  color: var(--title_color);
  background-color: var(--sub_color);
}

.budget__list {
  margin: 0 0 50px;
}

.budget__list-item {
  margin: 0 0 30px;
}

.budget__list-img {
  margin: 0 0 10px;
}

.budget__list-item.half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: start;
}

.budget__list-item.half .budget__list-img {
  width: 42vw;
}

.budget__list-item.half .budget__list-txt {
  width: 42vw;
}

.budget__list-item.half .l-contents-btn {
  font-size: 1.4rem;
  border-radius: 50px;
  padding: 9px 0;
}

.budget__list-item.half .item__list-txt-name {
  font-size: 1.4rem;
  font-weight: bold;
}

.budget__list-item.half .item__list-txt-name {
  font-size: 1.4rem;
  font-weight: bold;
}

.budget__list-item.half .item__list-txt-price {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.budget__list-item.half .item__list-txt-price span {
  font-size: 1.4rem;
}

li.budget__list-item.half:last-child {
  margin: 0;
}

ul.budget__list:last-child {
  margin: 0;
}

@media all and (min-width: 768px) {
  .budget__inner {
    max-width: 960px;
  }

  .budget {
    padding: 80px 0 20px;
  }

  .budget__head {
    font-size: 3.2rem;
    padding: 0.2em 1em;
    margin: 0 auto 50px;
  }

  .budget__subhead {
    font-size: 3.0rem;
    margin: 0 auto 30px;
  }

  .budget__list {
    display: flex;
    flex-wrap: wrap;
  }

  .budget__list-txt {
    padding: 0 40px;
  }

  .budget__list .budget__list-item {
    display: flex;
  }

  .budget__list .budget__list-item:first-child {
    flex-grow: 1;
    align-items: center;
  }

  .budget__list .budget__list-img:first-child {
    width: 480px;
  }

  .budget__list .half .budget__list-img {
    max-width: 180px;
  }

  .budget__list .half .budget__list-txt {
    max-width: 21vw;
    padding: 0 20px;
  }

  .budget__list-item.half .item__list-txt-name {
    font-size: 2.2rem;
  }

  .budget__list-item.half .item__list-txt-price {
    font-size: 1.6rem;
    margin: 0 0 10px;
  }

  .budget__list-item.half .item__list-txt-price span {
    font-size: 2.2rem;
  }

  .budget__list-item.half .l-contents-btn {
    font-size: 1.6rem;
    border-radius: 50px;
    padding: 11px 0;
  }

  .budget__list {
    margin: 0 0 100px;
  }

  ul.budget__list {
    justify-content: space-around;
  }
}

@media all and (min-width: 960px) {
  .budget__list .half .budget__list-img {
    max-width: 200px;
  }

  .budget__list .half .budget__list-txt {
    max-width: 240px;
    padding: 0 20px;
  }
}

/* .recipient
================================================ */
.recipient {
  background-color: #ffffff;
  padding: 40px 0;
}

.recipient__head {
  font-size: 2.2rem;
  display: inline-block;
  padding: 0.2em 1em;
  margin: 0 auto 30px;
  color: var(--title_color);
  border-top: double 4px var(--title_border);
  border-bottom: double 4px var(--title_border);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.recipient__subhead {
  font-size: 2.0rem;
  text-align: center;
  padding: 0.2em 1em;
  margin: 0 auto 10px;
  color: var(--title_color);
  background-color: var(--sub_color);
}

.recipient__list {
  margin: 0 0 50px;
}

.recipient__list-item {
  margin: 0 0 30px;
}

.recipient__list-img {
  margin: 0 0 10px;
}

.recipient__list-item.half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: start;
}

.recipient__list-item.half .recipient__list-img {
  width: 42vw;
}

.recipient__list-item.half .recipient__list-txt {
  width: 42vw;
}

.recipient__list-item.half .l-contents-btn {
  font-size: 1.4rem;
  border-radius: 50px;
  padding: 9px 0;
}

.recipient__list-item.half .item__list-txt-name {
  font-size: 1.4rem;
  font-weight: bold;
}

.recipient__list-item.half .item__list-txt-name {
  font-size: 1.4rem;
  font-weight: bold;
}

.recipient__list-item.half .item__list-txt-price {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.recipient__list-item.half .item__list-txt-price span {
  font-size: 1.4rem;
}

li.recipient__list-item.half:last-child {
  margin: 0;
}

ul.recipient__list:last-child {
  margin: 0;
}

@media all and (min-width: 768px) {
  .recipient__inner {
    max-width: 960px;
  }

  .recipient {
    padding: 80px 0 100px;
  }

  .recipient__head {
    font-size: 3.2rem;
    padding: 0.2em 1em;
    margin: 0 auto 50px;
  }

  .recipient__subhead {
    font-size: 3.0rem;
    margin: 0 auto 30px;
  }

  .recipient__list {
    display: flex;
    flex-wrap: wrap;
  }

  .recipient__list-txt {
    padding: 0 40px;
  }

  .recipient__list .recipient__list-item {
    display: flex;
  }

  .recipient__list .recipient__list-item:first-child {
    flex-grow: 1;
    align-items: center;
  }

  .recipient__list .recipient__list-img:first-child {
    width: 480px;
  }

  .recipient__list .half .recipient__list-img {
    max-width: 180px;
  }

  .recipient__list .half .recipient__list-txt {
    max-width: 21vw;
    padding: 0 20px;
  }

  .recipient__list-item.half .item__list-txt-name {
    font-size: 2.2rem;
  }

  .recipient__list-item.half .item__list-txt-price {
    font-size: 1.6rem;
    margin: 0 0 10px;
  }

  .recipient__list-item.half .item__list-txt-price span {
    font-size: 2.2rem;
  }

  .recipient__list-item.half .l-contents-btn {
    font-size: 1.6rem;
    border-radius: 50px;
    padding: 11px 0;
  }

  .recipient__list {
    margin: 0 0 100px;
  }

  ul.recipient__list {
    justify-content: space-around;
  }
}

@media all and (min-width: 960px) {
  .recipient__list .half .recipient__list-img {
    max-width: 200px;
  }

  .recipient__list .half .recipient__list-txt {
    max-width: 240px;
    padding: 0 20px;
  }
}


/* .rank
================================================ */
.rank {
  background-color: var(--sub_color);
  padding: 40px 0;
}

.rank__list {
  background-color: #ffffff;
  padding: 8vw 15vw;
  display: flex;
  flex-direction: column;
}

.rank__list li:last-child {
  margin: 0;
}

.rank__subhead {
  display: flex;
  flex-direction: column;
  width: 45vw;
  margin: 0 auto 10px;
}

.rank__subhead-icon {
  text-align: center;
}

.rank__subhead-icon path {
  fill: var(--title_color);
}

.rank__subhead-txt {
  position: relative;
  display: inline-block;
  height: 36px;
  line-height: 32px;
  padding: 0 3rem;
  background-color: var(--sub_color);
  color: var(--title_color);
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.2em;
}

.rank__subhead-txt span {
  font-size: 3.6rem;
  font-weight: 300;
}

.rank__subhead-txt::before,
.rank__subhead-txt::after {
  position: absolute;
  top: 0;
  width: 0px;
  height: 0px;
  border-color: var(--sub_color) transparent;
  border-style: solid;
  content: '';
}

.rank__subhead-txt::before {
  left: -15px;
  border-width: 18px 0px 18px 15px;
}

.rank__subhead-txt::after {
  right: -15px;
  border-width: 18px 15px 18px 0px;
}

.rank__list-txt-name {
  font-size: 1.8rem;
  margin: 0 0 10px;
  font-weight: bold;
}

.rank__list-img {
  width: 60vw;
  margin: 0 auto 10px;
}

.rank__list-txt-price {
  font-size: 1.6rem;
  margin: 0 0 10px;
  text-align: left;
}

.rank__list-item {
  margin: 0 auto 30px;
  display: inline-block;
  text-align: center;
}

.rank__list-txt .item__list-txt-icon {
  text-align: left;
}

@media all and (min-width: 768px) {
  .rank__inner.u-inner {
    max-width: 85vw;
  }

  .rank__list {
    background-color: #ffffff;
    flex-direction: row;
    padding: 0;
    justify-content: center;
    gap: 0.5em;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .rank__subhead {
    width: 10vw;
  }

  .rank__list-txt,
  .rank__list-img {
    width: 180px;
  }

  .rank__list-txt .item__list-txt-icon span {
    font-size: 1.3rem;
    letter-spacing: 0;
    margin-bottom: 5px;
  }

  .rank__list-item {
    margin: 0;
    background-color: #ffffff;
    padding: 0 5px;
  }

  .rank__subhead-txt {
    padding: 0;
  }

  .rank__list-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .rank__list-txt-details {
    height: 357px;
  }

}

@media all and (min-width: 1260px) {
  .rank__inner.u-inner {
    max-width: 1040px;
  }

  .rank__list-txt,
  .rank__list-img {
    width: 220px;
  }

  .rank__list-txt-details {
    height: 370px;
  }

}

/* .wrapping
================================================ */
.wrapping {
  background-color: var(--background-color-season);
  padding: 40px 0;
}

.c-tit01.is-min .in {
  font-size: 15px;
}

.c-tit01 .in {
  min-width: 100%;
  display: inline-block;
  font-size: 30px;
  border-top: 2px double #0f304f;
  border-bottom: 2px double #0f304f;
  color: #0f304f;
  letter-spacing: 0;
  padding: 5px 0;
}

.yt .c-tit01 {
  margin-bottom: 20px;
}

.c-tit01 {
  text-align: center;
  margin-bottom: 35px;
  letter-spacing: 0;
}

.c-tit01.txt {
  text-align: center;
  font-style: 12px;
  line-height: 1.5;
}

@media all and (min-width: 768px) {
  .wrapping__inner.u-inner {
    max-width: 960px;
  }

  .wrapping {
    padding: 80px 0 100px;
  }

  .intro02 {
    position: relative;
  }


  .intro02 img {
    width: 960px;
  }

  .yt .txt {
    text-align: center;
    line-height: 2;
    font-size: 18px;
    color: #000;
  }

  .intro02 .txt {
    text-align: center;
    position: absolute;
    bottom: 33px;
    width: 100%;
    font-size: 18px;
    color: #000;
    line-height: 2.0;
  }

  .yt .box {
    background: #f7fcff;
  }

  .c-tit01.is-min .in {
    font-size: 27px;
  }

  .c-tit01 .in {
    min-width: 300px;
    display: inline-block;
    font-size: 30px;
    border-top: 4px double #0f304f;
    border-bottom: 4px double #0f304f;
    color: #0f304f;
    letter-spacing: 0;
    position: relative;
    padding: 14px 0 17px;
  }

  .yt .c-tit01 {
    margin-bottom: 20px;
  }

  .c-tit01 {
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 0;
    line-height: 1.6;
  }
}

/*--------------------------------------
PC 右フローティングボタン
---------------------------------------*/
@media all and (max-width: 767px) {
  #nav_right {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .nav_right {
    position: fixed;
    z-index: 999;
    top: 200px;
    right: 0;
    width: 120px;
  }

  .nav_right a {
    list-style: none;
    font-size: 1.5rem;
    position: relative;
  }

  .nav_right a {
    box-sizing: border-box;
    display: block;
    /* width: 120px; */
    height: 72px;
    text-align: center;
    padding: 40px 0px 0px 0px;
    line-height: 1.4;
    border-radius: 10px 0 0 10px;
    margin: 0 0 2px;
  }

  /*奇数*/
  .nav_right a:nth-child(odd) {
    color: #fff;
    background: #00314D;
  }

  /*偶数*/
  .nav_right a:nth-child(even) {
    color: #fff;
    background: #264460;
  }

  .nav_right_recommend:before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 24px;
    background-image: url(../img/icon_recommend.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .nav_right_budget:before {
    content: '';
    display: inline-block;
    width: 17px;
    height: 24px;
    background-image: url(../img/icon_budget.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .nav_right_rank:before {
    content: '';
    /*何も入れない*/
    display: inline-block;
    width: 26px;
    /*画像の幅*/
    height: 21px;
    /*画像の高さ*/
    background-image: url(../img/icon_rank.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .nav_right_home:before {
    content: '';
    /*何も入れない*/
    display: inline-block;
    width: 24px;
    /*画像の幅*/
    height: 12px;
    /*画像の高さ*/
    background-image: url(../img/icon_home.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}


/*--------------------------------------
SP固定ナビ
---------------------------------------*/
.scroll_navi {
  width: 100%;
  background: #00314D;
  position: fixed;
  bottom: 0;
  z-index: 1;
  color: #ffffff;
}

.scroll_navi ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.scroll_navi ul a {
  width: 25%;
  font-size: 1.3rem;
  text-align: center;
  border-left: 1px solid #fff;
  box-sizing: border-box;
  list-style: none;
  height: 64px;
  position: relative;
}

.scroll_navi ul a:first-child {
  border: none;
}

.scroll_navi ul li {
  width: 100%;
  color: #fff;
  padding: 3px 0 5px;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.scroll_navi_recommend:before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 23px;
  background-image: url(../img/icon_recommend.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll_navi_budget:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 23px;
  background-image: url(../img/icon_budget.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll_navi_rank:before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 21px;
  background-image: url(../img/icon_rank.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll_navi_home:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 10px;
  background-image: url(../img/icon_home.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*デフォルトで非表示にする*/
.scroll_navi {
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------
SPハンバーガーメニュー
---------------------------------------*/
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.menu-trigger {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(0);
  transition: transform .5s;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  padding: 20px 14px;
  background: #00314D;
}

.menu-trigger.active {
  transform: translateX(-235px);
}

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #ffffff;
}

.menu-trigger span:nth-of-type(1) {
  top: 20px;
}

.menu-trigger span:nth-of-type(2) {
  top: 30px;
}

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

.menu-trigger span:nth-of-type(3) {
  bottom: 19px;
}

.menu-trigger.active:before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url(../img/menu_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 99999;
  transform: translatex(-14px);
  top: 0;
  position: absolute;
}

.drawer_menu_nav {
  width: 235px;
  height: 100%;
  background-color: #00314D;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(235px);
  transition: all .5s;
}

.drawer_menu_nav.open {
  transform: translateZ(0);
}

.drawer_menu_nav li {
  list-style: none;
  text-align: left;
  font-size: 1.6rem;
  display: block;
  padding: 1em 1.8em;
  font-size: 1.6rem;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}


/*--------------------------------------
SPフッター
---------------------------------------*/
@media all and (max-width: 767px) {
  .cmn-btn_style01 {
    border: 1px solid #fff;
    color: #fff !important;
    font-size: 16px;
    width: 100%;
    display: inline-block;
    padding: 11px 15px 12px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-weight: 600;
    box-sizing: border-box;
    text-decoration: none !important;
    text-align: center;
    letter-spacing: -.05em;
  }

  .cmn-btn_style01:hover {
    opacity: .7;
    text-decoration: none
  }

  .cmn-arw_wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px
  }

  .cmn-arw_next {
    display: inline-block;
    color: #fff;
    position: relative;
    width: 8px;
    height: 8px;
    bottom: 3px;
    transform: translateX(-25%) rotate(45deg);
    transition: all 0.3s
  }

  .cmn-arw_next::before,
  .cmn-arw_next::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 1px
  }

  .cmn-arw_next::before {
    top: 0;
    left: 0;
    right: 0;
    height: 1px
  }

  .cmn-arw_next::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px
  }

  .cmn-btn_style02 {
    border-radius: 100px;
    padding: 10px 40px 12px 30px;
    font-size: 15px;
    color: #333;
    display: inline-block;
    position: relative;
    transition: all 0.3s
  }

  .cmn-btn_style02:hover {
    opacity: .7;
    text-decoration: none !important
  }

  .foot-service {
    background-color: #F5F5F5;
    margin-top: 74px;
  }

  .foot-service_heading {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .05em;
    position: relative;
    top: -22px;
    margin-bottom: 5px;
    color: #00314D;
    white-space: nowrap
  }

  .foot-service_heading>span {
    width: 47.4%;
    height: 12.6vmin;
    display: inline-block;
    position: relative;
    top: -2px;
    margin-right: 6px
  }

  .foot-service_inner {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 30px
  }

  .foot-service_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 40px
  }

  .foot-service_listItem {
    width: 33.33333% !important
  }

  .foot-service_listItem:nth-child(4),
  .foot-service_listItem:nth-child(5) {
    width: 50% !important
  }

  .foot-service_listItem:not(:nth-of-type(-n+3)) {
    margin-top: 30px !important
  }

  .foot-service_listIcon {
    width: 43px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px
  }

  .foot-service_listDetail {
    text-align: center
  }

  .foot-service_listDetail p {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    color: #00314D
  }

  .foot-service_listDetail p a {
    text-decoration: underline
  }

  .foot-service_listDetailText {
    font-size: 17px
  }

  .foot-service_listDetailTextNote {
    font-size: 14px
  }

  .foot-service_listDetailTextNote a {
    color: #00314D !important;
    display: inline-block !important;
    font-size: 14px !important;
    text-decoration: underline !important;
    padding: 0 !important
  }

  .foot-about {
    margin-top: 44px
  }

  .foot-about_inner {
    padding-right: 20px;
    padding-left: 20px
  }

  .foot-about_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
  }

  .foot-about_listItem {
    width: 100%;
    position: relative
  }

  .foot-about_listItem:not(:last-child) {
    margin-bottom: 40px !important
  }

  .foot-about_listHeading {
    color: #00314D;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .05em;
    margin-bottom: 14px
  }

  .foot-about_listHeading::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #00314D;
    display: block;
    margin-top: 10px
  }

  .foot-about_listPointText,
  .foot-about_listDetailText {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6
  }

  .foot-about_listDetailText .text-small {
    font-size: 13px
  }

  .foot-about_listDetailNote {
    font-size: 13px;
    line-height: 1.7
  }

  .foot-about_listDetailText+.foot-about_listDetailNote {
    margin-top: 10px
  }

  .foot-about_listDetailText a {
    text-decoration: underline !important;
    padding: 0 !important;
    border-bottom: none !important;
    color: #333 !important;
    font-size: 14px !important;
    display: inline-block !important
  }

  .foot-about_listPointText {
    display: flex
  }

  .foot-about_listPointText>span {
    margin-right: 5px
  }

  .foot-about_listPointImg {
    margin-top: 3px
  }

  .foot-about_listPointItem:not(:last-child) {
    margin-bottom: 3px
  }

  .foot-about_btn {
    background-color: #EBEBEB;
    position: absolute;
    font-size: 13px !important;
    color: #333 !important;
    font-weight: 600 !important;
    padding: 5px 22px 7px 15px !important;
    border: none !important;
    right: 0 !important;
    top: -2px
  }

  .foot-about_btnArwWrap {
    right: 10px
  }

  .foot-about_btnArw {
    width: 5px;
    height: 5px;
    color: #333;
    bottom: 4px
  }

  .foot-about_listTable {
    margin-top: 10px;
    margin-bottom: 15px
  }

  .foot-about_listTableHeading,
  .foot-about_listTableDetail {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    padding: 0
  }

  .foot-about_listTableHeading {
    width: 67%
  }

  .foot-about_listTableDetail {
    width: 33%
  }

  .foot-about_listTableDetail>span {
    font-size: 12px
  }

  .foot-about_listDetailImg.card {
    margin-bottom: 5px;
    margin-top: 5px
  }

  .foot-about_listDetailImg.gift {
    width: 56.7%;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto
  }

  .foot-about_listDetailImgHeading {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px
  }

  .foot-nav {
    margin-top: 50px;
    background-color: #F5F5F5 !important
  }

  .foot-nav_inner {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 40px
  }

  .foot-nav_head {
    margin-bottom: 40px
  }

  .foot-nav_logo {
    width: 182px;
    margin-bottom: 34px
  }

  .foot-nav_infoMailmagazineHeading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px
  }

  .foot-nav_infoLineDetailText {
    font-size: 14px
  }

  .foot-nav_infoMailmagazineText {
    font-size: 14px
  }

  .foot-nav_infoMailmagazineBtn {
    background-color: #00314D;
    margin-top: 12px;
    padding: 16px 50px 18px;
    width: 97%;
    text-decoration: none !important;
    box-sizing: border-box
  }

  .foot-nav_infoMailmagazineBtnText::before {
    content: "";
    width: 16px;
    height: 11px;
    background: url(https://kogetsu-ec.com/img/footer-new/icon_mail01.svg) no-repeat center center / contain;
    margin-right: 8px;
    display: inline-block
  }

  .foot-nav_infoMailmagazineBtnText {
    color: #fff;
    text-align: center
  }

  .foot-nav_infoMailmagazineBtnArw {
    width: 5px;
    height: 5px;
    bottom: 5px
  }

  .foot-nav_menu {
    padding: 0;
    font-size: 100%;
    float: none;
    text-align: left;
    color: #333;
    margin-top: 5px;
    margin-bottom: 36px
  }

  .foot-nav_menuListHeading {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    position: relative
  }

  .foot-nav_menuListHeading::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #00314D;
    display: block;
    margin-top: 12px;
    position: relative
  }

  .foot-nav_menuListHeadingBtnWrap {
    position: absolute;
    transform: translateY(-120%);
    right: 0;
    top: 50%
  }

  .foot-nav_menuListHeadingBtn {
    position: relative;
    width: 10px;
    height: 10px;
    display: block;
    transition: 0.6s cubic-bezier(.34, 1.56, .64, 1);
    cursor: pointer;
    will-change: transform
  }

  .foot-nav_menuListHeadingBtn:hover {
    transform: scale(.92)
  }

  .foot-nav_menuListHeadingBtn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    border-radius: 10px;
    background: #000;
    display: block
  }

  .foot-nav_menuListHeadingBtn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100%;
    border-radius: 10px;
    background: #000;
    display: block;
    transition: 0.3s cubic-bezier(.76, 0, .24, 1);
    will-change: transform
  }

  .foot-nav_menuListHeading.js-accordion-title.is-active .foot-nav_menuListHeadingBtn {
    transform: rotate(180deg)
  }

  .foot-nav_menuListHeading.js-accordion-title.is-active .foot-nav_menuListHeadingBtn:after {
    transform: translate(-50%, -50%) rotate(90deg)
  }

  .foot-nav_menuListItem {
    width: 100%
  }

  .foot-nav_menuListItem:not(:last-child) {
    margin-bottom: 14px !important
  }

  .foot-nav_menuListNav {
    display: none;
    border-bottom: 1px solid #00314D;
    margin-bottom: 15px !important;
    padding-bottom: 20px !important;
    margin-top: 14px !important
  }

  .foot-nav_menuListNavSubHeading {
    width: 47.7% !important;
    position: relative
  }

  .foot-nav_menuListNavSubHeading::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #00314D;
    display: block;
    position: absolute;
    bottom: 0
  }

  .foot-nav_menuListNavText a,
  .foot-nav_menuListNavSubHeading a {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #333 !important;
    text-align: left !important;
    border-bottom: none !important;
  }

  .foot-nav_menuListNavText a {
    padding: 10px 0 !important;
    font-size: 15px !important;
  }

  .foot-nav_menuListNavText:not(:last-of-type) {
    margin-bottom: 20px
  }

  .foot-nav_menuListNavSubHeading a {
    font-size: 14px !important;
    padding: 15px 20px 15px 0 !important;
    position: relative !important;
    display: block;
  }

  .foot-nav_menuListNavSubHeading.single a {
    top: 13%
  }

  .foot-nav_menuListNavSubHeadingArwWrap {
    right: 0
  }

  .foot-nav_menuListNavSubHeadingArw {
    color: #333;
    width: 6px;
    height: 6px
  }

  .foot-nav_menuListNavSub {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
  }

  .foot-nav_footBnrArea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
  }

  .foot-nav_footBnr {
    width: 48.3% !important;
    box-sizing: border-box
  }

  .foot-nav_footBnr a {
    padding: 0 !important;
    border-bottom: none !important
  }

  .foot-nav_footBnr:not(:nth-of-type(-n+2)) {
    margin-top: 10px !important
  }

  .footbot {
    margin-bottom: -3em;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    background: #00314d;
  }

  .footbot-heading {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600
  }

  .footbot-sns {
    display: flex;
    justify-content: space-between;
    width: 49.3%;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 26px !important
  }

  .footbot-sns_item {
    width: 18.6% !important
  }

  .footbot-sns_itemLink {
    text-decoration: none !important;
    padding: 0 !important;
    border-bottom: none !important
  }

  .footbot-copyright {
    color: #fff;
    text-align: center;
    font-size: 12px !important;
    font-weight: 600
  }

  .foot-nav_infoMailmagazine {
    margin-bottom: 15px;
  }

  /*	20240227追加*/
  .foot-nav_infoMailmagazine {
    margin-bottom: 15px;
  }

  .foot-nav_infoLINEHeading,
  .foot-nav_infoNEWmemHeading {
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px
  }

  .foot-nav_infoLINEBtnText::before {
    content: "";
    width: 23px;
    height: 22px;
    background: url(https://kogetsu-ec.com/img/footer-new/icon_line01.svg) no-repeat center center / contain;
    display: inline-block;
    margin: 0 8px -5px -10px;
  }

  .foot-nav_infoLINEBtn,
  .foot-nav_infoNEWmemBtn {
    background-color: #00314D;
    margin-top: 12px;
    padding: 16px 50px 18px;
    width: 97%;
    text-decoration: none !important;
    box-sizing: border-box;
    margin: 11px auto 0;
    display: block;
  }

  .foot-nav_infoLINEBtnText,
  .foot-nav_infoNEWmemBtnText {
    color: #fff;
    text-align: center
  }

  .foot-nav_infoLINEBtnArw,
  .foot-nav_infoNEWmemBtnArw {
    width: 5px;
    height: 5px;
    bottom: 5px
  }

  .foot-nav_infoNEWmemBtnText::before {
    content: "";
    width: 15px;
    height: 17px;
    background: url(https://kogetsu-ec.com/img/footer-new/icon_newmem01.svg) no-repeat center center / contain;
    display: inline-block;
    margin: 0 10px -3px -10px;
  }

  /* 追記 */
  .foot-nav_footBnrArea {
    /* justify-content: center; */
    gap: 0;
  }
}


/*--------------------------------------
PCフッター
---------------------------------------*/
@media all and (min-width: 768px) {

  /* .cmn-btn_style01
  ------------------------- */
  .cmn-btn_style01 {
    border: 1px solid #fff;
    color: #fff !important;
    font-size: 16px;
    display: inline-block;
    padding: 22px 15px;
    width: 380px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    position: relative;
    font-weight: 600;
    box-sizing: border-box;
  }

  .cmn-btn_style01:hover {
    /* background-color: #fff;
    text-decoration: none;
    color: #000 !important; */
    opacity: 0.7;
    text-decoration: none;
  }

  /* .cmn-arw
  ------------------------- */
  .cmn-arw_wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
  }

  .cmn-arw_next {
    display: inline-block;
    /* vertical-align: middle; */
    color: #fff;
    /* line-height: 1; */
    position: relative;
    width: 8px;
    height: 8px;
    bottom: 3px;
    transform: translateX(-25%) rotate(45deg);
    transition: all 0.3s;
  }

  .cmn-arw_next::before,
  .cmn-arw_next::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 1px;
  }

  .cmn-arw_next::before {
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
  }

  .cmn-arw_next::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
  }

  /* .cmn-btn_style02
  ------------------------- */
  .cmn-btn_style02 {
    border-radius: 100px;
    padding: 10px 40px 12px 30px;
    font-size: 15px;
    color: #333;
    display: inline-block;
    position: relative;
    transition: all 0.3s;
  }

  .cmn-btn_style02:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }

  /*

  /* .foot-service
------------------------- */
  .foot-service {
    background-color: #F5F5F5;
    margin-top: 180px;
  }

  .foot-service_heading {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2.88px;
    position: relative;
    top: -40px;
    margin-bottom: 10px;
    color: #00314D;
  }

  .foot-service_heading>span {
    width: 238px;
    height: 70.88px;
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 12px;
  }

  .foot-service_inner {
    width: 1040px;
    margin-right: auto;
    margin-left: auto;
  }

  .foot-service_list {
    display: flex;
    padding-bottom: 40px;
  }

  .foot-service_listItem {
    width: 208px;
  }

  .foot-service_listIcon {
    width: 63px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
  }

  .foot-service_listDetail {
    text-align: center;
  }

  .foot-service_listDetail p {
    line-height: 1.5;
    font-weight: bold;
    color: #00314D;
  }

  .foot-service_listDetail p a {
    text-decoration: underline;
  }

  .foot-service_listDetailText {
    font-size: 17px;
  }

  .foot-service_listDetailTextNote {
    font-size: 14px;
  }

  /* .foot-about
------------------------- */
  .foot-about {
    margin-top: 60px;
  }

  .foot-about_inner {
    width: 1040px;
    margin-right: auto;
    margin-left: auto;
  }

  .foot-about_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .foot-about_listItem {
    width: 305px;
  }

  .foot-about_listItem:not(:nth-of-type(-n+3)) {
    margin-top: 55px;
  }

  .foot-about_listHeading {
    color: #00314D;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
  }

  .foot-about_listHeading::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #00314D;
    display: block;
    margin-top: 10px;
  }

  /* 全体のフォント + point */
  .foot-about_listPointText,
  .foot-about_listDetailText {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
  }

  /* 全体 */
  .foot-about_listDetailText .text-small {
    font-size: 13px;
  }

  .foot-about_listDetailNote {
    font-size: 12px;
    line-height: 1.8;
  }

  .foot-about_listDetailText+.foot-about_listDetailNote {
    margin-top: 10px;
  }

  .foot-about_listDetailText a {
    text-decoration: underline;
  }

  /* point */
  .foot-about_listPointText {
    display: flex;
  }

  .foot-about_listPointText>span {
    margin-right: 5px;
  }

  .foot-about_listPointImg {
    margin-top: 3px;
  }

  .foot-about_listPointItem:not(:last-child) {
    margin-bottom: 3px;
  }

  /* btn */
  .foot-about_btn {
    background-color: #EBEBEB;
    margin-top: 15px;
  }

  .foot-about_btnArw {
    width: 5px;
    height: 5px;
    color: #333;
    bottom: 4px;
  }

  /* foot-about_listTable */
  .foot-about_listTable {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .foot-about_listTableHeading,
  .foot-about_listTableDetail {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    padding: 0;
  }

  .foot-about_listTableHeading {
    width: 67%;
  }

  .foot-about_listTableDetail {
    width: 33%;
  }

  .foot-about_listTableDetail>span {
    font-size: 12px;
  }

  /* img */
  .foot-about_listDetailImg.gift {
    width: 233px;
    margin-top: 20px;
  }

  /* delivery */
  .foot-about_listDetailImgHeading {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  /* .foot-nav
------------------------- */
  .foot-nav {
    margin-top: 100px;
    background-color: #F5F5F5;
  }

  .foot-nav_inner {
    width: 1040px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .foot-nav_head {
    display: flex;
    margin-bottom: 80px;
  }

  /* foot-nav_info */
  .foot-nav_info {
    width: 430px;
  }

  .foot-nav_infoLogo {
    width: 270px;
    margin-bottom: 34px;
  }

  .foot-nav_infoLine {
    display: flex;
    margin-bottom: 30px;
  }

  .foot-nav_infoLineQR {
    width: 58px;
    height: 58px;
    margin-right: 10px;
  }

  .foot-nav_infoLineDetail {
    margin-top: 3px;
  }

  .foot-nav_infoLineDetailHeading {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .foot-nav_infoLineDetailText {
    font-size: 14px;
  }

  .foot-nav_infoMailmagazineHeading {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .foot-nav_infoLineDetailText {
    font-size: 14px;
  }

  .foot-nav_infoMailmagazineText {
    font-size: 14px;
  }

  .foot-nav_infoMailmagazineBtn {
    background-color: #00314D;
    margin-top: 15px;
    padding: 16px 50px 18px;
  }

  .foot-nav_infoMailmagazineBtnText::before {
    content: "";
    width: 16px;
    height: 11px;
    background: url(https://kogetsu-ec.com/img/footer-new/icon_mail01.svg) no-repeat center center / contain;
    margin-right: 8px;
    display: inline-block;
  }

  .foot-nav_infoMailmagazineBtnText {
    color: #fff;
  }

  .foot-nav_infoMailmagazineBtnArw {
    width: 5px;
    height: 5px;
    bottom: 5px;
  }

  /* foot-nav_menu */
  .foot-nav_menu {
    width: 610px;
    padding: 0;
    font-size: 100%;
    float: none;
    text-align: left;
    color: #333;
    margin-top: 5px;
  }

  .foot-nav_menuList {
    display: flex;
  }

  .foot-nav_menuListHeading {
    color: #333;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
  }

  .foot-nav_menuListItem {
    width: 33.33333%;
  }

  .foot-nav_menuListNavText {
    color: #333;
    font-size: 15px;
    text-align: left;
    white-space: nowrap;
  }

  .foot-nav_menuListNavText a {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .foot-nav_menuListNavText a:hover {
    text-decoration: underline;
  }

  .foot-nav_menuListNavText:not(:last-child) {
    margin-bottom: 20px;
  }

  /* foot */
  .foot-nav_footBnrArea {
    display: flex;
    justify-content: space-between;
  }

  .foot-nav_footBnr {
    width: 252px;
  }

  /* .footbot
------------------------- */
  .footbot {
    margin-top: 0;
    /* 打ち消し */
    padding-top: 50px;
    /* 打ち消し */
    padding-bottom: 50px;
    /* 打ち消し */
    background: #00314d;
  }

  .footbot-heading {
    color: #fff;
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .footbot-sns {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .footbot-sns_item {
    width: 40px;
  }

  .footbot-sns_item:not(:last-child) {
    margin-right: 18px;
  }

  .footbot-copyright {
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
  }

  /* 追記 */
  .foot-nav_footBnrArea {
    justify-content: center;
    gap: 0 40px;
  }
}

/* .senju プレミアム千寿せんべい
================================================ */
.senju {
  padding-bottom: 40px;
}

.c-snj01 {
  padding-top: 40px;
}

.senju__list {
  margin: 30px 0;
}

.senju__list-item {
  margin: 0 0 30px;
}

.senju__list-img {
  margin: 0 0 10px;
}

.senju__list-item.half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: start;
}

.senju__list-item.half .senju__list-img {
  width: 42vw;
}

.senju__list-item.half .senju__list-txt {
  width: 42vw;
}

.senju__list-item.half .l-contents-btn {
  font-size: 1.4rem;
  border-radius: 50px;
  padding: 9px 0;
}

.senju__list-item.half .item__list-txt-name {
  font-size: 1.4rem;
  font-weight: bold;
}

.senju__list-item.half .item__list-txt-name {
  font-size: 1.4rem;
  font-weight: bold;
}

.senju__list-item.half .item__list-txt-price {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.senju__list-item.half .item__list-txt-price span {
  font-size: 1.4rem;
}

li.senju__list-item.half:last-child {
  margin: 0;
}

ul.senju__list:last-child {
  margin: 0;
}

.bnr-senju {
  width: 100%;
}

@media all and (min-width: 768px) {
  .senju__inner {
    max-width: 960px;
  }

  .senju {
    padding-bottom: 40px;
  }

  .c-snj01 {
    margin: 60px auto 80px;
  }

  .senju__list {
    display: flex;
    flex-wrap: wrap;
  }

  .senju__list-txt {
    padding: 0 40px;
  }

  .senju__list .senju__list-item {
    display: flex;
  }

  .senju__list .senju__list-item:first-child {
    flex-grow: 1;
    align-items: center;
  }

  .senju__list .senju__list-img:first-child {
    width: 480px;
  }

  .senju__list .half .senju__list-img {
    max-width: 180px;
  }

  .senju__list .half .senju__list-txt {
    max-width: 21vw;
    padding: 0 20px;
  }

  .senju__list-item.half .item__list-txt-name {
    font-size: 2.2rem;
  }

  .senju__list-item.half .item__list-txt-price {
    font-size: 1.6rem;
    margin: 0 0 10px;
  }

  .senju__list-item.half .item__list-txt-price span {
    font-size: 2.2rem;
  }

  .senju__list-item.half .l-contents-btn {
    font-size: 1.6rem;
    border-radius: 50px;
    padding: 11px 0;
  }

  .senju__list {
    margin: 0 0 50px;
  }

  ul.senju__list {
    justify-content: space-around;
  }
}

@media all and (min-width: 960px) {
  .senju__list .half .senju__list-img {
    max-width: 200px;
  }

  .senju__list .half .senju__list-txt {
    max-width: 240px;
    padding: 0 20px;
  }
}

/* アンカーリンク
================================================ */
.anc {
  width: 100%;
  padding: 80px 0 80px 0;
}

.anc-img__inner {
  padding: 0 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 750px;
  margin: auto;
}

.anc-img__inner img {
  width: 100%;
  max-width: 221px;
}

@media all and (max-width: 767px) {
  .anc {
    width: 100%;
    padding: 30px 0;
  }

  .anc-img__inner {
    padding: unset;
    gap: 20px;
  }

  .anc-img__inner picture {
    width: 100%;
  }

  .anc-img_box {
    width: 40%;
  }

  .anc-img__inner img {
    max-width: unset;
  }
}

/* オリジナル千寿せんべい
================================================ */

.original {
  width: 100%;
}

.original_inner {
  margin: 0 auto 50px auto;
  max-width: 960px;
}

.original_txt {
  text-align: center;
  font-size: 24px;
  margin: 50px auto;
  color: var(--title_color);
  letter-spacing: 0.08em;
}

.original_btn {
  display: flex;
  max-width: 780px;
  gap: 40px;
  margin: auto;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .original_inner {
    margin: 0 auto 0px auto;
    padding: 0 20px;
  }

  .original_txt {
    font-size: 14px;
    margin: 30px auto;
  }

  .original_btn {
    flex-flow: column;
    gap: 20px;
  }

  .original_btn img {
    width: 100%;
  }
}

/* のし
================================================ */

.noshi {
  width: 100%;
}

.noshi_inner {
  margin: 80px auto;
  max-width: 960px;
}

@media all and (max-width: 767px) {
  .noshi_inner {
    margin: 40px auto;
    padding: 0 20px;
  }
}

/* ===============================================
ギフトサービス
================================================ */
.gift_s {
  padding: 40px 15px;
  text-align: center;
}

.gift_s__head {
  font-size: 2.1rem;
  display: inline-block;
  padding: 0.2em 0;
  margin: 0 auto 30px;
  color: #00314D;
  border-top: double 4px #99ACB7;
  border-bottom: double 4px #99ACB7;
  position: relative;
}

.gift_s__head::before {
  content: '';
  display: inline-block;
  width: 105px;
  height: 31px;
  background-image: url(https://kogetsu-ec.com/season/common/img/gs-ttl-logo.png);
  background-size: cover;
  vertical-align: text-bottom;
}

.gift_s__furoshiki {
  margin: 25px auto 0;
}

.gift_s__furoshiki__ttl {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.gift_s__furoshiki__img {
  max-width: 75%;
  margin: 15px auto 0;
}

.gift_s__furoshiki__text {
  text-align-last: left;
  max-width: 80%;
  margin: 15px auto 0;
}

.gift_s__furoshiki__btn {
  padding: 10px 40px 10px 30px;
  background-color: #EBEBEB;
  display: block;
  width: 212px;
  border-radius: 30px;
  margin: 15px auto 0;
  position: relative;
}

.gift_s__furoshiki__btn::after {
  content: '';
  border: 0;
  border-top: solid 1px #333333;
  border-right: solid 1px #333333;
  display: inline-block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

.gift_s .gift_ul {
  text-align: left;
  padding: 25px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /* justify-content: space-between; */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gift_s .gift_ul>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 15px;
}

.gift_s .gift_ul>div img {
  width: 30%;
}

.gift_s .gift_r {
  padding-left: 15px;
}

.gift_s .gift_t {
  font-size: 15px;
  font-weight: bold;
  color: #282828;
  line-height: 1.4;
  margin-bottom: 4px;
  letter-spacing: .04em;
}

.gift_s .gift_t a {
  text-decoration: underline;
  color: #282828;
}

.gift_s .gift_p {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .05em;
}

.gift_s .gift_note {
  font-size: 10px;
  color: #4c4c4c;
}

@media all and (min-width: 768px) {
  .gift_s {
    margin: 0 auto;
    text-align: center;
    max-width: 780px;
    padding: 80px 0 100px;
  }

  .gift_s__head {
    font-size: 3.2rem;
    padding: 0.2em 1em;
    margin: 0 auto 50px;
  }

  .gift_s__head::before {
    width: 162px;
    height: 48px;
  }


  .gift_s__furoshiki {
    margin: 50px auto 0;
  }

  .gift_s__furoshiki__ttl {
    font-size: 24px;
  }

  .gift_s__furoshik_inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    gap: 20px;
  }

  .gift_s__furoshiki__img {
    max-width: 295px;
    margin: 0;
  }

  .gift_s__furoshiki__text {
    text-align-last: left;
    margin: 15px auto 0;
    font-size: 15px;
    max-width: 315px;
  }

  .gift_s__furoshiki__btn {
    padding: 10px 40px 10px 30px;
    background-color: #EBEBEB;
    display: block;
    width: 234px;
    border-radius: 30px;
    margin: 15px auto 0;
    position: relative;
  }

  .gift_s .gift_ul {
    padding: 50px 0 0;
    justify-content: space-between;
  }

  .gift_s .gift_ul>div {
    width: 48.5%;
  }

  .gift_s .gift_ul>div:nth-of-type(n+3) {
    margin-top: 30px;
  }

  .gift_s .gift_ul>div img {
    width: 170px;
  }

  .gift_s .gift_r {
    padding-right: 12px;
  }

  .gift_s .gift_r {
    padding-left: 14px;
  }

  .gift_s .gift_t {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .gift_s .gift_p {
    font-size: 15px;
    line-height: 1.5;
  }

  .gift_s .gift_note {
    font-size: 13px;
  }
}