html {
  font-size: 62.5%;
  /*16px62.5%=10px*/
}

:root {
  --white: #fff;
  --main_pink: #EA8AA3;
  --btn_gray: #818181;
  --bg_gray: #EEEEEE;
  --font_color: #453C39;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--font_color);
  overflow-x: hidden;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

main {
  padding-top: 71px;
}
@media print {
  main {
    padding-top: 0;
  }
}

.wrap_primary {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wrap_wide {
  max-width: 1240px;
  margin: 0 auto;
}

.bg_gray {
  background-color: var(--bg_gray);
}

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

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

img {
  height: unset;
}

a {
  transition-duration: 0.3s;
}
a:hover {
  transition-duration: 0.3s;
}

.smp_scroll_area {
  width: 100%;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .smp_scroll_area {
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.smp_scroll_area .scroll_inner {
  overflow-x: scroll;
  position: relative;
}
.smp_scroll_area .scroll_inner::-webkit-scrollbar {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 20px;
  min-width: 1080px;
}
table tr:first-of-type th {
  background-color: var(--blue);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  padding: 4px 20px;
}
table td,
table th {
  border: 1px solid var(--white);
  padding: 10px 20px;
  text-align: left;
}
table td[rowspan],
table th[rowspan] {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  table td,
  table th {
    font-size: 14px;
    padding: 10px;
  }
}
table th {
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  table th:first-of-type {
    position: sticky;
    top: 0;
    left: -1px;
  }
}
table.normal_table tr:nth-child(even) {
  background-color: rgba(3, 110, 184, 0.07);
}
table.normal_table tr:nth-child(odd) {
  background-color: #F5F7F8;
}
table.not_sticky th:first-of-type {
  position: relative;
}
table.simple_table tr th,
table.simple_table tr td {
  padding: 10px 20px;
}
table.simple_table tr:not(:first-of-type) th {
  background-color: #EDF5FA;
  color: var(--blue);
}
table.simple_table tr:not(:first-of-type) td {
  background-color: #F5F7F8;
}

.caption {
  font-size: 14px;
  font-weight: 400;
  margin-top: 1em;
  line-height: 1.5;
}

.column2 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .column2 {
    flex-direction: column;
  }
}

#header {
  z-index: 9999;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--white);
}
@media print {
  #header {
    display: none;
  }
}
#header .wrap_primary {
  max-width: 1240px;
}
#header img {
  width: 100%;
}
#header .primary_group {
  display: flex;
  padding: 0.5rem 2rem;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  #header .primary_group {
    padding: 1.1rem 0;
  }
}
#header .main_logo {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  #header .main_logo {
    max-width: 160px;
  }
}
#header .main_logo img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}
#header .main_logo a {
  display: block;
  transition-duration: 0.3s;
}
#header .main_logo a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
#header .navigation {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
}
#header .navigation .gnav {
  position: relative;
}
@media screen and (max-width: 1040px) {
  #header .navigation .gnav {
    position: fixed;
    top: 71px;
    right: 0;
    width: 100%;
    height: 75vh;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -1.2rem 0 2.4rem rgba(0, 0, 0, 0.12);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }
  #header .navigation .gnav.is-menu_in {
    transform: translateX(0);
  }
  #header .navigation .gnav {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #header .navigation .gnav .gnav-menu {
    display: block;
    padding: 2rem 1.6rem 5rem;
  }
  #header .navigation .gnav .menu-item-has-children a::after {
    display: none;
  }
  #header .navigation .gnav .gnav-menu > li > a {
    width: 100%;
    justify-content: space-between;
    padding: 1.2rem 0.8rem;
  }
  #header .navigation .gnav .gnav-menu > li > .sub-menu {
    position: static;
    min-width: 0;
    margin: 0;
    list-style: none;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0.2rem 0 0.8rem 1.6rem;
  }
  #header .navigation .gnav .gnav-menu > li > .sub-menu > li > a {
    display: block;
    padding: 0.8rem 0.8rem;
    color: var(--font_color);
    text-decoration: none;
    white-space: normal;
  }
  #header .navigation .gnav .gnav-menu > li:hover > .sub-menu {
    display: block;
  }
}
#header .navigation .gnav-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .navigation .gnav-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}
#header .navigation .gnav-menu > li > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--font_color);
  font-weight: bold;
  white-space: nowrap;
  padding: 1rem 1.3rem;
  font-size: 1.5rem;
}
#header .navigation .gnav-menu > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 22rem;
  margin: 0;
  padding: 1.2rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  background: #fff;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.12);
  border-radius: 0.8rem;
}
#header .navigation .gnav-menu > li > .sub-menu > li {
  margin: 0;
}
#header .navigation .gnav-menu > li > .sub-menu > li > a {
  display: block;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  white-space: nowrap;
  color: var(--font_color);
  font-size: 1.5rem;
}
#header .navigation .gnav-menu > li > .sub-menu > li > a:hover {
  background: var(--bg_gray);
}
#header .navigation .gnav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
#header .navigation .gnav-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
#header .navigation .menu-item-has-children {
  position: relative;
}
#header .navigation .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
#header .navigation .menu-item-has-children > a::after {
  content: "";
  display: block;
  position: relative;
  width: 1rem;
  height: 1rem;
  background: currentColor;
  top: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#header .navigation .search_btn_area {
  flex: 0 0 auto;
}
#header .navigation .search-overlay {
  position: fixed;
  top: 7.1rem;
  right: 0;
  display: none;
}
#header .navigation .search-overlay.search-overlay_is-show {
  display: block;
}
#header .navigation #search-icon {
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  padding: 0;
  transition-duration: 0.3s;
}
#header .navigation #search-icon:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
#header .navigation #search-icon img {
  position: relative;
  top: 3px;
}
#header .navigation .search-form {
  background-color: #D7D7D7;
  padding: 1rem;
}
#header .navigation .search-form .input_bar {
  background-color: var(--white);
  padding: 5px;
  border-radius: 0.5rem;
}
#header .navigation .search-form .input_bar input {
  padding: 5px;
  border: none;
  min-width: 30rem;
}
#header .navigation .search-form .input_bar button {
  background-color: transparent;
  border: none;
}
#header .navigation .search-form .input_bar button[type=submit] {
  font-size: 1.2rem;
  background-color: var(--btn_gray);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 3px;
}
@media screen and (max-width: 1000px) {
  #header .scroll_area {
    padding: 2rem;
    background-color: var(--white);
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }
}
#header .functions_block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  margin-bottom: 1rem;
}
#header .functions_block a {
  display: inline-block;
  font-size: 1.2rem;
  color: #525151;
  transition-duration: 0.3s;
}
#header .functions_block a:hover {
  transition-duration: 0.3s;
  opacity: 0.6;
}
#header .functions_block .normal {
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#header .functions_block .normal::before {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  background-image: url(../image/arrow_tri_right.png);
  background-repeat: no-repeat;
  background-size: contain;
}
#header .functions_block .language {
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#header .functions_block .language::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../image//icon_language.png);
  background-repeat: no-repeat;
  background-size: contain;
}
#header .header-navigation {
  display: flex;
  gap: 2vw;
  padding-left: 1em;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}
#header .header-navigation .child_menu {
  position: fixed;
  width: 100%;
  height: fit-content;
  background-color: #25406C;
  padding: 0;
  top: 71px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  padding: 4rem 0;
  color: var(--white);
  gap: 2.8rem;
  display: none;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .child_menu {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    top: initial !important;
    left: initial !important;
    right: initial !important;
    left: initial !important;
    background-color: transparent;
    gap: 1rem;
    padding: 0.5rem;
  }
  #header .header-navigation .child_menu a {
    font-size: 1.2rem;
    padding: 0.2rem;
  }
  #header .header-navigation .child_menu .wrap_primary {
    max-width: none;
    margin: 0;
  }
}
#header .header-navigation .child_menu .title {
  font-size: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1.6rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .child_menu .title {
    display: none;
  }
}
#header .header-navigation .child_menu_group {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .child_menu_group {
    flex-direction: column;
  }
}
#header .header-navigation .child_menu_subpage {
  flex: 1 1 33%;
}
#header .header-navigation .child_menu_subpage a {
  color: var(--white);
  display: block;
  white-space: nowrap;
  transition-duration: 0.3s;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .child_menu_subpage a {
    color: var(--font_color);
  }
}
#header .header-navigation .child_menu_subpage a:hover {
  color: var(--light_blue);
  transition-duration: 0.3s;
}
#header .header-navigation .child_menu_subpage .child {
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .child_menu_subpage .child {
    margin-bottom: 1rem;
  }
}
#header .header-navigation .child_menu_subpage .child.has-grandchild > a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
#header .header-navigation .child_menu_subpage .child.has-grandchild > a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--light_blue);
  border-radius: 50%;
}
#header .header-navigation .grandchild_menu {
  padding-left: 2rem;
}
#header .header-navigation .grandchild_menu .grandchild > a {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#header .header-navigation .grandchild_menu .grandchild > a::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: var(--white);
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .grandchild_menu .grandchild > a::before {
    background-color: var(--font_color);
  }
}
#header .header-navigation .grandchild_menu .grandchild:not(:last-of-type) a {
  margin-bottom: 0.8rem;
}
#header .header-navigation .parent > a {
  font-size: 1.4rem;
  color: #525151;
  display: block;
  white-space: nowrap;
  transition-duration: 0.3s;
  padding-bottom: 1.1rem;
}
#header .header-navigation .parent > a:hover {
  color: var(--font_blue);
  transition-duration: 0.3s;
}
#header .header-navigation .parent.has-child {
  position: relative;
}
#header .header-navigation .parent.has-child > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
#header .header-navigation .parent.has-child > a::after {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../image/child_menu_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .parent.has-child > a::after {
    display: none;
  }
}
#header .header-navigation .parent.has-child:hover {
  color: var(--main_blue);
  transition-duration: 0.3s;
}
#header .header-navigation .parent.has-child:hover > a::after {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../image/child_menu_arrow-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition-duration: 0.3s;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .parent.has-child:hover > a::after {
    display: none;
  }
}
#header .header-navigation .parent.has-child:hover .child_menu {
  display: block;
}
@media screen and (max-width: 1000px) {
  #header .header-navigation .parent.has-child:hover .child_menu {
    display: flex;
  }
}
#header .menu-btn_area {
  margin-left: auto;
}
#header .menu-btn {
  height: 46px;
  width: 46px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: transparent;
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .menu-btn:hover {
  cursor: pointer;
}
#header .menu-btn span,
#header .menu-btn span:before,
#header .menu-btn span:after {
  content: "";
  display: block;
  height: 1px;
  width: 25px;
  border-radius: 2px;
  background-color: var(--font_color);
  position: absolute;
  transition: 0.3s;
}
#header .menu-btn span:before {
  bottom: 6px;
}
#header .menu-btn span:after {
  top: 6px;
}
#header .is-togglemenu-active .menu-btn {
  background-color: rgba(255, 255, 255, 0.8);
}
#header .is-togglemenu-active .menu-btn span {
  background-color: transparent;
}
#header .is-togglemenu-active .menu-btn span:before {
  bottom: 0;
  transform: rotate(45deg);
  transition: 0.3s;
  background-color: var(--font_color);
}
#header .is-togglemenu-active .menu-btn span:after {
  top: 0;
  transform: rotate(-45deg);
  transition: 0.3s;
  background-color: var(--font_color);
}
#header .is-open {
  background-color: rgba(255, 255, 255, 0.8);
}
#header .is-open span {
  background-color: transparent;
}
@media screen and (max-width: 1000px) {
  #header .is-open span::before {
    top: 0 !important;
    bottom: 0 !important;
    transform: rotate(45deg);
    background-color: var(--font_color);
  }
  #header .is-open span::after {
    top: 0 !important;
    bottom: 0 !important;
    transform: rotate(-45deg);
    background-color: var(--font_color);
  }
}
#header .menu-btn_area {
  display: none;
}
@media screen and (max-width: 1000px) {
  #header .menu-btn_area {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  #header .primary_group .main_nav {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: var(--white);
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition-duration: 0.3s;
  }
  #header .primary_group .nav_item {
    width: 100%;
  }
  #header .primary_group .nav_item a {
    font-weight: 500;
    max-width: 600px;
    font-size: 18px;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) {
    position: relative;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) .child_menu_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg_blue03);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) .child_menu_arrow::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: var(--white);
    line-height: 1;
    width: 6px;
    height: 6px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(0%) rotate(135deg);
    transition-duration: 0.1s;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) .child_menu_arrow.is-arrow-up::after {
    transform: translateX(0%) rotate(-45deg);
    transition-duration: 0.1s;
  }
  #header .primary_group .nav_item:has(.sub_nav_smp) > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#header .sub_nav_smp {
  display: none;
  margin-top: 10px;
}
#header .sub_nav_smp a {
  font-size: 16px !important;
  width: 100%;
}
#header .sub_nav_smp.hidden {
  display: none;
}
@media screen and (max-width: 1000px) {
  #header .sub_nav_smp {
    display: block;
    padding-left: 20px;
    line-height: 2.5;
  }
}
@media screen and (max-width: 1000px) {
  #header .secondary_group {
    display: none;
  }
}
#header .is-menu_in .main_nav {
  transform: translateX(0%);
  transition-duration: 0.3s;
}

.link_btn {
  display: block;
  padding: 1rem 3rem;
  border-radius: 1rem;
  background-color: var(--main_pink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 1.6rem;
  color: var(--white) !important;
  font-weight: bold;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
  border: 1px solid var(--white);
  transition-duration: 0.3s;
  box-sizing: border-box;
}
.link_btn:hover {
  background-color: #FFABC1;
  transition-duration: 0.3s;
}
.link_btn.align-right, .link_btn.align_right {
  margin-left: auto !important;
  margin-right: 0 !important;
  width: fit-content;
  display: block !important;
}
.link_btn.align-center, .link_btn.align_center {
  margin-left: auto !important;
  margin-right: auto !important;
  width: fit-content;
  display: block !important;
}
@media screen and (max-width: 765px) {
  .link_btn {
    padding: 0.5rem 2rem;
    font-size: 1.6rem;
  }
}
.link_btn span {
  color: var(--white);
  position: relative;
  z-index: 1;
}
.link_btn_gray {
  background-color: var(--btn_gray);
  color: var(--white) !important;
  text-decoration: none !important;
}
.link_btn_gray::after {
  display: none !important;
}
.link_btn_gray:hover {
  background-color: #A0A0A0;
}

.recipe_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.recipe_icon::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../image/icon/icon_recipe_wh.png);
}

.logged-in #search-overlay {
  top: 103px !important;
}
.logged-in #header {
  top: 32px !important;
}
@media screen and (max-width: 768px) {
  .logged-in #header {
    top: 46px !important;
  }
}
@media screen and (max-width: 768px) {
  .logged-in #header .gnav {
    top: 116.8px !important;
  }
}
.logged-in .child_menu {
  top: 103px !important;
}

#footer {
  background-color: var(--bg_gray);
}
#footer .column2 {
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  #footer .column2 {
    flex-direction: column;
    gap: 2rem;
  }
}
#footer .infomation {
  background-color: var(--white);
}
#footer .infomation .text a {
  color: var(--font_color);
  text-decoration: none;
  transition-duration: 0.3s;
}
#footer .infomation .text a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
#footer .infomation .column2 {
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .infomation .logo a {
  transition-duration: 0.3s;
}
#footer .infomation .logo a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
#footer .infomation .logo img {
  height: 3rem;
}
#footer .footer-nav__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  padding: 4rem 0;
}
#footer .footer-nav__col {
  min-width: 0;
}
#footer .footer-nav__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .footer-nav__menu > li {
  margin: 0;
}
#footer .footer-nav__menu > li > a {
  display: inline-block;
  text-decoration: none;
  line-height: 1.6;
  padding: 1rem 0.8rem 0 0.8rem;
  color: var(--font_color);
  transition-duration: 0.3s;
  font-weight: 600;
  font-size: 1.4rem;
}
#footer .footer-nav__menu > li > a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
#footer .footer-nav__menu > li.menu-item-has-children > a {
  font-weight: 700;
}
#footer .footer-nav__menu > li.menu-item-has-children > .sub-menu {
  margin-top: 0.6rem;
}
#footer .footer-nav__menu .sub-menu {
  margin: 0;
  padding: 0 0 0 1.6rem;
  list-style: none;
}
#footer .footer-nav__menu .sub-menu > li {
  margin: 0;
}
#footer .footer-nav__menu .sub-menu > li > a {
  display: inline-block;
  text-decoration: none;
  line-height: 1.6;
  padding: 0.2rem 0;
  font-weight: 400;
  font-size: 1.4rem;
  color: inherit;
  transition-duration: 0.3s;
}
#footer .footer-nav__menu .sub-menu > li > a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
#footer .footer-nav__menu .sub-menu > li + li {
  margin-top: 0.4rem;
}
@media screen and (max-width: 1024px) {
  #footer .footer-nav__cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #footer .footer-nav__menu .sub-menu {
    padding-left: 1.2rem;
  }
}
#footer .copylight {
  padding: 8px 0;
  background-color: #FBCFEA;
}
#footer .copylight .column2 {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#footer .copylight .footer_logo a {
  transition-duration: 0.3s;
}
#footer .copylight .footer_logo a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
#footer .copylight .footer_logo img {
  height: 6rem;
  width: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}
#footer .copylight .copylight_text {
  font-size: 1.4rem;
}

.kv_slide,
.page_header__slider {
  display: block;
  overflow: hidden;
}
.kv_slide:not(.slick-initialized) > *:not(:first-child),
.page_header__slider:not(.slick-initialized) > *:not(:first-child) {
  display: none;
}

/* ==========================================================================
   WordPress Page Content Styles
   Consolidated from style.css
   ========================================================================== */
/* -----------------------------
   Gallery (WordPress Default)
   ------------------------------ */
.gallery {
  width: 100%;
  margin-bottom: 20px !important;
  overflow: hidden;
}
.gallery br {
  display: none;
}
.gallery-item {
  float: left;
  margin-bottom: 0 !important;
}
.gallery-icon {
  text-align: center;
}
.gallery-icon img {
  width: 100%;
  height: auto;
  margin-bottom: 5px !important;
}
.gallery-caption {
  color: #222;
  font-size: 12px;
  margin: 0 0 30px;
  text-align: center;
}
.gallery-columns-1 .gallery-item {
  width: 100%;
  margin-right: 0;
}
.gallery-columns-2 .gallery-item {
  width: 48%;
  margin: 0 1%;
}
.gallery-columns-3 .gallery-item {
  width: 31.33333%;
  margin: 0 1%;
}
.gallery-columns-4 .gallery-item {
  width: 22.7%;
  margin: 0 1%;
}
.gallery-columns-5 .gallery-item {
  width: 18%;
  margin: 0 1%;
}
@media screen and (max-width: 640px) {
  .gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item, .gallery-columns-5 .gallery-item {
    width: 48%;
    margin: 0 1%;
  }
}

/* -----------------------------
   Image Placement & Captions
   ------------------------------ */
img.aligncenter {
  display: block;
  margin: 2rem auto;
}
img.alignright {
  display: inline;
  margin: 0px 0px 2rem 2rem;
}
img.alignleft {
  display: inline;
  margin: 0px 2rem 2rem 0px;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.wp-caption {
  margin: 0px 0 10px 0;
}
.wp-caption-text {
  font-size: 80%;
  line-height: 110%;
  padding: 0px;
  margin: 0 10px 0 0;
  color: #999;
  font-weight: bold;
}

#content img {
  max-width: 100%;
  height: auto;
}

.recipe_img {
  width: 40%;
  height: auto;
}

/* -----------------------------
   Post Content Typography
   ------------------------------ */
.post p {
  padding-bottom: 15px;
}
.post ul {
  margin: 0 0 10px 10px;
}
.post ul li {
  margin-bottom: 5px;
  padding: 0 0 0 15px;
  background: url(../image/bullet.png) no-repeat 0 8px;
}
.post ol {
  margin: 0 0 10px 30px;
}
.post ol li {
  list-style: decimal;
}
.post h1 {
  margin: 20px 0;
  padding: 5px 0;
  font-size: 150%;
  color: #000;
  border-bottom: 3px solid #000;
}
.post h2 {
  margin: 10px 0;
  padding: 5px 10px;
  font-size: 120%;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #CCC;
  background: url(../image/back_post_h2.jpg) no-repeat 0 0px;
}
.post h3 {
  margin: 20px 0 10px 0;
  font-size: 120%;
  font-weight: normal;
  color: #FFF;
  border-top: 1px solid #319044;
  border-bottom: 1px solid #319044;
  padding: 8px 16px;
  background: #64AC72;
}
.post h4 {
  margin-top: 8px;
  font-size: 120%;
  font-weight: bold;
  color: #319044;
  margin-bottom: 12px;
}
.post h5 {
  font-size: 110%;
  line-height: 110%;
  font-weight: bold;
  border-left: 5px solid #319044;
  border-bottom: 1px dotted #319044;
  padding: 10px;
  margin-bottom: 10px;
  color: #319044;
}
.post blockquote {
  clear: both;
  padding: 10px 0 10px 15px;
  margin: 10px 0 25px 30px;
  border-left: 5px solid #ccc;
}
.post blockquote p {
  padding: 5px 0;
}
.post table {
  border: 1px #ccc solid;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 10px 0 20px;
}
.post table th {
  padding: 10px;
  border: #ccc solid;
  border-width: 0 0 1px 1px;
  background: #efede7;
}
.post table td {
  padding: 10px;
  border: 1px #ccc solid;
  border-width: 0 0 1px 1px;
  background: #fff;
}

/* -----------------------------
   Special Content Blocks
   ------------------------------ */
/* FAQ */
#faq-block h2 {
  padding: 5px 5px 5px 25px;
  line-height: 110%;
  background: url(../images/faq_arrow.gif) no-repeat left;
  border-bottom: 1px dotted #CCC;
  font-weight: normal;
}

.faq-answer {
  border: 1px solid #DDD;
  font-size: 90%;
  padding: 10px;
  background: #F2F2F2;
}

/* Profile */
.prof {
  border: 1px solid #DDD;
  background: #F2F2F2;
  padding: 15px;
  font-size: 90%;
  line-height: 130%;
}

.prof2 {
  border: 1px dotted #CCC;
  background: #F2F2F2;
  padding: 10px;
  font-size: 90%;
  line-height: 140%;
  width: 40%;
  float: right;
  margin-left: 10px;
}

/* -----------------------------
   Horizontal Rule
   ------------------------------ */
hr {
  height: 0;
  margin: 10px 0;
  padding: 0;
  border: 0;
  border-bottom: 1px dashed #DDD;
}

/* Recipe */
h3.recipe {
  background: url(../images/back_h3recipe.jpg) no-repeat left;
}
h3.zai {
  background: url(../images/back_h3zai.jpg) no-repeat left;
}

.ingredient {
  width: 50%;
  float: left;
  margin-bottom: 20px;
}

.stuff {
  padding: 5px 8px;
  width: 90%;
  border-bottom: 1px dotted #CCC;
}

.point {
  padding: 10px;
  background: #F2F2F2;
  border: 2px solid #DDD;
  margin: 20px 0;
}

ol.recipe li {
  margin-bottom: 8px;
}

#firstview {
  position: relative;
}
@media screen and (max-width: 768px) {
  #firstview {
    height: 60vh;
  }
}
#firstview .kv_slide div,
#firstview .kv_slide ul,
#firstview .kv_slide li {
  width: inherit;
  height: inherit;
}
#firstview .background {
  position: relative;
}
@media screen and (max-width: 768px) {
  #firstview .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#firstview .background::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3E252B;
  opacity: 0.05;
  mix-blend-mode: multiply;
}
#firstview .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#firstview .background ul,
#firstview .background li {
  width: inherit;
  height: inherit;
}
#firstview .wrap_primary {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
#firstview .cta_btn_area {
  position: absolute;
  bottom: -36px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 530px;
}
#firstview .cta_btn_area a {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  #firstview .cta_btn_area a {
    font-size: 2rem;
    padding: 2rem 1rem;
  }
}
#firstview .main_copy_area .main_copy,
#firstview .main_copy_area .sub_copy {
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  color: var(--white);
  display: block;
}
#firstview .main_copy_area .main_copy {
  font-weight: 700;
  font-size: 6.3rem;
}
@media screen and (max-width: 768px) {
  #firstview .main_copy_area .main_copy {
    font-size: 3rem;
  }
}
#firstview .main_copy_area .sub_copy {
  font-weight: 500;
  margin-top: 1rem;
}
#firstview .main_copy_area .feature_list {
  display: flex;
  gap: 1.6rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
#firstview .main_copy_area .feature_list .item {
  padding: 1.6rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #firstview .main_copy_area .feature_list .item {
    font-size: 1.6rem;
  }
}

.section {
  padding: 8rem 0;
}
@media screen and (max-width: 765px) {
  .section {
    padding: 3rem 0;
  }
}

.recommend {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .recommend {
    margin-top: 5rem;
  }
}
.recommend__list {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recommend__list {
    flex-direction: column;
    gap: 5rem;
  }
}
.recommend__item {
  width: calc((100% - 4rem) / 2);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .recommend__item {
    width: 100%;
  }
}
.recommend__header {
  border-bottom: 2px dotted #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.recommend__title-area {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  position: relative;
}
.recommend__title-area.with_icon {
  padding-left: 100px;
}
.recommend__icon {
  width: 100px;
  height: auto;
  margin-bottom: -5px;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.recommend__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}
.recommend__title small {
  font-size: 2.4rem;
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  .recommend__title {
    font-size: 2.2rem;
  }
}
.recommend__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .recommend__subtitle {
    font-size: 1.6rem;
  }
}
.recommend__thumb {
  margin-bottom: 2rem;
  text-align: center;
}
.recommend__thumb img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  vertical-align: bottom;
  max-width: 300px;
  margin: 0 auto;
}
.recommend__body {
  flex-grow: 1;
}
.recommend__body-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.recommend__text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  text-align: justify;
}
.recommend__btn-wrap {
  text-align: center;
  margin-top: auto;
}
.recommend__btn {
  display: inline-block;
  background-color: #EA8AA3;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.2rem 4rem;
  border-radius: 10px;
  width: 100%;
  max-width: 330px;
  transition: opacity 0.3s;
  text-align: center;
}
.recommend__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .recommend__btn {
    font-size: 1.6rem;
  }
}

.sorghum-news__title-area {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 6rem;
}
.sorghum-news__title-area .icon {
  width: 5rem;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -5px;
}
.sorghum-news__title-area .title {
  font-size: 2rem;
  font-weight: 700;
  color: #555;
  line-height: 1;
}
.sorghum-news__title-area .title .large {
  font-size: 3.2rem;
  color: #333;
  margin-left: 0.5rem;
}
.sorghum-news__list {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .sorghum-news__list {
    flex-direction: column;
    gap: 3rem;
  }
}
.sorghum-news__item {
  width: calc((100% - 6rem) / 3);
}
@media screen and (max-width: 768px) {
  .sorghum-news__item {
    width: 100%;
  }
}
.sorghum-news__item a {
  display: block;
  color: inherit;
  transition: opacity 0.3s;
}
.sorghum-news__item a:hover {
  opacity: 0.7;
}
.sorghum-news__item .thumb {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 300/200;
}
.sorghum-news__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.sorghum-news__item .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.sorghum-news__item .tag {
  border: 1px solid #333;
  background-color: #fff;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  border-radius: 2px;
  display: inline-block;
  line-height: 1;
  color: #333;
  text-transform: uppercase;
}
.sorghum-news__item .date {
  font-size: 1.4rem;
}
.sorghum-news__item .text {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: justify;
}
.sorghum-news .more_btn-wrap {
  text-align: center;
}
.sorghum-news .more_btn-wrap .link_btn {
  margin: 0 auto;
  max-width: 300px;
}

.recipe-nav__title-area {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: flex-start;
}
.recipe-nav__title-area .icon {
  width: 4rem;
  height: auto;
  margin-bottom: -3px;
}
.recipe-nav__title-area .title {
  font-size: 2rem;
  font-weight: 700;
  color: #555;
  line-height: 1;
}
@media screen and (max-width: 765px) {
  .recipe-nav__title-area .title {
    font-size: 1.6rem;
  }
}
.recipe-nav__title-area .title .large {
  font-size: 3.2rem;
  color: #333;
  margin-left: 0.5rem;
}
@media screen and (max-width: 765px) {
  .recipe-nav__title-area .title .large {
    font-size: 2.4rem;
  }
}
.recipe-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .recipe-nav__list {
    flex-direction: column;
    gap: 2rem;
  }
}
.recipe-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 4.8rem) / 3);
  background-color: #fff;
  border: 1px solid var(--font_color);
  border-radius: 5px;
  padding: 2rem 1.3rem;
  min-height: auto;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--font_color);
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
  box-sizing: border-box;
}
.recipe-nav__btn:hover {
  background-color: var(--main_pink);
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .recipe-nav__btn {
    width: 100%;
    font-size: 1.8rem;
    padding: 2rem;
  }
}

.banner_link_list {
  background-color: #fff;
  padding-bottom: 6rem;
}
.banner_link_list__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 4rem;
}
@media screen and (max-width: 768px) {
  .banner_link_list__list {
    flex-direction: column;
    gap: 3rem;
  }
}
.banner_link_list__item {
  display: block;
  width: calc(50% - 2rem);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.banner_link_list__item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .banner_link_list__item {
    width: 100%;
  }
}
.banner_link_list__item.wide {
  width: 80%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .banner_link_list__item.wide {
    width: 100%;
  }
}
.banner_link_list__item .thumb {
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
}
.banner_link_list__item .thumb img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.banner_link_list__item.wide .thumb {
  border: none;
}
.banner_link_list__item .text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}

.attention {
  padding-top: 0;
  padding-bottom: 6rem;
}
.attention__box {
  border: 1px solid #C6C6C6;
  border-radius: 10px;
  padding: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .attention__box {
    padding: 2rem;
  }
}
.attention__box .text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #323232;
  margin-bottom: 2rem;
  text-align: justify;
  word-break: break-all;
}
.attention__box .contact-info {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #323232;
  margin-top: 2rem;
}

.page_header {
  margin-top: 75px;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_header {
    margin-top: 0;
  }
}
.page_header__inner {
  background-color: #F4F4F4;
  height: 150px;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_header__inner {
    height: initial;
    padding: 0 0 20px 0;
    margin-top: 20px;
  }
}
.page_header .relative_wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_header .relative_wrap {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
.page_header .page_title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #453C39;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page_header .page_title {
    font-size: 2rem;
  }
}
.page_header__slider {
  position: absolute;
  width: 350px;
  height: 200px;
  right: 0;
  bottom: 50px;
  z-index: 10;
}
.page_header__slider .slide_item {
  width: 100%;
  height: 100%;
}
.page_header__slider .slide_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .page_header__slider {
    width: 200px;
    height: 150px;
    top: -20px;
    bottom: 0;
    position: relative;
    margin: 0 auto -40px auto;
  }
}
.page_header.none-image {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .page_header.none-image .page_header__inner {
    padding: 20px 0;
    margin-top: 0;
  }
}

.breadcrumb {
  background-color: #d85e7e;
  padding: 10px 0;
}
.breadcrumb .page_breadcrumb__inner {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .breadcrumb .page_breadcrumb__inner {
    font-size: 1.2rem;
  }
}
.breadcrumb .page_breadcrumb__inner a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb .page_breadcrumb__inner strong {
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .breadcrumb .page_breadcrumb__inner strong {
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 1rem 1.3rem;
    height: initial;
  }
}

.wakusen {
  border: 1px solid #BBBBBB;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  box-sizing: border-box;
}

.sub-page_main ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list):not(.category_filter):not(.gnav-menu) {
  margin-bottom: 2rem;
  padding-left: 0;
  list-style: none;
}
.sub-page_main ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list):not(.category_filter):not(.gnav-menu) li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.875;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #453C39;
}
.sub-page_main ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list):not(.category_filter):not(.gnav-menu) li::before {
  content: "";
  position: absolute;
  left: 0.1em;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background-color: var(--btn_gray);
  border-radius: 50%;
}
.sub-page_main ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list):not(.category_filter):not(.gnav-menu) li li {
  padding-left: 1.2em;
  margin-bottom: 0.4rem;
}
.sub-page_main ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list):not(.category_filter):not(.gnav-menu) li li::before {
  top: 0.75em;
  width: 5px;
  height: 5px;
  background-color: var(--btn_gray);
}
.sub-page_main ol {
  margin-bottom: 2rem;
  padding-left: 2.5rem;
  list-style-type: decimal;
}
.sub-page_main ol li {
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 0.8rem;
  color: #453C39;
}

.recipe_search_box {
  background-color: #EA8AA3;
  border-radius: 30px;
  padding: 40px 50px;
  margin-bottom: 60px;
}
.recipe_search_box__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 3rem;
}
.recipe_search_box .search_buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.recipe_search_box .search_buttons .search_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #453C39;
  border-radius: 5px;
  padding: 2rem 0;
  box-sizing: border-box;
  color: #453C39;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.recipe_search_box .search_buttons .search_btn:hover, .recipe_search_box .search_buttons .search_btn.current {
  background-color: #FFE2EA;
}
.recipe_search_box .term_search {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}
.recipe_search_box .term_search__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #453C39;
  margin: 0;
  flex-shrink: 0;
}
.recipe_search_box .term_search form {
  flex-grow: 1;
  height: 50px;
  position: relative;
}
.recipe_search_box .term_search input[type=text] {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #453C39;
  box-sizing: border-box;
}
.recipe_search_box .term_search input[type=text]::placeholder {
  color: #A2A2A2;
}
.recipe_search_box .term_search input[type=text]:focus {
  outline: none;
}
.recipe_search_box .term_search button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23BDBDBD' d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .recipe_search_box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .recipe_search_box .search_buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .recipe_search_box .search_buttons .search_btn {
    font-size: 1.4rem;
    height: 60px;
  }
  .recipe_search_box .term_search {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .recipe_search_box .term_search__label {
    font-size: 1.6rem;
  }
  .recipe_search_box .term_search form {
    width: 100%;
  }
}

.recipe_article_list {
  padding-bottom: 40px;
}
.recipe_article_list .recipe_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}
@media screen and (max-width: 768px) {
  .recipe_article_list .recipe_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
.recipe_article_list .recipe_item {
  display: block;
  text-decoration: none;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: inherit;
}
.recipe_article_list .recipe_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.recipe_article_list .recipe_item__image {
  width: 100%;
  aspect-ratio: 240/160;
  padding: 1rem;
  box-sizing: border-box;
}
.recipe_article_list .recipe_item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.recipe_article_list .recipe_item__content {
  padding: 15px;
}
.recipe_article_list .recipe_item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 10px;
}
.recipe_article_list .recipe_item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.recipe_article_list .recipe_item__tags li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #453C39;
  border: 1px solid #A2A2A2;
  border-radius: 999px;
  padding: 2px 8px;
  line-height: 1;
}

.recipe_category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .recipe_category {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.recipe_category__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 5px;
  background-color: #5C5C5C;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.page_content {
  padding: 4rem 0;
  display: flow-root;
}
.page_content a {
  word-break: break-all;
  transition-duration: 0.3s;
}
.page_content a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
.page_content .waku {
  border: 1px solid var(--main_pink);
  padding: 1.6rem 2rem;
  border-radius: 1rem;
  margin: 0 0 2rem 0;
}
.page_content div.red {
  color: #FF0000;
}
.page_content strong {
  font-weight: 700;
}
.page_content .text-box {
  padding: 1rem 1.6rem;
  border-radius: 5px;
  background-color: var(--bg_gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.page_content .alignright {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .page_content .alignright {
    float: none;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
.page_content .alignleft {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .page_content .alignleft {
    float: none;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.page_content .aligncenter {
  display: block;
  margin: 0 auto 2rem;
}
.page_content .bc_gl,
.page_content .bc_gr {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 5px;
  color: var(--white);
  font-weight: bold;
}
.page_content .bc_gl {
  background-color: var(--main_pink);
}
.page_content .bc_gr {
  background-color: #A2A2A2;
}
.page_content b {
  font-weight: bold;
}
.page_content section,
.page_content .su-row {
  clear: both;
}
.page_content .link_btn {
  display: inline-block;
}
.page_content .single_page_title {
  border-bottom: 3px solid #EA8AA3;
  padding-bottom: 1.3rem;
  margin-bottom: 2rem;
}
.page_content .single_page_title .page_heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #453C39;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page_content .single_page_title .page_heading {
    font-size: 1.8rem;
  }
}
.page_content .single_page_post-date {
  text-align: right;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0;
}
.page_content p {
  line-height: 1.875;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #453C39;
}
.page_content a {
  display: inline;
  color: var(--main_pink);
  transition-duration: 0.3s;
}
.page_content a:has(img) {
  display: block;
  text-decoration: none;
}
.page_content a:hover {
  text-decoration: none;
  opacity: 0.6;
  transition-duration: 0.3s;
}
.page_content a[target=_blank]:not(:has(img)):not(.su-button) {
  display: inline;
  color: var(--main_pink);
  transition-duration: 0.3s;
}
.page_content a[target=_blank]:not(:has(img)):not(.su-button):hover {
  text-decoration: none;
  opacity: 0.6;
  transition-duration: 0.3s;
}
.page_content a[target=_blank]:not(:has(img)):not(.su-button)::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("../image/icon/icon_new-window_pink.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 6px;
  margin-right: 5px;
}
.page_content a[target=_blank]:not(:has(img)):not(.su-button)[href^="/"]::after, .page_content a[target=_blank]:not(:has(img)):not(.su-button)[href*="sorghum.jp"]::after, .page_content a[target=_blank]:not(:has(img)):not(.su-button)[href*="sorghumjp.local"]::after {
  display: none;
}
.page_content a[target=_blank]:not(:has(img)):not(.su-button)[href^="/"].link_btn, .page_content a[target=_blank]:not(:has(img)):not(.su-button)[href*="sorghum.jp"].link_btn, .page_content a[target=_blank]:not(:has(img)):not(.su-button)[href*="sorghumjp.local"].link_btn {
  color: var(--white) !important;
  text-decoration: none !important;
}
.page_content a[target=_blank]:not(:has(img)):not(.su-button)[href^="/"].link_btn:hover, .page_content a[target=_blank]:not(:has(img)):not(.su-button)[href*="sorghum.jp"].link_btn:hover, .page_content a[target=_blank]:not(:has(img)):not(.su-button)[href*="sorghumjp.local"].link_btn:hover {
  color: var(--white) !important;
}
.page_content a[href*=".pdf"]:not(:has(img)) {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  color: var(--font_color);
  text-decoration: underline;
  transition-duration: 0.3s;
}
.page_content a[href*=".pdf"]:not(:has(img)):hover {
  text-decoration: none;
  opacity: 0.6;
  transition-duration: 0.3s;
}
.page_content a[href*=".pdf"]:not(:has(img))::after {
  content: "" !important;
  display: inline-block !important;
  width: 30px !important;
  height: 30px !important;
  background-image: url("../image/icon/icon_pdf.png") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 2px;
  margin-right: 8px;
}
.page_content img {
  border-radius: 5px;
}
.page_content .metaslider li {
  padding-left: 0 !important;
}
.page_content .metaslider li::before {
  display: none !important;
}
.page_content h2 {
  font-size: 2.2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.page_content h3.zai,
.page_content h3.recipe {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  margin-top: 5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #453C39;
  border-bottom: 1px solid #EA8AA3;
  min-height: initial;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page_content h3.zai::before, .page_content h3.zai::after,
.page_content h3.recipe::before,
.page_content h3.recipe::after {
  display: none;
}
.page_content h3.zai::before,
.page_content h3.recipe::before {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page_content h3.zai::before {
  background-image: url("../image/subpage/icon_materials.png");
}
.page_content h3.recipe::before {
  background-image: url("../image/subpage/icon_method.png");
}
.page_content h3:not(.zai):not(.recipe),
.page_content .block_heading {
  position: relative;
  padding-left: 2rem;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .page_content h3:not(.zai):not(.recipe),
  .page_content .block_heading {
    font-size: 1.8rem;
    min-height: 40px;
  }
}
.page_content h3:not(.zai):not(.recipe):not(:first-of-type),
.page_content .block_heading:not(:first-of-type) {
  margin-top: 6rem;
}
.page_content h3:not(.zai):not(.recipe)::before, .page_content h3:not(.zai):not(.recipe)::after,
.page_content .block_heading::before,
.page_content .block_heading::after {
  content: "";
  display: block;
  width: 9px;
  height: 50%;
  position: absolute;
  left: 0;
}
.page_content h3:not(.zai):not(.recipe)::before,
.page_content .block_heading::before {
  top: 0;
  background-color: #D85E7E;
}
.page_content h3:not(.zai):not(.recipe)::after,
.page_content .block_heading::after {
  top: 50%;
  background-color: #EA8AA3;
}
.page_content h3:not(.zai):not(.recipe).heading_aligncenter,
.page_content .block_heading.heading_aligncenter {
  justify-content: center;
  padding-left: 0;
  padding-bottom: 1.5rem;
  text-align: center;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  margin-bottom: 4rem;
}
.page_content h3:not(.zai):not(.recipe).heading_aligncenter::before, .page_content h3:not(.zai):not(.recipe).heading_aligncenter::after,
.page_content .block_heading.heading_aligncenter::before,
.page_content .block_heading.heading_aligncenter::after {
  position: absolute;
  width: 50px;
  height: 10px;
  bottom: 0;
  left: 50%;
  top: auto;
  right: auto;
  margin: 0;
}
.page_content h3:not(.zai):not(.recipe).heading_aligncenter::before,
.page_content .block_heading.heading_aligncenter::before {
  background-color: #D85E7E;
  margin-left: -50px;
}
.page_content h3:not(.zai):not(.recipe).heading_aligncenter::after,
.page_content .block_heading.heading_aligncenter::after {
  background-color: #EA8AA3;
  margin-left: 0;
}
.page_content.page-content-recipe ul,
.page_content.page-content-recipe ol {
  margin-bottom: 3rem;
  color: #453C39;
}
.page_content.page-content-recipe ul li img,
.page_content.page-content-recipe ol li img {
  margin-bottom: 1rem;
}
.page_content.page-content-recipe ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list) {
  list-style: none;
  padding-left: 0;
}
.page_content.page-content-recipe ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list) li {
  box-sizing: border-box;
}
.page_content.page-content-recipe ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list) strong {
  font-weight: bold;
  position: relative;
}
.page_content.page-content-recipe ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list) > li {
  display: flow-root;
  position: relative;
  padding-left: 0;
  line-height: 1.875;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #453C39;
  box-sizing: border-box;
}
.page_content.page-content-recipe ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list) > li:has(ul) {
  border-bottom: none;
}
.page_content.page-content-recipe ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list) > li li {
  margin-left: 0;
  border-bottom: 1px dashed #453C39;
}
.page_content.page-content-recipe ul:not(.recipe_item__tags):not(.recipe_category):not(.anchor_link__list) > li ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.page_content.page-content-recipe ol {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
}
.page_content.page-content-recipe ol li {
  display: flow-root;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.875;
  font-size: 1.6rem;
  min-height: 3.2rem;
  border-bottom: 1px dashed #453C39;
}
.page_content.page-content-recipe ol li::before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: step;
  content: counter(step) ".";
  color: var(--font_color);
  font-size: 1.6rem;
  line-height: 1.875;
}
.page_content h4 {
  font-weight: 700;
  padding: 0.5em 0 1em 0;
}
.page_content .point {
  background-color: #F1F1F1;
  border-radius: 5px;
  padding: 2rem;
  margin: 4rem 0;
  clear: both;
}
@media screen and (max-width: 768px) {
  .page_content .point {
    padding: 2rem;
  }
}
.page_content .point img {
  margin: initial;
}
.page_content .point img:last-of-type {
  margin-bottom: 0;
}
.page_content .point .tips {
  position: relative;
}
.page_content .point .tips p {
  margin-bottom: 0;
}
.page_content .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin: 4rem 0;
}
.page_content .gallery-item {
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .page_content .gallery-item {
    flex: 1 1 100%;
  }
}
.page_content .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}
.page_content .gallery-caption {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #818181;
  text-align: center;
  margin-bottom: 0;
}
.page_content .gallery-size-midium img {
  max-width: 330px;
  margin: 0 auto;
  display: block;
}
.page_content .wp-caption-text {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #818181;
  text-align: center;
  margin-bottom: 0;
}
.page_content div[align=right] {
  margin-bottom: 2rem;
}
.page_content div[align=right] a {
  color: var(--font_color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}
.page_content div[align=right] a:hover {
  opacity: 0.7;
}
.page_content .print_area {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .page_content .print_area {
    justify-content: center;
    margin-top: 4rem;
  }
}
.page_content .print_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #818181;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}
.page_content .print_btn::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../image/icon/icon_print.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page_content .print_btn:hover {
  opacity: 0.8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page_content .print_btn {
    width: 100%;
    max-width: 300px;
    font-size: 1.6rem;
    padding: 12px 20px;
    gap: 10px;
  }
  .page_content .print_btn::before {
    width: 20px;
    height: 20px;
  }
}

.recipe_navi {
  margin-bottom: 50px;
}
@media print {
  .recipe_navi {
    display: none;
  }
}
.recipe_navi__inner {
  background-color: #EA8AA3;
  border-radius: 30px;
  padding: 40px 50px 60px;
}
@media screen and (max-width: 768px) {
  .recipe_navi__inner {
    padding: 30px 20px;
    border-radius: 20px;
  }
}
.recipe_navi__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  gap: 15px;
}
.recipe_navi__header .icon {
  width: 30px;
  height: 35px;
  display: flex;
  align-items: center;
}
.recipe_navi__header .icon img {
  width: 100%;
  height: auto;
}
.recipe_navi__header .title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .recipe_navi__header .title {
    font-size: 1.8rem;
  }
}
.recipe_navi__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .recipe_navi__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.recipe_navi__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #453C39;
  border-radius: 5px;
  height: 70px;
  color: #453C39;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  padding: 2rem 1.3rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.recipe_navi__item:hover {
  background-color: #FFE2EA;
}
@media screen and (max-width: 768px) {
  .recipe_navi__item {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 1rem 1.3rem;
    height: initial;
  }
}

.attention {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.attention__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #453C39;
  margin: 0;
}
.attention__btn_wrap {
  text-align: left;
}

.page_navi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}
.page_navi .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #A2A7A1;
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: background-color 0.3s;
}
.page_navi .page-numbers.current {
  background-color: #D85E7E;
}
.page_navi .page-numbers:hover:not(.current):not(.dots) {
  background-color: #D85E7E;
  opacity: 0.8;
}
.page_navi .page-numbers.dots {
  background-color: transparent;
  color: #000;
  width: auto;
  height: auto;
}

.anchor_link {
  margin-bottom: 60px;
}
.anchor_link__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.anchor_link__item {
  width: calc((100% - 60px) / 4);
  display: flex;
  border-bottom: none !important;
}
@media screen and (max-width: 768px) {
  .anchor_link__item {
    width: calc((100% - 20px) / 2);
  }
}
.anchor_link__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #453C39;
  border-radius: 5px;
  color: #453C39;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
}
.anchor_link__item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #272323;
  border-right: 1px solid #272323;
  transform: rotate(135deg);
  margin-left: 10px;
}
.anchor_link__item a:hover {
  opacity: 0.7;
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .anchor_link__item a {
    font-size: 1.4rem;
    padding: 10px 15px;
  }
}

.category_page .block_heading {
  margin-bottom: 3rem;
}

.category_filter {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--main_pink);
}
.category_filter__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  border: 1px solid #453C39;
  border-radius: 3px;
  background-color: #fff;
  color: var(--font_color) !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.category_filter__item:hover, .category_filter__item.current {
  background-color: #EA8AA3;
  color: var(--white) !important;
}
@media screen and (max-width: 768px) {
  .category_filter {
    gap: 10px;
    margin-bottom: 30px;
  }
  .category_filter__item {
    font-size: 1.6rem;
    padding: 4px 10px;
  }
}

.article_list_simple {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.article_list_simple .article_item_simple {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 20px;
  transition: opacity 0.3s ease;
}
.article_list_simple .article_item_simple:last-child {
  border-bottom: none;
}
.article_list_simple .article_item_simple:hover {
  opacity: 0.7;
}
.article_list_simple .article_item_simple__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  gap: 20px;
}
.article_list_simple .article_item_simple__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid #453C39;
  border-radius: 3px;
  color: var(--font_color);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.article_list_simple .article_item_simple__date {
  font-size: 1.6rem;
  font-weight: 700;
  color: #453C39;
}
.article_list_simple .article_item_simple__title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #453C39;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .article_list_simple {
    gap: 20px;
    margin-bottom: 40px;
  }
  .article_list_simple .article_item_simple {
    padding-bottom: 15px;
  }
  .article_list_simple .article_item_simple__header {
    margin-bottom: 8px;
  }
  .article_list_simple .article_item_simple__tag {
    font-size: 1.2rem;
    padding: 3px 8px;
  }
  .article_list_simple .article_item_simple__date {
    font-size: 1.4rem;
  }
  .article_list_simple .article_item_simple__title {
    font-size: 1.4rem;
  }
}

.page_content span.round {
  color: var(--main_pink);
  display: inline-block;
  margin-right: 0.5em;
  font-weight: bold;
}
.page_content span.ind_l_30 {
  padding-left: 1.5em;
}
.page_content div.photogroup {
  display: flex;
  margin: 20px auto;
  justify-content: center;
  gap: 10px;
}
.page_content div.photogroup img {
  margin: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .page_content div.photogroup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.page_content div .lead-para {
  margin: 20px auto;
}
.page_content .kadomaru-none {
  border-radius: 0;
}
.page_content .column2 {
  gap: 20px;
  padding: 20px 0;
}
.page_content .column2 .col {
  flex: 1 1 100%;
}
.page_content .column2 .col__image {
  flex: 1 0 auto;
}
.page_content .column2 .col__image img {
  display: block;
  margin: 0 auto;
}
.page_content .gallary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .page_content .gallary {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_content .grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page_content .grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_content .grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page_content .grid3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_content > .wrap_primary {
  margin-bottom: 6rem;
}
.page_content h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--font_color);
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 0.8rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--font_color);
}
@media screen and (max-width: 768px) {
  .page_content h5 {
    font-size: 1.6rem;
  }
}
.page_content table:not(.normal_table):not(.simple_table) {
  width: 100% !important;
  min-width: auto !important;
  border-collapse: collapse;
  margin-bottom: 4rem;
  border-top: 1px solid #D7D7D7;
}
.page_content table:not(.normal_table):not(.simple_table) th,
.page_content table:not(.normal_table):not(.simple_table) td {
  border-bottom: 1px solid #D7D7D7;
  padding: 1.5rem 2rem;
  line-height: 1.6;
  font-size: 1.6rem;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .page_content table:not(.normal_table):not(.simple_table) th,
  .page_content table:not(.normal_table):not(.simple_table) td {
    display: block;
    width: 100% !important;
    padding: 1.5rem;
  }
}
.page_content table:not(.normal_table):not(.simple_table) th {
  font-weight: 700;
  color: var(--font_color);
  border-right: 1px solid #D85E7E;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .page_content table:not(.normal_table):not(.simple_table) th {
    border-right: none;
    border-bottom: 1px solid #D85E7E;
    background-color: #F9F9F9;
  }
}
.page_content table:not(.normal_table):not(.simple_table) td {
  background-color: #fff;
  color: var(--font_color);
}
.page_content table:not(.normal_table):not(.simple_table) td a {
  text-decoration: none;
  transition: opacity 0.3s;
}
.page_content table:not(.normal_table):not(.simple_table) td a:hover {
  opacity: 0.7;
}

.anchor_link {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .anchor_link {
    margin: 30px 0;
  }
}
.anchor_link__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .anchor_link__list {
    gap: 10px;
  }
}
.anchor_link__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  padding: 5px 10px;
  background-color: #FFFFFF;
  border: 1px solid #453C39;
  border-radius: 5px;
  color: #453C39;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  transition: all 0.3s ease;
}
.anchor_link__btn:hover {
  background-color: #f4f4f4;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .anchor_link__btn {
    width: calc(33.333% - 7px);
    font-size: 1.4rem;
    padding: 8px 5px;
  }
}

.seminar_year_section {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .seminar_year_section {
    margin-bottom: 50px;
  }
}

.seminar_card_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .seminar_card_list {
    gap: 30px;
  }
}

.seminar_card__inner {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border-bottom: 1px solid #D7D7D7;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .seminar_card__inner {
    flex-direction: column;
    gap: 15px;
  }
}
.seminar_card__image {
  width: 300px;
  flex-shrink: 0;
  aspect-ratio: 300/197;
  overflow: hidden;
  border-radius: 5px;
}
.seminar_card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .seminar_card__image {
    width: 100%;
  }
}
.seminar_card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .seminar_card__content {
    width: 100%;
    align-items: flex-start;
    gap: 0;
  }
}
.seminar_card__text_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.seminar_card__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  margin: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .seminar_card__title {
    font-size: 1.6rem;
  }
}
.seminar_card__date {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #453C39;
  text-align: right;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .seminar_card__date {
    text-align: left;
    font-size: 1.4rem;
  }
}
.seminar_card__btn_wrap {
  margin-top: 10px;
  width: 100%;
  text-align: right;
}
.seminar_card__btn_wrap .link_btn {
  padding: 1rem 3rem;
  font-size: 1.6rem;
  width: 100%;
  max-width: 29rem;
  text-align: center;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .seminar_card__btn_wrap .link_btn {
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
  }
}

.archive-seminar .anchor_link__list {
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .archive-seminar .anchor_link__list li {
    flex: 0 0 30%;
  }
  .archive-seminar .anchor_link__list li a {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.archive-seminar .anchor_link__list .seminar_card__btn_wrap {
  text-align: center;
}

.related_content {
  margin-top: 10rem;
  margin-bottom: 4rem;
}
.related_content.no-title {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .related_content {
    margin-top: 6rem;
  }
  .related_content.no-title {
    margin-top: 2rem;
  }
}
.related_content .related_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}
@media screen and (max-width: 768px) {
  .related_content .related_list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.article_card {
  padding: 20px 0;
}
.article_card a {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.article_card a:hover {
  opacity: 0.8;
}
.article_card__image {
  margin-bottom: 2rem;
  aspect-ratio: 310/200;
  width: 80%;
  margin: 0 auto 2rem auto;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.article_card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article_card__info {
  flex-grow: 1;
}
.article_card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #453C39;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .article_card__title {
    font-size: 1.6rem;
  }
}
.article_card__date {
  text-align: right;
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 1rem;
  width: 100%;
}
.article_card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #453C39;
  margin: 0;
}
.article_card__btn {
  margin-top: auto;
  text-align: right;
}
.article_card__btn .link_btn {
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.article_card--row a {
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .article_card--row a {
    flex-direction: column;
    gap: 20px;
  }
}
.article_card--row .article_card__image {
  flex: 0 0 300px;
  aspect-ratio: 300/197;
  width: 300px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .article_card--row .article_card__image {
    flex: none;
    width: 100%;
  }
}
.article_card--row .article_card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .article_card--row .article_card__info {
    align-items: flex-start;
  }
}
.article_card--row .article_card__title {
  width: 100%;
  margin-bottom: 16px;
}
.article_card--row .article_card__text {
  width: 100%;
  margin-bottom: 0;
}
.article_card--row .article_card__btn {
  width: 286px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .article_card--row .article_card__btn {
    width: 100%;
    margin-top: 10px;
  }
}

.related_item {
  padding: 20px 0;
}
.related_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.related_item a:hover {
  opacity: 0.8;
}
.related_item__image {
  margin-bottom: 2rem;
  aspect-ratio: 310/200;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.related_item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related_item__info {
  flex-grow: 1;
}
.related_item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #453C39;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .related_item__title {
    font-size: 1.6rem;
  }
}
.related_item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #453C39;
  margin: 0;
}
.related_item__btn {
  margin-top: 2rem;
  text-align: right;
}
.related_item__btn .link_btn {
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.related_item__btn .link_btn span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.ewd-ufaq-faqs {
  margin-top: 4rem;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-div {
  border: none !important;
  margin-bottom: 1.6rem !important;
  box-shadow: none !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-title {
  background-color: var(--bg_gray) !important;
  border-radius: 5px !important;
  padding: 0.8rem 1.6rem !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-left: none;
  margin-bottom: 0;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-title:hover {
  background-color: #E0E0E0 !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-title a {
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  border: none !important;
  outline: none !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-post-margin-symbol {
  display: none !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-faq-title-text {
  width: 100%;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-faq-title-text h4 {
  margin: 0 !important;
  font-family: inherit !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: var(--font_color) !important;
  line-height: 1.45 !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
  text-align: left !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-faq-title-text h4::before, .ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-faq-title-text h4::after {
  display: none !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-faq-title-text h4 .cap {
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: var(--font_color) !important;
  display: block;
  margin-top: 0.6rem;
  line-height: 1.4;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-body {
  padding: 1.6rem 2rem !important;
  background: transparent !important;
  border: none !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post {
  margin: 0 !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post p {
  font-family: inherit !important;
  font-size: 1.6rem !important;
  line-height: 1.875 !important;
  margin-bottom: 2rem !important;
  color: var(--font_color) !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post p:last-of-type {
  margin-bottom: 0 !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post h4 {
  font-family: inherit !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  margin-top: 4rem !important;
  color: var(--font_color) !important;
  border: none !important;
  padding: 0 !important;
  display: block !important;
  min-height: auto !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post h4::before, .ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post h4::after {
  display: none !important;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 5px;
}
.ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post .s_font {
  display: block;
  font-size: 1.2rem !important;
  line-height: 1.6 !important;
  margin-top: 2rem;
  color: #666 !important;
}
@media screen and (max-width: 768px) {
  .ewd-ufaq-faqs {
    margin-top: 3rem;
  }
  .ewd-ufaq-faqs .ewd-ufaq-faq-title {
    padding: 1rem !important;
  }
  .ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-faq-title-text h4 {
    font-size: 1.6rem !important;
  }
  .ewd-ufaq-faqs .ewd-ufaq-faq-title .ewd-ufaq-faq-title-text h4 .cap {
    font-size: 1.2rem !important;
  }
  .ewd-ufaq-faqs .ewd-ufaq-faq-body {
    padding: 1.5rem !important;
  }
  .ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post p {
    font-size: 1.4rem !important;
    margin-bottom: 1.5rem !important;
  }
  .ewd-ufaq-faqs .ewd-ufaq-faq-body .ewd-ufaq-faq-post h4 {
    font-size: 1.6rem !important;
    margin-top: 3rem !important;
  }
}

.youtube.aligncenter {
  margin: 4rem auto;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  position: relative;
}
.youtube.aligncenter iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
@supports not (aspect-ratio: 16/9) {
  .youtube.aligncenter {
    padding-bottom: 56.25%;
    height: 0;
  }
}
@media screen and (max-width: 768px) {
  .youtube.aligncenter {
    margin: 3rem auto;
  }
}

/* Profile Block
-----------------------*/
.prof {
  border: 1px solid #DDD;
  background: #F2F2F2;
  padding: 1.5rem;
  font-size: 90%;
  line-height: 1.3;
  box-sizing: border-box;
}
.prof2 {
  border: 1px dotted #CCC;
  background: #F2F2F2;
  padding: 1rem;
  font-size: 90%;
  line-height: 1.4;
  width: 40%;
  float: right;
  margin-left: 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .prof2 {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-bottom: 2rem;
  }
}
.prof .ttl_pf {
  font-family: "Lucida Grande", Meiryo, sans-serif;
  font-weight: bold;
  color: #9BCC51;
  font-size: 1.5em;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted #CCC;
  margin-bottom: 1rem;
  display: block;
}
.prof .fimg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.prof h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.prof ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prof ul li {
  margin-bottom: 0.5em;
}

.fimg {
  width: 100%;
  height: auto;
}

.ttl_pf {
  font-family: "Lucida Grande", Meiryo, sans-serif;
  font-weight: bold;
  color: #9BCC51;
  font-size: 150%;
  padding-bottom: 5px;
  border-bottom: 1px dotted #CCC;
  display: block;
}

/* ==========================================================================
   404 Page Styling
   ========================================================================== */
.page-404 .page_content {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .page-404 .page_content {
    padding: 5rem 0;
  }
}
.page-404 .main_content {
  text-align: center;
}
.page-404 .body_copy {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #453C39;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .page-404 .body_copy {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 3rem;
  }
}

.inquiry {
  margin: 0 auto;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  color: #453C39;
}
.inquiry dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.inquiry dl dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  margin-top: 40px;
}
.inquiry dl dt p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inquiry dl dt span.haveto, .inquiry dl dt span.any {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 26px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
}
.inquiry dl dt span.haveto {
  background-color: #D85E7E;
}
.inquiry dl dt span.any {
  background-color: #959595;
}
.inquiry dl dd {
  margin: 0;
  margin-top: 16px;
}
.inquiry dl dd p {
  margin: 0;
}
.inquiry dl dd p + p {
  margin-top: 10px;
}
.inquiry dl dd input[type=text],
.inquiry dl dd input[type=email],
.inquiry dl dd input[type=tel],
.inquiry dl dd textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #959595;
  border-radius: 5px;
  background-color: #FFFFFF;
  font-size: 1.6rem;
  font-family: inherit;
  color: inherit;
  box-sizing: border-box;
}
.inquiry dl dd input[type=text]::placeholder,
.inquiry dl dd input[type=email]::placeholder,
.inquiry dl dd input[type=tel]::placeholder,
.inquiry dl dd textarea::placeholder {
  color: #959595;
}
.inquiry dl dd input[type=text]:focus,
.inquiry dl dd input[type=email]:focus,
.inquiry dl dd input[type=tel]:focus,
.inquiry dl dd textarea:focus {
  outline: none;
  border-color: #D85E7E;
}
.inquiry dl dd textarea {
  height: 150px;
  resize: vertical;
}
.inquiry dl dd #zip {
  width: 150px;
  display: inline-block;
  margin-left: 5px;
}
.inquiry dl dd .wpcf7-list-item {
  margin-left: 0;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}
.inquiry dl dd .wpcf7-list-item label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.inquiry dl dd .wpcf7-list-item input[type=checkbox],
.inquiry dl dd .wpcf7-list-item input[type=radio] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #959595;
  background-color: #FFFFFF;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.inquiry dl dd .wpcf7-list-item input[type=checkbox]:checked,
.inquiry dl dd .wpcf7-list-item input[type=radio]:checked {
  border-color: #D85E7E;
  background-color: #D85E7E;
}
.inquiry dl dd .wpcf7-list-item input[type=checkbox]:checked::after,
.inquiry dl dd .wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inquiry dl dd .wpcf7-list-item input[type=checkbox] {
  border-radius: 2px;
}
.inquiry dl dd .wpcf7-list-item input[type=checkbox]:checked::after {
  width: 10px;
  height: 6px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: translate(-50%, -70%) rotate(-45deg);
}
.inquiry dl dd .wpcf7-list-item input[type=radio] {
  border-radius: 50%;
}
.inquiry dl dd .wpcf7-list-item input[type=radio]:checked::after {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
}
.inquiry dl dd .wpcf7-checkbox,
.inquiry dl dd .wpcf7-radio {
  display: block;
}
.inquiry dl dd font {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.inquiry .accept {
  margin-top: 60px;
  padding: 30px;
  background-color: #EEEEEE;
  border-radius: 5px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}
.inquiry .accept a {
  color: #D85E7E;
  text-decoration: underline;
}
.inquiry .accept a:hover {
  text-decoration: none;
}
.inquiry .accept .wpcf7-acceptance {
  display: block;
  margin-top: 15px;
}
.inquiry .accept .wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.inquiry .accept .wpcf7-acceptance input {
  width: 20px;
  height: 20px;
  border: 1px solid #959595;
  background-color: #FFFFFF;
  appearance: none;
  border-radius: 2px;
  position: relative;
}
.inquiry .accept .wpcf7-acceptance input:checked {
  background-color: #D85E7E;
  border-color: #D85E7E;
}
.inquiry .accept .wpcf7-acceptance input:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%) rotate(-45deg);
}
.inquiry #formbtn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 60px auto 0;
  padding: 16px 30px;
  background-color: #EA8AA3;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}
.inquiry #formbtn:hover {
  opacity: 0.8;
}
.inquiry #formbtn:disabled {
  background-color: #959595;
  cursor: not-allowed;
}
.inquiry .recapture {
  margin-top: 20px;
  font-size: 12px;
  color: #959595;
  text-align: center;
  line-height: 1.5;
}
.inquiry .recapture p {
  margin: 0;
}
.inquiry .recapture a {
  color: inherit;
  text-decoration: underline;
}
.inquiry .wpcf7-response-output {
  margin-top: 30px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .inquiry dl dt {
    font-size: 1.8rem;
    margin-top: 20px;
  }
  .inquiry dl dd {
    margin-top: 10px;
  }
  .inquiry dl dd .wpcf7-list-item {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .inquiry .accept {
    text-align: left;
  }
  .inquiry .accept .wpcf7-list-item {
    margin-left: 0;
  }
  .inquiry #formbtn {
    font-size: 2rem;
    padding: 1.2rem 2rem;
  }
}

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