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

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

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

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

del {
  text-decoration: line-through;
}

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

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html, body {
  width: 100%;
  height: 100%;
}

ul, li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/* ==========================================================================
  Animation
  ========================================================================== */
.anim-fadeout {
  animation: fadeIn 0.2s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}
.anim-fadein {
  opacity: 0;
}

.anim-fadein.is-show {
  animation: fadeIn 0.8s 0.2s both ease-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-l {
  opacity: 0;
}

.anim-slidein-l.is-show {
  animation: slideInL 0.8s 0.2s both ease-out;
}

@keyframes slideInL {
  0% {
    transform: translate(-10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.anim-slidein-r {
  opacity: 0;
}

.anim-slidein-r.is-show {
  animation: slideInR 0.8s 0.2s both ease-out;
}

@keyframes slideInR {
  0% {
    transform: translate(10vw, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #fff;
}

body {
  color: #000;
  font-size: 1.6em;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

img {
  width: 100%;
  height: auto;
}

::selection {
  background: #004ea2;
  color: #fff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
}

@media screen and (min-width: 769px) {
  a:hover, a img {
    transition: 0.2s linear;
  }
}
h1, h2, h3, h4, h5, h6, strong {
  font-weight: bold;
}

/* ==========================================================================
  Parts
  ========================================================================== */
.nolink {
  cursor: default;
}
.nolink:hover {
  opacity: 1 !important;
}

/* ==========================================================================
Layout
========================================================================== */
.l-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  margin: 0 auto;
  background: url(../images/bg-pink.png) right top repeat-y #c7e8fa;
  background-size: 51% auto;
}

.l-section {
  position: relative;
}

.l-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 90%;
    min-width: inherit;
    margin: 0 auto;
  }
}

/* ==========================================================================
COMMON
========================================================================== */
a.btn {
  position: relative;
  display: block;
  width: 280px;
  height: 60px;
  margin: 0;
  text-align: center;
  line-height: 60px;
  padding: 18px 15px;
  text-align: center;
  background: #004ea2;
  border-radius: 8px;
  transition: all 0.25s ease-out;
}
a.btn img {
  display: block;
  width: 122px;
  height: 23px;
  margin: auto;
}

a:hover.btn {
  text-decoration: none;
  background: #f6639b;
}

@media screen and (max-width: 768px) {
  a.btn {
    width: 200px;
    height: 40px;
    margin: 0 auto;
    text-align: center;
    line-height: 40px;
    padding: 12px 15px;
    border-radius: 6px;
  }
  a.btn img {
    width: 81.3333333333px;
    height: 15.3333333333px;
  }
}
/* ==========================================================================
Header / Footer
========================================================================== */
.l-header .logo {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  margin: auto;
  z-index: 1;
  width: 20vw;
}

@media screen and (max-width: 768px) {
  .l-header .logo {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: -2.2vw;
    margin: auto;
    width: 35vw;
  }
}
.l-footer {
  position: relative;
  text-align: center;
  padding: 0 0 30px;
  background: #fff;
}
.l-footer .l-inner {
  display: flex;
  justify-content: center;
  color: #000;
  max-width: 1100px;
  margin: 0 auto;
}
.l-footer .copyright {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 0 0 15px;
  }
  .l-footer .l-inner {
    justify-content: center;
    flex-wrap: wrap;
    max-width: inherit;
    margin: 0 auto;
  }
  .l-footer .copyright {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0;
  }
}
/* ==========================================================================
Main
========================================================================== */
.l-main {
  padding: 60px 0 0;
}

@media screen and (max-width: 768px) {
  .l-main {
    padding: 80px 0 0;
  }
}
/* ---------------
KV
------------------ */
.l-kv {
  position: relative;
}
.l-kv .kv-inner {
  position: relative;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}
.l-kv h1 {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 782px;
  margin: 0 auto 80px;
}
.l-kv .pd-kv {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.l-kv .pd-kv-creamcheese, .l-kv .pd-kv-mascarpone {
  width: 45%;
}
.l-kv .pd-kv-creamcheese .pd-copy, .l-kv .pd-kv-mascarpone .pd-copy {
  width: 80%;
  margin: 0 auto 15px;
}
.l-kv h2 {
  width: 60%;
  max-width: 762px;
  margin: 0 auto 80px;
}

@media screen and (max-width: 768px) {
  .l-kv .kv-inner {
    max-width: inherit;
  }
  .l-kv h1 {
    width: 75%;
    max-width: 521.3333333333px;
    margin: 0 auto 40px;
  }
  .l-kv .pd-kv {
    width: 95%;
  }
  .l-kv .pd-kv-creamcheese .pd-copy, .l-kv .pd-kv-mascarpone .pd-copy {
    width: 100%;
    margin: 0 auto 10px;
  }
  .l-kv h2 {
    width: 80%;
    max-width: 508px;
    margin: 10px auto 50px;
  }
}
/* ---------------
PD
------------------ */
.l-pd {
  position: relative;
}
.l-pd .pd-det {
  position: relative;
  padding: 40px 0;
}
.l-pd .pd-det::after {
  content: "";
  display: block;
  clear: both;
}
.l-pd .pd-det .pd-img {
  width: 320px;
}
.l-pd .pd-det .pd-txt h3 {
  margin-bottom: 15px;
}
.l-pd .pd-det .pd-txt p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.l-pd .pd-det-creamcheese {
  margin-bottom: 80px;
}
.l-pd .pd-det-creamcheese .pd-img {
  margin-right: 30px;
  float: left;
}
.l-pd .pd-det-creamcheese .pd-txt {
  width: 460px;
  float: left;
}
.l-pd .pd-det-mascarpone .pd-img {
  margin-left: 30px;
  float: right;
}
.l-pd .pd-det-mascarpone .pd-txt {
  width: 460px;
  float: right;
  text-align: right;
}
.l-pd .pd-det-mascarpone .pd-txt a.btn {
  margin: 0 0 0 auto;
}
.l-pd .pd-det .pd-recipe {
  position: absolute;
  width: 30vw;
  height: 26.4vw;
  max-width: 520px;
  max-height: 458.5px;
}
.l-pd .pd-det .pd-recipe p {
  position: relative;
  width: 30vw;
  height: 26.4vw;
  max-width: 520px;
  max-height: 458.5px;
}
.l-pd .pd-det .pd-recipe p span {
  position: absolute;
  z-index: 2;
}
.l-pd .pd-det .honeytoast {
  right: -11vw;
  top: -1vw;
  background: url(../images/honeytoast-img.png) no-repeat;
  background-size: 100% auto;
}
.l-pd .pd-det .honeytoast p span {
  left: -5vw;
  bottom: 0;
  width: 19.5vw;
}
.l-pd .pd-det .tiramisu {
  left: -12vw;
  top: -3vw;
  background: url(../images/tiramisu-img.png) no-repeat;
  background-size: 100% auto;
}
.l-pd .pd-det .tiramisu p span {
  right: -5vw;
  bottom: 0;
  width: 16vw;
}

@media screen and (max-width: 768px) {
  .l-pd .pd-det {
    padding: 0;
  }
  .l-pd .pd-det .pd-img {
    width: 65%;
    max-width: 250px;
    margin: 0 auto 15px;
  }
  .l-pd .pd-det .pd-txt h3 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 15px;
  }
  .l-pd .pd-det .pd-txt p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .l-pd .pd-det-creamcheese {
    margin-bottom: 80px;
  }
  .l-pd .pd-det-creamcheese .pd-img {
    margin-right: auto;
    float: none;
  }
  .l-pd .pd-det-creamcheese .pd-txt {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    float: none;
    text-align: center;
  }
  .l-pd .pd-det-mascarpone .pd-img {
    margin-left: auto;
    float: none;
  }
  .l-pd .pd-det-mascarpone .pd-txt {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    float: none;
    text-align: center;
  }
  .l-pd .pd-det-mascarpone .pd-txt a.btn {
    margin: 0 auto;
  }
  .l-pd .pd-det .pd-recipe {
    position: relative;
    width: 260px;
    height: 229.25px;
  }
  .l-pd .pd-det .pd-recipe p {
    width: 260px;
    height: 229.25px;
  }
  .l-pd .pd-det .pd-recipe p span {
    position: absolute;
    z-index: 2;
  }
  .l-pd .pd-det .honeytoast {
    right: 0;
    left: auto;
    top: 0;
    margin: 0 0 0 auto;
  }
  .l-pd .pd-det .honeytoast p span {
    left: -22vw;
    bottom: -6vw;
    width: 280px;
  }
  .l-pd .pd-det .tiramisu {
    left: 0;
    right: 0;
    top: 0;
  }
  .l-pd .pd-det .tiramisu p span {
    right: -25vw;
    bottom: -4vw;
    width: 210px;
  }
}
/* ---------------
RECIPE
------------------ */
.recipe-ttl {
  position: relative;
  width: 100%;
  height: 200px;
  background: url(../images/curve-wt.svg) center 10px no-repeat, url(../images/curve-bl.svg) center top no-repeat;
  background-size: 100% auto, 100% auto;
  text-align: center;
  padding-top: 100px;
  margin-top: 100px;
}
.recipe-ttl h2 {
  position: absolute;
  top: -50px;
  right: 0;
  bottom: auto;
  left: 0;
  margin: auto;
  max-width: 301px;
  margin: 0 auto 30px;
}
.recipe-ttl h3 {
  max-width: 816.5px;
  margin: 0 auto 30px;
}

.recipe-inner {
  background: #fff;
  width: 100%;
  padding: 30px 0;
  background: url(../images/bg-line-l.png) top left repeat-y, url(../images/bg-line-r.png) top right repeat-y #fff;
  background-size: 30px auto, 30px auto;
}

.recipe-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.recipe-wrap .recipe-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 10px;
  padding: 30px;
}
.recipe-wrap .recipe-box h5 {
  position: absolute;
  width: 184.4px;
  height: 98px;
  z-index: 3;
}
.recipe-wrap .recipe-box .recipe-img {
  width: 42%;
}
.recipe-wrap .recipe-box:nth-child(2n-1) h5 {
  left: -30px;
  top: -20px;
}
.recipe-wrap .recipe-box:nth-child(2n) h5 {
  right: -30px;
  top: -20px;
}
.recipe-wrap .recipe-box-01 {
  background: url(../images/recipe-01-base.png) center center no-repeat;
  background-size: contain;
}
.recipe-wrap .recipe-box-02 {
  background: url(../images/recipe-02-base.png) center center no-repeat;
  background-size: contain;
}
.recipe-wrap .recipe-box-03 {
  background: url(../images/recipe-03-base.png) center center no-repeat;
  background-size: contain;
}
.recipe-wrap .recipe-box-04 {
  background: url(../images/recipe-04-base.png) center center no-repeat;
  background-size: contain;
}
.recipe-wrap .recipe-box-05 {
  background: url(../images/recipe-05-base.png) center center no-repeat;
  background-size: contain;
}
.recipe-wrap .attention {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .recipe-ttl {
    height: 100px;
    background: url(../images/curve-wt.svg) center 6px no-repeat, url(../images/curve-bl.svg) center top no-repeat;
    background-size: 100% auto, 100% auto;
    padding-top: 60px;
    margin-top: 100px;
  }
  .recipe-ttl h2 {
    position: absolute;
    top: -30px;
    right: 0;
    bottom: auto;
    left: 0;
    margin: auto;
    max-width: 150.5px;
    margin: 0 auto;
  }
  .recipe-ttl h3 {
    width: 90%;
    max-width: 408.25px;
    margin: 0 auto 30px;
  }

  .recipe-inner {
    background: #fff;
    width: 100%;
    padding: 30px 0;
    background: url(../images/bg-line-l.png) top left repeat-y, url(../images/bg-line-r.png) top right repeat-y #fff;
    background-size: 15px auto, 15px auto;
  }

  .recipe-wrap {
    width: 95%;
    max-width: inherit;
    margin: 0 auto;
  }
  .recipe-wrap .recipe-box {
    max-width: inherit;
    margin: 0 auto 10px;
    padding: 3vw;
  }
  .recipe-wrap .recipe-box h5 {
    width: 115.25px;
    height: 61.25px;
  }
  .recipe-wrap .recipe-box .recipe-img {
    width: 44%;
  }
  .recipe-wrap .recipe-box:nth-child(2n-1) h5 {
    left: -3vw;
    top: -4.4vw;
  }
  .recipe-wrap .recipe-box:nth-child(2n) h5 {
    right: -3vw;
    top: -4.4vw;
  }
  .recipe-wrap .attention {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 15px;
  }
}
/* ---------------
Banner
------------------ */
.l-bnr {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}
.l-bnr a.bnr {
  display: block;
  width: 50%;
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-bnr {
    padding: 20px 0;
  }
  .l-bnr a.bnr {
    width: 80%;
    max-width: 300px;
  }
}
/* ---------------
TWITER CP
------------------ */
.l-twcp {
  padding: 60px;
}
.l-twcp .l-inner {
  padding: 60px 50px 30px;
  border: 3px solid #004ea2;
  border-radius: 20px;
  background: #fff;
}
.l-twcp h3 {
  position: absolute;
  z-index: 2;
  width: 80%;
  left: 0;
  right: 0;
  top: -30px;
  bottom: auto;
  margin: auto auto;
}
.l-twcp .twcp-lead {
  margin: 40px 0;
  text-align: center;
}
.l-twcp .twcp-lead img {
  width: 100%;
  height: auto;
}
.l-twcp .twcp-oubo {
  text-align: center;
}
.l-twcp .twcp-oubo img {
  twidth: 100%;
  height: auto;
}
.l-twcp .twcp-twitter-btn a {
  width: 50%;
  margin: 40px auto;
  display: block;
}
.l-twcp .twcp-twitter-btn a img {
  width: 100%;
  height: auto;
  text-align: center;
}
.l-twcp dl dt {
  padding: 20px 0;
  font-size: 2.4rem;
  text-align: center;
  color: #004ea2;
  background: #eee;
}
.l-twcp dl dt span {
  font-weight: bold;
}
.l-twcp dd {
  padding-top: 30px;
  line-height: 1.4;
}
.l-twcp dd section {
  margin-bottom: 30px;
}
.l-twcp dd section:last-child {
  margin-bottom: 0;
}
.l-twcp dd h4 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #004ea2;
  border-left: 6px solid #004ea2;
  padding-left: 14px;
}
.l-twcp dd ul li {
  margin-bottom: 0.75em;
  margin-left: 1.2em;
  list-style-type: disc;
  list-style-position: outside;
}
.l-twcp dd ul li > ul {
  margin-top: 1.5em;
}
.l-twcp dd ul li > ul > li {
  list-style-type: circle;
}
.l-twcp dd p a {
  text-decoration: underline;
}
.l-twcp dd p a:hover {
  text-decoration: none;
  color: #004ea2;
}
.l-twcp dd p span.number {
  font-weight: bold;
  font-size: 1.8rem;
}

dl.acrd .acrd-btn {
  position: relative;
  padding: 20px 25px;
  cursor: pointer;
}
dl.acrd .acrd-btn::before, dl.acrd .acrd-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 30px;
  height: 4px;
  margin: auto 0;
  background: #000;
  transition: 0.2s linear;
}
dl.acrd .acrd-btn::before {
  transform: rotate(90deg);
}
dl.acrd .acrd-btn.is-active::before {
  transform: rotate(180deg);
}
dl.acrd .acrd-panel {
  background: #fff;
  padding: 30px 40px;
}

.notes {
  padding: 20px 15px;
}

@media screen and (max-width: 768px) {
  dl.acrd {
    margin-bottom: 15px;
  }
  dl.acrd .acrd-btn {
    padding: 15px 15px;
    cursor: pointer;
  }
  dl.acrd .acrd-btn::before, dl.acrd .acrd-btn::after {
    right: 20px;
    width: 20px;
    height: 3px;
  }
  dl.acrd .acrd-panel {
    background: #fff;
    padding: 20px 30px;
  }
.l-twcp {
  padding: 0 0 60px;
}
.l-twcp .l-inner {
    padding: 5%;
    border: 3px solid colors(blue);
    border-radius: 20px;
    background: #fff;
  }
.l-twcp .l-inner h3 {
    position: absolute;
    z-index: 2;
    width: 90%;
    left: 0;
    right: 0;
    top: -25px;
    bottom: auto;
    margin: auto auto;
  }
.l-twcp .twcp-lead {
		margin: 40px 0 20px;
		text-align: center;
	}
.l-twcp .twcp-lead img {
			width: 100%;
			height: auto;
}
.l-twcp .twcp-oubo {
		text-align: center;
	}
.l-twcp .twcp-oubo img {
	width: 100%;
	height: auto;
}
.l-twcp .twcp-twitter-btn a {
	width: 100%;
	margin: 20px auto;
	display: block;
}
.l-twcp .twcp-twitter-btn a img {
	width: 100%;
	height: auto;
	text-align: center;
}
}

/*# sourceMappingURL=style.css.map */
