@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap");
/* -- FOUNDATION -- */
/* reset CSS */
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* reset CSS ここまで */
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  position: relative;
}

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

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

main {
  display: block;
}

p {
  font-family: "Noto Sans JP", sans-serif;
}

/* -- LAYOUT -- */
.header {
  width: 100%;
}

.header_inner {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  width: 31.25%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header_logo_tfm {
  width: 125px;
  margin: 0 40px;
}

.header_logo_bo {
  width: 183px;
}

.header_menu {
  width: auto;
  margin-right: 4.6875%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header_menu li {
  margin-right: 20px;
}

.header_menu li a {
  font-size: 1.7rem;
  font-weight: bold;
  transition: 0.5s;
}

.header_menu li a::before {
  content: "- ";
  font-size: 2.6rem;
  color: #ce1514;
}

.header_menu li a:hover {
  background: linear-gradient(transparent 70%, #f8ef97 70%);
}

.header .hd_nav {
  display: none;
  width: 5.14286%;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .header .hd_nav {
    display: block;
    width: 5.14286%;
  }
  .header_inner {
    width: 100%;
    height: auto;
    padding: 22px 0;
  }
  .header_menu {
    display: none;
  }
  .header_logo {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .header_logo_tfm {
    width: 125px;
    margin: 0 40px;
  }
  .header_logo_bo {
    width: 183px;
  }
}

@media (max-width: 767px) {
  .header .hd_nav {
    display: block;
    width: 5.14286%;
  }
  .header_inner {
    width: 100%;
    height: auto;
    padding: 15px 0;
  }
  .header_menu {
    display: none;
  }
  .header_logo {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .header_logo_tfm {
    width: 33.33333%;
    margin: 0 20px;
  }
  .header_logo_bo {
    width: 48.8%;
  }
}

#nav_open {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: url(../../img/main_bg.png);
  left: 0;
  top: 0;
  z-index: 101;
}

#nav_toggle {
  background: #000;
  display: block;
  width: 72px;
  height: 72px;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 999;
}

#nav_toggle div {
  position: relative;
}

#nav_toggle span {
  display: block;
  height: 3px;
  background: #fff;
  position: absolute;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#nav_toggle span:nth-child(1) {
  top: 28px;
  left: 20px;
  width: 44.44444%;
}

#nav_toggle span:nth-child(2) {
  top: 36px;
  left: 20px;
  width: 44.44444%;
}

#nav_toggle span:nth-child(3) {
  top: 44px;
  left: 20px;
  width: 44.44444%;
}

@media (max-width: 767px) {
  #nav_toggle {
    width: 54px;
    height: 54px;
  }
  #nav_toggle span {
    height: 2px;
  }
  #nav_toggle span:nth-child(1) {
    top: 19px;
    left: 15px;
    width: 44.44444%;
  }
  #nav_toggle span:nth-child(2) {
    top: 25px;
    left: 15px;
    width: 44.44444%;
  }
  #nav_toggle span:nth-child(3) {
    top: 31px;
    left: 15px;
    width: 44.44444%;
  }
}

.open #nav_toggle span {
  background: #fff;
}

.open #nav_toggle span:nth-child(1) {
  top: 36px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav_toggle span:nth-child(3) {
  top: 36px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

@media (max-width: 767px) {
  .open #nav_toggle span:nth-child(1) {
    top: 25px;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 25px;
  }
}

#global-nav {
  padding-top: 90px;
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 110%;
}

#global-nav.active {
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

#global-nav li {
  font-weight: bold;
  padding-bottom: 40px;
}

#global-nav li a {
  color: #fff;
  text-decoration: none;
}

#global-nav li a::before {
  content: "- ";
  font-size: 2.6rem;
  color: #FFF;
}

#global-nav .menuLogo img {
  max-width: 65px;
  position: absolute;
  top: 0;
  left: 0;
}

.menu_sns {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 180px;
  display: flex;
  justify-content: center;
}

.menu_sns li {
  padding: 0 2%;
}

.menu_sns li img {
  width: 25px;
}

.bn_Area {
  text-align: center;
  padding: 0 10px;
}

.bn_Area li {
  padding: 0 10px 30px 10px;
}

.bn_Area li:nth-of-type(1) {
  max-width: 300px;
  margin: 0 auto;
  height: auto;
}

.bn_Area li:last-of-type {
  max-width: 640px;
  margin: 0 auto;
  height: auto;
}

.kv {
  position: relative;
  width: 100%;
  height: 650px;
  margin: 0 auto;
  padding: 0;
  background-image: url(../../img/main_mabo.png), url(../../img/main_hoshi.png), url(../../img/main_bg.png);
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: 107.55208% top, 40px 60px, left top;
  background-size: contain, auto, auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 17px solid #ffe531;
}

.kv_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.kv_logo {
  width: 476px;
  margin: 18px 80px 0 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.kv_bnr {
  width: 396px;
  margin: 16px auto 25px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .kv {
    height: auto;
    border-bottom: 9px solid #ffe531;
  }
  .kv_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .kv_logo {
    width: 52.08333%;
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .kv_bnr {
    width: 78.125%;
    margin: 16px auto 25px;
  }
}

@media (max-width: 767px) {
  .kv {
    height: auto;
    background-position: center top, 40px 60px, left top;
    background-size: cover, auto, auto;
    border-bottom: 9px solid #ffe531;
  }
  .kv_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .kv_logo {
    width: 80%;
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .kv_bnr {
    width: 90%;
    margin: 16px auto 25px;
  }
}

.about {
  border-top: 17px solid #00a16a;
  width: 100%;
  padding: 50px 0 0;
  margin: 0 auto;
  background: url(../../img/cont_bg1.jpg) repeat;
}

.about_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.about_ttl {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 3.4rem;
  margin: 0 auto 50px;
  padding-bottom: 10px;
  background: url(../../img/ttl_bottom.png) center bottom no-repeat;
}

.about_ttl::before {
  content: "";
  display: block;
  width: 30px;
  height: 100px;
  margin-right: 80px;
  background: url(../../img/ttl_left.png) no-repeat;
  background-size: 30px;
}

.about_ttl::after {
  content: "";
  display: block;
  width: 30px;
  height: 100px;
  margin-left: 80px;
  background: url(../../img/ttl_right.png) no-repeat;
  background-size: 30px;
}

.about_cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.about_cont_lead {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 40px;
}

.about_cont_btn {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.about_cont_btn_end {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.about_cont_btn_end p {
  padding-top: 10px;
  color: #ce1514;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .about_cont_btn_end p {
    font-size: 1.4rem;
  }
}

.about_cont_btn2 {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.about_cont_right {
  width: 28%;
}

.about_pic {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.about_pic img {
  border: 1px solid #ccc;
}

.about_btn {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .about {
    border-top: 9px solid #00a16a;
    width: 100%;
    padding: 25px 0 0;
  }
  .about_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .about_ttl {
    width: 100%;
    font-size: 2.4rem;
    margin: 0 auto 25px;
    padding-bottom: 5px;
    background-size: 75px;
  }
  .about_ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    margin-right: 20px;
    background: url(../../img/ttl_left.png) no-repeat;
    background-size: 15px;
  }
  .about_ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    margin-left: 20px;
    background: url(../../img/ttl_right.png) no-repeat;
    background-size: 15px;
  }
  .about_cont_lead {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .about_cont_btn {
    margin-bottom: 13px;
  }
  .about_cont_btn2 {
    margin-bottom: 25px;
  }
  .about_cont_left {
    width: 60%;
    margin-left: 6%;
  }
  .about_cont_right {
    width: 28%;
  }
}

@media (max-width: 767px) {
  .about {
    border-top: 9px solid #00a16a;
    width: 100%;
    padding: 25px 0 0;
  }
  .about_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .about_ttl {
    width: 100%;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    padding-bottom: 0px;
    background-size: 75px;
  }
  .about_ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 75px;
    margin-right: 10px;
    background: url(../../img/ttl_left.png) left center no-repeat;
    background-size: 15px;
  }
  .about_ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 75px;
    margin-left: 10px;
    background: url(../../img/ttl_right.png) right center no-repeat;
    background-size: 15px;
  }
  .about_cont {
    flex-direction: column;
    align-items: center;
  }
  .about_cont_lead {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .about_cont_btn {
    margin-bottom: 18px;
  }
  .about_cont_btn2 {
    width: 70%;
    margin: 0 auto 25px;
  }
  .about_cont_left {
    width: 100%;
    margin-left: 0;
  }
  .about_cont_right {
    width: 55%;
  }
}

.present {
  width: 100%;
  padding: 50px 0 70px;
  margin: 0 auto;
  background: url(../../img/cont_bg2.jpg) repeat;
}

.present_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.present_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3.4rem;
  margin: 0 auto 50px;
  padding-bottom: 10px;
  background: url(../../img/ttl_bottom.png) center bottom no-repeat;
}

.present_ttl::before {
  content: "";
  display: block;
  width: 30px;
  height: 100px;
  margin-right: 80px;
  background: url(../../img/ttl_left.png) no-repeat;
  background-size: 30px;
}

.present_ttl::after {
  content: "";
  display: block;
  width: 30px;
  height: 100px;
  margin-left: 80px;
  background: url(../../img/ttl_right.png) no-repeat;
  background-size: 30px;
}

.present_lead {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.present_lead span {
  font-size: 3rem;
  background: linear-gradient(transparent 70%, #f8ef97 70%);
}

.present_pic {
  text-align: center;
  margin-bottom: 50px;
}

.present_pic img {
  border: 1px solid #ccc;
}

.present_btn {
  display: flex;
  justify-content: center;
}

.present_btn_end {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.present_btn_end p {
  padding-top: 10px;
  color: #ce1514;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .present_btn_end p {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .present {
    padding: 25px 0 35px;
  }
  .present_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .present_ttl {
    width: 100%;
    font-size: 2.4rem;
    margin: 0 auto 25px;
    padding-bottom: 5px;
    background-size: 75px;
  }
  .present_ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    margin-right: 20px;
    background: url(../../img/ttl_left.png) no-repeat;
    background-size: 15px;
  }
  .present_ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    margin-left: 20px;
    background: url(../../img/ttl_right.png) no-repeat;
    background-size: 15px;
  }
  .present_lead {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
  }
  .present_lead span {
    font-size: 2.2rem;
    background: linear-gradient(transparent 70%, #f8ef97 70%);
  }
  .present_pic {
    margin-bottom: 25px;
  }
  .present_btn {
    width: 70%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .present {
    padding: 25px 0 35px;
  }
  .present_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .present_ttl {
    width: 100%;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    padding-bottom: 0px;
    background-size: 75px;
  }
  .present_ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 75px;
    margin-right: 10px;
    background: url(../../img/ttl_left.png) left center no-repeat;
    background-size: 15px;
  }
  .present_ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 75px;
    margin-left: 10px;
    background: url(../../img/ttl_right.png) right center no-repeat;
    background-size: 15px;
  }
  .present_lead {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
  }
  .present_lead span {
    font-size: 1.5rem;
    background: linear-gradient(transparent 70%, #f8ef97 70%);
  }
  .present_pic {
    margin-bottom: 25px;
  }
}

.secret {
  width: 100%;
  padding: 100px 0 70px;
  margin: 0 auto;
  background: url(../../img/cont_bg1.jpg) repeat;
}

.secret_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.secret_ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3.4rem;
  margin: 0 auto 50px;
  padding-bottom: 10px;
  background: url(../../img/ttl_bottom.png) center bottom no-repeat;
}

.secret_ttl img {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
}

.secret_ttl::before {
  content: "";
  display: block;
  width: 30px;
  height: 100px;
  margin-right: 80px;
  background: url(../../img/ttl_left.png) no-repeat;
  background-size: 30px;
}

.secret_ttl::after {
  content: "";
  display: block;
  width: 30px;
  height: 100px;
  margin-left: 80px;
  background: url(../../img/ttl_right.png) no-repeat;
  background-size: 30px;
}

.secret_cont {
  width: 100%;
  background: #fff;
  border: #00a16a 5px solid;
  border-radius: 15px;
  padding: 50px 50px 20px 50px;
  margin-bottom: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.secret_cont #mabo3 {
  width: 33%;
}

.secret_box {
  width: 30%;
  margin: 0 0 30px;
}

.secret_box_pic {
  width: 50%;
  min-height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.secret_box_pic img {
  flex-shrink: 0;
}

.secret_box_pkg {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.secret_box_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.secret_box_ttl img {
  max-width: 42px;
}

.secret_box_ttl p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00a16a;
  margin-left: 5%;
}

.secret_box_txt {
  font-size: 1.4rem;
  margin-top: 10px;
}

.secret_bnr {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.secret_bnr2 {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .secret {
    padding: 75px 0 35px;
  }
  .secret_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .secret_ttl {
    width: 100%;
    font-size: 2.4rem;
    margin: 0 auto 25px;
    padding-bottom: 5px;
    background-size: 75px;
  }
  .secret_ttl img {
    width: 120px;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .secret_ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    margin-right: 20px;
    background: url(../../img/ttl_left.png) no-repeat;
    background-size: 15px;
  }
  .secret_ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    margin-left: 20px;
    background: url(../../img/ttl_right.png) no-repeat;
    background-size: 15px;
  }
  .secret_cont {
    width: 100%;
    background: #fff;
    border: #00a16a 4px solid;
    border-radius: 15px;
    padding: 25px 25px 10px 25px;
    margin-bottom: 25px;
  }
  .secret_cont #mabo2 {
    width: 35%;
    margin: 0 auto 25px;
    order: 1;
  }
  .secret_cont #mabo3 {
    width: 48%;
  }
  .secret_box {
    width: 48%;
  }
  .secret_bnr {
    width: 70%;
    margin: 0 auto 25px;
  }
}

@media (max-width: 767px) {
  .secret {
    padding: 50px 0 35px;
  }
  .secret_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .secret_ttl {
    width: 100%;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    padding-bottom: 5px;
    background-size: 75px;
  }
  .secret_ttl img {
    width: 100px;
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .secret_ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 75px;
    margin-right: 10px;
    background: url(../../img/ttl_left.png) left center no-repeat;
    background-size: 15px;
  }
  .secret_ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 75px;
    margin-left: 10px;
    background: url(../../img/ttl_right.png) right center no-repeat;
    background-size: 15px;
  }
  .secret_cont {
    width: 100%;
    background: #fff;
    border: #00a16a 4px solid;
    border-radius: 15px;
    padding: 25px 25px 10px 25px;
    margin-bottom: 25px;
  }
  .secret_cont #mabo2 {
    width: 70%;
    margin: 0 auto 25px;
    order: 1;
  }
  .secret_cont #mabo1 {
    order: 2;
  }
  .secret_cont #mabo3 {
    order: 3;
    width: 100%;
  }
  .secret_cont #mabo4 {
    order: 4;
  }
  .secret_cont #mabo5 {
    order: 5;
  }
  .secret_cont #mabo6 {
    order: 6;
  }
  .secret_box {
    width: 100%;
  }
  .secret_box_ttl p {
    font-size: 1.6rem;
  }
  .secret_bnr {
    width: 90%;
    margin: 0 auto 25px;
  }
  .secret_bnr2 {
    width: 60%;
    margin: 0 auto;
  }
}

.recipe {
  width: 100%;
  padding: 50px 0;
  margin: 0 auto;
  background: url(../../img/cont_bg2.jpg) repeat;
}

.recipe_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.recipe_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3.4rem;
  margin: 0 auto 50px;
  padding-bottom: 10px;
  background: url(../../img/ttl_bottom.png) center bottom no-repeat;
}

.recipe_ttl::before {
  content: "";
  display: block;
  width: 30px;
  height: 100px;
  margin-right: 80px;
  background: url(../../img/ttl_left.png) no-repeat;
  background-size: 30px;
}

.recipe_ttl::after {
  content: "";
  display: block;
  width: 30px;
  height: 100px;
  margin-left: 80px;
  background: url(../../img/ttl_right.png) no-repeat;
  background-size: 30px;
}

.recipe_lead {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.recipe_cont {
  margin-bottom: 30px;
}

.recipe_cont_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 10px 0;
  box-sizing: border-box;
  background: #d7811a;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}

.recipe_cont_ttl::before {
  content: "";
  display: block;
  width: 50px;
  height: 20px;
  margin-right: 50px;
  background: url(../../img/recipe_ttl_left.png) no-repeat;
  background-size: 50px;
}

.recipe_cont_ttl::after {
  content: "";
  display: block;
  width: 50px;
  height: 20px;
  margin-left: 50px;
  background: url(../../img/recipe_ttl_right.png) no-repeat;
  background-size: 50px;
}

.recipe_box {
  width: 100%;
  background: #fff;
  border: #d7811a 5px solid;
  border-radius: 15px;
  padding: 50px;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.recipe_box_hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.recipe_box_pic {
  width: 44.44444%;
}

.recipe_box_summary {
  position: relative;
  width: 50%;
}

.recipe_box_summary_fukuda {
  position: absolute;
  top: -10px;
  right: 0;
  max-width: 100px;
}

.recipe_box_summary_ttl {
  width: 70%;
  margin-bottom: 20px;
  font-size: 3rem;
  color: #d7811a;
  padding-bottom: 10px;
  border-bottom: 1px dotted #d7811a;
}

.recipe_box_summary_ttl-u {
  width: 100%;
  margin-bottom: 20px;
  font-size: 3rem;
  color: #d7811a;
  padding-bottom: 10px;
  border-bottom: 1px dotted #d7811a;
}

.recipe_box_summary_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.recipe_box_summary_wrap-u {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.recipe_box_summary_mabo {
  width: 110px;
  margin-right: 20px;
}

.recipe_box_summary_txt {
  font-size: 1.8rem;
}

.recipe_box_cont {
  margin: 30px 0 0;
  box-sizing: border-box;
  text-align: center;
}

.recipe_box_disp {
  display: none;
  box-sizing: border-box;
  padding: 0 0 30px;
}

.recipe_box_disp_ttl {
  background: #d7811a;
  box-sizing: border-box;
  margin: 0 0 30px;
  padding: 10px 20px;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 10px;
  text-align: left;
}

.recipe_box_material {
  margin: 0 0 30px;
}

.recipe_box_material dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px dotted #d7811a;
}

.recipe_box_material dl dt {
  width: 50%;
  font-size: 1.8rem;
  text-align: left;
  box-sizing: border-box;
  padding: 10px 20px;
}

.recipe_box_material dl dd {
  width: 50%;
  color: #d7811a;
  font-size: 1.8rem;
  text-align: left;
  box-sizing: border-box;
  padding: 10px 20px;
}

.recipe_box_cook {
  margin: 0 0 60px;
}

.recipe_box_cook dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px dotted #d7811a;
}

.recipe_box_cook dl dt {
  width: 5%;
  font-size: 1.8rem;
  text-align: left;
  box-sizing: border-box;
  padding: 10px 20px;
}

.recipe_box_cook dl dd {
  width: 95%;
  font-size: 1.8rem;
  text-align: left;
  box-sizing: border-box;
  padding: 10px 20px;
}

.recipe_box_report {
  width: 52.22222%;
  border-radius: 15px;
  margin: 30px auto;
  padding: 10px 20px;
  background: url(../../img/cont_bg3.jpg);
}

.recipe_box_report_hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recipe_box_report_hd img {
  width: 17.02128%;
}

.recipe_box_report_hd p {
  width: 76.59574%;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: left;
}

.recipe_box_report_cont {
  text-align: center;
  padding: 20px 0;
}

.recipe_box .Toggle {
  color: #fff;
  background: #d7811a;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  padding: 5px 30px 10px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .recipe {
    padding: 25px 0;
  }
  .recipe_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .recipe_ttl {
    width: 100%;
    font-size: 2.4rem;
    margin: 0 auto 25px;
    padding-bottom: 5px;
    background-size: 75px;
  }
  .recipe_ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    margin-right: 20px;
    background: url(../../img/ttl_left.png) no-repeat;
    background-size: 15px;
  }
  .recipe_ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 50px;
    margin-left: 20px;
    background: url(../../img/ttl_right.png) no-repeat;
    background-size: 15px;
  }
  .recipe_lead {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .recipe_cont {
    margin-bottom: 15px;
  }
  .recipe_cont_ttl {
    margin-bottom: 15px;
    padding: 5px 0;
    font-size: 2rem;
  }
  .recipe_cont_ttl::before {
    content: "";
    width: 25px;
    height: 10px;
    margin-right: 25px;
    background-size: 25px;
  }
  .recipe_cont_ttl::after {
    content: "";
    width: 25px;
    height: 10px;
    margin-left: 25px;
    background-size: 25px;
  }
  .recipe_box {
    width: 100%;
    background: #fff;
    border: #d7811a 4px solid;
    border-radius: 15px;
    padding: 25px;
    box-sizing: border-box;
  }
  .recipe_box_hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .recipe_box_pic {
    width: 40%;
  }
  .recipe_box_summary {
    position: relative;
    width: 54.44444%;
  }
  .recipe_box_summary_fukuda {
    position: absolute;
    top: -10px;
    right: 0;
  }
  .recipe_box_summary_ttl {
    width: 70%;
    margin-bottom: 20px;
    font-size: 3rem;
    color: #d7811a;
    padding-bottom: 10px;
    border-bottom: 1px dotted #d7811a;
  }
  .recipe_box_summary_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .recipe_box_summary_mabo {
    width: 100px;
    margin-right: 20px;
  }
  .recipe_box_summary_txt {
    font-size: 1.3rem;
  }
  .recipe_box_cont {
    margin: 15px 0 0;
    box-sizing: border-box;
    text-align: center;
  }
  .recipe_box_disp {
    display: none;
    box-sizing: border-box;
    padding: 0 0 15px;
  }
  .recipe_box_disp_ttl {
    background: #d7811a;
    box-sizing: border-box;
    margin: 0 0 15px;
    padding: 5px 10px;
    font-size: 1.4rem;
    color: #fff;
    border-radius: 10px;
    text-align: left;
  }
  .recipe_box_material {
    margin: 0 0 15px;
  }
  .recipe_box_material dl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px dotted #d7811a;
  }
  .recipe_box_material dl dt {
    width: 50%;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 10px;
  }
  .recipe_box_material dl dd {
    width: 50%;
    color: #d7811a;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 10px;
  }
  .recipe_box_cook {
    margin: 0 0 30px;
  }
  .recipe_box_cook dl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px dotted #d7811a;
  }
  .recipe_box_cook dl dt {
    width: 5%;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 10px;
  }
  .recipe_box_cook dl dd {
    width: 95%;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 10px;
  }
  .recipe_box_report {
    width: 60%;
    border-radius: 15px;
    margin: 30px auto;
    padding: 10px 20px;
    background: url(../../img/cont_bg3.jpg);
  }
  .recipe_box_report_hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .recipe_box_report_hd img {
    width: 17.02128%;
  }
  .recipe_box_report_hd p {
    width: 76.59574%;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
  }
  .recipe_box_report_cont {
    text-align: center;
    padding: 20px 0;
  }
  .recipe_box .Toggle {
    color: #fff;
    background: #d7811a;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    padding: 5px 30px 10px;
  }
}

@media (max-width: 767px) {
  .recipe {
    padding: 25px 0;
  }
  .recipe_inner {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }
  .recipe_ttl {
    width: 100%;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    padding-bottom: 5px;
    background-size: 75px;
  }
  .recipe_ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 75px;
    margin-right: 10px;
    background: url(../../img/ttl_left.png) left center no-repeat;
    background-size: 15px;
  }
  .recipe_ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 75px;
    margin-left: 10px;
    background: url(../../img/ttl_right.png) right center no-repeat;
    background-size: 15px;
  }
  .recipe_lead {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  .recipe_cont {
    margin-bottom: 15px;
  }
  .recipe_cont_ttl {
    margin-bottom: 15px;
    text-align: center;
    padding: 5px 0;
    font-size: 1.8rem;
  }
  .recipe_cont_ttl::before {
    content: "";
    width: 25px;
    height: 10px;
    margin-right: 15px;
    background-size: 25px;
  }
  .recipe_cont_ttl::after {
    content: "";
    width: 25px;
    height: 10px;
    margin-left: 15px;
    background-size: 25px;
  }
  .recipe_box {
    width: 100%;
    background: #fff;
    border: #d7811a 4px solid;
    border-radius: 15px;
    padding: 25px;
    box-sizing: border-box;
  }
  .recipe_box_hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .recipe_box_pic {
    width: 100%;
    margin-bottom: 30px;
  }
  .recipe_box_summary {
    position: relative;
    width: 100%;
  }
  .recipe_box_summary_fukuda {
    width: 70px;
    position: absolute;
    top: -10px;
    right: 0;
  }
  .recipe_box_summary_ttl {
    width: 70%;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #d7811a;
    padding-bottom: 10px;
    border-bottom: 1px dotted #d7811a;
  }
  .recipe_box_summary_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .recipe_box_summary_mabo {
    width: 90px;
  }
  .recipe_box_summary_txt {
    width: 68%;
    font-size: 1.3rem;
  }
  .recipe_box_summary_txt br {
    display: none;
  }
  .recipe_box_cont {
    margin: 15px 0 0;
    box-sizing: border-box;
    text-align: center;
  }
  .recipe_box_disp {
    display: none;
    box-sizing: border-box;
    padding: 0 0 15px;
  }
  .recipe_box_disp_ttl {
    background: #d7811a;
    box-sizing: border-box;
    margin: 0 0 15px;
    padding: 5px 10px;
    font-size: 1.4rem;
    color: #fff;
    border-radius: 10px;
    text-align: left;
  }
  .recipe_box_material {
    margin: 0 0 15px;
  }
  .recipe_box_material dl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px dotted #d7811a;
  }
  .recipe_box_material dl dt {
    width: 60%;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 10px;
  }
  .recipe_box_material dl dd {
    width: 40%;
    color: #d7811a;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 10px;
  }
  .recipe_box_cook {
    margin: 0 0 30px;
  }
  .recipe_box_cook dl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px dotted #d7811a;
  }
  .recipe_box_cook dl dt {
    width: 5%;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 10px;
  }
  .recipe_box_cook dl dd {
    width: 95%;
    font-size: 1.4rem;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 10px;
  }
  .recipe_box_report {
    width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
    margin: 30px auto;
    padding: 10px 10px;
    background: url(../../img/cont_bg3.jpg);
  }
  .recipe_box_report_hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .recipe_box_report_hd img {
    width: 17.02128%;
  }
  .recipe_box_report_hd p {
    width: 76.59574%;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
  }
  .recipe_box_report_cont {
    text-align: center;
    padding: 20px 0;
  }
  .recipe_box .Toggle {
    color: #fff;
    background: #d7811a;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    padding: 5px 30px 10px;
  }
}

.footer {
  margin-top: 0px;
  padding: 30px 0;
  background: url(../../img/main_bg.png) repeat;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .footer {
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .footer {
    margin-bottom: 0px;
    padding: 15px 0;
  }
}

.footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1000px;
  margin: 0 auto 39px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .footer_sns {
    width: 100%;
    margin: 0 auto 20px;
  }
}

@media (max-width: 767px) {
  .footer_sns {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.footer_sns > a {
  display: block;
  width: 3%;
  margin: 0 4px;
}

@media (max-width: 767px) {
  .footer_sns > a {
    width: 8.46354%;
  }
}

.footer_sns_txt {
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer .copyright_txt {
  color: #fff;
  letter-spacing: 0.05rem;
  font-size: 1.1rem;
  text-align: center;
  font-weight: normal;
}

@media (max-width: 767px) {
  .footer .copyright_txt {
    font-size: 0.9rem;
  }
}

.pagetop {
  position: fixed;
  display: flex;
  align-items: center;
  padding: 20px 15px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  text-align: center;
  background: black;
  border-radius: 50%;
  z-index: 100;
}

.pagetop > img {
  width: 16px;
  min-height: 0;
}

/* -- UTILITY -- */
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pcDetail {
  display: block;
}

.spDetail {
  display: none;
}

.pc {
  display: block;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

@media (max-width: 980px) {
  .spDetail {
    display: block;
  }
  .pcDetail {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .pcDetail {
    display: none;
  }
  .tb {
    display: block;
  }
  .sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .pcDetail {
    display: none;
  }
  .spDetail {
    display: block;
  }
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block !important;
  }
}
