@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #FFFBF3;
  min-height: 100vh;
}

h4, h5, h6 {
  border-bottom: none;
}

/* レイアウト */
.content-layout {
  display: flex;
}
.content-layout .sidebar {
  width: 360px;
  margin-right: 34px;
  align-self: flex-start;
}
.content-layout .content {
  width: calc(100% - 360px);
}
@media screen and (max-width: 1024px) {
  .content-layout {
    display: block;
  }
  .content-layout .content {
    width: 100%;
  }
  .content-layout .sidebar {
    display: none;
  }
}

/* テーマカラー */
.recipe {
  --theme-color: #FF9600;
}

.column {
  --theme-color: #68B589;
}

.error .btn {
  border: solid 1px black;
  border-radius: 1em;
}
.error a.recipe-link {
  color: #FF9600;
  border-color: #FF9600;
}
.error a.column-link {
  color: #68B589;
  border-color: #68B589;
}

@media screen and (max-width: 1024px) {
  body {
    padding-top: 70px;
  }
  .page_top_btn {
    bottom: calc(2% + 60px);
    z-index: 90;
  }
}
/* header */
.header {
  position: relative;
  height: 100px;
  z-index: 100;
}
.header h1 {
  position: absolute;
  margin: 0;
  width: 300px;
  height: 34px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../img/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
.header .g-nav,
.header .sp-g-nav {
  height: 100%;
}
.header .g-nav ul,
.header .sp-g-nav ul {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin: 0;
  margin-right: 30px;
  height: 100%;
  align-items: center;
  font-size: 14px;
}
.header .g-nav li a,
.header .sp-g-nav li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0;
}
.header .g-nav li a:hover,
.header .sp-g-nav li a:hover {
  opacity: 0.5;
}
.header .g-nav li a:before,
.header .sp-g-nav li a:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.header .g-nav .nav-item-search::before,
.header .sp-g-nav .nav-item-search::before {
  background-image: url("../img/nav-icon-search.png");
}
.header .g-nav .nav-item01::before,
.header .sp-g-nav .nav-item01::before {
  background-image: url("../img/nav-icon01.png");
}
.header .g-nav .nav-item02::before,
.header .sp-g-nav .nav-item02::before {
  background-image: url("../img/nav-icon02.png");
}
.header .g-nav .nav-item03::before,
.header .sp-g-nav .nav-item03::before {
  background-image: url("../img/nav-icon03.png");
}
.header .sp-g-nav {
  display: none;
  position: fixed;
  bottom: 0;
  height: 60px;
  background-color: white;
  z-index: 100;
  width: 100%;
}
.header .sp-g-nav ul {
  margin: 0;
  padding: 0 8px;
  justify-content: center;
}
.header .sp-g-nav li {
  flex: 1;
  text-align: center;
}
.header .sp-g-nav li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFBF3;
    height: 70px;
  }
  .header h1 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 16px auto;
  }
  .header .g-nav {
    display: none;
  }
  .header .sp-g-nav {
    display: block;
  }
}

.hamburger-menu {
  display: none;
}
.hamburger-menu #menu-btn-check {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
}
.hamburger-menu .menu-btn {
  position: fixed;
  top: 10px;
  left: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
.hamburger-menu .menu-btn span,
.hamburger-menu .menu-btn span:before,
.hamburger-menu .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: var(--vk-color-text-body);
  position: absolute;
  transition: all 0.2s ease-in;
}
.hamburger-menu .menu-btn span:before {
  bottom: 8px;
}
.hamburger-menu .menu-btn span:after {
  top: 8px;
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.hamburger-menu #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  .hamburger-menu.visible {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  #wpadminbar {
    display: none;
  }
  html {
    margin-top: 0 !important;
  }
}
.column .header h1 {
  background-image: url("../img/logo-column.png");
}

/* footer */
.footer {
  margin-top: 54px;
  color: #231815;
}
.footer .container {
  border-top: solid 1px #231815;
  padding-top: 48px;
  padding-bottom: 48px;
}
.footer .footer-header-container {
  display: flex;
  justify-content: space-between;
}
.footer .logo img {
  width: 200px;
}
.footer .sns {
  gap: 16px;
  justify-content: flex-end;
}
.footer .sns h6 {
  margin: 0;
  font-weight: normal;
}
.footer .sns img {
  width: 40px;
  height: 40px;
}
.footer .links {
  margin: 16px 0;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 60px;
  }
  .footer .footer-header-container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .footer .footer-header-container h6 {
    display: none;
  }
  .footer .footer-header-container .logo {
    margin-top: 24px;
  }
  .footer .links {
    text-align: center;
  }
  .footer #copyright {
    text-align: center;
  }
}

/* slider */
.top-swiper {
  position: relative;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.top-swiper.swiper-initialized, .top-swiper.swiper-container-initialized {
  opacity: 1;
}
.top-swiper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  height: 50vh;
}
.top-swiper .swiper-slide img {
  border-radius: 40px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-swiper .swiper-pagination {
  margin-top: 8px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-swiper .swiper-slide {
    width: 90%;
    aspect-ratio: 1.5;
    height: auto;
    margin: 0 24px;
  }
}

.pickup-swiper {
  position: relative;
  opacity: 0;
  transition: all 0.3s ease-in;
  overflow: hidden;
}
.pickup-swiper.swiper-initialized, .pickup-swiper.swiper-container-initialized {
  opacity: 1;
}
.pickup-swiper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  height: 30vh;
  text-align: center;
}
.pickup-swiper .swiper-slide img {
  border-radius: 40px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pickup-swiper .swiper-pagination {
  margin-top: 8px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .pickup-swiper .swiper-slide {
    width: 90%;
    aspect-ratio: 1.5;
    height: auto;
    margin: 0 24px;
  }
}

.site-nav {
  margin-top: 54px;
}
.site-nav .site-nav-wrapper {
  gap: 30px;
  display: flex;
  justify-content: center;
}
.site-nav .site-nav-item {
  padding: 20px 0;
  background: border-box; /* border-box is needed for a gradient coloration */
  background-color: #CCCCCC;
  --r: 35px; /* control the radius */
  line-height: 1.8; /* control the height */
  padding-inline: 30px;
  border-inline: var(--r) solid rgba(0, 0, 0, 0);
  border-radius: calc(2 * var(--r)) calc(2 * var(--r)) 0 0/var(--r);
  -webkit-mask: radial-gradient(var(--r) at var(--r) 0, rgba(0, 0, 0, 0) 98%, #000 101%) calc(-1 * var(--r)) 100%/100% var(--r) repeat-x, conic-gradient(#000 0 0) padding-box;
          mask: radial-gradient(var(--r) at var(--r) 0, rgba(0, 0, 0, 0) 98%, #000 101%) calc(-1 * var(--r)) 100%/100% var(--r) repeat-x, conic-gradient(#000 0 0) padding-box;
  width: -moz-fit-content;
  width: fit-content;
}
.site-nav .site-nav-item a {
  color: white;
}
.site-nav::after {
  content: "";
  display: block;
  background-color: #CCCCCC;
  width: 100%;
  height: 10px;
  margin-top: -1px; /* SPで線が表示されないようにする対策 */
}

.site-nav.recipe .site-nav-item.recipe {
  background-color: #FF9600;
}
.site-nav.recipe::after {
  background-color: #FF9600;
}
.site-nav.column .site-nav-item.column {
  background-color: #68B589;
}
.site-nav.column::after {
  background-color: #68B589;
}

.sidebar {
  position: relative;
}
.sidebar h3 {
  border: none;
  border-bottom: solid 2px #333333;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar .btn {
  border: solid 1px #333333;
  border-radius: 1em;
  display: block;
  width: 100%;
  margin-bottom: 8px;
}
.sidebar .sidebar-buttons {
  padding: 24px 16px;
  display: flex;
  gap: 8px;
}
.sidebar .sidebar-buttons .btn {
  width: 80%;
}
.sidebar .sidebar-buttons .form-clear {
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex: 1;
}

.side-banner {
  margin-bottom: 32px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.side-banner .side-title {
  margin-bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  color: white;
  pointer-events: none;
}
.side-banner img {
  width: 100%;
  height: 100%;
  display: block;
}

.side-tags .sidebar-tag-list a {
  display: block;
}
@media screen and (max-width: 1024px) {
  .side-tags .sidebar-tag-list a {
    padding: 8px;
  }
}

.sp-sidebar {
  display: none;
  width: 100%;
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px);
  position: fixed;
  top: 70px;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  transition: all 0.5s; /*アニメーション設定*/
  background-color: white;
  padding-top: 10px;
}
.sp-sidebar .container {
  height: calc(100% - 100px);
  overflow-y: scroll;
  padding-bottom: 20vh;
}
@media screen and (max-width: 1024px) {
  .sp-sidebar {
    display: block;
    z-index: 100;
  }
}

@media screen and (max-width: 1024px) {
  .show-menu .sp-sidebar {
    left: 0;
  }
}

.column .sp-sidebar .container {
  height: 100%;
  overflow-y: scroll;
}
.column .sp-sidebar .sidebar-buttons {
  display: none;
}

/* 各ページ */
.content-page {
  max-width: 900px;
  margin: 0 auto;
  /* lightning */
}
.content-page .page-image {
  margin-bottom: 96px;
}
.content-page .page-time {
  text-align: center;
  font-size: 15px;
}
.content-page .page-title h2 {
  border: none;
  text-align: center;
  width: 610px;
  margin: 0 auto;
  margin-bottom: 64px;
  font-weight: normal;
  font-size: 30px;
}
.content-page .page-content {
  margin-bottom: 80px;
}
.content-page .page-bottom-nav {
  margin-bottom: 80px;
}
.content-page .page-bottom-nav .nav-links {
  display: flex;
  justify-content: center;
  gap: 80px;
  font-weight: bold;
}
.content-page .page-bottom-nav .nav-previous {
  width: 30%;
}
.content-page .page-bottom-nav .nav-next {
  width: 30%;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .content-page .page-title h2 {
    width: 100%;
    margin-bottom: 32px;
    font-size: 22px;
  }
}
.content-page .is-style-rounded img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* コンテンツ部分の調節 */
.content-page .alignwide {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* pager */
.pager {
  display: flex;
  justify-content: flex-start;
}
.pager .page-numbers {
  margin-bottom: 0;
}

.top-search {
  margin: 32px 0;
  display: flex;
  justify-content: center;
}
.top-search .top-search-input {
  width: 400px;
  margin: 0 8px 0 0;
}
.top-search .top-search-btn {
  color: #FFFBF3;
  background-color: var(--theme-color, #FF9600);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  white-space: nowrap;
}

.recipe-nav {
  position: sticky;
  top: 0;
}
.recipe-nav .recipe-nav-category ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.recipe-nav .recipe-nav-category label {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex: 1;
}
.recipe-nav .recipe-nav-category .recipe-nav-parent {
  width: 100%;
  display: flex;
  align-items: center;
}
.recipe-nav .recipe-nav-category .recipe-nav-parent .icon {
  height: 20px;
  margin-right: 4px;
}
.recipe-nav .recipe-nav-category .recipe-nav-parent .icon-adjust {
  height: 40px;
}
.recipe-nav .recipe-nav-category .recipe-nav-child {
  width: 100%;
  padding-left: 32px;
}
.recipe-nav .recipe-nav-category .recipe-nav-child li {
  width: 100%;
}
.recipe-nav .recipe-nav-category .recipe-nav-child li label {
  flex: 1;
}
.recipe-nav .recipe-nav-category input {
  margin-right: 8px;
}
.recipe-nav .recipe-nav-category input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #FF9600;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.recipe-nav .recipe-nav-category input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FF9600;
  content: "";
}
.recipe-nav .icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.new-recipe h4 {
  background: none;
  margin-bottom: 40px;
  padding: 0;
}

.recipe .top-nav-all a,
.column .top-nav-all a {
  color: var(--theme-color, black);
  border: solid 1px var(--theme-color, black);
  padding: 8px 20px;
  border-radius: 20px;
  min-width: 200px;
  display: inline-block;
}

/* icons */
.icon-nav-main {
  background-image: url("../img/icon/icon-main.png");
}

.icon-nav-main_dish {
  background-image: url("../img/icon/icon-main_dish.png");
}

.icon-nav-side_dish {
  background-image: url("../img/icon/icon-side_dish.png");
}

.icon-nav-soup {
  background-image: url("../img/icon/icon-soup.png");
}

.icon-nav-dressing {
  background-image: url("../img/icon/icon-dressing.png");
}

.icon-nav-dessert {
  background-image: url("../img/icon/icon-dessert.png");
}

.icon-nav-fiber {
  background-image: url("../img/icon/icon-fiber.png");
}

.icon-nav-fat {
  background-image: url("../img/icon/icon-fat.png");
}

.icon-nav-protein {
  background-image: url("../img/icon/icon-protein.png");
}

.icon-nav-salt {
  background-image: url("../img/icon/icon-salt.png");
}

.icon-nav-energy {
  background-image: url("../img/icon/icon-energy.png");
}

.icon-nav-ibd_active {
  background-image: url("../img/symptom/ibd_active.png");
}

.icon-nav-ibd_preactive {
  background-image: url("../img/symptom/ibd_pre_active.png");
}

.icon-nav-ibd_remission {
  background-image: url("../img/symptom/ibd_remission.png");
}

.icon-nav-constriction {
  background-image: url("../img/symptom/constriction.png");
}

.icon-nav-anemia {
  background-image: url("../img/symptom/anemia.png");
}

.icon-nav-diarrhea {
  background-image: url("../img/symptom/ibs_diarrhea.png");
}

.icon-nav-constipation {
  background-image: url("../img/symptom/ibs_constipation.png");
}

.icon-nav-gas {
  background-image: url("../img/symptom/gas.png");
}

.icon-nav-low_fodmap {
  background-image: url("../img/symptom/lowfodmap.webp");
}

.icon-nav-arrange_low_fodmap {
  background-image: url("../img/symptom/lowfodmap_arrange.webp");
}

/**
 * レシピ一覧
 */
.recipe-list .recipe-item {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.recipe-list .recipe-item h5 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.recipe-list .recipe-item .new-txt {
  position: absolute;
  top: -30px;
  left: -10px;
  display: flex;
  justify-content: center;
  color: white;
  align-items: center;
  width: 65px;
  height: 65px;
  background-image: url("../img/new.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.recipe-list .recipe-item .recipe-item-image {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 8px;
}
.recipe-list .recipe-item .recipe-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recipe-list .recipe-item .recipe-item-recipemaker {
  margin-bottom: 8px;
}
.recipe-list .recipe-item .recipe-item-metas {
  margin-top: auto;
  margin-bottom: 4px;
}
.recipe-list .recipe-item .icon {
  width: 20px;
  height: 20px;
}
.recipe-list .recipe-item .recipe-item-metas {
  display: flex;
  justify-content: space-between;
}
.recipe-list .recipe-item .recipe-item-table-container {
  border: solid 1px #333;
  border-radius: 8px;
  padding: 8px;
}
.recipe-list .recipe-item .recipe-item-table {
  border-top: none;
}
.recipe-list .recipe-item .recipe-item-table td {
  border: none;
  padding: 0 8px;
}

/**
 * レシピ詳細
 */
.recipe-detail {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* いいねボタンのレイアウト調節 */
}
.recipe-detail .recipe-details-title {
  border: none;
  margin: 0;
  padding: 0;
}
.recipe-detail h5 {
  margin-bottom: 0;
}
.recipe-detail .recipe-item-image {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 8px;
}
.recipe-detail .recipe-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recipe-detail .recipe-item-metas {
  margin-top: auto;
}
.recipe-detail .icon {
  width: 20px;
  height: 20px;
}
.recipe-detail .recipe-item-metas {
  display: flex;
  justify-content: space-between;
}
.recipe-detail .recipe-item-table-title {
  font-size: 15px;
}
.recipe-detail .recipe-details-recipemaker a {
  text-decoration: underline;
}
.recipe-detail .recipe-item-table-container {
  border: solid 1px #333;
  border-radius: 20px;
  padding: 8px;
}
.recipe-detail .recipe-item-table {
  border-top: none;
}
.recipe-detail .recipe-item-table td {
  border: none;
  padding: 0 8px;
}
.recipe-detail .recip-item-cooking-time {
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.recipe-detail .recipe-item-symptom {
  display: flex;
  flex-wrap: wrap;
  margin: 32px 0 24px 0;
}
.recipe-detail .recipe-item-symptom .recipe-item-symptom-item {
  margin-right: 16px;
  margin-bottom: 16px;
  white-space: nowrap;
}
.recipe-detail .recipe-step {
  display: flex;
}
.recipe-detail .recipe-step .recipe-step-number {
  margin-right: 8px;
}
.recipe-detail .recipe-step .recipe-step-number span {
  display: inline-block;
  background-color: #FF9600;
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  padding: 4px 8px;
  min-width: 33px;
}
.recipe-detail .recipe-step .recipe-step-content {
  flex: 1;
}
.recipe-detail .section-header {
  margin-top: 40px;
  margin-bottom: 80px;
}
.recipe-detail .section-ingredient {
  margin-bottom: 80px;
}
.recipe-detail .section-point {
  border: solid 1px #333;
  border-radius: 20px;
  padding: 60px 24px 24px;
  margin-bottom: 80px;
  position: relative;
}
.recipe-detail .section-point::before {
  content: "POINT";
  color: white;
  padding-left: 25px;
  line-height: 75px;
  font-weight: bold;
  display: block;
  width: 150px;
  height: 80px;
  background-image: url("../img/recipe_point.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 20px;
}
.recipe-detail .section-point .arrange-icon {
  display: flex;
}
.recipe-detail .recipe-details-buttons {
  align-items: center;
  justify-content: flex-end;
}
.recipe-detail .recipe-annotations .annnotaion_for_cooking {
  display: flex;
  gap: 8px;
}
.recipe-detail .recipe-annotations img {
  max-width: 30%;
}
.recipe-detail .banner {
  margin-bottom: 80px;
}
.recipe-detail .section-comment {
  border: solid 1px #333;
  border-radius: 20px;
  padding: 24px 24px 24px;
  position: relative;
  margin-bottom: 80px;
}
.recipe-detail .section-comment .field-recipemaker {
  background-color: #FF9600;
  color: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 40px;
}
.recipe-detail .section-comment .field-recipemaker a {
  color: white;
  text-decoration: underline;
}
.recipe-detail .section-comment .comment-dietitian {
  display: flex;
  margin-top: 48px;
}
.recipe-detail .section-comment .comment-dietitian .dietitian-image {
  width: 150px;
  min-height: 150px;
  margin-left: auto;
}
.recipe-detail .section-comment .comment-dietitian .dietitian-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .recipe-detail .section-comment .comment-dietitian {
    flex-direction: column-reverse;
  }
  .recipe-detail .section-comment .comment-dietitian .dietitian-image {
    margin-right: auto;
  }
}
.recipe-detail .section-recipe-nav {
  margin-bottom: 80px;
}
.recipe-detail .section-recipe-nav h6 {
  position: relative;
  padding-left: 96px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
}
.recipe-detail .section-recipe-nav h6::before {
  content: "";
  width: 80px;
  height: 150px;
  background-image: url("../img/flag.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 20px;
}
.recipe-detail .section-recipe-nav h6::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #333;
  display: block;
  width: 100%;
  margin-left: 16px;
}
.recipe-detail .section-recipe-nav .new-recipe-item {
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .recipe-detail .recipe-details-buttons {
    justify-content: flex-start;
  }
  .recipe-detail .recipe-details-buttons .simplefavorite-button-link {
    margin-left: 8px;
  }
  .recipe-detail .recipe-details-buttons .wp_ulike_general_class {
    white-space: nowrap;
  }
  .recipe-detail .recipe-details-buttons .wpulike-animated-heart button.wp_ulike_btn {
    min-width: auto;
    width: 100%;
    padding: 0 24px;
    flex: 1;
  }
  .recipe-detail .recipe-details-buttons .simplefavorite-button-link {
    min-width: auto;
    padding: 0 24px;
  }
}

#wpmem_login, #wpmem_reg, .wpmem_msg {
  margin: 0 auto;
  width: 100%;
}

#wpmem_reg label[for=username] {
  position: absolute;
  visibility: hidden;
}
#wpmem_reg #username {
  position: absolute;
  visibility: hidden;
}

.content-mypage {
  max-width: 900px;
  margin: 0 auto;
}
.content-mypage .page-image {
  margin-bottom: 96px;
}
.content-mypage .page-time {
  text-align: center;
  font-size: 15px;
}
.content-mypage .page-title h2 {
  border: none;
  text-align: center;
  width: 610px;
  margin: 0 auto;
  margin-bottom: 64px;
  font-weight: normal;
  font-size: 35px;
}
.content-mypage .page-content {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .content-mypage .page-title h2 {
    width: 100%;
    margin-bottom: 32px;
  }
}
.content-mypage .user-name {
  text-align: center;
  border: none;
  padding-bottom: 0;
  margin-bottom: 16px;
}
.content-mypage .user-name::after {
  border: none;
}
.content-mypage .btn-user-edit {
  display: flex;
  justify-content: center;
}
.content-mypage .btn-user-edit a {
  border: solid 1px black;
  border-radius: 1em;
  padding: 4px 24px;
  font-size: 12px;
}
.content-mypage .my_liked_recipe .recipe-item-metas {
  display: none;
}
.content-mypage .my_liked_recipe .recipe-item-table-container {
  display: none;
}

.simplefavorite-button,
.simplefavorite-button-link {
  white-space: nowrap;
  color: #FF9600;
  background-color: transparent;
  border: solid 1px #FF9600;
  height: 36px;
  border-radius: 36px;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  font-size: 14px;
}
.simplefavorite-button:hover,
.simplefavorite-button-link:hover {
  color: white;
  background-color: #FF9600;
}
.simplefavorite-button .sf-icon-star-empty, .simplefavorite-button .sf-icon-star-full,
.simplefavorite-button-link .sf-icon-star-empty,
.simplefavorite-button-link .sf-icon-star-full {
  font-size: 20px;
  margin-left: 8px;
}
.simplefavorite-button .sf-icon-star-empty,
.simplefavorite-button-link .sf-icon-star-empty {
  font-size: 20px;
  margin-left: 8px;
}
.simplefavorite-button.active,
.simplefavorite-button-link.active {
  color: white;
  background-color: #FF9600;
}

.wpulike-animated-heart button.wp_ulike_btn {
  border-radius: solid 1px #ff6f63;
  color: #ff6f63;
  background-color: transparent;
  border: solid 1px #ff6f63;
  height: 36px;
  border-radius: 36px;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
}
.wpulike-animated-heart button.wp_ulike_btn .wpulike-svg-heart {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}
.wpulike-animated-heart button.wp_ulike_btn .wpulike-svg-heart-pop {
  position: absolute;
  display: none;
}
.wpulike-animated-heart button.wp_ulike_btn::before {
  content: "ありがとう";
  color: white;
  margin-right: 8px;
}

.wp_ulike_general_class.wp_ulike_is_unliked button.wp_ulike_btn::before,
.wp_ulike_general_class.wp_ulike_is_not_liked button.wp_ulike_btn::before {
  color: #ff6f63;
}

.wp_ulike_general_class.wp_ulike_is_liked button.wp_ulike_btn,
.wp_ulike_general_class.wp_ulike_is_not_liked.wp_ulike_is_liked button.wp_ulike_btn {
  color: white;
}
.wp_ulike_general_class.wp_ulike_is_liked button.wp_ulike_btn::before,
.wp_ulike_general_class.wp_ulike_is_not_liked.wp_ulike_is_liked button.wp_ulike_btn::before {
  color: white;
}

.wpulike-animated-heart .count-box {
  display: none;
}

/* -----------
  書籍一覧ページ 
  ----------- */
.book-item {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
.book-item .book-item-left {
  text-align: center;
  width: 350px;
}
.book-item .book-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.book-item .book-subtitle {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}
.book-item .book-serialization {
  margin-bottom: 0;
}
.book-item .book-publisher {
  margin-bottom: 0;
}
.book-item .book-item-right img {
  width: 270px;
  margin-left: 80px;
}
.book-item .details_to_buy > a {
  display: flex;
  justify-content: center;
}
.book-item .details_to_buy > a > img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .book-item {
    flex-direction: column-reverse;
  }
  .book-item .book-item-left {
    width: 100%;
  }
  .book-item .book-item-right {
    width: 100%;
    margin-bottom: 16px;
  }
  .book-item .book-item-right img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}

/* 投稿 */
.post-item {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-item h5 {
  margin-bottom: 0;
}
.post-item .post-item-image {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 8px;
}
.post-item .post-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-item .post-title h3 {
  font-size: 17px;
  margin: 8px 0;
  padding: 0;
  border: none;
}
.post-item .post-title h3::after {
  border: none;
}

.section-special-nav {
  margin-bottom: 80px;
}
.section-special-nav h5 {
  font-weight: normal;
  position: relative;
  padding-left: 96px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
}
.section-special-nav h5::before {
  content: "";
  width: 80px;
  height: 150px;
  background-image: url("../img/flag-column.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -40px;
  left: 20px;
}
.section-special-nav h5::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #333;
  display: block;
  width: 100%;
  margin-left: 16px;
}
@media screen and (max-width: 1024px) {
  .section-special-nav h5 {
    justify-content: center;
    padding-left: 0;
    font-weight: bold;
  }
  .section-special-nav h5::after {
    display: none;
  }
  .section-special-nav h5::before {
    position: relative;
    top: 20px;
    left: 0;
  }
}
.section-special-nav .wp-block-image img {
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=common.css.map */