@charset "UTF-8";
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Reset
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*form デフォルトの打ち消し*/
input, button, textarea, select {
  -moz-appearance: none;
  -webkit-appearance: button;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}

button, select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear {
  visibility: hidden;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input::-ms-reveal {
  visibility: hidden;
}

/* Reset input[type="search"] */
input[type="search"] {
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

input[type="search"]:focus {
  outline-offset: -2px;
}

input[type="search"]::-webkit-search-decoration {
  display: none;
}

@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Plugin
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*============================
     moudule　jquery
=============================*/
/*===================
横から出るメニュー　
*/
article.js-menu_list {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
  transition: .4s;
  min-height: 100%;
  height: 100%;
  width: 100%;
  background: #ffffff;
  overflow-y: scroll;
}
article.js-menu_list.active {
  right: 0;
}
article.js-menu_list div.g-menu_contents {
  height: 100%;
}
article.js-menu_list.active .g-menu_close {
  left: 1em;
}

article.back_curtain {
  display: none;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, 0.7);
  z-index: 999;
  position: fixed;
  top: 0;
}

.js-menu_open,
.js-image-menu-open {
  cursor: pointer;
}

/*===================
top クリックでもっと見る　
*/
.js-open-hidden {
  display: none;
}

.js-open-btn {
  position: relative;
  height: 50px;
  width: 45px;
  margin: 0 auto;
  display: block;
  padding-bottom: 40px;
  outline: 0;
  transition: .5s;
  -erbkit-transition: .5s;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #5e646b;
  cursor: pointer;
}
.js-open-btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.js-open-btn::after {
  content: " ";
  position: absolute;
  width: 20px;
  height: 20px;
  border-top: solid 3px #5e646b;
  border-right: solid 3px #5e646b;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  right: 50%;
  top: 10px;
  margin-right: -10px;
  transition: .5s;
  -erbkit-transition: .5s;
}

.on-click {
  color: transparent !important;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  height: 0;
}

.js-slick_dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.js-slick_dots-item {
  cursor: pointer;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_dotted_gray.svg) no-repeat center;
  background-size: cover;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  margin: 0 5px;
  width: 20px;
  cursor: pointer;
}
.js-slick_dots-item:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.js-slick_dots-item--w {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_dotted_w.svg);
}
.js-slick_dots .slick-active .js-slick_dots-item {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_dotted_sub.svg);
}
.js-slick_dots .slick-active .js-slick_dots-item--w {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_dotted_sub.svg);
}

/*===================
アコーディオン　
*/
.js-accordion-main {
  position: relative;
}
.js-accordion-main a {
  color: #ffffff;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
  cursor: pointer;
  transition: .3s;
}
.js-accordion-main a:hover {
  opacity: .7;
  color: #dddddd;
}
.js-accordion__arrow {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_up_w.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
  cursor: pointer;
  transition: .3s;
}
.js-accordion__arrow:hover {
  opacity: .7;
  color: #dddddd;
}
.js-accordion__arrow.rotate {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_w.svg);
}

/*===================
サジェスト機能
*/
.js-suggest-target {
  position: relative;
  top: 4px;
  left: 0px;
  z-index: 100;
  border: 1px solid #7ac2e3;
  background-color: #ffffff;
  display: none;
}

/*===================
カートボタンクリックで吹き出し表示
*/
.js-click-modal {
  position: relative;
}
.js-click-modal.active .js-click-modal__modal {
  display: block;
}
.js-click-modal__modal {
  display: none;
  opacity: 0;
}

/*===================
もっと見る
*/
.js-detail_readmore {
  position: relative;
}
.js-detail_readmore::before {
  content: '';
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.js-detail_readmore.open::before {
  content: none;
}
.js-detail_readmore__btn {
  text-align: center;
  border: 1px solid #2a3263;
  max-width: 200px;
  margin: 10px auto;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.js-detail_readmore__btn-in {
  display: inline-block;
  padding: 15px 5px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
  font-weight: bold;
  color: #2a3263;
  cursor: pointer;
}
.js-detail_readmore__btn-in:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.js-detail_readmore__btn-in::before {
  content: "続きを読む";
}
.js-detail_readmore.open + .js-detail_readmore__btn .js-detail_readmore__btn-in {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_up_main.svg);
}
.js-detail_readmore.open + .js-detail_readmore__btn .js-detail_readmore__btn-in::before {
  content: "閉じる";
}

/*===================
決算ステップのモーダル
*/
.js-step-modal {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  border: 3px solid #959595;
}
@media screen and (min-width: 600px), print {
  .js-step-modal {
    max-height: 70%;
    max-width: 80%;
    left: 50%;
    margin-left: -40%;
  }
}
@media screen and (min-width: 960px), print {
  .js-step-modal {
    max-width: 850px;
    margin-left: -425px;
  }
}
.js-step-modal__in {
  min-height: 150px;
  padding: 10px;
  background: #ffffff;
  margin: 0 auto;
  position: relative;
}
.js-step-modal__close, .js-step-modal__submit {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 5px;
  font-size: 45px;
  color: #ffffff;
  background: #ffffff;
  z-index: 500;
  background: #959595;
  cursor: pointer;
  transition: .3s;
}
.js-step-modal__close:hover, .js-step-modal__submit:hover {
  opacity: .7;
  color: #7ac2e3;
}

.js-step-modal.active {
  display: block;
}

/*
Colorbox Core Style:
The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
User Style:
Change the following styles to modify the appearance of Colorbox.  They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #fff;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 32px;
  overflow: visible;
  background: #000;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  background: #ffffff;
}

#cboxLoadingGraphic {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/info/calendar/calendar.html) no-repeat center center;
  width: 100%;
  height: 100%;

}

#cboxLoadingOverlay {
  background: #000;
}

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000;
}

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/plagin/colorbox/controls.png) no-repeat 0 0;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxPrevious {
  background-position: 0px 0px;
  right: 44px;
}

#cboxPrevious:hover {
  background-position: 0px -25px;
}

#cboxNext {
  background-position: -25px 0px;
  right: 22px;
}

#cboxNext:hover {
  background-position: -25px -25px;
}

#cboxClose {
  background-position: -50px 0px;
  right: 0;
}

#cboxClose:hover {
  background-position: -50px -25px;
}

.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious {
  right: 66px;
}

.cboxSlideshow_on #cboxSlideshow {
  background-position: -75px -25px;
  right: 44px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -100px -25px;
}

.cboxSlideshow_off #cboxSlideshow {
  background-position: -100px 0px;
  right: 44px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -75px -25px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("https://www.rakuten.ne.jp/gold/mamapan/img/plagin/slick/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover, .slick-prev:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-next:hover, .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before {
  opacity: 1;
}

.slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before, .slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/* =========================================================
swiperスライダー設定
========================================================= */
.swiper-container {
  width: 100%;
  height: auto;
  padding-bottom: 30px !important;
}
.swiper-container--recipe-top {
  padding: 15px 15px 30px 15px !important;
  box-sizing: border-box;
}
.swiper-wrapper {
  box-sizing: border-box;
}
.swiper-slide {
  position: relative;
  height: auto !important;
  box-sizing: border-box;
  padding: 2px;
}
.swiper-slide a:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 1;
}
.swiper-slide a.in-link {
  position: relative;
  z-index: 2;
}
.swiper-slide__in {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.swiper-slide img {
  border-radius: 5px;
  max-width: 100%;
  max-height: 400px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 600px), print {
  .swiper-slide img {
    max-height: 300px;
  }
}
.swiper-pagination {
  bottom: -12px !important;
}
.swiper-button-prev, .swiper-button-next {
  margin-top: -30px !important;
  display: none;
}
@media screen and (min-width: 960px), print {
  .swiper-button-prev, .swiper-button-next {
    display: inherit;
  }
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Bass
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* =========================================================
base - 基本設定
========================================================= */
body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: #231815;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
  margin-top: 80px;
}
@media screen and (min-width: 600px), print {
  body {
    margin-top: 0;
  }
}

a {
  color: #0044CC;
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: #3377ff;
}

p {
  color: #231815;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
  ■Layout*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* =========================================================
header - ヘッダー
========================================================= */
.l-header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: .3s;
  height: 80px;
}
@media screen and (min-width: 600px), print {
  .l-header {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
  }
}
.l-header .l-header-catch {
  background: #2a3263;
  padding: 3px 0;
  line-height: 10px;
}
.l-header .l-header-catch .l-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 600px), print {
  .l-header .l-header-catch {
    padding: 5px 0;
  }
}
.l-header .l-header-catch__text {
  color: #ffffff;
  display: inline-block;
  font-size: 10px;
  transform: scale(0.8);
  transform-origin: left center;
  word-break: keep-all;
  width: 100%;
  min-width: 180px;
}
@media screen and (min-width: 600px), print {
  .l-header .l-header-catch__text {
    display: inline-block;
    font-size: 10px;
    transform: scale(1.2);
    transform-origin: left center;
    min-width: 180px;
  }
}
.l-header .l-header-review {
  text-align: right;
  width: 100%;
}
.l-header .l-header-review__in {
  color: #ffffff;
  display: inline-block;
  font-size: 10px;
  transform: scale(0.8);
  transform-origin: right center;
  vertical-align: middle;
  word-break: keep-all;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .l-header .l-header-review__in {
    display: inline-block;
    font-size: 10px;
    transform: scale(1.2);
    transform-origin: right center;
  }
}
.l-header .l-header-review__in img {
  display: inline-block;
  vertical-align: baseline;
  max-width: 300px;
  max-height: 12px;
  padding-right: 5px;
}
@media screen and (min-width: 600px), print {
  .l-header .l-header-review__in img {
    max-width: 300px;
    max-height: 15px;
    vertical-align: middle;
  }
}
.l-header .l-header-review__in span {
  display: inline-block;
}

/* =========================================================
main - メイン
========================================================= */
.l-main-wrap {
  padding-top: 15px;
  overflow: hidden;
  display: block;
}
@media screen and (min-width: 600px), print {
  .l-main-wrap {
    padding-top: 0;
  }
}
@media screen and (min-width: 960px), print {
  .l-main-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.l-main-wrap--reverse {
  padding-top: 15px;
  overflow: hidden;
}
@media screen and (min-width: 600px), print {
  .l-main-wrap--reverse {
    padding-top: 0;
  }
}
@media screen and (min-width: 960px), print {
  .l-main-wrap--reverse {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 960px), print {
  .l-main-wrap--reverse .l-main {
    width: 67%;
    margin-right: 3%;
    margin-left: 0;
  }
}
.l-main-wrap--reverse .l-side {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 960px), print {
  .l-main-wrap--reverse .l-side {
    width: 33%;
  }
}
.l-main-wrap--top {
  padding-top: 0;
}

.l-main {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media screen and (min-width: 960px), print {
  .l-main {
    width: 77%;
    margin-left: 3%;
    padding-bottom: 50px;
  }
}

/* =========================================================
sidebar - サイドバー
========================================================= */
.l-side {
  width: 100%;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 960px), print {
  .l-side {
    width: 20%;
  }
}

/* =========================================================
footer - フッターのレイアウト
========================================================= */
/* =========================================================
section - コンテンツの大枠など
========================================================= */
/*  ■セクションの大枠
 ===================*/
.l-section {
  margin-bottom: 35px;
}
@media screen and (min-width: 960px), print {
  .l-section {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 960px), print {
  .l-section--35 {
    margin-bottom: 35px;
  }
}
.l-section--bg-color01 {
  background-color: #F8F9FB;
  padding: 10px 0;
}
.l-section--bg-color01 .c-ttl-center {
  padding: 15px 0;
  border-bottom: 1px solid #dddddd;
}
.l-section--bg-color01 .c-ttl-center--noline {
  border: none;
}
.l-section--bg-color01 .c-ttl-center .c-ttl-center__sub-in {
  background: #F8F9FB;
}
.l-section--bg-color02 {
  background-color: #f1f1f1;
  padding: 10px 0;
}
.l-section--bg-color02 .c-ttl-center {
  padding: 15px 0;
  border-bottom: 1px solid #dddddd;
}
.l-section--bg-color02 .c-ttl-center--noline {
  border: none;
}
.l-section--bg-color02 .c-ttl-center .c-ttl-center__sub-in {
  background: #f1f1f1;
}
.l-section--bg-color03 {
  background-color: #fff5f4;
  padding: 10px 0;
}
.l-section--bg-color03 .c-ttl-center {
  padding: 15px 0;
  border-bottom: 1px solid #dddddd;
}
.l-section--bg-color03 .c-ttl-center--noline {
  border: none;
}
.l-section--bg-color03 .c-ttl-center .c-ttl-center__sub-in {
  background: #fff5f4;
}
.l-section--col-wrap {
  padding-bottom: 30px;
}
@media screen and (min-width: 960px), print {
  .l-section--col-wrap {
    padding-bottom: 60px;
  }
}
.l-section--hidden {
  overflow: hidden;
}

.l-section-box {
  margin-bottom: 20px;
}
@media screen and (min-width: 960px), print {
  .l-section-box {
    margin-bottom: 35px;
  }
}
.l-section-box--subcolor-line {
  border: 1px solid #7ac2e3;
  padding: 15px;
}
.l-section-box--subcolor-bg {
  background: #edf7fb;
  padding: 15px;
}
.l-section-box--subcolor-bg2 {
  background: #F7FDFF;
  padding: 15px;
}
.l-section-box--accent-line {
  border: 1px solid #FB807A;
  padding: 15px;
}
.l-section-box--accent-bg {
  background: #fff5f4;
  padding: 15px;
}
.l-section-box--accent-bg2 {
  background: #FFEEED;
  padding: 15px;
}
.l-section-box--gray-line {
  border: 1px solid #dddddd;
  padding: 15px;
  height: 100%;
}
.l-section-box--gray-line.mini {
  height: auto;
}
.l-section-box--gray-line--recipe {
  padding: 10px;
  background: #ffffff;
}
@media screen and (min-width: 600px), print {
  .l-section-box--gray-line--recipe {
    padding: 15px;
  }
}
.l-section-box--gray-line__inline {
  display: inline-block;
  border: 1px solid #959595;
  padding: 5px 10px;
  font-weight: bold;
}
.l-section-box--main-bg {
  background: #e5e8fc;
  padding: 15px;
}
.l-section-box--main-line {
  border: 1px solid #2a3263;
  padding: 15px;
}
.l-section-box--line {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
}
.l-section-box__h100 {
  height: 100%;
}

/*  ■セクション　幅を少し小さめにとる
 ===================*/
.l-section-min {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/*  ■セクション　小さめにとる
 ===================*/
.l-section-min2 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/*  ■大枠だけの内包
 ===================*/
.l-inner {
  width: 100%;
  max-width: 95%;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media screen and (min-width: 1280px), print {
  .l-inner {
    max-width: 1280px;
  }
}

/*   ■コンテンツの大枠
 ===================*/
.l-container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media screen and (min-width: 1280px), print {
  .l-container {
    max-width: 1280px;
  }
}

/*   ■横に並べた要素が１つになった時中心に来る
 ===================*/
.l-col-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 600px), print {
  .l-col-center {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.l-col-center__item {
  width: 100%;
  padding: 0 5px 10px;
}
@media screen and (min-width: 600px), print {
  .l-col-center__item {
    vertical-align: top;
    display: inline-block;
    padding: 0 5px 10px;
    min-width: 30%;
  }
}
.l-col-center__item .c-link-btn {
  padding: 7px;
}
.l-col-center__drop-down {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.l-col-center__drop-down .l-col-center__item {
  width: 50%;
  text-align: center;
}
@media screen and (min-width: 375px), print {
  .l-col-center__drop-down .l-col-center__item {
    width: auto;
    min-width: 20%;
  }
}

/*　■グリッドシステム拡張
 ===================*/
.l-row--mb .l-row__col {
  margin-bottom: 30px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Component*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* =========================================================
bootstrap4のグリッドシステム
========================================================= */
/*!
* Bootstrap Grid v4.0.0-beta.3 (https://getbootstrap.com)
* Copyright 2011-2017 The Bootstrap Authors
* Copyright 2011-2017 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

* {
  box-sizing: inherit;
}
*::before, *::after {
  box-sizing: inherit;
}

.container, .container-fluid {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 375px), print {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 600px), print {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 960px), print {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1280px), print {
  .container {
    max-width: 1140px;
  }
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media screen and (min-width: 375px), print {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media screen and (min-width: 600px), print {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media screen and (min-width: 960px), print {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media screen and (min-width: 1280px), print {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media screen and (min-width: 375px), print {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media screen and (min-width: 600px), print {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media screen and (min-width: 960px), print {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media screen and (min-width: 1280px), print {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/* ---------------------------------------------------------------
	header - ヘッダー (ヘッダー内部のオブジェクトはここにまとめています)
--------------------------------------------------------------- */
.c-header-primary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 8px 0 0;
}
@media screen and (min-width: 600px), print {
  .c-header-primary {
    padding: 10px 0;
    min-height: auto;
  }
}
.c-header-secondary {
  position: relative;
}

/* logo
==========*/
.c-site-branding {
  min-width: calc(100% - 180px);
}
@media screen and (min-width: 600px), print {
  .c-site-branding {
    max-width: 100%;
  }
}
.c-site-branding__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
}
.c-site-branding__link a:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 1;
}
.c-site-branding__link a.in-link {
  position: relative;
  z-index: 2;
}
.c-site-branding__link a {
  max-width: 220px;
}
.c-site-branding__logo {
  max-width: 35px;
  width: 25%;
}
@media screen and (min-width: 375px), print {
  .c-site-branding__logo {
    max-width: 40px;
  }
}
@media screen and (min-width: 600px), print {
  .c-site-branding__logo {
    max-width: 55px;
  }
}
.c-site-branding__logo-img {
  width: 100%;
  height: 100%;
}
.c-site-branding__logotype {
  margin-left: 5px;
  width: 75%;
  max-width: 100%;
}
@media screen and (min-width: 600px), print {
  .c-site-branding__logotype {
    margin-left: 10px;
    letter-spacing: 1.2px;
  }
}
.c-site-branding__logotype-img {
  max-width: 150px;
  width: 100%;
  height: 100%;
  display: block;
}
.c-site-branding__logotype-text {
  display: block;
  width: 100%;
  max-width: 150px;
  text-decoration: unset;
  color: #231815;
  margin-top: 2px;
  display: inline-block;
  font-size: 10px;
  transform: scale(0.8);
  transform-origin: left center;
  word-break: keep-all;
  letter-spacing: 0;
}
@media screen and (min-width: 600px), print {
  .c-site-branding__logotype-text {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 5px;
    letter-spacing: 0.2em;
  }
}

/* フリーワード検索 ・合計金額 SPの際にfixから外れる
==========*/
.c-header-tertiary {
  padding: 3px 0;
  background: #F8F9FB;
}
@media screen and (min-width: 600px), print {
  .c-header-tertiary__in {
    padding: 5px  0;
  }
}
@media screen and (min-width: 960px), print {
  .c-header-tertiary__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.c-header-tertiary .c-site-search__in {
  border: none;
}
.c-header-tertiary .c-site-search .c-basic-form__select {
  height: 28px;
  background-color: #7ac2e3;
}
@media screen and (min-width: 600px), print {
  .c-header-tertiary .c-site-search .c-basic-form__select {
    padding: 0 10px;
    height: 40px;
    max-width: 180px;
  }
}
.c-header-tertiary .c-site-search .c-site-search__free-word {
  background-color: #ffffff;
  height: 28px;
}
@media screen and (min-width: 600px), print {
  .c-header-tertiary .c-site-search .c-site-search__free-word {
    height: 40px;
  }
}
.c-header-tertiary .c-cart-total {
  min-width: 300px;
  margin-left: 30px;
}
.c-header-tertiary .c-cart-total__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #2a3263;
}
.c-header-tertiary .c-cart-total__in:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.c-header-tertiary .c-cart-total__ttl {
  width: 50%;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #2a3263;
}
.c-header-tertiary .c-cart-total__ttl-place {
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  padding-right: 3px;
}
.c-header-tertiary .c-cart-total__sum {
  text-align: right;
  width: 50%;
  font-size: 12px;
  font-size: 0.75rem;
  color: #2a3263;
}
.c-header-tertiary .c-cart-total__sum-money {
  color: #FB807A;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 3px;
}
.c-header-tertiary .c-cart-total .pay .c-cart-total__sum-money {
  font-size: 20px;
  font-size: 1.25rem;
}
.c-header-tertiary .c-cart-total .pay .c-cart-total__ttl {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_cart_main.svg) no-repeat left center;
  background-size: 13px 13px;
  padding-left: 18px;
}
.c-header-tertiary .c-cart-total .send .c-cart-total__ttl {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_automobile_main.svg) no-repeat left center;
  background-size: 18px 18px;
  padding-left: 23px;
  width: 65%;
}
@media all and (-ms-high-contrast: none) {
  .c-header-tertiary .c-cart-total .send .c-cart-total__ttl {
    background-position: left top -2px;
    background-size: 15px 15px;
  }
}
.c-header-tertiary .c-cart-total .send .c-cart-total__sum {
  width: 35%;
}

/* サジェスト機能　内容
==========*/
.c-site-search-suggest__list:last-of-type .c-site-search-suggest__item {
  border-bottom: none;
}
.c-site-search-suggest__item {
  padding: 10px 5px;
  border-bottom: 1px dotted #959595;
  display: block;
  text-align: left;
  color: #2a3263;
  line-height: 1.3;
  font-size: 13px;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: .3s;
}
.c-site-search-suggest__item:hover {
  opacity: .7;
  background-color: #f1f1f1;
}
@media screen and (min-width: 600px), print {
  .c-site-search-suggest__item {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 10px;
  }
}
.c-site-search-suggest__item-in {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  display: inline-block;
  width: 100%;
}

/* ---------------------------------------------------------------
	footer - フッター
--------------------------------------------------------------- */
.c-footer__primary {
  background-color: #f1f1f1;
}

/* オススメ商品 */
.c-footer-recommend {
  overflow: hidden;
}
.c-footer-recommend__ttl-sub {
  background: #7c829e;
  padding: 2px;
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
}
.c-footer-recommend__top {
  padding: 15px 0;
}
@media screen and (min-width: 960px), print {
  .c-footer-recommend__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.c-footer-recommend__ttl {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 960px), print {
  .c-footer-recommend__ttl {
    width: 100%;
    margin-bottom: 0;
  }
}
.c-footer-recommend__ttl img {
  max-width: 400px;
  width: 90%;
}
@media screen and (min-width: 960px), print {
  .c-footer-recommend__ttl img {
    max-width: 500px;
    vertical-align: bottom;
  }
}
@media screen and (min-width: 960px), print {
  .c-footer-recommend__user {
    width: calc(100% - 400px);
    padding-left: 20px;
    padding-bottom: 15px;
    max-width: 620px;
  }
}
.c-footer-recommend__name {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_user_main.svg) no-repeat left center;
  background-size: 12px 12px;
  padding-left: 17px;
  margin-bottom: 10px;
  color: #2a3263;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 600px), print {
  .c-footer-recommend__name {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-footer-recommend__select-list {
  width: 100%;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
  background-position: right 10px center;
  background-color: #f1f1f1;
  padding: 10px 30px 10px 10px;
  height: 43px;
  position: relative;
  cursor: pointer;
}
.c-footer-recommend__list {
  background: #F8F9FB;
}
.c-footer-recommend__list .l-container {
  padding: 20px 0 30px;
}
@media screen and (min-width: 600px), print {
  .c-footer-recommend__list .l-container {
    background-position: bottom right;
  }
}
.c-footer-recommend__item-in {
  padding: 0 15px;
  position: relative;
}
.c-footer-recommend__item-in .or-btn-box_img img {
  text-align: center;
  max-height: 125px;
}
.c-footer-recommend__item-in .c-card-line__ttl {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px), print {
  .c-footer-recommend__item-in .c-card-line__ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-footer-recommend .js-slick_dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

/* sns */
.c-footer-sns_official {
  padding: 25px 0;
}

/*navi*/
.c-footer-navi {
  padding-bottom: 20px;
}
@media screen and (min-width: 960px), print {
  .c-footer-navi__list.c-footer-navi__list-left {
    padding-right: 25px;
  }
}
.c-footer-navi__item {
  border-top: 1px solid #2a3263;
}
.c-footer-navi__item a {
  display: block;
  padding: 15px 10px;
  cursor: pointer;
  transition: .3s;
}
.c-footer-navi__item a:hover {
  opacity: .7;
  color: #7ac2e3;
}
.c-footer-navi__item-in {
  display: block;
  color: #2a3263;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 120%;
}
@media screen and (min-width: 960px), print {
  .c-footer-navi__item-in {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 600px), print {
  .c-footer-navi__guide {
    border-bottom: 1px dotted #2a3263;
    text-align: center;
  }
  .c-footer-navi__guide a {
    display: inline-block;
    padding: 25px 10px;
  }
  .c-footer-navi__guide .c-footer-navi__item-in {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: bold;
  }
}
.c-footer-navi__sub {
  padding: 12px 5px 2px;
  border-top: 1px dotted #2a3263;
}
@media screen and (min-width: 600px), print {
  .c-footer-navi__sub {
    margin: 15px auto;
    padding: 0;
    border-top: none;
    border-left: 1px solid #dddddd;
  }
}
@media screen and (min-width: 600px), print {
  .c-footer-navi__sub .c-footer-navi__sub-item {
    padding: 0 20px 30px;
    position: relative;
    border-right: 1px solid #dddddd;
  }
}
.c-footer-navi__sub-contents {
  position: relative;
  z-index: 2;
}
.c-footer-navi__sub-contents-ttl {
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  .c-footer-navi__sub-contents-ttl {
    display: block;
  }
}
.c-footer-navi__sub-contents-ttl__in {
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
  color: #2a3263;
}
@media screen and (min-width: 600px), print {
  .c-footer-navi__sub-contents-ttl__in {
    display: inline-block;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: bold;
  }
}
@media screen and (min-width: 600px), print {
  .c-footer-navi__sub-contents a.c-footer-navi__sub-contents-ttl {
    cursor: pointer;
  }
  .c-footer-navi__sub-contents a.c-footer-navi__sub-contents-ttl:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: 0.6;
    transition: 0.5s;
    -o-transition: 0.5s;
    /* opera */
    -moz-transition: 0.5s;
    /* firefox */
    -webkit-transition: 0.5s;
    /* chrome, safari */
    -ms-transition: 0.5s;
    /* ie */
  }
}
.c-footer-navi__sub-contents a.c-footer-navi__sub-contents-ttl .c-footer-navi__sub-contents-ttl__in {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
}
@media screen and (min-width: 600px), print {
  .c-footer-navi__sub-contents-in .c-txt-sentence {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-footer-navi__ship-date__ttl {
  padding: 15px 10px 5px;
  text-align: center;
  background: none;
}
.c-footer-navi__ship-date__top {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-bottom: 10px;
  text-align: center;
  line-height: 110%;
}
@media screen and (min-width: 960px), print {
  .c-footer-navi__ship-date__top {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 100%;
  }
}
.c-footer-navi__ship-date__top-in {
  display: inline-block;
}
.c-footer-navi__ship-date__top-in span {
  font-size: 110%;
}
.c-footer-navi__ship-date__main {
  background-color: #ffffff;
  padding: 10px;
  text-align: center;
  line-height: 75%;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 960px), print {
  .c-footer-navi__ship-date__main {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 100%;
  }
}
.c-footer-navi__ship-date__main-in {
  display: inline-block;
  line-height: 1.3;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_automobile_main.svg) no-repeat left center;
  background-size: 25px 25px;
  padding-left: 30px;
}
@media all and (-ms-high-contrast: none) {
  .c-footer-navi__ship-date__main-in {
    background-position: left top;
  }
}
.c-footer-navi__ship-date__main-in .u-fc-r {
  font-size: 120%;
}
.c-footer-navi__ship-date__sp {
  background-color: #ffffff;
  padding: 15px 10px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
}
.c-footer-navi__ship-date__sp .c-footer-navi__ship-date__main {
  padding-bottom: 0;
}

/*カレンダー
=============*/
.c-footer-calender {
  padding: 0 0 10px;
  border-top: none;
}
.c-footer-calender__in {
  background: #f1f1f1;
  padding: 10px;
}
@media screen and (min-width: 960px), print {
  .c-footer-calender__in {
    background: none;
    padding: 0;
  }
}
.c-footer-calender__ttl {
  background: #2a3263;
  color: #ffffff;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-footer-calender__icon {
  padding: 10px;
  text-align: left;
}
.c-footer-calender__icon-btn {
  text-align: right;
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 13px;
  font-size: 0.8125rem;
}
.c-footer-calender__icon-btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-footer-calender__icon-btn__in {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  background-position: right 5px center;
  background-color: #ffffff;
  padding: 10px 17px 10px 10px;
  display: inline-block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.c-footer-calender__icon-input {
  display: none;
}
.c-footer-calender__icon-input:checked ~ .c-footer-calender__icon-table {
  display: inline-block;
  opacity: 1;
}
.c-footer-calender__icon-table {
  display: none;
  opacity: 0;
  margin-bottom: 20px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.c-footer-calender__icon-table-in {
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.5);
}
.c-footer-calender__icon-table-th {
  text-align: center;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_sub.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  padding: 5px 20px 5px 0;
  border-bottom: 1px dotted #ffffff;
}
.c-footer-calender__icon-table-th:last-of-type {
  border-bottom: none;
}
.c-footer-calender__icon-table-th .red {
  color: #d90b23;
}
.c-footer-calender__icon-table-th .blue {
  color: #7ac2e3;
}
.c-footer-calender__icon-table-td {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  border-bottom: 1px dotted #ffffff;
  padding: 5px 0 5px 10px;
}
.c-footer-calender__icon-table-td:last-of-type {
  border-bottom: none;
}
.c-footer-calender__day {
  text-align: right;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.c-footer-calender__month {
  background: #7ac2e3;
  padding: 5px 3px;
  text-align: center;
  color: #ffffff;
}
.c-footer-calender__main {
  width: 100%;
  margin-bottom: 15px;
}
.c-footer-calender__main:last-child {
  margin-bottom: 0;
}
.c-footer-calender__main .day {
  font-size: 10px;
  font-size: 0.625rem;
  border-bottom: 1px solid #7ac2e3;
  padding: 10px 3px 5px;
  text-align: center;
}
.c-footer-calender__box {
  padding: 5px;
  text-align: center;
  color: #2a3263;
  font-size: 14px;
  font-size: 0.875rem;
}
.c-footer-calender__number {
  margin-bottom: 3px;
}
.c-footer-calender__text {
  font-weight: bold;
}
.c-footer-calender__holiday {
  color: #7ac2e3;
}
.c-footer-calender__holiday-red {
  color: #d90b23;
}

/* コピーライトとナビ
=============*/
.c-footer-copyright {
  background-color: #f1f1f1;
}
.c-footer-copyright__navi {
  padding: 20px 0;
  position: relative;
}
.c-footer-copyright__navi-item {
  display: inline-block;
  line-height: 1.6;
}
.c-footer-copyright__navi-item::after {
  content: '|';
  padding: 0 3px;
  margin-left: 5px;
  color: #2a3263;
}
.c-footer-copyright__navi-item:last-of-type::after {
  content: none;
}
.c-footer-copyright__navi-item a {
  font-size: 12px;
  font-size: 0.75rem;
  color: #2a3263;
  cursor: pointer;
  transition: .3s;
}
.c-footer-copyright__navi-item a:hover {
  opacity: .7;
  color: #7ac2e3;
}
.c-footer-copyright__navi .footer-navi_official-link {
  text-align: center;
}
.c-footer-copyright__navi .footer-navi_official-link .footer-navi_official-item {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg) no-repeat left center;
  background-size: 8px 8px;
  padding-left: 13px;
  color: #2a3263;
  cursor: pointer;
  transition: .3s;
}
.c-footer-copyright__navi .footer-navi_official-link .footer-navi_official-item:hover {
  opacity: .7;
  color: #7ac2e3;
}
.c-footer-copyright__copy {
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #959BA2;
  padding: 10px 0;
}

/* =========================================================
navigation - グローバルナビなど
========================================================= */
/*  ■グローバルナビ
=============*/
.c-global-nav {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.c-global-nav__list {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.c-global-nav__list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-global-nav__list-item-link {
  display: inline-block;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.c-global-nav__list-item-link__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_sub.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
  background-position: right 5px center;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 110%;
  letter-spacing: 0;
  color: #2a3263;
  font-weight: bold;
  word-break: keep-all;
  padding: 15px 18px 15px 3px;
  position: relative;
}
@media screen and (min-width: 960px), print {
  .c-global-nav__list-item-link__in {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px 20px 15px 5px;
  }
}
@media screen and (min-width: 1280px), print {
  .c-global-nav__list-item-link__in {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-global-nav__list-item-link__in::before {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  background: #7ac2e3;
  -moz-border-radius: 3px 3px 0 0px;
  -webkit-border-radius: 3px;
  border-radius: 3px 3px 0 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: .3s;
}
.c-global-nav__list-item-link__in:hover::before {
  opacity: 1;
  height: 4px;
}
.c-global-nav__list-item-link__in--normal {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg);
}
.c-global-nav__list-item-link__in.rotate {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_up_sub.svg);
}
.c-global-nav__list-item-link__in.rotate::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #7ac2e3;
  -moz-border-radius: 3px 3px 0 0px;
  -webkit-border-radius: 3px;
  border-radius: 3px 3px 0 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 1;
}
@media screen and (min-width: 900px) {
  .c-global-nav__list-item-link__br {
    display: none;
  }
}
.c-global-nav__sub {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #F8F9FB;
  border-top: 3px solid #7ac2e3;
  -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}
.c-global-nav__sub-in {
  padding: 20px 10px 40px;
}
.c-global-nav__sub-ttl {
  text-align: center;
  margin: 20px auto 30px;
}
.c-global-nav__sub-ttl__in {
  display: inline-block;
  padding: 10px 5px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #2a3263;
  font-weight: bold;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
  position: relative;
  transition: .3s;
}
.c-global-nav__sub-ttl__in::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #dddddd;
  -moz-border-radius: 3px 3px 0 0px;
  -webkit-border-radius: 3px;
  border-radius: 3px 3px 0 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .3s;
}
.c-global-nav__sub-ttl__in:hover {
  color: #7ac2e3;
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_sub.svg);
}
.c-global-nav__sub-ttl__in:hover::before {
  background: #7ac2e3;
}
.c-global-nav__sub-list-item-link {
  display: block;
  border-bottom: 2px dotted #dddddd;
  margin-bottom: 15px;
  padding: 5px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #2a3263;
  cursor: pointer;
  transition: .3s;
}
.c-global-nav__sub-list-item-link:hover {
  opacity: .7;
  color: #7ac2e3;
}

/*右上アイコンスライドメニュー
=============*/
.c-slide-navi {
  width: 100%;
}
@media screen and (min-width: 375px), print {
  .c-slide-navi {
    max-width: 210px;
  }
}
@media screen and (min-width: 600px), print {
  .c-slide-navi {
    max-width: 100%;
  }
}
@media screen and (min-width: 600px), print {
  .c-slide-navi {
    margin-right: 10px;
  }
}
.c-slide-navi__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (min-width: 960px), print {
  .c-slide-navi__list {
    margin-right: 5px;
  }
}
.c-slide-navi .c-slide-navi__btn {
  cursor: pointer;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-left: 10px;
}
@media screen and (min-width: 600px), print {
  .c-slide-navi .c-slide-navi__btn {
    margin-left: 15px;
  }
}
.c-slide-navi .c-slide-navi__btn:first-of-type {
  margin-left: 0;
}
.c-slide-navi .c-slide-navi__btn-in {
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.c-slide-navi .c-slide-navi__btn-in:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-slide-navi .c-slide-navi__btn.cart .c-slide-navi__btn-img {
  margin-right: 3px;
}
.c-slide-navi .c-slide-navi__btn-img {
  text-align: center;
  display: block;
  margin-bottom: 3px;
}
.c-slide-navi .c-slide-navi__btn-img img {
  height: 23px;
  max-width: 25px;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .c-slide-navi .c-slide-navi__btn-img img {
    height: 30px;
    max-width: 30px;
  }
}
.c-slide-navi .c-slide-navi__btn-title {
  letter-spacing: 0;
  color: #2a3263;
  word-break: keep-all;
  display: inline-block;
  font-size: 10px;
  transform: scale(0.8);
  transform-origin: top center;
  vertical-align: top;
}
@media screen and (min-width: 600px), print {
  .c-slide-navi .c-slide-navi__btn-title {
    transform: scale(1);
  }
}
.c-slide-navi .c-slide-navi__btn-login-new .c-slide-navi__btn-title {
  line-height: 110%;
}
.c-slide-navi .c-slide-navi__btn-login-new .c-slide-navi__btn-title__in {
  display: block;
}
.c-slide-navi .c-slide-navi__btn-login-new .c-slide-navi__btn-title__new {
  color: #FB807A;
  display: block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.c-slide-navi .c-slide-navi__btn-new {
  color: #ffffff;
  font-size: 10px;
  font-size: 0.625rem;
  width: 15px;
  height: 15px;
  text-align: center;
  position: absolute;
  top: -5px;
  right: -4px;
  z-index: 10;
  padding-top: 2px;
  letter-spacing: 0;
}
@media screen and (min-width: 600px), print {
  .c-slide-navi .c-slide-navi__btn-new {
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-size: 0.75rem;
    padding-top: 4px;
    right: -5px;
  }
}
.c-slide-navi .c-slide-navi__btn-new::after {
  content: '';
  background: #FB807A;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  z-index: -1;
}
@media screen and (min-width: 600px), print {
  .c-slide-navi .c-slide-navi__btn-new::after {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 600px), print {
  .c-slide-navi .c-slide-navi__btn.info {
    display: none;
  }
}
@media screen and (min-width: 960px), print {
  .c-slide-navi .c-slide-navi__btn.menu {
    display: none;
  }
}

/*ログインの切り替え*/
.c-slide-navi__btn.new-empty .c-slide-navi__btn-login {
  display: none;
}
.c-slide-navi__btn.empty .c-slide-navi__btn-login-new,
.c-slide-navi__btn.empty .login {
  display: none;
}
.c-slide-navi__btn.login .c-slide-navi__btn-login-new,
.c-slide-navi__btn.login .empty {
  display: none;
}

/*横から出るメニューの中
===========================*/
.c-slide-menu {
  background: rgba(245, 245, 245, 0.95);
  /*タイトル*/
  /*コンテンツ*/
  /*閉じるボタン*/
}
.c-slide-menu__title {
  padding: 15px 0;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  background: #2a3263;
  color: #ffffff;
  text-align: center;
  border-bottom: 3px solid #dddddd;
}
.c-slide-menu__contents {
  padding: 10px;
}
.c-slide-menu__close-icon {
  background-size: 50px 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 3px;
  right: 3px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
}
.c-slide-menu__close-icon:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-slide-menu__close-icon::before {
  content: '';
  width: 50px;
  height: 50px;
  background: #5e646b;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-slide-menu__close-icon__in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 6px;
  display: inline-block;
  letter-spacing: 0;
  position: relative;
  z-index: 10;
}
.c-slide-menu__close-icon__in::before {
  content: "×";
  color: #ffffff;
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
  display: block;
}
.c-slide-menu__close {
  background: #f1f1f1;
  padding: 10px;
}
.c-slide-menu__close-btn {
  max-width: 250px;
  margin: 0 auto;
  border: 2px solid #2a3263;
  padding: 15px;
  cursor: pointer;
  text-align: center;
}
.c-slide-menu__close-btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-slide-menu__close-btn__in {
  color: #2a3263;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  display: inline-block;
  vertical-align: middle;
}
.c-slide-menu__close-btn__in::before {
  content: "×";
  margin-right: 10px;
  color: #2a3263;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  vertical-align: middle;
}

/*商品検索=======*/
.c-slide-menu__menu .c-category__item-ttl a {
  display: none;
}
.c-slide-menu__search .c-basic-form__select {
  height: 31px;
}
@media screen and (min-width: 600px), print {
  .c-slide-menu__search .c-basic-form__select {
    height: 40px;
  }
}
.c-slide-menu__search .c-site-search__free-word {
  height: 31px;
}
@media screen and (min-width: 600px), print {
  .c-slide-menu__search .c-site-search__free-word {
    height: 40px;
  }
}
.c-slide-menu__navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 600px), print {
  .c-slide-menu__navi {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
}
.c-slide-menu__navi-newitem {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.c-slide-menu__navi-item {
  width: 50%;
}
@media screen and (min-width: 600px), print {
  .c-slide-menu__navi-item {
    width: 100%;
  }
}
.c-slide-menu__navi-item a {
  display: block;
  text-align: center;
}
.c-slide-menu__navi-item a img {
  max-width: 40px;
  display: block;
  margin: 0 auto 5px;
}
.c-slide-menu__category {
  border-bottom: 1px dotted #2a3263;
  padding-bottom: 20px;
}

/*ご利用ガイド======*/
.c-slide-menu__guide-list {
  position: relative;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-slide-menu__guide-item {
  margin-bottom: 5px;
  width: 50%;
  padding: 0 5px;
}
.c-slide-menu__guide-item__in {
  padding: 10px 5px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #F8F9FB;
  display: block;
  text-align: center;
  cursor: pointer;
}
.c-slide-menu__guide-item__in:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-slide-menu__guide-item__in img {
  max-width: 50px;
  margin-bottom: 5px;
}
.c-slide-menu__guide-item__in .c-slide-menu__guide-txt {
  display: block;
  text-align: center;
  color: #5e646b;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/*ご利用ガイド 2ページ目======*/
.c-slide-navi--sub__item {
  margin-bottom: 5px;
}
.c-slide-navi--sub__link {
  display: block;
  padding: 10px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
  background-position-x: right 5px;
  background-color: #f1f1f1;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
  cursor: pointer;
}
.c-slide-navi--sub__link:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-slide-navi--sub__link:hover {
  color: #333333;
}

/*パンくず
===========================*/
.c-breadcrumbs {
  padding: 5px;
  background: #f1f1f1;
}
@media screen and (min-width: 600px), print {
  .c-breadcrumbs {
    background: none;
    padding: 15px 0;
  }
}
.c-breadcrumbs__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  vertical-align: middle;
}
.c-breadcrumbs__item {
  font-size: 10px;
  font-size: 0.625rem;
  padding-right: 10px;
}
.c-breadcrumbs__item:last-of-type {
  padding-right: 0;
}
.c-breadcrumbs__item:last-of-type a span {
  background: none;
}
@media screen and (min-width: 600px), print {
  .c-breadcrumbs__item {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.c-breadcrumbs__item a {
  color: #5e646b;
  display: inline-block;
  cursor: pointer;
  transition: .3s;
}
.c-breadcrumbs__item a:hover {
  opacity: .7;
  color: #7ac2e3;
}
.c-breadcrumbs__item a span {
  display: inline-block;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  line-height: 110%;
  padding-top: 1px;
}

/* =========================================================
sidebar - サイドバー
========================================================= */
/*会員表示　未ログインの場合非表示*/
.c-side-member {
  margin-bottom: 10px;
}

.c-side-old-member__bnr {
  display: inline-block;
  text-align: center;
  background: #2a3263;
  padding: 12px 10px;
  width: 100%;
  cursor: pointer;
}
.c-side-old-member__bnr:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-side-old-member__bnr .c-ttl-icon__txt {
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
}

.c-member-on {
  border: 1px solid #2a3263;
}
.c-member-on__in {
  padding: 0;
}
.c-member-on__name {
  padding: 20px 5px 15px;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-member-on__name-in {
  font-weight: bold;
  margin-right: 5px;
}
.c-member-on__point {
  padding: 5px;
  text-align: center;
  margin-bottom: 5px;
}
.c-member-on__point-ttl {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: #2a3263;
}
.c-member-on__point-value {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #2a3263;
}
.c-member-on__point-value .big {
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-member-on__link {
  padding: 5px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.c-member-on__link__item {
  display: inline-block;
  padding: 5px;
}
.c-member-on__link__item .c-link-btn {
  background: #ffffff;
}
.c-member-on__logout {
  position: relative;
  padding: 3px 5px;
  background: #f1f1f1;
}
.c-member-on__logout-in {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #2a3263;
  font-weight: bold;
  font-size: 10px;
  font-size: 0.625rem;
  cursor: pointer;
  transition: .3s;
}
.c-member-on__logout-in:hover {
  opacity: .7;
  color: #f1f1f1;
}

/* アイコンメニュー */
.c-side-navi {
  margin-bottom: 50px;
}
.c-side-navi__item {
  text-align: center;
}
.c-side-navi__item a {
  display: inline-block;
  cursor: pointer;
}
.c-side-navi__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-side-navi__item img {
  max-width: 45px;
  max-height: 45px;
}
.c-side-navi__item span {
  display: block;
  margin-top: 5px;
}

/* category */
@media screen and (min-width: 960px), print {
  .l-side .c-category__box-ttl .c-ttl-icon__img {
    vertical-align: top;
  }
}
@media screen and (min-width: 1280px), print {
  .l-side .c-category__box-ttl .c-ttl-icon__img {
    vertical-align: middle;
  }
}
@media screen and (min-width: 960px), print {
  .l-side .c-category__box-ttl .c-ttl-icon__txt-sub {
    display: block;
    margin-left: 0;
    padding-top: 5px;
  }
}
@media screen and (min-width: 1280px), print {
  .l-side .c-category__box-ttl .c-ttl-icon__txt-sub {
    display: inline;
    padding-top: 0;
    margin-left: 10px;
  }
}
.l-side .c-category__item-ttl {
  padding: 0;
}
.l-side .c-category__item-ttl .js-accordion__arrow {
  display: none;
}
@media screen and (min-width: 960px), print {
  .l-side .c-category__item-ttl .js-accordion__arrow {
    display: block;
  }
}
.l-side .c-category__item-ttl a {
  display: block;
  padding: 12px 20px 12px 10px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
  background-position: right 5px center;
}
@media screen and (min-width: 960px), print {
  .l-side .c-category__item-ttl a {
    display: none;
  }
}
.l-side .c-category__sub {
  display: none;
}
@media screen and (min-width: 960px), print {
  .l-side .c-category__sub {
    display: block;
  }
}
.l-side .c-category--recipe .c-category__list .c-ttl-icon__img {
  display: none;
}
.l-side .c-category--recipe .c-category__sub-item__in .c-ttl-icon__txt {
  margin-left: 5px;
}

.c-category--recipe .c-category__list .c-ttl-icon__img {
  display: none;
}
.c-category--recipe .c-category__sub-item__in .c-ttl-icon__txt {
  margin-left: 5px;
}

/* =========================================================
title - 共通のタイトルやテキストなど
========================================================= */
/*  ■下層ページメインタイトル
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-main {
  width: 100%;
  position: relative;
  padding: 2px 5px 5px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #2a3263;
  font-weight: bold;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px), print {
  .c-ttl-main {
    border-top: 2px solid #f1f1f1;
    border-bottom: 2px solid #f1f1f1;
    padding: 15px 5px;
  }
}
@media screen and (min-width: 960px), print {
  .c-ttl-main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*  ■下層ページメインタイトル
※１カラムだった時
＝＝＝＝＝＝＝＝＝＝＝＝*/
main > .c-ttl-main {
  padding: 15px 5px 12px;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  main > .c-ttl-main {
    border-top: 2px solid #f1f1f1;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 20px;
    padding: 15px 5px;
  }
}

/*  ■下層ページ h2
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-sub {
  padding: 5px 15px;
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #2a3263;
  font-weight: bold;
  position: relative;
  line-height: 1.3;
}
.c-ttl-sub:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: #7ac2e3 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.c-ttl-sub .big {
  font-size: 120%;
}
.c-ttl-sub .mini {
  font-size: 80%;
}
.c-ttl-sub--accent {
  color: #FB807A;
}
.c-ttl-sub--accent:before {
  border-color: #FB807A transparent transparent transparent;
}
.c-ttl-sub--accent .c-ttl-icon__txt {
  color: #FB807A;
}

/* 文字だけ
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-basic {
  text-align: center;
  color: #2a3263;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 1.3px;
  line-height: 1.3;
}
@media screen and (min-width: 600px), print {
  .c-ttl-basic {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-ttl-basic_w {
  color: #ffffff;
}

/* 中心にライン
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-line {
  padding: 10px 0;
  position: relative;
  text-align: center;
}
.c-ttl-line::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #2a3263;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
}
.c-ttl-line__in {
  display: inline-block;
  background: #ffffff;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px), print {
  .c-ttl-line__in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-ttl-line--gray .c-ttl-line__in {
  background: #f1f1f1;
}

/* 縦棒
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-line__left {
  border-left: 3px solid #7ac2e3;
  padding-left: 5px;
  padding-top: 2px;
  color: #2a3263;
  font-weight: bold;
  line-height: 1.3;
}
.c-ttl-line__left--w {
  color: #ffffff;
}
.c-ttl-line__left--accent {
  border-left: 3px solid #FB807A;
}

/* 下線
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-underline {
  padding-bottom: 5px;
  border-bottom: 1px solid #2a3263;
  margin-bottom: 10px;
  font-weight: 600;
}
.c-ttl-underline--light {
  color: #2a3263;
  border-bottom: 1px solid #2a3263;
}
.c-ttl-underline--w {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.c-ttl-underline--gray {
  border-bottom: 1px solid #959595;
}

/* アイコンが横にいるタイプ
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-icon__img {
  display: inline-block;
  vertical-align: middle;
}
.c-ttl-icon__img img {
  max-width: 17px;
  height: 17px;
  width: 100%;
}
.c-ttl-icon__img.c-ttl-icon__img--recipe {
  max-width: 30px;
  height: 30px;
}
.c-ttl-icon__txt {
  display: inline-block;
  vertical-align: middle;
  color: #2a3263;
  font-size: 17px;
  font-size: 1.0625rem;
}
.c-ttl-icon__txt-sub {
  color: #7ac2e3;
  font-size: 80%;
  margin-left: 10px;
}

/*  ■セクションのタイトル
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-section-ttl {
  border-bottom: 2px solid #dddddd;
  position: relative;
  padding: 0 0 10px;
}
.c-section-ttl__in {
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  color: #2a3263;
  font-weight: bold;
  padding-left: 5px;
}
@media screen and (min-width: 960px), print {
  .c-section-ttl__in {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*  ■ベタ
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-bgcolor {
  padding: 10px 5px;
  background: #f1f1f1;
  border-bottom: 1px solid #dddddd;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-ttl-bgcolor__sub {
  font-size: 13px;
  font-size: 0.8125rem;
}
.c-ttl-bgcolor--gray {
  background: #dddddd;
}

/*  ■下にサブ見出し
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-center {
  padding: 10px 0 5px;
  text-align: center;
}
.c-ttl-center__main {
  display: block;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 2px;
  color: #2a3263;
  line-height: 1.5;
}
@media screen and (min-width: 600px), print {
  .c-ttl-center__main {
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 6px;
  }
}
.c-ttl-center__small {
  letter-spacing: 0;
  font-size: 70%;
  display: block;
  margin-top: 10px;
}
.c-ttl-center__sub {
  display: block;
  text-align: center;
  margin-top: 7px;
  position: relative;
}
.c-ttl-center__sub::before {
  content: '';
  width: 140px;
  height: 1px;
  background: #7ac2e3;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -70px;
}
.c-ttl-center__sub-in {
  display: inline-block;
  padding: 0 10px;
  background: #ffffff;
  color: #7ac2e3;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 5;
}

/*  ■吹き出し
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-message {
  position: relative;
  padding: 10px;
  margin-bottom: 18px;
  background: #7ac2e3;
  color: #ffffff;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
}
.c-ttl-message::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 30px;
  border: 10px solid transparent;
  border-top: 10px solid #7ac2e3;
  width: 0;
  height: 0;
}
.c-ttl-message--main {
  background: #2a3263;
}
.c-ttl-message--main::after {
  border-top: 10px solid #2a3263;
}
.c-ttl-message--accent {
  background: #fbb4b0;
}
.c-ttl-message--accent::after {
  border-top: 10px solid #fbb4b0;
}
.c-ttl-message--recipe {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-ttl-message--recipe img {
  width: 17px;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (min-width: 600px), print {
  .c-ttl-message--recipe img {
    width: 20px;
  }
}
.c-ttl-message--recipe__txt {
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  font-weight: bold;
  margin-bottom: -3px;
  margin-left: 6px;
}
@media screen and (min-width: 600px), print {
  .c-ttl-message--recipe__txt {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}

/*  ■文章途中の見出し
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-inline {
  margin-bottom: 10px;
  font-weight: bold;
  color: #2a3263;
}

/* ■404
＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-ttl-404 {
  margin: 30px auto;
  padding: 20px;
  text-align: center;
  color: #7ac2e3;
  font-weight: bold;
}
.c-ttl-404 .main {
  margin-bottom: 15px;
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 600px), print {
  .c-ttl-404 .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.c-ttl-404 .sub {
  display: block;
}

/* =========================================================
text - テキスト関連
========================================================= */
/*打ち消し線*/
.c-text-through, .p-cart-item__orders-price.summary .normal .p-cart-item__orders-price__item .big {
  position: relative;
}
.c-text-through::after, .p-cart-item__orders-price.summary .normal .p-cart-item__orders-price__item .big::after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #d90b23;
}

.c-txt-sentence {
  line-height: 1.6;
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0 auto;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 600px), print {
  .c-txt-sentence {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-txt-sentence a {
  text-decoration: underline;
}
.c-txt-sentence--small {
  font-size: 12px;
  font-size: 0.75rem;
}
.c-txt-sentence--mini {
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 600px), print {
  .c-txt-sentence--mini {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*リスト表示*/
.c-txt-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.c-txt-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/*table*/
@media screen and (max-width: 600px), print {
  .c-txt-table__scroll {
    overflow: auto;
    white-space: nowrap;
  }
  .c-txt-table__scroll::-webkit-scrollbar {
    height: 5px;
  }
  .c-txt-table__scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .c-txt-table__scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}

.c-txt-table {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.c-txt-table th, .c-txt-table td {
  padding: 10px 5px;
}
.c-txt-table th:first-child, .c-txt-table td:first-child {
  width: 230px;
}
.c-txt-table__thead tr th {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
}
.c-txt-table__thead tr th:last-of-type {
  border-right: none;
}
.c-txt-table__tbody tr th, .c-txt-table__tbody tr td {
  border-bottom: 1px solid #A9AAAA;
  border-right: 1px solid #A9AAAA;
}
.c-txt-table__tbody tr th:last-child, .c-txt-table__tbody tr td:last-child {
  border-right: none;
}
.c-txt-table__tbody tr th {
  border-right: 2px solid #000000;
}
.c-txt-table__gray {
  background: #E5E5E6;
}
.c-txt-table__purple {
  background: #CFA8CD;
}
.c-txt-table__purple-light {
  background: #ECE2EF;
}
.c-txt-table__red {
  background: #F9D5DC;
}
.c-txt-table__red-light {
  background: #FCEBEF;
}

/* =========================================================
list - リスト・テーブルのデザイン
========================================================= */
/* お知らせ　一覧
===========*/
.c-list-news__item {
  padding: 20px 0;
  border-top: 1px solid #f1f1f1;
}
@media screen and (min-width: 600px), print {
  .c-list-news__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-list-news__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  .c-list-news__info {
    margin: 0 10px 0 0;
    width: 230px;
  }
}
.c-list-news__day {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px), print {
  .c-list-news__day {
    padding-right: 10px;
  }
}
.c-list-news__category {
  display: inline-block;
  padding: 3px 5px;
  color: #ffffff;
  min-width: 100px;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
.c-list-news__category.juyou {
  background-color: #C57985;
}
.c-list-news__category.syohin {
  background-color: #8E8F4A;
}
.c-list-news__category.tempo {
  background-color: #59787D;
}
.c-list-news__category.event {
  background-color: #BD7A34;
}
.c-list-news__title {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 600px), print {
  .c-list-news__title {
    width: calc(100% - 240px);
  }
}
.c-list-news__title a {
  text-decoration: underline;
}

/* 「・」のリスト
===========*/
.c-list-dots__item {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.c-list-dots__item:last-of-type {
  margin-bottom: 0;
}
.c-list-dots__item::before {
  content: "・";
  color: #2a3263;
  position: absolute;
  top: 0;
  left: 0;
}
.c-list-dots--accent .c-list-dots__item::before, .p-step-info__contents .p-step-info__sentence .c-list-dots__item::before {
  color: #FB807A;
}

.c-list-item {
  margin-bottom: 5px;
}

/* 「※」のリスト
===========*/
.c-list-kome {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.c-list-kome:last-of-type {
  margin-bottom: 0;
}
.c-list-kome::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/*  ■table
===============*/
.c-text-table {
  width: 100%;
  background: #ffffff;
}
.c-text-table th, .c-text-table td {
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
}
.c-text-table td {
  border: 1px solid #f1f1f1;
  border-top: none;
}
.c-text-table th.c-text-table_th,
.c-text-table thead th {
  background: #7ac2e3;
  color: #ffffff;
  padding: 7px;
  border: 1px solid #ffffff;
}
.c-text-table--gray td {
  border: 1px solid #dddddd;
  border-top: none;
}
.c-text-table--gray th.c-text-table_th,
.c-text-table--gray thead th {
  background: #f1f1f1;
  color: #5e646b;
  padding: 7px;
  border: 1px solid #ffffff;
}
.c-text-table--gray-th td {
  border: none;
  border-bottom: 1px solid #dddddd;
}
.c-text-table--gray-th th.c-text-table_th,
.c-text-table--gray-th thead th {
  background: #f1f1f1;
  color: #5e646b;
  padding: 7px;
  border: 1px solid #ffffff;
}
.c-text-table--white th, .c-text-table--white td {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3;
  vertical-align: middle;
}
@media screen and (min-width: 375px), print {
  .c-text-table--white th, .c-text-table--white td {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-text-table--white td {
  border: none;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
.c-text-table--white th.c-text-table_th,
.c-text-table--white th.c-text-table_item,
.c-text-table--white thead th {
  background: #ffffff;
  color: #5e646b;
  padding: 7px 5px;
  border: 1px solid #dddddd;
  font-weight: bold;
}
@media screen and (min-width: 375px), print {
  .c-text-table--white th.c-text-table_th,
  .c-text-table--white th.c-text-table_item,
  .c-text-table--white thead th {
    padding: 10px;
  }
}
.c-text-table--white th.c-text-table_th {
  background: #f1f1f1;
}
.c-text-table--white th.c-text-table_item {
  text-align: left;
  padding-left: 35px;
}
.c-text-table--white th.c-text-table_item--member {
  padding-left: 10px;
}
.c-text-table--white th.c-text-table_item a {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px), print {
  .c-text-table--white th.c-text-table_item a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-text-table--accent td {
  border: none;
  border-bottom: 1px solid #FB807A;
  border-right: 1px solid #FB807A;
}
.c-text-table--accent th.c-text-table_th {
  background: #FB807A;
  border: 1px solid #FB807A;
}
.c-text-table--accent th.c-text-table_item,
.c-text-table--accent thead th {
  background: #ffffff;
  color: #5e646b;
  padding: 7px 5px;
  border: 1px solid #FB807A;
  border-top: none;
  font-weight: bold;
}
@media screen and (min-width: 375px), print {
  .c-text-table--accent th.c-text-table_item,
  .c-text-table--accent thead th {
    padding: 10px;
  }
}
.c-text-table--accent th.c-text-table_item {
  text-align: left;
  padding-left: 5px;
}
.c-text-table--accent th.c-text-table_item a {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 375px), print {
  .c-text-table--accent th.c-text-table_item a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

/*  ■table SPの時に１カラム
===============*/
.c-table-sp {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #dddddd;
}
@media screen and (min-width: 600px), print {
  .c-table-sp--ttl-wide .c-table-sp__ttl {
    width: 50%;
  }
}
@media screen and (min-width: 600px), print {
  .c-table-sp--ttl-wide .c-table-sp__item {
    width: 50%;
  }
}
@media screen and (min-width: 600px), print {
  .c-table-sp {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-table-sp__ttl, .c-table-sp__item {
  padding: 8px;
  line-height: 1.5;
}
@media screen and (min-width: 600px), print {
  .c-table-sp__ttl:last-of-type, .c-table-sp__item:last-of-type {
    border: none;
  }
}
.c-table-sp__ttl {
  position: relative;
  background: #edf7fb;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 600px), print {
  .c-table-sp__ttl {
    font-size: 14px;
    font-size: 0.875rem;
    width: 30%;
    border-bottom: 1px dotted #7ac2e3;
  }
}
.c-table-sp__item {
  margin-bottom: 5px;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 600px), print {
  .c-table-sp__item {
    font-size: 14px;
    font-size: 0.875rem;
    border-bottom: 1px dotted #7ac2e3;
    width: 70%;
    margin-bottom: 0;
  }
}
.c-table-sp__line {
  border-top: 2px solid #7ac2e3;
}

/*  ■table ずっと2カラム
===============*/
.c-table-col2 {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-table-col2__ttl, .c-table-col2__item {
  padding: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 600px), print {
  .c-table-col2__ttl, .c-table-col2__item {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-table-col2__ttl:last-of-type, .c-table-col2__item:last-of-type {
    border: none;
  }
}
.c-table-col2__ttl {
  font-weight: bold;
  background: #F8F9FB;
  width: 40%;
  border-bottom: 1px solid #ffffff;
}
.c-table-col2__item {
  width: 60%;
  border-bottom: 1px solid #F8F9FB;
}

/*  ■table gray (colと同時に使用)
===============*/
.c-gray-table {
  border-right: 1px solid #ffffff;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 600px), print {
  .c-gray-table {
    border-bottom: none;
  }
}
.c-gray-table__ttl {
  background: #f1f1f1;
  padding: 5px;
  text-align: center;
  font-size: 11px;
  font-size: 0.6875rem;
}
.c-gray-table__info {
  text-align: center;
  padding: 5px 3px 0;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
}
.c-gray-table__info a {
  text-decoration: underline;
}

/* =========================================================
link - リンクのデザイン
========================================================= */
/*  リンクしない
===============*/
.c-link-no {
  pointer-events: none;
}
.c-link-no:hover {
  cursor: default !important;
}

/*  ■link
===============*/
a img {
  cursor: pointer;
}
a img:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}

.c-link {
  color: #2a3263;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.c-link__arrow-right {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
}
.c-link__arrow-left {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_left_main.svg) no-repeat left center;
  background-size: 8px 8px;
  padding-left: 13px;
}

.c-link--blank {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_blank_main.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
}
.c-link--blank--w {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_blank_w.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
}

/* sns
===============*/
.c-sns-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 600px), print {
  .c-sns-link {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.c-sns-link__ttl {
  display: none;
  color: #2a3263;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 600px), print {
  .c-sns-link__ttl {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.c-sns-link__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.c-sns-link__item {
  padding: 0 5px;
  text-align: center;
}
.c-sns-link__item a {
  display: inline-block;
}
.c-sns-link__item a img {
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 600px), print {
  .c-sns-link__item a img {
    max-width: 30px;
  }
}

/*  ■ページネーション
===============*/
.c-link-pager {
  padding: 0 0 15px;
}
.c-link-pager__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
}
.c-link-pager__item {
  font-size: 10px;
  font-size: 0.625rem;
  background: #f1f1f1;
  margin: 0 2px;
  padding: 10px 0;
  min-width: 22px;
  text-align: center;
  cursor: pointer;
}
.c-link-pager__item:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
@media screen and (min-width: 600px), print {
  .c-link-pager__item {
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0 5px;
    padding: 10px 0;
    min-width: 32px;
  }
}
.c-link-pager__item-arrow {
  background-color: #F8F9FB;
}
.c-link-pager__item-arrow img {
  width: 10px;
  height: 10px;
}
.c-link-pager__item-now {
  background-color: #2a3263;
  color: #ffffff;
  cursor: auto;
}
.c-link-pager__item-now:hover {
  opacity: 1;
}
.c-link-pager__item-more {
  background: none;
  padding: 0;
  min-width: auto;
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
/*  ■メインのボタン
===================*/
.c-link-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 280px;
  width: 100%;
  padding: 1em .5em;
  font-size: 14px;
  font-size: 0.875rem;
  color: #2a3263;
  text-decoration: none !important;
  border: 1px solid #2a3263;
  background: #ffffff;
  border-radius: 5px;
  transition: all .3s;
  cursor: pointer;
  box-sizing: border-box;
}
.c-link-btn:active, .c-link-btn:visited {
  color: #2a3263;
}
.c-link-btn:hover {
  color: #ffffff;
  background-color: #2a3263;
}
.c-link-btn:hover .c-link__arrow-right {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg);
}
.c-link-btn:hover .c-link__arrow-left {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_left_w.svg);
}
.c-link-btn:hover .c-link-btn__txt {
  color: #ffffff;
}
.c-link-btn__img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.c-link-btn__img img {
  max-width: 15px;
  height: 15px;
  width: 100%;
}
.c-link-btn__txt {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-size: 0.75rem;
}
.c-link-btn__txt-sub {
  font-size: 80%;
  margin-left: 10px;
}
.c-link-btn--w-line {
  background: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: bold;
}
.c-link-btn--main-bg {
  background-color: #2a3263;
  color: #ffffff;
  cursor: pointer;
}
.c-link-btn--main-bg:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-link-btn--main-bg:active, .c-link-btn--main-bg:visited {
  color: #ffffff;
}
.c-link-btn--main-bg .c-link-btn__txt {
  color: #ffffff;
}
.c-link-btn--main-bg .c-link__arrow-right {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg);
}
.c-link-btn--main-bg .c-link__arrow-left {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_left_w.svg);
}
.c-link-btn--sub-bg {
  background-color: #7ac2e3;
  border-color: #7ac2e3;
  color: #ffffff;
  cursor: pointer;
}
.c-link-btn--sub-bg:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-link-btn--sub-bg:hover {
  background: #7ac2e3;
}
.c-link-btn--sub-bg:active, .c-link-btn--sub-bg:visited {
  color: #ffffff;
}
.c-link-btn--sub-bg .c-link-btn__txt {
  color: #ffffff;
}
.c-link-btn--sub-bg .c-link__arrow-right {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg);
}
.c-link-btn--accent-bg {
  background-color: #FB807A;
  border-color: #FB807A;
  color: #ffffff;
  cursor: pointer;
}
.c-link-btn--accent-bg:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-link-btn--accent-bg:hover {
  background: #FB807A;
}
.c-link-btn--accent-bg:active, .c-link-btn--accent-bg:visited {
  color: #ffffff;
}
.c-link-btn--accent-bg .c-link-btn__txt {
  color: #ffffff;
}
.c-link-btn--accent-bg .c-link__arrow-right {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg);
}
.c-link-btn--sub {
  background: #ffffff;
  border-color: #7ac2e3;
}
.c-link-btn--sub:active, .c-link-btn--sub:visited {
  color: #7ac2e3;
}
.c-link-btn--sub:hover {
  background-color: #7c829e;
}
.c-link-btn--sub .c-link-btn__txt {
  color: #7ac2e3;
}
.c-link-btn--gray-bg {
  background-color: #959595;
  border-color: #959595;
  color: #ffffff;
  cursor: pointer;
}
.c-link-btn--gray-bg:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-link-btn--gray-bg:hover {
  background: #959595;
}
.c-link-btn--gray-bg:active, .c-link-btn--gray-bg:visited {
  color: #ffffff;
}
.c-link-btn--gray-bg .c-link-btn__txt {
  color: #ffffff;
}
.c-link-btn--gray-bg .c-link__arrow-right {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg);
}
.c-link-btn--gray {
  background: #ffffff;
  border-color: #959595;
  color: #959595;
}
.c-link-btn--gray:active, .c-link-btn--gray:visited {
  color: #959595;
}
.c-link-btn--gray:hover {
  background-color: #f1f1f1;
  color: #959595;
}
.c-link-btn--gray:hover .c-link-btn__txt {
  color: #959595;
}
.c-link-btn--gray .c-link-btn__txt {
  color: #959595;
}
.c-link-btn--accent {
  background: #ffffff;
  border-color: #FB807A;
}
.c-link-btn--accent:active, .c-link-btn--accent:visited {
  color: #FB807A;
}
.c-link-btn--accent:hover {
  background-color: #FB807A;
}
.c-link-btn--accent:hover .c-link-btn__txt {
  color: #ffffff;
}
.c-link-btn--accent .c-link-btn__txt {
  color: #FB807A;
}
.c-link-btn--mini {
  max-width: 150px;
  padding: 5px 5px;
  text-align: center;
}
.c-link-btn--mini .c-link-btn__txt {
  font-size: 11px;
  font-size: 0.6875rem;
}

/*a:link　ではないボタン*/
.c-btn-system {
  cursor: pointer;
  cursor: pointer;
}
.c-btn-system:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}

/*丸いボタン*/
.c-btn-circle {
  text-align: center;
  position: relative;
  z-index: 5;
  display: inline-block;
  width: 180px;
  height: 180px;
  line-height: 180px;
  margin: 10px;
}
.c-btn-circle::before {
  content: '';
  background-color: #2a3263;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  z-index: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #FB807A;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
}
.c-btn-circle:hover::before {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  box-shadow: 0 0 0 25px #FB807A;
}
.c-btn-circle__in {
  color: #fff;
  position: relative;
  z-index: 10;
  font-weight: bold;
}
.c-btn-circle--sub::before {
  background-color: #7ac2e3;
  box-shadow: 0 0 0 10px #a6d4e9;
}
.c-btn-circle--sub:hover::before {
  box-shadow: 0 0 0 25px #a6d4e9;
}
.c-btn-circle--accent::before {
  background-color: #FB807A;
  box-shadow: 0 0 0 10px #fbb4b0;
}
.c-btn-circle--accent:hover::before {
  box-shadow: 0 0 0 25px #fbb4b0;
}

/*真四角ボタン*/
.c-btn-square {
  width: 100%;
  height: 100%;
  min-height: 99px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #E5E8FC;
  background: #ffffff;
  padding: 0 10px;
  position: relative;
  transition: .3ms;
}
@media screen and (min-width: 600px), print {
  .c-btn-square {
    min-height: 100px;
  }
}
.c-btn-square::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #E5E8FC;
  position: absolute;
  left: 0;
  top: 0;
  transition: .3s;
}
.c-btn-square::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #2a3263 transparent;
  position: absolute;
  right: -2px;
  bottom: -2px;
  transition: .3s;
}
.c-btn-square:hover::before {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  left: 5px;
  top: 5px;
}
.c-btn-square:hover::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  border-color: transparent transparent #ffffff transparent !important;
}
.c-btn-square__in {
  position: relative;
  z-index: 5;
  text-align: center;
}
.c-btn-square__ttl, .c-btn-square__sub {
  display: block;
  text-align: center;
  color: #2a3263;
  line-height: 1.2;
}
.c-btn-square__icon img {
  width: 30px;
  height: 30px;
}
.c-btn-square__ttl {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (min-width: 600px), print {
  .c-btn-square__ttl {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-btn-square__ttl img {
  max-width: 25px;
  display: inline-block;
  vertical-align: middle;
}
.c-btn-square__sub {
  font-size: 10px;
  font-size: 0.625rem;
  border-top: dotted #2a3263 1px;
  margin-top: 5px;
  padding-top: 5px;
}
@media screen and (min-width: 600px), print {
  .c-btn-square__sub {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.c-btn-square__item {
  border: 1px solid #ffffff;
}

/*  ■ページトップへ戻るボタン
===================*/
.c-pagetop-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #7ac2e3;
  text-decoration: none;
  cursor: pointer;
  z-index: 100;
}
.c-pagetop-btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-pagetop-btn__icon img {
  width: 25px;
  height: 25px;
}

/* =========================================================
media - 画像関係のコンポーネント
========================================================= */
/*矢印設置*/
.c-media-arrow {
  padding: 10px 0;
  text-align: center;
}
.c-media-arrow img {
  width: 30px;
  height: 30px;
}

.c-responsive-img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

/* =========================================================
card - カード式レイアウトのオブジェクト
========================================================= */
/* タイトルと項目の間に線
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.c-card-line {
  padding-bottom: 20px;
  text-align: center;
  transition: .3s;
  width: 100%;
  height: auto;
  position: relative;
}
.c-card-line a:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 1;
}
.c-card-line a.in-link {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px), print {
  .c-card-line {
    padding-bottom: 30px;
  }
}
.c-card-line__img {
  text-align: center;
  position: relative;
}
.c-card-line__img img {
  border: 2px solid transparent;
  display: inline-block;
}
.c-card-line__img img.c-card-line__img__radius {
  border-radius: 10px;
}
.c-card-line__img--recipe-item img {
  max-height: 180px;
}
@media screen and (min-width: 600px), print {
  .c-card-line__img--recipe-item img {
    max-height: 230px;
  }
}
@media screen and (min-width: 960px), print {
  .c-card-line__img--recipe-item img {
    max-height: 300px;
  }
}
.c-card-line__ttl {
  margin-top: 10px;
  color: #2a3263;
  line-height: 1.5;
}
.c-card-line__text {
  position: relative;
  margin-top: 5px;
  padding-top: 10px;
}
.c-card-line__text::before {
  content: '';
  width: 50px;
  height: 3px;
  background: #dddddd;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
  transition: .3s;
}
.c-card-line:hover .c-card-line__img img {
  border-color: #7ac2e3;
  opacity: 0.8;
}
.c-card-line:hover .c-card-line__text::before {
  content: '';
  width: 24px;
  margin-left: -12px;
  background: #7ac2e3;
}
.c-card-line--recipe-pop {
  padding: 0;
}

.c-card {
  height: 100%;
}
.c-card__ttl {
  font-weight: bold;
}
.c-card__in {
  max-width: 100%;
  min-height: 0%;
}
.c-card--btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

/* ---------------------------------------------------------------
form - 共通のフォーム
--------------------------------------------------------------- */
/*サイト内検索
===============*/
.c-site-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
  position: relative;
  width: 100%;
}
.c-site-search__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 100%;
}
.c-site-search .c-basic-form__select {
  max-width: 110px;
  width: 100%;
  align-self: center;
  letter-spacing: 0;
  border: 1px solid #7ac2e3;
}
@media screen and (min-width: 375px), print {
  .c-site-search .c-basic-form__select {
    width: 100%;
    max-width: 130px;
  }
}
.c-site-search .c-site-search__free-word {
  width: calc(100% - 110px);
  align-self: center;
}
@media screen and (min-width: 600px), print {
  .c-site-search .c-site-search__free-word {
    width: 100%;
  }
}
.c-site-search .c-site-search__free-word__text {
  width: 100%;
  height: 100%;
  font-size: 11px;
  font-size: 0.6875rem;
  padding: 5px 20px 5px 5px;
  border: 1px solid #7ac2e3;
}
@media screen and (min-width: 600px), print {
  .c-site-search .c-site-search__free-word__text {
    padding: 10px 35px 10px 10px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-site-search .c-site-search__free-word__text:focus {
  border: 1px solid #2a3263;
  background: #ebf7ff;
}
.c-site-search .c-site-search__free-word__btn {
  text-indent: 500%;
  white-space: nowrap;
  overflow: hidden;
  color: rgba(255, 255, 255, 0);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_search_main.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
}
.c-site-search .c-site-search__free-word__btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
@media screen and (min-width: 600px), print {
  .c-site-search .c-site-search__free-word__btn {
    top: 10px;
    right: 10px;
  }
}

/*問い合わせ　ステップ
===============*/
.c-form-stepbar {
  display: flex;
  max-width: 500px;
  position: relative;
  margin: 20px auto;
  text-align: center;
}
.c-form-stepbar__item {
  font-size: 12px;
  font-size: 0.75rem;
  list-style: none;
  position: relative;
  width: 33.333%;
  line-height: 1.3;
}
.c-form-stepbar__item:after {
  background: #A6D4E9;
  content: "";
  width: calc(100% - 24px);
  height: 2px;
  position: absolute;
  left: calc(-50% + 12px);
  top: 12px;
}
.c-form-stepbar__item:first-child:after {
  display: none;
}
.c-form-stepbar__item-num {
  background: #A6D4E9;
  color: #ffffff;
  display: inline-block;
  height: 24px;
  margin-bottom: 5px;
  line-height: 25px;
  width: 24px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.c-form-stepbar .visited {
  color: #2a3263;
  font-weight: bold;
}
.c-form-stepbar .visited:after, .c-form-stepbar .visited .c-form-stepbar__item-num {
  background: #2a3263;
  color: #ffffff;
}

.c-form-step__number {
  display: inline-block;
  vertical-align: middle;
  background: #2a3263;
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
  margin-right: 5px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 25px;
  letter-spacing: 0;
}

/*basic
===============*/
/*セレクトタグ*/
.c-basic-form__select {
  color: #2a3263;
  position: relative;
  padding: 5px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_w.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  background-position: right 10px center;
  background-color: #7ac2e3;
  color: #ffffff;
  font-size: 11px;
  font-size: 0.6875rem;
  cursor: pointer;
}
.c-basic-form__select:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
@media screen and (min-width: 600px), print {
  .c-basic-form__select {
    padding: 10px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-basic-form__select--basic {
  color: #333333;
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg);
  background-color: #ffffff;
}
.c-basic-form__select:focus {
  background-color: #ebf7ff;
}

/*input*/
.c-basic-form__input {
  background: #ffffff;
  padding: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid #7ac2e3;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.c-basic-form__input:focus {
  border-color: #2a3263;
  background: #ebf7ff;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__input.mini {
    max-width: 300px;
  }
}
@media screen and (min-width: 600px), print {
  .c-basic-form__input.mini2 {
    max-width: 150px;
  }
}

/*パスワード*/
@media screen and (min-width: 600px), print {
  .c-basic-form__password {
    max-width: 300px;
  }
}

/*ラジオボタン*/
.c-basic-form__radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__radio {
    min-width: 300px;
  }
}
.c-basic-form__radio input {
  display: none !important;
}
.c-basic-form__radio label {
  display: block;
  cursor: pointer;
  width: 50%;
  max-width: 150px;
  margin: 0;
  padding: 10px;
  background: #dddddd;
  color: #959595;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1;
  transition: .2s;
}
.c-basic-form__radio label:first-of-type {
  border-radius: 3px 0 0 3px;
}
.c-basic-form__radio label:last-of-type {
  border-radius: 0 3px 3px 0;
}
.c-basic-form__radio input[type="radio"]:checked + .switch-on {
  background-color: #7ac2e3;
  color: #fff;
}

/*チェックボタン*/
.c-basic-form__checkbox {
  display: block;
  width: 100%;
}
.c-basic-form__checkbox-input {
  display: none;
}
.c-basic-form__checkbox-parts {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  word-break: break-all;
  padding-left: 25px;
  padding-right: 42px;
  display: inline-block;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__checkbox-parts {
    padding-left: 30px;
    padding-right: 0;
  }
}
.c-basic-form__checkbox-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
}
.c-basic-form__checkbox-input:checked + .c-basic-form__checkbox-parts {
  color: #2a3263;
  font-weight: bold;
}
.c-basic-form__checkbox-input:checked + .c-basic-form__checkbox-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 7px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #2a3263;
  border-right: 3px solid #2a3263;
}
.c-basic-form__checkbox--recipe .c-basic-form__checkbox-parts {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__checkbox--recipe .c-basic-form__checkbox-parts {
    padding-left: 0;
  }
}
.c-basic-form__checkbox--recipe .c-basic-form__checkbox-parts::before {
  top: -2px;
  left: -28px;
}
.c-basic-form__checkbox--recipe .c-basic-form__checkbox-parts a {
  text-decoration: underline;
}
.c-basic-form__checkbox--recipe .c-basic-form__checkbox-input:checked + .c-basic-form__checkbox-parts::after {
  left: -21px;
  top: -1px;
}

/*ファイル*/
.c-basic-form__file {
  text-align: center;
}
.c-basic-form__file input[type="file"] {
  display: none;
}
.c-basic-form__file .c-basic-form__file-ladel {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 38px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  border: 2px solid #2a3263;
  color: #2a3263;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}
.c-basic-form__file .c-basic-form__file-ladel:hover {
  opacity: .7;
  background-color: #7ac2e3;
}
.c-basic-form__file .c-basic-form__file-ladel::after {
  content: "選択されていません";
  display: block;
  width: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px;
  background: #ffffff;
  line-height: 20px;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
}
.c-basic-form__file .c-basic-form__file-ladel img {
  width: 100%;
}
.c-basic-form__file .c-basic-form__file-ladel.changed {
  margin-bottom: 5px;
}
.c-basic-form__file .c-basic-form__file-ladel.changed::after {
  content: "";
  display: none;
}
.c-basic-form__file .filename {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px;
  background: #ffffff;
  line-height: 20px;
}

/*ファイル　POPUP*/
.c-basic-form__fileup-contents {
  padding: 10px;
  background-color: #e1ebf7;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFE1EBF7', endColorstr='#FFEFFAFF');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuMCIgeDI9IjEuMCIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UxZWJmNyIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZWRmZmZjIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWZmYWZmIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #e1ebf7), color-stop(50%, #edfffc), color-stop(100%, #effaff));
  background-image: -moz-linear-gradient(left top, #e1ebf7 0%, #edfffc 50%, #effaff 100%);
  background-image: -webkit-linear-gradient(left top, #e1ebf7 0%, #edfffc 50%, #effaff 100%);
  background-image: linear-gradient(to right bottom, #e1ebf7 0%, #edfffc 50%, #effaff 100%);
}
@media screen and (min-width: 600px), print {
  .c-basic-form__fileup-in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.c-basic-form__fileup-img {
  max-width: 200px;
  max-height: 200px;
  text-align: center;
  border: 3px solid #ffffff;
  margin: 0 auto 15px;
  overflow: hidden;
}
.c-basic-form__fileup-img.error {
  border-color: #d90b23;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__fileup-img {
    max-width: 180px;
    max-height: 180px;
    margin-bottom: 0;
  }
}
.c-basic-form__fileup-img img {
  max-width: 100%;
  display: inline-block;
  vertical-align: bottom;
  max-height: 200px;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__fileup-img img {
    max-height: 180px;
  }
}
.c-basic-form__fileup-btn {
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__fileup-btn {
    text-align: left;
  }
}
@media screen and (min-width: 600px), print {
  .c-basic-form__fileup-text {
    margin-left: 20px;
    width: calc(100% - 200px);
  }
}

/*ファイル　POPUP ifream*/
.c-photo-upload__body {
  margin: 0 auto;
  padding: 5px;
  background: #dddddd;
}

.c-photo-upload {
  width: 310px;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 15px;
  background: #ffffff;
}
.c-photo-upload__img {
  max-width: 250px;
  max-height: 250px;
  text-align: center;
  margin: 0 auto 15px;
  overflow: hidden;
}
.c-photo-upload__img img {
  display: inline-block;
  max-height: 250px;
}
.c-photo-upload .c-link-btn {
  margin-bottom: 10px;
}

/*formの形*/
.c-basic-form {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.c-basic-form__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__in {
    border-bottom: 1px solid #dddddd;
    padding: 10px;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-basic-form-list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.c-basic-form-list .c-basic-form__ttl {
  text-align: center;
}
.c-basic-form__ttl {
  text-align: left;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 10px;
  width: 100%;
  background: #f1f1f1;
  line-height: 1.3;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__ttl {
    padding: 0;
    background: none;
    width: 25%;
  }
}
@media screen and (min-width: 960px), print {
  .c-basic-form__ttl {
    width: 30%;
  }
}
.c-basic-form__items {
  padding: 10px;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__items {
    width: 65%;
    padding: 0;
  }
  .c-basic-form__items input {
    display: inline-block;
  }
}
@media screen and (min-width: 960px), print {
  .c-basic-form__items {
    width: 70%;
  }
}
.c-basic-form__content {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  /*テキストエリア*/
}
@media screen and (min-width: 600px), print {
  .c-basic-form__content {
    font-size: 15px;
    font-size: 0.9375rem;
    width: 100%;
    margin: 0;
    padding: 0;
    display: inline-block;
  }
}
.c-basic-form__content.mini {
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__content.mini {
    text-align: left;
  }
}
.c-basic-form__content input[type="text"],
.c-basic-form__content input[type="number"],
.c-basic-form__content input[type="password"],
.c-basic-form__content input[type="email"],
.c-basic-form__content textarea,
.c-basic-form__content select {
  padding: 0.5em;
  outline: none;
  border: 1px solid #DDD;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 15px;
  font-size: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__content input[type="text"],
  .c-basic-form__content input[type="number"],
  .c-basic-form__content input[type="password"],
  .c-basic-form__content input[type="email"],
  .c-basic-form__content textarea,
  .c-basic-form__content select {
    font-size: 13px;
  }
}
.c-basic-form__content select {
  max-width: 120px;
  padding: 5px 0.5em;
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-basic-form__content .c-basic-form__textarea {
  max-width: 400px;
  width: 100%;
  height: 150px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__content .c-basic-form__textarea {
    display: inline-block;
  }
}
.c-basic-form__content .c-basic-form__textarea:focus {
  background: #ebf7ff;
}
.c-basic-form__content-item:first-child {
  margin-top: 7px;
}
.c-basic-form__content-item-ttl {
  max-width: 120px;
  border-radius: 4px;
}
.c-basic-form__content .c-basic-form__passcheck-btn {
  right: 10px;
}
.c-basic-form__content .c-txt-sentence {
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__content .c-txt-sentence {
    text-align: left;
  }
}
.c-basic-form__content .c-basic-form__select {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.c-basic-form__content .c-basic-form__select:hover {
  opacity: 1;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__content .c-basic-form__select {
    max-width: 150px;
    display: inline-block;
  }
}
.c-basic-form__content .c-basic-form__select.mini {
  max-width: 90px;
  display: inline-block;
}
.c-basic-form__content .c-basic-form__add {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__content .c-basic-form__add {
    display: block;
    margin: 0;
  }
}
.c-basic-form__content .c-basic-form__add .c-basic-form__input {
  margin-right: 10px;
}
.c-basic-form__content .c-basic-form__add .c-link-btn--mini {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  max-width: 100px;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__content .c-basic-form__add .c-link-btn--mini {
    display: inline-block;
  }
}
.c-basic-form__passcheck {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__passcheck {
    display: inline-block;
    max-width: 300px;
  }
}
.c-basic-form__passcheck-input {
  padding-right: 25px;
}
.c-basic-form__passcheck-btn {
  background: url("https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_eye_gray.svg") no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 3px;
  bottom: 6px;
  z-index: 10;
  cursor: pointer;
}
.c-basic-form__agree {
  text-align: center;
  margin-bottom: 30px;
}
.c-basic-form__agree .c-basic-form__error {
  text-align: center;
  margin-bottom: 10px;
  display: block;
}
.c-basic-form__agree .c-basic-form__checkbox {
  display: inline-block;
  width: auto;
}

/*error必須*/
.c-basic-form__req {
  position: relative;
  padding-right: 50px;
}
.c-basic-form__req::after {
  content: "必須";
  color: #ffffff;
  font-size: 11px;
  font-size: 0.6875rem;
  background: #2a3263;
  position: absolute;
  top: 50%;
  right: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  margin-top: -10px;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__req::after {
    right: 10px;
  }
}

/*error必須 背景色変更*/
.c-input--req {
  background-color: #fbb4b0;
}
.c-input--req + .c-basic-form__checkbox-parts::before {
  background-color: #fbb4b0;
}

/*error表示*/
.c-basic-form__error {
  margin-bottom: 5px;
  text-align: center;
  display: none !important;
}
@media screen and (min-width: 600px), print {
  .c-basic-form__error {
    text-align: left;
  }
}
.c-basic-form__error-in {
  color: #FB807A;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_exclamation_accent.svg) no-repeat left center;
  background-size: 13px 13px;
  padding-left: 18px;
}
.c-basic-form__error.on {
  display: block !important;
}

.c-input--error {
  border-color: #d90b23 !important;
}
.c-input--error + .c-basic-form__checkbox-parts::before {
  border-color: #d90b23 !important;
}
.c-input--error.c-basic-form__radio {
  border: 1px solid #d90b23;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

/*inputが２個以上並ぶとき*/
.c-basic-form .c-form-input__line-up {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 600px), print {
  .c-basic-form .c-form-input__line-up {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
}
.c-basic-form .c-form-input__line-up .c-basic-form__input {
  width: 85%;
  max-width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  .c-basic-form .c-form-input__line-up .c-basic-form__input {
    width: 100%;
    max-width: 200px;
    margin-bottom: 0;
    margin-right: 15px;
  }
}
.c-basic-form .c-form-input__line-up .c-basic-form__input:last-of-type {
  margin-right: 0;
}
.c-basic-form .c-form-input__line-up .c-form-input__ttl {
  padding-right: 10px;
  width: 15%;
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .c-basic-form .c-form-input__line-up .c-form-input__ttl {
    width: auto;
    min-width: 45px;
  }
}

/*項目が少ない　※ログインなど*/
.c-basic-form-list dt, .c-basic-form-list dd {
  margin-bottom: 15px;
}
.c-basic-form-list .c-basic-form__passcheck {
  max-width: 100%;
}
.c-basic-form-list__error {
  margin-bottom: 30px;
}
.c-basic-form-list__error .c-list-dots__item {
  color: #FB807A;
  font-weight: bold;
}
.c-basic-form-list__error .c-input--error {
  background: #fbb4b0;
  border-color: #d90b23;
}

/*ボタンの並び*/
.c-form-btnarea {
  text-align: center;
}
.c-form-btnarea .c-link-btn {
  display: inline-block;
  margin-bottom: 10px;
}

/* =========================================================
category - カテゴリ
========================================================= */
/* category */
.c-category {
  margin-bottom: 15px;
}
.c-category__box {
  margin-bottom: 25px;
}
.c-category__box-ttl {
  background: #f1f1f1;
  padding: 15px 0;
}
.c-category__box-ttl .c-ttl-icon__txt {
  font-size: 17px;
  font-size: 1.0625rem;
}
.c-category__item {
  margin-bottom: 5px;
}
.c-category__item-ttl {
  background: #2a3263;
  color: #ffffff;
  border-left: 5px solid #dddddd;
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-category__item-ttl .js-accordion__arrow {
  padding: 12px 20px 12px 8px;
  background-position: right 10px center;
}
.c-category__item a.c-side-category__item-ttl {
  display: block;
  color: #ffffff;
  cursor: pointer;
}
.c-category__item a.c-side-category__item-ttl:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.c-category__item-link {
  border-bottom: 1px dotted #7ac2e3;
}
.c-category__item-link:last-of-type {
  border-bottom: none;
}
.c-category__item-link a {
  display: block;
  padding: 12px 10px;
  cursor: pointer;
  transition: .3s;
}
.c-category__item-link a:hover {
  opacity: .7;
  background-color: #f1f1f1;
}
.c-category__sub {
  padding: 0 5px;
}
.c-category__sub-item {
  border-bottom: 1px dotted #7ac2e3;
}
.c-category__sub-item:last-of-type {
  border-bottom: none;
}
.c-category__sub-item__in {
  display: block;
  padding: 15px 5px 15px 0;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_sub.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  position: relative;
}
.c-category__sub-item__in .c-ttl-icon__img {
  position: absolute;
  top: 50%;
  left: 3px;
  margin-top: -17px;
  width: 35px;
  height: 35px;
}
.c-category__sub-item__in .c-ttl-icon__img img {
  max-width: 35px;
  width: 35px;
  display: block;
}
.c-category__sub-item__in .c-ttl-icon__txt {
  font-size: 17px;
  font-size: 1.0625rem;
  margin-left: 50px;
  line-height: 120%;
}
@media screen and (min-width: 960px), print {
  .c-category__sub-item__in .c-ttl-icon__txt {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/* =========================================================
text - テキスト関連
========================================================= */
/*戸倉様　CMSの範囲*/
.c-mamapan-cms {
  overflow: hidden;
  width: 100%;
  line-height: 1.5;
  margin: 0 auto;
  letter-spacing: 1.2px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 600px), print {
  .c-mamapan-cms {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-mamapan-cms p a:link {
  text-decoration: underline;
}
.c-mamapan-cms img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
.c-mamapan-cms b {
  font-weight: bold;
}
.c-mamapan-cms table {
  width: 100%;
}

/*商品詳細 商品詳細*/
.cms-item-detail.c-mamapan-cms {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 600px), print {
  .cms-item-detail.c-mamapan-cms {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Project*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* =========================================================
top - topページ
========================================================= */
/* メインヴィジュアル 
 ===================*/
.p-top-mainvisual {
  text-align: center;
  margin: 0 auto 10px;
  max-width: 1280px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 600px), print {
  .p-top-mainvisual {
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 1280px), print {
  .p-top-mainvisual {
    margin: 10px auto 50px;
  }
}
.p-top-mainvisual__list {
  margin: 0 auto;
}
.p-top-mainvisual__item {
  text-align: center;
}
.p-top-mainvisual__item img {
  width: 100%;
}

/* いただきますの見どころ 
 ===================*/
.p-top-spicial__ttl {
  position: relative;
  padding: 5px 10px;
}
@media screen and (min-width: 960px), print {
  .p-top-spicial__ttl {
    padding: 25px 10px 10px;
  }
}
.p-top-spicial__ttl::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 960px), print {
  .p-top-spicial__ttl::after {
    width: calc(100% + 15px);
    border: 2px solid #f1f1f1;
  }
}
.p-top-spicial__ttl-img {
  text-align: center;
  z-index: 1;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 960px), print {
  .p-top-spicial__ttl-img {
    text-align: center;
  }
}
.p-top-spicial__ttl-img img {
  max-width: 400px;
  width: 90%;
}
@media screen and (min-width: 960px), print {
  .p-top-spicial__ttl-img img {
    max-width: 150px;
    width: 70%;
  }
}
.p-top-spicial__list {
  position: relative;
  padding-top: 10px;
}
@media screen and (min-width: 600px), print {
  .p-top-spicial__list {
    padding: 15px 5px;
  }
  .p-top-spicial__list::after {
    content: '';
    display: block;
    width: 100%;
    height: calc(100% - 50px);
    position: absolute;
    bottom: 0;
    left: 0;
    background: #f1f1f1;
    height: calc(100% - 100px);
  }
}
.p-top-spicial__item {
  position: relative;
  z-index: 1;
}
.p-top-spicial__item .c-card-line__ttl {
  font-size: 15px;
  font-size: 0.9375rem;
}

/* SNS 
 ===================*/
.p-top-sns {
  background: #f1f1f1;
  padding: 10px;
  position: relative;
}

/* ママパン公式SNS 
 ===================*/
.p-top-sns_official {
  padding: 5px 0 10px;
}
@media screen and (min-width: 600px), print {
  .p-top-sns_official {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
  }
}

/* ママパン公式 instagram
 ===================*/
.p-top-sns_instagram {
  background: #ffffff;
  padding: 15px 10px 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 600px), print {
  .p-top-sns_instagram {
    background: none;
  }
}
.p-top-sns_instagram-ttl {
  text-align: center;
}
.p-top-sns_instagram-ttl .c-ttl-icon__txt {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 600px), print {
  .p-top-sns_instagram-ttl .c-ttl-icon__txt {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 600px), print {
  .p-top-sns_instagram-list {
    position: relative;
    background: #ffffff;
    padding: 30px 10px 0;
  }
}
.p-top-sns_instagram-list::before, .p-top-sns_instagram-list::after {
  content: '';
  position: absolute;
  top: 10px;
  z-index: 10;
  width: 12px;
  height: 12px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #f1f1f1;
  -moz-box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}
.p-top-sns_instagram-list::before {
  left: 10px;
}
.p-top-sns_instagram-list::after {
  right: 10px;
}
.p-top-sns_instagram-item {
  margin-bottom: 15px;
}
.p-top-sns_instagram-item img {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.p-top-sns_instagram-item video {
  max-width: 100%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  display: block;
  z-index: 100;
}

/* 商品一覧
===================*/
.p-top-goods__ttl {
  text-align: center;
  margin-bottom: 35px;
}
.p-top-goods__ttl img {
  display: inline-block;
  max-width: 400px;
  width: 90%;
}
@media screen and (min-width: 960px), print {
  .p-top-goods__ttl img {
    max-width: 800px;
    vertical-align: bottom;
  }
}

 /* レシピ紹介
===================*/
.p-top-recipe__ttl {
  text-align: center;
  margin-bottom: 35px;
}
.p-top-recipe__ttl img {
  display: inline-block;
  max-width: 400px;
  width: 90%;
}
@media screen and (min-width: 960px), print {
  .p-top-recipe__ttl img {
    max-width: 500px;
    vertical-align: bottom;
  }
}
.p-top-recipe__list {
  position: relative;
}
.p-top-recipe__item-in {
  padding: 0 5px;
}
@media screen and (min-width: 600px), print {
  .p-top-recipe__item-in {
    padding: 0 10px;
  }
}
.p-top-recipe__item .c-card-line__img img {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  max-height: 160px;
}
@media screen and (min-width: 960px), print {
  .p-top-recipe__item .c-card-line__img img {
    max-height: 200px;
  }
}
@media screen and (min-width: 960px), print {
  .p-top-recipe__item .c-card-line__img img {
    max-height: 215px;
  }
}
.p-top-recipe__text {
  margin-top: 15px;
  font-size: 12px;
  font-size: 0.75rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  border-top: 1px dotted #dddddd;
}
@media screen and (min-width: 960px), print {
  .p-top-recipe__text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
  }
}
.p-top-recipe__difficulty {
  margin-bottom: 10px;
}
.p-top-recipe__difficulty-value {
  color: #7ac2e3;
}
.p-top-recipe__time {
  padding: 3px 0;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_time_sub.svg) no-repeat left center;
  background-size: 15px 15px;
  padding-left: 20px;
}
.p-top-recipe_slick-prev, .p-top-recipe_slick-next {
  position: absolute;
  top: 33%;
  z-index: 10;
  width: 45px;
  height: 45px;
  text-indent: -9999px;
}
.p-top-recipe_slick-prev {
  left: 0;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_menu-left_m.svg) no-repeat right center;
  background-size: 40px 40px;
  padding-right: 45px;
}
.p-top-recipe_slick-next {
  right: 0;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_menu-right_m.svg) no-repeat right center;
  background-size: 40px 40px;
  padding-right: 45px;
}

/*お知らせ
===================*/
.p-top-news {
  border-top: 2px dotted #dddddd;
  padding-top: 20px;
}
.p-top-news__list-link {
  color: #2a3263;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  padding-bottom: 3px;
  border-bottom: 1px solid #2a3263;
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
}

/* =========================================================
categort - 商品一覧のページ
========================================================= */
/* タイトル周り
===================*/
.p-category__ttlarea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid #f1f1f1;
}
@media screen and (min-width: 600px), print {
  .p-category__ttlarea {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.p-category__ttlmain {
  border: none;
  padding: 0 0 15px;
  margin-bottom: 0;
  line-height: 1.3;
}

/*合計*/
.p-category__total-item {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  width: 100%;
  text-align: right;
  background: #f1f1f1;
  padding: 5px;
}
@media screen and (min-width: 600px), print {
  .p-category__total-item {
    background: none;
  }
}
.p-category__total-item__in {
  font-size: 120%;
  font-weight: bold;
  padding: 0 3px;
}

/*カテゴリ*/
.p-category-list {
  background: #f1f1f1;
}
@media screen and (min-width: 600px), print {
  .p-category-list {
    padding: 20px 10px 10px;
  }
}
.p-category-list__open-btn {
  padding: 10px;
  cursor: pointer;
}
.p-category-list__open-btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
@media screen and (min-width: 600px), print {
  .p-category-list__open-btn {
    display: none;
  }
}
.p-category-list__open-btn.rotate .p-category-list__open-btn__in {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_up_main.svg);
}
.p-category-list__open-btn__in {
  display: block;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #2a3263;
}
.p-category-list__list {
  display: none;
  background: #ffffff;
}
@media screen and (min-width: 600px), print {
  .p-category-list__list {
    background: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
.p-category-list__item {
  padding: 12px 10px;
  border-top: 1px dotted #7ac2e3;
}
.p-category-list__item:first-of-type {
  border-top: none;
}
@media screen and (min-width: 600px), print {
  .p-category-list__item {
    border: none;
    padding: 0 0 2px;
    margin: 0 15px 15px;
    border-bottom: 1px solid #2a3263;
    transition: 0.3s;
  }
}
@media screen and (min-width: 600px), print {
  .p-category-list__item:hover {
    border-bottom: 1px solid #7ac2e3;
  }
  .p-category-list__item:hover a {
    color: #7ac2e3;
    background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_sub.svg);
  }
}
.p-category-list__item a {
  display: block;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_sub.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #2a3263;
  cursor: pointer;
  transition: .3s;
}
.p-category-list__item a:hover {
  opacity: .7;
  color: #7ac2e3;
}
@media screen and (min-width: 600px), print {
  .p-category-list__item a {
    display: inline-block;
    background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg);
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

/*並び替え*/
.p-category-sort {
  margin-top: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
@media screen and (min-width: 600px), print {
  .p-category-sort {
    padding-bottom: 10px;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.p-category-sort .p-category__total-item {
  background: none;
  padding: 0;
  text-align: center;
  line-height: 1.3em;
}
.p-category-sort .p-category__total-item__in-small {
  font-size: 80%;
  display: block;
  margin-top: 3px;
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .p-category-sort .p-category__total-item__in-small {
    display: inline-block;
    font-size: 100%;
    padding-left: 10px;
  }
}
.p-category-sort__content {
  width: 100%;
  max-width: 160px;
  position: relative;
}
@media screen and (min-width: 600px), print {
  .p-category-sort__content {
    max-width: 100%;
    margin-bottom: 15px;
  }
}
.p-category-sort__open-btn {
  width: 100%;
  border: 1px solid #2a3263;
  padding: 10px;
}
@media screen and (min-width: 600px), print {
  .p-category-sort__open-btn {
    display: none;
  }
}
.p-category-sort__open-btn__in {
  display: block;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #2a3263;
  cursor: pointer;
}
.p-category-sort__open-btn.rotate {
  border-bottom: 1px dotted #2a3263;
}
.p-category-sort__open-btn.rotate .p-category-sort__open-btn__in {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_up_main.svg);
}
.p-category-sort__list {
  display: none;
  border: 1px solid #2a3263;
  border-top: none;
  width: 100%;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background: #ffffff;
  z-index: 20;
}
@media screen and (min-width: 600px), print {
  .p-category-sort__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    position: relative;
    top: auto;
    left: auto;
    border: none;
  }
}
.p-category-sort__item {
  padding: 12px 10px;
  border-top: 1px dotted #2a3263;
  transition: .3s;
  cursor: pointer;
}
.p-category-sort__item:first-of-type {
  border-top: none;
}
@media screen and (min-width: 600px), print {
  .p-category-sort__item {
    padding-left: 3px;
    padding-right: 18px;
    border: none;
    position: relative;
  }
  .p-category-sort__item::after {
    content: "|";
    padding-left: 0;
    position: absolute;
    top: 12px;
    right: 0;
  }
}
@media screen and (min-width: 960px), print {
  .p-category-sort__item {
    padding-left: 10px;
  }
}
@media screen and (min-width: 600px), print {
  .p-category-sort__item:last-of-type::after {
    content: none;
  }
}
.p-category-sort__item:hover {
  background: #f1f1f1;
}
@media screen and (min-width: 600px), print {
  .p-category-sort__item:hover {
    background: none;
  }
}
.p-category-sort__item.active {
  background: #f1f1f1;
}
.p-category-sort__item.active .p-category-sort__item-in {
  font-weight: bold;
}
@media screen and (min-width: 600px), print {
  .p-category-sort__item.active {
    background: none;
  }
  .p-category-sort__item.active .p-category-sort__item-in {
    border-bottom-color: #7ac2e3;
    color: #7ac2e3;
  }
}
.p-category-sort__item-in {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #2a3263;
}
@media screen and (min-width: 600px), print {
  .p-category-sort__item-in {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #2a3263;
    display: inline-block;
    transition: .3s;
    border-bottom: 1px solid #ffffff;
  }
}
@media screen and (min-width: 960px), print {
  .p-category-sort__item-in {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-category-sort__item-in:hover {
  color: #2a3263;
}
@media screen and (min-width: 600px), print {
  .p-category-sort__item-in:hover {
    color: #7ac2e3;
  }
}

/* 商品一覧のコマ
===================*/
.p-category-item {
  padding-bottom: 15px;
}
.p-category-item__list {
  border-top: 1px dotted #dddddd;
  border-left: 1px dotted #dddddd;
}
.p-category-item__item {
  border-bottom: 1px dotted #dddddd;
  border-right: 1px dotted #dddddd;
}
.p-category-item__item .c-card {
  padding: 20px 10px;
}
.p-category-item__item .c-card__in {
  position: relative;
}
.p-category-item__item .c-card-line {
  padding-bottom: 5px;
}
.p-category-item__img {
  margin-bottom: 5px;
  position: relative;
}
.p-category-item__img img {
  max-height: 200px;
}
.p-category-item__img--report img {
  max-height: 110px;
}
@media screen and (min-width: 375px), print {
  .p-category-item__img--report img {
    max-height: 160px;
  }
}
@media screen and (min-width: 600px), print {
  .p-category-item__img--report img {
    max-height: 140px;
  }
}
@media screen and (min-width: 960px), print {
  .p-category-item__img--report img {
    max-height: 160px;
  }
}
.p-category-item__img--recipe-img img {
  max-height: 110px;
}
@media screen and (min-width: 375px), print {
  .p-category-item__img--recipe-img img {
    max-height: 160px;
  }
}
@media screen and (min-width: 600px), print {
  .p-category-item__img--recipe-img img {
    max-height: 140px;
  }
}
@media screen and (min-width: 960px), print {
  .p-category-item__img--recipe-img img {
    max-height: 160px;
  }
}
.p-category-item__label-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.p-category-item__label-top__in {
  display: inline-block;
  padding: 5px 5px 3px;
  background: #2a3263;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-category-item__ttl {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 3px;
  line-height: 1.3rem;
  height: 42px;
  overflow: hidden;
}
.p-category-item__id {
  font-size: 12px;
  font-size: 0.75rem;
  color: #5e646b;
}
.p-category-item__difference-item {
  border-bottom: 1px dotted #dddddd;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
.p-category-item__difference-item:last-of-type {
  border-bottom: none;
}
.p-category-item__details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5px;
  line-height: 1.3;
}
.p-category-item__volume {
  width: 35px;
  text-align: center;
  border: 1px solid #dddddd;
  margin-right: 5px;
}
.p-category-item__volume input {
  height: 33px;
  width: 100%;
  padding: 3px 5px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-category-item__number {
  font-size: 11px;
  font-size: 0.6875rem;
  word-break: break-all;
  letter-spacing: 0;
  width: calc(40% - 17px);
  text-align: left;
}
.p-category-item__price {
  width: calc(55% - 18px);
  text-align: right;
  font-size: 10px;
  font-size: 0.625rem;
  color: #2a3263;
  font-weight: bold;
}
@media screen and (min-width: 600px), print {
  .p-category-item__price {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-category-item__price-big {
  font-size: 110%;
}
.p-category-item__send {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
}
.p-category-item__send-item {
  padding: 5px 2px;
  margin-bottom: 5px;
  margin-left: 2%;
  font-size: 10px;
  font-size: 0.625rem;
  color: #ffffff;
  font-weight: bold;
  width: 100%;
  max-width: 48%;
  min-width: 68px;
  letter-spacing: 0;
  text-align: center;
}
.p-category-item__send-item:first-of-type {
  margin-left: 0;
}
.p-category-item__send-item.mail {
  background-color: #5e646b;
}
.p-category-item__send-item.pack {
  background-color: #7c829e;
}
.p-category-item__send-item.normal {
  background-color: #FB807A;
}
.p-category-item__send-item.refrigerated {
  background-color: #7ac2e3;
}
.p-category-item__send-item.frozen {
  background-color: #2f3fa1;
}
.p-category-item__send-item.free {
  background-color: #ffffff;
  border: 1px solid #2a3263;
  color: #2a3263;
}
.p-category-item__send-item.error {
  background-color: #ffffff;
  border: 1px solid #FB807A;
  color: #FB807A;
}
.p-category-item__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.p-category-item__icon {
  border: 1px solid #5e646b;
  padding: 5px;
  font-size: 10px;
  font-size: 0.625rem;
  color: #5e646b;
  font-weight: bold;
  width: 100%;
  max-width: 48%;
  margin-left: 2%;
}
@media screen and (min-width: 600px), print {
  .p-category-item__icon {
    padding: 5px 3px;
    letter-spacing: 0;
  }
}
.p-category-item__icon:first-of-type {
  margin-left: 0;
}
.p-category-item__point {
  margin-top: 5px;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #FB807A;
}
.p-category-item__point span {
  display: inline-block;
  vertical-align: middle;
}
.p-category-item__point img {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
}
.p-category-item__point .big {
  display: inline-block;
  font-weight: bold;
  font-size: 140%;
}
.p-category-item__sentence {
  margin-top: 5px;
  font-size: 11px;
  font-size: 0.6875rem;
}
.p-category-item__btnarea {
  width: 100%;
  position: relative;
}
.p-category-item__btnarea .p-category-item__btn-modal.error {
  background: #959595;
  border-color: #959595;
  color: #ffffff;
}
.p-category-item__btnarea .p-category-item__btn-modal.error::after {
  border-color: #959595 transparent transparent transparent;
}
.p-category-item__btnarea .p-category-item__btn-modal.error .p-category-item__btn-modal__icon {
  display: none;
}
.p-category-item__btnarea .p-category-item__btn-modal.error.check {
  -webkit-animation: none;
  animation: none;
}
.p-category-item__btnarea.pro .p-category-item__btn-modal {
  background: #2a3263;
  border-color: #2a3263;
  color: #ffffff;
}
.p-category-item__btnarea.pro .p-category-item__btn-modal::after {
  border-color: #2a3263 transparent transparent transparent;
}
.p-category-item__btnarea.pro .p-category-item__btn-modal.check {
  -webkit-animation: none;
  animation: none;
}
.p-category-item__btnarea.pro .p-category-item__btn-modal__icon {
  display: none;
}
.p-category-item__btnarea.pro .p-category-item__btn {
  background: #ffffff;
  color: #2a3263;
  border: 1px solid #2a3263;
  cursor: auto;
}
.p-category-item__btnarea.pro .p-category-item__btn-in {
  background: none;
  padding: 0;
}
.p-category-item__btnarea.pro .p-category-item__btn:hover {
  opacity: 1;
}
.p-category-item__btnarea.sold-out .p-category-item__btn {
  background: #ffffff;
  color: #5e646b;
  border: 1px solid #dddddd;
  cursor: auto;
}
.p-category-item__btnarea.sold-out .p-category-item__btn-in {
  background: none;
  padding: 0;
}
.p-category-item__btnarea.sold-out .p-category-item__btn:hover {
  opacity: 1;
}
.p-category-item__btn-modal {
  background: #ffffff;
  border: 2px solid #FB807A;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 10px;
  margin-bottom: 10px;
  color: #FB807A;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -50%;
  width: 100%;
  -moz-box-shadow: 0px 0px 2px 2px #dddddd;
  -webkit-box-shadow: 0px 0px 2px 2px #dddddd;
  box-shadow: 0px 0px 2px 2px #dddddd;
}
.p-category-item__btn-modal__icon img {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  width: 15px;
  height: 15px;
}
.p-category-item__btn-modal.check {
  -webkit-animation: bounce 2s ease-in-out;
  animation: bounce 2s ease-in-out;
}
.p-category-item__btn-modal.check .p-category-item__btn-modal__icon img {
  -webkit-animation: icon 1.5s ease-in-out;
  animation: icon 1.5s ease-in-out;
}
@-webkit-keyframes bounce {
  5% {
    -webkit-transform: scale(1.1, 0.8);
  }
  10% {
    -webkit-transform: scale(0.8, 1.1) translateY(-5px);
  }
  15% {
    -webkit-transform: scale(1, 1);
  }
}
@keyframes bounce {
  5% {
    transform: scale(1.1, 0.8);
  }
  10% {
    transform: scale(0.8, 1.1) translateY(-5px);
  }
  15% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes icon {
  50% {
    -webkit-transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
  }
}
@keyframes icon {
  50% {
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
  }
}
.p-category-item__btn-modal::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 0 10px;
  border-color: #FB807A transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
}
.p-category-item__btn {
  background: #FB807A;
  border: 1px solid #FB807A;
  color: #ffffff;
  font-weight: bold;
  display: block;
  text-align: center;
  line-height: 1.3;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  padding: 12px 3px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-size: 13px;
  font-size: 0.8125rem;
  cursor: pointer;
}
.p-category-item__btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.p-category-item__btn:hover {
  color: #ffffff;
}
.p-category-item__btn-in {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_cart_w.svg) no-repeat left center;
  background-size: 18px 18px;
  padding-left: 23px;
}

/*レシピの時　角丸*/
.p-category-item--recipe .p-category-item__item {
  margin-bottom: 20px;
  border: none;
}
.p-category-item--recipe .p-category-item__item .c-card {
  border: 2px solid #f1f1f1;
  border-radius: 5px;
}
.p-category-item--recipe .p-category-item__img img {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* 検索結果一覧
===================*/
.p-search-refine {
  background: #f1f1f1;
}
.p-search-refine__btn {
  padding: 15px;
  border-bottom: 1px dotted #ffffff;
  text-align: center;
  cursor: pointer;
}
.p-search-refine__btn:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
@media screen and (min-width: 600px), print {
  .p-search-refine__btn:hover {
    opacity: 1;
    cursor: auto;
  }
}
.p-search-refine__btn.rotate .p-search-refine__btn-in {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_up_main.svg);
}
@media screen and (min-width: 600px), print {
  .p-search-refine__btn.rotate .p-search-refine__btn-in {
    background: none;
  }
}
.p-search-refine__btn-in {
  font-size: 15px;
  font-size: 0.9375rem;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
}
@media screen and (min-width: 600px), print {
  .p-search-refine__btn-in {
    font-size: 16px;
    font-size: 1rem;
    background: none;
  }
}
.p-search-refine .c-basic-form {
  padding: 10px;
  max-width: 700px;
  margin: 0 auto 10px;
  text-align: center;
  display: none;
}
@media screen and (min-width: 600px), print {
  .p-search-refine .c-basic-form {
    display: block;
  }
}
.p-search-refine .c-basic-form__content {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  .p-search-refine .c-basic-form__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
  }
}
.p-search-refine__ttl, .p-faq-search__ttl {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 10px;
  background: #dddddd;
}
@media screen and (min-width: 600px), print {
  .p-search-refine__ttl, .p-faq-search__ttl {
    margin: 0 15px 0 0;
    padding: 0;
    background: none;
    width: 200px;
  }
}
@media screen and (min-width: 600px), print {
  .p-search-refine__input {
    width: calc(100% - 200px);
  }
}
@media screen and (min-width: 600px), print {
  .p-search-refine__input .c-basic-form__input {
    max-width: 100%;
  }
}
.p-search-refine__check {
  margin-bottom: 15px;
}
@media screen and (min-width: 600px), print {
  .p-search-refine__check {
    width: 100%;
  }
}
.p-search-refine__check .c-basic-form__checkbox-parts {
  padding-right: 0;
}
.p-search-refine__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 600px), print {
  .p-search-refine__price {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.p-search-refine__price .c-basic-form__input {
  max-width: 90px;
  margin: 0;
}
@media screen and (min-width: 600px), print {
  .p-search-refine__price .c-basic-form__input {
    max-width: 180px;
  }
}
.p-search-refine__price .c-basic-form__input:last-of-type {
  margin-left: 5px;
}
.p-search-refine__price .c-form-input__ttl {
  width: auto;
  min-width: auto;
  margin-left: 5px;
}

/* タイムセール
===================*/
.p-category-timesale__label {
  padding: 5px;
  background: #7ac2e3;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.p-category-timesale__pay {
  text-align: center;
  margin-bottom: 10px;
}
.p-category-timesale__pay-sub {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 5px;
  display: block;
  line-height: 1.3;
}
.p-category-timesale__pay-main {
  display: block;
  color: #FB807A;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-category-timesale__pay-out {
  padding: 5px;
  margin: 10px auto;
  border: 1px solid #d90b23;
  color: #d90b23;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  display: inline-block;
}

.p-category-timesale__day {
  border-top: 1px dotted #dddddd;
  padding-top: 10px;
}
.p-category-timesale__day-ttl {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-bottom: 5px;
  display: block;
  font-weight: bold;
}
.p-category-timesale__day-text {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.5;
}

.timesale.p-category-item__number {
  width: calc(100% - 40px);
}

/* ベストセラー
===================*/
/*ベストセラーナビ*/
.p-category-popular__nav {
  margin: 20px auto;
}
.p-category-popular__nav .l-col-center__item .c-link-btn.active {
  color: #ffffff;
  background-color: #2a3263;
}
.p-category-popular__nav .l-col-center__item .c-link-btn.active .c-link__arrow-right {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg);
}

/*カテゴリのタイトル*/
.p-category-popular__ttl {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  height: 50px;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.p-category-popular__ttl-icon {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 600px), print {
  .p-category-popular__ttl-icon {
    width: 50px;
    height: 50px;
  }
}
.p-category-popular__ttl-text {
  width: calc(100% - 35px);
  font-size: 13px;
  font-size: 0.8125rem;
  color: #2a3263;
  font-weight: bold;
  padding-left: 10px;
  line-height: 1.3;
}
@media screen and (min-width: 600px), print {
  .p-category-popular__ttl-text {
    width: calc(100% - 55px);
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/* =========================================================
item - 商品詳細のページ
========================================================= */
/*カテゴリパンくず*/
.p-category-breadcrumbs {
  margin-bottom: 25px;
}
.p-category-breadcrumbs__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-category-breadcrumbs__item {
  margin-bottom: 5px;
  margin-right: 8px;
}
.p-category-breadcrumbs__item:last-of-type {
  margin-bottom: 0;
}
.p-category-breadcrumbs__item:last-of-type a {
  background: none;
}
.p-category-breadcrumbs__item:last-of-type a:hover {
  background: none;
}
.p-category-breadcrumbs__item a {
  color: #7ac2e3;
  font-size: 10px;
  font-size: 0.625rem;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_sub.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
  cursor: pointer;
  transition: .3s;
}
.p-category-breadcrumbs__item a:hover {
  opacity: .7;
  color: #2a3263;
}
.p-category-breadcrumbs__item a:hover {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg);
}

/*item*/
.p-category__ttl-item {
  border-top: none;
  padding: 0 0 15px;
  margin-bottom: 0;
  line-height: 1.3;
}

/*review SNSシェア*/
.p-category-primary {
  padding: 10px 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

/* review*/
.p-category-review {
  position: absolute;
  top: 10px;
  left: 0;
}
@media screen and (min-width: 600px), print {
  .p-category-review {
    width: 100%;
  }
}
.p-category-review__in {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}
.p-category-review__in:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.p-category-review__img {
  width: 120px;
  height: 24px;
}
@media screen and (min-width: 600px), print {
  .p-category-review__img {
    max-width: 130px;
  }
}
.p-category-review__text {
  margin-left: 3px;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #2a3263;
  text-decoration: underline;
}
@media screen and (min-width: 600px), print {
  .p-category-review__text {
    padding-top: 5px;
    margin-left: 10px;
  }
}
.p-category-review__text a {
  display: inline-block;
}

/* SNS*/
.p-category-sns .c-sns-link__item img {
  width: 25px;
}
.p-category-sns__mail, .p-category-sns__printer {
  margin-left: 5px;
  padding-left: 10px;
  position: relative;
}
.p-category-sns__mail::before, .p-category-sns__printer::before {
  content: '';
  width: 1px;
  height: 20px;
  background: #dddddd;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
}

/*2カラム*/
.p-category-info {
  margin-bottom: 20px;
  border-bottom: 1px dotted #dddddd;
  padding-bottom: 20px;
}
@media screen and (min-width: 960px), print {
  .p-category-info {
    margin-bottom: 35px;
  }
}
.p-category-info .big {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.3;
}

/* 商品写真*/
.p-category-photo__in {
  padding-bottom: 40px;
}
.p-category-photo__list {
  overflow: inherit;
}
.p-category-photo__item {
  text-align: center;
  cursor: pointer;
}
.p-category-photo__item:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.p-category-photo__item img {
  display: inline-block;
  vertical-align: bottom;
  max-height: 400px;
}
.p-category-photo .js-category-photo__thumb-nav .p-category-photo__item {
  padding: 5px;
}
.p-category-photo .js-category-photo__thumb-nav .slick-slide img {
  opacity: 0.5;
}
.p-category-photo .js-category-photo__thumb-nav .slick-slide.slick-current img {
  opacity: 1;
}
.p-category-photo .js-category-photo__thumb-nav .slick-arrow {
  z-index: 10;
  background-size: auto auto;
  text-indent: -9999px;
  bottom: -30px;
  top: auto;
}
@media screen and (min-width: 600px), print {
  .p-category-photo .js-category-photo__thumb-nav .slick-arrow {
    bottom: 0;
    top: 50%;
  }
}
.p-category-photo .js-category-photo__thumb-nav .slick-arrow.slick-prev {
  left: 0;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_menu-left_m.svg) no-repeat right center;
}
@media screen and (min-width: 600px), print {
  .p-category-photo .js-category-photo__thumb-nav .slick-arrow.slick-prev {
    left: -12px;
  }
}
.p-category-photo .js-category-photo__thumb-nav .slick-arrow.slick-next {
  right: 0;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_menu-right_m.svg) no-repeat left center;
}
@media screen and (min-width: 600px), print {
  .p-category-photo .js-category-photo__thumb-nav .slick-arrow.slick-next {
    right: -12px;
  }
}

/* 商品写真　ポップアップ*/
.js-menu_list.p-category-popup {
  background: rgba(255, 255, 255, 0.9);
}

.p-category-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 5px;
  font-size: 45px;
  color: #ffffff;
  background: #ffffff;
  z-index: 500;
  background: #959595;
  cursor: pointer;
  transition: .3s;
}
.p-category-popup__box {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}
@media screen and (min-width: 600px), print {
  .p-category-popup__box {
    padding: 30px;
  }
}
.p-category-popup__item {
  margin-bottom: 10px;
  text-align: center;
}
.p-category-popup__item img {
  max-width: 100%;
  display: inline-block;
  vertical-align: bottom;
}

/* 商品ID SP用*/
.p-category-id__sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px), print {
  .p-category-id__sp {
    display: none;
  }
}
.p-category-id__sp-in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.p-category-id__sp-in__ttl {
  padding: 5px;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}
.p-category-id__sp-in__info {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 5px;
}

/* 詳細内容*/
.p-category-difference {
  margin-top: 10px;
}
@media screen and (min-width: 600px), print {
  .p-category-difference {
    margin-top: 0;
  }
}
.p-category-difference__item {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #dddddd;
}
.p-category-difference__box {
  border-right: 1px solid #ffffff;
  border-bottom: 1px dotted #f1f1f1;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 600px), print {
  .p-category-difference__box {
    border-bottom: none;
  }
}
.p-category-difference__ttl {
  background: #dddddd;
  padding: 5px;
  text-align: center;
  font-size: 11px;
  font-size: 0.6875rem;
}
.p-category-difference__info {
  text-align: center;
  padding: 10px 3px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-category-difference__price .p-category-difference__info {
  color: #2a3263;
}
.p-category-difference__price-big {
  font-weight: bold;
  font-size: 120%;
  margin-right: 3px;
}
.p-category-difference__point .p-category-difference__info-txt {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: #2a3263;
}
.p-category-difference__point .p-category-difference__info-txt .big {
  font-size: 120%;
  margin-right: 2px;
  font-weight: bold;
}
.p-category-difference__id {
  display: none;
}
@media screen and (min-width: 600px), print {
  .p-category-difference__id {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-category-difference__iconarea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-category-difference__iconarea:last-of-type {
  margin-bottom: 10px;
}
.p-category-difference__ladel {
  margin: 0 2px 5px;
  padding: 5px;
  width: calc(33% - 4px);
  max-width: 33.33333%;
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .p-category-difference__ladel {
    width: calc(25% - 5px);
    max-width: 25%;
  }
}
.p-category-difference__ladel:first-of-type {
  margin-left: 2px;
}
.p-category-difference__txt {
  margin-bottom: 10px;
}
.p-category-difference__txt .p-category-item__point {
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-category-difference__txt .p-category-item__point img {
  margin: 0 3px;
}
.p-category-difference__period {
  font-size: 12px;
  font-size: 0.75rem;
}
.p-category-difference__period-ttl {
  display: block;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 600px), print {
  .p-category-difference__period-ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-category-difference__table {
  margin-bottom: 10px;
}
.p-category-difference__table .c-ttl-bgcolor {
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-category-difference__table .c-text-table th {
  width: 25%;
}
.p-category-difference__table .c-text-table td {
  width: 75%;
}

/*セット割引対象商品*/
.p-category-set {
  margin-bottom: 15px;
}
.p-category-set__ttl {
  background: #7ac2e3;
  color: #ffffff;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  border-left: 3px solid #2a3263;
}
.p-category-set__con {
  border: 1px solid #7ac2e3;
  padding: 5px;
}
@media screen and (min-width: 960px), print {
  .p-category-set__con {
    padding: 5px 5px 0;
  }
}
@media screen and (min-width: 960px), print {
  .p-category-set__list {
    margin-right: -5px;
    margin-left: -5px;
  }
}
@media screen and (min-width: 960px), print {
  .p-category-set__item {
    margin-bottom: 5px;
    padding: 0 5px;
  }
}
.p-category-set__item:last-of-type .p-category-set__item-in {
  border-bottom: none;
}
@media screen and (min-width: 960px), print {
  .p-category-set__item:last-of-type .p-category-set__item-in {
    border: 1px solid #dddddd;
  }
}
.p-category-set__item-in {
  border-bottom: 1px dotted #959595;
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  position: relative;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
  cursor: pointer;
  transition: .3s;
}
.p-category-set__item-in a:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 1;
}
.p-category-set__item-in a.in-link {
  position: relative;
  z-index: 2;
}
.p-category-set__item-in:hover {
  opacity: .7;
  background-color: #edf7fb;
}
@media screen and (min-width: 960px), print {
  .p-category-set__item-in {
    border: none;
    padding: 5px 20px 5px 5px;
    border: 1px solid #dddddd;
    height: 100%;
  }
}
.p-category-set__img {
  width: 70px;
  border: 1px solid #dddddd;
  background: #ffffff;
}
@media screen and (min-width: 960px), print {
  .p-category-set__img {
    width: 50px;
    border: none;
  }
}
.p-category-set__img img {
  display: inline-block;
  vertical-align: bottom;
}
.p-category-set__text {
  width: calc(100% - 70px);
  padding-left: 10px;
}
@media screen and (min-width: 960px), print {
  .p-category-set__text {
    width: calc(100% - 50px);
  }
}
.p-category-set__name {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 5px;
  line-height: 1.3;
}
@media screen and (min-width: 960px), print {
  .p-category-set__name {
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}
.p-category-set__pay {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.p-category-set__pay .big {
  color: #FB807A;
}
.p-category-set__sale {
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100%;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_exclamation_main.svg) no-repeat left center;
  background-size: 13px 13px;
  padding-left: 18px;
}
@media screen and (min-width: 960px), print {
  .p-category-set__sale {
    background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_exclamation_main.svg) no-repeat left center;
    background-size: 12px 12px;
    padding-left: 17px;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

/* バーコード*/
.p-category-jancode {
  font-size: 10px;
  font-size: 0.625rem;
  margin-bottom: 5px;
}
.p-category-jancode__in {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_jancode_gray.svg) no-repeat left center;
  background-size: 12px 12px;
  padding-left: 17px;
}

/*カート*/
.p-category-buy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

/*在庫数*/
.p-category-stocks {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 5px;
}
.p-category-stocks__con {
  text-align: center;
}

/*数量*/
.p-category-volume {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
}
.p-category-volume__ttl {
  align-self: center;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 10px;
  word-break: keep-all;
}
.p-category-volume .p-category-item__volume {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 45px;
}

/* ボタン*/
.p-category-buy .p-category-item__btnarea {
  width: 100%;
  max-width: 200px;
}

/*お気に入り等*/
.p-category-favoritelink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  .p-category-favoritelink {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.p-category-favoritelink__item {
  min-width: 100px;
}
@media screen and (min-width: 600px), print {
  .p-category-favoritelink__item {
    margin-left: 5px;
  }
}
.p-category-favoritelink__review {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_pen_gray.svg) no-repeat left center;
  background-size: 10px 10px;
  padding-left: 15px;
}
.p-category-favoritelink__contant {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_sp_gray.svg) no-repeat left center;
  background-size: 10px 10px;
  padding-left: 15px;
}

/*お気に入り*/
.p-category-favorite.off {
  border-color: #959595;
}
.p-category-favorite.off:active, .p-category-favorite.off:visited {
  color: #959595;
}
.p-category-favorite.off:hover {
  background-color: #f1f1f1;
}
.p-category-favorite.off .c-link-btn__txt {
  color: #959595;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_heart_gray.svg) no-repeat left center;
  background-size: 10px 10px;
  padding-left: 15px;
}
.p-category-favorite.off .icon-on {
  display: none;
}
.p-category-favorite.on {
  border-color: #FB807A;
}
.p-category-favorite.on:active, .p-category-favorite.on:visited {
  color: #FB807A;
}
.p-category-favorite.on:hover {
  background-color: #FB807A;
}
.p-category-favorite.on:hover .c-link-btn__txt {
  color: #ffffff;
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_heart_w.svg);
}
.p-category-favorite.on .c-link-btn__txt {
  color: #FB807A;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_heart_accent.svg) no-repeat left center;
  background-size: 10px 10px;
  padding-left: 15px;
}
.p-category-favorite.on .icon-off {
  display: none;
}

/*リンク*/
.p-category-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px), print {
  .p-category-link {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 600px), print {
  .p-category-link__item {
    margin-left: 5px;
  }
}

/*スタッフコメント*/
.p-category-staff-comment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  padding: 15px 10px 10px;
  background: #f1f1f1;
}
.p-category-staff-comment__img {
  width: 100%;
  max-width: 80px;
}
.p-category-staff-comment__img img {
  width: 100%;
  max-width: 80px;
}
.p-category-staff-comment__txt {
  font-size: 13px;
  font-size: 0.8125rem;
  padding-left: 10px;
}
.p-category-staff-comment__name {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 5px;
}
.p-category-staff-comment__comment {
  font-size: 13px;
  font-size: 0.8125rem;
}

/*レビューリスト*/
.p-category-detail-reviews__list {
  padding-bottom: 15px;
}
.p-category-detail-reviews__item {
  padding: 15px 10px;
}
.p-category-detail-reviews__item:nth-of-type(odd) {
  background: #fefefe;
}
.p-category-detail-reviews__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.p-category-detail-reviews__none {
  padding-top: 15px;
}
.p-category-detail-reviews__name {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.p-category-detail-reviews__name-place {
  padding-right: 5px;
}
.p-category-detail-reviews__name-name {
  padding-right: 5px;
}
@media screen and (min-width: 600px), print {
  .p-category-detail-reviews__time {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 5px;
  }
}
.p-category-detail-reviews__time-time {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #959595;
  margin-bottom: 10px;
}
.p-category-detail-reviews__star {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.p-category-detail-reviews__star-img {
  max-width: 100%;
  width: 100px;
  height: 20px;
}
.p-category-detail-reviews__star-txt {
  display: inline-block;
  padding-top: 3px;
  margin-left: 10px;
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

/*関連レシピ*/
.p-category-detail-recipe .c-card-line__ttl {
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-category-detail-recipe__item:nth-child(n + 4) {
  display: none;
}
@media screen and (min-width: 600px), print {
  .p-category-detail-recipe__item:nth-child(4) {
    display: block;
  }
  .p-category-detail-recipe__item:nth-child(n + 5) {
    display: none;
  }
}
@media screen and (min-width: 960px), print {
  .p-category-detail-recipe__item:nth-child(n + 5) {
    display: block;
  }
}
.p-category-detail-recipe__item .c-card-line__img img {
  max-height: 60px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
@media screen and (min-width: 960px), print {
  .p-category-detail-recipe .p-top-recipe__text {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-category-detail-recipe .p-top-recipe__difficulty {
  margin-bottom: 5px;
}
.p-category-detail-recipe .p-top-recipe__difficulty-value {
  display: block;
  margin-top: 2px;
}
.p-category-detail-recipe .c-card-line__ttl {
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 960px), print {
  .p-category-detail-recipe .c-card-line__ttl {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-category-detail-recipe .p-top-recipe__text {
  padding: 10px 3px;
  margin-top: 5px;
}
.p-category-detail-recipe .p-top-recipe__difficulty,
.p-category-detail-recipe .p-top-recipe__time {
  font-size: 10px;
  font-size: 0.625rem;
}

/* =========================================================
cart - カートページ
========================================================= */
/*追加注文中です*/
.p-cart-add {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.p-cart-add__ttl {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: #2a3263;
  background: #edf7fb;
  padding: 10px;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 600px), print {
  .p-cart-add__ttl {
    margin-bottom: 0;
    background: none;
    padding: 5px;
  }
}

/* 商品一覧
 ===================*/
/*list*/
/*item*/
.p-cart-item {
  border: 1px solid #dddddd;
  padding: 8px;
  margin-bottom: 25px;
}
@media screen and (min-width: 600px), print {
  .p-cart-item {
    margin-bottom: 50px;
    padding: 0 0 50px;
    border: none;
    border-bottom: 1px dotted #dddddd;
  }
  .p-cart-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
  }
}
.p-cart-item__img {
  text-align: center;
}
.p-cart-item__img img {
  border: 1px solid #dddddd;
  max-height: 150px;
}
.p-cart-item__text-in {
  padding-left: 5px;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__text-in {
    padding-left: 15px;
  }
}
.p-cart-item__coad {
  background: #f1f1f1;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 5px;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__coad {
    margin-bottom: 10px;
  }
}
.p-cart-item__name {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__name {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.p-cart-item__name a {
  color: #333333;
  cursor: pointer;
}
.p-cart-item__name a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.p-cart-item__ladel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__ladel {
    margin-bottom: 15px;
  }
}
.p-cart-item__ladel .p-category-item__send-item {
  width: 50%;
  text-align: center;
  margin-left: 0;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__ladel .p-category-item__send-item {
    width: 23%;
  }
}
.p-cart-item__orders {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__orders {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-cart-item__orders-price {
  width: 100%;
  max-width: 200px;
}
.p-cart-item__orders-price .summary-price {
  display: none;
}
.p-cart-item__orders-price__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.p-cart-item__orders-price__ttl {
  color: #2a3263;
  border: 1px solid #2a3263;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 5px 3px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__orders-price__ttl {
    padding: 10px 5px;
    font-size: 14px;
    font-size: 0.875rem;
    width: 100%;
    max-width: 75px;
  }
}
.p-cart-item__orders-price__item {
  color: #2a3263;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
  margin-left: 3px;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__orders-price__item {
    font-size: 16px;
    font-size: 1rem;
    margin-left: 15px;
  }
}
.p-cart-item__orders-price__item .big {
  font-size: 110%;
  margin-right: 2px;
}
.p-cart-item__orders-price.summary .normal .p-cart-item__orders-price__item {
  font-weight: normal;
}
.p-cart-item__orders-price.summary .summary-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-cart-item__orders-volume {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__orders-volume {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.p-cart-item__orders-volume__value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__orders-volume__value {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.p-cart-item__orders-volume__value-btn {
  display: inline-block;
  background: #f1f1f1;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 2px;
  width: 25px;
  height: 25px;
  text-align: center;
  color: #7ac2e3;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  transition: .3s;
}
.p-cart-item__orders-volume__value-btn:hover {
  opacity: .7;
  background-color: #dddddd;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__orders-volume__value-btn {
    padding: 6px 0;
    width: 30px;
    height: 30px;
  }
}
.p-cart-item__orders-volume__value-btn.btn-cursor {
  cursor: pointer;
}
.p-cart-item__orders-volume__value-value {
  margin: 0 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;

  min-width: 21px;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__orders-volume__value-value {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 15px;
    min-width: 24px;
  }
}
.p-cart-item__orders-volume__delete {
  margin-top: 15px;
  text-decoration: underline;
  cursor: pointer;
  transition: .3s;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: right;
}
.p-cart-item__orders-volume__delete:hover {
  opacity: .7;
  color: #7ac2e3;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__orders-volume__delete {
    margin: 0 0 0 15px;
  }
}

/*　サイド
==============*/
.p-cart-side {
  margin-bottom: 5px;
  background: #f1f1f1;
  padding: 15px 10px;
  color: #5e646b;
}
@media screen and (min-width: 600px), print {
  .p-cart-side {
    padding: 15px 15px;
  }
}

/* 配達 */
.p-cart-delivery {
  text-align: center;
  padding: 20px 10px;
}
.p-cart-delivery__ttl-in {
  display: inline-block;
  border-bottom: 1px dotted #959595;
  margin-bottom: 10px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_automobile_main.svg) no-repeat left center;
  background-size: 30px 30px;
  padding-left: 35px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  font-weight: bold;
  min-width: 220px;
}
.p-cart-delivery__text {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-cart-delivery__text span {
  font-weight: bold;
}
.p-cart-delivery__text .normal {
  color: #FB807A;
}
.p-cart-delivery__text .refrigerated {
  color: #7ac2e3;
}
.p-cart-delivery__text .frozen {
  color: #2f3fa1;
}
.p-cart-delivery__pay {
  margin-bottom: 15px;
}
.p-cart-delivery__pay-in {
  display: inline-block;
  background: #f1f1f1;
  padding: 8px 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
}
@media screen and (min-width: 600px), print {
  .p-cart-delivery__pay-in {
    padding: 10px 5px;
  }
}
.p-cart-delivery__pay-in .big {
  font-size: 115%;
  font-weight: bold;
}
.p-cart-delivery__caution {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}

/*coupon*/
.p-cart-coupon {
  background: #7ac2e3;
}
.p-cart-coupon__in {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}
.p-cart-coupon__ttl {
  font-weight: bold;
  color: #ffffff;
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: center;
}
.p-cart-coupon__input {
  height: 36px;
}
.p-cart-coupon__btn-input {
  padding: 5px;
  margin-left: 5px;
}
.p-cart-coupon__btn-login {
  width: 100%;
  text-align: center;
}
.p-cart-coupon__caution {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  color: #ffffff;
  margin-top: 10px;
  width: 100%;
}

/*couponバナー*/
.p-cart-coupon-bnr {
  background: #ffffff;
  border: 3px solid #2a3263;
  padding: 3px;
  text-align: center;
  cursor: pointer;
}
.p-cart-coupon-bnr:hover .p-cart-coupon-bnr__in::before {
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: #f1f1f1;
}
.p-cart-coupon-bnr__in {
  padding: 20px 10px 15px;
  position: relative;
}
.p-cart-coupon-bnr__in::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #2a3263;
  transition: .3s;
  background: #ffffff;
}
.p-cart-coupon-bnr__in > span {
  display: block;
  text-align: center;
  color: #2a3263;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.p-cart-coupon-bnr__main {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.p-cart-coupon-bnr__sub {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-cart-coupon-bnr__sub-in {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
}

/*クーポン　モーダル*/
.p-cart-coupon-modal {
  border: 3px solid #2a3263;
  padding: 5px;
}
.p-cart-coupon-modal__in {
  padding: 15px;
  border: 1px solid #2a3263;
}
@media screen and (min-width: 600px), print {
  .p-cart-coupon-modal {
    min-width: 350px;
  }
}
.p-cart-coupon-modal__ttl {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}
.p-cart-coupon-modal__coad {
  text-align: center;
  border: 1px solid #dddddd;
  padding: 12px 10px 10px;
  font-weight: bold;
  color: #2a3263;
  margin: 0 auto 5px;
  max-width: 230px;
  box-sizing: border-box;
}
.p-cart-coupon-modal__btn {
  margin: 0 auto 20px;
  text-align: center;
}

/*合計金額部分の表*/
.p-cart-total__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
  padding: 10px;
}
.p-cart-total__row-th {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px), print {
  .p-cart-total__row-th {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-cart-total__row-th .big {
  font-size: 130%;
  font-weight: bold;
  color: #2a3263;
}
.p-cart-total__row-td {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px), print {
  .p-cart-total__row-td {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-cart-total__row-td .big {
  font-size: 130%;
  font-weight: bold;
  color: #2a3263;
}

/*ポイント*/
@media screen and (min-width: 960px), print {
  .p-cart-total-point {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-cart-total-point .p-cart-total__row-th {
  font-size: 12px;
  font-size: 0.75rem;
}
.p-cart-total-point .p-cart-total__row-th img {
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: bottom;
}
.p-cart-total-point .p-cart-total__row-th .big {
  font-size: 130%;
  font-weight: bold;
  color: #FB807A;
}

/*合計金額*/
.p-cart-total-fee {
  background: #F8F9FB;
}
.p-cart-total-fee__item-total {
  border-bottom: 1px solid #959595;
  padding: 12px 10px;
}
.p-cart-total-fee__item-total .p-cart-total__row-th,
.p-cart-total-fee__item-total .p-cart-total__row-td {
  font-weight: bold;
}
.p-cart-total-fee__item-total .p-cart-total__row-th {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-cart-total-fee__synthesis-total {
  padding: 12px 10px;
  border-top: 1px solid #959595;
  color: #FB807A;
  font-weight: bold;
}
.p-cart-total-fee__synthesis-total .big {
  color: #FB807A;
}
.p-cart-total-fee__synthesis-total .p-cart-total__row-th {
  font-size: 14px;
  font-size: 0.875rem;
}

/*決算方法*/
.p-cart-settlement__mamapan {
  margin-bottom: 20px;
}
.p-cart-settlement__mamapan-ttl {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-cart-settlement__mamapan-btn {
  max-width: 250px;
  margin: 0 auto;
}
.p-cart-settlement__recipe-cart .p-category-item__btn {
  padding: 15px;
  line-height: 1.3;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 375px), print {
  .p-cart-settlement__recipe-cart .p-category-item__btn {
    padding: 18px;
  }
}
.p-cart-settlement__amazon #AmazonPayButton {
  max-width: 250px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.p-cart-settlement__amazon #AmazonPayButton img {
  max-width: 250px;
  max-height: auto !important;
}

/*オススメ商品
===============*/
.p-cart-recommend__item {
  padding: 10px;
}
@media screen and (min-width: 600px), print {
  .p-cart-recommend__item {
    padding: 15px;
  }
}
.p-cart-recommend__item .c-card-line {
  padding-bottom: 15px;
}
.p-cart-recommend__item .c-card-line {
  height: 100%;
}
.p-cart-recommend__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 2px 0;
  margin-bottom: 5px;
  height: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-cart-recommend__value {
  font-size: 10px;
  font-size: 0.625rem;
  margin-bottom: 5px;
  height: 13px;
  overflow: hidden;
}
.p-cart-recommend__pay {
  font-size: 10px;
  font-size: 0.625rem;
  text-align: center;
  font-weight: bold;
  color: #2a3263;
}
@media screen and (min-width: 600px), print {
  .p-cart-recommend__pay {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-cart-recommend__btn {
  font-size: 11px;
  font-size: 0.6875rem;
  background: none;
  padding-left: 0;
}
@media screen and (min-width: 600px), print {
  .p-cart-recommend__btn {
    font-size: 12px;
    font-size: 0.75rem;
    background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_cart_w.svg) no-repeat left center;
    background-size: 15px 15px;
    padding-left: 20px;
  }
}

/* =========================================================
step - 決済ステップ
========================================================= */
/* TOP
 ===================*/
/*商品表示*/
.l-step-list {
  margin-bottom: 30px;
}

.l-step-item {
  margin-bottom: 15px;
  border: 1px dotted #dddddd;
  padding: 10px;
}
@media screen and (min-width: 600px), print {
  .l-step-item {
    border: none;
    border-bottom: 1px dotted #dddddd;
    padding: 0 0 10px;
  }
}
.l-step-item__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-step-item__media {
  width: 85px;
}
.l-step-item__media .p-category-difference__iconarea {
  margin-bottom: 0;
}
.l-step-item__media .p-category-item__send-item {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}
.l-step-item__contents {
  width: calc(100% - 85px);
  padding-left: 10px;
}
.l-step-item__contents-in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #dddddd;
}
.l-step-item__name {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 10px;
  line-height: 1.3;
  border-left: 3px solid #7ac2e3;
  padding-left: 3px;
}
.l-step-item__total {
  width: 50%;
  border-right: 1px dotted #959595;
}
.l-step-item__total:nth-child(even) {
  border: none;
}
@media screen and (min-width: 600px), print {
  .l-step-item__total {
    width: 25%;
  }
  .l-step-item__total:nth-child(even) {
    border-right: 1px dotted #959595;
  }
  .l-step-item__total:last-of-type {
    border: none;
  }
}
.l-step-item__total-ttl {
  font-size: 12px;
  font-size: 0.75rem;
  background: #f1f1f1;
  text-align: center;
  padding: 5px;
}
@media screen and (min-width: 600px), print {
  .l-step-item__total-ttl {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.l-step-item__total-item {
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
  padding: 5px;
}
@media screen and (min-width: 600px), print {
  .l-step-item__total-item {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*合計金額の表示*/
.p-step-total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 30px;
}
.p-step-total__list {
  width: 100%;
  border: 2px solid #dddddd;
}
@media screen and (min-width: 600px), print {
  .p-step-total__list {
    max-width: 400px;
  }
}
.p-step-total__item {
  padding: 15px 10px;
}
.p-step-total__item .big {
  font-size: 120%;
  color: #FB807A;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.p-step-total__ttl {
  text-align: center;
  background: #f1f1f1;
  border-bottom: 1px dotted #959595;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px), print {
  .p-step-total__ttl {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-step-total__ttl:last-of-type {
  border-bottom: none;
}
.p-step-total__info {
  text-align: right;
  border-bottom: 1px dotted #959595;
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-step-total__info:last-of-type {
  border-bottom: none;
}

/*獲得ポイント合計*/
.p-step-total-point {
  border-top: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.p-step-total-point__item {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 600px), print {
  .p-step-total-point__item {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-step-total-point__ttl {
  background: #ffffff;
}
.p-step-total-point__ttl .p-step-total-point__item {
  display: block;
  vertical-align: baseline;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
}
.p-step-total-point__ttl img {
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
.p-step-total-point__info {
  color: #FB807A;
  font-weight: bold;
  text-align: right;
}
.p-step-total-point__info .big {
  font-size: 120%;
  color: #FB807A;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

/*合計表*/
.p-step-calculation {
  border: 2px solid #7ac2e3;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation {
    border: none;
  }
}
.p-step-calculation__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__in {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
}
.p-step-calculation__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px dotted #959595;
  position: relative;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__list {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    border-bottom: none;
    padding-left: 30px;
  }
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__list.plus::before {
    content: '+';
    font-size: 20px;
    position: absolute;
    left: 6px;
    top: 50%;
    margin-top: -10px;
    font-weight: bold;
  }
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__list.plus:first-of-type {
    padding-left: 0;
  }
}
.p-step-calculation__list.plus:first-of-type::before {
  content: none;
}
.p-step-calculation__list.plus .p-step-calculation__info .p-step-calculation__item::before {
  content: '+';
  font-size: 15px;
  font-weight: bold;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__list.plus .p-step-calculation__info .p-step-calculation__item::before {
    content: none;
  }
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__list.minus::before {
    content: '-';
    font-size: 20px;
    position: absolute;
    left: 9px;
    top: 50%;
    margin-top: -10px;
    color: #7ac2e3;
    font-weight: bold;
  }
}
.p-step-calculation__list.minus .p-step-calculation__info {
  color: #7ac2e3;
}
.p-step-calculation__list.minus .p-step-calculation__info .p-step-calculation__item::before {
  content: '-';
  font-size: 15px;
  color: #7ac2e3;
  font-weight: bold;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__list.minus .p-step-calculation__info .p-step-calculation__item::before {
    content: none;
  }
}
.p-step-calculation__list.minus.no-use .p-step-calculation__info .p-step-calculation__item::before {
  content: none;
}
.p-step-calculation__list:last-of-type {
  border-bottom: none;
}
.p-step-calculation__item {
  line-height: 1.3;
}
.p-step-calculation__ttl {
  background: #f1f1f1;
  padding: 15px 10px;
  width: 50%;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__ttl {
    width: 100%;
    padding: 5px;
  }
}
.p-step-calculation__info {
  padding: 15px 10px;
  width: 50%;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: right;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation__info {
    width: 100%;
    text-align: center;
    border: 1px solid #f1f1f1;
    padding: 10px 5px;
  }
}

/*総合計金額*/
.p-step-calculation-total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  border-top: 2px solid #959595;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation-total {
    background: #f1f1f1;
    margin-top: 10px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
  }
}
.p-step-calculation-total__item {
  font-weight: bold;
}
.p-step-calculation-total__ttl {
  padding: 15px;
  width: 50%;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation-total__ttl {
    width: auto;
  }
}
.p-step-calculation-total__info {
  padding: 15px;
  width: 50%;
  text-align: right;
  color: #FB807A;
}
@media screen and (min-width: 600px), print {
  .p-step-calculation-total__info {
    width: auto;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/*情報の変更*/
@media screen and (min-width: 600px), print {
  .p-step-info__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-step-info__box--in {
  padding: 8px;
  width: 100%;
}
.p-step-info__box--in .c-basic-form__textarea {
  max-width: 100%;
}
.p-step-info__box .c-table-sp__ttl {
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .p-step-info__box .c-table-sp__ttl {
    min-height: 30px;
  }
}
.p-step-info__box .c-table-sp__ttl .p-step-info__value {
  margin-left: 5px;
}
@media screen and (min-width: 600px), print {
  .p-step-info__box .c-table-sp__ttl .p-step-info__value {
    text-align: center;
  }
}
.p-step-info__value {
  color: #FB807A;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .p-step-info__value {
    text-align: left;
  }
}
.p-step-info__value .big {
  font-size: 120%;
}
.p-step-info__sentence {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 600px), print {
  .p-step-info__details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-step-info__contents-in {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  .p-step-info__contents-in {
    margin-bottom: 0;
  }
}
.p-step-info__contents .p-step-info__sentence {
  color: #FB807A;
}
.p-step-info__btn {
  width: 100%;
  text-align: center;
  padding-top: 15px;
}
@media screen and (min-width: 600px), print {
  .p-step-info__btn {
    padding: 0 0 0 15px;
  }
}
.p-step-info__btn .c-link-btn {
  max-width: 200px;
  padding: 10px;
}
@media screen and (min-width: 600px), print {
  .p-step-info__btn {
    max-width: 150px;
  }
}

/*モーダル
==============*/
.p-step-modal__box {
  max-width: 450px;
  margin: 0 auto;
  border: 2px solid #7ac2e3;
  padding: 10px;
}
.p-step-modal__box .p-step-modal__box__in {
  text-align: center;
}
.p-step-modal__box .p-step-modal__box__in .c-form-input__ttl {
  display: inline-block;
  max-width: 40%;
}
.p-step-modal__box .p-step-modal__box__in .c-basic-form__input {
  display: inline-block;
  width: 150px;
  max-width: 60%;
}

.p-step-modal-radio__item {
  margin-bottom: 10px;
}
.p-step-modal-radio__radio {
  display: block;
  cursor: pointer;
  margin: 0;
  padding: 10px;
  background: #bdc3c7;
  color: #869198;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1;
  transition: .2s;
}
.p-step-modal-radio__radio--open {
  display: none;
}
.p-step-modal-radio__radio--open__in {
  border: 1px solid #7ac2e3;
  padding: 5px;
}
.p-step-modal-radio input[type="checkbox"],
.p-step-modal-radio input[type="radio"] {
  display: none;
}
.p-step-modal-radio input[type="checkbox"]:checked + .p-step-modal-radio__radio,
.p-step-modal-radio input[type="radio"]:checked + .p-step-modal-radio__radio {
  background-color: #7ac2e3;
}
.p-step-modal-radio input[type="checkbox"]:checked + .p-step-modal-radio__radio .p-step-modal-radio__contents,
.p-step-modal-radio input[type="radio"]:checked + .p-step-modal-radio__radio .p-step-modal-radio__contents {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_check-square_w.svg);
}
.p-step-modal-radio input[type="checkbox"]:checked + .p-step-modal-radio__radio .p-step-modal-radio__contents p,
.p-step-modal-radio input[type="radio"]:checked + .p-step-modal-radio__radio .p-step-modal-radio__contents p {
  color: #ffffff;
}
.p-step-modal-radio input[type="checkbox"]:checked ~ .p-step-modal-radio__radio--open,
.p-step-modal-radio input[type="radio"]:checked ~ .p-step-modal-radio__radio--open {
  display: block;
  opacity: 1;
}
.p-step-modal-radio__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-left: 30px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_square_w.svg) no-repeat left center;
  background-size: 15px 15px;
  background-position: top 2px left;
}
.p-step-modal-radio__contents-txt {
  text-align: left;
  line-height: 1.3;
}

/*モーダル　ポイント*/
.p-step-modal-point__ttl {
  max-width: 450px;
  margin: 0 auto 15px;
}
.p-step-modal-point__ttl .big {
  font-size: 120%;
  color: #FB807A;
}
.p-step-modal-point__radio {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-step-modal-point__radio .c-basic-form__input {
  display: inline-block !important;
}
.p-step-modal-point__radio .switch-on {
  width: calc(100% / 3);
  line-height: 1.2;
}
.p-step-modal-point__someuse:checked ~ .p-step-modal-point__open {
  display: block;
  opacity: 1;
}
.p-step-modal-point__open {
  display: none;
  opacity: 0;
  transition: .3s;
  width: 100%;
}
.p-step-modal-point__open-input {
  display: block;
  text-align: center;
}
.p-step-modal-point__open-input .c-basic-form__input {
  max-width: 100px;
  text-align: center;
}

/*モーダル　coupon*/
/*お支払い方法 pay*/
.p-step-modal-pay .p-step-modal-radio__contents {
  display: block;
}
.p-step-modal-pay__crcinfo {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  display: block;
  padding: 5px;
}
.p-step-modal-pay__crcinfo .c-gray-table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .p-step-modal-pay__crcinfo .c-gray-table {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0;
    border: 1px solid #dddddd;
    border-top: none;
  }
  .p-step-modal-pay__crcinfo .c-gray-table:first-of-type {
    border-top: 1px solid #dddddd;
  }
}
.p-step-modal-pay__crcinfo .c-gray-table__ttl {
  color: #333333;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .p-step-modal-pay__crcinfo .c-gray-table__ttl {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.3;
    width: 25%;
  }
}
.p-step-modal-pay__crcinfo .c-gray-table__info {
  color: #333333;
  width: 100%;
}
@media screen and (min-width: 600px), print {
  .p-step-modal-pay__crcinfo .c-gray-table__info {
    padding: 5px;
    width: 75%;
  }
}
.p-step-modal-pay .c-basic-form__select--basic.mini {
  max-width: 60px;
}
@media screen and (min-width: 600px), print {
  .p-step-modal-pay .c-basic-form__select--basic.mini {
    max-width: 80px;
  }
}
.p-step-modal-pay .c-basic-form__checkbox {
  border: 1px solid #dddddd;
  padding: 10px;
  display: inline-block;
  line-height: 1.3;
  cursor: pointer;
}
.p-step-modal-pay .c-basic-form__checkbox-parts {
  padding-right: 0;
}

/*お客様のご注文番号*/
.p-step-thanks__num {
  padding: 0 5px;
  color: #d90b23;
  font-weight: bold;
  word-break: break-all;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 600px), print {
  .p-step-thanks__num {
    font-size: 120%;
  }
}

/* =========================================================
mymamapan - マイページ
========================================================= */
/* 新規会員登録
 ===================*/
.p-mymamapan-entry__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-entry__list {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.p-mymamapan-entry__box {
  display: block;
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-entry__box {
    max-width: 50%;
    margin: 0 5px;
  }
}

/*会員比較表*/
.p-mymamapan-entry__table {
  margin-top: 50px;
}
.p-mymamapan-entry__table table {
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-mymamapan-entry__table table tr th, .p-mymamapan-entry__table table tr td {
  padding: 10px 3px;
  border: 1px solid #ffffff;
  text-align: center;
  vertical-align: middle;
  line-height: 1.3;
}
.p-mymamapan-entry__table .p-mymamapan-entry__table-ttl th {
  border-bottom: 2px solid #ffffff;
  font-weight: bold;
}
.p-mymamapan-entry__table .p-mymamapan-entry__table-contents .official,
.p-mymamapan-entry__table .p-mymamapan-entry__table-contents .support {
  font-weight: bold;
  font-size: 25px;
  font-size: 1.5625rem;
  color: #2a3263;
}
.p-mymamapan-entry__table .p-mymamapan-entry__table-contents .support {
  color: #7ac2e3;
}
.p-mymamapan-entry__table .ttl {
  background: #f1f1f1;
}
.p-mymamapan-entry__table .ttl .small {
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
}
.p-mymamapan-entry__table .official {
  background: #e5e8fc;
}
.p-mymamapan-entry__table .support {
  background: #edf7fb;
}

/* TOP
 ===================*/
.p-mymamapan-navi .c-link-btn {
  cursor: pointer;
  transition: .3s;
}
.p-mymamapan-navi .c-link-btn:hover {
  opacity: .7;
  background-color: #7ac2e3;
}
.p-mymamapan-navi .c-link-btn .c-ttl-icon__img {
  max-width: 23px;
  height: 23px;
}
.p-mymamapan-navi .active .c-btn-square {
  border-color: #7ac2e3;
}
.p-mymamapan-navi .active .c-btn-square::before {
  background-color: #7ac2e3;
}
.p-mymamapan-navi .active .c-btn-square__ttl, .p-mymamapan-navi .active .c-btn-square__sub {
  color: #ffffff;
}
.p-mymamapan-navi .active .c-btn-square__sub {
  border-color: #ffffff;
}
.p-mymamapan-navi .active .c-link-btn {
  background: #7ac2e3;
  color: #ffffff;
}
.p-mymamapan-navi .active .c-link-btn .c-link__arrow-right {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg);
}

/* 獲得クーポン
 ===================*/
.p-mymamapan-coupon .c-table-sp {
  border: none;
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-coupon .c-table-sp {
    border: 1px solid #dddddd;
  }
}
.p-mymamapan-coupon .c-table-sp__ttl {
  border: 1px solid #dddddd;
  border-bottom: none;
  padding: 10px 10px 5px;
  position: relative;
}
.p-mymamapan-coupon .c-table-sp__ttl::before {
  content: '';
  width: 100%;
  height: 100%;
  border: 6px solid #ffffff;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-coupon .c-table-sp__ttl {
    border: none;
    border-bottom: 1px dotted #7ac2e3;
    padding: 8px;
    width: 150px;
  }
  .p-mymamapan-coupon .c-table-sp__ttl::before {
    content: none;
  }
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-coupon .c-table-sp__ttl:last-of-type {
    border: none;
  }
}
.p-mymamapan-coupon .c-table-sp__ttl span {
  position: relative;
  z-index: 5;
}
.p-mymamapan-coupon .c-table-sp__item {
  border: 1px solid #dddddd;
  border-top: none;
  padding: 5px;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-coupon .c-table-sp__item {
    border: none;
    border-bottom: 1px dotted #7ac2e3;
    padding: 8px;
    margin-bottom: 0;
    width: calc(100% - 150px);
  }
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-coupon .c-table-sp__item:last-of-type {
    border: none;
  }
}

/* TOP ご注文状況
 ===================*/
.p-order-status__item {
  margin-bottom: 35px;
}
.p-order-status__in {
  border: 1px solid #dddddd;
}
.p-order-status__main {
  padding-top: 10px;
  padding-bottom: 10px;
}
.p-order-status__main-item {
  margin-bottom: 5px;
  text-align: center;
}
.p-order-status__main-item .p-order-status__date {
  padding-bottom: 3px;
  border-bottom: 1px dotted #dddddd;
}
.p-order-status__main-item:last-of-type {
  margin-bottom: 0;
}
.p-order-status__main-item:last-of-type .p-order-status__date {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 600px), print {
  .p-order-status__main-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
  .p-order-status__main-item .p-order-status__date {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.p-order-status__ttl {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 5px;
  padding-bottom: 5px;
  display: block;
  position: relative;
}
@media screen and (min-width: 600px), print {
  .p-order-status__ttl {
    min-width: 70px;
  }
}
@media screen and (min-width: 960px), print {
  .p-order-status__ttl {
    min-width: 90px;
  }
}
.p-order-status__ttl::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #dddddd;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 0;
}
.p-order-status__date {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 5px;
  display: block;
  line-height: 1.3;
}
@media screen and (min-width: 600px), print {
  .p-order-status__date {
    margin-bottom: 0;
  }
}
.p-order-status__another {
  padding: 0 5px 5px 5px;
}

.p-order-num {
  padding: 5px 10px;
  background: #dddddd;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-order-num__ttl {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px), print {
  .p-order-num__ttl {
    margin: 0 10px 0 0;
    display: inline-block;
  }
}

.p-order-price .p-order-status__date {
  color: #FB807A;
  font-weight: bold;
}

.p-order-category {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  font-size: 0.75rem;
  background: #2a3263;
  color: #ffffff;
}
.p-order-category.receipt {
  background: #b1b652;
}
.p-order-category.plusno {
  background: #a74a4a;
}
.p-order-category.set {
  background: #ca7a29;
}
.p-order-category.cancel {
  background: #959595;
}
.p-order-category.shipment {
  background: #7ac2e3;
}

.p-order-link__in {
  text-align: center;
  padding: 10px;
}
.p-order-link .c-link-btn {
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 0 auto 10px;
  display: block;
}
.p-order-link .c-link-btn:last-of-type {
  margin-bottom: 0;
}
.p-order-link .c-link-btn.c-link-btn--gray {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px;
}

/* ご注文状況 詳細
 ===================*/
.p-mymamapan-order__info .c-gray-table__info span,
.p-mymamapan-order__item .c-gray-table__info span {
  font-size: 16px;
  font-size: 1rem;
}

.p-mymamapan-order__total-fee .p-cart-total__row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-order__total-fee .p-cart-total__row {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.p-mymamapan-order__total-fee .p-cart-total__row .p-cart-total__row-th,
.p-mymamapan-order__total-fee .p-cart-total__row .p-cart-total__row-td {
  text-align: right;
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-order__total-fee .p-cart-total__row .p-cart-total__row-th,
  .p-mymamapan-order__total-fee .p-cart-total__row .p-cart-total__row-td {
    max-width: 200px;
    width: 100%;
  }
}
.p-mymamapan-order__total-fee .p-cart-total__row .p-cart-total__row-th {
  text-align: left;
}
@media screen and (min-width: 600px), print {
  .p-mymamapan-order__total-fee .p-cart-total__row .p-cart-total__row-th {
    text-align: right;
  }
}

/* 会員情報入力
 ===================*/
.p-entry-kiyaku__ttl {
  cursor: pointer;
}
.p-entry-kiyaku__ttl:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
@media screen and (min-width: 600px), print {
  .p-entry-kiyaku__ttl:hover {
    opacity: 1;
    cursor: default;
  }
}
.p-entry-kiyaku__ttl-in {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
}
@media screen and (min-width: 600px), print {
  .p-entry-kiyaku__ttl-in {
    background-image: none;
  }
}
.p-entry-kiyaku__ttl.rotate .p-entry-kiyaku__ttl-in {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_up_main.svg);
}
@media screen and (min-width: 600px), print {
  .p-entry-kiyaku__ttl.rotate .p-entry-kiyaku__ttl-in {
    background-image: none;
  }
}
.p-entry-kiyaku__box {
  height: 300px;
  overflow-y: scroll;
}
@media screen and (min-width: 600px), print {
  .p-entry-kiyaku__box {
    height: 200px;
  }
}

/* レシピ投稿管理
 ===================*/
.p-cart-item__text-in.p-mymamapan-review__table {
  padding: 5px 0 0;
}
@media screen and (min-width: 600px), print {
  .p-cart-item__text-in.p-mymamapan-review__table {
    padding: 0 0 0 5px;
  }
}

/*できたよレポート投稿
===================*/
.p-mymamapan-report-good__item {
  border: 1px solid #2a3263;
  background: #ffffff;
  color: #2a3263;
  display: inline-block;
  padding: 5px;
  letter-spacing: 0;
  border-radius: 5px;
  font-size: 12px;
  font-size: 0.75rem;
  position: relative;
  z-index: 100;
  cursor: pointer;
  transition: .3s;
}
.p-mymamapan-report-good__item:hover {
  opacity: .7;
  background-color: #edf7fb;
}
@media screen and (max-width: 340px), print {
  .p-mymamapan-report-good__item {
    padding: 4px;
    letter-spacing: 0;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-mymamapan-report-good__num {
  background: #2a3263;
  color: #ffffff;
  display: inline-block;
  padding: 5px;
  margin-left: 5px;
  border-radius: 5px;
  font-size: 12px;
  font-size: 0.75rem;
  position: relative;
}
@media screen and (max-width: 340px), print {
  .p-mymamapan-report-good__num {
    padding: 4px 6px;
    letter-spacing: 0;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-mymamapan-report-good__num::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #2a3263 transparent transparent;
  position: absolute;
  top: 50%;
  left: -5px;
  margin-top: -5px;
}

.p-mymamapan-report-ladel {
  display: inline-block;
  position: relative;
  height: 20px;
  /*高さ*/
  line-height: 20px;
  /*高さ*/
  vertical-align: middle;
  text-align: center;
  padding: 1px 15px 0 10px;
  /*文字の左右の余白*/
  font-size: 12px;
  font-size: 0.75rem;
  background: #2a3263;
  /*背景色*/
  color: #ffffff;
  /*文字色*/
  box-sizing: border-box;
  border-right: 1px solid #ffffff;
}
.p-mymamapan-report-ladel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-width: 10px 5px 10px 0;
  border-color: transparent #ffffff transparent transparent;
  border-style: solid;
  width: 0px;
  height: 0px;
  z-index: 1;
}
.p-mymamapan-report-ladel.status1 {
  background: #2a3263;
}
.p-mymamapan-report-ladel.status2 {
  background: #7ac2e3;
}
.p-mymamapan-report-ladel.status3 {
  background: #FB807A;
}

/*
.p-carriage-temperature{
  &__list{
    @include align-items(center);
        						// spサイズ以上
                    @include mq(md, min) {
                    }

    &:first-of-type{
      padding-top: 0;
    }
  }

  &__item{
    text-align: center;
    margin-bottom: 10px;
    &:last-of-type{
      margin-bottom: 0;
    }
    						// spサイズ以上
                @include mq(md, min) {
                  margin-bottom: 0;
                }
    .c-ttl-bgcolor{
      @include font-size(12);
      padding: 8px;
      margin-bottom: 10px;
    }
    img{
      max-width: 300px;
      width: 100%;
      padding: 0 5px;
						// spサイズ以上
						@include mq(md, min) {
              max-width: 250px;
              width: auto;
              padding: 0;
						}
    }

    &.arrow{
      img{
        max-width: 30px;
            // spサイズ以上
						@include mq(lg, min) {
              max-width: 50px;
						}
      }
    }
  }
}

*/
/* =========================================================
recipe - レシピトップページ
========================================================= */
/*オススメレシピ
===============*/
.p-recipe-recommend__item {
  padding: 10px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-recommend__item {
    padding: 15px;
  }
}
.p-recipe-recommend__item .c-card-line {
  padding-bottom: 0;
}
.p-recipe-recommend__item .c-card-line__img img {
  border: none;
  border-radius: 10px;
  max-height: 110px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-recommend__item .c-card-line__img img {
    max-height: 170px;
  }
}
@media screen and (min-width: 960px), print {
  .p-recipe-recommend__item .c-card-line__img img {
    max-height: 200px;
  }
}
.p-recipe-recommend__item .c-card-line--itempage .c-card-line__img img {
  max-height: 180px;
}
@media screen and (min-width: 960px), print {
  .p-recipe-recommend__item .c-card-line--itempage .c-card-line__img img {
    max-height: 220px;
  }
}
.p-recipe-recommend__ttl {
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 10px 5px 15px;
  height: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 2px;
  color: #2a3263;
  font-weight: bold;
}
@media screen and (min-width: 600px), print {
  .p-recipe-recommend__ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-recipe-recommend__btn {
  font-size: 11px;
  font-size: 0.6875rem;
  background: none;
  padding-left: 0;
}
@media screen and (min-width: 600px), print {
  .p-recipe-recommend__btn {
    font-size: 12px;
    font-size: 0.75rem;
    background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_cart_w.svg) no-repeat left center;
    background-size: 15px 15px;
    padding-left: 20px;
  }
}
.p-recipe-recommend_slick-prev, .p-recipe-recommend_slick-next {
  position: absolute;
  top: 37%;
  z-index: 10;
  width: 40px;
  height: 50px;
  text-indent: -9999px;
}
.p-recipe-recommend_slick-prev {
  left: 12px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_menu-left_m.svg) no-repeat right center;
  background-size: contain;
}
.p-recipe-recommend_slick-next {
  right: 20px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_menu-right_m.svg) no-repeat right center;
  background-size: contain;
}

/*季節のレシピ
===============*/
.p-recipe-season-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.p-recipe-season-slider .p-recipe-recommend__item {
  width: 33%;
}
.p-recipe-season-slider .c-card__in .p-recipe-recommend__ttl {
  margin: 10px 0;
}
@media screen and (max-width: 375px), print {
  .p-recipe-season-slider .p-recipe-recommend__item .c-card-line__img img {
    max-height: 70px;
  }
}

/*オススメ特集
===============*/
.p-recipe-feature__item {
  padding: 10px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-feature__item {
    padding: 15px;
  }
}
.p-recipe-feature__item .c-card--btn {
  display: block;
}
.p-recipe-feature__item .c-card__in {
  display: block;
  width: 100%;
}
.p-recipe-feature__item .c-card-line {
  padding-bottom: 0;
  background-color: #7ac2e3;
}
.p-recipe-feature__item .c-card-line__img {
  display: block;
  width: 100%;
}
.p-recipe-feature__item .c-card-line__img img {
  border: none;
  display: block;
  width: 100%;
}
.p-recipe-feature__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 10px 5px 15px;
  height: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 2px;
  color: #ffffff;
}
@media screen and (min-width: 600px), print {
  .p-recipe-feature__ttl {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-recipe-feature__btn {
  font-size: 11px;
  font-size: 0.6875rem;
  background: none;
  padding-left: 0;
}
@media screen and (min-width: 600px), print {
  .p-recipe-feature__btn {
    font-size: 12px;
    font-size: 0.75rem;
    background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_cart_w.svg) no-repeat left center;
    background-size: 15px 15px;
    padding-left: 20px;
  }
}
.p-recipe-feature_slick-prev, .p-recipe-feature_slick-next {
  position: absolute;
  top: 37%;
  z-index: 10;
  width: 40px;
  height: 50px;
  text-indent: -9999px;
}
.p-recipe-feature_slick-prev {
  left: 7px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_menu-left_m.svg) no-repeat right center;
  background-size: contain;
}
.p-recipe-feature_slick-next {
  right: 14px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_menu-right_m.svg) no-repeat right center;
  background-size: contain;
}

.js-recipe-feature-slider .slick-slide:not(.slick-active) {
  -webkit-filter: opacity(50%);
  -moz-filter: opacity(50%);
  -o-filter: opacity(50%);
  -ms-filter: opacity(50%);
  filter: opacity(50%);
  transition: 0.5s linear;
}

/*できたよレポート
===============*/
.p-recipe-report {
  position: relative;
  border: 2px solid #f1f1f1;
  transition: .3s;
}
.p-recipe-report a:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 1;
}
.p-recipe-report a.in-link {
  position: relative;
  z-index: 2;
}
.p-recipe-report:hover {
  border: 2px solid #7ac2e3;
}
.p-recipe-report .p-mymamapan-report-good__item {
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.p-recipe-report--status__data {
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: left;
  padding-bottom: 5px;
}
.p-recipe-report--status__com {
  margin-bottom: 5px;
}
.p-recipe-report--status__com .p-recipe-report-rbn {
  display: inline-block;
  position: relative;
  height: 20px;
  line-height: 20px;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  padding: 0 10px;
  font-size: 11px;
  font-size: 0.6875rem;
  background: #7ac2e3;
  /*塗りつぶし色*/
  color: #FFF;
  /*文字色*/
  box-sizing: border-box;
  background: #2a3263;
}
.p-recipe-report--status__com .p-recipe-report-rbn::before {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 10;
  top: 0;
  left: 0;
  border-width: 10px 0 10px 6px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.p-recipe-report--status__com .p-recipe-report-rbn::after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 10;
  bottom: 0;
  right: 0;
  border-width: 10px 6px 10px 0;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.p-recipe-report--status__com .p-recipe-report-rbn.status1 {
  background: #7ac2e3;
}
.p-recipe-report--status__com .p-recipe-report-rbn.status2 {
  background: #B1BCFF;
}
.p-recipe-report--status__com .p-recipe-report-rbn.status3 {
  background: #FB807A;
}
.p-recipe-report--status__account {
  text-align: left;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_account_gray.svg) no-repeat top left;
  background-size: 17px 17px;
  padding-left: 20px;
  line-height: 20px;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-recipe-report--txt {
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: left;
}
.p-recipe-report-item .c-card-line:hover .c-card-line__img img {
  border-color: transparent;
  opacity: 1;
}
.p-recipe-report-item .c-card-line .c-card-line__img img {
  border: 2px solid transparent;
  transition: .3s;
}
.p-recipe-report-item .c-card-line .c-card-line__img:hover img {
  border-color: #7ac2e3;
  opacity: 0.8;
}

/*人気レシピ
===============*/
.p-recipe-pop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  transition: .3s;
  border: 2px solid #f1f1f1;
  height: 100%;
}
.p-recipe-pop--list {
  padding: 0 15px;
}
.p-recipe-pop a:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 1;
}
.p-recipe-pop a.in-link {
  position: relative;
  z-index: 2;
}
.p-recipe-pop:hover {
  border: 2px solid #dddddd;
}
.p-recipe-pop--no {
  display: inline-block;
  padding: 8px 20px;
  margin: 5px 0;
}
.p-recipe-pop--no__item {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: bold;
  color: #7ac2e3;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_crown_sub.svg) no-repeat top left;
  background-size: 25px 25px;
  padding-left: 30px;
  line-height: 25px;
}
.p-recipe-pop--ttl {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: auto;
  padding-top: 5px;
  line-height: 1.3;
}
.p-recipe-pop--img--top img {
  border-radius: 10px;
  max-height: 200px;
}
.p-recipe-pop--img img {
  border-radius: 10px;
  max-height: 110px;
}
@media screen and (min-width: 375px), print {
  .p-recipe-pop--img img {
    max-height: 160px;
  }
}
@media screen and (min-width: 600px), print {
  .p-recipe-pop--img img {
    max-height: 140px;
  }
}
@media screen and (min-width: 960px), print {
  .p-recipe-pop--img img {
    max-height: 160px;
  }
}
.p-recipe-pop__text {
  margin-top: auto;
  font-size: 11px;
  font-size: 0.6875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.p-recipe-pop__text__item {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  display: block;
}
.p-recipe-pop__text__item span {
  margin: 3px;
  display: inline-block;
}
@media screen and (min-width: 600px), print {
  .p-recipe-pop__text__item span {
    margin: 5px;
  }
}
.p-recipe-pop__text--item {
  border-bottom: 1px solid #f1f1f1;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.p-recipe-pop__text--item .p-recipe-pop__difficulty .p-recipe-pop__time__item,
.p-recipe-pop__text--item .p-recipe-pop__time .p-recipe-pop__time__item {
  margin-left: 3px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-pop__text--item .p-recipe-pop__difficulty .p-recipe-pop__time__item,
  .p-recipe-pop__text--item .p-recipe-pop__time .p-recipe-pop__time__item {
    margin-left: 5px;
  }
}
.p-recipe-pop__text--item .p-recipe-pop__difficulty {
  border: none;
  margin-right: 20px;
}
.p-recipe-pop__difficulty {
  padding: 5px 0;
  border-bottom: 1px solid #f1f1f1;
}
.p-recipe-pop__difficulty-value {
  color: #7ac2e3;
}
.p-recipe-pop__time {
  padding: 5px 0;
}
.p-recipe-pop__time__item {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_time_accent.svg) no-repeat left center;
  background-size: 15px 15px;
  padding-left: 20px;
  line-height: 20px;
  display: inline-block;
  width: auto;
}
.p-recipe-pop--down .p-recipe-pop--no {
  padding: 3px 13px;
  margin-top: 5px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-pop--down .p-recipe-pop--no {
    padding: 5px 16px;
  }
}
.p-recipe-pop--down .p-recipe-pop--no__item {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #7ac2e3;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_crown_sub.svg) no-repeat top left;
  background-size: 20px 20px;
  padding-left: 23px;
  line-height: 20px;
}
@media screen and (min-width: 960px), print {
  .p-recipe-pop--down .p-recipe-pop--no__item {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-recipe-pop--down .p-recipe-pop--ttl {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: auto;
  padding-top: 8px;
}
.p-recipe-pop--top {
  border: none;
  padding: 0;
}
.p-recipe-pop--top:hover {
  border: none;
}
.p-recipe-pop--top:hover .p-recipe-pop--img img {
  border: 2px solid #7ac2e3;
  cursor: pointer;
}
.p-recipe-pop--top:hover .p-recipe-pop--img img:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.p-recipe-pop--top .p-recipe-pop--img img {
  border: 2px solid #ffffff;
  transition: .3s;
  max-height: 145px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-pop--top .p-recipe-pop--img img {
    max-height: 165px;
  }
}

/* =========================================================
recipe - レシピ投稿ページ
========================================================= */
/*レシピタイトル
===============*/
.p-recipe-item-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.p-recipe-item-ttl__txt {
  line-height: 25px;
}
.p-recipe-item-ttl .p-category-sns .c-sns-link__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-left: auto;
}
.p-recipe-item-ttl .p-category-sns .c-sns-link__list .c-sns-link__item {
  line-height: 0;
  margin-left: 5px;
  padding: 0;
}
.p-recipe-item-ttl .p-category-sns .c-sns-link__list .c-sns-link__item img {
  height: 20px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-item-ttl .p-category-sns .c-sns-link__list .c-sns-link__item {
    margin-left: 10px;
  }
  .p-recipe-item-ttl .p-category-sns .c-sns-link__list .c-sns-link__item img {
    height: 25px;
  }
}

.p-new-recipe::after {
  content: 'NEW';
  background-color: #2a3263;
  padding: 2px 5px;
  color: #ffffff;
  border-radius: 3px;
  font-size: 11px;
  font-size: 0.6875rem;
  margin: -1px 8px 0;
}
@media screen and (min-width: 600px), print {
  .p-new-recipe::after {
    padding: 4px 8px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

/*お気に入り・印刷
===============*/
.p-recipe-item-fav-pri {
  border-top: 1px solid #dddddd;
  margin-top: 30px;
  padding-top: 10px;
  text-align: right;
}
@media screen and (min-width: 960px), print {
  .p-recipe-item-fav-pri {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.p-recipe-item-fav-pri__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 600px), print {
  .p-recipe-item-fav-pri__list {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.p-recipe-item-fav-pri__list--nodata {
  margin-left: auto;
}
.p-recipe-item-fav-pri__item {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-left: 15px;
  margin-bottom: 10px;
}
.p-recipe-item-fav-pri__item:first-of-type {
  margin-left: 0;
}
.p-recipe-item-fav-pri__item a {
  display: block;
  height: 100%;
  color: #333333;
  cursor: pointer;
}
.p-recipe-item-fav-pri__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  transition: 0.5s;
  -o-transition: 0.5s;
  /* opera */
  -moz-transition: 0.5s;
  /* firefox */
  -webkit-transition: 0.5s;
  /* chrome, safari */
  -ms-transition: 0.5s;
  /* ie */
}
.p-recipe-item-fav-pri__item a.c-link__arrow-right {
  line-height: 20px;
}
.p-recipe-item-fav-pri__item img {
  height: 20px;
  margin: 0 0 -5px 2px;
}
.p-recipe-item-fav-pri__item--btn a {
  background: #2a3263;
  color: #ffffff;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-recipe-item-fav-pri__item--btn a .c-link__arrow-right {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_right_w.svg) no-repeat right center;
  background-size: 8px 8px;
  padding-right: 13px;
}

/*おすすめポイント
===============*/
.p-recipe-item-point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #edf7fb;
  border-radius: 5px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-item-point {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.p-recipe-item-point__ttl {
  width: 100%;
  background-color: #fbb4b0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.6;
  padding: 10px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-item-point__ttl {
    width: 20%;
  }
}
.p-recipe-item-point__text {
  width: 100%;
  padding: 15px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-item-point__text {
    width: 100%;
  }
}
.p-recipe-item-point__sub-ttl {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-recipe-item-point__sub-ttl a {
  text-decoration: underline;
}
.p-recipe-item-point__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-item-point__img {
    margin-bottom: 0;
  }
}
.p-recipe-item-point__img a {
  width: auto;
}
@media screen and (min-width: 600px), print {
  .p-recipe-item-point__img a {
    width: 100%;
  }
}
.p-recipe-item-point__img img {
  max-width: 200px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-item-point__img img {
    max-width: 100%;
  }
}

/*材料
===============*/
.p-recipe-material__table {
  margin-top: 60px;
}
.p-recipe-material__table .p-category-item__btn-modal {
  max-width: 200px;
  margin: 0 auto 10px -100px;
}

/*まとめてカートへ
===============*/
.p-recipe-cart-done {
  padding: 20px;
  background: #fff5f4;
  margin-bottom: 30px;
}
@media screen and (min-width: 375px), print {
  .p-recipe-cart-done {

    padding: 20px;
  }
}
.p-recipe-cart-done__ttl {
  margin-bottom: 20px;
  color: #FB807A;
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 600px), print {
  .p-recipe-cart-done__ttl {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*会員様用写真につけるコメント
===============*/
.p-recipe-ph-comment {
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  background: #7ac2e3;
  color: #ffffff;
  padding: 10px;
  margin: 5px 5px 0;
  line-height: 1.3;
  border-radius: 5px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 600px), print {
  .p-recipe-ph-comment {
    margin-bottom: 0;
  }
}
.p-recipe-ph-comment::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  margin-left: -8px;
  border-style: solid;
  border-width: 0 8px 15px 8px;
  border-color: transparent transparent #7ac2e3 transparent;
}
@media screen and (min-width: 600px), print {
  .p-recipe-ph-comment::after {
    top: -13px;
    margin-left: -8px;
  }
}

/*作り方
===============*/
.p-recipe-make {
  margin-top: 15px;
  counter-reset: recipe-counter;
}
.p-recipe-make__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 15px 10px;
  padding-top: 50px;
  position: relative;
}
@media screen and (min-width: 600px), print {
  .p-recipe-make__list {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.p-recipe-make__list::before {
  counter-increment: recipe-counter;
  content: counter(recipe-counter);
  background: #7ac2e3;
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: bold;
  top: 10px;
  left: 10px;
}
.p-recipe-make__list:nth-child(even) {
  background-color: #F8F9FB;
}
.p-recipe-make__img {
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
  position: relative;
}
.p-recipe-make__img a:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 1;
}
.p-recipe-make__img a.in-link {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 600px), print {
  .p-recipe-make__img {
    width: 300px;
    margin-right: 15px;
    margin-bottom: 0;
  }
}
.p-recipe-make__img img {
  max-height: 250px;
}
.p-recipe-make__wrap {
  width: 100%;
  text-align: center;
}
.p-recipe-make__detail {
  width: 100%;
}
.p-recipe-make__detail .c-txt-sentence img {
  max-width: 100%;
  height: auto;
}
.p-recipe-make__ttl {
  margin: 0 0 15px 40px;
  display: block;
  line-height: 1.3;
  min-height: 20px;
  font-size: 16px;
  font-size: 1rem;
}
.p-recipe-make__sub {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}

/*管理者レシピの時だけ*/
.p-recipe-make--original .p-recipe-make__list {
  padding: 15px 10px;
}

/*動画
===============*/
.p-recipe-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
@media screen and (min-width: 600px), print {
  .p-recipe-movie {
    padding-top: 48%;
  }
}
.p-recipe-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 650px;
  height: 100%;
  margin: auto;
}

/*コツ・ポイント下の日付・作成者
===============*/
.p-recipe-point {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 5px;
}
@media screen and (min-width: 960px), print {
  .p-recipe-point {
    margin-bottom: 0;
    margin-top: 5px;
  }
}

/*投稿ページ用お気に入り装飾
===============*/
.p-recipe-report-item {
  background: #edf7fb;
  padding: 10px 10px 20px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-report-item {
    padding: 20px 20px 30px;
  }
}

/*レシピメインイメージ印刷用レイアウト
===============*/
.p-racipe-item-ph {
  margin-bottom: 30px;
}
.p-racipe-item-ph img {
  max-height: 300px;
}

/* =========================================================
recipe - その他レシピ関連
========================================================= */
.c-card--new-item {
  position: relative;
}
.c-card--new-item::before {
  border-color: #2a3263 transparent transparent transparent;
  border-style: solid;
  border-width: 50px 50px 0 0;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  z-index: 2;
}
.c-card--new-item::after {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  content: "NEW";
  position: absolute;
  top: 12px;
  left: 4px;
  transform: rotate(-45deg);
  z-index: 3;
}

.p-recipe-search__select .c-basic-form__select--basic {
  max-width: 400px;
}
@media screen and (min-width: 600px), print {
  .p-recipe-search__select .c-basic-form__select--basic {
    max-width: 100%;
  }
}

/* =========================================================
recipe write - レシピ一覧
========================================================= */
.p-category-item--recipe .p-category-item__btnarea.p-recipe-pop {
  padding: 0;
  border: none;
}

/* =========================================================
recipe write - レシピ投稿 
========================================================= */
/*レシピ投稿
===============*/
.p-recipe-write__in {
  margin-bottom: 50px;
}
.p-recipe-write__ttl {
  padding: 10px 0;
}
.p-recipe-write__ttl .c-ttl-icon__txt {
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 600px), print {
  .p-recipe-write__ttl .c-ttl-icon__txt {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-recipe-write__items .c-basic-form__content .c-basic-form__input,
.p-recipe-write__items .c-basic-form__content .c-basic-form__textarea {
  max-width: 100%;
  padding: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
  border: 2px solid #dddddd;
}
.p-recipe-write__items .c-basic-form__content .c-basic-form__input.mini,
.p-recipe-write__items .c-basic-form__content .c-basic-form__textarea.mini {
  height: 80px;
}
.p-recipe-write__text {
  font-size: 12px;
  font-size: 0.75rem;
  text-align: right;
  margin-top: 10px;
}
.p-recipe-write__select .c-basic-form__select {
  max-width: 100%;
  padding: 7px;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 5px;
  border: 2px solid #dddddd;
}

/* =========================================================
recipe report - できたよ！レポート投稿 
========================================================= */
/*できたよ！レポート投稿
===============*/
.p-recipe-report__form {
  width: 100%;
  padding: 15px;
  background-color: #F8F9FB;
  background-image: linear-gradient(45deg, #f1f1f1 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, #f1f1f1 75%, #f1f1f1), linear-gradient(45deg, #f1f1f1 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, #f1f1f1 75%, #f1f1f1);
  background-position: 0 0, 25px 25px;
  background-size: 50px 50px;
}
.p-recipe-report__box {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 10px;
  border: 1px solid #7ac2e3;
}
.p-recipe-report__box .c-basic-form__content .c-basic-form__textarea {
  max-width: 500px;
}
.p-recipe-report__photo {
  padding: 20px 10px;
  background-color: #e1ebf7;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFE1EBF7', endColorstr='#FFEFFAFF');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuMCIgeDI9IjEuMCIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UxZWJmNyIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZWRmZmZjIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWZmYWZmIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #e1ebf7), color-stop(50%, #edfffc), color-stop(100%, #effaff));
  background-image: -moz-linear-gradient(left top, #e1ebf7 0%, #edfffc 50%, #effaff 100%);
  background-image: -webkit-linear-gradient(left top, #e1ebf7 0%, #edfffc 50%, #effaff 100%);
  background-image: linear-gradient(to right bottom, #e1ebf7 0%, #edfffc 50%, #effaff 100%);
}
.p-recipe-report__photo.on .c-basic-form__file-ladel {
  padding: 5px;
}
.p-recipe-report__photo.on .c-basic-form__file-ladel img {
  max-height: 200px;
  max-width: 300px;
}

/* =========================================================
info - お知らせ
========================================================= */
/* お知らせ 箱
 ===================*/
.p-info-box {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
}
.p-info-box:last-of-type {
  margin-bottom: 50px;
}
.p-info-box__date {
  margin-bottom: 15px;
}
.p-info-box__date.p-info-box--store__date .p-info-box__day,
.p-info-box__date.p-info-box--store__date .p-info-box__photo {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.p-info-box__date.p-info-box--store__date .p-info-box__photo {
  margin-left: 10px;
}
.p-info-box__date.p-info-box--store__date .p-info-box__photo img {
  display: inline-block;
  vertical-align: middle;
}
.p-info-box__day {
  font-weight: bold;
  color: #2a3263;
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-info-box__photo {
  margin-top: 10px;
}

.p-info-box--store__ttl {
  padding: 0;
}
.p-info-box--store__ttl::before {
  content: none;
}

/* お用語集
 ===================*/
/*内部リンク*/
.p-glossary-nav {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
.p-glossary-nav__item {
  text-align: center;
  max-width: 25%;
  min-width: 50px;
  margin-bottom: 10px;
  padding: 0 2px;
}
@media screen and (min-width: 600px), print {
  .p-glossary-nav__item {
    width: 9.09091%;
  }
}
.p-glossary-nav__item a {
  display: inline-block;
  width: 100%;
  max-width: 50px;
  border: 2px solid #7ac2e3;
  background: #ffffff;
  padding: 15px 5px 12px;
  color: #7ac2e3;
  font-weight: bold;
}
.p-glossary-nav__item.active a {
  display: inline-block;
  width: 100%;
  max-width: 50px;
  border: 2px solid #7ac2e3;
  background: #7ac2e3;
  color: #ffffff;
}

/*用語リスト*/
.p-glossary-search .c-site-search .c-site-search__free-word {
  width: 100%;
}

.p-glossary-list .p-glossary-ttl {
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #2a3263;
  line-height: 1.3;
}
.p-glossary-list .p-glossary-con {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #7ac2e3;
}
.p-glossary-list .p-glossary-con:last-child {
  border-bottom: none;
  margin-bottom: 10px;
}

/* =========================================================
Q&A - よくあるご質問・手作りのヒント
========================================================= */
/* Q&A 
 ===================*/
.p-faq-search {
  margin-bottom: 20px;
}
.p-faq-search .p-faq-search__contents {
  max-width: 500px;
  margin: 0 auto;
}
.p-faq-search .p-faq-search__contents .c-basic-form__content {
  margin-bottom: 10px;

  padding: 0 10px;
}
@media screen and (min-width: 600px), print {
  .p-faq-search .p-faq-search__contents .c-basic-form__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
    padding: 0;
  }
}
@media screen and (min-width: 600px), print {
  .p-faq-search__ttl {
    width: 150px;
  }
}
@media screen and (min-width: 600px), print {
  .p-faq-search__input {
    width: calc(100% - 150px);
  }
}
.p-faq-search__input .c-basic-form__select {
  max-width: 100%;
}

.p-faq-q {
  margin-top: 10px;
  padding: 5px 0;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_faq_main.svg) no-repeat left center;
  background-size: 20px 20px;
  padding-left: 25px;
  background-position: left top 3px;
}
.p-faq-q .js-accordion__arrow {
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_up_main.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
  color: #2a3263;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  display: block;
}
@media screen and (min-width: 600px), print {
  .p-faq-q .js-accordion__arrow {
    display: inline-block;
  }
}
.p-faq-q .js-accordion__arrow.rotate {
  background-image: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_down_main.svg);
}
.p-faq-q:first-of-type {
  margin-top: 0;
}

.p-faq-a {
  margin: 5px auto;
  padding: 5px;
  background: url(https://www.rakuten.ne.jp/gold/mamapan/img/icon/icon_answer_accent.svg) no-repeat left center;
  background-size: 20px 20px;
  padding-left: 25px;
  background-position: left 3px top 5px;
  background-color: #F7FDFF;
}

/* =========================================================
review - レビュー一覧
========================================================= */
/* レビュー一覧
 ===================*/
.p-review-evaluation {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}

.p-review-search .p-faq-search__contents {
  max-width: 601px;
}
.p-review-search .c-basic-form__radio label {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 3px;
}
.p-review-search .c-basic-form__input {
  max-width: 500px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
Utility*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* =========================================================
text - 文字の装飾など
========================================================= */
.u-fc-m {
  color: #2a3263 !important;
}

.u-fc-s {
  color: #7ac2e3 !important;
}

.u-fc-a {
  color: #FB807A !important;
}

.u-fc-f {
  color: #ffffff !important;
}

.u-fc-r {
  color: #d90b23 !important;
}

.u-fc-g {
  color: #766D44 !important;
}

.u-fc-b {
  color: #2D83BA !important;
}

.u-fw-l {
  font-weight: lighter !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-fs-1 {
  font-size: 1px;
  font-size: 0.0625rem;
}

.u-fs-2 {
  font-size: 2px;
  font-size: 0.125rem;
}

.u-fs-3 {
  font-size: 3px;
  font-size: 0.1875rem;
}

.u-fs-4 {
  font-size: 4px;
  font-size: 0.25rem;
}

.u-fs-5 {
  font-size: 5px;
  font-size: 0.3125rem;
}

.u-fs-6 {
  font-size: 6px;
  font-size: 0.375rem;
}

.u-fs-7 {
  font-size: 7px;
  font-size: 0.4375rem;
}

.u-fs-8 {
  font-size: 8px;
  font-size: 0.5rem;
}

.u-fs-9 {
  font-size: 9px;
  font-size: 0.5625rem;
}

.u-fs-10 {
  font-size: 10px;
  font-size: 0.625rem;
}

.u-fs-11 {
  font-size: 11px;
  font-size: 0.6875rem;
}

.u-fs-12 {
  font-size: 12px;
  font-size: 0.75rem;
}

.u-fs-13 {
  font-size: 13px;
  font-size: 0.8125rem;
}

.u-fs-14 {
  font-size: 14px;
  font-size: 0.875rem;
}

.u-fs-15 {
  font-size: 15px;
  font-size: 0.9375rem;
}

.u-fs-16 {
  font-size: 16px;
  font-size: 1rem;
}

.u-fs-17 {
  font-size: 17px;
  font-size: 1.0625rem;
}

.u-fs-18 {
  font-size: 18px;
  font-size: 1.125rem;
}

.u-fs-19 {
  font-size: 19px;
  font-size: 1.1875rem;
}

.u-fs-20 {
  font-size: 20px;
  font-size: 1.25rem;
}

.u-fs-21 {
  font-size: 21px;
  font-size: 1.3125rem;
}

.u-fs-22 {
  font-size: 22px;
  font-size: 1.375rem;
}

.u-fs-23 {
  font-size: 23px;
  font-size: 1.4375rem;
}

.u-fs-24 {
  font-size: 24px;
  font-size: 1.5rem;
}

.u-fs-25 {
  font-size: 25px;
  font-size: 1.5625rem;
}

.u-fs-26 {
  font-size: 26px;
  font-size: 1.625rem;
}

.u-fs-27 {
  font-size: 27px;
  font-size: 1.6875rem;
}

.u-fs-28 {
  font-size: 28px;
  font-size: 1.75rem;
}

.u-fs-29 {
  font-size: 29px;
  font-size: 1.8125rem;
}

.u-fs-30 {
  font-size: 30px;
  font-size: 1.875rem;
}

.u-fs-31 {
  font-size: 31px;
  font-size: 1.9375rem;
}

.u-fs-32 {
  font-size: 32px;
  font-size: 2rem;
}

.u-fs-33 {
  font-size: 33px;
  font-size: 2.0625rem;
}

.u-fs-34 {
  font-size: 34px;
  font-size: 2.125rem;
}

.u-fs-35 {
  font-size: 35px;
  font-size: 2.1875rem;
}

.u-fs-36 {
  font-size: 36px;
  font-size: 2.25rem;
}

.u-fs-37 {
  font-size: 37px;
  font-size: 2.3125rem;
}

.u-fs-38 {
  font-size: 38px;
  font-size: 2.375rem;
}

.u-fs-39 {
  font-size: 39px;
  font-size: 2.4375rem;
}

.u-fs-40 {
  font-size: 40px;
  font-size: 2.5rem;
}

.u-fs-41 {
  font-size: 41px;
  font-size: 2.5625rem;
}

.u-fs-42 {
  font-size: 42px;
  font-size: 2.625rem;
}

.u-fs-43 {
  font-size: 43px;
  font-size: 2.6875rem;
}

.u-fs-44 {
  font-size: 44px;
  font-size: 2.75rem;
}

.u-fs-45 {
  font-size: 45px;
  font-size: 2.8125rem;
}

.u-fs-46 {
  font-size: 46px;
  font-size: 2.875rem;
}

.u-fs-47 {
  font-size: 47px;
  font-size: 2.9375rem;
}

.u-fs-48 {
  font-size: 48px;
  font-size: 3rem;
}

.u-fs-49 {
  font-size: 49px;
  font-size: 3.0625rem;
}

.u-fs-50 {
  font-size: 50px;
  font-size: 3.125rem;
}

.u-fs-51 {
  font-size: 51px;
  font-size: 3.1875rem;
}

.u-fs-52 {
  font-size: 52px;
  font-size: 3.25rem;
}

.u-fs-53 {
  font-size: 53px;
  font-size: 3.3125rem;
}

.u-fs-54 {
  font-size: 54px;
  font-size: 3.375rem;
}

.u-fs-55 {
  font-size: 55px;
  font-size: 3.4375rem;
}

.u-fs-56 {
  font-size: 56px;
  font-size: 3.5rem;
}

.u-fs-57 {
  font-size: 57px;
  font-size: 3.5625rem;
}

.u-fs-58 {
  font-size: 58px;
  font-size: 3.625rem;
}

.u-fs-59 {
  font-size: 59px;
  font-size: 3.6875rem;
}

.u-fs-60 {
  font-size: 60px;
  font-size: 3.75rem;
}

.u-fs-61 {
  font-size: 61px;
  font-size: 3.8125rem;
}

.u-fs-62 {
  font-size: 62px;
  font-size: 3.875rem;
}

.u-fs-63 {
  font-size: 63px;
  font-size: 3.9375rem;
}

.u-fs-64 {
  font-size: 64px;
  font-size: 4rem;
}

.u-fs-65 {
  font-size: 65px;
  font-size: 4.0625rem;
}

.u-fs-66 {
  font-size: 66px;
  font-size: 4.125rem;
}

.u-fs-67 {
  font-size: 67px;
  font-size: 4.1875rem;
}

.u-fs-68 {
  font-size: 68px;
  font-size: 4.25rem;
}

.u-fs-69 {
  font-size: 69px;
  font-size: 4.3125rem;
}

.u-fs-70 {
  font-size: 70px;
  font-size: 4.375rem;
}

.u-fs-71 {
  font-size: 71px;
  font-size: 4.4375rem;
}

.u-fs-72 {
  font-size: 72px;
  font-size: 4.5rem;
}

.u-fs-73 {
  font-size: 73px;
  font-size: 4.5625rem;
}

.u-fs-74 {
  font-size: 74px;
  font-size: 4.625rem;
}

.u-fs-75 {
  font-size: 75px;
  font-size: 4.6875rem;
}

.u-fs-76 {
  font-size: 76px;
  font-size: 4.75rem;
}

.u-fs-77 {
  font-size: 77px;
  font-size: 4.8125rem;
}

.u-fs-78 {
  font-size: 78px;
  font-size: 4.875rem;
}

.u-fs-79 {
  font-size: 79px;
  font-size: 4.9375rem;
}

.u-fs-80 {
  font-size: 80px;
  font-size: 5rem;
}

.u-fs-81 {
  font-size: 81px;
  font-size: 5.0625rem;
}

.u-fs-82 {
  font-size: 82px;
  font-size: 5.125rem;
}

.u-fs-83 {
  font-size: 83px;
  font-size: 5.1875rem;
}

.u-fs-84 {
  font-size: 84px;
  font-size: 5.25rem;
}

.u-fs-85 {
  font-size: 85px;
  font-size: 5.3125rem;
}

.u-fs-86 {
  font-size: 86px;
  font-size: 5.375rem;
}

.u-fs-87 {
  font-size: 87px;
  font-size: 5.4375rem;
}

.u-fs-88 {
  font-size: 88px;
  font-size: 5.5rem;
}

.u-fs-89 {
  font-size: 89px;
  font-size: 5.5625rem;
}

.u-fs-90 {
  font-size: 90px;
  font-size: 5.625rem;
}

.u-fs-91 {
  font-size: 91px;
  font-size: 5.6875rem;
}

.u-fs-92 {
  font-size: 92px;
  font-size: 5.75rem;
}

.u-fs-93 {
  font-size: 93px;
  font-size: 5.8125rem;
}

.u-fs-94 {
  font-size: 94px;
  font-size: 5.875rem;
}

.u-fs-95 {
  font-size: 95px;
  font-size: 5.9375rem;
}

.u-fs-96 {
  font-size: 96px;
  font-size: 6rem;
}

.u-fs-97 {
  font-size: 97px;
  font-size: 6.0625rem;
}

.u-fs-98 {
  font-size: 98px;
  font-size: 6.125rem;
}

.u-fs-99 {
  font-size: 99px;
  font-size: 6.1875rem;
}

.u-fs-100 {
  font-size: 100px;
  font-size: 6.25rem;
}

.u-fs-101 {
  font-size: 101px;
  font-size: 6.3125rem;
}

.u-fs-102 {
  font-size: 102px;
  font-size: 6.375rem;
}

.u-fs-103 {
  font-size: 103px;
  font-size: 6.4375rem;
}

.u-fs-104 {
  font-size: 104px;
  font-size: 6.5rem;
}

.u-fs-105 {
  font-size: 105px;
  font-size: 6.5625rem;
}

.u-fs-106 {
  font-size: 106px;
  font-size: 6.625rem;
}

.u-fs-107 {
  font-size: 107px;
  font-size: 6.6875rem;
}

.u-fs-108 {
  font-size: 108px;
  font-size: 6.75rem;
}

.u-fs-109 {
  font-size: 109px;
  font-size: 6.8125rem;
}

.u-fs-110 {
  font-size: 110px;
  font-size: 6.875rem;
}

.u-fs-111 {
  font-size: 111px;
  font-size: 6.9375rem;
}

.u-fs-112 {
  font-size: 112px;
  font-size: 7rem;
}

.u-fs-113 {
  font-size: 113px;
  font-size: 7.0625rem;
}

.u-fs-114 {
  font-size: 114px;
  font-size: 7.125rem;
}

.u-fs-115 {
  font-size: 115px;
  font-size: 7.1875rem;
}

.u-fs-116 {
  font-size: 116px;
  font-size: 7.25rem;
}

.u-fs-117 {
  font-size: 117px;
  font-size: 7.3125rem;
}

.u-fs-118 {
  font-size: 118px;
  font-size: 7.375rem;
}

.u-fs-119 {
  font-size: 119px;
  font-size: 7.4375rem;
}

.u-fs-120 {
  font-size: 120px;
  font-size: 7.5rem;
}

.u-fs-121 {
  font-size: 121px;
  font-size: 7.5625rem;
}

.u-fs-122 {
  font-size: 122px;
  font-size: 7.625rem;
}

.u-fs-123 {
  font-size: 123px;
  font-size: 7.6875rem;
}

.u-fs-124 {
  font-size: 124px;
  font-size: 7.75rem;
}

.u-fs-125 {
  font-size: 125px;
  font-size: 7.8125rem;
}

.u-fs-126 {
  font-size: 126px;
  font-size: 7.875rem;
}

.u-fs-127 {
  font-size: 127px;
  font-size: 7.9375rem;
}

.u-fs-128 {
  font-size: 128px;
  font-size: 8rem;
}

.u-fs-129 {
  font-size: 129px;
  font-size: 8.0625rem;
}

.u-fs-130 {
  font-size: 130px;
  font-size: 8.125rem;
}

.u-fs-131 {
  font-size: 131px;
  font-size: 8.1875rem;
}

.u-fs-132 {
  font-size: 132px;
  font-size: 8.25rem;
}

.u-fs-133 {
  font-size: 133px;
  font-size: 8.3125rem;
}

.u-fs-134 {
  font-size: 134px;
  font-size: 8.375rem;
}

.u-fs-135 {
  font-size: 135px;
  font-size: 8.4375rem;
}

.u-fs-136 {
  font-size: 136px;
  font-size: 8.5rem;
}

.u-fs-137 {
  font-size: 137px;
  font-size: 8.5625rem;
}

.u-fs-138 {
  font-size: 138px;
  font-size: 8.625rem;
}

.u-fs-139 {
  font-size: 139px;
  font-size: 8.6875rem;
}

.u-fs-140 {
  font-size: 140px;
  font-size: 8.75rem;
}

.u-fs-141 {
  font-size: 141px;
  font-size: 8.8125rem;
}

.u-fs-142 {
  font-size: 142px;
  font-size: 8.875rem;
}

.u-fs-143 {
  font-size: 143px;
  font-size: 8.9375rem;
}

.u-fs-144 {
  font-size: 144px;
  font-size: 9rem;
}

.u-fs-145 {
  font-size: 145px;
  font-size: 9.0625rem;
}

.u-fs-146 {
  font-size: 146px;
  font-size: 9.125rem;
}

.u-fs-147 {
  font-size: 147px;
  font-size: 9.1875rem;
}

.u-fs-148 {
  font-size: 148px;
  font-size: 9.25rem;
}

.u-fs-149 {
  font-size: 149px;
  font-size: 9.3125rem;
}

.u-fs-150 {
  font-size: 150px;
  font-size: 9.375rem;
}

@media screen and (max-width: 600px), print {
  .u-fs-1-md-d {
    font-size: 1px;
    font-size: 0.0625rem;
  }

  .u-fs-2-md-d {
    font-size: 2px;
    font-size: 0.125rem;
  }

  .u-fs-3-md-d {
    font-size: 3px;
    font-size: 0.1875rem;
  }

  .u-fs-4-md-d {
    font-size: 4px;
    font-size: 0.25rem;
  }

  .u-fs-5-md-d {
    font-size: 5px;
    font-size: 0.3125rem;
  }

  .u-fs-6-md-d {
    font-size: 6px;
    font-size: 0.375rem;
  }

  .u-fs-7-md-d {
    font-size: 7px;
    font-size: 0.4375rem;
  }

  .u-fs-8-md-d {
    font-size: 8px;
    font-size: 0.5rem;
  }

  .u-fs-9-md-d {
    font-size: 9px;
    font-size: 0.5625rem;
  }

  .u-fs-10-md-d {
    font-size: 10px;
    font-size: 0.625rem;
  }

  .u-fs-11-md-d {
    font-size: 11px;
    font-size: 0.6875rem;
  }

  .u-fs-12-md-d {
    font-size: 12px;
    font-size: 0.75rem;
  }

  .u-fs-13-md-d {
    font-size: 13px;
    font-size: 0.8125rem;
  }

  .u-fs-14-md-d {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .u-fs-15-md-d {
    font-size: 15px;
    font-size: 0.9375rem;
  }

  .u-fs-16-md-d {
    font-size: 16px;
    font-size: 1rem;
  }

  .u-fs-17-md-d {
    font-size: 17px;
    font-size: 1.0625rem;
  }

  .u-fs-18-md-d {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .u-fs-19-md-d {
    font-size: 19px;
    font-size: 1.1875rem;
  }

  .u-fs-20-md-d {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .u-fs-21-md-d {
    font-size: 21px;
    font-size: 1.3125rem;
  }

  .u-fs-22-md-d {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .u-fs-23-md-d {
    font-size: 23px;
    font-size: 1.4375rem;
  }

  .u-fs-24-md-d {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .u-fs-25-md-d {
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .u-fs-26-md-d {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .u-fs-27-md-d {
    font-size: 27px;
    font-size: 1.6875rem;
  }

  .u-fs-28-md-d {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .u-fs-29-md-d {
    font-size: 29px;
    font-size: 1.8125rem;
  }

  .u-fs-30-md-d {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .u-fs-31-md-d {
    font-size: 31px;
    font-size: 1.9375rem;
  }

  .u-fs-32-md-d {
    font-size: 32px;
    font-size: 2rem;
  }

  .u-fs-33-md-d {
    font-size: 33px;
    font-size: 2.0625rem;
  }

  .u-fs-34-md-d {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .u-fs-35-md-d {
    font-size: 35px;
    font-size: 2.1875rem;
  }

  .u-fs-36-md-d {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .u-fs-37-md-d {
    font-size: 37px;
    font-size: 2.3125rem;
  }

  .u-fs-38-md-d {
    font-size: 38px;
    font-size: 2.375rem;
  }

  .u-fs-39-md-d {
    font-size: 39px;
    font-size: 2.4375rem;
  }

  .u-fs-40-md-d {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .u-fs-41-md-d {
    font-size: 41px;
    font-size: 2.5625rem;
  }

  .u-fs-42-md-d {
    font-size: 42px;
    font-size: 2.625rem;
  }

  .u-fs-43-md-d {
    font-size: 43px;
    font-size: 2.6875rem;
  }

  .u-fs-44-md-d {
    font-size: 44px;
    font-size: 2.75rem;
  }

  .u-fs-45-md-d {
    font-size: 45px;
    font-size: 2.8125rem;
  }

  .u-fs-46-md-d {
    font-size: 46px;
    font-size: 2.875rem;
  }

  .u-fs-47-md-d {
    font-size: 47px;
    font-size: 2.9375rem;
  }

  .u-fs-48-md-d {
    font-size: 48px;
    font-size: 3rem;
  }

  .u-fs-49-md-d {
    font-size: 49px;
    font-size: 3.0625rem;
  }

  .u-fs-50-md-d {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .u-fs-51-md-d {
    font-size: 51px;
    font-size: 3.1875rem;
  }

  .u-fs-52-md-d {
    font-size: 52px;
    font-size: 3.25rem;
  }

  .u-fs-53-md-d {
    font-size: 53px;
    font-size: 3.3125rem;
  }

  .u-fs-54-md-d {
    font-size: 54px;
    font-size: 3.375rem;
  }

  .u-fs-55-md-d {
    font-size: 55px;
    font-size: 3.4375rem;
  }

  .u-fs-56-md-d {
    font-size: 56px;
    font-size: 3.5rem;
  }

  .u-fs-57-md-d {
    font-size: 57px;
    font-size: 3.5625rem;
  }

  .u-fs-58-md-d {
    font-size: 58px;
    font-size: 3.625rem;
  }

  .u-fs-59-md-d {
    font-size: 59px;
    font-size: 3.6875rem;
  }

  .u-fs-60-md-d {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .u-fs-61-md-d {
    font-size: 61px;
    font-size: 3.8125rem;
  }

  .u-fs-62-md-d {
    font-size: 62px;
    font-size: 3.875rem;
  }

  .u-fs-63-md-d {
    font-size: 63px;
    font-size: 3.9375rem;
  }

  .u-fs-64-md-d {
    font-size: 64px;
    font-size: 4rem;
  }

  .u-fs-65-md-d {
    font-size: 65px;
    font-size: 4.0625rem;
  }

  .u-fs-66-md-d {
    font-size: 66px;
    font-size: 4.125rem;
  }

  .u-fs-67-md-d {
    font-size: 67px;
    font-size: 4.1875rem;
  }

  .u-fs-68-md-d {
    font-size: 68px;
    font-size: 4.25rem;
  }

  .u-fs-69-md-d {
    font-size: 69px;
    font-size: 4.3125rem;
  }

  .u-fs-70-md-d {
    font-size: 70px;
    font-size: 4.375rem;
  }

  .u-fs-71-md-d {
    font-size: 71px;
    font-size: 4.4375rem;
  }

  .u-fs-72-md-d {
    font-size: 72px;
    font-size: 4.5rem;
  }

  .u-fs-73-md-d {
    font-size: 73px;
    font-size: 4.5625rem;
  }

  .u-fs-74-md-d {
    font-size: 74px;
    font-size: 4.625rem;
  }

  .u-fs-75-md-d {
    font-size: 75px;
    font-size: 4.6875rem;
  }

  .u-fs-76-md-d {
    font-size: 76px;
    font-size: 4.75rem;
  }

  .u-fs-77-md-d {
    font-size: 77px;
    font-size: 4.8125rem;
  }

  .u-fs-78-md-d {
    font-size: 78px;
    font-size: 4.875rem;
  }

  .u-fs-79-md-d {
    font-size: 79px;
    font-size: 4.9375rem;
  }

  .u-fs-80-md-d {
    font-size: 80px;
    font-size: 5rem;
  }

  .u-fs-81-md-d {
    font-size: 81px;
    font-size: 5.0625rem;
  }

  .u-fs-82-md-d {
    font-size: 82px;
    font-size: 5.125rem;
  }

  .u-fs-83-md-d {
    font-size: 83px;
    font-size: 5.1875rem;
  }

  .u-fs-84-md-d {
    font-size: 84px;
    font-size: 5.25rem;
  }

  .u-fs-85-md-d {
    font-size: 85px;
    font-size: 5.3125rem;
  }

  .u-fs-86-md-d {
    font-size: 86px;
    font-size: 5.375rem;
  }

  .u-fs-87-md-d {
    font-size: 87px;
    font-size: 5.4375rem;
  }

  .u-fs-88-md-d {
    font-size: 88px;
    font-size: 5.5rem;
  }

  .u-fs-89-md-d {
    font-size: 89px;
    font-size: 5.5625rem;
  }

  .u-fs-90-md-d {
    font-size: 90px;
    font-size: 5.625rem;
  }

  .u-fs-91-md-d {
    font-size: 91px;
    font-size: 5.6875rem;
  }

  .u-fs-92-md-d {
    font-size: 92px;
    font-size: 5.75rem;
  }

  .u-fs-93-md-d {
    font-size: 93px;
    font-size: 5.8125rem;
  }

  .u-fs-94-md-d {
    font-size: 94px;
    font-size: 5.875rem;
  }

  .u-fs-95-md-d {
    font-size: 95px;
    font-size: 5.9375rem;
  }

  .u-fs-96-md-d {
    font-size: 96px;
    font-size: 6rem;
  }

  .u-fs-97-md-d {
    font-size: 97px;
    font-size: 6.0625rem;
  }

  .u-fs-98-md-d {
    font-size: 98px;
    font-size: 6.125rem;
  }

  .u-fs-99-md-d {
    font-size: 99px;
    font-size: 6.1875rem;
  }

  .u-fs-100-md-d {
    font-size: 100px;
    font-size: 6.25rem;
  }

  .u-fs-101-md-d {
    font-size: 101px;
    font-size: 6.3125rem;
  }

  .u-fs-102-md-d {
    font-size: 102px;
    font-size: 6.375rem;
  }

  .u-fs-103-md-d {
    font-size: 103px;
    font-size: 6.4375rem;
  }

  .u-fs-104-md-d {
    font-size: 104px;
    font-size: 6.5rem;
  }

  .u-fs-105-md-d {
    font-size: 105px;
    font-size: 6.5625rem;
  }

  .u-fs-106-md-d {
    font-size: 106px;
    font-size: 6.625rem;
  }

  .u-fs-107-md-d {
    font-size: 107px;
    font-size: 6.6875rem;
  }

  .u-fs-108-md-d {
    font-size: 108px;
    font-size: 6.75rem;
  }

  .u-fs-109-md-d {
    font-size: 109px;
    font-size: 6.8125rem;
  }

  .u-fs-110-md-d {
    font-size: 110px;
    font-size: 6.875rem;
  }

  .u-fs-111-md-d {
    font-size: 111px;
    font-size: 6.9375rem;
  }

  .u-fs-112-md-d {
    font-size: 112px;
    font-size: 7rem;
  }

  .u-fs-113-md-d {
    font-size: 113px;
    font-size: 7.0625rem;
  }

  .u-fs-114-md-d {
    font-size: 114px;
    font-size: 7.125rem;
  }

  .u-fs-115-md-d {
    font-size: 115px;
    font-size: 7.1875rem;
  }

  .u-fs-116-md-d {
    font-size: 116px;
    font-size: 7.25rem;
  }

  .u-fs-117-md-d {
    font-size: 117px;
    font-size: 7.3125rem;
  }

  .u-fs-118-md-d {
    font-size: 118px;
    font-size: 7.375rem;
  }

  .u-fs-119-md-d {
    font-size: 119px;
    font-size: 7.4375rem;
  }

  .u-fs-120-md-d {
    font-size: 120px;
    font-size: 7.5rem;
  }

  .u-fs-121-md-d {
    font-size: 121px;
    font-size: 7.5625rem;
  }

  .u-fs-122-md-d {
    font-size: 122px;
    font-size: 7.625rem;
  }

  .u-fs-123-md-d {
    font-size: 123px;
    font-size: 7.6875rem;
  }

  .u-fs-124-md-d {
    font-size: 124px;
    font-size: 7.75rem;
  }

  .u-fs-125-md-d {
    font-size: 125px;
    font-size: 7.8125rem;
  }

  .u-fs-126-md-d {
    font-size: 126px;
    font-size: 7.875rem;
  }

  .u-fs-127-md-d {
    font-size: 127px;
    font-size: 7.9375rem;
  }

  .u-fs-128-md-d {
    font-size: 128px;
    font-size: 8rem;
  }

  .u-fs-129-md-d {
    font-size: 129px;
    font-size: 8.0625rem;
  }

  .u-fs-130-md-d {
    font-size: 130px;
    font-size: 8.125rem;
  }

  .u-fs-131-md-d {
    font-size: 131px;
    font-size: 8.1875rem;
  }

  .u-fs-132-md-d {
    font-size: 132px;
    font-size: 8.25rem;
  }

  .u-fs-133-md-d {
    font-size: 133px;
    font-size: 8.3125rem;
  }

  .u-fs-134-md-d {
    font-size: 134px;
    font-size: 8.375rem;
  }

  .u-fs-135-md-d {
    font-size: 135px;
    font-size: 8.4375rem;
  }

  .u-fs-136-md-d {
    font-size: 136px;
    font-size: 8.5rem;
  }

  .u-fs-137-md-d {
    font-size: 137px;
    font-size: 8.5625rem;
  }

  .u-fs-138-md-d {
    font-size: 138px;
    font-size: 8.625rem;
  }

  .u-fs-139-md-d {
    font-size: 139px;
    font-size: 8.6875rem;
  }

  .u-fs-140-md-d {
    font-size: 140px;
    font-size: 8.75rem;
  }

  .u-fs-141-md-d {
    font-size: 141px;
    font-size: 8.8125rem;
  }

  .u-fs-142-md-d {
    font-size: 142px;
    font-size: 8.875rem;
  }

  .u-fs-143-md-d {
    font-size: 143px;
    font-size: 8.9375rem;
  }

  .u-fs-144-md-d {
    font-size: 144px;
    font-size: 9rem;
  }

  .u-fs-145-md-d {
    font-size: 145px;
    font-size: 9.0625rem;
  }

  .u-fs-146-md-d {
    font-size: 146px;
    font-size: 9.125rem;
  }

  .u-fs-147-md-d {
    font-size: 147px;
    font-size: 9.1875rem;
  }

  .u-fs-148-md-d {
    font-size: 148px;
    font-size: 9.25rem;
  }

  .u-fs-149-md-d {
    font-size: 149px;
    font-size: 9.3125rem;
  }

  .u-fs-150-md-d {
    font-size: 150px;
    font-size: 9.375rem;
  }
}
.u-ff-jp-s {
  font-family: "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}

.u-ff-en {
  font-family: Arial, Verdana, "Helvetica Neue", Helvetica, sans-serif;
}

.u-lh-1 {
  line-height: 1;
}

.u-ta-l {
  text-align: left;
}
.u-ta-l__md-c {
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .u-ta-l__md-c {
    text-align: left;
  }
}

.u-ta-c {
  text-align: center;
}

.u-ta-r {
  text-align: right;
}
.u-ta-r__md-c {
  text-align: center;
}
@media screen and (min-width: 600px), print {
  .u-ta-r__md-c {
    text-align: right;
  }
}

.u-link-txt {
  color: #0044CC;
  text-decoration: underline;
}
.u-link-txt:hover {
  color: #3377ff;
}

.u-border-box {
  border: 1px solid #dddddd;
  padding: 15px;
  border-radius: 4px;
}

/* =========================================================
margin - 余白の調整
========================================================= */
.u-m-0 {
  margin: 0px;
}

.u-m-5 {
  margin: 5px;
}

.u-m-10 {
  margin: 10px;
}

.u-m-15 {
  margin: 15px;
}

.u-m-20 {
  margin: 20px;
}

.u-m-25 {
  margin: 25px;
}

.u-m-30 {
  margin: 30px;
}

.u-m-35 {
  margin: 35px;
}

.u-m-40 {
  margin: 40px;
}

.u-m-45 {
  margin: 45px;
}

.u-m-50 {
  margin: 50px;
}

.u-m-55 {
  margin: 55px;
}

.u-m-60 {
  margin: 60px;
}

.u-m-65 {
  margin: 65px;
}

.u-m-70 {
  margin: 70px;
}

.u-m-75 {
  margin: 75px;
}

.u-m-80 {
  margin: 80px;
}

.u-m-85 {
  margin: 85px;
}

.u-m-90 {
  margin: 90px;
}

.u-m-95 {
  margin: 95px;
}

.u-m-100 {
  margin: 100px;
}

.u-mt-0 {
  margin-top: 0px;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-25 {
  margin-top: 25px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mt-35 {
  margin-top: 35px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-45 {
  margin-top: 45px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mt-55 {
  margin-top: 55px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mt-65 {
  margin-top: 65px;
}

.u-mt-70 {
  margin-top: 70px;
}

.u-mt-75 {
  margin-top: 75px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mt-85 {
  margin-top: 85px;
}

.u-mt-90 {
  margin-top: 90px;
}

.u-mt-95 {
  margin-top: 95px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mr-0 {
  margin-right: 0px;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-mr-15 {
  margin-right: 15px;
}

.u-mr-20 {
  margin-right: 20px;
}

.u-mr-25 {
  margin-right: 25px;
}

.u-mr-30 {
  margin-right: 30px;
}

.u-mr-35 {
  margin-right: 35px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-mr-45 {
  margin-right: 45px;
}

.u-mr-50 {
  margin-right: 50px;
}

.u-mr-55 {
  margin-right: 55px;
}

.u-mr-60 {
  margin-right: 60px;
}

.u-mr-65 {
  margin-right: 65px;
}

.u-mr-70 {
  margin-right: 70px;
}

.u-mr-75 {
  margin-right: 75px;
}

.u-mr-80 {
  margin-right: 80px;
}

.u-mr-85 {
  margin-right: 85px;
}

.u-mr-90 {
  margin-right: 90px;
}

.u-mr-95 {
  margin-right: 95px;
}

.u-mr-100 {
  margin-right: 100px;
}

.u-mb-0 {
  margin-bottom: 0px;
}

.u-mb-5 {
  margin-bottom: 5px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-15 {
  margin-bottom: 15px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-25 {
  margin-bottom: 25px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-mb-35 {
  margin-bottom: 35px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mb-45 {
  margin-bottom: 45px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-mb-55 {
  margin-bottom: 55px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-mb-65 {
  margin-bottom: 65px;
}

.u-mb-70 {
  margin-bottom: 70px;
}

.u-mb-75 {
  margin-bottom: 75px;
}

.u-mb-80 {
  margin-bottom: 80px;
}

.u-mb-85 {
  margin-bottom: 85px;
}

.u-mb-90 {
  margin-bottom: 90px;
}

.u-mb-95 {
  margin-bottom: 95px;
}

.u-mb-100 {
  margin-bottom: 100px;
}

.u-ml-0 {
  margin-left: 0px;
}

.u-ml-5 {
  margin-left: 5px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-ml-15 {
  margin-left: 15px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-ml-25 {
  margin-left: 25px;
}

.u-ml-30 {
  margin-left: 30px;
}

.u-ml-35 {
  margin-left: 35px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-ml-45 {
  margin-left: 45px;
}

.u-ml-50 {
  margin-left: 50px;
}

.u-ml-55 {
  margin-left: 55px;
}

.u-ml-60 {
  margin-left: 60px;
}

.u-ml-65 {
  margin-left: 65px;
}

.u-ml-70 {
  margin-left: 70px;
}

.u-ml-75 {
  margin-left: 75px;
}

.u-ml-80 {
  margin-left: 80px;
}

.u-ml-85 {
  margin-left: 85px;
}

.u-ml-90 {
  margin-left: 90px;
}

.u-ml-95 {
  margin-left: 95px;
}

.u-ml-100 {
  margin-left: 100px;
}

@media screen and (min-width: 375px), print {
  .u-m-0-sm-u {
    margin: 0px;
  }

  .u-m-5-sm-u {
    margin: 5px;
  }

  .u-m-10-sm-u {
    margin: 10px;
  }

  .u-m-15-sm-u {
    margin: 15px;
  }

  .u-m-20-sm-u {
    margin: 20px;
  }

  .u-m-25-sm-u {
    margin: 25px;
  }

  .u-m-30-sm-u {
    margin: 30px;
  }

  .u-m-35-sm-u {
    margin: 35px;
  }

  .u-m-40-sm-u {
    margin: 40px;
  }

  .u-m-45-sm-u {
    margin: 45px;
  }

  .u-m-50-sm-u {
    margin: 50px;
  }

  .u-m-55-sm-u {
    margin: 55px;
  }

  .u-m-60-sm-u {
    margin: 60px;
  }

  .u-m-65-sm-u {
    margin: 65px;
  }

  .u-m-70-sm-u {
    margin: 70px;
  }

  .u-m-75-sm-u {
    margin: 75px;
  }

  .u-m-80-sm-u {
    margin: 80px;
  }

  .u-m-85-sm-u {
    margin: 85px;
  }

  .u-m-90-sm-u {
    margin: 90px;
  }

  .u-m-95-sm-u {
    margin: 95px;
  }

  .u-m-100-sm-u {
    margin: 100px;
  }

  .u-mt-0-sm-u {
    margin-top: 0px;
  }

  .u-mt-5-sm-u {
    margin-top: 5px;
  }

  .u-mt-10-sm-u {
    margin-top: 10px;
  }

  .u-mt-15-sm-u {
    margin-top: 15px;
  }

  .u-mt-20-sm-u {
    margin-top: 20px;
  }

  .u-mt-25-sm-u {
    margin-top: 25px;
  }

  .u-mt-30-sm-u {
    margin-top: 30px;
  }

  .u-mt-35-sm-u {
    margin-top: 35px;
  }

  .u-mt-40-sm-u {
    margin-top: 40px;
  }

  .u-mt-45-sm-u {
    margin-top: 45px;
  }

  .u-mt-50-sm-u {
    margin-top: 50px;
  }

  .u-mt-55-sm-u {
    margin-top: 55px;
  }

  .u-mt-60-sm-u {
    margin-top: 60px;
  }

  .u-mt-65-sm-u {
    margin-top: 65px;
  }

  .u-mt-70-sm-u {
    margin-top: 70px;
  }

  .u-mt-75-sm-u {
    margin-top: 75px;
  }

  .u-mt-80-sm-u {
    margin-top: 80px;
  }

  .u-mt-85-sm-u {
    margin-top: 85px;
  }

  .u-mt-90-sm-u {
    margin-top: 90px;
  }

  .u-mt-95-sm-u {
    margin-top: 95px;
  }

  .u-mt-100-sm-u {
    margin-top: 100px;
  }

  .u-mr-0-sm-u {
    margin-right: 0px;
  }

  .u-mr-5-sm-u {
    margin-right: 5px;
  }

  .u-mr-10-sm-u {
    margin-right: 10px;
  }

  .u-mr-15-sm-u {
    margin-right: 15px;
  }

  .u-mr-20-sm-u {
    margin-right: 20px;
  }

  .u-mr-25-sm-u {
    margin-right: 25px;
  }

  .u-mr-30-sm-u {
    margin-right: 30px;
  }

  .u-mr-35-sm-u {
    margin-right: 35px;
  }

  .u-mr-40-sm-u {
    margin-right: 40px;
  }

  .u-mr-45-sm-u {
    margin-right: 45px;
  }

  .u-mr-50-sm-u {
    margin-right: 50px;
  }

  .u-mr-55-sm-u {
    margin-right: 55px;
  }

  .u-mr-60-sm-u {
    margin-right: 60px;
  }

  .u-mr-65-sm-u {
    margin-right: 65px;
  }

  .u-mr-70-sm-u {
    margin-right: 70px;
  }

  .u-mr-75-sm-u {
    margin-right: 75px;
  }

  .u-mr-80-sm-u {
    margin-right: 80px;
  }

  .u-mr-85-sm-u {
    margin-right: 85px;
  }

  .u-mr-90-sm-u {
    margin-right: 90px;
  }

  .u-mr-95-sm-u {
    margin-right: 95px;
  }

  .u-mr-100-sm-u {
    margin-right: 100px;
  }

  .u-mb-0-sm-u {
    margin-bottom: 0px;
  }

  .u-mb-5-sm-u {
    margin-bottom: 5px;
  }

  .u-mb-10-sm-u {
    margin-bottom: 10px;
  }

  .u-mb-15-sm-u {
    margin-bottom: 15px;
  }

  .u-mb-20-sm-u {
    margin-bottom: 20px;
  }

  .u-mb-25-sm-u {
    margin-bottom: 25px;
  }

  .u-mb-30-sm-u {
    margin-bottom: 30px;
  }

  .u-mb-35-sm-u {
    margin-bottom: 35px;
  }

  .u-mb-40-sm-u {
    margin-bottom: 40px;
  }

  .u-mb-45-sm-u {
    margin-bottom: 45px;
  }

  .u-mb-50-sm-u {
    margin-bottom: 50px;
  }

  .u-mb-55-sm-u {
    margin-bottom: 55px;
  }

  .u-mb-60-sm-u {
    margin-bottom: 60px;
  }

  .u-mb-65-sm-u {
    margin-bottom: 65px;
  }

  .u-mb-70-sm-u {
    margin-bottom: 70px;
  }

  .u-mb-75-sm-u {
    margin-bottom: 75px;
  }

  .u-mb-80-sm-u {
    margin-bottom: 80px;
  }

  .u-mb-85-sm-u {
    margin-bottom: 85px;
  }

  .u-mb-90-sm-u {
    margin-bottom: 90px;
  }

  .u-mb-95-sm-u {
    margin-bottom: 95px;
  }

  .u-mb-100-sm-u {
    margin-bottom: 100px;
  }

  .u-ml-0-sm-u {
    margin-left: 0px;
  }

  .u-ml-5-sm-u {
    margin-left: 5px;
  }

  .u-ml-10-sm-u {
    margin-left: 10px;
  }

  .u-ml-15-sm-u {
    margin-left: 15px;
  }

  .u-ml-20-sm-u {
    margin-left: 20px;
  }

  .u-ml-25-sm-u {
    margin-left: 25px;
  }

  .u-ml-30-sm-u {
    margin-left: 30px;
  }

  .u-ml-35-sm-u {
    margin-left: 35px;
  }

  .u-ml-40-sm-u {
    margin-left: 40px;
  }

  .u-ml-45-sm-u {
    margin-left: 45px;
  }

  .u-ml-50-sm-u {
    margin-left: 50px;
  }

  .u-ml-55-sm-u {
    margin-left: 55px;
  }

  .u-ml-60-sm-u {
    margin-left: 60px;
  }

  .u-ml-65-sm-u {
    margin-left: 65px;
  }

  .u-ml-70-sm-u {
    margin-left: 70px;
  }

  .u-ml-75-sm-u {
    margin-left: 75px;
  }

  .u-ml-80-sm-u {
    margin-left: 80px;
  }

  .u-ml-85-sm-u {
    margin-left: 85px;
  }

  .u-ml-90-sm-u {
    margin-left: 90px;
  }

  .u-ml-95-sm-u {
    margin-left: 95px;
  }

  .u-ml-100-sm-u {
    margin-left: 100px;
  }
}
@media screen and (min-width: 600px), print {
  .u-m-0-md-u {
    margin: 0px;
  }

  .u-m-5-md-u {
    margin: 5px;
  }

  .u-m-10-md-u {
    margin: 10px;
  }

  .u-m-15-md-u {
    margin: 15px;
  }

  .u-m-20-md-u {
    margin: 20px;
  }

  .u-m-25-md-u {
    margin: 25px;
  }

  .u-m-30-md-u {
    margin: 30px;
  }

  .u-m-35-md-u {
    margin: 35px;
  }

  .u-m-40-md-u {
    margin: 40px;
  }

  .u-m-45-md-u {
    margin: 45px;
  }

  .u-m-50-md-u {
    margin: 50px;
  }

  .u-m-55-md-u {
    margin: 55px;
  }

  .u-m-60-md-u {
    margin: 60px;
  }

  .u-m-65-md-u {
    margin: 65px;
  }

  .u-m-70-md-u {
    margin: 70px;
  }

  .u-m-75-md-u {
    margin: 75px;
  }

  .u-m-80-md-u {
    margin: 80px;
  }

  .u-m-85-md-u {
    margin: 85px;
  }

  .u-m-90-md-u {
    margin: 90px;
  }

  .u-m-95-md-u {
    margin: 95px;
  }

  .u-m-100-md-u {
    margin: 100px;
  }

  .u-mt-0-md-u {
    margin-top: 0px;
  }

  .u-mt-5-md-u {
    margin-top: 5px;
  }

  .u-mt-10-md-u {
    margin-top: 10px;
  }

  .u-mt-15-md-u {
    margin-top: 15px;
  }

  .u-mt-20-md-u {
    margin-top: 20px;
  }

  .u-mt-25-md-u {
    margin-top: 25px;
  }

  .u-mt-30-md-u {
    margin-top: 30px;
  }

  .u-mt-35-md-u {
    margin-top: 35px;
  }

  .u-mt-40-md-u {
    margin-top: 40px;
  }

  .u-mt-45-md-u {
    margin-top: 45px;
  }

  .u-mt-50-md-u {
    margin-top: 50px;
  }

  .u-mt-55-md-u {
    margin-top: 55px;
  }

  .u-mt-60-md-u {
    margin-top: 60px;
  }

  .u-mt-65-md-u {
    margin-top: 65px;
  }

  .u-mt-70-md-u {
    margin-top: 70px;
  }

  .u-mt-75-md-u {
    margin-top: 75px;
  }

  .u-mt-80-md-u {
    margin-top: 80px;
  }

  .u-mt-85-md-u {
    margin-top: 85px;
  }

  .u-mt-90-md-u {
    margin-top: 90px;
  }

  .u-mt-95-md-u {
    margin-top: 95px;
  }

  .u-mt-100-md-u {
    margin-top: 100px;
  }

  .u-mr-0-md-u {
    margin-right: 0px;
  }

  .u-mr-5-md-u {
    margin-right: 5px;
  }

  .u-mr-10-md-u {
    margin-right: 10px;
  }

  .u-mr-15-md-u {
    margin-right: 15px;
  }

  .u-mr-20-md-u {
    margin-right: 20px;
  }

  .u-mr-25-md-u {
    margin-right: 25px;
  }

  .u-mr-30-md-u {
    margin-right: 30px;
  }

  .u-mr-35-md-u {
    margin-right: 35px;
  }

  .u-mr-40-md-u {
    margin-right: 40px;
  }

  .u-mr-45-md-u {
    margin-right: 45px;
  }

  .u-mr-50-md-u {
    margin-right: 50px;
  }

  .u-mr-55-md-u {
    margin-right: 55px;
  }

  .u-mr-60-md-u {
    margin-right: 60px;
  }

  .u-mr-65-md-u {
    margin-right: 65px;
  }

  .u-mr-70-md-u {
    margin-right: 70px;
  }

  .u-mr-75-md-u {
    margin-right: 75px;
  }

  .u-mr-80-md-u {
    margin-right: 80px;
  }

  .u-mr-85-md-u {
    margin-right: 85px;
  }

  .u-mr-90-md-u {
    margin-right: 90px;
  }

  .u-mr-95-md-u {
    margin-right: 95px;
  }

  .u-mr-100-md-u {
    margin-right: 100px;
  }

  .u-mb-0-md-u {
    margin-bottom: 0px;
  }

  .u-mb-5-md-u {
    margin-bottom: 5px;
  }

  .u-mb-10-md-u {
    margin-bottom: 10px;
  }

  .u-mb-15-md-u {
    margin-bottom: 15px;
  }

  .u-mb-20-md-u {
    margin-bottom: 20px;
  }

  .u-mb-25-md-u {
    margin-bottom: 25px;
  }

  .u-mb-30-md-u {
    margin-bottom: 30px;
  }

  .u-mb-35-md-u {
    margin-bottom: 35px;
  }

  .u-mb-40-md-u {
    margin-bottom: 40px;
  }

  .u-mb-45-md-u {
    margin-bottom: 45px;
  }

  .u-mb-50-md-u {
    margin-bottom: 50px;
  }

  .u-mb-55-md-u {
    margin-bottom: 55px;
  }

  .u-mb-60-md-u {
    margin-bottom: 60px;
  }

  .u-mb-65-md-u {
    margin-bottom: 65px;
  }

  .u-mb-70-md-u {
    margin-bottom: 70px;
  }

  .u-mb-75-md-u {
    margin-bottom: 75px;
  }

  .u-mb-80-md-u {
    margin-bottom: 80px;
  }

  .u-mb-85-md-u {
    margin-bottom: 85px;
  }

  .u-mb-90-md-u {
    margin-bottom: 90px;
  }

  .u-mb-95-md-u {
    margin-bottom: 95px;
  }

  .u-mb-100-md-u {
    margin-bottom: 100px;
  }

  .u-ml-0-md-u {
    margin-left: 0px;
  }

  .u-ml-5-md-u {
    margin-left: 5px;
  }

  .u-ml-10-md-u {
    margin-left: 10px;
  }

  .u-ml-15-md-u {
    margin-left: 15px;
  }

  .u-ml-20-md-u {
    margin-left: 20px;
  }

  .u-ml-25-md-u {
    margin-left: 25px;
  }

  .u-ml-30-md-u {
    margin-left: 30px;
  }

  .u-ml-35-md-u {
    margin-left: 35px;
  }

  .u-ml-40-md-u {
    margin-left: 40px;
  }

  .u-ml-45-md-u {
    margin-left: 45px;
  }

  .u-ml-50-md-u {
    margin-left: 50px;
  }

  .u-ml-55-md-u {
    margin-left: 55px;
  }

  .u-ml-60-md-u {
    margin-left: 60px;
  }

  .u-ml-65-md-u {
    margin-left: 65px;
  }

  .u-ml-70-md-u {
    margin-left: 70px;
  }

  .u-ml-75-md-u {
    margin-left: 75px;
  }

  .u-ml-80-md-u {
    margin-left: 80px;
  }

  .u-ml-85-md-u {
    margin-left: 85px;
  }

  .u-ml-90-md-u {
    margin-left: 90px;
  }

  .u-ml-95-md-u {
    margin-left: 95px;
  }

  .u-ml-100-md-u {
    margin-left: 100px;
  }
}
@media screen and (min-width: 960px), print {
  .u-m-0-lg-u {
    margin: 0px;
  }

  .u-m-5-lg-u {
    margin: 5px;
  }

  .u-m-10-lg-u {
    margin: 10px;
  }

  .u-m-15-lg-u {
    margin: 15px;
  }

  .u-m-20-lg-u {
    margin: 20px;
  }

  .u-m-25-lg-u {
    margin: 25px;
  }

  .u-m-30-lg-u {
    margin: 30px;
  }

  .u-m-35-lg-u {
    margin: 35px;
  }

  .u-m-40-lg-u {
    margin: 40px;
  }

  .u-m-45-lg-u {
    margin: 45px;
  }

  .u-m-50-lg-u {
    margin: 50px;
  }

  .u-m-55-lg-u {
    margin: 55px;
  }

  .u-m-60-lg-u {
    margin: 60px;
  }

  .u-m-65-lg-u {
    margin: 65px;
  }

  .u-m-70-lg-u {
    margin: 70px;
  }

  .u-m-75-lg-u {
    margin: 75px;
  }

  .u-m-80-lg-u {
    margin: 80px;
  }

  .u-m-85-lg-u {
    margin: 85px;
  }

  .u-m-90-lg-u {
    margin: 90px;
  }

  .u-m-95-lg-u {
    margin: 95px;
  }

  .u-m-100-lg-u {
    margin: 100px;
  }

  .u-mt-0-lg-u {
    margin-top: 0px;
  }

  .u-mt-5-lg-u {
    margin-top: 5px;
  }

  .u-mt-10-lg-u {
    margin-top: 10px;
  }

  .u-mt-15-lg-u {
    margin-top: 15px;
  }

  .u-mt-20-lg-u {
    margin-top: 20px;
  }

  .u-mt-25-lg-u {
    margin-top: 25px;
  }

  .u-mt-30-lg-u {
    margin-top: 30px;
  }

  .u-mt-35-lg-u {
    margin-top: 35px;
  }

  .u-mt-40-lg-u {
    margin-top: 40px;
  }

  .u-mt-45-lg-u {
    margin-top: 45px;
  }

  .u-mt-50-lg-u {
    margin-top: 50px;
  }

  .u-mt-55-lg-u {
    margin-top: 55px;
  }

  .u-mt-60-lg-u {
    margin-top: 60px;
  }

  .u-mt-65-lg-u {
    margin-top: 65px;
  }

  .u-mt-70-lg-u {
    margin-top: 70px;
  }

  .u-mt-75-lg-u {
    margin-top: 75px;
  }

  .u-mt-80-lg-u {
    margin-top: 80px;
  }

  .u-mt-85-lg-u {
    margin-top: 85px;
  }

  .u-mt-90-lg-u {
    margin-top: 90px;
  }

  .u-mt-95-lg-u {
    margin-top: 95px;
  }

  .u-mt-100-lg-u {
    margin-top: 100px;
  }

  .u-mr-0-lg-u {
    margin-right: 0px;
  }

  .u-mr-5-lg-u {
    margin-right: 5px;
  }

  .u-mr-10-lg-u {
    margin-right: 10px;
  }

  .u-mr-15-lg-u {
    margin-right: 15px;
  }

  .u-mr-20-lg-u {
    margin-right: 20px;
  }

  .u-mr-25-lg-u {
    margin-right: 25px;
  }

  .u-mr-30-lg-u {
    margin-right: 30px;
  }

  .u-mr-35-lg-u {
    margin-right: 35px;
  }

  .u-mr-40-lg-u {
    margin-right: 40px;
  }

  .u-mr-45-lg-u {
    margin-right: 45px;
  }

  .u-mr-50-lg-u {
    margin-right: 50px;
  }

  .u-mr-55-lg-u {
    margin-right: 55px;
  }

  .u-mr-60-lg-u {
    margin-right: 60px;
  }

  .u-mr-65-lg-u {
    margin-right: 65px;
  }

  .u-mr-70-lg-u {
    margin-right: 70px;
  }

  .u-mr-75-lg-u {
    margin-right: 75px;
  }

  .u-mr-80-lg-u {
    margin-right: 80px;
  }

  .u-mr-85-lg-u {
    margin-right: 85px;
  }

  .u-mr-90-lg-u {
    margin-right: 90px;
  }

  .u-mr-95-lg-u {
    margin-right: 95px;
  }

  .u-mr-100-lg-u {
    margin-right: 100px;
  }

  .u-mb-0-lg-u {
    margin-bottom: 0px;
  }

  .u-mb-5-lg-u {
    margin-bottom: 5px;
  }

  .u-mb-10-lg-u {
    margin-bottom: 10px;
  }

  .u-mb-15-lg-u {
    margin-bottom: 15px;
  }

  .u-mb-20-lg-u {
    margin-bottom: 20px;
  }

  .u-mb-25-lg-u {
    margin-bottom: 25px;
  }

  .u-mb-30-lg-u {
    margin-bottom: 30px;
  }

  .u-mb-35-lg-u {
    margin-bottom: 35px;
  }

  .u-mb-40-lg-u {
    margin-bottom: 40px;
  }

  .u-mb-45-lg-u {
    margin-bottom: 45px;
  }

  .u-mb-50-lg-u {
    margin-bottom: 50px;
  }

  .u-mb-55-lg-u {
    margin-bottom: 55px;
  }

  .u-mb-60-lg-u {
    margin-bottom: 60px;
  }

  .u-mb-65-lg-u {
    margin-bottom: 65px;
  }

  .u-mb-70-lg-u {
    margin-bottom: 70px;
  }

  .u-mb-75-lg-u {
    margin-bottom: 75px;
  }

  .u-mb-80-lg-u {
    margin-bottom: 80px;
  }

  .u-mb-85-lg-u {
    margin-bottom: 85px;
  }

  .u-mb-90-lg-u {
    margin-bottom: 90px;
  }

  .u-mb-95-lg-u {
    margin-bottom: 95px;
  }

  .u-mb-100-lg-u {
    margin-bottom: 100px;
  }

  .u-ml-0-lg-u {
    margin-left: 0px;
  }

  .u-ml-5-lg-u {
    margin-left: 5px;
  }

  .u-ml-10-lg-u {
    margin-left: 10px;
  }

  .u-ml-15-lg-u {
    margin-left: 15px;
  }

  .u-ml-20-lg-u {
    margin-left: 20px;
  }

  .u-ml-25-lg-u {
    margin-left: 25px;
  }

  .u-ml-30-lg-u {
    margin-left: 30px;
  }

  .u-ml-35-lg-u {
    margin-left: 35px;
  }

  .u-ml-40-lg-u {
    margin-left: 40px;
  }

  .u-ml-45-lg-u {
    margin-left: 45px;
  }

  .u-ml-50-lg-u {
    margin-left: 50px;
  }

  .u-ml-55-lg-u {
    margin-left: 55px;
  }

  .u-ml-60-lg-u {
    margin-left: 60px;
  }

  .u-ml-65-lg-u {
    margin-left: 65px;
  }

  .u-ml-70-lg-u {
    margin-left: 70px;
  }

  .u-ml-75-lg-u {
    margin-left: 75px;
  }

  .u-ml-80-lg-u {
    margin-left: 80px;
  }

  .u-ml-85-lg-u {
    margin-left: 85px;
  }

  .u-ml-90-lg-u {
    margin-left: 90px;
  }

  .u-ml-95-lg-u {
    margin-left: 95px;
  }

  .u-ml-100-lg-u {
    margin-left: 100px;
  }
}
.u-p-0 {
  padding: 0px;
}

.u-p-5 {
  padding: 5px;
}

.u-p-10 {
  padding: 10px;
}

.u-p-15 {
  padding: 15px;
}

.u-p-20 {
  padding: 20px;
}

.u-p-25 {
  padding: 25px;
}

.u-p-30 {
  padding: 30px;
}

.u-p-35 {
  padding: 35px;
}

.u-p-40 {
  padding: 40px;
}

.u-p-45 {
  padding: 45px;
}

.u-p-50 {
  padding: 50px;
}

.u-p-55 {
  padding: 55px;
}

.u-p-60 {
  padding: 60px;
}

.u-p-65 {
  padding: 65px;
}

.u-p-70 {
  padding: 70px;
}

.u-p-75 {
  padding: 75px;
}

.u-p-80 {
  padding: 80px;
}

.u-p-85 {
  padding: 85px;
}

.u-p-90 {
  padding: 90px;
}

.u-p-95 {
  padding: 95px;
}

.u-p-100 {
  padding: 100px;
}

.u-pt-0 {
  padding-top: 0px;
}

.u-pt-5 {
  padding-top: 5px;
}

.u-pt-10 {
  padding-top: 10px;
}

.u-pt-15 {
  padding-top: 15px;
}

.u-pt-20 {
  padding-top: 20px;
}

.u-pt-25 {
  padding-top: 25px;
}

.u-pt-30 {
  padding-top: 30px;
}

.u-pt-35 {
  padding-top: 35px;
}

.u-pt-40 {
  padding-top: 40px;
}

.u-pt-45 {
  padding-top: 45px;
}

.u-pt-50 {
  padding-top: 50px;
}

.u-pt-55 {
  padding-top: 55px;
}

.u-pt-60 {
  padding-top: 60px;
}

.u-pt-65 {
  padding-top: 65px;
}

.u-pt-70 {
  padding-top: 70px;
}

.u-pt-75 {
  padding-top: 75px;
}

.u-pt-80 {
  padding-top: 80px;
}

.u-pt-85 {
  padding-top: 85px;
}

.u-pt-90 {
  padding-top: 90px;
}

.u-pt-95 {
  padding-top: 95px;
}

.u-pt-100 {
  padding-top: 100px;
}

.u-pr-0 {
  padding-right: 0px;
}

.u-pr-5 {
  padding-right: 5px;
}

.u-pr-10 {
  padding-right: 10px;
}

.u-pr-15 {
  padding-right: 15px;
}

.u-pr-20 {
  padding-right: 20px;
}

.u-pr-25 {
  padding-right: 25px;
}

.u-pr-30 {
  padding-right: 30px;
}

.u-pr-35 {
  padding-right: 35px;
}

.u-pr-40 {
  padding-right: 40px;
}

.u-pr-45 {
  padding-right: 45px;
}

.u-pr-50 {
  padding-right: 50px;
}

.u-pr-55 {
  padding-right: 55px;
}

.u-pr-60 {
  padding-right: 60px;
}

.u-pr-65 {
  padding-right: 65px;
}

.u-pr-70 {
  padding-right: 70px;
}

.u-pr-75 {
  padding-right: 75px;
}

.u-pr-80 {
  padding-right: 80px;
}

.u-pr-85 {
  padding-right: 85px;
}

.u-pr-90 {
  padding-right: 90px;
}

.u-pr-95 {
  padding-right: 95px;
}

.u-pr-100 {
  padding-right: 100px;
}

.u-pb-0 {
  padding-bottom: 0px;
}

.u-pb-5 {
  padding-bottom: 5px;
}

.u-pb-10 {
  padding-bottom: 10px;
}

.u-pb-15 {
  padding-bottom: 15px;
}

.u-pb-20 {
  padding-bottom: 20px;
}

.u-pb-25 {
  padding-bottom: 25px;
}

.u-pb-30 {
  padding-bottom: 30px;
}

.u-pb-35 {
  padding-bottom: 35px;
}

.u-pb-40 {
  padding-bottom: 40px;
}

.u-pb-45 {
  padding-bottom: 45px;
}

.u-pb-50 {
  padding-bottom: 50px;
}

.u-pb-55 {
  padding-bottom: 55px;
}

.u-pb-60 {
  padding-bottom: 60px;
}

.u-pb-65 {
  padding-bottom: 65px;
}

.u-pb-70 {
  padding-bottom: 70px;
}

.u-pb-75 {
  padding-bottom: 75px;
}

.u-pb-80 {
  padding-bottom: 80px;
}

.u-pb-85 {
  padding-bottom: 85px;
}

.u-pb-90 {
  padding-bottom: 90px;
}

.u-pb-95 {
  padding-bottom: 95px;
}

.u-pb-100 {
  padding-bottom: 100px;
}

.u-pl-0 {
  padding-left: 0px;
}

.u-pl-5 {
  padding-left: 5px;
}

.u-pl-10 {
  padding-left: 10px;
}

.u-pl-15 {
  padding-left: 15px;
}

.u-pl-20 {
  padding-left: 20px;
}

.u-pl-25 {
  padding-left: 25px;
}

.u-pl-30 {
  padding-left: 30px;
}

.u-pl-35 {
  padding-left: 35px;
}

.u-pl-40 {
  padding-left: 40px;
}

.u-pl-45 {
  padding-left: 45px;
}

.u-pl-50 {
  padding-left: 50px;
}

.u-pl-55 {
  padding-left: 55px;
}

.u-pl-60 {
  padding-left: 60px;
}

.u-pl-65 {
  padding-left: 65px;
}

.u-pl-70 {
  padding-left: 70px;
}

.u-pl-75 {
  padding-left: 75px;
}

.u-pl-80 {
  padding-left: 80px;
}

.u-pl-85 {
  padding-left: 85px;
}

.u-pl-90 {
  padding-left: 90px;
}

.u-pl-95 {
  padding-left: 95px;
}

.u-pl-100 {
  padding-left: 100px;
}

@media screen and (min-width: 375px), print {
  .u-p-0-sm-u {
    padding: 0px;
  }

  .u-p-5-sm-u {
    padding: 5px;
  }

  .u-p-10-sm-u {
    padding: 10px;
  }

  .u-p-15-sm-u {
    padding: 15px;
  }

  .u-p-20-sm-u {
    padding: 20px;
  }

  .u-p-25-sm-u {
    padding: 25px;
  }

  .u-p-30-sm-u {
    padding: 30px;
  }

  .u-p-35-sm-u {
    padding: 35px;
  }

  .u-p-40-sm-u {
    padding: 40px;
  }

  .u-p-45-sm-u {
    padding: 45px;
  }

  .u-p-50-sm-u {
    padding: 50px;
  }

  .u-p-55-sm-u {
    padding: 55px;
  }

  .u-p-60-sm-u {
    padding: 60px;
  }

  .u-p-65-sm-u {
    padding: 65px;
  }

  .u-p-70-sm-u {
    padding: 70px;
  }

  .u-p-75-sm-u {
    padding: 75px;
  }

  .u-p-80-sm-u {
    padding: 80px;
  }


  .u-p-85-sm-u {
    padding: 85px;
  }

  .u-p-90-sm-u {
    padding: 90px;
  }

  .u-p-95-sm-u {
    padding: 95px;
  }

  .u-p-100-sm-u {
    padding: 100px;
  }

  .u-pt-0-sm-u {
    padding-top: 0px;
  }

  .u-pt-5-sm-u {
    padding-top: 5px;
  }

  .u-pt-10-sm-u {
    padding-top: 10px;
  }

  .u-pt-15-sm-u {
    padding-top: 15px;
  }

  .u-pt-20-sm-u {
    padding-top: 20px;
  }

  .u-pt-25-sm-u {
    padding-top: 25px;
  }

  .u-pt-30-sm-u {
    padding-top: 30px;
  }

  .u-pt-35-sm-u {
    padding-top: 35px;
  }

  .u-pt-40-sm-u {
    padding-top: 40px;
  }

  .u-pt-45-sm-u {
    padding-top: 45px;
  }

  .u-pt-50-sm-u {
    padding-top: 50px;
  }

  .u-pt-55-sm-u {
    padding-top: 55px;
  }

  .u-pt-60-sm-u {
    padding-top: 60px;
  }

  .u-pt-65-sm-u {
    padding-top: 65px;
  }

  .u-pt-70-sm-u {
    padding-top: 70px;
  }

  .u-pt-75-sm-u {
    padding-top: 75px;
  }

  .u-pt-80-sm-u {
    padding-top: 80px;
  }

  .u-pt-85-sm-u {
    padding-top: 85px;
  }

  .u-pt-90-sm-u {
    padding-top: 90px;
  }

  .u-pt-95-sm-u {
    padding-top: 95px;
  }

  .u-pt-100-sm-u {
    padding-top: 100px;
  }

  .u-pr-0-sm-u {
    padding-right: 0px;
  }

  .u-pr-5-sm-u {
    padding-right: 5px;
  }

  .u-pr-10-sm-u {
    padding-right: 10px;
  }

  .u-pr-15-sm-u {
    padding-right: 15px;
  }

  .u-pr-20-sm-u {
    padding-right: 20px;
  }

  .u-pr-25-sm-u {
    padding-right: 25px;
  }

  .u-pr-30-sm-u {
    padding-right: 30px;
  }

  .u-pr-35-sm-u {
    padding-right: 35px;
  }

  .u-pr-40-sm-u {
    padding-right: 40px;
  }

  .u-pr-45-sm-u {
    padding-right: 45px;
  }

  .u-pr-50-sm-u {
    padding-right: 50px;
  }

  .u-pr-55-sm-u {
    padding-right: 55px;
  }

  .u-pr-60-sm-u {
    padding-right: 60px;
  }

  .u-pr-65-sm-u {
    padding-right: 65px;
  }

  .u-pr-70-sm-u {
    padding-right: 70px;
  }

  .u-pr-75-sm-u {
    padding-right: 75px;
  }

  .u-pr-80-sm-u {
    padding-right: 80px;
  }

  .u-pr-85-sm-u {
    padding-right: 85px;
  }

  .u-pr-90-sm-u {
    padding-right: 90px;
  }

  .u-pr-95-sm-u {
    padding-right: 95px;
  }

  .u-pr-100-sm-u {
    padding-right: 100px;
  }

  .u-pb-0-sm-u {
    padding-bottom: 0px;
  }

  .u-pb-5-sm-u {
    padding-bottom: 5px;
  }

  .u-pb-10-sm-u {
    padding-bottom: 10px;
  }

  .u-pb-15-sm-u {
    padding-bottom: 15px;
  }

  .u-pb-20-sm-u {
    padding-bottom: 20px;
  }

  .u-pb-25-sm-u {
    padding-bottom: 25px;
  }

  .u-pb-30-sm-u {
    padding-bottom: 30px;
  }

  .u-pb-35-sm-u {
    padding-bottom: 35px;
  }

  .u-pb-40-sm-u {
    padding-bottom: 40px;
  }

  .u-pb-45-sm-u {
    padding-bottom: 45px;
  }

  .u-pb-50-sm-u {
    padding-bottom: 50px;
  }

  .u-pb-55-sm-u {
    padding-bottom: 55px;
  }

  .u-pb-60-sm-u {
    padding-bottom: 60px;
  }

  .u-pb-65-sm-u {
    padding-bottom: 65px;
  }

  .u-pb-70-sm-u {
    padding-bottom: 70px;
  }

  .u-pb-75-sm-u {
    padding-bottom: 75px;
  }

  .u-pb-80-sm-u {
    padding-bottom: 80px;
  }

  .u-pb-85-sm-u {
    padding-bottom: 85px;
  }

  .u-pb-90-sm-u {
    padding-bottom: 90px;
  }

  .u-pb-95-sm-u {
    padding-bottom: 95px;
  }

  .u-pb-100-sm-u {
    padding-bottom: 100px;
  }

  .u-pl-0-sm-u {
    padding-left: 0px;
  }

  .u-pl-5-sm-u {
    padding-left: 5px;
  }

  .u-pl-10-sm-u {
    padding-left: 10px;
  }

  .u-pl-15-sm-u {
    padding-left: 15px;
  }

  .u-pl-20-sm-u {
    padding-left: 20px;
  }

  .u-pl-25-sm-u {
    padding-left: 25px;
  }

  .u-pl-30-sm-u {
    padding-left: 30px;
  }

  .u-pl-35-sm-u {
    padding-left: 35px;
  }

  .u-pl-40-sm-u {
    padding-left: 40px;
  }

  .u-pl-45-sm-u {
    padding-left: 45px;
  }

  .u-pl-50-sm-u {
    padding-left: 50px;
  }

  .u-pl-55-sm-u {
    padding-left: 55px;
  }

  .u-pl-60-sm-u {
    padding-left: 60px;
  }

  .u-pl-65-sm-u {
    padding-left: 65px;
  }

  .u-pl-70-sm-u {
    padding-left: 70px;
  }

  .u-pl-75-sm-u {
    padding-left: 75px;
  }

  .u-pl-80-sm-u {
    padding-left: 80px;
  }

  .u-pl-85-sm-u {
    padding-left: 85px;
  }

  .u-pl-90-sm-u {
    padding-left: 90px;
  }

  .u-pl-95-sm-u {
    padding-left: 95px;
  }

  .u-pl-100-sm-u {
    padding-left: 100px;
  }
}
@media screen and (min-width: 600px), print {
  .u-p-0-md-u {
    padding: 0px;
  }

  .u-p-5-md-u {
    padding: 5px;
  }

  .u-p-10-md-u {
    padding: 10px;
  }

  .u-p-15-md-u {
    padding: 15px;
  }

  .u-p-20-md-u {
    padding: 20px;
  }

  .u-p-25-md-u {
    padding: 25px;
  }

  .u-p-30-md-u {
    padding: 30px;
  }

  .u-p-35-md-u {
    padding: 35px;
  }

  .u-p-40-md-u {
    padding: 40px;
  }

  .u-p-45-md-u {
    padding: 45px;
  }

  .u-p-50-md-u {
    padding: 50px;
  }

  .u-p-55-md-u {
    padding: 55px;
  }

  .u-p-60-md-u {
    padding: 60px;
  }

  .u-p-65-md-u {
    padding: 65px;
  }

  .u-p-70-md-u {
    padding: 70px;
  }

  .u-p-75-md-u {
    padding: 75px;
  }

  .u-p-80-md-u {
    padding: 80px;
  }

  .u-p-85-md-u {
    padding: 85px;
  }

  .u-p-90-md-u {
    padding: 90px;
  }

  .u-p-95-md-u {
    padding: 95px;
  }

  .u-p-100-md-u {
    padding: 100px;
  }

  .u-pt-0-md-u {
    padding-top: 0px;
  }

  .u-pt-5-md-u {
    padding-top: 5px;
  }

  .u-pt-10-md-u {
    padding-top: 10px;
  }

  .u-pt-15-md-u {
    padding-top: 15px;
  }

  .u-pt-20-md-u {
    padding-top: 20px;
  }

  .u-pt-25-md-u {
    padding-top: 25px;
  }

  .u-pt-30-md-u {
    padding-top: 30px;
  }

  .u-pt-35-md-u {
    padding-top: 35px;
  }

  .u-pt-40-md-u {
    padding-top: 40px;
  }

  .u-pt-45-md-u {
    padding-top: 45px;
  }

  .u-pt-50-md-u {
    padding-top: 50px;
  }

  .u-pt-55-md-u {
    padding-top: 55px;
  }

  .u-pt-60-md-u {
    padding-top: 60px;
  }

  .u-pt-65-md-u {
    padding-top: 65px;
  }

  .u-pt-70-md-u {
    padding-top: 70px;
  }

  .u-pt-75-md-u {
    padding-top: 75px;
  }

  .u-pt-80-md-u {
    padding-top: 80px;
  }

  .u-pt-85-md-u {
    padding-top: 85px;
  }

  .u-pt-90-md-u {
    padding-top: 90px;
  }

  .u-pt-95-md-u {
    padding-top: 95px;
  }

  .u-pt-100-md-u {
    padding-top: 100px;
  }

  .u-pr-0-md-u {
    padding-right: 0px;
  }

  .u-pr-5-md-u {
    padding-right: 5px;
  }

  .u-pr-10-md-u {
    padding-right: 10px;
  }

  .u-pr-15-md-u {
    padding-right: 15px;
  }

  .u-pr-20-md-u {
    padding-right: 20px;
  }

  .u-pr-25-md-u {
    padding-right: 25px;
  }

  .u-pr-30-md-u {
    padding-right: 30px;
  }

  .u-pr-35-md-u {
    padding-right: 35px;
  }

  .u-pr-40-md-u {
    padding-right: 40px;
  }

  .u-pr-45-md-u {
    padding-right: 45px;
  }

  .u-pr-50-md-u {
    padding-right: 50px;
  }

  .u-pr-55-md-u {
    padding-right: 55px;
  }

  .u-pr-60-md-u {
    padding-right: 60px;
  }

  .u-pr-65-md-u {
    padding-right: 65px;
  }

  .u-pr-70-md-u {
    padding-right: 70px;
  }

  .u-pr-75-md-u {
    padding-right: 75px;
  }

  .u-pr-80-md-u {
    padding-right: 80px;
  }

  .u-pr-85-md-u {
    padding-right: 85px;
  }

  .u-pr-90-md-u {
    padding-right: 90px;
  }

  .u-pr-95-md-u {
    padding-right: 95px;
  }

  .u-pr-100-md-u {
    padding-right: 100px;
  }

  .u-pb-0-md-u {
    padding-bottom: 0px;
  }

  .u-pb-5-md-u {
    padding-bottom: 5px;
  }

  .u-pb-10-md-u {
    padding-bottom: 10px;
  }

  .u-pb-15-md-u {
    padding-bottom: 15px;
  }

  .u-pb-20-md-u {
    padding-bottom: 20px;
  }

  .u-pb-25-md-u {
    padding-bottom: 25px;
  }

  .u-pb-30-md-u {
    padding-bottom: 30px;
  }

  .u-pb-35-md-u {
    padding-bottom: 35px;
  }

  .u-pb-40-md-u {
    padding-bottom: 40px;
  }

  .u-pb-45-md-u {
    padding-bottom: 45px;
  }

  .u-pb-50-md-u {
    padding-bottom: 50px;
  }

  .u-pb-55-md-u {
    padding-bottom: 55px;
  }

  .u-pb-60-md-u {
    padding-bottom: 60px;
  }

  .u-pb-65-md-u {
    padding-bottom: 65px;
  }

  .u-pb-70-md-u {
    padding-bottom: 70px;
  }

  .u-pb-75-md-u {
    padding-bottom: 75px;
  }

  .u-pb-80-md-u {
    padding-bottom: 80px;
  }

  .u-pb-85-md-u {
    padding-bottom: 85px;
  }

  .u-pb-90-md-u {
    padding-bottom: 90px;
  }

  .u-pb-95-md-u {
    padding-bottom: 95px;
  }

  .u-pb-100-md-u {
    padding-bottom: 100px;
  }

  .u-pl-0-md-u {
    padding-left: 0px;
  }

  .u-pl-5-md-u {
    padding-left: 5px;
  }

  .u-pl-10-md-u {
    padding-left: 10px;
  }

  .u-pl-15-md-u {
    padding-left: 15px;
  }

  .u-pl-20-md-u {
    padding-left: 20px;
  }

  .u-pl-25-md-u {
    padding-left: 25px;
  }

  .u-pl-30-md-u {
    padding-left: 30px;
  }

  .u-pl-35-md-u {
    padding-left: 35px;
  }

  .u-pl-40-md-u {
    padding-left: 40px;
  }

  .u-pl-45-md-u {
    padding-left: 45px;
  }

  .u-pl-50-md-u {
    padding-left: 50px;
  }

  .u-pl-55-md-u {
    padding-left: 55px;
  }

  .u-pl-60-md-u {
    padding-left: 60px;
  }

  .u-pl-65-md-u {
    padding-left: 65px;
  }

  .u-pl-70-md-u {
    padding-left: 70px;
  }

  .u-pl-75-md-u {
    padding-left: 75px;
  }

  .u-pl-80-md-u {
    padding-left: 80px;
  }

  .u-pl-85-md-u {
    padding-left: 85px;
  }

  .u-pl-90-md-u {
    padding-left: 90px;
  }

  .u-pl-95-md-u {
    padding-left: 95px;
  }

  .u-pl-100-md-u {
    padding-left: 100px;
  }
}
/* =========================================================
display - ブレイクポイントごとに表示切替
========================================================= */
/*完全非表示*/
.u-display-none {
  display: none !important;
}

.u-display-xs-d {
  display: block;
}
@media screen and (min-width: 375px), print {
  .u-display-xs-d {
    display: none;
  }
}

.u-display-sm-d {
  display: block;
}
@media screen and (min-width: 600px), print {
  .u-display-sm-d {
    display: none;
  }
}

.u-display-md-d {
  display: block;
}
@media screen and (min-width: 960px), print {
  .u-display-md-d {
    display: none;
  }
}

.u-display-sm-u {
  display: none;
}
@media screen and (min-width: 375px), print {
  .u-display-sm-u {
    display: block;
  }
}

.u-display-md-u {
  display: none;
}
@media screen and (min-width: 600px), print {
  .u-display-md-u {
    display: block;
  }
}

.u-display-lg-d {
  display: block;
}
@media screen and (min-width: 960px), print {
  .u-display-lg-d {
    display: none;
  }
}

.u-display-lg-u {
  display: none;
}
@media screen and (min-width: 960px), print {
  .u-display-lg-u {
    display: block;
  }
}

/* =========================================================
position - flexを使った位置調整など
========================================================= */
.u-fl-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-jc-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.u-vc-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
print*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* =========================================================
印刷用
========================================================= */
/*プリント用の表示*/
.p-print-photo,
.p-racipe-item-ph {
  display: none !important;
}

@media print {
  .p-print-none {
    display: none !important;
  }

  /*全体*/
  body {
    width: 100%;
    height: auto;
    max-width: 980px;
    margin: 0 auto;
    overflow: visible !important;
    transform: none !important;
    position: static !important;
  }

  html, main {
    overflow: visible !important;
    position: static !important;
  }

  .c-header-secondary,
  .c-header-tertiary,
  .c-slide-navi,
  .l-side,
  .l-footer,
  .c-pagetop-btn {
    display: none !important;
    overflow: hidden !important;
  }

  .l-header {
    position: relative;
  }
  .l-header .c-site-branding__logotype-img {
    width: 150px !important;
    height: 21px !important;
  }

  .l-main {
    width: 100% !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    overflow: visible !important;
    position: static !important;
  }

  .l-main-wrap {
    overflow: visible !important;
    position: static !important;
    display: block !important;
  }

  .l-section {
    overflow: visible !important;
    margin-bottom: 30px !important;
    position: static !important;
    display: block;
  }
  .l-section.p-print-none {
    overflow: hidden !important;
  }
  .l-section .row {
    overflow: visible !important;
    position: static !important;
  }

  /*TOP*/
  .slick-slide {
    max-width: 1200px !important;
  }

  .p-top-goods {
    overflow: visible !important;
  }

  /*商品詳細*/
  .p-category-breadcrumbs,
  .c-breadcrumbs,
  .p-category-primary .p-category-sns,
  .p-category-difference__item .p-category-buy,
  .p-category-favoritelink,
  .p-category-link,
  .js-detail_readmore__btn,
  .p-category-detail-recipe,
  .p-category-photo,
  #review,
  .p-category-primary .p-category-review,
  .p-recipe-item-ttl__sns {
    display: none !important;
  }

  .p-category-info {
    display: block !important;
  }

  .js-detail_readmore {
    height: auto !important;
  }
  .js-detail_readmore::before {
    content: none;
  }

  .p-category-difference {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .p-print-item-tables {
    display: block !important;
  }
  .p-print-item-tables .col-md-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  /*プリント用の表示*/
  .p-print-photo,
  .p-racipe-item-ph {
    display: block !important;
    overflow: visible !important;
  }
  .p-print-photo__item,
  .p-racipe-item-ph__item {
    display: inline-block;
    vertical-align: middle;
    width: 33%;
    padding: 5px;
    text-align: center;
    text-align: center;
  }
  .p-print-photo__item img,
  .p-racipe-item-ph__item img {
    display: block;
    margin: 0 auto;
  }

  .p-category-item__btnarea,
  .p-recipe-item-fav-pri__list {
    display: none !important;
  }

  .p-print-recipe__info {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    overflow: visible !important;
  }

  .p-recipe-material__table .c-text-table--white th.c-text-table_item {
    padding: 10px;
    overflow: visible !important;
  }
  .p-recipe-material__table .c-basic-form__checkbox-parts::before, .p-recipe-material__table .c-basic-form__checkbox-parts::after {
    content: none !important;
  }
  .p-recipe-material__table .c-basic-form__checkbox-parts a {
    text-decoration: none;
    color: #333333;
  }

  .p-recipe-make .p-recipe-make__list {
    display: block !important;
  }
  .p-recipe-make .p-recipe-make__list::before {
    z-index: 1000 !important;
    position: relative !important;
    top: -5px !important;
    left: 0 !important;
  }
  .p-recipe-make .p-recipe-make__ttl {
    margin-left: 5px !important;
  }

  .p-recipe-make__detail img {
    max-width: 300px !important;
  }
}
