
@charset "utf-8";

/* /////////////////////////////////////////////////////////////////////
//  Global
/////////////////////////////////////////////////////////////////////*/

html,body,h1,h2,p,ul,li {
  margin: 0;
  padding: 0;
  line-height: 1.0;
}
html {
  font-size: 62.5%;
}
body {
  background-color: #fff;
  font-size: 1.6rem;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  color: #5B3932;
  line-height: 1.4;
}
img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-out;
  word-wrap: break-word;
}
a:hover {
  color: inherit;
}
a.text-link {
  text-decoration: underline;
}
a.text-link:hover {
  text-decoration: none;
}
.drop-shadow {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}
.z-index-1 {
  z-index: 1;
}

/*-- margin --*/
.mt--40 {
  margin-top: -40px;
}

/*-- background --*/

.bg-c-red {
  background-color: #BA2636;
}
.bg-c-dark-purple {
  background-color: #6E1E51;
}
.bg-c-gold {
  background-color: #E6B422;
}
.bg-c-gold-gradation {
  background-image: linear-gradient(90deg, rgba(192,154,14,1) 0%, rgba(247,236,149,1) 50%, rgba(192,154,14,1) 100%);
}
.bg-c-white {
  background-color: White;
}
.bg-c-light-pink {
  background-color: #FEDFE1 !important;
}
.bg-purple {
  position: relative;
  background: url(images_22/bg-fabric.jpg);
  background-repeat: repeat;
}
.bg-purple > .inner {
  background-color: rgba(130,72,128,0.9);
}
.bg-matcha {
  background-image: url(images_22/pattern-asanoha.png);
  background-repeat: repeat;
  background-position: center;
  background-color: #7BA23F;
}
.bg-gold {
  background-image: url(images_22/pattern-mikuzushi.png),linear-gradient(90deg, rgba(192,154,14,1) 0%, rgba(247,236,149,1) 50%, rgba(192,154,14,1) 100%);
  background-repeat: repeat;
  background-position: center;
}
.bg-dark-purple {
  background-image: url(images_22/pattern-flower.png);
  background-repeat: repeat;
  background-position: center;
  background-color: #6E1E51;
}
.bg-paper {
  background-image: url(images_22/bg-paper.png);
  background-repeat: repeat;
  background-color: #F6EFE2;
}

/*-- border --*/

.border-c-red {
  border: 2px solid #BA2636;
}
.border-c-dark-purple {
  border: 2px solid #6E1E51;
}
.border-c-gold {
  border: 2px solid #E6B422;
}

/*-- font --*/

.noto-Sans {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
.vrtical-writing {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.letter-spacing-big {
  letter-spacing: .1em;
}
.letter-spacing-small {
  letter-spacing: -0.05em;
}

/*-- color --*/

.red {
  color: #BA2636 !important;
}
.dark-purple {
  color: #6E1E51 !important;
}
.gold {
  color: #E6B422 !important;
}
.light-gold {
  color: #FBCA4D !important;
}

/*-- decoration --*/

.upper-right-decoration-flower-1 {
  top: -184px;
  right: -240px;
}
.upper-right-decoration-flower-2 {
  top: 0;
  right: -48px;
}
.upper-right-decoration-flower-3 {
  top: 80px;
  right: 40px;
}
.lower-left-decoration-flower-1 {
  bottom: -184px;
  left: -240px;
}
.lower-left-decoration-flower-2 {
  bottom: 80px;
  left: -48px;
}
.lower-left-decoration-flower-3 {
  bottom: -80px;
  left: 80px;
}
.decoration-cloud-1 {
  top: 400px;
  left: -200px;
}
.decoration-cloud-2 {
  top: 1000px;
  left: -200px;
}
.decoration-cloud-3 {
  right: -200px;
  bottom: 1000px;
}

/*-- title --*/

.section-title {
  z-index: 0;
}
.section-title img {
  z-index: -1;
}
.section-title h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}
.section-title.section-title-bg h1 {
  padding: 0 0.5em 0.1em;
}
.title-flower-left {
  top: 4px;
  left: -80px;
}
.title-flower-right {
  top: 4px;
  right: -80px;
}

/*-- animation --*/

/*-- kurukuru --*/

.kurukuru {
  opacity: 0;
}
.kurukuru.is-animated {
  animation: kurukuru 1.5s ease-out;
  opacity: 1;
}
@keyframes kurukuru {
  0%{
    transform: rotateY(0) translateY(-40px);
    opacity: 0;
  }
  100%{
    transform: rotateY(360deg) translateY(0);
    opacity: 1;
  }
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  .bg-purple {
    width: 100%;
  }
  .bg-gold {
    background-size: 60%, auto;
  }
  .section-title h1 {
    font-size: 32px;
  }
  .title-flower-left {
    width: 40px;
    left: -56px;
  }
  .title-flower-right {
    width: 40px;
    right: -56px;
  }
  .upper-right-decoration-flower-1 {
    width: 24vw;
    top: -22vw;
    right: -12vw;
  }
  .upper-right-decoration-flower-3 {
    width: 4vw;
    top: -8vw;
    right: 16vw;
  }
  .lower-left-decoration-flower-1 {
    width: 24vw;
    bottom: -22vw;
    left: -12vw;
  }
  .lower-left-decoration-flower-3 {
    width: 4vw;
    bottom: -8vw;
    left: 16vw;
  }
  .upper-right-decoration-flower-2,
  .lower-left-decoration-flower-2 {
    display: none;
  }
  .decoration-cloud-1,
  .decoration-cloud-2,
  .decoration-cloud-3 {
    width: 80vw;
  }
  .decoration-cloud-1,
  .decoration-cloud-2 {
    left: -80px;
  }
  .decoration-cloud-3 {
    right: -80px;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  mainvisual
/////////////////////////////////////////////////////////////////////*/

#mainvisual {
  padding: 10px 0;
  background: url(images_22/bg-mainvisual-object.png), url(images_22/bg-mainvisual.jpg);
  background-repeat: no-repeat;
  background-position: top -280px center,center;
  background-size: auto;
}
.mainvisual-comment {
  top: 20px;
  left: 30%;
  font-size: 32px;
}

/*-- mainvisual-product --*/

.mainvisual-product {
  margin-bottom: 120px;
}
.package-toubicha {
  margin-top: 144px;
  max-width: 280px;
}
.notification-number {
  font-size: 14px;
}
.functionality-icon {
  top: 40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.powder-icon {
  right: -104px;
  bottom: 1.5em;
  width: 88px;
  height: 88px;
  border-radius: 50%;
}
.functionality-icon p,
.powder-icon p {
  font-size: 22px;
  line-height: 1.2;
}
.img-powder {
  right: -80px;
  bottom: -80px;
}
.mainvisual-notes {
  font-size: 14px;
  line-height: 1.4;
}

/*-- mainvisual-title --*/

.mainvisual-title {
  top: 40px;
  right: -20px;
  height: fit-content;
  padding: 20px 40px 20px 20px;
  border: 4px solid #E6B422;
}
.mainvisual-title h1 img {
  width: 184px;
}
.mainvisual-sub-title {
  height: fit-content;
  padding: 16px;
}
.mainvisual-sub-title h2 img {
  width: 80px;
}

/*-- 1400px --*/

@media all and (max-width: 1400px) {
  #mainvisual {
    background-position: top -200px center, center;
    background-size: auto 800px, auto;
  }
}

/*-- 1200px --*/

@media all and (max-width: 1200px) {
  #mainvisual {
    background-position: top -120px center, center;
    background-size: auto 600px, auto;
  }
  .mainvisual-comment {
    font-size: 22px;
  }
  .mainvisual-product {
    margin-bottom: 80px;
  }
  .package-toubicha {
    margin-top: 104px;
    width: 72%;
  }
  .notification-number {
    padding-left: 14%;
  }
  .functionality-icon {
    top: 24px;
    left: 0;
    width: 88px;
    height: 88px;
  }
  .powder-icon {
    right: -64px;
    bottom: 1em;
    width: 64px;
    height: 64px;
  }
  .functionality-icon p,
  .powder-icon p {
    font-size: 16px;
  }
  .img-powder {
    width: 112px;
    right: -40px;
    bottom: -64px;
  }
}

/*-- 992px --*/

@media all and (max-width: 992px) {
  #mainvisual {
    background-size: auto 480px, auto;
  }
}

/*-- 767px --*/

@media all and (max-width: 767px) {
  #mainvisual {
    background-position: top left -16vw, center;
    background-size: auto 100vw, auto;
  }
  .mainvisual-comment {
    top: 4vw;
    left: 4vw;
    font-size: 6vw;
  }
  .order-1 {
    padding-bottom: 8vw;
  }
  .mainvisual-product {
    margin-bottom: 4vw;
  }
  .mainvisual-product h3 {
    right: 20px;
  }
  .mainvisual-package {
    width: 100%;
  }
  .package-toubicha {
    margin-top: 0;
    width: 40vw;
  }
  .notification-number {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 0;
    font-size: 12px;
  }
  .functionality-icon {
    top: 0;
    width: 24vw;
    height: 24vw;
  }
  .powder-icon {
    right: 6vw;
    bottom: 20vw;
    width: 16vw;
    height: 16vw;
  }
  .functionality-icon p,
  .powder-icon p {
    font-size: 4vw;
  }
  .img-powder {
    width: 26vw;
    right: 0;
    bottom: 0;
  }
  .mainvisual-title h1 img {
    width: 26vw;
  }
  .mainvisual-sub-title {
    padding: 4vw 2vw;
  }
  .mainvisual-sub-title h2 img {
    width: 6vw;
  }
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  .functionality-icon {
    width: 26vw;
    height: 26vw;
  }
  .powder-icon {
    right: 4vw;
    width: 18vw;
    height: 18vw;
  }
  .mainvisual-notes {
    font-size: 12px;
  }
  .mainvisual-title {
    top: 4vw;
    right: -4vw;
    padding: 4vw 24px 4vw 4vw;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  product
/////////////////////////////////////////////////////////////////////*/

#product > .inner {
  padding: 40px 0 60px;
}
#product .bg.is-animated .bg-wrap::before {
  background-image: linear-gradient(90deg, rgba(192,154,14,1) 0%, rgba(247,236,149,1) 50%, rgba(192,154,14,1) 100%);
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  #product > .inner {
    padding: 20px 0 40px;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  point
/////////////////////////////////////////////////////////////////////*/

#point {
  padding: 40px 0 60px;
}
.leaf-green {
  top: -80px;
  right: 18%;
}
.point-text {
  margin-top: -40px;
}
.point-2 {
  margin-top: 60px;
}
.point-number {
  top: -40px;
  left: 50%;
  margin-left: -40px;
  width: 80px;
}

/*-- point-circle --*/

.point-circle {
  margin: auto;
  padding: 1em;
  max-width: 360px;
  border-radius: 100%;
  background: #517C1C;
}
.point-circle:before {
  display: block;
  content: '';
  padding-top: 100%;
}
.point-circle h2 {
  font-size: 32px;
  line-height: 1.4;
}
.point-circle p {
  font-size: 22px;
  line-height: 1.4;
}

/*-- kakko --*/

.kakko {
  padding: 0 20px;
}
.kakko:before,
.kakko:after {
  content: '';
  width: 10px;
  height: 20px;
  position: absolute;
}
.kakko:before {
  border-left: solid 1px #fff;
  border-top: solid 1px #fff;
  top: 0;
  left: 0;
}
.kakko:after {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  bottom: 0;
  right: 0;
}

/*-- 992px --*/

@media all and (max-width: 992px) {
  .leaf-green {
    right: 0;
    width: 24vw;
  }
  .point-text {
    margin-top: 40px;
  }
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  #point {
    padding: 20px 0 40px;
  }
  .leaf-green {
    top: -12vw;
    right: 8vw;
  }
  .point-text {
    margin-top: 20px;
  }
  .point-2,
  .point-3 {
    margin-top: 40px;
  }
  .point-number {
    top: -8vw;
    margin-left: -8vw;
    width: 16vw;
  }
  .point-circle {
    padding: 0;
    max-width: 280px;
  }
  .point-circle h2 {
    font-size: 24px;
  }
  .point-circle p {
    font-size: 18px;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  reason
/////////////////////////////////////////////////////////////////////*/

#reason {
  padding: 60px 0;
}

/* == reason-box ================ */

.reason-box {
  padding: 30px 40px 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-top: 5px solid #6E1E51;
}
.reason-box:before,
.reason-box:after {
  content: '';
  display: inline-block;
  position: absolute;
  right: -40px;
  width: 40px;
  height: 5px;
  background-color: #6E1E51;
}
.reason-box:before {
  top: -5px;
}
.reason-box:after {
  top: -10px;
  transform: rotate(-15deg);
}
.reason-list li .icon-check-mark {
  width: 48px;
  margin-right: 1em;
}
.reason-list li p {
  font-size: 32px;
  line-height: 1.4;
  color: #517C1C;
}
.reason-list li {
  margin-bottom: 2em;
}
.reason-list li:last-child {
  margin-bottom: 0;
}

/*-- 992px --*/

@media all and (max-width: 992px) {
  .reason-list {
    margin-top: 20px;
  }
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  #reason {
    padding: 20px 0 40px;
  }
  .reason-box {
    padding: 10px 10px 30px;
  }
  .reason-box:before,
  .reason-box:after {
    display: none;
  }
  .reason-list li .icon-check-mark {
    width: 32px;
    margin-right: 0.5em;
  }
  .reason-list li p {
    font-size: 24px;
  }
  .reason-list li {
    margin-bottom: 1em;
  }
  .reason-img img {
    width: 240px;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  summary
/////////////////////////////////////////////////////////////////////*/

#summary > .inner {
  padding: 60px 0;
}
#summary .bg .bg-fadein .inner {
  color: #fff;
}
#summary .bg.is-animated .bg-wrap::before {
  background-color: #BA2636;
}

/* == summary-box ================ */

.summary-box {
  margin-bottom: 40px;
  padding: 30px 40px 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.summary-box h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}
.summary-box p {
  font-size: 18px;
  line-height: 1.6;
}
.decoration-1,
.decoration-2 {
  top: 0;
  left: 0;
  width: 144px !important;
}
.summary-box img {
  margin: auto;
  max-width: 680px;
  width: 100%;
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  #summary > .inner {
    padding: 20px 0 40px;
  }
  .summary-box {
    margin-bottom: 30px;
    padding: 30px 10px;
  }
  .summary-box h2 {
    font-size: 24px;
  }
  .summary-box p {
    font-size: 16px;
    text-align: left;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  voice
/////////////////////////////////////////////////////////////////////*/

#voice {
  padding: 60px 0;
}

/* == feature ================ */

#feature {
  margin-bottom: 40px;
}
.feature-box {
  position: relative;
  width: 100%;
  max-width: 280px;
}
.feature-box:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url("images_22/figure-flower.svg") no-repeat;
  background-size: 100% auto;
}
.feature-bg h3 {
  font-size: 24px;
  line-height: 1.4;
}
.feature-bg .leaf-gold {
  margin-bottom: 0.5em;
}

/* == voice-box ================ */

.voice-box {
  padding: 40px;
  height: 100%;
  border: 4px solid #6E1E51;
}
.voice-box:before {
  content: '';
  position: absolute;
  display: block;
  top: 8px;
  bottom: 8px;
  left: 8px;
  right: 8px;
  border: 1px solid #6E1E51;
  z-index: 1;
}
.voice-1 {
  margin-bottom: 30px;
}
.voice-box-left {
  top: 0;
  left: 0;
}
.voice-box-right {
  right: 0;
  bottom: 0;
}
.voice-box p {
  font-size: 18px;
  line-height: 1.6;
}
.voice-box p.evaluation {
  font-size: 22px;
}
.voice-box p.gender {
  font-size: 16px;
}

/*-- 767px --*/

@media all and (max-width: 767px) {
  .voice-box {
    margin-bottom: 30px;
    padding: 30px;
    height: auto;
  }
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  #voice {
    padding: 20px 0 40px;
  }
  .feature-box {
    max-width: 240px;
  }
  .feature-bg .leaf-gold {
    width: 12vw;
  }
  .feature-bg h3 {
    font-size: 18px;
  }
  .voice-box {
    margin-bottom: 30px;
    padding: 30px;
    height: auto;
  }
  .voice-box-left,
  .voice-box-right {
    width: 40px;
  }
  .voice-box p {
    font-size: 16px;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  lineup
/////////////////////////////////////////////////////////////////////*/

#lineup > .inner {
  padding: 60px 0;
}

/* == catch ================ */

.catch {
  margin-bottom: 40px;
}
.catch-desc img {
  width: 240px;
}

/* == product-box ================ */

.product-box {
  margin-bottom: 40px;
  padding: 30px 40px 40px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.icon-first {
  top: -40px;
  left: -40px;
}
.icon-teiki {
  top: -20px;
  left: -40px;
}
.present-comment {
  top: 0;
  left: 0;
  position: relative;
  padding: 1.5em 1em;
  background-color: #BA2636;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1.4;
}
.present-comment:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 72%;
  top: 72%;
  border-right: 16px solid #BA2636;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  transform: rotate( 110deg);
}

/* product-img */

.bag-number {
  width: 96px;
  height: 96px;
}
.bag-number-trial {
  right: 0;
}

/* product-desc */

.product-desc h3.name {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}
.product-desc .lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
.product-desc .message {
  text-align: center;
}
.product-desc .message .ribbon {
  padding: 0.4em 0 0.6em;
}
.product-desc .message .ribbon p {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.product-desc .equivalent {
  font-size: 24px;
}
.price .price-title {
  font-size: 32px;
  font-weight: bold;
}
.price .bag-number-text {
  font-size: 40px;
  font-weight: 600;
}
.price .bag-number-text-small {
  font-size: 24px;
  font-weight: 600;
}
.price b {
  position: relative;
  bottom: -10px;
  font-family: "Arial";
  padding: 0 0.05em;
  font-size: 64px;
}
.price .unit {
  font-size: 40px;
  font-weight: bold;
}
.comments ul {
  font-size: 14px;
  line-height: 1.2;
}

/*-- button --*/

.button-buy {
  gap: .5em;
  border-radius: 60px;
  padding: .4em .5em .6em;
  background-color: #517C1C;
  font-size: 32px;
  color: #fff;
  line-height: 1.0;
  transition: 0.2s background;
}
.button-buy .arrow {
  width: 16px;
  height: 2px;
  background-color: #517C1C;
  transition: 0.2s;
}
.button-buy .arrow:before {
  content: '';
  position: absolute;
  top: -5px;
  right: 5px;
  padding: 5px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  transition: 0.2s;
}
.button-buy:hover {
  color: #fff;
}
.button-buy:hover .arrow {
  background-color: #fff;
}
.button-buy:hover .arrow:before {
  right: 0;
}

/* == teiki-box ================ */

.teiki-box {
  margin-top: 40px;
  padding: 0;
  background-color: #fff;
  border: 2px solid #E9546B;
  box-sizing: border-box;
}

/*-- teiki-title --*/

.teiki-title h2 {
  padding: 0.1em 0.5em 0.2em;
  background-color: #E9546B;
  font-size: 32px;
  line-height: 1.4;
}
.teiki-title h2:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #E9546B transparent transparent transparent;
}

/*-- teiki-special --*/

.teiki-special {
  padding: 20px 40px;
}
.special-icon {
  width: 64px;
  height: 64px;
  background-color: #E9546B;
  border-radius: 50%;
  font-size: 18px;
}
.special-text {
  font-size: 24px;
  line-height: 1.4;
}
.special-text small {
  font-size: 16px;
}

/*-- 992px --*/

@media all and (max-width: 992px) {
  .product-desc {
    margin-top: 20px;
  }
  .icon-first,
  .icon-teiki {
    top: -10px;
    left: 10px;
  }
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  #lineup > .inner {
    padding: 20px 0 40px;
  }
  .catch {
    margin-bottom: 20px;
  }
  .catch-img img {
    width: 100%;
    max-width: 200px;
  }
  .catch-desc img {
    width: 100%;
    max-width: 120px;
  }
  .product-box {
    margin-bottom: 30px;
    padding: 10px 10px 30px;
  }
  .icon-first {
    width: 32vw;
  }
  .icon-teiki {
    width: 24vw;
  }
  .present-comment {
    padding: 1em 0.5em;
    font-size: 3.6vw;
  }
  .present-comment:after {
    border-right: 3vw solid #BA2636;
    border-top: 3vw solid transparent;
    border-bottom: 3vw solid transparent;
  }
  .bag-number {
    width: 18vw;
    height: 18vw;
  }
  .product-desc h3.name {
    font-size: 32px;
  }
  .product-desc .lead {
    font-size: 16px;
  }
  .product-desc .message .ribbon p {
    font-size: 16px;
  }
  .product-desc .equivalent {
    font-size: 18px;
  }
  .price .price-title {
    font-size: 24px;
  }
  .price .bag-number-text {
    font-size: 32px;
  }
  .price .bag-number-text-small {
    font-size: 24px;
  }
  .price b {
    font-size: 56px;
  }
  .price .unit {
    font-size: 32px;
  }
  .button-buy {
    font-size: 24px;
  }
  .teiki-title h2 {
    margin-top: -1px;
    font-size: 22px;
  }
  .teiki-special {
    padding: 10px;
  }
  .special-icon {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }
  .special-text {
    font-size: 18px;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  recipe
/////////////////////////////////////////////////////////////////////*/

#recipe {
  padding: 60px 0;
  margin-bottom: 60px;
}

/* == product-box ================ */

.recipe-box {
  padding: 20px;
  background-image: url(images_22/bg-paper.png), url(images_22/pattern-higaki.png);
  background-repeat: repeat;
  background-color: #F6EFE2;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.recipe-box > .bg-paper {
  padding: 40px;
}
.recipe-title {
  margin-top: 1.5em;
  font-size: 32px;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
}
.icon-recipe {
  top: 20px;
  left: 20px;
  width: 200px;
}
.img-recipe-ill {
  top: 40px;
  right: 40px;
}
.recipe-box .material,
.recipe-box .step {
  font-size: 18px;
}

/*-- material --*/

.recipe-box .material dl dt {
  float: left;
  font-weight: 500;
}
.recipe-box .material dl dt:after {
  content: "…";
}
.recipe-box .material dl dd {
  margin-bottom: 0.5em;
}
.recipe-box .material dl dd:last-child {
  margin-bottom: 0;
}

/*-- step --*/

.recipe-box .step ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
  list-style-type: decimal;
}
.recipe-box .step ol li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.recipe-box .step ol li:last-child {
  margin-bottom: 0;
}
.recipe-box .step p {
  font-size: 16px;
  line-height: 1.6;
}

/*-- 992px --*/

@media all and (max-width: 992px) {
  .recipe-box .material {
    margin-top: 20px;
  }
}

/*-- 576px --*/

@media all and (max-width: 576px) {
  #recipe {
    padding: 20px 0 40px;
    margin-bottom: 20px;
  }
  .recipe-box > .bg-paper {
    padding: 30px 10px;
  }
  .recipe-title {
    margin-top: 0.5em;
    font-size: 24px;
  }
  .icon-recipe {
    top: -10px;
    left: -10px;
    width: 160px;
  }
  .recipe-box .material,
  .recipe-box .step {
    font-size: 16px;
  }
  .recipe-box .step p {
    font-size: 14px;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  note
/////////////////////////////////////////////////////////////////////*/

/*-- 576px --*/

@media all and (max-width: 576px) {
  #note {
    font-size: 14px;
  }
}

/* == note-list ================ */

.note-list {
  border-bottom: 1px solid #e9e9e9;
}
.note-list > dt,
.note-list > dd {
  padding: 1rem;
  margin: 0;
  border-top: 1px solid #e9e9e9;
}

/*-- 992px以上 --*/

@media screen and (min-width: 992px) {
  .note-list {
    display: flex;
    flex-wrap: wrap;
  }
  .note-list > dt,
  .note-list > dd {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .note-list > dt {
    width: 20%;
    border-right: 1px solid #e9e9e9;
  }
  .note-list > dd {
    width: 80%;
  }
}

/*-- 991px未満 --*/

@media screen and (max-width: 991px) {
  .note-list > dt {
    padding-bottom: 0;
  }
  .note-list > dd {
    border-top: none;
  }
}

/* /////////////////////////////////////////////////////////////////////
//  Page top
/////////////////////////////////////////////////////////////////////*/

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  transform: translateY(100px);
  z-index: 2;
}
#pagetop a {
  width: 48px;
  height: 48px;
  background-color: #323232;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s;
  opacity: 0.3;
}
#pagetop.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#pagetop.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*-- 992px --*/

@media all and (max-width: 992px) {
  #pagetop {
    right: 10px;
    bottom: 10px;
  }
}
