@charset "UTF-8";
/*
---------------------------------------------
共通設定
---------------------------------------------
*/
* {
  box-sizing: border-box;
}

body {
  color: #393939;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  margin: 0;
  font-size: 16px;
}

a {
  text-decoration: none;
  transition-duration: 0.5s;
}

a:hover {
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

ol,
ul,
li {
  list-style: none;
}

main,
.main {
  display: block;
}

/*
---------------------------------------------
helper
---------------------------------------------
*/
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex.sns {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .flex.sns {
    width: auto;
  }
}

.flex-nowrap {
  display: flex;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

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

.flex-start {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.flex-reverse {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

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

.flex-stretch {
  display: flex;
  justify-content: stretch;
}

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

.flex-col-center {
  display: flex;
  align-items: center;
}

.flex-col-top {
  display: flex;
  align-items: flex-start;
}

.flex-col-end {
  display: flex;
  align-items: flex-end;
}

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

.text-right {
  text-align: right;
}

.font-normal {
  font-weight: normal;
}

.font-bold {
  font-weight: bold;
}

.pc {
  display: block;
}

.sp,
br.sp,
img.sp,
span.sp {
  display: none;
}

br.pc,
img.pc,
span.pc {
  display: inline;
}

.en {
  font-family: "EB Garamond", serif;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .sp-block {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp,
  img.sp,
  span.sp {
    display: inline;
  }
  br.pc,
  img.pc,
  span.pc {
    display: none;
  }
}

/*
---------------------------------------------
header
---------------------------------------------
*/
/* form */
.login {
  border-left: dotted 1px #999;
  padding-top: 8px;
  padding-left: 45px;
  margin-left: 40px;
}

.login .list li:first-child {
  margin-right: 45px;
}

.login .list li a {
  color: #333;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.login .list li:first-child .img {
  padding-top: 4px;
}

.login .list li a .img {
  height: 43px;
}

.login .list li a p {
  margin-top: 14px;
}

#login-area {
  height: 0px;
}

.form {
  border: solid 2px #fb8700;
  padding: 2px 5px;
  margin-bottom: 23px;
  white-space: nowrap;
}

.form input[type="text"] {
  border: none;
  width: 91%;
}

.form input:focus {
  outline: none;
}

.form button {
  background: none;
  border: none;
  cursor: pointer;
  color: #fb8700;
}

@media screen and (max-width: 767px) {
  .form button img {
    vertical-align: middle;
  }
}

/* header */
.header {
  padding: 11px 0;
}

.header .logo {
  margin-top: 10px;
}

.header .logo a img {
  width: 235px;
}

.header .nav-wrap {
  margin-left: auto;
  padding-top: 8px;
  padding-bottom: 16px;
}

.header .nav-wrap .form {
  border: solid 2px #fb8700;
  padding: 2px 5px;
  margin-left: auto;
  margin-bottom: 23px;
  width: 275px;
}

.header .nav-wrap .form button {
  line-height: 1;
}

.header .nav-wrap .nav .list li {
  position: relative;
  padding-left: 20px;
}

.header .nav-wrap .nav .list li:not(:last-child) {
  margin-right: 20px;
}

.header .nav-wrap .nav .list li a {
  color: #333;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .header .nav-wrap .nav .list li a {
    font-size: 16px;
  }
}

.header .nav-wrap .nav .list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
}

.header .nav-wrap .nav .list .nav01::before {
  background: url(../images/ico_nav01.svg) no-repeat center/cover;
}

.header .nav-wrap .nav .list .nav02::before {
  background: url(../images/ico_nav02.svg) no-repeat center/cover;
}

.header .nav-wrap .nav .list .nav03::before {
  background: url(../images/ico_nav03.svg) no-repeat center/cover;
}

.header .nav-wrap .nav .list .nav04::before {
  background: url(../images/ico_nav04.svg) no-repeat center/cover;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 8px 0;
  }
  .header .logo {
    margin-top: 0;
    width: 143px;
  }
  .header .logo a img {
    width: 100%;
  }
  .header .nav-wrap,
  .header .login,
  .header .form {
    display: none;
  }
  .header .nav-wrap .nav .list .nav04::before,
  .header .nav-wrap .nav .list .nav03::before,
  .header .nav-wrap .nav .list .nav02::before,
  .header .nav-wrap .nav .list .nav01::before {
    background: none;
  }
}

/*
---------------------------------------------
hamburger
---------------------------------------------
*/
.menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
  cursor: pointer;
}

.menu-trigger {
  display: inline-block;
  transition: all 0.4s !important;
  box-sizing: border-box;
  position: relative;
  display: block;
  background: #fb8700;
  width: 60px;
  height: 60px;
}

.menu-trigger span {
  display: inline-block;
  transition: all 0.4s !important;
  box-sizing: border-box;
  position: absolute;
  left: 15px;
  width: 30px;
  height: 2px;
  background-color: white;
}

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

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

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

.menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.4s;
}

.menu-trigger.active {
  height: 60px;
}

.menu-trigger.active span {
  background-color: white;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: scale(0) translateY(20px);
  background-color: white;
}

.menu-trigger.active span:nth-of-type(2) {
  transform: rotate(-45deg);
  background-color: white;
}

.menu-trigger.active span:nth-of-type(2)::after {
  transform: rotate(90deg);
  background-color: white;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: scale(0) translateY(-20px);
  background-color: white;
}

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

/*
---------------------------------------------
drawer
---------------------------------------------
*/
.drawer-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background: rgba(173, 130, 79, 0.97);
  overflow-y: scroll;
  z-index: 11;
}

.drawer-sp .contents-inner {
  padding: 0;
}

.drawer-sp .logo {
  background: white;
  padding: 7px 10px 7px;
  width: 100%;
}

.drawer-sp .logo a {
  display: block;
  width: 143px;
}

.drawer-sp .logo a img {
  width: 100%;
}

.drawer-sp .nav-wrap {
  display: block;
  margin-left: 0;
  width: 100%;
}

.drawer-sp .nav > ul {
  display: block;
}

.drawer-sp .nav-wrap .nav .list li {
  position: relative;
  border-bottom: 1px solid #73542f;
  padding: 23px 0 23px 55px;
  width: 100%;
}

.drawer-sp .nav li::before,
.drawer-sp .nav li::after {
  position: absolute;
  content: "";
}

.drawer-sp .nav-wrap .nav .list li::before {
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white !important;
}

.drawer-sp .nav li::after {
  top: 28px;
  left: 36px;
  box-sizing: border-box;
  width: 8px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 6px solid #ad824f;
}

.drawer-sp .nav-wrap .nav .list li a {
  color: white;
}

.drawer-sp .login {
  display: block;
  border-left: none;
  padding: 0 16px 0;
  margin: 36px 0 17px 0;
  width: 100%;
}

.drawer-sp .login .list {
  flex-direction: row-reverse;
}

.drawer-sp .login .list li {
  width: 49%;
}

.drawer-sp .login .list li:first-child {
  margin-right: 0;
}

.drawer-sp .login .list li:last-child {
  margin-right: 2%;
}

.header .drawer-sp .login .list a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #e23e34;
  background: white;
  border-radius: 30px;
  color: #e23e34;
  font-size: 13px;
  padding: 5px;
  width: 100%;
  height: 44px;
}

.header .drawer-sp .login .list .entry {
  border: solid 1px #3a9fbf;
  color: #3a9fbf;
}

.header .drawer-sp .login .list li a .img {
  height: auto;
  margin-right: 5px;
}

.header .drawer-sp .login .list li:first-child .img {
  padding-top: 0;
}

.header .drawer-sp .login .list a img {
  width: 25px;
}

.header .drawer-sp .login .list .entry img {
  width: 17px;
}

.header .drawer-sp .login .list a p {
  margin-top: 0;
}

.header .drawer-sp .form.sp {
  display: block;
  background: white;
  margin: auto;
  padding: 12px;
  width: calc(100% - 32px);
}

/*
---------------------------------------------
footer
---------------------------------------------
*/
/* top */
.footer {
  position: relative;
  padding-top: 47px;
  padding-bottom: 35px;
  background: #ad824f;
}

.footer::before {
  position: absolute;
  content: "";
  background: url(../images/bg_footer.png) repeat-x top;
  top: -20px;
  width: 100%;
  height: 20px;
}

.footer .top {
  margin: 0 auto 40px;
  max-width: 1100px;
}

.footer .top .list:not(:last-child) {
  margin-right: 40px;
}

.footer .top .list a {
  color: white;
  display: inline-block;
}

.footer .top .list li {
  position: relative;
  padding: 0;
  text-decoration: none;
}

.footer .top .list li > a {
  padding-left: 24px;
}

.footer .top .list .border > a::before,
.footer .top .list .border > a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.footer .top .list .circle > a {
  position: relative;
  display: inline-block;
  margin-bottom: 21px;
}

.footer .top .list .circle > a::before,
.footer .top .list .circle > a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.footer .top .list .circle > a::before {
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
}

.footer .top .list .circle > a::after {
  top: 5px;
  left: 6px;
  box-sizing: border-box;
  width: 8px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 6px solid #ad824f;
}

.footer .top .list .border > a {
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.2;
  padding-left: 24px;
}

.footer .top .list .border > a::before {
  left: 0;
  top: 8px;
  width: 16px;
  height: 3px;
  background: white;
}

.footer .bottom {
  margin: auto;
  max-width: 980px;
}

.footer .bottom .inner {
  border: dotted 1px white;
  border-width: 1px 0;
  padding: 15px 20px;
}

.footer .bottom .inner .sns li {
  margin-right: 10px;
}

.footer .bottom .inner .nav {
  margin-left: auto;
}

.footer .bottom .inner .nav li:not(:last-child) {
  padding-right: 20px;
  margin-right: 20px;
  border-right: solid 1px white;
}

.footer .bottom .inner .nav li a {
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.footer .bottom .copyright {
  color: white;
  display: block;
  font-size: 12px;
  text-align: right;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 20px;
    padding-bottom: 25px;
  }
  .footer .top {
    margin: 0 auto;
  }
  .footer .top .list:not(:last-child) {
    margin-right: 0;
  }
  .footer .top .list li {
    border-bottom: 1px solid #73542f;
    margin-bottom: 25px;
    text-align: center;
  }
}

/* bottom */
.pagetop {
  position: fixed;
  right: 17px;
  bottom: 31px;
}

@media screen and (max-width: 767px) {
  /* top */
  .footer .top .list .list-inner {
    display: none;
  }
  .footer .bottom .inner {
    border: dotted 1px white;
    border-width: 0 0 1px;
    padding: 15px 0 0;
  }
  .footer .bottom .inner .sns {
    justify-content: center;
    margin-bottom: 36px;
    padding-top: 0;
  }
  .footer .bottom .inner .sns li {
    margin-right: 0;
    width: 47px;
    height: 47px;
  }
  .footer .bottom .inner .sns li:not(:last-child) {
    margin-right: 22px;
  }
  .footer .bottom .inner .sns li img {
    width: 100%;
  }
  .footer .bottom .inner .nav {
    border-top: dotted 1px white;
    padding-top: 20px;
  }
  .footer .bottom .inner .nav li {
    margin-bottom: 20px;
    text-align: center;
  }
  .footer .bottom .inner .nav li:not(:last-child) {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .footer .bottom .copyright {
    line-height: 1.4;
    text-align: center;
  }
  /* bottom */
  .pagetop {
    width: 82px;
  }
  .pagetop img {
    width: 100%;
  }
}

/*
---------------------------------------------
contents-inner
---------------------------------------------
*/
.wrapper {
  min-width: 1100px;
}

.contents-inner {
  max-width: 1100px;
  margin: auto;
}

@media screen and (max-width: 1130px) {
  .contents-inner {
    min-width: 1100px;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    min-width: 100%;
  }
  .contents-inner {
    width: 100%;
    min-width: 100%;
    padding: 0 10px;
  }
  .contents-inner.is-sp {
    padding: 0;
  }
}

/*
---------------------------------------------
main
---------------------------------------------
*/
.title {
  position: relative;
  color: #fb8700;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 55px;
  padding-left: 70px;
}

.title span {
  display: block;
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 10px;
}

.title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 26px;
    font-size: 18px;
    padding-left: 50px;
  }
  .title span {
    font-size: 12px;
  }
}

/* hero */
._hero {
  background: url(../images/bg_mv.png) repeat-x top;
  box-shadow: 0 3px 3px #f2e3d1 inset;
  padding-top: 42px;
  height: 509px;
}

._hero .mv {
  width: 780px;
}

._hero .banner li {
  margin-bottom: 8px;
}

.slick-dots {
  bottom: -30px;
}

.slick-dots li button:before {
  font-size: 12px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fb8700;
}

@media screen and (max-width: 767px) {
  ._hero {
    background: url(../images/bg_mv.png) repeat-x bottom;
    box-shadow: none;
    padding-top: 13px;
    height: calc(64vw + 20px);
  }
  ._hero .mv {
    width: 100%;
  }
  ._hero .mv img {
    width: 100%;
  }
}

#home .js-banner {
  width: 311px;
  height: 405px;
}

#home .slick-vertical .slick-track {
  height: auto;
}

#home .slick-vertical .slick-slide {
  margin-bottom: 5px;
  border-radius: 6px;
  overflow: hidden;
}

#home .slick-vertical .slick-current.slick-active a {
  display: block;
  position: relative;
  overflow: hidden;
}

#home .slick-vertical .slick-current.slick-active a::after {
  content: "";
  display: block;
  border: 4px solid #fb7c0b;
  border-image: linear-gradient(to bottom, #fb7c0b 0%, #fbc50b 100%);
  border-image-slice: 1;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* _pickup */
@media screen and (max-width: 767px) {
  #home .index-button {
    text-align: center;
  }
}

#home ._pickup {
  margin-top: 60px;
  padding-bottom: 55px;
}

#home ._pickup .title.is-pickup::before {
  background: url(../images/icon_picup.png) no-repeat center/cover;
  width: 48px;
  height: 54px;
}

#home ._pickup .list {
  margin-bottom: 50px;
}

#home ._pickup .list li {
  text-align: center;
}

#home ._pickup .list li .img {
  display: block;
  margin-bottom: 15px;
}

#home ._pickup .list li .text {
  line-height: 1.2;
}

#home ._pickup .list li .text::before {
  content: "";
  background: url(../images/icon_spoon.png) no-repeat center/cover;
  display: inline-block;
  margin-right: 7px;
  width: 24px;
  height: 47px;
}

#home ._pickup .list li .text::after {
  content: "";
  background: url(../images/icon_fork.png) no-repeat center/cover;
  display: inline-block;
  margin-left: 7px;
  width: 23px;
  height: 48px;
}

#home ._pickup .link {
  position: relative;
  color: #fb8700;
  display: inline-block;
  padding-left: 27px;
}

#home ._pickup .link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #fb8700 #fb8700 transparent transparent;
  transform: rotate(45deg) translateY(-50%);
  content: "";
}

@media screen and (max-width: 767px) {
  #home ._pickup {
    margin-top: 25px;
    padding-bottom: 55px;
  }
  #home ._pickup .title.is-pickup::before {
    width: 33px;
    height: 38px;
  }
  #home ._pickup .list {
    margin-bottom: 20px;
  }
  #home ._pickup .list li {
    margin-bottom: 25px;
    width: 49%;
  }
  #home ._pickup .list li img {
    width: 100%;
  }
  #home ._pickup .list li .text {
    font-size: 12px;
  }
  #home ._pickup .list li .text::before {
    width: 16px;
    height: 31px;
  }
  #home ._pickup .list li .text::after {
    width: 16px;
    height: 33px;
  }
  #home ._pickup .text-right.sp-center {
    text-align: center;
  }
  #home ._pickup .link {
    position: relative;
    background: #ffffff;
    border: 2px solid #fb8700;
    box-sizing: border-box;
    border-radius: 50px;
    color: #fb8700;
    font-size: 16px;
    padding: 12px 0;
    width: 220px;
    border-radius: 50px;
    text-align: center;
  }
  #home ._pickup .link::before {
    top: 48%;
    left: 42px;
  }
}

/* _recipe */
._recipe {
  position: relative;
  background: url(../images/bg_mv_top.png) repeat-x top;
  padding-top: 80px;
  padding-bottom: 80px;
}

._recipe::after {
  position: absolute;
  bottom: -15px;
  content: "";
  background: url(../images/bg_mv_top.png) repeat-x bottom;
  width: 100%;
  height: 20px;
}

._recipe .title-wrap {
  align-items: center;
}

._recipe .title.is-recipe::before {
  background: url(../images/ico_recipe.png) no-repeat center/cover;
  width: 54px;
  height: 54px;
}

._recipe .btn {
  position: relative;
  background: #ffffff;
  border: 2px solid #fb8700;
  box-sizing: border-box;
  border-radius: 50px;
  color: #fb8700;
  display: inline-block;
  font-size: 16px;
  padding: 12px 0;
  width: 220px;
  border-radius: 50px;
  text-align: center;
}

._recipe .btn::before {
  position: absolute;
  top: 47%;
  left: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #fb8700 #fb8700 transparent transparent;
  transform: rotate(45deg) translateY(-50%);
  content: "";
}

._recipe .area .find,
._recipe .area .ranking {
  box-shadow: 0 0 3px #e4d9ca;
  border-radius: 10px;
  background: white;
}

._recipe .area .find {
  padding: 20px;
  width: 340px;
}

._recipe .area .find .sub-title {
  margin-bottom: 15px;
}

._recipe .area .find .list li {
  width: 60px;
  text-align: center;
}

._recipe .area .find .form input[type="text"] {
  width: 92%;
}

._recipe .area .find .list li a {
  display: inline-block;
  margin-bottom: 3px;
}

._recipe .area .find .text {
  font-size: 12px;
}

._recipe .area .ranking {
  padding: 30px;
  width: 373px;
}

._recipe .area .ranking .wrap {
  position: relative;
  text-align: center;
  margin-bottom: 36px;
}

._recipe .area .ranking .wrap::after,
._recipe .area .ranking .wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 5px;
  width: 100%;
  background-size: auto auto;
  background-color: white;
  background-image: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 2px,
    #aaaaaa 2px,
    #aaaaaa 4px
  );
}

._recipe .area .ranking .wrap::after {
  top: auto;
  bottom: 0;
}

._recipe .area .ranking .wrap .lead {
  position: relative;
  top: -10px;
  z-index: 1;
  background: #fb8700;
  border-radius: 3px;
  color: white;
  font-size: 14px;
  margin: auto;
  padding: 5px;
  width: 140px;
}

._recipe .area .ranking .wrap .lead:after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #fb8600 transparent transparent transparent;
}

._recipe .area .ranking .wrap .sub-title {
  background: white;
  color: #393939;
  font-size: 18px;
  padding-bottom: 20px;
}

._recipe .area .ranking .list li {
  position: relative;
  width: 87px;
}

._recipe .area .ranking .list li a {
  display: block;
}

._recipe .area .ranking .list li .icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
}

._recipe .area .ranking .list li .icon img {
  max-width: 100%;
}

._recipe .area .ranking .list li .img {
  margin-bottom: 5px;
  width: 88px;
  height: 88px;
}

._recipe .area .ranking .list li .img img {
  width: 100%;
}

._recipe .area .ranking .list li a .text {
  color: #333;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: underline;
}

._recipe .area .banner {
  width: 370px;
}

._recipe .area .banner img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  ._recipe {
    background: url(../images/bg_mv_sp.png) no-repeat top;
    padding-top: 80px;
    padding-bottom: 60px;
  }
  ._recipe::after {
    background: url(../images/bg_mv_sp.png) no-repeat bottom;
  }
  ._recipe .title.is-recipe::before {
    width: 38px;
    height: 38px;
  }
  ._recipe .btn {
    display: block;
    margin: 0 auto 28px;
  }
  ._recipe .area .banner,
  ._recipe .area .ranking,
  ._recipe .area .find {
    margin-bottom: 28px;
    width: 100%;
  }
  ._recipe .area .banner {
    margin-bottom: 0;
  }
  ._recipe .area .ranking .list li {
    width: 31%;
  }
  ._recipe .area .ranking .list li .img {
    height: auto;
    width: 100%;
  }
  ._recipe .area .ranking .list li .img img {
    width: 100%;
  }
}

/* _info */
._info {
  margin-top: 100px;
  margin-bottom: 80px;
}

._info .title.is-info::before {
  background: url(../images/icon_info.png) no-repeat center/cover;
  width: 52px;
  height: 54px;
}

._info .list {
  background: #faf9f8;
  border-radius: 10px 10px 0px 0px;
  padding: 35px 80px 1px;
}

._info .list li {
  border-bottom: dotted 1px #666;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

._info .list li a {
  color: #333;
}

._info .list li .category {
  color: white;
  display: inline-block;
  font-size: 14px;
  padding: 4px 14px;
  margin: 0 20px;
}

._info .list li .category.is-news {
  background: #cabb12;
}

._info .list li .category.is-event {
  background: #3a9fbf;
}

._info .btn {
  background: #e8e7e6;
  border-radius: 0px 0px 10px 10px;
  color: #333;
  display: block;
  font-weight: bold;
  padding: 25px;
  text-align: center;
}

._info .btn span {
  position: relative;
}

._info .btn span::before,
._info .btn span::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}

._info .btn span::before {
  right: -25px;
  top: 52%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fb8700;
}

._info .btn span::after {
  top: 52%;
  transform: translateY(-50%);
  right: -24px;
  box-sizing: border-box;
  width: 8px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 6px solid white;
}

@media screen and (max-width: 767px) {
  ._info {
    margin-top: 60px;
  }
  ._info .list {
    background: #faf9f8;
    border-radius: 10px 10px 0px 0px;
    padding: 40px 13px 1px;
  }
  ._info .title.is-info::before {
    width: 37px;
    height: 38px;
  }
  ._info .list li .category {
    font-size: 12px;
    margin: 0 10px;
  }
  ._info .list li a {
    display: block;
    font-size: 13px;
    margin-top: 7px;
  }
}

/*
---------------------------------------------
second
---------------------------------------------
*/
.main-column {
  width: 782px;
}

.second ._lower {
  box-shadow: 0 3px 3px #f2e3d1 inset;
  background: url(../images/bg_mv.png) repeat-x bottom;
  height: 200px;
  margin-bottom: 10px;
}

.second ._lower .page-title {
  color: #6f5230;
  font-weight: 700;
  font-size: 28px;
}

.second ._lower .page-title span {
  display: block;
  font-style: normal;
  text-align: center;
  margin-top: 8px;
}

.breadcrumb {
  margin-bottom: 60px;
  padding-top: 10px;
  font-size: 14px;
}

.breadcrumb .list li {
  position: relative;
}

.breadcrumb .list li:not(:last-child)::after {
  content: ">";
  margin: 0 7px;
}

.breadcrumb .list li a {
  color: #333;
}

.lower-title {
  color: #ad824f;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
  .main-column {
    width: 100%;
  }
  .second ._lower {
    box-shadow: none;
    height: 85px;
    margin-bottom: 25px;
  }
  .second ._lower .page-title {
    font-size: 20px;
    line-height: 1.2;
  }
  .second ._lower .page-title span {
    font-size: 18px;
  }
  .breadcrumb .list li {
    font-size: 10px;
  }
  .breadcrumb .list li:not(:last-child)::after {
    margin: 0 5px;
  }
  .lower-title {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
  }
  .lower-title.is-arrow::after {
    position: absolute;
    top: -21%;
    right: 34px;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: #ad824f #ad824f transparent transparent;
    transform: rotate(135deg) translateY(-50%);
    content: "";
    transition: all 0.4s !important;
  }
  .lower-title.is-arrow.is-active::after {
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
  }
}

/* form-recipe */
.second .select-box {
  margin-bottom: 37px;
  position: relative;
  width: 100%;
  padding: 10px;
  border: 2px solid #6f5230;
}

.second .select-box select {
  appearance: none;
  border: none;
  width: 100%;
  color: #6f5230;
  background: white;
}

.second .select-box select::-ms-expand {
  display: none;
}

.second .select-box::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 14px;
  height: 7px;
  pointer-events: none;
  background: url(../images/icon_arrow_down.svg) no-repeat center/cover;
}

.second .select-box .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.second ._pickup {
  background: url(../images/bg_mv_top.png) repeat-x top;
  margin-top: 97px;
  padding-top: 71px;
  padding-bottom: 76px;
}

.second ._pickup .title {
  padding-left: 0;
}

.second ._pickup .title span {
  font-size: 18px;
}

.second ._pickup .title.is-pickup {
  text-align: center;
}

.second ._pickup .title.is-pickup .wrap {
  color: #fb8700;
}

.second ._pickup .title::before {
  position: static;
  content: "";
}

.second ._pickup .title.is-pickup::before {
  background: url(../images/icon_picup.png) no-repeat center;
  width: 48px;
  height: 54px;
  display: block;
  margin-right: 7px;
}

.second ._pickup .list li {
  text-align: center;
}

.second ._pickup .list li .img {
  display: block;
  margin-bottom: 10px;
}

.second ._pickup .list li .img > img {
  width: 345px;
  height: auto;
}

.second ._pickup .list li .text {
  line-height: 1.2;
}

.second ._pickup .list li .text::before {
  content: "";
  background: url(../images/icon_spoon.png) no-repeat center/cover;
  display: inline-block;
  margin-right: 7px;
  width: 24px;
  height: 47px;
}

.second ._pickup .list li .text::after {
  content: "";
  background: url(../images/icon_fork.png) no-repeat center/cover;
  display: inline-block;
  margin-left: 7px;
  width: 23px;
  height: 48px;
}

/* _pickup */
@media screen and (max-width: 767px) {
  .second ._pickup {
    background: url(../images/bg_mv_sp.png) repeat-x top;
    padding-bottom: 60px;
    padding-top: 40px;
    margin-top: 75px;
  }
  .second ._pickup .title.is-pickup::before {
    display: block;
    margin: 0 auto 10px;
  }
  .second ._pickup .list li {
    width: 100%;
    margin-bottom: 20px;
  }
  .second ._pickup .list li .img img {
    width: 310px;
  }
}

/* side-column */
.side-column {
  width: 262px;
}

.side-column .side-list {
  margin-bottom: 50px;
}

.side-column .side-list li a {
  position: relative;
  background: #e8e7e6;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 0 15px 21px;
  margin-bottom: 9px;
  color: #ad824f;
  display: block;
}

.side-column .side-list li a::before,
.side-column .side-list li a::after {
  position: absolute;
  content: "";
}

.side-column .side-list li a::before {
  right: 13px;
  top: 52%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ad824f;
}

.side-column .side-list li a::after {
  top: 52%;
  transform: translateY(-50%);
  right: 14px;
  box-sizing: border-box;
  width: 8px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 6px solid white;
}

.side-column .side-list li a.is-active {
  background: #ad824f;
  border-radius: 4px;
  font-size: 16px;
  padding: 15px 0 15px 21px;
  margin-bottom: 9px;
  color: white;
  display: block;
}

.side-column .side-list li a.is-active::before {
  background: white;
}

.side-column .side-list li a.is-active::after {
  border-left: 6px solid #ad824f;
}

.side-column .side-title {
  font-size: 20px;
  margin-bottom: 11px;
  font-weight: 500;
}

.side-column .tab {
  height: 31px;
}

.side-column .tab li {
  width: 50%;
}

.side-column .tab li a {
  background: #e3d2bd;
  border-radius: 3px 3px 0px 0px;
  color: #ad824f;
  display: block;
  font-size: 13px;
  width: 100%;
  padding: 6px 0;
  text-align: center;
}

.side-column .tab li a.is-active {
  background: #ad824f;
  color: white;
  padding: 12px 0 6px;
}

.side-column .box {
  border: 2px solid #ad824f;
  border-radius: 0px 0px 4px 4px;
  padding: 18px;
}

.side-column .box .box-tab {
  display: none;
}

.side-column .box .box-tab.is-show {
  display: block;
}

.side-column .box a {
  color: #393939;
  font-size: 14px;
  line-height: 1.2;
}

.side-column .box li:not(:last-child) a {
  margin-bottom: 30px;
}

.side-column .box a .img {
  position: relative;
  margin-right: 7px;
  width: 88px;
  height: 88px;
  overflow: hidden;
}

.side-column .box a .img > img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.side-column .box a .body {
  width: 127px;
}

.side-column .box a .icon {
  margin-bottom: 5px;
  width: 33px;
}

.side-column .box a .icon img {
  width: 100%;
}

.side-column .box a .text {
  text-decoration: underline;
}

.side-column .box .link {
  font-size: 12px;
  margin-top: 16px;
}

.side-column .box .link::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 2px solid;
  border-color: #5e5e5e #5e5e5e transparent transparent;
  transform: rotate(45deg) translateY(-50%);
  margin-right: 10px;
  margin-top: 6px;
}

@media screen and (max-width: 767px) {
  .side-column {
    margin-top: 40px;
    width: 100%;
  }
  .side-column .box a .body {
    width: calc(100% - 95px);
  }
  .side-column .box li:not(:last-child) a {
    margin-bottom: 15px;
  }
}

/*
---------------------------------------------
find
---------------------------------------------
*/
/* search-list */
.second .search-list {
  margin-bottom: 50px;
}

.second .search-list li {
  background: #e8e7e6;
  font-weight: bold;
  font-size: 16px;
  width: calc((100% - 10px) / 3);
  text-align: center;
}

.second .search-list li:not(:last-child) {
  margin-right: 5px;
}

.second .search-list .first {
  border-radius: 10px 0px 0px 10px;
}

.second .search-list .last {
  border-radius: 0px 10px 10px 0px;
}

.second .search-list li a {
  color: #ad824f;
  /* display: inline-block; */
  padding: 15px 0;
  width: 100%;
}

.second .search-list li a span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.second .search-list li a span::before,
.second .search-list li a span::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}

.second .search-list li a span::before {
  display: inline-block;
  top: 52%;
  transform: translateY(-36%);
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ad824f;
}

.second .search-list li a span::after {
  top: 52%;
  transform: translateY(-5%);
  right: 5px;
  box-sizing: border-box;
  width: 5px;
  height: 8px;
  border: 3px solid transparent;
  border-top: 6px solid white;
}

.second .search-list li.is-active {
  background: #ad824f;
}

.second .search-list li.is-active a {
  color: white;
}

.second .search-list li.is-active a span::before {
  background: white;
}

.second .search-list li.is-active a span::after {
  border-top: 6px solid #ad824f;
}

.second .category-group {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1em;
}

.second ._category {
  margin-bottom: 65px;
}

.second ._category .body {
  background: #fbf4e5;
  border-radius: 10px;
  padding: 42px 24px;
}

.second ._category .group:not(:last-of-type) {
  border-bottom: 1px dotted #ad824f;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.second ._category .group .content-title {
  font-weight: bold;
  color: #fb8700;
  width: 195px;
}

.second ._category .group .content-title .img {
  margin-right: 15px;
}

.second ._category .group .content-title a {
  color: #fb8700;
  text-decoration: underline;
}

.second ._category .group .list {
  width: calc(100% - 195px);
}

@media screen and (max-width: 767px) {
  .second ._category .group .list {
    width: auto;
  }
}

.second ._category .group .list li {
  margin-right: 20px;
}

.second ._category .group .list li:nth-child(n + 6) {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .second ._category .group .list li:nth-child(n + 6) {
    margin-top: 0px;
  }
}

.second ._category .group .list a {
  color: #393939;
  text-decoration: underline;
  font-weight: bold;
  font-size: 14px;
}

.second ._keywords {
  margin-bottom: 65px;
}

.second ._keywords .body {
  background: #fbf4e5;
  border-radius: 10px;
  padding: 42px 24px;
}

.second ._keywords .body .form {
  border: none;
}

.second ._keywords .body .form .left {
  width: 433px;
}

.second ._keywords .body .form .left .input-wrap {
  background: #ffffff;
  border: 2px solid #ad824f;
  padding: 10px;
}

.second ._keywords .body .form button {
  color: #ad824f;
}

.second ._keywords .body .form .right {
  width: 248px;
}

.second ._keywords .body .form .right > div {
  margin-bottom: 5px;
}

.second ._keywords .body .form .right input[type="radio"] {
  display: none;
  font-size: 16px;
}

.second ._keywords .body .form .right .radio-label {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  font-size: 14px;
}

.second ._keywords .body .form .right .radio-label::before {
  position: absolute;
  left: 0;
  top: -2px;
  background: #fff;
  border: 1px solid #ad824f;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  content: "";
}

.second ._keywords .body .form .right .radio-label::after {
  position: absolute;
  left: 5px;
  top: 50%;
  background: #ad824f;
  border-radius: 50%;
  content: "";
  display: block;
  margin-top: -4px;
  opacity: 0;
  height: 10px;
  width: 10px;
}

.second
  ._keywords
  .body
  .form
  .right
  input[type="radio"]:checked
  + .radio-label::after {
  opacity: 1;
}

.second ._keywords .body .sub-title {
  color: #fb8700;
  margin-bottom: 11px;
}

.second ._keywords .body .box {
  background: #f0e1c4;
  padding: 20px 25px;
}

.second ._keywords .body .box > p {
  line-height: 1.8;
}

.second ._keywords .body .box a {
  color: inherit;
  text-decoration: underline;
}

.second ._keywords .body .box a:hover {
  text-decoration: none;
}

.second ._terms .body {
  background: #fbf4e5;
  border-radius: 10px;
  padding: 42px 24px;
}

.second ._terms .group {
  border-bottom: 1px dotted #ad824f;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.second ._terms .group .content-title {
  font-weight: bold;
  color: #fb8700;
  width: 150px;
}

.second ._terms .group input[type="checkbox"] {
  display: none;
  font-size: 16px;
}

.second ._terms .group .check-wrap {
  min-height: 20px;
  width: calc(100% - 150px);
}

.second ._terms .group .checkbox-label {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  margin-right: 15px;
  font-size: 14px;
  display: inline-block;
}

.second ._terms .group .checkbox-label::before {
  position: absolute;
  left: 0;
  top: -1px;
  background: #fff;
  border: 1px solid #ad824f;
  height: 15px;
  width: 15px;
  content: "";
}

.second ._terms .group .checkbox-label::after {
  position: absolute;
  left: 5px;
  top: -4px;
  content: "";
  display: block;
  opacity: 0;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #ad824f;
  border-right: 3px solid #ad824f;
}

.second ._terms .group input[type="checkbox"]:checked + .checkbox-label::after {
  opacity: 1;
}

.second ._terms .group .checkbox-label span {
  color: white;
  display: inline-block;
  font-size: 12px;
  padding: 5px 10px;
  margin-right: 5px;
  width: 70px;
  text-align: center;
}

.second ._terms .group .checkbox-label .flex {
  flex-wrap: nowrap;
}

.second ._terms .group .checkbox-label .text {
  color: #393939;
  width: auto;
  padding: 0;
  font-size: 14px;
  margin-right: 0;
  text-align: left;
}

.second ._terms .group .checkbox-label .healthy {
  background: #705eca;
}

.second ._terms .group .checkbox-label .full {
  background: #54ab2b;
}

.second ._terms .group .checkbox-label .minutes {
  background: #3a9fbf;
}

.second ._terms .group .checkbox-label .hospitality {
  background: #cabb12;
}

.second ._terms .btn {
  position: relative;
  background: #ffffff;
  border: 2px solid #fb8700;
  box-sizing: border-box;
  border-radius: 50px;
  color: #fb8700;
  display: block;
  font-size: 16px;
  padding: 12px 0;
  width: 220px;
  border-radius: 50px;
  text-align: center;
  margin: 54px auto 0;
}

.second ._terms .btn::before {
  position: absolute;
  top: 47%;
  left: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #fb8700 #fb8700 transparent transparent;
  transform: rotate(45deg) translateY(-50%);
  content: "";
}

.second ._terms .body .box {
  display: none;
}

.second ._terms .body .box.is-show {
  display: block;
}

.second ._terms .tab-area .tab {
  height: 31px;
  width: 45%;
}

@media screen and (max-width: 767px) {
  .second ._terms .tab-area .tab {
    width: 100%;
  }
}

.second ._terms .tab-area .tab li {
  width: 50%;
}

.second ._terms .tab-area .tab li a {
  background: #e3d2bd;
  border-radius: 3px 3px 0px 0px;
  color: #ad824f;
  display: block;
  font-size: 13px;
  width: 100%;
  padding: 6px 0;
  text-align: center;
}

.second ._terms .tab-area .tab li a.is-active {
  background: #ad824f;
  color: white;
  padding: 12px 0 6px;
}

/* _category */
@media screen and (max-width: 767px) {
  .second ._category {
    border-top: 1px dotted #ad824f;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .second ._category .body {
    padding: 30px 5px;
  }
  .second ._category .group:not(:last-of-type) {
    padding-bottom: 17px;
    margin-bottom: 14px;
  }
  .second ._category .group .content-title {
    width: auto;
    justify-content: center;
    margin-bottom: 10px;
  }
  .second ._category .group .content-title .img {
    margin-right: 6px;
    width: 32px;
  }
  .second ._category .group .content-title .img img {
    width: 100%;
  }
  .second ._category .group .list {
    justify-content: center;
  }
  .second ._category .group .list li {
    margin-bottom: 5px;
  }
}

/* _keywords */
@media screen and (max-width: 767px) {
  .second ._keywords {
    border-top: 1px dotted #ad824f;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .second ._keywords .body {
    padding: 30px 20px;
  }
  .second ._keywords .body .form .left {
    margin-bottom: 12px;
    width: 100%;
  }
  .second ._keywords .body .form .right {
    width: 100%;
  }
  .second ._keywords .body .box {
    padding: 15px;
  }
}

/* _terms */
@media screen and (max-width: 767px) {
  .second .tab {
    height: 31px;
  }
  .second .tab li {
    width: 50%;
  }
  .second .tab li a {
    background: #e3d2bd;
    border-radius: 3px 3px 0px 0px;
    color: #ad824f;
    display: block;
    font-size: 13px;
    width: 100%;
    padding: 6px 0;
    text-align: center;
  }
  .second .tab li a.is-active {
    background: #ad824f;
    color: white;
    padding: 12px 0 6px;
  }
  .second ._terms {
    border-top: 1px dotted #ad824f;
    border-bottom: 1px dotted #ad824f;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .second ._terms .body {
    border-radius: 0 0 10px 10px;
    padding: 30px 20px;
  }
  .second ._terms .group {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .second ._terms .group .content-title {
    margin-bottom: 10px;
    width: 100%;
  }
  .second ._terms .group .check-wrap {
    width: 100%;
  }
  .second ._terms .group .check-wrap .checkbox-label {
    margin-right: 0px;
  }
  .second ._terms .group .check-item {
    background: white;
    padding: 10px;
  }
  .second ._terms .group .col2,
  .second ._terms .group .col3 {
    width: 50%;
  }
  .second ._terms .group .col4 {
    width: 50%;
  }
  .second ._terms .group .col4:not(:nth-child(2n)) {
    border-right: dotted 1px #ad824f;
  }
  .second ._terms .group .col2:not(:nth-child(2n)),
  .second ._terms .group .col3:not(:nth-child(2n)) {
    border-right: dotted 1px #ad824f;
  }
  .second ._terms .group .col1:not(:last-child),
  .second ._terms .group .col4:nth-of-type(-n + 14),
  .second ._terms .group .col2:nth-of-type(-n + 2),
  .second ._terms .group .col3:nth-of-type(-n + 4) {
    border-bottom: dotted 1px #ad824f;
  }
  .second ._terms .group .checkbox-label {
    position: relative;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.2;
  }
  .second ._terms .group .checkbox-label .text {
    width: calc(100% - 70px);
    font-size: 12px;
  }
  .second ._terms .btn {
    margin: 0 auto;
  }
}

/*
---------------------------------------------
single
---------------------------------------------
*/
._detail .title-wrap {
  justify-content: space-between;
  margin-bottom: 10px;
}

._detail .detail-title {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.3;
}

._detail .title-wrap .btn {
  border: 1px solid #ad824f;
  border-radius: 40px;
  color: #ad824f;
  font-size: 13px;
  padding: 12px 25px;
}

._detail .title-wrap .btn::before {
  content: "";
  width: 19px;
  height: 18px;
  background: url(../images/icon_star.png) no-repeat center/cover;
  margin-right: 10px;
}

._detail .share {
  margin-bottom: 35px;
}

._detail .area {
  margin-bottom: 40px;
}

#single ._detail .area .img {
  width: 350px;
  height: auto;
}

#single ._detail .area .img img {
  width: 100%;
  height: auto;
}

#single ._detail .area .body {
  width: 391px;
}

#single ._detail .area .body .lead {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5em;
}

#single ._detail .area .body .energy {
  font-size: 14px;
  text-align: right;
  color: #fb8700;
  margin-bottom: 17px;
}

._detail .sub-title {
  font-weight: bold;
  font-size: 20px;
  color: #ad824f;
  border-bottom: 2px solid #ad824f;
  padding-bottom: 7px;
  margin-bottom: 14px;
}

._detail .sub-head {
  font-weight: bold;
  font-size: 20px;
  color: #ad824f;
  border-left: 4px solid #ad824f;
  margin: 25px 15px 10px;
  padding: 5px 10px;
}

._detail .area .ingredients {
  width: 100%;
}

._detail .area .ingredients tr {
  border-bottom: 1px dotted #000000;
}

._detail .area .ingredients th {
  font-size: 14px;
  padding: 7px 0;
}

._detail .area .ingredients th a {
  color: #333;
  text-decoration: underline;
}

._detail .area .ingredients td {
  font-size: 14px;
  padding: 7px 0;
  text-align: right;
}

._detail .area .box {
  padding: 20px;
  border: 1px solid #ad824f;
  border-radius: 4px;
  margin-top: 28px;
}

._detail .area .box .add {
  font-weight: bold;
  font-size: 16px;
  color: #fb8700;
  margin-bottom: 10px;
}

._detail .make {
  padding-top: 40px;
}

._detail .make .list {
  counter-reset: number;
  list-style-type: none;
  padding: 0 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

._detail .make .list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px dotted #333;
}

._detail .make .list li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  color: #6f5230;
  font-weight: bold;
  left: 0;
}

._detail .make .make-point {
  padding: 0 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  ._detail .make .make-point {
    padding: 0px;
    margin-bottom: 40px;
  }
}

._detail .make .point-list {
  padding: 0 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  ._detail .make .point-list {
    padding-right: 0px;
  }
}

._detail .make .point-list li {
  padding-left: 20px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  ._detail .make .point-list li {
    padding: 0px;
  }
}

._detail .column .list {
  padding: 0 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  ._detail .column .list {
    padding-right: 0px;
  }
}

._detail .column .list li {
  padding-left: 20px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  ._detail .column .list li {
    padding: 0px;
  }
}

._detail .column .list.is-left {
  padding-left: 0px;
}

._detail .sub-recipe .list {
  counter-reset: number;
  list-style-type: none;
  padding: 0 30px;
  margin-top: 20px;
  margin-bottom: 40px;
}

._detail .sub-recipe .list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px dotted #333;
}

._detail .sub-recipe .list li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  color: #6f5230;
  font-weight: bold;
  left: 0;
}

._detail .sub-recipe .dot-list {
  padding-right: 30px;
  margin-top: 25px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  ._detail .sub-recipe .dot-list {
    padding-right: 0px;
  }
}

._detail .sub-recipe .dot-list li {
  padding-left: 20px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  ._detail .sub-recipe .dot-list li {
    padding: 0px;
  }
}

#single ._detail .advice {
  padding: 20px;
  border: 1px solid #ad824f;
  border-radius: 4px;
  margin-bottom: 100px;
}

#single ._detail .advice .advice-title {
  font-weight: bold;
  font-size: 20px;
  color: #ad824f;
  margin-bottom: 15px;
  align-items: center;
}

#single ._detail .advice .advice-title::before {
  content: "";
  background: url(../images/icon_advice.png) no-repeat center/cover;
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

#single ._detail .advice .text {
  line-height: 1.5;
}

#single ._detail .favorite {
  margin-bottom: 37px;
}

#single ._detail .favorite li {
  padding-left: 30px;
  position: relative;
}

#single ._detail .favorite li:not(:last-child) {
  border-right: solid 1px #ad824f;
  padding-right: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  #single ._detail .favorite li:not(:last-child) {
    border-right: none;
  }
}

#single ._detail .favorite li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: url(../images/icon_star.png) no-repeat center/cover;
  width: 22px;
  height: 20px;
}

@media screen and (max-width: 767px) {
  #single ._detail .favorite li::before {
    left: 20%;
  }
}

#single ._detail .favorite li.is-doc::before {
  background: url(../images/icon_doc.png) no-repeat center/cover;
  width: 16px;
}

#single ._detail .favorite li.is-print::before {
  background: url(../images/icon_print.png) no-repeat center/cover;
  width: 24px;
}

#single ._detail .favorite li.is-good::before {
  background: url(../images/icon_good.png) no-repeat center/cover;
  width: 21px;
}

#single ._detail .favorite li a {
  color: #393939;
  font-size: 14px;
}

#single ._recommend .box {
  padding: 52px 47px;
  background: #fbf4e5;
  border-radius: 10px;
  margin-bottom: 65px;
}

#single ._recommend .box li {
  width: 324px;
}

#single ._recommend .box li:nth-of-type(-n + 2) {
  padding-bottom: 42px;
  margin-bottom: 42px;
  border-bottom: dotted 1px #333;
}

#single ._recommend .box li:nth-child(odd) {
  width: 364px;
  padding-right: 40px;
}

#single ._recommend .box li a {
  color: #393939;
  line-height: 1.4;
}

#single ._recommend .box li a .img {
  position: relative;
  margin-right: 13px;
  width: 136px;
  height: 136px;
  overflow: hidden;
}

#single ._recommend .box li a .img > img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#single ._recommend .box li a .body {
  width: calc(100% - 149px);
}

#single ._recommend .box li a .name {
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 15px;
}

#single ._recommend .box li a .text {
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  #single ._detail .detail-title {
    font-size: 20px;
  }
  #single ._detail .title-wrap {
    align-items: flex-start;
    margin-bottom: 0;
  }
  #single ._detail .title-wrap .btn {
    position: relative;
    border-width: 2px;
    padding: 0;
    width: 60px;
    height: 60px;
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
  }
  #single ._detail .title-wrap .btn::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 38px;
    height: 37px;
    background: url(../images/icon_star_sp.png) no-repeat center/cover;
    margin-right: 10px;
    z-index: -1;
  }
  #single ._detail .share {
    margin-top: -23px;
    margin-bottom: 25px;
  }
  #single ._detail .sub-title {
    font-size: 18px;
    padding-bottom: 12px;
    margin-top: -37px;
  }
  #single ._detail .area .img {
    margin-bottom: 24px;
    width: 100%;
  }
  #single ._detail .area .img img {
    width: 100%;
  }
  #single ._detail .area .body {
    width: 100%;
  }
  #single ._detail .area .box {
    padding: 18px 18px 34px;
    margin-bottom: 40px;
  }
  ._detail .make .list {
    padding: 0;
    margin-bottom: 30px;
  }
  #single ._detail .make .list li {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  #single ._detail .advice {
    margin-bottom: 30px;
  }
  #single ._detail .favorite {
    flex-wrap: wrap;
  }
  #single ._detail .favorite li {
    margin-bottom: 10px;
  }
  #single ._detail .favorite li:nth-child(2) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

/* _recommend */
@media screen and (max-width: 767px) {
  #single ._recommend .box {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  #single ._recommend .box li {
    width: 100%;
  }
  #single ._recommend .box li:nth-child(odd) {
    width: 100%;
    padding-right: 0;
  }
  #single ._recommend .box li:nth-of-type(-n + 2) {
    padding-bottom: 0;
    margin-bottom: 20px;
    border-bottom: none;
  }
  #single ._recommend .box li:not(:last-child) {
    margin-bottom: 20px;
  }
  #single ._recommend .box li a .img {
    width: 110px;
  }
  #single ._recommend .box li a .img img {
    width: 100%;
  }
  #single ._recommend .box li a .body {
    width: calc(100% - 123px);
  }
}

/*
---------------------------------------------
result
---------------------------------------------
*/
#result ._results {
  margin-bottom: 80px;
}

#result ._results .list.is-active {
  display: flex;
}

#result ._results .order {
  margin-bottom: 24px;
}

#result ._results .order li:first-child {
  border-right: solid 2px #ad824f;
  padding-right: 15px;
  margin-right: 15px;
}

#result ._results .order li a {
  color: #ad824f;
  display: inline-block;
  font-weight: bold;
  padding: 7px 15px;
}

#result ._results .order li a.is-active {
  background: #f0e1c4;
}

#result ._results .order li a:hover {
  background: #f0e1c4;
  border-radius: 4px;
}

#result ._results .list li {
  border-bottom: dotted 1px #333;
  padding-bottom: 25px;
  margin-bottom: 35px;
  width: 380px;
}

#result ._results .list li:nth-child(odd) {
  padding-right: 20px;
  width: 402px;
}

#result ._results .list li a {
  color: #393939;
}

#result ._results .list li .img {
  position: relative;
  margin-right: 15px;
  width: 160px;
  height: 160px;
  overflow: hidden;
}

#result ._results .list li .img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

#result ._results .list li .body {
  width: calc(100% - 175px);
}

#result ._results .list li .body .maker {
  position: relative;
  font-size: 14px;
  color: #fb8700;
  padding-left: 10px;
}

#result ._results .list li .body .maker > span {
  text-decoration: underline;
  padding-left: 3px;
}

#result ._results .list li .body .maker::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  box-sizing: border-box;
  width: 8px;
  height: 12px;
  border: 6px solid transparent;
  border-left: 7px solid #ad824f;
}

#result ._results .list li .body .tag li {
  border-bottom: none;
  margin: 0 5px 5px 0;
}

#result ._results .list li .body .name {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
  text-decoration: underline;
}

#result ._results .list li .body .category {
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 5px;
  background: #705eca;
  width: 90px;
}

#result ._results .list li .body .category.is-full {
  background: #54ab2b;
}

#result ._results .list li .body .category.is-minutes {
  background: #3a9fbf;
}

#result ._results .list li .body .category.is-hospitality {
  background: #cabb12;
}

#result ._results .pagination li:not(:last-child) {
  margin-right: 14px;
}

#result ._results .pagination .num a {
  border: 2px solid #fb8700;
  border-radius: 50%;
  color: #fb8700;
  display: block;
  font-size: 14px;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 22px;
}

#result ._results .pagination .num.is-active a {
  background: #fb8700;
  color: white;
}

#result ._results .pagination .leader a {
  color: #fb8700;
  font-weight: bold;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  #result ._results {
    margin-bottom: 0;
  }
  #result ._results .list {
    margin-bottom: 60px;
  }
  #result ._results .list li {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  #result ._results .list li:nth-child(odd) {
    padding-right: 0;
    width: 100%;
  }
  #result ._results .list li .img {
    margin-right: 15px;
    width: 110px;
    height: 110px;
  }
  #result ._results .list li .img img {
    width: 100%;
  }
  #result ._results .list li .body {
    width: calc(100% - 125px);
  }
  #result ._results .list li .body .category {
    font-size: 12px;
    width: 80px;
  }
  #result ._results .pagination {
    margin-bottom: 42px;
  }
}

/*
---------------------------------------------
ranking
---------------------------------------------
*/
#ranking ._rank {
  margin-top: 30px;
}

#ranking ._rank .list {
  margin-bottom: 141px;
}

#ranking ._rank .list > li:not(:last-child) {
  border-bottom: 1px dotted #333;
  padding-bottom: 22px;
  margin-bottom: 66px;
}

#ranking ._rank .list li .img-wrap {
  position: relative;
  margin-right: 32px;
}

#ranking ._rank .list li .img-wrap .icon {
  position: absolute;
  top: -39px;
  z-index: 10;
}

#ranking ._rank .list li .img-wrap .img {
  width: 160px;
  height: 160px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #ranking ._rank .list li .img-wrap .img {
    height: 110px;
  }
}

#ranking ._rank .list li .img-wrap .img img {
  width: 100%;
  height: auto;
}

#ranking ._rank .list li .body {
  flex-direction: column;
  width: calc(100% - 192px);
  color: #393939;
}

#ranking ._rank .list li .flex-link {
  color: #393939;
}

#ranking ._rank .list li .rank-title {
  font-weight: bold;
  font-size: 18px;
  text-decoration-line: underline;
  margin-bottom: 17px;
  line-height: 1.4;
}

#ranking ._rank .list li .maker {
  position: relative;
  font-size: 14px;
  color: #fb8700;
  padding-left: 10px;
}

#ranking ._rank .list li .maker > span {
  text-decoration: underline;
  padding-left: 3px;
}

#ranking ._rank .list li .maker::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  box-sizing: border-box;
  width: 8px;
  height: 12px;
  border: 6px solid transparent;
  border-left: 7px solid #ad824f;
}

#ranking ._rank .list li .text {
  font-size: 16px;
  line-height: 1.6;
}

#ranking ._rank .list li .tag {
  margin-top: auto;
}

#ranking ._rank .list li .tag .approved {
  color: #fb8700;
  border: 1px solid #fb8700;
}

#ranking ._rank .list li .tag .pending {
  background-color: #fb8700;
}

#ranking ._rank .list li .category {
  color: white;
  display: inline-block;
  font-size: 14px;
  padding: 7px 10px;
  margin-top: auto;
  margin-right: 5px;
  width: 85px;
  text-align: center;
}

#ranking ._rank .list li .healthy {
  background: #705eca;
}

#ranking ._rank .list li .is-full {
  background: #54ab2b;
}

#ranking ._rank .list li .is-minutes {
  background: #3a9fbf;
}

#ranking ._rank .list li .is-hospitality {
  background: #cabb12;
}

#ranking ._rank .pagination li:not(:last-child) {
  margin-right: 10px;
}

#ranking ._rank .pagination .num a {
  border: 2px solid #fb8700;
  border-radius: 50%;
  color: #fb8700;
  display: block;
  font-size: 14px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 35px;
}

#ranking ._rank .pagination .num.is-active a {
  background: #fb8700;
  color: white;
}

#ranking ._rank .pagination .leader a {
  color: #fb8700;
  font-weight: bold;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  #ranking ._rank {
    margin-top: 80px;
  }
  #ranking ._rank .list {
    margin-bottom: 32px;
  }
  #ranking ._rank .list li {
    margin-bottom: 5px;
  }
  #ranking ._rank .list li .img-wrap {
    margin-right: 20px;
  }
  #ranking ._rank .list li .img-wrap .img {
    width: 110px;
  }
  #ranking ._rank .list li .img-wrap .img img {
    width: 100%;
  }
  #ranking ._rank .list li .rank-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  #ranking ._rank .list li .body {
    flex-direction: column;
    width: calc(100% - 130px);
  }
  #ranking ._rank .list li .maker {
    font-size: 12px;
    padding-left: 8px;
    padding-bottom: 10px;
  }
  #ranking ._rank .list li .maker::before {
    top: 10%;
    left: 0;
    width: 5px;
    height: 8px;
    border: 5px solid transparent;
    border-left: 6px solid #ad824f;
  }
  #ranking ._rank .list li .text {
    font-size: 12px;
  }
  #ranking ._rank .list li .category {
    font-size: 12px;
    width: 80px;
  }
  #ranking ._rank .list li .img-wrap .icon {
    top: -29px;
    width: 50px;
  }
  #ranking ._rank .list li .img-wrap .icon img {
    width: 100%;
  }
}

/*
---------------------------------------------
know
---------------------------------------------
*/
#know ._top .list li {
  width: 344px;
  border: 3px solid #ad824f;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
}

#know ._top .list li a {
  position: relative;
  color: #ad824f;
  width: 100%;
  padding-bottom: 40px;
}

#know ._top .list li a::before {
  position: absolute;
  right: 19px;
  bottom: 19px;
  content: "";
  background: #ad824f;
  width: 39px;
  height: 39px;
  border-radius: 50%;
}

#know ._top .list li a::after {
  position: absolute;
  right: 30px;
  bottom: 31px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #ffffff;
}

#know ._top .list li .know-title {
  background: #ad824f;
  border-radius: 6px 6px 0px 0px;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  padding: 15px 0 15px 19px;
}

#know ._top .list li .body {
  padding: 19px;
}

#know ._top .list li .body .text {
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  #know ._top .list li {
    margin-bottom: 34px;
    width: 100%;
  }
  #know ._top .list li a::before {
    width: 30px;
    height: 30px;
  }
  #know ._top .list li a::after {
    right: 27px;
    bottom: 28px;
    border-width: 6px 0 6px 11px;
    border-color: transparent transparent transparent #ffffff;
  }
}

/*
---------------------------------------------
know_single
---------------------------------------------
*/
/* _greeting */
#know_single ._greeting {
  margin-bottom: 94px;
}

#know_single ._greeting .bg {
  background: url(../images/greeting_bg.jpg) no-repeat;
  padding: 166px 166px 115px 187px;
}

#know_single ._greeting .greeting-title {
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fb8700;
  margin-bottom: 90px;
}

#know_single ._greeting .text {
  line-height: 2;
  margin-bottom: 2rem;
}

#know_single ._greeting .sign {
  line-height: 1.8;
  text-align: right;
  margin-top: 72px;
}

#know_single ._overview {
  background: #faf9f8;
  padding-top: 123px;
  padding-bottom: 123px;
  margin-bottom: 69px;
}

#know_single .title-wrap {
  text-align: center;
  color: #fb8700;
}

#know_single .title-wrap .en {
  font-size: 18px;
  margin-bottom: 10px;
}

#know_single .title-wrap .title {
  font-size: 28px;
  font-weight: bold;
  padding-left: 0;
}

#know_single ._overview .name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 11px;
}

#know_single ._overview .address {
  line-height: 1.6;
  margin-bottom: 45px;
}

#know_single ._overview .table {
  border: 1px solid #ad824f;
  border-radius: 10px;
  margin-bottom: 39px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

#know_single ._overview .table tr:not(:last-child) th,
#know_single ._overview .table tr:not(:last-child) td {
  border-bottom: 1px solid #ad824f;
}

#know_single ._overview .table th {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  width: 223px;
  vertical-align: middle;
  border-right: 1px solid #ad824f;
  background-color: #fff;
}

#know_single ._overview .table th.bg {
  background-color: #faf9f8;
}

#know_single ._overview .table td {
  padding: 24px 66px;
  width: calc(100% - 223px);
  background-color: #fff;
}

#know_single ._overview .table td.bg {
  background-color: #faf9f8;
}

#know_single ._overview .box {
  border: 1px solid #ad824f;
  border-radius: 10px;
  padding: 25px;
  background-color: #fff;
}

#know_single ._overview .box p {
  position: relative;
  align-items: center;
  margin-right: 35px;
}

#know_single ._overview .box p::before {
  content: url(../images/icon_pdf.png);
  display: inline-block;
  margin-right: 10px;
}

#know_single ._overview .box a {
  color: #393939;
  text-decoration: underline;
}

#know_single ._member .list li {
  width: 346px;
  border: 1px solid #ad824f;
  border-radius: 10px;
  padding: 29px 25px;
  margin-bottom: 30px;
}

#know_single ._member .list li:not(:nth-child(3n)) {
  margin-right: 31px;
}

#know_single ._member .list li .img {
  text-align: center;
  margin-bottom: 31px;
  height: 52px;
}

#know_single ._member .list li .name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

#know_single ._member .list li .address {
  font-size: 14px;
  line-height: 1.6;
}

#know_single ._member .list li .link {
  color: #393939;
  align-items: center;
}

#know_single ._member .list li .link::after {
  content: url(../images/icon_link.png);
  display: inline-block;
  margin-left: 10px;
}

#know_single ._member .list li .link a {
  color: #393939;
  line-height: 1.6;
  font-size: 14px;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  #know_single ._greeting {
    margin-bottom: 0;
  }
  #know_single ._greeting .bg {
    background: url(../images/greeting_bg_sp.jpg) no-repeat top/cover;
    padding: 116px 15px 70px;
  }
  #know_single ._greeting .contents-inner {
    padding: 0;
  }
  #know_single ._greeting .greeting-title {
    font-size: 24px;
    margin-bottom: 50px;
  }
  #know_single ._greeting .sign {
    margin-top: 60px;
  }
}

/* _overview */
@media screen and (max-width: 767px) {
  #know_single ._overview {
    padding-top: 47px;
    padding-bottom: 80px;
    margin-bottom: 55px;
  }
  #know_single .title-wrap .title {
    font-size: 24px;
  }
  #know_single ._overview .address {
    margin-bottom: 20px;
  }
  #know_single ._overview .table {
    margin-bottom: 21px;
  }
  #know_single ._overview .table th {
    width: 88px;
  }
  #know_single ._overview .table td {
    width: calc(100% - 88px);
    padding: 15px;
  }
  #know_single ._overview .box p {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* _member */
@media screen and (max-width: 767px) {
  #know_single ._member .list li {
    width: 100%;
    margin-bottom: 25px;
    padding: 20px 25px;
  }
  #know_single ._member .list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

/*
---------------------------------------------
health
---------------------------------------------
*/
/* _health */
._health .list li {
  width: 262px;
  border: 1px solid #ad824f;
  border-radius: 4px;
  padding: 13px 10px;
  margin-bottom: 24px;
}

._health .list li:not(:nth-child(4n)) {
  margin-right: 17px;
}

._health .list li a {
  color: #393939;
  line-height: 1.4;
  display: block;
}

._health .list li img {
  width: 100%;
}

._health .list li .health-title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #ad824f;
  margin-top: 11px;
  margin-bottom: 12px;
}

._health .list li .text {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  ._health .list li {
    width: 49%;
    margin-bottom: 10px;
  }
  ._health .list li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  ._health .list li:nth-child(odd) {
    margin-right: 2%;
  }
  ._health .list li .health-title {
    font-size: 18px;
  }
  ._health .list li .text {
    font-size: 12px;
  }
}

/*
---------------------------------------------
health_single
---------------------------------------------
*/
@media screen and (max-width: 767px) {
  .second ._lower .page-title {
    text-align: center;
  }
}

/* _top */
#health_single ._top {
  margin-bottom: 102px;
}

#health_single ._top .title {
  padding-left: 0;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 32px;
}

#health_single ._top .lead {
  line-height: 1.6;
  text-align: center;
  margin-bottom: 39px;
}

#health_single ._top .movie {
  text-align: center;
  margin-bottom: 30px;
}

#health_single ._top .box {
  background: url(../images/health_single_bg01.jpg) no-repeat center;
  width: 1094px;
  height: 536px;
  padding: 137px 100px;
  margin: 80px auto 0;
}

#health_single ._top .box .title {
  margin-bottom: 57px;
}

#health_single ._top .box .text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#health_single ._top .youtube {
  position: relative;
  width: 656px;
  padding-top: 370px;
  margin: 0 auto 76px;
}

#health_single ._top .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#health_single ._rate {
  background: #faf9f8;
  padding-top: 81px;
  padding-bottom: 130px;
  margin-bottom: 118px;
}

#health_single ._rate .title {
  padding-left: 0;
  text-align: center;
}

#health_single ._rate .lead {
  line-height: 1.7;
  text-align: center;
  margin-bottom: 39px;
}

#health_single ._rate .box {
  margin-bottom: 63px;
}

#health_single ._rate .text {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
}

#health_single ._relation {
  margin-bottom: 95px;
}

#health_single ._relation .title {
  padding-left: 0;
  text-align: center;
}

#health_single ._relation .lead {
  line-height: 1.7;
  text-align: center;
  margin-bottom: 39px;
}

#health_single ._relation .graph {
  max-width: 800px;
  margin: 0 auto 49px;
}

#health_single ._relation .text {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

#health_single ._relation .box {
  margin-top: 87px;
  margin-bottom: 87px;
}

#health_single ._control {
  background: #faf9f8;
  padding-top: 130px;
  padding-bottom: 87px;
}

#health_single ._control .title {
  padding-left: 0;
  text-align: center;
  margin-bottom: 32px;
}

#health_single ._control .lead {
  line-height: 1.7;
  text-align: center;
  margin-bottom: 39px;
}

#health_single ._control .box {
  background: url(../images/health_single_bg02.png) no-repeat center;
  width: 1102px;
  height: 698px;
  padding: 102px 154px;
  margin: 0 auto 34px;
}

#health_single ._control .box .list {
  margin-bottom: 8px;
}

#health_single ._control .box .list li {
  padding: 13px;
  width: 380px;
  height: 97px;
  background: #ad824f;
  border-radius: 10px;
  color: white;
  margin-bottom: 26px;
}

#health_single ._control .box .list li:nth-child(odd) {
  margin-right: 34px;
}

#health_single ._control .box .list li .num {
  background: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ad824f;
  font-size: 18px;
  margin-right: 22px;
}

#health_single ._control .box .list li p {
  width: calc(100% - 60px);
  line-height: 1.4;
}

#health_single ._control .box .text {
  line-height: 1.7;
}

#health_single ._control .box02 .body {
  width: 550px;
  padding-top: 70px;
}

#health_single ._control .box02 .text {
  line-height: 1.7;
  margin-bottom: 1rem;
}

#health_single ._control .box02 .compare {
  background: url(../images/health_single_bg03.png) no-repeat top;
  background-size: 100% 100%;
  width: 520px;
  height: 500px;
  padding: 30px 15px 25px 50px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  #health_single ._control .box02 .compare {
    height: auto;
    margin: 0 auto;
    padding: 30px 50px 40px;
  }
}

#health_single ._control .box02 .compare .compare-tbl-group {
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  #health_single ._control .box02 .compare .compare-tbl-group {
    flex-direction: column;
  }
}

#health_single ._control .box02 .compare .compare-tbl {
  width: 238px;
}

@media screen and (max-width: 767px) {
  #health_single ._control .box02 .compare .compare-tbl {
    width: 100%;
    margin-bottom: 20px;
  }
}

#health_single ._control .box02 .compare .compare-tbl:nth-child(2) {
  width: 203px;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  #health_single ._control .box02 .compare .compare-tbl:nth-child(2) {
    width: 100%;
    margin-left: 0;
  }
}

#health_single ._control .box02 .compare .compare-title {
  font-weight: bold;
  color: #ad824f;
  margin-bottom: 7px;
}

@media screen and (max-width: 767px) {
  #health_single ._control .box02 .compare .compare-title {
    line-height: 1.5;
  }
}

#health_single ._control .box02 .compare .compare-title--center {
  text-align: center;
  margin-bottom: 20px;
}

#health_single ._control .box02 .compare .compare-title--center > span {
  border-bottom: 2px solid #ad824f;
}

#health_single ._control .box02 .compare .table {
  border: 2px solid #ad824f;
  width: 100%;
  border-collapse: collapse;
}

#health_single ._control .box02 .compare .table--01 {
  width: 246px;
}

@media screen and (max-width: 767px) {
  #health_single ._control .box02 .compare .table--01 {
    width: 100%;
  }
}

#health_single ._control .box02 .compare .table--02 {
  width: 180px;
}

@media screen and (max-width: 767px) {
  #health_single ._control .box02 .compare .table--02 {
    width: 100%;
  }
}

#health_single ._control .box02 .compare .table td,
#health_single ._control .box02 .compare .table th {
  border: 2px solid #ad824f;
  background: white;
  font-size: 14px;
  padding: 12px;
}

#health_single ._efficacy {
  background: url(../images/health_single_bg05.jpg) no-repeat top left 179px;
  padding-top: 132px;
}

#health_single ._efficacy .title {
  padding-left: 0;
  text-align: center;
  margin-bottom: 86px;
}

#health_single ._efficacy .box {
  background: url(../images/health_single_bg04.png) no-repeat top left;
  height: 835px;
  padding-top: 105px;
}

#health_single ._efficacy .box .body {
  margin-left: 155px;
}

#health_single ._efficacy .box .text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 750px;
}

#health_single ._efficacy .box02 {
  background: url(../images/health_single_bg06.png) no-repeat top right;
  height: 583px;
  margin-top: -150px;
}

#health_single ._diet {
  background: #faf9f8;
  padding-top: 138px;
  padding-bottom: 160px;
  margin-bottom: 80px;
}

#health_single ._diet .title {
  padding-left: 0;
  text-align: center;
  margin-bottom: 32px;
}

#health_single ._diet .lead {
  line-height: 1.7;
  text-align: center;
  margin-bottom: 95px;
}

#health_single ._diet .box {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  width: 879px;
  margin: auto;
  border-radius: 10px;
  padding-bottom: 46px;
  background: white;
}

#health_single ._diet .box .box-title {
  max-width: 879px;
  background: #ad824f;
  border-radius: 10px 10px 0px 0px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  padding: 25px 0;
}

#health_single ._diet .box .list {
  padding: 46px 42px 0;
}

#health_single ._diet .box .list li {
  width: 148px;
  margin-bottom: 25px;
}

#health_single ._diet .box .list li:not(:nth-child(5n)) {
  margin-right: 13px;
}

#health_single ._diet .box .list li .list-text {
  font-size: 14px;
  line-height: 1.3;
  color: #393939;
  text-decoration: underline;
  margin-top: 5px;
}

#health_single ._diet .box .text {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
}

#health_single ._diet .box .text span {
  position: relative;
  padding-left: 25px;
}

#health_single ._diet .box .text span::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  background: url(../images/icon_health.png) no-repeat;
  width: 19px;
  height: 12px;
}

#health_single ._diet .box .text a {
  color: #393939;
  text-decoration: underline;
}

#health_single ._research .box {
  border: 1px solid #ad824f;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 48px 82px 36px;
}

#health_single ._research .box .box-title {
  padding: 5px 13px;
  width: 136px;
  background: #ad824f;
  font-weight: bold;
  font-size: 20px;
  line-height: 29px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 23px;
}

#health_single ._research .box .list li {
  border-bottom: 1px dotted #000000;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

#health_single ._research .box .list li .list-title {
  font-weight: bold;
  color: #ad824f;
}

@media screen and (max-width: 767px) {
  #health_single ._top {
    margin-bottom: 52px;
  }
  #health_single ._top .title {
    font-size: 26px;
  }
  #health_single ._top .lead {
    text-align: left;
  }
  #health_single ._top .movie img {
    max-width: 100%;
  }
  #health_single ._top .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 auto 37px;
  }
  #health_single ._top .box {
    position: relative;
    background: #fbf4e5;
    height: auto;
    width: 100%;
    padding: 47vw 10px 50px;
    margin-top: 60px;
  }
  #health_single ._top .box::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: url(../images/health_single_bg01_sp.jpg) no-repeat top/cover;
    width: 100%;
    height: 61vw;
  }
  #health_single ._top .box .title {
    margin-bottom: 50px;
  }
}

/* _rate */
@media screen and (max-width: 767px) {
  #health_single ._rate {
    padding-top: 73px;
    padding-bottom: 14px;
    margin-bottom: 61px;
  }
  #health_single ._rate .title {
    font-size: 26px;
    line-height: 1.3;
  }
  #health_single ._rate .lead {
    text-align: left;
  }
  #health_single ._rate .box {
    margin-bottom: 0;
  }
  #health_single ._rate .box .img {
    margin-bottom: 13px;
  }
  #health_single ._rate .box .img img {
    width: 100%;
  }
}

/* _relation */
@media screen and (max-width: 767px) {
  #health_single ._relation {
    margin-bottom: 58px;
  }
  #health_single ._relation .title {
    font-size: 26px;
  }
  #health_single ._relation .lead {
    text-align: left;
  }
  #health_single ._relation .title {
    padding-left: 0;
    text-align: center;
    line-height: 1.3;
  }
  #health_single ._relation .graph {
    margin-bottom: 17px;
  }
  #health_single ._relation .graph img {
    max-width: 100%;
  }
  #health_single ._relation .box {
    margin-top: 0;
    margin-bottom: 0;
  }
  #health_single ._relation .box .img {
    margin-bottom: 24px;
  }
  #health_single ._relation .box img {
    width: 100%;
  }
}

/* _control */
@media screen and (max-width: 767px) {
  #health_single ._control {
    padding-top: 60px;
    padding-bottom: 31px;
  }
  #health_single ._control .title {
    font-size: 26px;
    line-height: 1.2;
  }
  #health_single ._control .box {
    width: 100%;
    height: 550px;
    padding: 53px 15px;
    margin-bottom: 0;
  }
  #health_single ._control .box .list {
    margin-bottom: 100px;
  }
  #health_single ._control .box .list li {
    width: 100%;
    margin-bottom: 15px;
  }
  #health_single ._control .box .list li:nth-child(odd) {
    margin-right: 0;
  }
  #health_single ._control .box02 .body {
    width: 100%;
    padding: 32px 15px 0;
  }
  #health_single ._control .contents-inner.p-none {
    padding: 0;
  }
}

/* _efficacy */
@media screen and (max-width: 767px) {
  #health_single ._efficacy {
    background: none;
    padding-top: 32px;
    padding-bottom: 20px;
  }
  #health_single ._efficacy .title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  #health_single ._efficacy .box {
    position: relative;
    background: #fbf4e5;
    height: auto;
    padding: 40vw 15px;
  }
  #health_single ._efficacy .box::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url(../images/health_single_bg04_sp.jpg) no-repeat top/cover;
    width: 100%;
    height: 37vw;
  }
  #health_single ._efficacy .box::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background: url(../images/health_single_bg05_sp.jpg) no-repeat top/cover;
    width: 100%;
    height: 40vw;
  }
  #health_single ._efficacy .box .body {
    margin-left: 0;
  }
  #health_single ._efficacy .box02 {
    display: none;
  }
}

/* _diet */
@media screen and (max-width: 767px) {
  #health_single ._diet {
    padding-top: 61px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #health_single ._diet .title {
    font-size: 26px;
  }
  #health_single ._diet .lead {
    text-align: left;
    margin-bottom: 50px;
  }
  #health_single ._diet .box {
    width: 100%;
    padding-bottom: 20px;
  }
  #health_single ._diet .box .list {
    padding: 15px;
  }
  #health_single ._diet .box .list li {
    width: 49%;
    margin-bottom: 20px;
  }
  #health_single ._diet .box .list li:not(:nth-child(5n)) {
    margin-right: 0;
  }
  #health_single ._diet .box .list li:nth-child(odd) {
    margin-right: 2%;
  }
  #health_single ._diet .box .list li .img img {
    width: 100%;
  }
}

/* _research */
@media screen and (max-width: 767px) {
  #health_single ._research .box {
    padding: 25px 20px;
  }
  #health_single ._research .box .box-title {
    font-size: 16px;
  }
  #health_single ._research .box .list li {
    flex-wrap: nowrap;
  }
  #health_single ._research .box .list li p {
    line-height: 1.4;
    font-size: 14px;
  }
  #health_single ._research .box .list li .list-title {
    min-width: 75px;
  }
}

/*
---------------------------------------------
doubt
---------------------------------------------
*/
/* _doubt */
#doubt ._doubt .lead {
  line-height: 1.6;
  margin-bottom: 40px;
}

#doubt ._doubt .doubt-title {
  background: #f0e1c4;
  border-radius: 6px;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #fb8700;
  padding: 15px 0;
  margin-bottom: 52px;
}

#doubt ._doubt .box {
  margin-bottom: 124px;
}

#doubt ._doubt .box .movie {
  width: 560px;
  margin-right: 60px;
}

#doubt ._doubt .box .body {
  width: 480px;
}

#doubt ._doubt .box .body .sub-title {
  font-weight: bold;
  font-size: 24px;
  color: #ad824f;
  margin-bottom: 19px;
  line-height: 1.3;
}

#doubt ._doubt .box .body .text {
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  #doubt ._doubt .doubt-title {
    margin-bottom: 25px;
  }
  #doubt ._doubt .box {
    margin-bottom: 45px;
  }
  #doubt ._doubt .box .body {
    width: 100%;
    margin-bottom: 40px;
  }
  #doubt ._doubt .box .movie {
    width: 100%;
    margin-right: 0;
  }
  #doubt ._doubt .box .movie iframe {
    max-width: 100%;
  }
  #doubt ._doubt .box .movie img {
    width: 100%;
  }
}

/*
---------------------------------------------
lunch
---------------------------------------------
*/
/* _lunch */
#lunch ._lunch .lunch-title {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #fb8700;
}

#lunch ._lunch .box {
  border: 2px solid #ad824f;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 29px;
  margin-top: 20px;
  margin-bottom: 61px;
}

#lunch ._lunch .box .box-inner {
  color: #393939;
  width: 340px;
  margin-bottom: 24px;
}

#lunch ._lunch .box .box-inner .body {
  width: 184px;
}

#lunch ._lunch .box .box-inner .body .sub-title {
  font-weight: bold;
  text-decoration: underline;
  line-height: 1.4;
  margin-bottom: 10px;
}

#lunch ._lunch .box .box-inner .body .text {
  font-size: 14px;
  line-height: 1.7;
}

#lunch ._lunch .box .stcon {
  align-items: center;
  margin-bottom: 34px;
}

#lunch ._lunch .box .stcon .stcon-title {
  width: 147px;
  background: #fb8700;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  line-height: 26px;
  margin-right: 16px;
}

#lunch ._lunch .box .stcon .text {
  font-size: 13px;
  width: calc(100% - 163px);
}

#lunch ._lunch .box .btn {
  border: 1px solid #ad824f;
  border-radius: 40px;
  display: block;
  width: 235px;
  margin: auto;
  line-height: 46px;
  text-align: center;
  color: #ad824f;
  font-size: 13px;
}

#lunch ._lunch .box .btn span {
  position: relative;
  padding-left: 25px;
}

#lunch ._lunch .box .btn span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  background: #ad824f;
  margin-right: 10px;
}

#lunch ._lunch .box .btn span::after {
  position: absolute;
  content: "";
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  box-sizing: border-box;
  width: 8px;
  height: 5px;
  border: 3px solid transparent;
  border-left: 6px solid white;
}

#lunch ._lunch .lunch-title.second {
  font-weight: bold;
  font-size: 24px;
  color: #ad824f;
  margin-bottom: 18px;
}

#lunch ._lunch .page-text {
  line-height: 1.7;
}

#lunch ._lunch .merit {
  background: #fbf4e5;
  border-radius: 10px;
  padding: 53px 77px;
  margin-top: 32px;
}

#lunch ._lunch .merit .merit-title {
  font-weight: bold;
  font-size: 22px;
  color: #ad824f;
  margin-bottom: 52px;
  text-align: center;
}

#lunch ._lunch .merit .merit-box:not(:last-child) {
  margin-bottom: 45px;
}

#lunch ._lunch .merit .merit-box .body {
  width: 444px;
}

#lunch ._lunch .merit .merit-box .body .merit-sub-title {
  font-weight: bold;
  font-size: 18px;
  color: #54ab2b;
  margin-bottom: 12px;
}

#lunch ._lunch .merit .merit-box .body .merit-sub-title::after {
  content: "";
  height: 1px;
  background: #54ab2b;
  flex-grow: 1;
  margin-left: 10px;
}

#lunch ._lunch .merit .merit-box .body .merit-sub-title.pink {
  color: #ef6c6c;
}

#lunch ._lunch .merit .merit-box .body .merit-sub-title.pink::after {
  background: #ef6c6c;
}

#lunch ._lunch .merit .merit-box .body .merit-sub-title.blue {
  color: #3a9fbf;
}

#lunch ._lunch .merit .merit-box .body .merit-sub-title.blue::after {
  background: #3a9fbf;
}

#lunch ._lunch .merit .merit-box .body .merit-text {
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  #lunch ._lunch .box .box-inner {
    width: 100%;
  }
  #lunch ._lunch .box .box-inner .img {
    width: 100px;
  }
  #lunch ._lunch .box .box-inner .img img {
    width: 100%;
  }
  #lunch ._lunch .box .box-inner .body {
    width: calc(100% - 114px);
  }
  #lunch ._lunch .box .stcon {
    margin-bottom: 23px;
  }
  #lunch ._lunch .box .stcon .stcon-title {
    margin-bottom: 7px;
  }
  #lunch ._lunch .box .stcon .text {
    font-size: 14px;
    width: 100%;
    line-height: 1.4;
  }
  #lunch ._lunch .merit {
    padding: 53px 15px;
  }
  #lunch ._lunch .merit .merit-box .img {
    text-align: center;
    margin-bottom: 25px;
  }
  #lunch ._lunch .merit .merit-box .body {
    width: 100%;
  }
}

/*
---------------------------------------------
cooking
---------------------------------------------
*/
/* _cooking */
#cooking ._pref .pref-title {
  position: relative;
  background: #f0e1c4;
  border-radius: 6px;
  font-weight: bold;
  font-size: 22px;
  color: #ad824f;
  padding: 17px 33px;
  margin-bottom: 28px;
  cursor: pointer;
}

#cooking ._pref .pref-title .icon {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 33px;
  top: 50%;
  transform: translateY(-50%);
  background: #ad824f;
  border-radius: 50%;
}

#cooking ._pref .pref-title .icon::before {
  position: absolute;
  top: 14px;
  left: 8px;
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 5px;
  background: white;
}

#cooking ._pref .pref-title .icon::after {
  position: absolute;
  top: 14px;
  left: 8px;
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 5px;
  background: white;
  transform: rotate(90deg);
  transition: 0.5s;
}

#cooking ._pref .pref-title.active .icon::after {
  transform: rotate(0deg);
}

#cooking ._pref .box {
  display: none;
}

#cooking ._pref .box.show {
  display: block;
}

#cooking ._pref .list {
  margin-bottom: 40px;
}

#cooking ._pref .list li {
  width: 244px;
  height: 254px;
  background: #fbf4e5;
  margin-bottom: 13px;
}

#cooking ._pref .list li:not(:nth-child(3n)) {
  margin-right: 25px;
}

#cooking ._pref .list li a {
  display: block;
  color: #ad824f;
  line-height: 1.4;
}

#cooking ._pref .list li a .img {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
}

#cooking ._pref .list li a .img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

#cooking ._pref .list li a .img .area {
  position: absolute;
  width: 150px;
  line-height: 20px;
  background: #fb8700;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  z-index: 999;
}

#cooking ._pref .list li .body {
  padding: 13px 32px 13px 13px;
}

#cooking ._pref .list li .body .name {
  position: relative;
}

#cooking ._pref .list li .body .name::before,
#cooking ._pref .list li .body .name::after {
  position: absolute;
  content: "";
}

#cooking ._pref .list li .body .name::before {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #ad824f;
}

#cooking ._pref .list li .body .name::after {
  top: 50%;
  transform: translateY(-50%);
  right: -17px;
  box-sizing: border-box;
  width: 8px;
  height: 7px;
  border: 3px solid transparent;
  border-left: 6px solid white;
}

#cooking ._pref .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
}

#cooking ._pref .wp-pagenavi a :not(:last-child) {
  margin-right: 10px;
}

#cooking ._pref .wp-pagenavi a {
  border: 2px solid #fb8700;
  border-radius: 50%;
  color: #fb8700;
  font-size: 14px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
  padding: 0px;
  order: 1;
}

#cooking ._pref .wp-pagenavi span {
  background: #fb8700;
  color: white;
  border: 2px solid #fb8700;
  border-radius: 50%;
  font-size: 14px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
  padding: 0px;
  order: 1;
}

#cooking ._pref .wp-pagenavi .extend {
  background: none;
  color: #fb8700;
  border: none;
  border-radius: 0%;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
}

#cooking ._pref .wp-pagenavi .previouspostslink {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-right: 25px solid #ad824f;
  border-bottom: 15px solid transparent;
  border-left: 0px;
  border-radius: 0%;
  margin-right: 15px;
}

#cooking ._pref .wp-pagenavi .nextpostslink {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 25px solid #ad824f;
  border-bottom: 15px solid transparent;
  border-right: 0px;
  border-radius: 0%;
  margin-left: 5px;
  margin-right: 0px;
  order: 2;
}

#cooking ._pref .wp-pagenavi .leader a {
  color: #fb8700;
  font-weight: bold;
  font-size: 26px;
}

#cooking .title {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.6;
  color: #393939;
  padding-left: 0;
  margin-bottom: 39px;
}

#cooking ._cooking .list li {
  padding: 25px 17px 20px;
  width: 376px;
  border: 2px solid #ad824f;
  border-radius: 4px;
  margin-bottom: 39px;
}

#cooking ._cooking .list li:nth-child(odd) {
  margin-right: 30px;
}

#cooking ._cooking .list li a {
  color: #393939;
  min-height: 0%;
}

#cooking ._cooking .list li a .img {
  margin-bottom: 17px;
}

#cooking ._cooking .list li a .img img {
  width: 100%;
}

#cooking ._cooking .list li a .cooking-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #ad824f;
  margin-bottom: 14px;
  min-height: 60px;
}

#cooking ._cooking .list li a .name {
  font-size: 14px;
  text-align: right;
  margin-bottom: 20px;
}

#cooking ._cooking .list li a .text {
  line-height: 1.7;
}

#cooking ._cooking .list li .btn {
  position: relative;
  background: #fbf4e5;
  display: block;
  font-size: 14px;
  padding: 9px;
  margin-top: 20px;
}

#cooking ._cooking .list li .btn::before {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: #ad824f;
  width: 19px;
  height: 19px;
  border-radius: 50%;
}

#cooking ._cooking .list li .btn::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 9px;
  box-sizing: border-box;
  width: 8px;
  height: 6px;
  border: 3px solid transparent;
  border-left: 6px solid white;
}

@media screen and (max-width: 767px) {
  #cooking .title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 34px;
  }
  #cooking ._cooking .list li {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 25px;
  }
  #cooking ._cooking .list li:nth-child(odd) {
    margin-right: 0;
  }
  #cooking ._cooking .list li a .cooking-title {
    min-height: 30px;
  }
  #cooking ._cooking .list li a .name {
    font-size: 12px;
  }
  #cooking ._cooking .list li a .text {
    font-size: 14px;
  }
  #cooking ._pref .list li {
    width: 49%;
  }
  #cooking ._pref .list li:not(:nth-child(3n)) {
    margin-right: 0px;
  }
  #cooking ._pref .list li:not(:nth-child(2n)) {
    margin-right: 2%;
  }
  #cooking ._pref .wp-pagenavi a,
  #cooking ._pref span:not(:last-child) {
    margin-right: 5px;
  }
  #cooking ._pref .wp-pagenavi > span {
    margin-right: 5px;
  }
}

/*
---------------------------------------------
cooking_single
---------------------------------------------
*/
#cooking_single ._detail .area {
  justify-content: space-between;
}

#cooking_single ._detail .area.is-full {
  margin-right: 30px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  #cooking_single ._detail .area.is-full {
    margin-right: 0px;
    margin-left: 0px;
  }
}

#cooking_single ._detail .area.is-full .body {
  width: 100%;
}

#cooking_single ._detail .area .body {
  width: 391px;
}

#cooking_single ._detail .area .box {
  width: 360px;
}

#cooking_single ._detail .area .movie {
  max-width: 782px;
  height: 440px;
}

#cooking_single ._detail .area .movie > iframe {
  width: 100%;
  height: 100%;
}

#cooking_single ._detail .profile {
  background: #fbf4e5;
  border-radius: 10px;
  padding: 30px 42px;
}

#cooking_single ._detail .profile .inner {
  flex-direction: row-reverse;
  justify-content: space-between;
}

#cooking_single ._detail .profile .body {
  width: 449px;
}

#cooking_single ._detail .profile .profile-title {
  font-weight: bold;
  font-size: 16px;
  color: #fb8700;
  margin-bottom: 21px;
}

#cooking_single ._detail .profile .name {
  font-weight: bold;
  font-size: 20px;
  color: #ad824f;
  margin-bottom: 16px;
}

#cooking_single ._detail .profile .name span {
  font-weight: 500;
  font-size: 14px;
  color: #ad824f;
  display: inline-block;
  margin-left: 10px;
}

#cooking_single ._detail .profile .body .text {
  font-size: 14px;
  line-height: 1.8;
}

#cooking_single ._detail .profile .img {
  width: 215px;
}

#cooking_single ._detail .profile .img img {
  border: solid 15px #f0e1c4;
}

@media screen and (max-width: 767px) {
  #cooking_single ._detail .area .body,
  #cooking_single ._detail .area .img img {
    width: 100%;
  }
  #cooking_single ._detail .area .movie {
    height: 330px;
  }
  #cooking_single ._detail .area .profile .profile-title {
    margin-bottom: 10px;
  }
  #cooking_single ._detail .area .profile .body {
    width: 100%;
    margin-top: 10px;
  }
  #cooking_single ._detail .area .area .box {
    width: 100%;
  }
  #cooking_single ._detail .area .profile {
    padding: 25px 15px;
  }
  #cooking_single ._detail .area .profile .img {
    width: 130px;
  }
  #cooking_single ._detail .area .profile .img img {
    width: 100%;
    border: solid 10px #f0e1c4;
  }
  #cooking_single ._detail .area .profile .name {
    display: block;
    margin: 10px 0 0 10px;
    font-size: 18px;
  }
  #cooking_single ._detail .area .profile .name span {
    display: block;
    margin-left: 0;
    margin-top: 10px;
    font-size: 12px;
  }
}

/*
---------------------------------------------
know_pasta_single
---------------------------------------------
*/
#know_pasta_single ._type {
  margin-bottom: 80px;
}

#know_pasta_single ._type .box {
  background: url(../images/know_pasta_single_bg01.jpg) no-repeat;
  height: 565px;
  margin-bottom: 33px;
}

#know_pasta_single ._type .box .body {
  margin-left: auto;
  padding-top: 97px;
  width: 526px;
}

#know_pasta_single ._type .box .body .title {
  font-size: 26px;
  padding-left: 0;
  margin-bottom: 24px;
  line-height: 1.2;
}

#know_pasta_single ._type .box .body .text {
  line-height: 1.7;
  margin-bottom: 1rem;
}

#know_pasta_single ._type .wrap {
  width: 861px;
  margin: auto;
}

#know_pasta_single ._type .table {
  border: 1px solid #ad824f;
  border-radius: 4px;
  margin-bottom: 25px;
  border-collapse: separate;
  border-spacing: 0;
}

#know_pasta_single ._type .table tr:not(:last-child) th,
#know_pasta_single ._type .table tr:not(:last-child) td {
  border-bottom: 1px solid #ad824f;
}

#know_pasta_single ._type .table th {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  width: 194px;
  vertical-align: middle;
  border-right: 1px solid #ad824f;
  background: #faf9f8;
  border-radius: 3px 0px 0px 3px;
}

#know_pasta_single ._type .table td {
  padding: 31px 36px;
  width: calc(100% - 194px);
}

#know_pasta_single ._type .source {
  line-height: 1.3;
}

#know_pasta_single ._type .source a {
  color: #393939;
  text-decoration: underline;
}

#know_pasta_single ._flour {
  background: url(../images/know_pasta_single_bg02.jpg) no-repeat center/cover;
  padding-top: 94px;
  padding-bottom: 100px;
  margin-bottom: 96px;
  position: relative;
}

#know_pasta_single ._flour::before {
  content: "";
  width: 100%;
  height: 16px;
  display: block;
  position: absolute;
  background: url(../images/bg_wave.png) repeat-x 0 0;
  top: 0;
}

#know_pasta_single ._flour::after {
  content: "";
  width: 100%;
  height: 16px;
  display: block;
  position: absolute;
  background: url(../images/bg_wave.png) repeat-x 0 0;
  transform: rotate(180deg);
  bottom: 0;
}

#know_pasta_single ._flour .title {
  font-size: 26px;
  text-align: center;
  color: #ffffff;
  padding-left: 0;
  line-height: 1.4;
}

#know_pasta_single ._flour .body {
  width: 591px;
}

#know_pasta_single ._flour .body .text {
  line-height: 2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

#know_pasta_single ._flour .img {
  max-width: 385px;
}

#know_pasta_single ._process {
  padding-bottom: 91px;
  margin-bottom: 100px;
}

#know_pasta_single ._process .title {
  font-size: 26px;
  text-align: center;
  padding-left: 0;
  margin-bottom: 39px;
  line-height: 1.4;
}

#know_pasta_single ._process .text {
  text-align: center;
  margin-bottom: 81px;
  line-height: 1.5;
}

#know_pasta_single ._process .text a {
  color: #393939;
  text-decoration: underline;
}

#know_pasta_single ._process .img {
  max-width: 930px;
  margin: auto;
}

#know_pasta_single ._natural .title {
  font-size: 26px;
  text-align: center;
  padding-left: 0;
  margin-bottom: 61px;
}

#know_pasta_single ._natural .img {
  max-width: 700px;
  margin: auto;
}

#know_pasta_single ._natural .movie {
  text-align: center;
}

#know_pasta_single ._natural .movie iframe {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  #know_pasta_single ._type {
    margin-bottom: 30px;
  }
  #know_pasta_single ._type .box {
    background: url(../images/know_pasta_single_bg01_sp.jpg) no-repeat bottom;
    height: auto;
    margin-bottom: 33px;
    padding-bottom: 89px;
  }
  #know_pasta_single ._type .box .body {
    margin-left: auto;
    padding-top: 0;
    width: 100%;
  }
  #know_pasta_single ._type .wrap {
    width: 100%;
  }
  #know_pasta_single ._type .table th,
  #know_pasta_single ._type .table td {
    font-size: 14px;
  }
  #know_pasta_single ._type .table th {
    width: 122px;
  }
  #know_pasta_single ._type .table td {
    padding: 10px;
    width: calc(100% - 122px);
  }
  #know_pasta_single ._type .source {
    font-size: 14px;
  }
}

/* _flour */
@media screen and (max-width: 1400px) {
  #know_pasta_single ._flour {
    height: 605px;
  }
}

@media screen and (max-width: 767px) {
  #know_pasta_single ._flour {
    background: url(../images/know_pasta_single_bg02.jpg) no-repeat top/cover;
    height: 996px;
    padding: 63px 0;
    margin-bottom: 25px;
  }
  #know_pasta_single ._flour .body {
    width: 100%;
  }
  #know_pasta_single ._flour .img {
    margin: auto;
  }
  #know_pasta_single ._flour .img img {
    width: 100%;
  }
}

/* _process */
@media screen and (max-width: 767px) {
  #know_pasta_single ._process {
    padding-bottom: 58px;
    margin-bottom: 50px;
  }
  #know_pasta_single ._process .img img {
    width: 100%;
  }
  #know_pasta_single ._process .title {
    margin-bottom: 20px;
  }
  #know_pasta_single ._process .text {
    margin-bottom: 31px;
  }
  #know_pasta_single ._process .text a {
    color: #393939;
    text-decoration: underline;
  }
}

/* _natural */
@media screen and (max-width: 767px) {
  #know_pasta_single ._natural .title {
    font-size: 26px;
    margin-bottom: 22px;
  }
  #know_pasta_single ._natural .img img {
    width: 100%;
  }
}

/*
---------------------------------------------
local
---------------------------------------------
*/
/* _top */
#local ._top .local-kv {
  margin-bottom: 40px;
}

#local ._top .area-wrap {
  width: 433px;
  margin-bottom: 41px;
}

#local ._pref .pref-title {
  position: relative;
  background: #f0e1c4;
  border-radius: 6px;
  font-weight: bold;
  font-size: 22px;
  color: #ad824f;
  padding: 17px 33px;
  margin-bottom: 28px;
  cursor: pointer;
}

#local ._pref .pref-title .icon {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 33px;
  top: 50%;
  transform: translateY(-50%);
  background: #ad824f;
  border-radius: 50%;
}

#local ._pref .pref-title .icon::before {
  position: absolute;
  top: 14px;
  left: 8px;
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 5px;
  background: white;
}

#local ._pref .pref-title .icon::after {
  position: absolute;
  top: 14px;
  left: 8px;
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 5px;
  background: white;
  transform: rotate(90deg);
  transition: 0.5s;
}

#local ._pref .pref-title.active .icon::after {
  transform: rotate(0deg);
}

#local ._pref .box {
  display: none;
}

#local ._pref .box.show {
  display: block;
}

#local ._pref .list {
  margin-bottom: 40px;
}

#local ._pref .list li {
  width: 244px;
  background: #fbf4e5;
  margin-bottom: 13px;
}

#local ._pref .list li:not(:nth-child(3n)) {
  margin-right: 25px;
}

#local ._pref .list li a {
  display: block;
  color: #ad824f;
  line-height: 1.4;
}

#local ._pref .list li a .img {
  position: relative;
}

#local ._pref .list li a .img > img {
  width: 100%;
  height: auto;
}

#local ._pref .list li a .img .area {
  position: absolute;
  right: 0px;
  width: 115px;
  line-height: 26px;
  background: #3a9fbf;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #local ._pref .list li a .img .area {
    line-height: 20px;
  }
}

#local ._pref .list li .body {
  padding: 13px 32px 13px 13px;
}

#local ._pref .list li .body .name {
  position: relative;
}

#local ._pref .list li .body .name::before,
#local ._pref .list li .body .name::after {
  position: absolute;
  content: "";
}

#local ._pref .list li .body .name::before {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #ad824f;
}

#local ._pref .list li .body .name::after {
  top: 50%;
  transform: translateY(-50%);
  right: -17px;
  box-sizing: border-box;
  width: 8px;
  height: 7px;
  border: 3px solid transparent;
  border-left: 6px solid white;
}

@media screen and (max-width: 767px) {
  #local ._top .local-kv img,
  #local ._top .area-wrap {
    width: 100%;
  }
}

/* _pref */
@media screen and (max-width: 767px) {
  #local ._pref .list li {
    width: 49%;
    margin-bottom: 13px;
  }
  #local ._pref .list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  #local ._pref .list li:nth-child(odd) {
    margin-right: 2%;
  }
  #local ._pref .list li a .img img {
    width: 100%;
  }
}

/*
---------------------------------------------
local_single
---------------------------------------------
*/
#local_single ._detail .area {
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  #local_single ._detail .area {
    justify-content: center;
  }
}

#local_single ._detail .area .body {
  width: 391px;
}

@media screen and (max-width: 767px) {
  #local_single ._detail .area .body {
    margin-top: 30px;
  }
}

#local_single ._detail .area .box {
  width: 360px;
}

#local_single ._detail .profile {
  background: #fbf4e5;
  border-radius: 10px;
  padding: 30px 42px;
}

#local_single ._detail .profile .inner {
  flex-direction: row-reverse;
  justify-content: space-between;
}

#local_single ._detail .profile .body {
  width: 449px;
}

@media screen and (max-width: 767px) {
  #local_single ._detail .profile .body {
    width: 100%;
  }
}

#local_single ._detail .profile .profile-title {
  font-weight: bold;
  font-size: 16px;
  color: #fb8700;
  margin-bottom: 21px;
}

#local_single ._detail .profile .name {
  font-weight: bold;
  font-size: 20px;
  color: #ad824f;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  #local_single ._detail .profile .name {
    margin-top: 16px;
  }
}

#local_single ._detail .profile .name span {
  font-weight: 500;
  font-size: 14px;
  color: #ad824f;
  display: inline-block;
  margin-left: 10px;
}

#local_single ._detail .profile .body .text {
  font-size: 14px;
  line-height: 1.8;
}

#local_single ._detail .profile .img {
  width: 215px;
}

#local_single ._detail .profile .img img {
  border: solid 15px #f0e1c4;
}

#local_single ._detail .food {
  margin-bottom: 40px;
  padding: 24px;
  background-color: #fbf4e5;
}

@media screen and (max-width: 767px) {
  #local_single ._detail .food {
    padding: 10px;
  }
}

#local_single ._detail .flex-food {
  display: flex;
  flex-direction: column;
}

#local_single ._detail .flex-food .col {
  width: 100%;
  padding: 0 2%;
  display: flex;
  margin: 1em 0;
  line-height: 1.5;
}

#local_single ._detail .flex-food .col .text-area p {
  font-size: 16px;
  line-height: 1.5;
}

#local_single ._detail .flex-food .col .text-area p span {
  font-size: 80%;
  color: #888;
  display: block;
}

#local_single ._detail .flex-food .col .text-area .content {
  font-size: 14px;
  margin-top: 10px;
}

#local_single ._detail .flex-food .col .img {
  margin-right: 1em;
  display: inline-block;
}

#local_single ._detail .service-col {
  text-align: right;
  font-size: 80%;
}

#local_single ._detail .service-col .service-link {
  color: #ad824f;
  text-decoration: underline;
  line-height: 1.5;
}

#local_single ._detail .service-col .service-text {
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  #cooking_single ._detail .area .body,
  #cooking_single ._detail .area .img img {
    width: 100%;
  }
  #cooking_single ._detail iframe {
    max-width: 100%;
  }
  #cooking_single ._detail .profile .profile-title {
    margin-bottom: 21px;
  }
  #cooking_single ._detail .profile .body {
    width: 100%;
    margin-top: 10px;
  }
  #cooking_single ._detail .area .box {
    width: 100%;
  }
  #cooking_single ._detail .profile {
    padding: 25px 15px;
  }
  #cooking_single ._detail .profile .img {
    width: 130px;
  }
  #cooking_single ._detail .profile .img img {
    width: 100%;
    border: solid 10px #f0e1c4;
  }
  #cooking_single ._detail .profile .name {
    display: block;
    margin: 10px 0 0 10px;
    font-size: 18px;
  }
  #cooking_single ._detail .profile .name span {
    display: block;
    margin-left: 0;
    margin-top: 10px;
    font-size: 12px;
  }
}

/*
---------------------------------------------
error
---------------------------------------------
*/
/* _content */
#error ._content .text {
  line-height: 1.7;
  text-align: center;
  margin-bottom: 50px;
}

#error ._content .btn {
  width: 229px;
  line-height: 44px;
  border: 1px solid #ad824f;
  border-radius: 40px;
  margin: auto;
  font-size: 13px;
  color: #ad824f;
}

#error ._content .btn .icon {
  position: relative;
  padding-left: 25px;
}

#error ._content .btn .icon::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: #ad824f;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

#error ._content .btn .icon::after {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent #ffffff;
}

/*
---------------------------------------------
report
---------------------------------------------
*/
/* _top */
@media screen and (max-width: 767px) {
  #report .scroll-table {
    position: relative;
    width: 100%;
    overflow-x: scroll;
  }
  #report .scroll-table::-webkit-scrollbar {
    height: 5px;
  }
  #report .scroll-table::-webkit-scrollbar-track {
    margin: 0 2px;
    background: #fcf1d6;
    border-radius: 5px;
  }
  #report .scroll-table::-webkit-scrollbar-thumb {
    background: #fb8700;
  }
  #report .scroll-table::-webkit-scrollbar-track {
    background: #fcf1d6;
  }
  #report .scroll-table::-webkit-scrollbar-thumb {
    background: #fb8700;
  }
}

#report .inner {
  max-width: 800px;
  margin: 0 auto 39px;
}

#report ._top .lead {
  line-height: 1.5;
  margin-bottom: 40px;
}

#report .page-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #ad824f;
  margin-bottom: 34px;
}

#report ._top .text {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}

#report ._top .date {
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
  margin-bottom: 20px;
}

#report ._top .sub-title {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}

#report ._top .table {
  border: 2px solid #ad824f;
  box-sizing: border-box;
  width: 800px;
  font-size: 13px;
  margin-bottom: 14px;
}

#report ._top .table tr.active {
  background: #fcf1d6;
}

#report ._top .table th,
#report ._top .table td {
  border: 1px solid #ad824f;
  padding: 5px;
  vertical-align: middle;
}

#report ._top .table th {
  text-align: center;
  background: #faf9f8;
  padding: 5px 0;
  line-height: 1.2;
  width: 57px;
}

#report ._top .table td {
  text-align: right;
  width: 57px;
}

#report ._top .table td.text-center {
  text-align: center;
  width: 57px;
  padding: 5px 0px;
}

#report ._backnuber .year-title {
  position: relative;
  background: #ad824f;
  border-radius: 4px;
  font-size: 18px;
  color: white;
  padding: 13px 30px;
  margin-bottom: 10px;
  cursor: pointer;
}

#report ._backnuber .year-title .icon {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  background: #ad824f;
  border-radius: 50%;
}

#report ._backnuber .year-title .icon::before {
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 5px;
  background: white;
}

#report ._backnuber .year-title .icon::after {
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 5px;
  background: white;
  transform: rotate(90deg);
  transition: 0.5s;
}

#report ._backnuber .year-title.active .icon::after {
  transform: rotate(0deg);
}

#report ._backnuber .box {
  margin-left: 50px;
  margin-bottom: 30px;
  margin-top: 20px;
  display: none;
}

#report ._backnuber .box.show {
  display: block;
}

#report ._backnuber .list li {
  margin-bottom: 13px;
}

#report ._backnuber .list li a {
  text-decoration: underline;
  color: #393939;
}

@media screen and (max-width: 767px) {
  #report ._top .text {
    font-size: 16px;
  }
}

/* _backnuber */
@media screen and (max-width: 767px) {
  #report ._backnuber .box {
    margin-left: 15px;
  }
}

/*
---------------------------------------------
info
---------------------------------------------
*/
/* _content */
#info ._content .list {
  margin-bottom: 29px;
}

#info ._content .list li {
  border-bottom: 1px dotted #333;
  padding: 12px 0;
}

#info ._content .list li time {
  margin-right: 20px;
}

#info ._content .list li .category {
  padding: 5px 14px 3px;
  width: 76px;
  height: 23px;
  background: #cabb12;
  font-size: 12px;
  color: #ffffff;
  margin-right: 20px;
}

#info ._content .list li .category.blue {
  background: #3a9fbf;
}

#info ._content .list li a {
  color: #333;
}

#info ._content .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
}

#info ._content .wp-pagenavi a :not(:last-child) {
  margin-right: 10px;
}

#info ._content .wp-pagenavi a {
  border: 2px solid #fb8700;
  border-radius: 50%;
  color: #fb8700;
  font-size: 14px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
  padding: 0px;
  order: 1;
}

#info ._content .wp-pagenavi span {
  background: #fb8700;
  color: white;
  border: 2px solid #fb8700;
  border-radius: 50%;
  font-size: 14px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
  padding: 0px;
  order: 1;
}

#info ._content .wp-pagenavi .extend {
  background: none;
  color: #fb8700;
  border: none;
  border-radius: 0%;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
}

#info ._content .wp-pagenavi .previouspostslink {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-right: 25px solid #ad824f;
  border-bottom: 15px solid transparent;
  border-left: 0px;
  border-radius: 0%;
  margin-right: 15px;
  order: -1;
}

#info ._content .wp-pagenavi .nextpostslink {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 25px solid #ad824f;
  border-bottom: 15px solid transparent;
  border-right: 0px;
  border-radius: 0%;
  margin-left: 5px;
  margin-right: 0px;
  order: 2;
}

#info ._content .wp-pagenavi .leader a {
  color: #fb8700;
  font-weight: bold;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  #info ._content .list li time {
    font-size: 14px;
    margin-right: 10px;
  }
  #info ._content .list li .category {
    display: inline-block;
    margin-right: 0;
  }
  #info ._content .list li .tag {
    display: inline;
  }
  #info ._content .list li a {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 7px;
  }
  #info ._content .wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #info ._content .wp-pagenavi a :not(:last-child) {
    margin-right: 5px;
  }
  #info ._content .wp-pagenavi a {
    border: 2px solid #fb8700;
    border-radius: 50%;
    color: #fb8700;
    font-size: 12px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 25px;
    margin-right: 5px;
    padding: 0px;
    order: 1;
  }
  #info ._content .wp-pagenavi span {
    background: #fb8700;
    color: white;
    border: 2px solid #fb8700;
    border-radius: 50%;
    font-size: 12px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 25px;
    margin-right: 5px;
    padding: 0px;
    order: 1;
  }
  #info ._content .wp-pagenavi .extend {
    background: none;
    color: #fb8700;
    border: none;
    border-radius: 0%;
    font-size: 10px;
    text-align: center;
    line-height: 30px;
    margin-right: 2px;
  }
  #info ._content .wp-pagenavi .previouspostslink {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 15px solid #ad824f;
    border-bottom: 10px solid transparent;
    border-left: 0px;
    border-radius: 0%;
    margin-right: 5px;
    order: -1;
  }
  #info ._content .wp-pagenavi .nextpostslink {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 15px solid #ad824f;
    border-bottom: 10px solid transparent;
    border-right: 0px;
    border-radius: 0%;
    margin-left: 5px;
    margin-right: 0px;
    order: 2;
  }
}

/*
---------------------------------------------
info_single
---------------------------------------------
*/
/* _content */
#info_single ._content .title-wrap {
  border-bottom: 1px dotted #333;
  padding-bottom: 11px;
  margin-bottom: 69px;
}

#info_single ._content .title-wrap time {
  padding-bottom: 5px;
}

#info_single ._content .title-wrap.is-nowrap {
  flex-wrap: nowrap;
  align-items: flex-end;
}

#info_single ._content .title-wrap .page-title {
  font-size: 24px;
  margin-right: auto;
  line-height: 1.3;
}

#info_single ._content .title-wrap .category {
  padding: 5px 14px 3px;
  width: 76px;
  height: 23px;
  background: #cabb12;
  font-size: 12px;
  color: #ffffff;
  margin-left: 20px;
}

#info_single ._content .title-wrap .category.blue {
  background: #3a9fbf;
}

#info_single ._content .box {
  border-bottom: 1px dotted #333;
  padding-bottom: 69px;
  margin-bottom: 49px;
}

#info_single ._content .box .text {
  line-height: 1.6;
}

#info_single ._content .pagination {
  position: relative;
}

#info_single ._content .pagination li a {
  position: relative;
  display: block;
  border: 2px solid #fb8700;
  border-radius: 4px;
  padding: 15px 11px;
  color: #fb8700;
}

#info_single ._content .pagination .prev,
#info_single ._content .pagination .next {
  width: 110px;
  position: absolute;
}

#info_single ._content .pagination .prev {
  left: 0;
}

#info_single ._content .pagination .next {
  right: 0;
}

#info_single ._content .pagination .list-top {
  position: absolute;
  width: 130px;
  left: 50%;
  transform: translateX(-50%);
}

#info_single ._content .pagination .prev a {
  padding: 15px 11px 15px 45px;
}

#info_single ._content .pagination .next a {
  padding: 15px 11px 15px 31px;
}

#info_single ._content .pagination .list-top a {
  padding: 15px 20px;
  height: 50px;
}

#info_single ._content .pagination .list-top a i {
  margin-right: 13px;
}

#info_single ._content .pagination .next a::before,
#info_single ._content .pagination .next a::after {
  position: absolute;
  content: "";
}

#info_single ._content .pagination .prev a::before,
#info_single ._content .pagination .prev a::after {
  position: absolute;
  content: "";
}

#info_single ._content .pagination .prev a::before {
  left: 11px;
  top: 52%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fb8700;
}

#info_single ._content .pagination .prev a::after {
  left: 16px;
  top: 52%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 7px 4px 0;
  border-color: transparent #ffffff transparent transparent;
}

#info_single ._content .pagination .next a::before {
  right: 11px;
  top: 52%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fb8700;
}

#info_single ._content .pagination .next a::after {
  right: 16px;
  top: 52%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #ffffff;
}

#info_single ._content .event_entry_btn {
  background: #ffffff;
  border: 2px solid #fb8700;
  box-sizing: border-box;
  border-radius: 50px;
  color: #fb8700;
  display: block;
  font-size: 15px;
  padding: 7px 0;
  width: 200px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
}

#info_single ._content .event_entry_btn:nth-of-type(n + 2) {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  #info_single ._content {
    padding-bottom: 20px;
  }
  #info_single ._content .title-wrap {
    border-bottom: 1px dotted #333;
    padding-bottom: 18px;
    margin-bottom: 32px;
  }
  #info_single ._content .title-wrap .page-title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  #info_single ._content .title-wrap .category {
    display: inline-block;
    margin-left: 15px;
  }
  #info_single ._content .box {
    padding-bottom: 52px;
    margin-bottom: 50px;
  }
  #info_single ._content .pagination .prev,
  #info_single ._content .pagination .next {
    width: 80px;
  }
  #info_single ._content .pagination .list-top {
    width: 110px;
  }
  #info_single ._content .pagination li a {
    font-size: 14px;
  }
  #info_single ._content .pagination .prev a {
    padding: 15px 9px 15px 39px;
  }
  #info_single ._content .pagination .next a {
    padding: 15px 39px 15px 9px;
  }
  #info_single ._content .pagination .list-top a {
    padding: 15px 18px;
  }
}

/*
---------------------------------------------
_login
---------------------------------------------
*/
/* _login */
#home ._login {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.5s;
  cursor: pointer;
}

#home ._login.show {
  display: block;
  animation: loginShow 0.3s linear 0s;
}

#home ._login .inner {
  height: 100%;
}

#home ._login .box {
  width: 680px;
  background: #ffffff;
  border: 9px solid #f0e1c4;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 68px 110px;
  cursor: default;
}

#home ._login .box .login-title {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-bottom: 22px;
}

#home ._login .box .sub-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 9px;
}

#home ._login .box input[type="text"] {
  border: 1px solid #ad824f;
  width: 100%;
  margin-bottom: 27px;
  padding: 10px;
}

#home ._login .box .btn {
  padding: 12px 12px;
  max-width: 230px;
  height: 60px;
  border: 2px solid #3a9fbf;
  border-radius: 40px;
  color: #3a9fbf;
  font-size: 18px;
  margin: auto;
}

#home ._login .box .btn::before {
  content: "";
  background: url(../images/ico_login.svg) center/cover;
  width: 25px;
  height: 29px;
  margin-right: 14px;
}

#home ._login .box .btn.entry {
  color: #e23e34;
  border: 2px solid #e23e34;
}

#home ._login .box .btn.entry::before {
  content: "";
  background: url(../images/ico_signup.svg) center/cover;
  width: 36px;
  height: 41px;
  margin-right: 4px;
}

#home ._login .box .text {
  text-align: center;
  font-size: 14px;
  margin: 18px 0 58px;
}

#home ._login .box .text a {
  color: #393939;
  text-decoration: underline;
}

@keyframes loginShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  #home ._login {
    padding: 0 15px;
  }
  #home ._login .box {
    width: 100%;
    padding: 44px 30px;
  }
  #home ._login .box .btn {
    margin-bottom: 47px;
  }
  #home ._login .box .btn.entry {
    margin-bottom: 0;
  }
}

/*
---------------------------------------------
mypage
---------------------------------------------
*/
.login-area {
  max-width: 460px;
  margin: 0 auto;
}

#mypage .mypage-inner {
  max-width: 800px;
  margin: 0 auto 39px;
}

#mypage ._mypage .list-table ._material a {
  color: #333;
  text-decoration: underline;
}

#mypage ._content .tab {
  border-bottom: 4px solid #ad824f;
  margin-bottom: 38px;
}

#mypage ._content .tab li {
  width: 50%;
}

#mypage ._content .tab li a {
  background: #e3d2bd;
  border-radius: 3px 3px 0px 0px;
  color: #ad824f;
  display: block;
  width: 100%;
  padding: 14px 0 11px;
  text-align: center;
}

#mypage ._content .tab li a.is-active {
  background: #ad824f;
  color: white;
  padding: 20px 0;
}

#mypage ._content .list {
  display: none;
}

#mypage ._content .list.is-show {
  display: block;
}

#mypage ._content .list > li {
  border-bottom: dotted 1px #333;
  padding-bottom: 23px;
  margin-bottom: 38px;
}

#mypage ._content .list li .img {
  position: relative;
  width: 223px;
  height: auto;
  overflow: hidden;
}

#mypage ._content .list li .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

#mypage ._content .list li .body {
  width: 507px;
}

#mypage ._content .list li .body .page-title a {
  display: block;
  font-weight: bold;
  font-size: 18px;
  text-decoration-line: underline;
  color: #393939;
  margin-bottom: 11px;
  line-height: 1.4;
}

#mypage ._content .list li .body .text {
  line-height: 1.5;
  margin-bottom: 42px;
}

#mypage ._content .list li .category {
  color: white;
  display: inline-block;
  font-size: 12px;
  padding: 7px 10px;
  margin-top: auto;
  margin-right: 5px;
  width: 85px;
  text-align: center;
}

#mypage ._content .list li .wrap {
  justify-content: space-between;
}

#mypage ._content .list li .healthy {
  background: #705eca;
}

#mypage ._content .list li .full {
  background: #54ab2b;
}

#mypage ._content .list li .minutes {
  background: #3a9fbf;
}

#mypage ._content .list li .hospitality {
  background: #cabb12;
}

#mypage ._content .list li .del {
  position: relative;
  font-weight: bold;
  font-size: 12px;
  color: #5e5e5e;
  padding-left: 17px;
  line-height: 1.3;
}

#mypage ._content .list li .del::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "×";
  width: 13px;
  height: 13px;
  background: #5e5e5e;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  padding: 0 0 0 1px;
  box-sizing: border-box;
}

#mypage ._content .pagination li:not(:last-child) {
  margin-right: 14px;
}

#mypage ._content .pagination .num a {
  border: 2px solid #fb8700;
  border-radius: 50%;
  color: #fb8700;
  display: block;
  font-size: 14px;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 22px;
}

#mypage ._content .pagination .num.is-active a {
  background: #fb8700;
  color: white;
}

#mypage ._content .pagination .leader a {
  color: #fb8700;
  font-weight: bold;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  #mypage ._content .tab {
    height: auto;
    margin-bottom: 15px;
    border-bottom: 2px solid #ad824f;
  }
  #mypage ._content .tab li a.is-active {
    background: #ad824f;
    color: white;
    padding: 18px 0 12px;
  }
  #mypage ._content .list > li {
    padding-bottom: 17px;
    margin-bottom: 11px;
  }
  #mypage ._content .list li .img {
    width: 110px;
  }
  #mypage ._content .list li .body {
    width: calc(100% - 125px);
  }
  #mypage ._content .list li .body .page-title a {
    font-size: 16px;
  }
  #mypage ._content .list li .body .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  #mypage ._content .list li .tag li {
    margin-bottom: 6px;
  }
  #mypage ._content .list li .del {
    width: 102px;
    display: block;
    margin-left: auto;
  }
  #mypage ._content .pagination li:not(:last-child) {
    margin-right: 5px;
  }
}

.modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 68px;
  max-width: 680px;
  max-height: 694px;
  background: #ffffff;
  border: 9px solid #f0e1c4;
  box-sizing: border-box;
  border-radius: 10px;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .modal {
    max-width: 96%;
    max-height: 96%;
    padding: 12% 7%;
    overflow: auto;
    transition: 0.3s;
  }
}

.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.modal-outer {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-contents {
  margin-bottom: 24px;
}

.modal-contents._free {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .modal-contents {
    margin-bottom: 48px;
  }
  .modal-contents:last-child {
    margin-bottom: 0;
  }
}

.modal-ttl {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group dt {
  font-weight: bold;
  font-size: 18px;
}

.form-parts {
  width: 460px;
  height: 40px;
  border: 1px solid #ad824f;
  margin: 9px 0;
  padding: 4px 8px;
}

@media screen and (max-width: 767px) {
  .form-parts {
    width: 100%;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

.btn-center {
  text-align: center;
}

.btn-login {
  color: #3a9fbf;
  background: transparent;
  outline: none;
  width: 230px;
  height: 60px;
  border: 1px solid #3a9fbf;
  border-radius: 40px;
  margin: 0;
  cursor: pointer;
}

.btn-login > span {
  display: inline-block;
  padding-left: 36px;
  background: url(../images/ico_login.svg) no-repeat 0 0;
  background-size: 26px auto;
  line-height: 2;
}

.btn-signup {
  color: #e23e34;
  background: transparent;
  outline: none;
  width: 240px;
  height: 60px;
  border: 1px solid #e23e34;
  border-radius: 40px;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-signup > span {
  display: inline-block;
  padding-left: 36px;
  background: url(../images/ico_signup.svg) no-repeat 0 0;
  background-size: 26px auto;
  line-height: 2;
}

.password-remind {
  color: #393939;
  font-size: 14px;
  text-align: center;
  margin: 18px 0 50px;
}

.password-remind a {
  text-decoration: underline;
}

.password-remind a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .password-remind {
    display: block;
    font-size: 12px;
  }
}

.tab-menu {
  display: flex;
  align-items: flex-end;
  height: 68px;
  margin-bottom: 38px;
  border-bottom: 4px solid #ad824f;
}

@media screen and (max-width: 767px) {
  .tab-menu {
    height: 48px;
  }
}

[data-select] {
  width: 50%;
  text-align: center;
  border-radius: 6px 6px 0 0;
  color: #ad824f;
  background: #e3d2bd;
  font-size: 16px;
  font-weight: bold;
  height: 49px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

[data-select]:hover {
  height: 54px;
  transition: 0.3s;
}

[data-select].active {
  color: #fff;
  background: #ad824f;
  height: 64px;
}

@media screen and (max-width: 767px) {
  [data-select] {
    font-size: 13px;
    height: 38px;
  }
}

@media screen and (max-width: 767px) {
  [data-select]:hover {
    height: 44px;
  }
}

@media screen and (max-width: 767px) {
  [data-select].active {
    height: 48px;
  }
}

[data-tab] {
  display: none;
}

[data-tab].active {
  display: block;
}

.btn-delete-favorit {
  background-color: transparent;
  border: none;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  padding-left: 20px;
  background: url(../images/ico_close.svg) no-repeat 0 50%;
  background-size: 13px 13px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .btn-delete-favorit {
    text-align: left;
    line-height: 1.3;
  }
}

.entry-table {
  width: 100%;
  border-collapse: collapse;
  margin: 36px 0;
  font-size: 14px;
  table-layout: fixed;
}

.entry-table tr:nth-child(odd) {
  background-color: #faf9f8;
}

.entry-table th {
  width: 233px;
  padding: 18px;
  border: 1px solid #ad824f;
  vertical-align: middle;
  font-size: 14px;
  font-weight: bold;
}

.entry-table td {
  width: calc(100% - 233px);
  padding: 20px;
  border: 1px solid #ad824f;
}

.entry-table td.multi-col-area {
  padding-bottom: 0px;
}

.entry-table td.multi-col-area .form-field {
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .entry-table {
    border-bottom: 1px solid #ad824f;
  }
  .entry-table th,
  .entry-table td {
    display: block;
    width: 100%;
  }
  .entry-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }
  .entry-table td {
    border-top: none;
    border-bottom: none;
    padding-top: 6px;
  }
}

.multiple {
  font-size: 12px;
}

.list-group {
  display: inline-block;
}

.list-group._block > li,
.list-group._full {
  display: block;
}

.list-group > li {
  display: inline;
}

.form-field {
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"] {
  width: 100%;
  height: 32px;
  border: 1px solid #393939;
  padding: 4px;
}

.form-field textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #393939;
}

.form-field._flex {
  width: 100%;
  display: flex;
}

.form-field._flex span {
  width: 24px;
  display: inline-block;
}

.form-field__count {
  width: 22px;
  height: 22px;
  font-size: 13px;
  font-weight: bold;
  line-height: 22px;
  border-radius: 50%;
  color: #fff;
  background-color: #393939;
  text-align: center;
  margin-right: 10px;
}

.form-field__textarea {
  flex-basis: 100%;
}

.form-field._short input {
  width: 94px;
  vertical-align: bottom;
}

.form-field._entry {
  width: 46.5%;
}

.form-field._entry._select {
  position: relative;
}

@media screen and (max-width: 767px) {
  .form-field._entry._select {
    width: 58%;
  }
}

.form-field._note {
  margin-bottom: 0px;
}

.servings-area {
  margin-bottom: 24px;
}

.table-material {
  border: none;
  width: 100%;
}

.table-material tr:nth-child(odd) {
  background: transparent;
  border: none;
}

.table-material th,
.table-material td {
  padding: 0;
  border: none;
  background: transparent;
}

.table-material input[type="text"],
.table-material input[type="email"] {
  height: 32px;
  border: 1px solid #393939;
  padding: 4px;
}

.table-material .food-area {
  width: 394px;
  margin-right: 6px;
}

.table-material .food-area input[type="text"] {
  width: 394px;
}

.table-material .quantity-area {
  width: 88px;
  margin-left: 6px;
}

.table-material .quantity-area input[type="text"] {
  width: 88px;
}

.table-material .list-table {
  margin-top: 8px;
}

.table-material .list-table li {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .table-material .food-area {
    width: calc(100% - 66px);
    margin-right: 6px;
  }
  .table-material .food-area input[type="text"] {
    width: calc(100% - 66px);
  }
  .table-material .quantity-area {
    width: 40px;
    margin-left: 6px;
  }
  .table-material .quantity-area input[type="text"] {
    width: 50px;
  }
}

.required {
  color: #e23e34;
  font-size: 12px;
  margin-left: 6px;
  font-weight: normal;
}

.pasta-category {
  display: table;
  width: 100%;
  margin-bottom: 24px;
  border-bottom: 1px dashed #000000;
}

.pasta-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.pasta-category:last-child dd {
  padding-bottom: 0;
}

.pasta-category dt,
.pasta-category dd {
  display: table-cell;
  vertical-align: top;
}

.pasta-category dt {
  width: 120px;
}

.pasta-category dd {
  padding-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .pasta-category dt {
    width: 90px;
  }
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.radio-group:last-child {
  margin-bottom: 0;
}

.radio-group:last-child li {
  margin-bottom: 0;
}

.radio-group li {
  margin-right: 1em;
  margin-bottom: 1em;
}

.radio-group label {
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .radio-group {
    flex-direction: column;
  }
  .radio-group._gutter {
    margin-left: 90px;
  }
}

.check-group {
  display: flex;
  flex-wrap: wrap;
}

.check-group:last-child li {
  margin-bottom: 0;
}

.check-group li {
  margin-right: 1em;
  margin-bottom: 1em;
}

.check-group label {
  margin-left: 5px;
}

.text {
  margin-bottom: 1em;
}

._mypage .btn {
  position: relative;
  background: #ffffff;
  border: 2px solid #fb8700;
  box-sizing: border-box;
  border-radius: 50px;
  color: #fb8700;
  display: block;
  font-size: 16px;
  padding: 12px 0;
  width: 220px;
  border-radius: 50px;
  text-align: center;
  margin: 54px auto 100px;
  cursor: pointer;
}

._mypage .btn::before {
  position: absolute;
  top: 47%;
  left: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #fb8700 #fb8700 transparent transparent;
  transform: rotate(45deg) translateY(-50%);
  content: "";
}

._mypage .btn._small {
  position: relative;
  background: #ffffff;
  border: 2px solid #fb8700;
  box-sizing: border-box;
  border-radius: 36px;
  color: #fb8700;
  display: inline-block;
  font-size: 12px;
  padding: 7px 0;
  width: 158px;
  margin: 12px auto 0;
}

._mypage .btn._small::before {
  position: absolute;
  top: 47%;
  left: 15px;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: #fb8700 #fb8700 transparent transparent;
  transform: rotate(45deg) translateY(-50%);
  content: "";
}

.file-upload {
  position: relative;
  background: #ffffff;
  border: 2px solid #fb8700;
  box-sizing: border-box;
  border-radius: 36px;
  color: #fb8700;
  display: inline-block;
  font-size: 12px;
  padding: 7px 0;
  width: 158px;
  margin: 12px auto 0;
  text-align: center;
  cursor: pointer;
}

.file-upload:hover {
  opacity: 0.8;
}

.file-upload::before {
  position: absolute;
  top: 47%;
  left: 15px;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: #fb8700 #fb8700 transparent transparent;
  transform: rotate(45deg) translateY(-50%);
  content: "";
}

input[type="file"] {
  display: none;
}

.entry-form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entry-form-note {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.atmark {
  width: 7%;
  height: 32px;
  text-align: center;
}

._entry input[type="password"],
._entry select {
  width: 100%;
  height: 32px;
  border: 1px solid #393939;
  padding: 4px;
}

._entry ._flex {
  display: flex;
  align-items: center;
}

._entry ._flex li {
  margin-right: 1em;
}

._entry ._flex input {
  margin-right: 4px;
}

.privacy {
  background-color: #e3d2bd;
  margin-bottom: 30px;
  padding: 36px;
  border-radius: 8px;
}

.privacy__list {
  line-height: 1.2;
}

.privacy__list li {
  margin: 14px 0;
}

.privacy__list a {
  color: #333;
  text-decoration: underline;
}

.privacy__ttl {
  font-size: 14px;
  line-height: 20px;
  color: #e23e34;
  margin-top: 32px;
  margin-bottom: 8px;
}

.privacy__txt {
  color: #e23e34;
  line-height: 1.71;
  font-size: 14px;
}

.terms {
  border: 1px solid #ad824f;
  box-sizing: border-box;
  border-radius: 8px;
  margin-bottom: 36px;
  height: 164px;
  padding: 0 0 0 32px;
}

@media screen and (max-width: 767px) {
  .terms {
    padding: 0 0 0 20px;
  }
}

.terms__contents {
  font-size: 14px;
  height: 100%;
  padding: 32px 32px 32px 0;
  line-height: 1.5;
  overflow: scroll;
}

@media screen and (max-width: 767px) {
  .terms__contents {
    padding: 20px 20px 20px 0;
  }
}

.terms__contents h2 {
  margin: 2em 0 0.75em;
}

.terms__contents p,
.terms__contents ol,
.terms__contents ul,
.terms__contents dl {
  margin-bottom: 1em;
}

.terms__contents ol,
.terms__contents ul {
  margin-left: 1.5em;
}

.terms__contents ul li {
  list-style-type: disc;
  margin-bottom: 0.5em;
}

.terms__contents ol li {
  list-style-type: decimal;
  margin-bottom: 0.5em;
}

.terms__ttl {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 12px;
}

.terms__txt {
  font-size: 14px;
  line-height: 26px;
}

.terms-check {
  text-align: center;
  font-size: 16px;
  line-height: 17px;
}

.terms-check input {
  margin-right: 4px;
  vertical-align: middle;
}

.password-reissue {
  font-size: 18px;
  line-height: 1.77;
  text-align: center;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .password-reissue {
    text-align: left;
  }
}

.email-field {
  max-width: 460px;
  margin: 0 auto;
}

.email-field input {
  width: 100%;
  height: 32px;
  padding: 4px;
  border: 1px solid #393939;
}

.button-group {
  display: flex;
  padding: 0 15%;
}

@media screen and (max-width: 767px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  .button-group .btn {
    margin: 0 0 20px;
  }
}

.button-group .btn--submit {
  background-color: #fb8700;
  color: #fff;
}

.button-group .btn--submit::before {
  border-right-color: #fff;
  border-top-color: #fff;
}

.text-complete {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.75;
}

.btn.btn--complete {
  background: #ffffff;
  border: 2px solid #ad824f;
  box-sizing: border-box;
  border-radius: 50px;
  color: #ad824f;
  display: block;
  font-size: 16px;
  padding: 12px 0;
  width: 220px;
  border-radius: 50px;
  text-align: center;
  margin: 54px auto 100px;
  cursor: pointer;
}

.btn.btn--complete span {
  position: relative;
  padding-left: 30px;
}

.btn.btn--complete span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ad824f;
}

.btn.btn--complete span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  box-sizing: border-box;
  width: 16px;
  height: 9px;
  border: 4px solid transparent;
  border-left: 6px solid #fff;
}

/*
---------------------------------------------
post
---------------------------------------------
*/
/* _post */
#post ._post .lead {
  margin-bottom: 36px;
}

#post ._post .table {
  border: 1px solid #ad824f;
  border-radius: 4px;
  margin-bottom: 25px;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

#post ._post .table tr:not(:last-child) > th,
#post ._post .table tr:not(:last-child) > td {
  border-bottom: 1px solid #ad824f;
}

#post ._post .table tr:nth-child(odd) {
  background: #faf9f8;
}

#post ._post .table tr th {
  font-weight: bold;
  font-size: 14px;
  width: 220px;
  vertical-align: middle;
  border-right: 1px solid #ad824f;
  border-radius: 3px 0px 0px 0;
  text-align: left;
  padding: 19px;
}

#post ._post .table tr:last-child th {
  border-radius: 0px 0px 0 3px;
}

#post ._post .table td {
  padding: 19px 21px;
  width: calc(100% - 220px);
  border-radius: 0px 3px 0 0px;
}

#post ._post .table tr:last-child td {
  border-radius: 0px 0px 3px 0;
}

#post ._post .table td p {
  font-size: 14px;
}

#post ._post .table td .font-sm {
  font-size: 16px;
}

#post ._post .table td .mb {
  margin-bottom: 23px;
}

#post ._post .required {
  font-size: 12px;
  color: #e23e34;
  margin-left: 9px;
}

#post ._post .sup {
  display: block;
  font-size: 12px;
}

#post ._post .btn {
  background: #ffffff;
  border: 1px solid #fb8700;
  border-radius: 36px;
  display: inline-block;
  color: #fb8700;
  width: 158px;
  text-align: center;
  line-height: 30px;
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
}

#post ._post .btn::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fb8700;
  border-right: 1px solid #fb8700;
  transform: rotate(45deg);
  margin-right: 7px;
}

#post ._post .w-bl {
  width: 100%;
}

#post ._post .w-sm {
  width: 93px;
}

#post ._post .w-md {
  width: 402px;
}

#post ._post .w-xs {
  width: 93px;
}

#post ._post textarea,
#post ._post input[type="text"] {
  padding: 5px;
  border-radius: 0;
  border: solid 1px #333;
  margin-bottom: 5px;
}

#post ._post textarea {
  height: 122px;
}

#post ._post .ingredients {
  justify-content: space-between;
  margin-top: 23px;
}

#post ._post .ingredients dt {
  width: calc(100% - 93px);
  margin-bottom: 10px;
}

#post ._post .ingredients dd {
  width: 93px;
}

#post ._post .num-list {
  counter-reset: item 0;
}

#post ._post .num-list li {
  position: relative;
  margin-bottom: 21px;
}

#post ._post .num-list li::before {
  display: inline-block;
  content: counter(item);
  counter-increment: item 1;
  color: white;
  font-size: 13px;
  background: #393939;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-align: center;
  vertical-align: top;
  margin-right: 7px;
}

#post ._post .num-list textarea {
  width: calc(100% - 33px);
}

#post ._post .category dt {
  font-size: 14px;
  width: 100px;
}

#post ._post .category dd {
  width: calc(100% - 100px);
}

#post ._post .category dt:not(:last-of-type) {
  border-bottom: dotted 1px #333;
  margin-bottom: 30px;
  padding-bottom: 13px;
}

#post ._post .category dd:not(:last-of-type) {
  border-bottom: dotted 1px #333;
  margin-bottom: 30px;
  padding-bottom: 13px;
}

#post ._post .category dd .flex-col-center {
  margin-bottom: 7px;
}

#post ._post .admin-form input[type="radio"] {
  display: none;
  font-size: 16px;
}

#post ._post .admin-form .radio-label {
  position: relative;
  padding-left: 21px;
  font-size: 14px;
  margin-right: 17px;
}

#post ._post .admin-form .radio-label::before {
  position: absolute;
  left: 0;
  top: 3px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  height: 14px;
  width: 14px;
  content: "";
}

#post ._post .admin-form .radio-label::after {
  position: absolute;
  left: 4px;
  top: 50%;
  background: #333;
  border-radius: 50%;
  content: "";
  display: block;
  margin-top: -4px;
  opacity: 0;
  height: 8px;
  width: 8px;
}

#post ._post .admin-form input[type="radio"]:checked + .radio-label::after {
  opacity: 1;
}

/*
---------------------------------------------
history
---------------------------------------------
*/
/* _history */
#history ._history .page-title {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.3;
  text-align: center;
  color: #fb8700;
  margin-bottom: 40px;
}

#history ._history .box {
  margin-bottom: 80px;
}

#history ._history .box-inner {
  width: 100%;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  #history ._history .box-inner {
    padding-top: 55px;
  }
}

#history ._history .box-inner.is-gray {
  background-color: #faf9f8;
}

#history ._history .box-inner.is-top-narrow {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  #history ._history .box-inner.is-top-narrow {
    padding: 0px;
  }
}

#history ._history .box.is-wide {
  max-width: 1100px;
  margin: 0 auto;
}

#history ._history .box-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #history ._history .box-wrap {
    padding: 0 10px;
  }
}

#history ._history .box .body {
  width: 700px;
  margin: 0 auto;
}

#history ._history .box .body02 {
  width: 500px;
}

#history ._history .box .text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#history ._history .box .img-wrap {
  width: calc(100% - 550px);
}

@media screen and (max-width: 767px) {
  #history ._history .box .img-wrap {
    padding-bottom: 45px;
  }
}

#history ._history .box .img {
  margin: auto;
}

#history ._history .box .img:last-child {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #history ._history .box {
    margin-bottom: 40px;
  }
  #history ._history .box .img-wrap,
  #history ._history .box .body02,
  #history ._history .box .body,
  #history ._history .box .img-wrap img {
    width: 100%;
  }
}

/*
---------------------------------------------
activity
---------------------------------------------
*/
/* _activity */
#activity ._activity .contents-inner {
  padding: 0;
}

#activity ._activity .bg {
  background: url(../images/activity_bg01.jpg) no-repeat center/cover;
  padding: 100px 160px;
}

#activity ._activity .list li {
  position: relative;
}

#activity ._activity .list li .list-title {
  position: relative;
  top: 41px;
  font-weight: bold;
  font-size: 24px;
  color: #6f5230;
  margin-bottom: 17px;
  padding-left: 30px;
}

#activity ._activity .list li:not(:last-of-type) {
  border-bottom: 1px dotted #333;
  padding-bottom: 58px;
}

#activity ._activity .list li .list-title::before {
  position: absolute;
  left: 0;
  content: "";
  background: url(../images/ico_recipe.png) no-repeat center/cover;
  width: 20px;
  height: 20px;
}

#activity ._activity .list li .list-title.picup::before {
  background: url(../images/icon_picup.png) no-repeat center/cover;
  height: 23px;
}

#activity ._activity .list li .list-title.info::before {
  background: url(../images/icon_info.png) no-repeat center/cover;
  height: 21px;
}

#activity ._activity .list li .list-title.others::before {
  background: url(../images/icon_others.png) no-repeat center/cover;
  height: 21px;
}

#activity ._activity .list li .body {
  width: calc(100% - 270px);
  margin-top: 41px;
}

#activity ._activity .list li .body .text {
  color: #6f5230;
  line-height: 1.7;
}

#activity ._activity .list li .img {
  width: 254px;
  margin-left: 16px;
}

#activity ._activity .list li .img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  #activity ._activity {
    margin-top: 100px;
    margin-bottom: 170px;
  }
  #activity ._activity .bg {
    position: relative;
    background: none;
    padding: 0;
  }
  #activity ._activity .bg .inner {
    background: #faf9f8;
    padding: 0 15px;
  }
  #activity ._activity .bg::before {
    position: absolute;
    top: -12vw;
    content: "";
    background: url(../images/activity_bg01_sp01.png) no-repeat top/cover;
    height: 12vw;
    width: 100%;
  }
  #activity ._activity .bg::after {
    position: absolute;
    bottom: -20vw;
    content: "";
    background: url(../images/activity_bg01_sp02.png) no-repeat top/cover;
    height: 20vw;
    width: 100%;
  }
  #activity ._activity .list li .list-title {
    top: 0;
  }
  #activity ._activity .list li:not(:last-of-type) {
    border-bottom: 1px dotted #333;
    padding-bottom: 24px;
    margin-bottom: 37px;
  }
  #activity ._activity .list li .body {
    width: 100%;
    margin-top: 0;
  }
  #activity ._activity .list li .img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 17px;
  }
}

/*
---------------------------------------------
sitemap
---------------------------------------------
*/
/* _sitemap */
#sitemap ._sitemap .page-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

#sitemap ._sitemap .page-title a {
  position: relative;
  padding-right: 30px;
  color: #6f5230;
}

#sitemap ._sitemap .page-title a::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #ad824f;
  border-radius: 50%;
  width: 19px;
  height: 19px;
  content: "";
}

#sitemap ._sitemap .page-title a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  right: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent white;
}

#sitemap ._sitemap .box:not(:last-of-type) {
  border-bottom: dotted 1px #333;
  margin-bottom: 20px;
}

#sitemap ._sitemap .list li {
  position: relative;
  padding-left: 13px;
  min-width: 24%;
  margin-bottom: 20px;
  margin-right: 1%;
}

#sitemap ._sitemap .list li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent #ad834f;
}

#sitemap ._sitemap .list li a {
  color: #5e5e5e;
}

@media screen and (max-width: 767px) {
  #sitemap ._sitemap .list {
    margin-left: 10px;
  }
  #sitemap ._sitemap .list li {
    min-width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
  }
}

/*
---------------------------------------------
question
---------------------------------------------
*/
/* _question */
#question ._question .contents-inner {
  padding: 0;
}

#question ._question .bg {
  background: url(../images/activity_bg01.jpg) no-repeat center/contain;
  padding: 100px 160px;
  min-height: 1298px;
}

#question ._question .page-title {
  position: relative;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #6f5230;
  margin-bottom: 35px;
  line-height: 1.3;
  z-index: 1;
}

#question ._question .list:not(:last-of-type) {
  border-bottom: 1px dotted #333;
  padding-bottom: 20px;
  margin-bottom: 27px;
}

#question ._question .list .list-title {
  font-size: 20px;
  color: #6f5230;
  margin-bottom: 20px;
  width: calc(100% - 48px);
  line-height: 1.4;
}

#question ._question .list .que {
  content: "Q";
  display: inline-block;
  background: #fb8700;
  border: 2px solid #fb8700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: white;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
  padding-top: 4px;
  margin-right: 20px;
}

#question ._question .list .ans {
  content: "A";
  display: inline-block;
  border: 2px solid #fb8700;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: #fb8700;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
  padding-top: 4px;
  margin-right: 20px;
}

#question ._question .list .body {
  width: calc(100% - 48px);
}

#question ._question .list .text {
  position: relative;
  color: #6f5230;
  line-height: 1.6;
}

#question ._question .list .box {
  margin-top: 20px;
}

#question ._question .list .img {
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  #question ._question {
    margin-bottom: 200px;
    margin-top: 100px;
  }
  #question ._question .bg {
    position: relative;
    background: none;
    padding: 0;
    min-height: auto;
    margin-top: 80px;
  }
  #question ._question .bg .inner {
    background: #faf9f8;
    padding: 0 15px;
  }
  #question ._question .bg::before {
    position: absolute;
    top: -12vw;
    content: "";
    background: url(../images/activity_bg01_sp01.png) no-repeat top/cover;
    height: 12vw;
    width: 100%;
  }
  #question ._question .bg::after {
    position: absolute;
    bottom: -20vw;
    content: "";
    background: url(../images/activity_bg01_sp02.png) no-repeat top/cover;
    height: 20vw;
    width: 100%;
  }
  #question ._question .list .img {
    margin: 0 0 10px;
  }
  #question ._question .list .img img {
    width: 100%;
  }
}

/*
---------------------------------------------
boil
---------------------------------------------
*/
/* _boil */
#boil ._boil .inner {
  max-width: 990px;
  margin: auto;
}

#boil ._boil .lead {
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

#boil ._boil .page-title {
  position: relative;
  height: 81px;
  background: #fcf1d6;
  font-weight: bold;
  font-size: 22px;
  color: #ad824f;
  padding-left: 24px;
  margin-bottom: 40px;
}

#boil ._boil .page-title::before {
  display: inline-block;
  content: "";
  background: url(../images/icon_boil01.png) no-repeat center/cover;
  width: 57px;
  height: 52px;
  margin-right: 14px;
}

#boil ._boil .page-title.icon02::before {
  background: url(../images/icon_boil02.png) no-repeat center/cover;
  width: 46px;
  height: 52px;
}

#boil ._boil .youtube {
  position: relative;
  width: 656px;
  padding-top: 370px;
  margin: 0 auto 76px;
}

#boil ._boil .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#boil ._boil .sub-title {
  font-weight: bold;
  font-size: 24px;
  color: #fb8700;
  margin-bottom: 56px;
  line-height: 1.3;
  border-bottom: 1px solid #fb8700;
  padding-bottom: 11px;
}

#boil ._boil .area {
  margin-bottom: 31px;
}

#boil ._boil .area .left {
  max-width: 721px;
}

#boil ._boil .area .right {
  width: 180px;
}

#boil ._boil .area .right .img img {
  max-width: 100%;
}

#boil ._boil .area .lower-title {
  font-weight: bold;
  font-size: 18px;
  color: #ad824f;
  border-bottom: dotted 1px #333;
  padding-bottom: 12px;
  margin-bottom: 20px;
  line-height: 1.2;
}

#boil ._boil .area .lower-title .num {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #ad824f;
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin-right: 14px;
  text-align: center;
  box-sizing: border-box;
  padding-top: 3px;
}

#boil ._boil .area .text {
  line-height: 1.7;
  margin-bottom: 40px;
}

#boil ._boil .area .right .img:not(:last-of-type) {
  margin-bottom: 70px;
}

#boil ._boil .area.when {
  /* background: url(../images/boil_bg01.png) no-repeat top;
      padding-top: 110px; */
}

#boil ._boil .area.when .left {
  max-width: 660px;
}

#boil ._boil .area.when .right {
  width: 280px;
}

#boil ._boil .area.when .right .img {
  margin-bottom: 22px;
}

#boil ._boil .area .btn {
  position: relative;
  max-width: 260px;
  height: 45px;
  border: 1px solid #ad824f;
  border-radius: 41px;
  font-size: 13px;
  color: #ad824f;
  margin: auto;
}

#boil ._boil .area .btn span {
  position: relative;
  display: inline-block;
  width: 25px;
}

#boil ._boil .area .btn span::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: #ad824f;
  border-radius: 50%;
  margin-right: 10px;
}

#boil ._boil .area .btn span::after {
  position: absolute;
  left: 7px;
  top: 48%;
  transform: translateY(-50%);
  content: "";
  box-sizing: border-box;
  width: 6px;
  height: 7px;
  border: 3px solid transparent;
  border-left: 6px solid white;
}

@media screen and (max-width: 767px) {
  #boil ._boil .lead {
    margin: 0 auto 20px;
  }
  #boil ._boil .page-title {
    height: 50px;
    padding-left: 16px;
    margin-bottom: 14px;
  }
  #boil ._boil .page-title::before {
    width: 26px;
    height: 24px;
    margin-right: 14px;
  }
  #boil ._boil .page-title.icon02::before {
    width: 25px;
    height: 29px;
  }
  #boil ._boil .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 auto 37px;
  }
  #boil ._boil .sub-title {
    font-size: 18px;
    margin-bottom: 27px;
    border-bottom: 1px solid #fb8700;
    padding-bottom: 8px;
  }
  #boil ._boil .area .text {
    margin-bottom: 20px;
  }
  #boil ._boil .area.when .right,
  #boil ._boil .area .right {
    width: 100%;
    padding: 0 20px;
  }
  #boil ._boil .area.when .right .img img {
    width: 100%;
  }
  #boil ._boil .area .lower-title .num {
    margin-right: 7px;
  }
}

/*
---------------------------------------------
char
---------------------------------------------
*/
/* _char */
#char ._char .lead {
  line-height: 1.7;
  margin-bottom: 91px;
}

#char ._char .tab-list {
  margin-bottom: 68px;
}

#char ._char .tab-list li.is-active {
  background: #ad824f;
}

#char ._char .tab-list li.is-active a {
  color: white;
}

#char ._char .tab-list .is-active a span::before {
  background: white;
}

#char ._char .tab-list .is-active a span::after {
  border-color: #ad824f transparent transparent transparent;
}

#char ._char .tab-list li:not(:last-child) {
  margin-right: 5px;
}

#char ._char .tab-list .first {
  border-radius: 10px 0px 0px 10px;
}

#char ._char .tab-list li {
  background: #e8e7e6;
  font-weight: bold;
  font-size: 16px;
  width: calc((100% - 30px) / 5);
  text-align: center;
}

#char ._char .tab-list li a {
  color: #ad824f;
  padding: 15px 0;
  width: 100%;
  line-height: 1.2;
}

#char ._char .tab-list .last {
  border-radius: 0px 10px 10px 0px;
}

#char ._char .tab-list li a span {
  position: relative;
  display: inline-block;
  width: 25px;
}

#char ._char .tab-list li a span::before {
  display: inline-block;
  top: 52%;
  transform: translateY(-36%);
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ad824f;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}

#char ._char .tab-list li a span::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  top: 52%;
  transform: translateY(-5%);
  right: 5px;
  box-sizing: border-box;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #ffffff transparent transparent transparent;
}

#char ._char .inner {
  max-width: 990px;
  margin: auto;
}

#char ._char .page-title {
  font-weight: bold;
  font-size: 24px;
  color: #ad824f;
  padding-bottom: 21px;
  border-bottom: 2px solid #ad824f;
  margin-bottom: 71px;
  line-height: 1.3;
}

#char ._char .sub-title {
  position: relative;
  height: 81px;
  background: #fcf1d6;
  font-weight: bold;
  font-size: 22px;
  color: #ad824f;
  padding-left: 24px;
  margin-bottom: 40px;
}

#char ._char .sub-title::before {
  display: inline-block;
  content: "";
  background: url(../images/icon_boil01.png) no-repeat center/cover;
  width: 57px;
  height: 52px;
  margin-right: 14px;
}

#char ._char .sub-title.icon02::before {
  background: url(../images/icon_boil02.png) no-repeat center/cover;
  width: 46px;
  height: 52px;
}

#char ._char .youtube {
  position: relative;
  width: 656px;
  padding-top: 370px;
  margin: 0 auto 76px;
}

#char ._char .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#char ._char .text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#char ._char .text.mb {
  margin-bottom: 68px;
}

#char ._char .area {
  margin-bottom: 52px;
}

#char ._char .area .left {
  width: 721px;
}

#char ._char .area .lower-title {
  font-weight: bold;
  font-size: 18px;
  color: #ad824f;
  border-bottom: dotted 1px #333;
  padding-bottom: 12px;
  margin-bottom: 20px;
  line-height: 1.2;
}

#char ._char .area .lower-title .num {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #ad824f;
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin-right: 14px;
  text-align: center;
  box-sizing: border-box;
  padding-top: 3px;
}

#char ._char .area .right {
  width: 218px;
}

#char ._char .area .right .img img {
  max-width: 100%;
}

#char ._char .box {
  background: #fcf1d6;
  padding: 20px;
  margin-bottom: 60px;
}

#char ._char .box .box-title {
  color: #78a614;
  font-weight: bold;
  margin-bottom: 10px;
}

#char ._char .box .list li {
  position: relative;
  padding-left: 15px;
  line-height: 1.3;
}

#char ._char .box .list li:not(:last-child) {
  margin-bottom: 10px;
}

#char ._char .box .list li::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  left: 0;
  background: #f78b22;
  border-radius: 50%;
}

#char ._char .box .list li .body {
  width: 690px;
}

#char ._char .box .list li .body .name {
  color: #bc5e02;
  font-weight: bold;
}

#char ._char .box .list li .img {
  width: 218px;
}

#char ._char .box .list li .img img {
  width: 100%;
}

#char ._char .btn {
  position: relative;
  max-width: 320px;
  height: 45px;
  border: 1px solid #ad824f;
  border-radius: 41px;
  font-size: 13px;
  color: #ad824f;
  margin-bottom: 40px;
  background: white;
}

#char ._char .btn span {
  position: relative;
  display: inline-block;
  width: 25px;
}

#char ._char .btn span::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background: #ad824f;
  border-radius: 50%;
  margin-right: 10px;
}

#char ._char .btn span::after {
  position: absolute;
  left: 7px;
  top: 48%;
  transform: translateY(-50%);
  content: "";
  box-sizing: border-box;
  width: 6px;
  height: 7px;
  border: 3px solid transparent;
  border-left: 6px solid white;
}

@media screen and (max-width: 767px) {
  #char ._char .lead {
    margin-bottom: 20px;
  }
  #char ._char .page-title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  #char ._char .tab-list {
    margin-bottom: 30px;
  }
  #char ._char .tab-list li {
    width: calc((100% - 10px) / 3);
    margin-bottom: 5px;
    font-size: 14px;
  }
  #char ._char .tab-list li:not(:last-child) {
    margin-right: 0;
  }
  #char ._char .tab-list li:not(:nth-child(3n)) {
    margin-right: 5px;
  }
  #char ._char .tab-list .first,
  #char ._char .tab-list .last {
    border-radius: 0;
  }
  #char ._char .tab-list li a span {
    width: 20px;
  }
  #char ._char .sub-title {
    height: 50px;
    padding-left: 16px;
    margin-bottom: 14px;
  }
  #char ._char .sub-title::before {
    width: 26px;
    height: 24px;
    margin-right: 14px;
  }
  #char ._char .sub-title.icon02::before {
    width: 25px;
    height: 29px;
  }
  #char ._char .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 auto 76px;
  }
  #char ._char .area .lower-title span {
    width: calc(100% - 33px);
  }
  #char ._char .area .lower-title .num {
    margin-right: 7px;
  }
  #char ._char .area .left {
    width: 100%;
  }
  #char ._char .area .right {
    width: 100%;
  }
  #char ._char .area .right .img img {
    width: 100%;
  }
  #char ._char .text {
    margin-bottom: 20px;
  }
  #char ._char .text.mb {
    margin-bottom: 20px;
  }
  #char ._char .box .list li .body,
  #char ._char .box .list li .img {
    width: 100%;
  }
}

/*
---------------------------------------------
diet
---------------------------------------------
*/
/* _top */
#diet ._top .page-title {
  font-weight: bold;
  font-size: 26px;
  color: #fb8700;
  margin-bottom: 24px;
  line-height: 1.3;
}

#diet ._top .area {
  margin-bottom: 90px;
}

#diet ._top .area .body {
  width: 550px;
}

#diet ._top .area .body .text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#diet ._top .area .img-wrap {
  width: calc(100% - 550px);
  text-align: center;
}

#diet ._point {
  background: #faf9f8;
  padding-top: 70px;
  padding-bottom: 1px;
}

#diet ._point .page-title {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.3;
  text-align: center;
  color: #fb8700;
  margin-bottom: 65px;
}

#diet ._point .area {
  margin-bottom: 94px;
}

#diet ._point .area .col1 {
  width: 100%;
}

#diet ._point .area .col2 {
  width: 520px;
}

#diet ._point .area .box {
  background: #ffffff;
  border: 1px solid #ad824f;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 25px;
}

#diet ._point .area .box .title-wrap {
  margin-bottom: 45px;
}

#diet ._point .area .box .title-wrap .icon {
  width: 52px;
}

#diet ._point .area .box .title-wrap .icon img {
  width: 100%;
}

#diet ._point .area .box .sub-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3;
  color: #fb8700;
  margin-left: 19px;
}

#diet ._point .area .box .text {
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 20px;
}

#diet ._point .area .box-inner:not(:last-of-type) {
  margin-bottom: 21px;
}

#diet ._point .area .box-inner .body {
  width: 714px;
}

#diet ._point .area .box-inner.bg .body {
  background: url(../images/diet_bg01.jpg) no-repeat bottom;
  height: 173px;
}

#diet ._point .area .box-inner .btn-wrap {
  width: calc(100% - 714px);
}

#diet ._point .area .box .btn {
  margin: auto;
  width: 229px;
  height: 44px;
  border: 1px solid #ad824f;
  box-sizing: border-box;
  border-radius: 40px;
  text-align: center;
  font-size: 13px;
  color: #ad824f;
  margin-bottom: 10px;
}

#diet ._point .area .box .btn span {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 18px;
}

#diet ._point .area .box .btn span::before,
#diet ._point .area .box .btn span::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}

#diet ._point .area .box .btn span::before {
  display: inline-block;
  top: 52%;
  transform: translateY(-50%);
  right: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ad824f;
}

#diet ._point .area .box .btn span::after {
  top: 52%;
  transform: translateY(-50%);
  right: 5px;
  box-sizing: border-box;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent white;
}

#diet ._pickup {
  margin-top: -17px;
}

@media screen and (max-width: 767px) {
  #diet ._top .area .body,
  #diet ._top .area .img-wrap {
    width: 100%;
  }
  #diet ._top .area .body .img,
  #diet ._top .area .img-wrap .img {
    width: 100%;
  }
  #diet ._top .area .body .img img,
  #diet ._top .area .img-wrap .img img {
    width: 100%;
  }
}

/* _point */
@media screen and (max-width: 767px) {
  #diet ._point .area .box .title-wrap {
    flex-direction: column;
    margin-bottom: 12px;
  }
  #diet ._point .area .box .title-wrap .icon {
    width: 78px;
    margin-bottom: 12px;
  }
  #diet ._point .area .box .sub-title {
    margin-left: 0;
  }
  #diet ._point .area .col2 {
    width: 100%;
    margin-bottom: 35px;
  }
  #diet ._point .area .box-inner .body,
  #diet ._point .area .box-inner .btn-wrap {
    width: 100%;
  }
  #diet ._point .area .box-inner.bg {
    background: url(../images/diet_bg01_sp.jpg) no-repeat bottom;
    padding-bottom: 141px;
  }
  #diet ._point .area .box-inner.bg .body {
    background: none;
    height: auto;
  }
  #char ._char .btn {
    padding: 0 10px;
  }
}

/*
---------------------------------------------
stamina
---------------------------------------------
*/
#stamina ._content .page-title {
  font-weight: bold;
  font-size: 26px;
  color: #fb8700;
  margin-bottom: 24px;
  line-height: 1.3;
}

#stamina ._content .lead {
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

#stamina ._content .box {
  background: url(../images/stamina_bg01.jpg) no-repeat center;
  width: 1095px;
  height: 417px;
  padding: 40px 197px;
  margin: 36px auto 74px;
}

#stamina ._content .box .title {
  font-weight: bold;
  font-size: 26px;
  color: #fb8700;
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
  padding-left: 0;
}

#stamina ._content .box .text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#stamina ._content .area .body {
  width: 600px;
  margin-right: 72px;
}

#stamina ._content .area .text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#stamina ._content .area .text a {
  color: #333;
  text-decoration: underline;
}

#stamina ._content .area .img-wrap {
  width: 345px;
}

#stamina ._content .area .img-wrap .img img {
  width: 100%;
}

#stamina ._content .inner {
  margin-bottom: 102px;
}

#stamina ._content .base-table {
  border: 1px solid #ad824f;
  border-radius: 4px;
  border-collapse: separate;
  border-spacing: 0;
  width: 860px;
  margin: 79px auto 25px;
}

#stamina ._content .base-table tr:not(:last-child) td {
  border-bottom: 1px solid #ad824f;
}

#stamina ._content .base-table tr td:not(:last-child) {
  border-right: 1px solid #ad824f;
}

#stamina ._content .base-table tr th:not(:last-child) {
  border-right: 1px solid #ad824f;
}

#stamina ._content .base-table tr th:first-child {
  border-radius: 4px 0 0 0;
}

#stamina ._content .base-table tr th:last-child {
  border-radius: 0 4px 0 0;
}

#stamina ._content .base-table th {
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background: #faf9f8;
  border-bottom: 1px solid #ad824f;
  padding: 8px 0;
  font-weight: normal;
}

#stamina ._content .base-table td {
  padding: 20px;
}

#stamina ._content .area .side {
  background: url(../images/stamina_bg02.jpg) no-repeat center;
  width: 383px;
  height: 580px;
  text-align: center;
  padding: 37px 0 0 0;
}

#stamina ._content .area .side .side-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #ad824f;
  margin-bottom: 25px;
}

#stamina ._content .area .side .table {
  width: 316px;
  margin: 0 auto 13px;
  font-size: 14px;
  line-height: 28px;
}

#stamina ._content .area .side .table td:not(:last-child),
#stamina ._content .area .side .table th:not(:last-child) {
  border-right: 1px solid #ad824f;
}

#stamina ._content .area .side .table th {
  border-bottom: 1px solid #ad824f;
  text-align: center;
}

#stamina ._content .area .side .table tr:not(:last-child) {
  border-bottom: 1px dashed #ad824f;
}

#stamina ._content .area .side .table th p {
  font-weight: bold;
  text-align: center;
  color: #fb8700;
}

#stamina ._content .area .side .text {
  font-size: 14px;
  line-height: 20px;
}

@media screen and (max-width: 767px) {
  #stamina ._content .box {
    position: relative;
    background: url(../images/stamina_bg01_sp.jpg) no-repeat top/cover;
    width: 100%;
    height: auto;
    padding: 48px 15px 1px;
    margin: 36px auto 160px;
  }
  #stamina ._content .box::after {
    position: absolute;
    left: 0;
    content: "";
    background: url(../images/stamina_bg01_sp02.jpg) no-repeat bottom/cover;
    height: 91px;
    width: 100%;
  }
  #stamina ._content .box .title {
    margin-bottom: 42px;
    line-height: 1.4;
  }
  #stamina ._content .area .body {
    width: 100%;
    margin-right: 0;
  }
  #stamina ._content .area .img-wrap {
    width: 100%;
  }
  #stamina ._content .area .img-wrap .img {
    margin-bottom: 55px;
  }
  #stamina ._content .inner {
    margin-bottom: 50px;
  }
  #stamina ._content .base-table {
    width: 100%;
    margin: 53px auto 25px;
    font-size: 14px;
  }
  #stamina ._content .base-table th,
  #stamina ._content .base-table td {
    padding: 10px 5px;
  }
  #stamina ._content .base-table .sm {
    width: 67px;
  }
  #stamina ._content .base-table .md {
    width: 109px;
  }
  #stamina ._content .area.lg {
    margin: 0 -10px 48vw;
  }
  #stamina ._content .area.lg .body {
    padding: 0 10px;
  }
  #stamina ._content .area .side {
    position: relative;
    background: #fbf4e5;
    width: 100%;
    height: auto;
    padding: 37px 30px 1px;
  }
  #stamina ._content .area .side::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url(../images/stamina_bg02.jpg) no-repeat top/cover;
    width: 100%;
    height: 50vw;
  }
  #stamina ._content .area .side::after {
    position: absolute;
    bottom: -10vw;
    left: 0;
    content: "";
    background: url(../images/stamina_bg02_sp02.jpg) no-repeat bottom/cover;
    width: 100%;
    height: 50vw;
  }
  #stamina ._content .area .side .text,
  #stamina ._content .area .side .side-title {
    position: relative;
    z-index: 1;
  }
  #stamina ._content .area .side .table {
    position: relative;
    z-index: 1;
    width: 100%;
  }
}

/*
---------------------------------------------
type
---------------------------------------------
*/
#type ._content .inner {
  max-width: 990px;
  margin: auto;
}

#type ._content .lead {
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

#type ._content .page-title {
  position: relative;
  height: 81px;
  background: #fcf1d6;
  font-weight: bold;
  font-size: 22px;
  color: #ad824f;
  padding-left: 24px;
  margin-bottom: 40px;
}

#type ._content .page-title::before {
  display: inline-block;
  content: "";
  background: url(../images/icon_al-dente.png) no-repeat center/cover;
  width: 57px;
  height: 59px;
  margin-right: 14px;
}

#type ._content .page-title.icon02::before {
  background: url(../images/icon_picup.png) no-repeat center/cover;
  width: 48px;
  height: 54px;
}

#type ._content .inner .text {
  line-height: 28px;
}

#type ._content .inner .sub-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  color: #fb8700;
  margin-bottom: 42px;
}

#type ._content .inner .area {
  border-bottom: 1px dotted #333;
  padding-bottom: 30px;
  margin-bottom: 42px;
}

#type ._content .inner .area.no-border {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 79px;
}

#type ._content .inner .area .img {
  width: 240px;
}

#type ._content .inner .area .body {
  width: 720px;
}

#type ._content .inner .area .body .area-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 29px;
  color: #ad824f;
  margin-bottom: 10px;
}

#type ._content .inner .area .body .match {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #fb8700;
  margin-bottom: 10px;
}

#type ._content .inner .btn {
  position: relative;
  display: inline-block;
  line-height: 45px;
  border: 1px solid #ad824f;
  box-sizing: border-box;
  border-radius: 41px;
  color: #ad824f;
  font-weight: 500;
  font-size: 14px;
  padding: 0 20px 0 50px;
}

#type ._content .inner .btn::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 23px;
  content: "";
  width: 18px;
  height: 18px;
  background: #ad824f;
  border-radius: 50%;
}

#type ._content .inner .btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 6px;
  border-color: transparent transparent transparent white;
}

#type ._content .inner .list-title {
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: #ad824f;
  margin: 20px;
}

#type ._content .inner .list {
  margin: 0 auto 42px;
  max-width: 880px;
}

#type ._content .inner .list li {
  width: 160px;
}

#type ._content .inner .list li:not(:last-child) {
  margin-right: 20px;
}

#type ._content .inner .list li .img {
  margin-bottom: 10px;
}

#type ._content .inner .list li .img img {
  width: 100%;
}

#type ._content .inner .list li .name {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #ad824f;
}

#type ._content .inner .btn.base {
  display: block;
  width: 270px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #type ._content .page-title {
    height: 50px;
    padding-left: 24px;
    margin-bottom: 16px;
  }
  #type ._content .page-title::before {
    width: 25px;
    height: 25px;
    margin-right: 12px;
  }
  #type ._content .page-title.icon02::before {
    width: 23px;
    height: 26px;
  }
  #type ._content .inner .area {
    margin-bottom: 32px;
  }
  #type ._content .inner .area .img {
    margin: 0 auto 20px;
  }
  #type ._content .inner .area .body {
    width: 100%;
  }
  #type ._content .inner .btn-wrap {
    text-align: center;
  }
  #type ._content .inner .btn {
    padding: 0 10px 0 40px;
  }
  #type ._content .inner .btn::before {
    left: 15px;
  }
  #type ._content .inner .btn::after {
    left: 22px;
  }
  #type ._content .inner .area .body .match {
    text-align: center;
  }
  #type ._content .inner .list li {
    width: 49%;
    margin-bottom: 20px;
  }
  #type ._content .inner .list li:not(:last-child) {
    margin-right: 0;
  }
  #type ._content .inner .list li:nth-child(odd) {
    margin-right: 2%;
  }
}

/*
---------------------------------------------
commit
---------------------------------------------
*/
#commit ._content .inner {
  max-width: 794px;
  margin: 0 auto 70px;
}

#commit ._content .title {
  margin-bottom: 40px;
  padding-left: 0;
  text-align: center;
  line-height: 1.3;
}

#commit ._content .inner .list li {
  width: 380px;
  height: 97px;
  background: #ad824f;
  border-radius: 10px;
  margin-bottom: 26px;
  padding: 15px 20px;
}

#commit ._content .inner .list li:nth-child(odd) {
  margin-right: 34px;
}

#commit ._content .inner .list li .num {
  width: 38px;
  height: 38px;
  background: white;
  border-radius: 50%;
  font-weight: 500;
  font-size: 18px;
  color: #ad824f;
  margin-right: 22px;
}

#commit ._content .inner .list li .text {
  color: white;
  margin-bottom: 0;
  line-height: 22px;
  width: 280px;
}

#commit ._content .inner .page-text {
  line-height: 28px;
}

#commit ._content .table-wrapper {
  max-width: 860px;
  margin: auto;
}

#commit ._content .table-wrapper .sub-title {
  font-weight: bold;
  font-size: 20px;
  line-height: 29px;
  color: #ad824f;
  margin-bottom: 26px;
}

#commit ._content .table {
  border: 1px solid #ad824f;
  border-radius: 4px;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 0 auto 25px;
}

#commit ._content .table tr th:not(:last-child) {
  border-right: 1px solid #ad824f;
}

#commit ._content .table th {
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background: #faf9f8;
  border-bottom: 1px solid #ad824f;
  padding: 8px 0;
  font-weight: normal;
}

#commit ._content .table tr th:first-child {
  border-radius: 4px 0 0 0;
}

#commit ._content .table tr th:last-child {
  border-radius: 0 4px 0 0;
}

#commit ._content .table tr td:not(:last-child) {
  border-right: 1px solid #ad824f;
}

#commit ._content .table tr:not(:last-child) td {
  border-bottom: 1px solid #ad824f;
}

#commit ._content .table td {
  padding: 20px;
}

#commit ._content .table-wrapper .list {
  margin-bottom: 40px;
}

#commit ._content .table-wrapper .list li {
  margin-bottom: 10px;
}

#commit ._content .table-wrapper .text a {
  color: #333;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  #commit ._content .title {
    margin-bottom: 28px;
    font-size: 26px;
  }
  #commit ._content .inner {
    margin: 0 auto 30px;
  }
  #commit ._content .inner .list {
    margin-bottom: 30px;
  }
  #commit ._content .inner .list li {
    width: 100%;
    margin-bottom: 15px;
  }
  #commit ._content .inner .list li:nth-child(odd) {
    margin-right: 0;
  }
  #commit ._content .inner .list li .text {
    width: calc(100% - 60px);
  }
  #commit ._content .table {
    font-size: 14px;
  }
  #commit ._content .table .md {
    width: 101px;
  }
  #commit ._content .table td {
    padding: 15px;
  }
  #commit ._content .table-wrapper .list {
    margin-bottom: 30px;
  }
  #commit ._content .table-wrapper .text a,
  #commit ._content .table-wrapper .list li {
    font-size: 14px;
  }
}

/*
---------------------------------------------
secret
---------------------------------------------
*/
/* _top */
#secret ._top .inner {
  width: 872px;
  margin: auto;
}

#secret ._top .inner {
  background: url(../images/bg_head.png) no-repeat;
  height: 595px;
  width: 872px;
  padding: 20px 30px 0;
  color: white;
}

#secret ._top .inner .top-title {
  width: 479px;
  margin-bottom: 5px;
}

#secret ._top .inner .top-title .img img {
  width: 100%;
}

#secret ._top .inner .sub-title {
  width: 479px;
  margin-bottom: 5px;
}

#secret ._top .inner .sub-title .img img {
  width: 100%;
}

#secret ._top .inner .lead {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  font-weight: 700;
}

#secret ._top .inner .lead.sm {
  font-size: 12px;
  font-weight: 500;
  width: 500px;
}

/* _content */
#secret ._content * {
  box-sizing: content-box;
}

#secret ._content .inner {
  background-color: #fff9ed;
  padding: 15px 0 140px;
  position: relative;
  z-index: 0;
  width: 872px;
  margin: auto;
}

#secret ._content .content-wrapper {
  width: 810px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  position: relative;
}

#secret .container {
  width: 720px;
  margin: auto;
  overflow: visible;
  position: relative;
  z-index: 1;
}

#secret ._content h2 {
  color: #fff;
  background-color: #43c513;
  border: solid 10px #83e045;
  font-size: 24px;
  line-height: 42px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 30px;
}

#secret ._content .content {
  position: relative;
  z-index: 2;
}

#secret ._content .content h3 {
  position: relative;
  width: 185px;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  padding-bottom: 3px;
  margin-bottom: -3px;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
  color: #fff;
}

#secret ._content .content > div {
  position: relative;
  border-radius: 0 8px 8px 8px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 3;
  padding: 15px;
  background-color: #fff;
}

#secret ._content .content > div p {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-align: justify;
  text-justify: inter-ideograph;
}

#secret ._content .content.yl h3 {
  background-color: #fdb42a;
}

#secret ._content .content.yl > div {
  background-color: #fffddf;
}

#secret ._content .content.bl h3 {
  background-color: #00a5ea;
}

#secret ._content .content.bl > div {
  background-color: #f1f9fe;
}

#secret ._content .content.gr h3 {
  background-color: #8fc31f;
}

#secret ._content .content.gr > div {
  background-color: #e5ec9f;
}

#secret ._content .content + .content {
  margin-top: 20px;
}

#wrapper01 {
  background-color: #b7f598;
  margin-bottom: 30px;
  padding: 15px 0 65px;
}

#wrapper01 #content01 > div {
  min-height: 107px;
  background-color: #fff580;
}

#wrapper01 #content01 > div p {
  width: 375px;
  letter-spacing: -0.05em;
}

#wrapper01 #content01 > div p.gr {
  color: #00623d;
}

#wrapper01 #content01 > div img {
  position: absolute;
  top: 20px;
  right: 165px;
  bottom: 20px;
}

#wrapper01 #content01 > div img + img {
  right: 15px;
}

#wrapper01 #content02 > div {
  height: 225px;
  z-index: 5;
}

#wrapper01 #content02 > div .line {
  position: absolute;
  bottom: 0;
  left: 0;
}

#wrapper01 #content02 > div:after {
  content: "";
  display: block;
  background: url("../images/line01-2.png") center center no-repeat;
  background-size: cover;
  width: 14px;
  height: 259px;
  position: absolute;
  top: 204px;
  right: -31px;
}

#wrapper01 #content03 {
  z-index: 1;
}

#wrapper01 #content03 > div {
  width: 460px;
  height: 140px;
  z-index: 3;
}

#wrapper01 #content03 > div .line {
  position: absolute;
  left: -13px;
  bottom: 12px;
}

#wrapper01 #content03 > div #check01 {
  position: absolute;
  right: 60px;
  top: 60px;
  z-index: 8;
}

#wrapper02 {
  background-color: #e0dcd9;
  padding: 15px 0;
}

#wrapper02 #content04 > div {
  height: 145px;
}

#wrapper02 #content04 > div:before {
  content: "";
  background: url("../images/line01-4.png") center center no-repeat;
  background-size: cover;
  width: 14px;
  height: 425px;
  position: absolute;
  left: -26px;
  bottom: 8px;
}

#wrapper02 #content04 > div p {
  width: 380px;
  letter-spacing: -0.04em;
}

#wrapper02 #content04 > div img {
  position: absolute;
  top: -30px;
  right: 10px;
}

#wrapper02 #content04 > div .line {
  position: absolute;
  top: 108px;
  left: -13px;
}

#wrapper02 #content04 > div #check02 {
  position: absolute;
  right: 180px;
  top: auto;
  bottom: -50px;
  z-index: 8;
}

#wrapper03 {
  background-color: #e0dcd9;
  padding-bottom: 30px;
}

#wrapper03 .container {
  width: 670px;
}

#wrapper03 #separate {
  background-color: #c5beb9;
  height: 107px;
}

#wrapper03 #separate:before {
  content: "";
  background: url("../images/line02-1.png") center center no-repeat;
  background-size: contain;
  width: 192.5px;
  height: 39px;
  position: absolute;
  top: 32px;
  left: 18px;
}

#wrapper03 #content05 {
  margin: 15px auto 25px;
}

#wrapper03 #content05 > div {
  min-height: 185px;
}

#wrapper03 #content05 > div:before {
  content: "";
  background: url("../images/line02-2.png") center center no-repeat;
  background-size: contain;
  width: 21.5px;
  height: 241.5px;
  position: absolute;
  bottom: 55px;
  left: -53px;
}

#wrapper03 #content05 > div p {
  width: 350px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

#wrapper03 #content05 > div #check03 {
  position: absolute;
  top: -70px;
  right: 55px;
}

#wrapper03 #content05 > div .line {
  position: absolute;
  top: 110px;
  left: -32px;
}

#wrapper03 #content06 > div {
  min-height: 280px;
}

#wrapper03 #content06 > div p {
  width: 365px;
}

#wrapper03 #content06 > div img {
  position: absolute;
}

#wrapper03 #content06 > div img.line {
  top: -50px;
  right: -47.4px;
}

#wrapper03 #content06 > div img#check04 {
  top: -50px;
  right: 100px;
}

#wrapper03 #content06 > div img.pic {
  bottom: 20px;
  left: 20px;
}

#wrapper03 #content06 > div img#secret01 {
  bottom: 20px;
  left: 180px;
}

#wrapper03 #content07 {
  margin: 50px auto 25px;
}

#wrapper03 #content07 > div {
  min-height: 480px;
}

#wrapper03 #content07 > div:before {
  content: "";
  background: url("../images/line02-5.png") center center no-repeat;
  background-size: cover;
  width: 196.5px;
  height: 329px;
  position: absolute;
  top: -11px;
  right: 35px;
}

#wrapper03 #content07 > div:after {
  content: "";
  background: url("../images/line03-1.png") center center no-repeat;
  background-size: cover;
  width: 95.5px;
  height: 1075.5px;
  position: absolute;
  left: -54px;
  top: 240px;
  z-index: 0;
}

#wrapper03 #content07 > div p {
  width: 350px;
}

#wrapper03 #content07 > div #secret02 {
  position: absolute;
  top: 30px;
  right: 66px;
  z-index: 8;
}

#wrapper03 #content07 > div .m_content {
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

#wrapper03 #content07 > div .m_content h4 {
  width: 125px;
  font-size: 12px;
  line-height: 25px;
  font-weight: 800;
  border-radius: 6px 6px 0 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff;
  background-color: #00aeb0;
  text-align: center;
  margin-bottom: -2px;
}

#wrapper03 #content07 > div .m_content div {
  width: 350px;
  padding: 15px;
  background-color: #86cab6;
  border-radius: 0 6px 6px 6px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 0;
  *zoom: 1;
}

#wrapper03 #content07 > div .m_content div:after {
  content: "";
  display: table;
  clear: both;
}

#wrapper03 #content07 > div .m_content div img {
  float: left;
}

#wrapper03 #content07 > div .m_content div img + img {
  float: right;
}

#wrapper03 #content07 > div .m_content + .m_content h4 {
  background-color: #ed7969;
}

#wrapper03 #content07 > div .m_content + .m_content div {
  background-color: #f29c97;
}

#wrapper03 #content07 > div .s_content {
  position: absolute;
  width: 105px;
  top: 330px;
  right: 140px;
}

#wrapper03 #content07 > div .s_content h5 {
  width: 105px;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 5px;
}

#wrapper03 #content07 > div .s_content p {
  width: 105px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: -0.05em;
}

#wrapper03 #content07 > div .s_content + .s_content {
  right: 20px;
}

#wrapper04 {
  background-color: #e0dcd9;
  padding-bottom: 30px;
}

#wrapper04 .container {
  width: 670px;
}

#wrapper04 #content08 > div {
  min-height: 720px;
}

#wrapper04 #content08 > div > p {
  width: 300px;
  margin-bottom: 1em;
}

#wrapper04 #content08 > div #secret03 {
  position: absolute;
  top: 290px;
  left: 15px;
}

#wrapper04 #content08 > div .m_content {
  width: 310px;
  position: absolute;
  top: 15px;
  right: 20px;
}

#wrapper04 #content08 > div .m_content h4 {
  position: relative;
  width: 180px;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  padding-bottom: 3px;
  margin-bottom: -3px;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
  color: #fff;
  background-color: #8fc31f;
}

#wrapper04 #content08 > div .m_content > div {
  position: relative;
  border-radius: 0 8px 8px 8px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 3;
  padding: 15px;
  background-color: #fff;
  min-height: 220px;
}

#wrapper04 #content08 > div .m_content > div p {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  font-weight: 700;
}

#wrapper04 #content08 > div .m_content > div img {
  position: absolute;
  bottom: 5px;
  left: 5px;
}

#wrapper04 #content08 > div .m_content > div img + img {
  bottom: -60px;
  left: auto;
  right: -40px;
}

#wrapper04 #content08 > div #check05 {
  position: absolute;
  top: 320px;
  right: -85px;
  z-index: 8;
}

#wrapper04 #content08 > div .line {
  position: absolute;
  bottom: -7px;
  left: -15px;
}

#wrapper04 #content09 {
  margin-top: 70px;
  z-index: 9;
}

#wrapper04 #content09:before {
  content: "";
  background: url("../images/line03-3.png") center center no-repeat;
  background-size: cover;
  width: 67px;
  height: 739.5px;
  position: absolute;
  top: -324px;
  right: -62px;
  z-index: -1;
}

#wrapper04 #content09:after {
  content: "";
  background: url("../images/line03-4.png") center center no-repeat;
  background-size: cover;
  width: 14px;
  height: 99px;
  position: absolute;
  top: 225px;
  right: 110px;
  z-index: -1;
}

#wrapper04 #content09 > div {
  line-height: 0;
  *zoom: 1;
}

#wrapper04 #content09 > div:after {
  content: "";
  display: table;
  clear: both;
}

#wrapper04 #content09 > div .pic {
  float: left;
}

#wrapper04 #content09 > div p {
  float: right;
  width: 310px;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

#wrapper04 #content09 > div .pic02 {
  position: absolute;
  bottom: 3px;
  right: 20px;
}

#wrapper04 #content09 > div #check06 {
  position: absolute;
  bottom: -60px;
  left: 240px;
}

#wrapper04 #content10 {
  margin-top: 30px;
  z-index: 9;
}

#wrapper04 #content10 > div {
  line-height: 0;
  *zoom: 1;
}

#wrapper04 #content10 > div:after {
  content: "";
  display: table;
  clear: both;
}

#wrapper04 #content10 > div p {
  float: left;
  width: 310px;
}

#wrapper04 #content10 > div img {
  float: right;
}

#wrapper04 #content11 {
  margin-top: 30px;
  z-index: 3;
}

#wrapper04 #content11 > div {
  min-height: 440px;
}

#wrapper04 #content11 > div:before {
  content: "";
  background: url("../images/line03-5.png") center center no-repeat;
  background-size: contain;
  width: 216px;
  height: 452.5px;
  position: absolute;
  top: -232px;
  right: 20px;
}

#wrapper04 #content11 > div:after {
  content: "";
  background: url("../images/line04-1.png") center center no-repeat;
  background-size: contain;
  width: 109.5px;
  height: 852.5px;
  position: absolute;
  top: 385px;
  left: -55px;
}

#wrapper04 #content11 > div p {
  width: 310px;
  margin-bottom: 1em;
}

#wrapper04 #content11 > div #check07 {
  position: absolute;
  top: -50px;
  left: 330px;
}

#wrapper04 #content11 > div #check08 {
  position: absolute;
  top: 170px;
  left: 240px;
}

#wrapper04 #content11 > div .s_content {
  width: 220px;
  border-radius: 8px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  position: absolute;
  top: 190px;
  right: 20px;
  overflow: hidden;
  z-index: 2;
}

#wrapper04 #content11 > div .s_content h5 {
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.25em;
  background-color: #85c14d;
  color: #fff;
}

#wrapper04 #content11 > div .s_content p {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 500;
  padding: 10px;
  width: 200px;
  margin-bottom: 0;
}

#wrapper04 #content11 > div .line {
  position: absolute;
  bottom: 40px;
  right: 20px;
  z-index: 1;
}

#wrapper04 #content12 {
  margin-top: 60px;
}

#wrapper04 #content12 > div {
  background: url("../images/img10.png") right 5px bottom 80px no-repeat #e5ec9f;
  background-size: 287px 232px;
}

#wrapper04 #content12 > div h2 {
  margin-bottom: 20px;
}

#wrapper04 #content12 > div #check09 {
  position: absolute;
  top: 50px;
  right: 140px;
}

#wrapper04 #content12 > div .m_content {
  width: 380px;
  border-radius: 6px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  overflow: hidden;
  margin: 15px 0;
}

#wrapper04 #content12 > div .m_content h4 {
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.25em;
  background-color: #85c14d;
  color: #fff;
}

#wrapper04 #content12 > div .m_content div {
  padding: 0 15px 15px;
}

#wrapper04 #content12 > div .m_content div table {
  width: 100%;
}

#wrapper04 #content12 > div .m_content div table tr {
  border-top: solid 15px #fff;
}

#wrapper04 #content12 > div .m_content div table tr th {
  border-right: solid 1px #444;
  padding-left: 40px;
  width: 85px;
  text-align: left;
  vertical-align: middle;
  background: url("../images/ret.png") left center no-repeat;
  background-size: contain;
  font-size: 12px;
  line-height: 1.2;
}

#wrapper04 #content12 > div .m_content div table tr td {
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: -0.08em;
  vertical-align: middle;
}

#wrapper04 #content12 > div .s_content {
  width: 500px;
  background: url("../images/jas.png") right bottom no-repeat;
  background-size: contain;
}

#wrapper04 #content12 > div .s_content p {
  width: 380px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

#wrapper04 #content12 > div .s_content p.small {
  font-size: 10px;
}

#wrapper04 #content13 {
  margin-top: 60px;
}

#wrapper04 #content13 > div {
  min-height: 190px;
}

#wrapper04 #content13 > div:after {
  content: "";
  background: url("../images/line04-3.png") center center no-repeat;
  background-size: cover;
  width: 12px;
  height: 220px;
  position: absolute;
  top: 165px;
  right: -35px;
}

#wrapper04 #content13 > div p {
  width: 310px;
}

#wrapper04 #content13 > div .line {
  position: absolute;
  bottom: 15px;
  left: 13px;
}

#wrapper05 {
  padding: 170px 0 140px;
}

#wrapper05:before {
  content: "";
  background: url("../images/line04-4.png") center center no-repeat;
  background-size: contain;
  width: 705.5px;
  height: 76.5px;
  position: absolute;
  top: 76px;
  left: 59px;
}

#wrapper05 .container {
  width: 670px;
}

#wrapper05 #content14 > div {
  min-height: 150px;
}

#wrapper05 #content14 > div:before {
  content: "";
  background: url("../images/line04-5.png") center center no-repeat;
  background-size: cover;
  width: 12px;
  height: 186px;
  position: absolute;
  bottom: 71px;
  left: -20px;
}

#wrapper05 #content14 > div img {
  position: absolute;
  bottom: 71px;
  left: -10px;
}

#wrapper05 #content14 > div img + img {
  top: -60px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
}

/* sp */
@media screen and (max-width: 767px) {
  /* _top */
  #secret ._top .inner {
    position: relative;
    background: url(../images/bg_head_sp.png) center bottom/cover no-repeat;
    height: auto;
    width: 100%;
    padding: 45px 20px 540px;
  }
  #secret ._top .inner .top-title {
    width: 100%;
  }
  #secret ._top .inner .sub-title {
    margin: 0 auto 5px;
  }
  #secret ._top .inner .lead {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    font-weight: 700;
  }
  #secret ._top .inner .lead span {
    font-size: 18px;
  }
  #secret ._top .inner .lead.sm {
    font-size: 20px;
    font-weight: 500;
    text-align: justify;
    text-justify: inter-ideograph;
    width: 100%;
  }
  #secret ._top .inner ul {
    width: 100%;
    height: 460px;
    line-height: 0;
    margin: 40px auto 30px;
    *zoom: 1;
  }
  #secret ._top .inner ul:after {
    content: "";
    display: table;
    clear: both;
  }
  #secret ._top .inner ul li img {
    height: 150px;
    width: auto;
  }
  #secret ._top .inner ul li:nth-child(1) {
    float: left;
    margin-top: 20px;
    margin-left: 30px;
  }
  #secret ._top .inner ul li:nth-child(2) {
    float: left;
  }
  #secret ._top .inner ul li:nth-child(3) {
    margin-top: 20px;
    float: left;
  }
  #secret ._top .inner ul li:nth-child(4) {
    clear: both;
    float: left;
    margin-left: -20px;
  }
  #secret ._top .inner ul li:nth-child(5) {
    float: right;
    margin-right: -20px;
  }
  #secret ._top .inner ul li:nth-child(6) {
    clear: both;
    float: left;
  }
  #secret ._top .inner ul li:nth-child(7) {
    float: right;
  }
  /* _content */
  #secret ._content .content-wrapper {
    width: 700px;
  }
  #secret ._content .inner {
    padding: 40px 0 100px;
    width: 100%;
  }
  #secret ._content .inner h2 {
    color: #fff;
    background-color: #43c513;
    border: solid 8px #83e045;
    font-size: 30px;
    line-height: 64px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 40px;
  }
  #secret ._content .inner .content {
    position: relative;
    z-index: 2;
  }
  #secret ._content .inner .content h3 {
    position: relative;
    width: 400px;
    text-align: center;
    font-size: 30px;
    line-height: 57px;
    padding-bottom: 3px;
    margin: 0 auto -3px;
    font-weight: 900;
    border-radius: 8px 8px 0 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 2;
    color: #fff;
  }
  #secret ._content .inner .content > div {
    position: relative;
    border-radius: 0 8px 8px 8px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 3;
    padding: 25px 50px;
    background-color: #fff;
  }
  #secret ._content .inner .content > div p {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    text-align: justify;
    text-justify: inter-ideograph;
    width: 100%;
    letter-spacing: 0;
  }
  #secret ._content .inner .content.yl h3 {
    background-color: #fdb42a;
  }
  #secret ._content .inner .content.yl > div {
    background-color: #fffddf;
  }
  #secret ._content .inner .content.bl h3 {
    background-color: #00a5ea;
  }
  #secret ._content .inner .content.bl > div {
    background-color: #f1f9fe;
  }
  #secret ._content .inner .content.gr h3 {
    background-color: #8fc31f;
  }
  #secret ._content .inner .content.gr > div {
    background-color: #e5ec9f;
  }
  #secret ._content .inner .content + .content {
    margin-top: 40px;
  }
  #secret ._content .inner .container {
    width: 600px;
    margin: auto;
    overflow: visible;
    position: relative;
    z-index: 1;
  }
  #wrapper01 {
    background-color: #e5ec9f;
    margin-bottom: 50px;
    padding: 25px 0 30px;
  }
  #wrapper01 .container {
    width: 650px !important;
  }
  #wrapper01 #content01 > div {
    padding: 40px;
    background-color: #fff580;
    *zoom: 1;
  }
  #wrapper01 #content01 > div:after {
    content: "";
    display: table;
    clear: both;
  }
  #wrapper01 #content01 > div p.gr {
    font-size: 24px;
    line-height: 1.3;
    font-size: 24px !important;
    color: #00623d;
    width: 100%;
  }
  #wrapper01 #content01 > div p.gr + p {
    margin: 5px 0 40px;
    width: 100%;
  }
  #wrapper01 #content01 > div img {
    float: left;
    position: static;
  }
  #wrapper01 #content01 > div img + img {
    float: right;
  }
  #wrapper01 #content02 {
    width: 600px;
    margin: 90px auto 0;
  }
  #wrapper01 #content02 > div {
    z-index: 5;
    height: 450px;
    padding: 25px;
  }
  #wrapper01 #content02 > div .line {
    position: absolute;
    bottom: 0;
    left: -34px;
  }
  #wrapper01 #content02 > div:after {
    content: "";
    display: block;
    background: url("../images/line_sp01-2.png") center center no-repeat;
    background-size: cover;
    width: 21px;
    height: 532px;
    position: absolute;
    top: 500px;
    right: -60px;
  }
  #wrapper01 #content03 {
    z-index: 1;
    width: 600px;
    margin: 40px auto;
  }
  #wrapper01 #content03 > div {
    z-index: 3;
    height: 430px;
  }
  #wrapper01 #content03 > div .line {
    position: absolute;
    left: -14px;
    bottom: 45px;
  }
  #wrapper01 #content03 > div #check01 {
    position: absolute;
    left: 15px;
    bottom: 20px;
    z-index: 8;
    top: auto;
  }
  #wrapper02 {
    background-color: #e0dcd9;
    padding: 20px 0 45px;
  }
  #wrapper02 #content04 > div {
    height: 687px;
  }
  #wrapper02 #content04 > div p {
    width: 100%;
  }
  #wrapper02 #content04 > div:before {
    content: "";
    background: url("../images/line_sp01-4.png") center center no-repeat;
    background-size: cover;
    width: 21px;
    height: 1062px;
    position: absolute;
    left: -35px;
    bottom: 61px;
  }
  #wrapper02 #content04 > div img {
    position: absolute;
    top: 185px;
    right: -65px;
  }
  #wrapper02 #content04 > div .line {
    position: absolute;
    top: auto;
    right: 35px;
    bottom: -180px;
  }
  #wrapper02 #content04 > div #check02 {
    position: absolute;
    top: 280px;
    left: -20px;
    z-index: 8;
  }
  #wrapper03 {
    background-color: #e0dcd9;
    padding-bottom: 10px;
  }
  #wrapper03 #separate {
    background-color: #c5beb9;
    height: 135px;
  }
  #wrapper03 #separate:before {
    content: "";
    background: url("../images/line_sp02-1.png") center center no-repeat;
    background-size: contain;
    width: 304px;
    height: 82px;
    position: absolute;
    top: 40px;
    left: 20px;
  }
  #wrapper03 #content05 {
    margin: 50px auto;
  }
  #wrapper03 #content05 > div {
    height: 844px;
  }
  #wrapper03 #content05 > div p {
    width: 100%;
  }
  #wrapper03 #content05 > div:before {
    content: "";
    background: url("../images/line_sp02-2.png") center center no-repeat;
    background-size: contain;
    width: 33px;
    height: 425px;
    position: absolute;
    top: -120px;
    left: -30px;
  }
  #wrapper03 #content05 > div .line {
    position: absolute;
    top: 237px;
    left: 2px;
  }
  #wrapper03 #content05 > div #check03 {
    position: absolute;
    top: 400px;
    right: 160px;
  }
  #wrapper03 #content05 > div:after {
    content: "";
    background: url("../images/line_sp02-4.png") center center no-repeat;
    background-size: contain;
    width: 45px;
    height: 420px;
    position: absolute;
    top: 379px;
    right: -52px;
  }
  #wrapper03 #content05 > div .line02 {
    position: absolute;
    bottom: 30px;
    right: -52px;
  }
  #wrapper03 #content06 > div {
    height: 1125px;
  }
  #wrapper03 #content06 > div:before {
    content: "";
    background: url("../images/line_sp02-6.png") center center no-repeat;
    background-size: contain;
    width: 84px;
    height: 1199px;
    position: absolute;
    top: -142px;
    left: -53px;
  }
  #wrapper03 #content06 > div p {
    width: 100%;
  }
  #wrapper03 #content06 > div img {
    position: absolute;
  }
  #wrapper03 #content06 > div img.line {
    bottom: 5px;
    right: -48px;
    top: auto;
  }
  #wrapper03 #content06 > div img#check04 {
    top: 565px;
    right: 155px;
  }
  #wrapper03 #content06 > div img.pic {
    top: 150px;
    left: 40px;
  }
  #wrapper03 #content06 > div img#secret01 {
    top: 150px;
    right: 40px;
    left: auto;
  }
  #wrapper03 #content07 {
    margin: 50px auto;
  }
  #wrapper03 #content07 > div {
    height: 1730px;
  }
  #wrapper03 #content07 > div:before {
    content: "";
    background: url("../images/line_sp02-8.png") center center no-repeat;
    background-size: cover;
    width: 80.5px;
    height: 475px;
    position: absolute;
    top: -116px;
    right: -48px;
  }
  #wrapper03 #content07 > div:after {
    content: "";
    background: url("../images/line_sp03-1.png") center center no-repeat;
    background-size: cover;
    width: 149px;
    height: 477px;
    position: absolute;
    left: -62px;
    bottom: -20px;
    top: auto;
  }
  #wrapper03 #content07 > div p {
    width: 100%;
  }
  #wrapper03 #content07 > div .line {
    position: absolute;
    top: 278px;
    left: 100px;
  }
  #wrapper03 #content07 > div #secret02 {
    position: absolute;
    top: 390px;
    right: 190px;
    z-index: 8;
  }
  #wrapper03 #content07 > div .m_content {
    position: absolute;
    bottom: 340px;
    left: 0;
    right: 0;
    width: 500px;
    margin: auto;
    z-index: 3;
  }
  #wrapper03 #content07 > div .m_content h4 {
    width: 245px;
    font-size: 24px;
    line-height: 40px;
    font-weight: 800;
    border-radius: 8px 8px 0 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: #fff;
    background-color: #00aeb0;
    text-align: center;
    margin-bottom: -2px;
  }
  #wrapper03 #content07 > div .m_content div {
    padding: 15px 20px;
    background-color: #86cab6;
    border-radius: 0 8px 8px 8px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 0;
    *zoom: 1;
    width: 100%;
    box-sizing: border-box;
  }
  #wrapper03 #content07 > div .m_content div:after {
    content: "";
    display: table;
    clear: both;
  }
  #wrapper03 #content07 > div .m_content div img {
    float: left;
  }
  #wrapper03 #content07 > div .m_content div img + img {
    float: right;
  }
  #wrapper03 #content07 > div .m_content + .m_content {
    bottom: 50px;
  }
  #wrapper03 #content07 > div .m_content + .m_content h4 {
    background-color: #ed7969;
  }
  #wrapper03 #content07 > div .m_content + .m_content div {
    background-color: #f29c97;
  }
  #wrapper03 #content07 > div .s_content {
    position: absolute;
    width: 230px;
    top: 880px;
    left: 40px;
  }
  #wrapper03 #content07 > div .s_content h5 {
    width: 230px;
    text-align: center;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 5px;
  }
  #wrapper03 #content07 > div .s_content p {
    width: 230px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.05em;
  }
  #wrapper03 #content07 > div .s_content + .s_content {
    left: auto;
    right: 40px;
  }
  #wrapper04 {
    background-color: #e0dcd9;
    padding-bottom: 30px;
  }
  #wrapper04 #content08 > div {
    height: 2326px;
  }
  #wrapper04 #content08 > div:before {
    content: "";
    background: url("../images/line_sp03-2.png") center center no-repeat;
    background-size: cover;
    width: 45px;
    height: 2343px;
    position: absolute;
    top: -100px;
    left: -62px;
  }
  #wrapper04 #content08 > div > p {
    margin-bottom: 1.5em;
    width: 100%;
  }
  #wrapper04 #content08 > div > p + img {
    width: 100%;
    height: auto;
  }
  #wrapper04 #content08 > div .m_content {
    width: 500px;
    margin: 40px auto;
    top: auto;
    right: auto;
  }
  #wrapper04 #content08 > div .m_content h4 {
    position: relative;
    width: 400px;
    text-align: center;
    font-size: 30px;
    line-height: 57px;
    padding-bottom: 3px;
    margin: 0 auto -3px;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 2;
    color: #fff;
    background-color: #8fc31f;
  }
  #wrapper04 #content08 > div .m_content > div {
    position: relative;
    border-radius: 0 8px 8px 8px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 3;
    padding: 15px 20px;
    background-color: #fff;
    height: 500px;
  }
  #wrapper04 #content08 > div .m_content > div p {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    font-weight: 700;
  }
  #wrapper04 #content08 > div .m_content > div img {
    position: absolute;
    bottom: 30px;
    left: 5px;
  }
  #wrapper04 #content08 > div .m_content > div img + img {
    bottom: -30px;
    left: auto;
    right: -90px;
  }
  #wrapper04 #content08 > div #secret03 {
    position: absolute;
    bottom: 990px;
    left: 60px;
    top: auto;
  }
  #wrapper04 #content08 > div #check05 {
    position: absolute;
    bottom: 990px;
    right: 5px;
    top: auto;
  }
  #wrapper04 #content08 > div .line {
    position: absolute;
    bottom: 70px;
    left: -17px;
  }
  #wrapper04 #content09 {
    margin-top: 50px;
    margin-bottom: 100px;
    z-index: 9;
  }
  #wrapper04 #content09:before {
    content: "";
    background: url("../images/line_sp03-4.png") center center no-repeat;
    background-size: contain;
    width: 70px;
    height: 1479px;
    position: absolute;
    top: -120px;
    right: -69px;
    z-index: -1;
  }
  #wrapper04 #content09:after {
    content: "";
    background: url("../images/line_sp03-5.png") center center no-repeat;
    background-size: cover;
    width: 15px;
    height: 120px;
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    top: auto;
  }
  #wrapper04 #content09 > div {
    line-height: 0;
    *zoom: 1;
  }
  #wrapper04 #content09 > div:after {
    content: "";
    display: table;
    clear: both;
  }
  #wrapper04 #content09 > div .pic {
    display: inline-block;
    margin-bottom: 40px;
  }
  #wrapper04 #content09 > div p {
    margin-bottom: 30px;
    width: 100%;
  }
  #wrapper04 #content09 > div .pic02 {
    float: right;
    margin-right: -20px;
  }
  #wrapper04 #content09 > div #check06 {
    float: left;
    margin-left: -20px;
    position: static;
  }
  #wrapper04 #content10 {
    margin-top: 50px;
    z-index: 9;
  }
  #wrapper04 #content10 > div {
    line-height: 0;
    *zoom: 1;
  }
  #wrapper04 #content10 > div img {
    float: none;
  }
  #wrapper04 #content10 > div:after {
    content: "";
    display: table;
    clear: both;
  }
  #wrapper04 #content10 > div:after {
    content: "";
    background: url("../images/line_sp03-6.png") center center no-repeat;
    background-size: contain;
    width: 318px;
    height: 65px;
    position: absolute;
    bottom: -65px;
    left: 290px;
    z-index: -1;
  }
  #wrapper04 #content10 > div p {
    margin-bottom: 30px;
    width: 100%;
    float: none;
  }
  #wrapper04 #content11 {
    margin-top: 100px;
  }
  #wrapper04 #content11 > div {
    height: 1900px;
  }
  #wrapper04 #content11 > div:before {
    content: "";
    background: url("../images/line_sp03-7.png") center center no-repeat;
    background-size: contain;
    width: 18px;
    height: 773px;
    position: absolute;
    top: -93px;
    right: -8px;
  }
  #wrapper04 #content11 > div:after {
    content: "";
    background: url("../images/line_sp04-1.png") center center no-repeat;
    background-size: cover;
    width: 46px;
    height: 2442px;
    position: absolute;
    top: 1810px;
    left: -32px;
  }
  #wrapper04 #content11 > div p {
    margin-bottom: 20px;
    width: 100%;
  }
  #wrapper04 #content11 > div #check07 {
    position: absolute;
    top: 520px;
    left: 150px;
    z-index: 3;
  }
  #wrapper04 #content11 > div #check08 {
    position: absolute;
    left: 170px;
    bottom: 300px;
    z-index: 3;
    top: auto;
  }
  #wrapper04 #content11 > div p {
    margin-bottom: 20px;
  }
  #wrapper04 #content11 > div .s_content {
    width: 520px;
    border-radius: 8px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    position: absolute;
    bottom: 620px;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    z-index: 2;
    top: auto;
  }
  #wrapper04 #content11 > div .s_content h5 {
    text-align: center;
    font-size: 24px;
    line-height: 42px;
    letter-spacing: 0.25em;
    background-color: #85c14d;
    color: #fff;
  }
  #wrapper04 #content11 > div .s_content p {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    padding: 10px 10px 0;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  #wrapper04 #content11 > div .line {
    position: absolute;
    bottom: 72px;
    right: -8px;
    z-index: 1;
  }
  #wrapper04 #content12 {
    margin-top: 50px;
  }
  #wrapper04 #content12 > div {
    width: 510px;
    margin: auto;
    padding: 40px 20px;
    background-image: none;
  }
  #wrapper04 #content12 > div h2 {
    margin-bottom: 20px;
  }
  #wrapper04 #content12 > div .pic {
    display: block;
    margin: -10px -100px 40px auto;
  }
  #wrapper04 #content12 > div #check09 {
    position: absolute;
    top: 250px;
    left: 5px;
  }
  #wrapper04 #content12 > div .s_content {
    width: 500px;
    background: none;
    background-size: contain;
    width: 100%;
  }
  #wrapper04 #content12 > div .m_content {
    width: 100%;
    border-radius: 8px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    overflow: hidden;
    margin: 30px 0;
  }
  #wrapper04 #content12 > div .m_content h4 {
    text-align: center;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: 0.25em;
    background-color: #85c14d;
    color: #fff;
  }
  #wrapper04 #content12 > div .m_content div {
    padding: 0 20px 20px;
  }
  #wrapper04 #content12 > div .m_content div table {
    width: 100%;
  }
  #wrapper04 #content12 > div .m_content div table tr {
    border-top: solid 20px #fff;
  }
  #wrapper04 #content12 > div .m_content div table tr th {
    border-right: solid 1px #444;
    padding-left: 60px;
    width: 130px;
    text-align: left;
    vertical-align: middle;
    background: url("../images/ret.png") left center no-repeat;
    background-size: 44px 38px;
    font-size: 20px;
    line-height: 1.3;
  }
  #wrapper04 #content12 > div .m_content div table tr td {
    padding-left: 10px;
    font-size: 20px;
    line-height: 1.3;
    vertical-align: middle;
  }
  #wrapper04 #content12 > div .s_content p {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    width: 100%;
  }
  #wrapper04 #content12 > div .s_content p.small {
    font-size: 18px;
    font-weight: 500;
  }
  #wrapper04 #content13 {
    margin-top: 50px;
  }
  #wrapper04 #content13 > div {
    padding-bottom: 260px;
  }
  #wrapper04 #content13 > div:after {
    content: "";
    background: url("../images/line_sp04-3.png") center center no-repeat;
    background-size: cover;
    width: 717px;
    height: 396px;
    position: absolute;
    top: 745px;
    right: -57px;
  }
  #wrapper04 #content13 > div p {
    margin-bottom: 20px;
    width: 100%;
  }
  #wrapper04 #content13 > div .line {
    position: absolute;
    bottom: 46px;
    left: -22px;
  }
  #wrapper05 {
    padding: 330px 0 60px;
  }
  #wrapper05:before {
    background-image: none;
    width: 100%;
    left: 0;
  }
  #wrapper05 #content14 > div {
    height: 760px;
  }
  #wrapper05 #content14 > div img {
    position: absolute;
    top: -75px;
    left: -60px;
  }
  #wrapper05 #content14 > div img + img {
    top: 200px;
    left: 70px;
  }
  #wrapper05 #content14 > div:before {
    background: none;
  }
}

/*
---------------------------------------------
about
---------------------------------------------
*/
/* _content */
#about ._content .title {
  line-height: 1.5;
  padding-left: 0;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

#about ._content .lead,
#about ._content .text {
  line-height: 1.5;
  margin-bottom: 20px;
}

#about ._content .list {
  margin-bottom: 20px;
  counter-reset: item;
}

#about ._content .list li {
  line-height: 1.5;
  margin-bottom: 10px;
  text-indent: -1rem;
  padding-left: 1rem;
}

#about ._content .list > li::before {
  counter-increment: item;
  content: counter(item) ". ";
}

#about ._content .list-inner {
  counter-reset: kana;
}

#about ._content .list-inner > li {
  text-indent: -2rem;
  padding-left: 2rem;
}

#about ._content .list-inner > li::before {
  counter-increment: kana;
  content: counter(kana, katakana) "） ";
}

@media screen and (max-width: 767px) {
  #about ._content .lead {
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #about ._content .title {
    margin-bottom: 10px;
    margin-top: 25px;
  }
  #about ._content .lead,
  #about ._content .text {
    font-size: 14px;
    margin-bottom: 10px;
  }
  #about ._content .list li,
  #about ._content .list-inner li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/*
---------------------------------------------
privacy
---------------------------------------------
*/
/* _content */
#privacy ._content .title {
  line-height: 1.5;
  padding-left: 0;
  text-align: center;
  margin-bottom: 20px;
}

#privacy ._content .text {
  line-height: 1.5;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  #privacy ._content .title {
    margin-bottom: 10px;
  }
  #privacy ._content .text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

/*
---------------------------------------------
rules
---------------------------------------------
*/
/* _content */
#rules ._content .title {
  line-height: 1.5;
  padding-left: 0;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}

#rules ._content .lead,
#rules ._content .text {
  line-height: 1.5;
  margin-bottom: 20px;
}

#rules ._content .list {
  margin-bottom: 20px;
  counter-reset: item;
}

#rules ._content .list li {
  line-height: 1.5;
  margin-bottom: 10px;
  text-indent: -1rem;
  padding-left: 1rem;
}

#rules ._content .list > li::before {
  counter-increment: item;
  content: counter(item) ". ";
}

#rules ._content .list-inner {
  counter-reset: item02;
}

#rules ._content .list-inner > li {
  text-indent: -1rem;
  padding-left: 1rem;
}

#rules ._content .list-inner > li::before {
  counter-increment: item02;
  content: "(" counter(item02) ")";
}

@media screen and (max-width: 767px) {
  #rules ._content .lead {
    line-height: 1.5;
    margin-bottom: 20px;
  }
  #rules ._content .title {
    margin-bottom: 10px;
    margin-top: 25px;
  }
  #rules ._content .lead,
  #rules ._content .text {
    font-size: 14px;
    margin-bottom: 10px;
  }
  #rules ._content .list li,
  #rules ._content .list-inner li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/*
---------------------------------------------
dietitian-recipe
---------------------------------------------
*/
#dietitian-recipe ._results .order {
  margin-bottom: 24px;
}

#dietitian-recipe ._results .order li:first-child {
  border-right: solid 2px #ad824f;
  padding-right: 15px;
  margin-right: 15px;
}

#dietitian-recipe ._results .order li a {
  color: #ad824f;
  display: inline-block;
  font-weight: bold;
  padding: 7px 15px;
}

#dietitian-recipe ._results .order li a:hover {
  background: #f0e1c4;
  border-radius: 4px;
}

#dietitian-recipe ._results .list li {
  border-bottom: dotted 1px #333;
  padding-bottom: 25px;
  margin-bottom: 35px;
  width: 380px;
}

#dietitian-recipe ._results .list li:nth-child(odd) {
  padding-right: 20px;
  width: 402px;
}

#dietitian-recipe ._results .list li a {
  color: #393939;
}

#dietitian-recipe ._results .list li .img {
  margin-right: 15px;
  width: 160px;
}

#dietitian-recipe ._results .list li .body {
  width: calc(100% - 175px);
}

#dietitian-recipe ._results .list li .body .name {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
  text-decoration: underline;
}

#dietitian-recipe ._results .list li .body .text {
  line-height: 1.3;
  font-size: 15px;
}

#dietitian-recipe ._results .list li .body .tag li {
  border-bottom: none;
}

#dietitian-recipe ._results .list li .body .category {
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 5px;
  background: #54ab2b;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #dietitian-recipe ._results {
    margin-bottom: 0;
  }
  #dietitian-recipe ._results .list {
    margin-bottom: 60px;
  }
  #dietitian-recipe ._results .list li {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  #dietitian-recipe ._results .list li:nth-child(odd) {
    padding-right: 0;
    width: 100%;
  }
  #dietitian-recipe ._results .list li .img {
    margin-right: 15px;
    width: 110px;
  }
  #dietitian-recipe ._results .list li .img img {
    width: 100%;
  }
  #dietitian-recipe ._results .list li .body {
    width: calc(100% - 125px);
  }
  #dietitian-recipe ._results .list li .body .text {
    font-size: 14px;
  }
  #dietitian-recipe ._results .list li .body .category {
    font-size: 12px;
    width: 160px;
  }
}

/*
---------------------------------------------
lunch-single
---------------------------------------------
*/
#lunch-single ._detail .tag {
  background: #fb8700;
  color: white;
  padding: 5px;
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
}

#lunch-single ._detail .area .body {
  width: 391px;
}

#lunch-single ._detail .area .body .lead {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 24px;
}

#lunch-single ._detail .area .body .energy {
  font-size: 14px;
  text-align: right;
  color: #fb8700;
  margin-bottom: 17px;
}

#lunch-single ._detail .area .img img {
  width: 350px;
  height: auto;
}

#lunch-single ._detail .make .list li .box {
  border: solid 1px #6f5230;
  color: #6f5230;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.8;
}

#lunch-single ._detail .make .list li .box .name {
  font-weight: bold;
  margin-bottom: 10px;
}

#lunch-single ._detail .make .list li .box .text {
  margin-bottom: 0;
}

#lunch-single ._detail .profile {
  padding: 30px 42px;
  background: #fbf4e5;
  border-radius: 10px;
}

#lunch-single ._detail .profile .profile-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #fb8700;
  margin-bottom: 21px;
}

#lunch-single ._detail .profile .name {
  font-weight: bold;
  font-size: 20px;
  line-height: 27px;
  color: #ad824f;
  margin-bottom: 16px;
}

#lunch-single ._detail .profile .name span {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

#lunch-single ._detail .profile .text {
  font-size: 14px;
  line-height: 26px;
}

@media screen and (max-width: 767px) {
  #lunch-single ._detail .detail-title {
    font-size: 20px;
  }
  #lunch-single ._detail .tag {
    width: 150px;
    padding: 3px;
    margin-top: 10px;
  }
  #lunch-single ._detail .area .img {
    margin-bottom: 24px;
    width: 100%;
    text-align: center;
  }
  #lunch-single ._detail .area .img img {
    width: 80%;
    height: auto;
  }
  #lunch-single ._detail .area .body {
    width: 100%;
  }
  #lunch-single ._detail .profile {
    padding: 15px;
  }
}

.post-style {
  word-break: break-all;
}

.post-style h1 {
  font-size: 25px;
  line-height: 1.6;
  padding: 40px 0 20px;
  margin: 0 0 30px;
  border-bottom: 1px solid #333;
}

.post-style h2 {
  font-size: 23px;
  margin: 40px 0 20px;
}

.post-style h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding: 15px 0;
  border-bottom: 1px solid #333;
  margin: 30px 0 20px;
  background: none;
}

.post-style h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  padding: 10px 0;
  margin: 30px 0 10px;
  background: none;
}

.post-style p,
.post-style ul,
.post-style ol,
.post-style dl,
.post-style table {
  margin: 0 0 20px;
}

.post-style p,
.post-style li,
.post-style dt,
.post-style dd,
.post-style th,
.post-style td {
  font-size: 16px;
  line-height: 1.5;
}

.post-style a {
  color: #ad824f;
}

.post-style figure {
  display: block;
  width: 100%;
  margin: 0 0 20px;
}

.post-style figure img {
  max-width: 100%;
  height: auto;
}

.post-style figure figcaption {
  display: block;
  font-size: 16px;
  margin: 10px 0 0;
  line-height: 1.5;
}

.post-style picture {
  display: block;
  margin: 0 0 20px;
}

.post-style table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid #333;
}

.post-style table th,
.post-style table td {
  padding: 10px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
}

.post-style .wp-block-button.center {
  display: block;
  text-align: center;
}

.post-style .wp-block-button.right {
  display: block;
  text-align: right;
}

.post-style .wp-block-button_link {
  font-size: 15px;
}

.post-style .wp-block-group.has-background {
  padding: 20px;
}

.post-style .aligncenter {
  text-align: center;
}

.post-style .alignright {
  text-align: right;
}

.your_form {
  width: 100%;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .your_form {
    font-size: 13px;
  }
}

.your_form-wrapper {
  max-width: 800px;
  margin: 36px auto 36px;
}

@media screen and (max-width: 767px) {
  .your_form-wrapper {
    padding: 0 10px;
  }
}

.your_form-head {
  font-weight: bold;
  font-size: 20px;
  line-height: 29px;
  color: #ad824f;
  margin: 26px 0 15px;
}

@media screen and (max-width: 767px) {
  .your_form-head {
    font-size: 18px;
  }
}

.your_form-item {
  width: 100%;
  display: flex;
  border-top: 1px solid #ad824f;
  border-right: 1px solid #ad824f;
  border-left: 1px solid #ad824f;
}

.your_form-item:last-of-type {
  border-bottom: 1px solid #ad824f;
}

.your_form-item:nth-of-type(odd) {
  background-color: #faf9f8;
}

@media screen and (max-width: 767px) {
  .your_form-item {
    flex-direction: column;
  }
}

.your_form-item > dt {
  width: 233px;
  padding: 18px;
  font-weight: bold;
  align-self: center;
}

@media screen and (max-width: 767px) {
  .your_form-item > dt {
    width: 100%;
    padding-bottom: 10px;
  }
}

.your_form-item > dd {
  width: calc(100% - 223px);
  border-left: 1px solid #ad824f;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .your_form-item > dd {
    width: 100%;
    border-left: none;
    padding-top: 10px;
  }
}

.your_form-item > dd input {
  height: 32px;
  border: 1px solid #393939;
  padding: 4px;
}

.your_form-item > dd select {
  width: 100%;
  height: 32px;
  border: 1px solid #393939;
  padding: 4px;
}

.your_form-item_select-wrap {
  width: 48%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .your_form-item_select-wrap {
    width: 100%;
  }
}

.your_form-item.is-border {
  border-bottom: 1px solid #ad824f;
}

.your_form-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 55px;
  margin-bottom: 60px;
}

.your_form-button input {
  background: #ffffff;
  border: 2px solid #fb8700;
  box-sizing: border-box;
  border-radius: 50px;
  color: #fb8700;
  display: block;
  font-size: 16px;
  padding: 12px 0;
  width: 220px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
}

.your_form-button .back-btn {
  margin-right: 50px;
}

.your_form .error {
  color: red;
}

.flex-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.flex-list > li {
  width: calc(50% - 10px);
}

.flex-list > li > input {
  width: 100%;
}

.flex-list.in-text > li {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .flex-list.in-text > li {
    width: 100%;
  }
}

.flex-list.in-text > .flex-inner-text {
  width: 40px;
  height: 20px;
  align-self: center;
  text-align: center;
}

.flex-list.in-text > .flex-inner-text > span {
  width: 100%;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .flex-list.in-text > .flex-inner-text > span {
    font-size: 16px;
  }
}

.flex-list.is-column {
  flex-direction: column;
}

.flex-list.is-column li {
  width: 70%;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .flex-list.is-column li {
    width: 100%;
  }
}

.flex-list.is-column li .pref-select-wrap {
  width: 68%;
  position: relative;
}

.flex-list.is-column select {
  width: 100%;
}

.flex-list.is-column input {
  width: 100%;
}

.flex-list.is-column span {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .flex-list.is-column span {
    display: block;
    padding-top: 5px;
  }
}

.flex-list.is-column .space-top {
  display: block;
  padding-top: 5px;
}

.college-list {
  line-height: 1.2;
}

.college-list-wrapper {
  background-color: #e3d2bd;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 8px;
}

.college-list-attention {
  font-size: 14px;
  line-height: 20px;
  color: #e23e34;
}

.college-list > li {
  margin: 14px 0;
  font-size: 14px;
}

.college-text {
  margin: 14px 0;
  font-size: 14px;
}

.college-text.is-addition {
  font-size: 12px;
}

.mw_wp_form_confirm .your_form {
  width: 100%;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form {
    font-size: 13px;
  }
}

.mw_wp_form_confirm .your_form-wrapper {
  max-width: 800px;
  margin: 36px auto 36px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form-wrapper {
    padding: 0 10px;
  }
}

.mw_wp_form_confirm .your_form-head {
  font-weight: bold;
  font-size: 20px;
  line-height: 29px;
  color: #ad824f;
  margin: 26px 0 15px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form-head {
    font-size: 18px;
  }
}

.mw_wp_form_confirm .your_form-item {
  width: 100%;
  display: flex;
  border-top: 1px solid #ad824f;
  border-right: 1px solid #ad824f;
  border-left: 1px solid #ad824f;
}

.mw_wp_form_confirm .your_form-item:last-of-type {
  border-bottom: 1px solid #ad824f;
}

.mw_wp_form_confirm .your_form-item:nth-of-type(odd) {
  background-color: #faf9f8;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form-item {
    flex-direction: column;
  }
}

.mw_wp_form_confirm .your_form-item > dt {
  width: 233px;
  padding: 18px;
  font-weight: bold;
  align-self: center;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form-item > dt {
    width: 100%;
    padding-bottom: 10px;
  }
}

.mw_wp_form_confirm .your_form-item > dd {
  width: calc(100% - 223px);
  border-left: 1px solid #ad824f;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form-item > dd {
    width: 100%;
    border-left: none;
    padding-top: 10px;
  }
}

.mw_wp_form_confirm .your_form-item > dd input {
  height: 32px;
  border: 1px solid #393939;
  padding: 4px;
}

.mw_wp_form_confirm .your_form-item > dd select {
  width: 48%;
  height: 32px;
  border: 1px solid #393939;
  padding: 4px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form-item > dd select {
    width: 100%;
  }
}

.mw_wp_form_confirm .your_form-item.is-border {
  border-bottom: 1px solid #ad824f;
}

.mw_wp_form_confirm .your_form-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 55px;
  margin-bottom: 60px;
}

.mw_wp_form_confirm .your_form-button input {
  background: #ffffff;
  border: 2px solid #fb8700;
  box-sizing: border-box;
  border-radius: 50px;
  color: #fb8700;
  display: block;
  font-size: 16px;
  padding: 12px 0;
  width: 220px;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form-button input {
    width: 130px;
  }
}

.mw_wp_form_confirm .your_form-button .back-btn {
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .your_form-button .back-btn {
    margin-right: 30px;
  }
}

.mw_wp_form_confirm .your_form .error {
  color: red;
}

.mw_wp_form_confirm .flex-list {
  display: flex;
  justify-content: flex-start;
  width: auto;
}

.mw_wp_form_confirm .flex-list > li {
  width: auto;
}

.mw_wp_form_confirm .flex-list > li > input {
  width: auto;
}

.mw_wp_form_confirm .flex-list.in-text {
  align-items: center;
}

.mw_wp_form_confirm .flex-list.in-text > li {
  width: auto;
}

.mw_wp_form_confirm .flex-list.in-text > .flex-inner-text {
  width: 25px;
  height: 20px;
  align-self: center;
  text-align: center;
}

.mw_wp_form_confirm .flex-list.in-text > .flex-inner-text > span {
  width: 100%;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .flex-list.in-text > .flex-inner-text > span {
    font-size: 16px;
  }
}

.mw_wp_form_confirm .flex-list.is-column {
  flex-direction: column;
}

.mw_wp_form_confirm .flex-list.is-column li {
  width: 70%;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .flex-list.is-column li {
    width: 100%;
  }
}

.mw_wp_form_confirm .flex-list.is-column select {
  width: 68%;
}

.mw_wp_form_confirm .flex-list.is-column input {
  width: 100%;
}

.mw_wp_form_confirm .flex-list.is-column span {
  font-size: 14px;
  display: none;
}

@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .flex-list.is-column span {
    display: none;
    padding-top: 5px;
  }
}

.mw_wp_form_confirm .flex-list.is-column .space-top {
  display: none;
  padding-top: 5px;
}

.mw_wp_form_confirm .college-list {
  line-height: 1.2;
}

.mw_wp_form_confirm .college-list-wrapper {
  background-color: #e3d2bd;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 8px;
}

.mw_wp_form_confirm .college-list-attention {
  font-size: 14px;
  line-height: 20px;
  color: #e23e34;
}

.mw_wp_form_confirm .college-list > li {
  margin: 14px 0;
  font-size: 14px;
}

.mw_wp_form_confirm .college-text {
  margin: 14px 0;
  font-size: 14px;
}

.thanks-area {
  max-width: 800px;
  margin: 36px auto 36px;
}

@media screen and (max-width: 767px) {
  .thanks-area {
    padding: 0 10px;
  }
}

.thaks-head {
  margin: 14px 0;
  font-size: 18px;
}

.thanks-text {
  margin: 14px 0;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  #login-area .login {
    display: none;
  }
}

#search-result {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .login-iframe {
    width: 100%;
    height: 97px;
  }
}
/*# sourceMappingURL=style.css.map */
