@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}
/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  font-weight: 500;
  background-color: #faf5ef;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  vertical-align: bottom;
  width: 100%;
}
a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:hover {
  opacity: .7;
}
/* flex */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align_start {
  align-items: flex-start;
}
.align_center {
  align-items: center;
}
.align_end {
  align-items: flex-end;
}
.flex_center {
  justify-content: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_end {
  justify-content: flex-end;
}
.stretch {
  align-items: stretch;
}
.reverse {
  flex-direction: row-reverse;
}
/* inner */
.inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}
/* display */
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}
.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}
.common_ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .common_ttl {
    margin-bottom: 30px;
  }
}
.common_ttl .common_ttl_text {
  font-size: 44px;
  padding-left: 80px;
  display: inline;
  position: relative;
  font-weight: 500;
}
@media (max-width: 768px) {
  .common_ttl .common_ttl_text {
    font-size: 32px;
    padding-left: 64px;
  }
}
.common_ttl .common_ttl_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
}
@media (max-width: 768px) {
  .common_ttl .common_ttl_text::before {
    left: 10px;
    top: 4px;
    width: 40px;
    height: 40px;
  }
}
.common_ttl .common_ttl_en {
  font-family: "Jost", sans-serif;
  color: #eb6c22;
  font-size: 24px;
}
@media (max-width: 768px) {
  .common_ttl .common_ttl_en {
    font-size: 20px;
  }
}
.text_orange {
  color: #eb6c22;
}
.text_green {
  color: #6baf2f;
}
.text_bold {
  font-weight: bold;
}
.common_btn_inner {
  width: 90%;
  margin: 0 auto;
}
.common_btn {
  background-color: #eb6c22;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding: 16px 0 16px 16px;
  text-align: left;
  padding-right: 6px;
  border-radius: 40px;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid #eb6c22;
  display: block;
  width: 360px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .common_btn {
    width: 310px;
    margin: 0 auto;
    font-size: 16px;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  }
}
.common_btn:hover {
  opacity: 1;
  box-shadow: none;
  transform: translateY(4px);
  background-color: #fff;
  color: #eb6c22;
}
.common_btn::after {
  content: "";
  background: url(/images/arrow_right_orange.png) center/cover no-repeat;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  border: 1px solid #eb6c22;
  border-radius: 50%;
}
.common_btn.common_btn_green {
  background-color: #6baf2f;
  border: 1px solid #6baf2f;
}
.common_btn.common_btn_green::after {
  background: url(/images/arrow_right_green.png) center/cover no-repeat;
  border: 1px solid #6baf2f;
}
.common_btn.common_btn_green:hover {
  color: #6baf2f;
  background-color: #fff;
}
.floating_sp {
  position: fixed;
  bottom: -1px;
  width: 100%;
  padding-bottom: 20px;
  z-index: 1000;
}
.floating_sp::before {
  content: "";
  background-color: #f9c992;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60%;
  width: 100%;
}
.floating_sp .floating_sp_row {
  width: 95%;
  margin: 0 auto;
}
.floating_sp .floating_sp_btn {
  padding: 20px 0;
  width: 48%;
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  position: relative;
  font-size: 13px;
  padding-left: 45px;
}
.floating_sp .floating_sp_btn.floating_sp_download {
  background-color: #eb6c22;
}
.floating_sp .floating_sp_btn.floating_sp_download::before {
  background: url(/images/icon_download.png) center/cover no-repeat;
  width: 30px;
  height: 25px;
}
.floating_sp .floating_sp_btn.floating_sp_tel {
  background-color: #eb9822;
}
.floating_sp .floating_sp_btn.floating_sp_tel::before {
  background: url(/images/icon_tel.png) center/cover no-repeat;
  width: 31px;
  height: 30px;
}
.floating_sp .floating_sp_btn::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.main_content {
  width: calc(100% - 300px);
  margin-left: auto;
}
@media (max-width: 1200px) {
  .main_content {
    width: calc(100% - 260px);
  }
}
@media (max-width: 768px) {
  .main_content {
    width: 100%;
  }
}
.main_content section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .main_content section {
    padding: 40px 0;
    padding-left: 0;
  }
}
.articles_item {
  position: relative;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .articles_item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
  }
}
.articles_item .articles_date {
  position: absolute;
  top: -20px;
  left: 30px;
  text-align: center;
  padding: 10px;
  padding-top: 0;
  background-color: #fff;
  border-radius: 2px 2px 8px 8px;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .articles_item .articles_date {
    left: 10px;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  }
}
.articles_item .articles_date .articles_date_text {
  font-size: 30px;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
}
@media (max-width: 768px) {
  .articles_item .articles_date .articles_date_text {
    font-size: 18px;
  }
}
.articles_item .articles_date .articles_date_text .year {
  font-size: 16px;
}
@media (max-width: 768px) {
  .articles_item .articles_date .articles_date_text .year {
    font-size: 10px;
  }
}
.articles_item .articles_img {
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .articles_item .articles_img {
    width: 43%;
  }
}
.articles_item .articles_img img {
  border-radius: 12px;
}
@media (max-width: 768px) {
  .articles_item .articles_img img {
    height: 100%;
    object-fit: cover;
  }
}
.articles_item .articles_cate {
  position: absolute;
  bottom: -18px;
  text-align: center;
  left: 30px;
  background-color: #eb6c22;
  color: #fff;
  padding: 6px 0;
  width: 180px;
  display: block;
  border-radius: 40px;
  font-size: 18px;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .articles_item .articles_cate {
    position: initial;
    width: 120px;
    font-size: 12px;
    margin-bottom: 15px;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 768px) {
  .articles_item .articles_cate.sp_dn {
    display: none;
  }
}
.articles_item .articles_cate.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .articles_item .articles_cate.sp_db {
    display: block;
  }
}
@media (max-width: 768px) {
  .articles_item .article_info {
    width: 53%;
  }
}
.articles_item .article_info .articles_ttl {
  font-size: 26px;
  color: #153463;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .articles_item .article_info .articles_ttl {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.articles_item .article_info .articles_tag li {
  color: #8b7e6e;
  border: 1px solid #8b7e6e;
  background-color: #faf5ef;
  padding: 3px 16px;
  margin-right: 10px;
  font-size: 15px;
  border-radius: 40px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .articles_item .article_info .articles_tag li {
    font-size: 12px;
    margin-right: 6px;
    padding: 3px 8px;
  }
}
.slide-arrow {
  position: absolute;
  bottom: -76px;
  left: 0;
  width: 40px;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 768px) {
  .slide-arrow {
    bottom: -66px;
  }
}
.slide-arrow.prev-arrow {
  left: 0;
}
@media (max-width: 768px) {
  .slide-arrow.prev-arrow {
    left: 60px;
  }
}
.slide-arrow.next-arrow {
  left: 65px;
}
@media (max-width: 768px) {
  .slide-arrow.next-arrow {
    left: 120px;
  }
}
.slick-dots {
  bottom: -57px;
  left: 120px;
  z-index: 100;
  width: auto;
}
@media (max-width: 768px) {
  .slick-dots {
    left: 170px;
    bottom: -60px;
  }
}
.slick-dots li.slick-active button::before {
  color: #eb6c22;
}
.slick-dots li button {
  padding: 0;
}
.slick-dots li button::before {
  font-size: 72px;
  opacity: 1;
  color: #fff;
}
.top_articles_keyword .articles_keyword_ttl {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.top_articles_keyword .articles_keyword_ttl::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #434343;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.top_articles_keyword .articles_keyword_ttl h3 {
  font-size: 26px;
  padding: 0px 18px;
  background-color: #faf5ef;
  color: #434343;
  position: relative;
  z-index: 100;
  display: inline;
}
@media (max-width: 768px) {
  .top_articles_keyword .articles_keyword_ttl h3 {
    font-size: 20px;
  }
}
.top_articles_keyword .articles_keyword_tag li {
  color: #8b7e6e;
  border: 1px solid #8b7e6e;
  background-color: #faf5ef;
  padding: 3px 16px;
  margin-right: 10px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.top_articles_keyword .articles_keyword_tag li a {
  color: #8b7e6e !important;
}
@media (max-width: 768px) {
  .top_articles_keyword .articles_keyword_tag li {
    font-size: 12px;
    padding: 3px 9px;
    margin-right: 6px;
    margin-bottom: 10px;
  }
}
.common_mv {
  padding: 30px 60px 20px;
  padding-right: 20px;
  background-color: #fff;
  position: relative;
  border-radius: 0 0 12px 12px;
  margin-bottom: 46px;
}
@media (max-width: 768px) {
  .common_mv {
    width: 100%;
    padding: 0 5%;
    padding-top: 90px;
    background-color: transparent;
    position: relative;
  }
  .common_mv::before {
    content: "";
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 55%;
    width: 100%;
    border-radius: 12px;
  }
}
.common_mv .common_ttl {
  text-align: left;
}
@media (max-width: 768px) {
  .common_mv .common_ttl {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .common_mv .common_ttl .common_ttl_text {
    padding-left: 80px;
  }
}
.common_mv .common_ttl .common_ttl_text::before {
  background: url(/images/ttl_basic.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .common_mv .common_ttl .common_ttl_text::before {
    width: 60px;
    height: 60px;
    top: 8px;
  }
}
.common_mv .common_ttl .common_ttl_en {
  padding-left: 80px;
}
.common_mv .common_mv_row {
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .common_mv .common_mv_row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: flex-start;
    position: relative;
    z-index: 1000;
  }
  .common_mv .common_mv_row .common_mv_text {
    display: flex;
    flex-direction: column-reverse;
  }
}
.common_mv .common_mv_img {
  max-width: 260px;
  width: 35%;
}
@media (max-width: 768px) {
  .common_mv .common_mv_img {
    width: 280px;
    margin: 0 auto 20px;
  }
}
.bread {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .bread {
    margin-bottom: 24px;
  }
}
.bread li {
  position: relative;
  padding-right: 10px;
  margin-right: 20px;
}
.bread li::after {
  content: ">";
  font-size: 14px;
  color: #eb6c22;
  position: absolute;
  top: 2px;
  right: -10px;
}
.bread li:last-child::after {
  content: none;
}
.bread li a {
  font-size: 18px;
}
@media (max-width: 768px) {
  .bread li a {
    font-size: 12px;
  }
}
.top_recipe_list {
  width: 48%;
}
@media (max-width: 768px) {
  .top_recipe_list {
    width: 100%;
  }
}
.top_recipe_list .articles_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.top_recipe_list .articles_item .articles_img {
  width: 43%;
}
@media (max-width: 768px) {
  .top_recipe_list .articles_item .articles_img img {
    height: auto;
  }
}
.top_recipe_list .articles_item .article_info {
  width: 53%;
}
.top_recipe_list .articles_item .article_info .recipe_date {
  font-size: 15px;
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-family: "Jost", sans-serif;
}
.top_recipe_list .articles_item .article_info .recipe_date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eb6c22;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.top_recipe_list .articles_item .article_info .articles_ttl {
  font-size: 20px;
}
@media (max-width: 768px) {
  .top_recipe_list .articles_item .article_info .articles_ttl {
    font-size: 15px;
  }
}
.top_recipe_list .articles_item .article_info .articles_tag li {
  font-size: 15px;
  padding: 3px 8px;
  margin-right: 6px;
}
@media (max-width: 768px) {
  .top_recipe_list .articles_item .article_info .articles_tag li {
    font-size: 12px;
    margin-right: 4px;
  }
}
/* header */
header {
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 20px;
  width: 240px;
}
@media (max-width: 768px) {
  header {
    width: 100%;
    top: 0;
    padding-top: 10px;
    z-index: 10000;
    background-color: #faf5ef;
    padding-bottom: 10px;
  }
  header .header_sp_row {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
  }
}
header .header_logo {
  width: 170px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1000;
}
@media (max-height: 710px) {
  header .header_logo {
    width: 150px;
    margin: 0 auto 20px;
  }
}
@media (max-width: 768px) {
  header .header_logo {
    margin: 0;
  }
}
header .header_nav {
  padding-left: 24px;
  margin-bottom: 30px;
}
header .header_nav li {
  margin-bottom: 10px;
}
header .header_nav li:last-child {
  margin-bottom: 0;
}
header .header_nav li a {
  font-size: 20px;
  padding-left: 20px;
  position: relative;
}
@media (max-height: 710px) {
  header .header_nav li a {
    font-size: 16px;
  }
}
header .header_nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eb6c22;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
header .header_nav li a:hover {
  color: #eb6c22;
  opacity: 1;
}
header .header_btns .header_btn {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  color: #fff;
  padding: 20px 0;
  border-radius: 0 12px 12px 0;
  font-weight: bold;
  font-size: 19px;
  padding-left: 60px;
  position: relative;
}
@media (max-height: 710px) {
  header .header_btns .header_btn {
    font-size: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}
header .header_btns .header_btn:last-child {
  margin-bottom: 0;
}
header .header_btns .header_btn::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
header .header_btns .header_btn.header_btn_download {
  background-color: #eb6c22;
  border: 1px solid #eb6c22;
}
header .header_btns .header_btn.header_btn_download::before {
  background: url(/images/icon_download.png) center/cover no-repeat;
  width: 47px;
  height: 41px;
}
header .header_btns .header_btn.header_btn_download:hover {
  background-color: #fff;
  color: #eb6c22;
  opacity: 1;
}
header .header_btns .header_btn.header_btn_tel {
  background-color: #eb9822;
  border: 1px solid #eb9822;
}
header .header_btns .header_btn.header_btn_tel::before {
  background: url(/images/icon_tel.png) center/cover no-repeat;
  width: 43px;
  height: 41px;
}
header .header_btns .header_btn.header_btn_tel:hover {
  background-color: #fff;
  color: #eb9822;
  opacity: 1;
}
header .header_btns .header_btn.header_btn_lineup {
  background-color: #3f7dbc;
  border: 1px solid #3f7dbc;
}
header .header_btns .header_btn.header_btn_lineup::before {
  background: url(/images/icon_lineup.png) center/cover no-repeat;
  width: 42px;
  height: 40px;
}
header .header_btns .header_btn.header_btn_lineup:hover {
  background-color: #fff;
  color: #3f7dbc;
  opacity: 1;
}
.menu_btn {
  display: none;
}
@media (max-width: 768px) {
  .menu_btn {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    z-index: 4000;
    background-color: #eb6c22;
  }
  .menu_btn span {
    display: inline-block;
    height: 3px;
    width: 28px;
    background-color: #fff;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
  }
  .menu_btn span:nth-child(1) {
    top: 16px;
  }
  .menu_btn span:nth-child(2) {
    top: 50%;
  }
  .menu_btn span:nth-child(3) {
    top: auto;
    bottom: 12px;
  }
}
.header_menu {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #faf5ef;
  z-index: 500;
  transition: 500ms ease-out;
  padding: 90px 0 0;
}
.header_menu .header_nav {
  width: 90%;
}
.header_menu li {
  margin-bottom: 20px;
}
.header_menu li a {
  color: #000;
  font-size: 18px;
}
.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}
.open .header_menu {
  opacity: 1 !important;
  left: 0 !important;
}
/* footer */
footer {
  width: calc(100% - 300px);
  margin-left: auto;
  background-color: #fff;
  padding: 48px 0 80px;
  border-radius: 12px 0 0 0;
}
@media (max-width: 768px) {
  footer {
    padding: 25px 0 160px;
    width: 100%;
  }
  footer .footer_row {
    align-items: flex-start;
  }
}
footer .footer_logo {
  width: 170px;
}
@media (max-width: 768px) {
  footer .footer_logo {
    width: 230px;
    margin-bottom: 20px;
  }
}
footer .footer_link {
  width: calc(100% - 250px);
}
@media (max-width: 768px) {
  footer .footer_link {
    width: 100%;
  }
}
footer .footer_link .footer_link_main {
  border-bottom: 1px solid #c7bbb1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .footer_link .footer_link_main {
    padding-bottom: 0;
    margin-bottom: 30px;
    border-bottom: none;
  }
}
footer .footer_link .footer_link_main li {
  margin-right: 20px;
}
@media (max-width: 768px) {
  footer .footer_link .footer_link_main li {
    margin-right: 0;
    width: 48%;
    margin-bottom: 10px;
  }
}
footer .footer_link .footer_link_main li:last-child {
  margin-right: 0;
}
footer .footer_link .footer_link_main li a {
  font-size: 20px;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 768px) {
  footer .footer_link .footer_link_main li a {
    font-size: 15px;
  }
}
footer .footer_link .footer_link_main li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eb6c22;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  footer .footer_link .footer_link_main li a::before {
    width: 7.5px;
    height: 7.5px;
  }
}
footer .footer_link .footer_link_main li a:hover {
  color: #eb6c22;
  opacity: 1;
}
footer .footer_link .footer_link_sub li {
  margin-right: 8px;
  margin-bottom: 8px;
  padding-right: 8px;
  border-right: 1px solid #333;
  line-height: 1;
}
@media (max-width: 768px) {
  footer .footer_link .footer_link_sub li {
    margin-bottom: 10px;
  }
}
footer .footer_link .footer_link_sub li a {
  font-size: 18px;
}
@media (max-width: 768px) {
  footer .footer_link .footer_link_sub li a {
    font-size: 14px;
  }
}
footer .footer_copyright {
  font-size: 14px;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  footer .footer_copyright {
    font-size: 12px;
    margin-top: 30px;
  }
}
/* top_mv */
.top_mv {
  padding-top: 50px;
  padding-left: 60px;
  padding-bottom: 90px;
  position: relative;
}
@media (max-width: 768px) {
  .top_mv {
    padding-top: 80px;
    padding-left: 10px;
    padding-bottom: 70px;
  }
}
.top_mv::before {
  content: "";
  background-color: #f9c992;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .top_mv::before {
    border-radius: 0 0 12px 12px;
  }
}
.top_mv .top_mv_slide .slick-list {
  padding: 0 30% 0 0 !important;
}
@media (max-width: 768px) {
  .top_mv .top_mv_slide .slick-list {
    padding: 0 6% 0 0 !important;
  }
}
.top_mv .top_mv_slide .mv_slide_item {
  margin-right: 50px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .top_mv .top_mv_slide .mv_slide_item {
    margin-right: 20px;
  }
}
.top_mv .top_mv_slide .mv_slide_item img {
  border-radius: 12px;
  box-shadow: 10px 10px 0px 0px #f7dac6;
}
.top_mv .top_mv_textarea {
  position: absolute;
  bottom: 22%;
  left: 80px;
}
@media (max-width: 768px) {
  .top_mv .top_mv_textarea {
    left: 20px;
  }
}
.top_mv .top_mv_textarea .top_mv_text {
  display: inline-block;
  color: #fff;
  line-height: 2.2;
  font-size: 36px;
}
@media (max-width: 768px) {
  .top_mv .top_mv_textarea .top_mv_text {
    font-size: 28px;
  }
}
.top_mv .top_mv_textarea .top_mv_text .text_bg_blue {
  background-color: #3f7dbc;
  padding: 5px;
  border-radius: 4px;
}
.top_mv_caution {
  position: absolute;
  left: 60px;
  bottom: 10px;
}
@media (max-width: 768px) {
  .top_mv_caution {
    font-size: 12px;
    left: 20px;
    bottom: 8px;
  }
}
/* /.top_mv */
/* top_articles */
.top_articles .articles_slide_wrap {
  padding-bottom: 40px;
  padding-left: 60px;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .top_articles .articles_slide_wrap {
    background-color: #fff;
    margin-bottom: 30px;
    padding-left: 0;
    border-radius: 0 0 12px 12px;
  }
}
.top_articles .articles_slide_wrap::before {
  content: "";
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 75%;
  width: 100%;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .top_articles .articles_slide_wrap::before {
    content: none;
  }
}
.top_articles .inner {
  width: 100%;
}
@media (max-width: 768px) {
  .top_articles .inner {
    width: 90%;
  }
}
.top_articles .common_ttl {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .top_articles .common_ttl {
    margin-bottom: 0;
    padding-bottom: 40px;
    background-color: #fff;
    padding-top: 40px;
    border-radius: 12px 12px 0 0;
  }
}
.top_articles .common_ttl .common_ttl_text::before {
  background: url(/images/ttl_article.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .top_articles .articles_slide {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.top_articles .articles_slide .slick-list {
  padding: 0 4% 0 0 !important;
}
.top_articles .articles_slide .articles_item {
  margin-right: 40px;
}
@media (max-width: 768px) {
  .top_articles .articles_slide .articles_item {
    margin-right: 0;
  }
}
.top_articles .slick-dots li.slick-active button::before {
  color: #eb6c22;
}
.top_articles .slick-dots li button::before {
  color: #d8cec3;
}
.top_articles .top_articles_banner {
  width: 740px;
  margin: 0 auto 56px;
  display: block;
}
.top_articles .top_articles_banner:hover img {
  box-shadow: none;
  transform: translateY(4px);
}
@media (max-width: 768px) {
  .top_articles .top_articles_banner {
    width: 100%;
  }
}
.top_articles .top_articles_banner img {
  border-radius: 12px;
  transition: .3s;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .top_articles .top_articles_banner img {
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  }
}
/* /.top_articles */
/* top_basic */
.main_content .top_basic {
  padding-left: 60px;
  padding-top: 0;
}
@media (max-width: 768px) {
  .main_content .top_basic {
    padding-left: 0;
  }
}
.main_content .top_basic .common_ttl .common_ttl_text::before {
  background: url(/images/ttl_basic.png) center/cover no-repeat;
}
.main_content .top_basic .basic_row {
  margin-bottom: 24px;
}
.main_content .top_basic .basic_row .articles_item {
  width: 31%;
}
@media (max-width: 768px) {
  .main_content .top_basic .basic_row .articles_item {
    width: 100%;
  }
}
.main_content .top_basic .basic_row .articles_item .articles_img {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .main_content .top_basic .basic_row .articles_item .articles_img {
    margin-bottom: 20px;
  }
}
.main_content .top_basic .basic_row .articles_item .articles_img img {
  height: 270px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .main_content .top_basic .basic_row .articles_item .articles_img img {
    height: 100%;
  }
}
.main_content .top_basic .basic_row .articles_item .articles_img .articles_date .articles_date_text {
  font-size: 28px;
}
@media (max-width: 768px) {
  .main_content .top_basic .basic_row .articles_item .articles_img .articles_date .articles_date_text {
    font-size: 18px;
  }
}
.main_content .top_basic .basic_row .articles_item .articles_img .articles_date .articles_date_text .year {
  font-size: 14px;
}
@media (max-width: 768px) {
  .main_content .top_basic .basic_row .articles_item .articles_img .articles_date .articles_date_text .year {
    font-size: 10px;
  }
}
.main_content .top_basic .basic_row .articles_item .articles_ttl {
  font-size: 22px;
}
@media (max-width: 768px) {
  .main_content .top_basic .basic_row .articles_item .articles_ttl {
    font-size: 15px;
  }
}
.main_content .top_basic .basic_row .articles_item .articles_tag li {
  font-size: 14px;
  padding: 3px 8px;
}
@media (max-width: 768px) {
  .main_content .top_basic .basic_row .articles_item .articles_tag li {
    font-size: 12px;
  }
}
/* /.top_basic */
/* top_nutrition */
.top_basic.top_nutrition {
  padding-top: 20px;
}
@media (max-width: 768px) {
  .top_basic.top_nutrition {
    padding-top: 30px;
  }
}
.top_basic.top_nutrition .common_ttl .common_ttl_text::before {
  background: url(/images/ttl_nutrition.png) center/cover no-repeat;
}
/* /.top_nutrition */
/* top_recipe */
.top_recipe {
  background-color: #fff;
  padding: 57px 0;
  border-radius: 12px 0 0 12px;
}
@media (max-width: 768px) {
  .top_recipe {
    padding: 34px;
  }
}
.top_recipe .common_ttl .common_ttl_text::before {
  background: url(/images/ttl_recipe.png) center/cover no-repeat;
}
.top_recipe .top_recipe_row .top_recipe_main {
  width: 48%;
}
@media (max-width: 768px) {
  .top_recipe .top_recipe_row .top_recipe_main {
    width: 90%;
    margin: 0 auto 30px;
    display: block;
  }
  .top_recipe .top_recipe_row .top_recipe_main .articles_img {
    width: 100%;
    margin-bottom: 24px;
  }
  .top_recipe .top_recipe_row .top_recipe_main .articles_img .articles_cate {
    position: absolute;
    margin-bottom: 0;
    bottom: -14px;
    left: 10px;
  }
  .top_recipe .top_recipe_row .top_recipe_main .article_info {
    width: 100%;
  }
}
/* /.top_recipe */
/* top_news */
@media (max-width: 768px) {
  .main_content .top_news {
    padding-bottom: 60px;
  }
}
.main_content .top_news .common_ttl .common_ttl_text::before {
  background: url(/images/ttl_news.png) center/cover no-repeat;
}
.main_content .top_news .top_news_cont {
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .main_content .top_news .top_news_cont {
    margin-bottom: 35px;
  }
}
.main_content .top_news .top_news_cont .top_news_item {
  border-bottom: 1px solid #8b7e6e;
  padding-bottom: 14px;
  margin-bottom: 14px;
  position: relative;
  display: block;
}
.main_content .top_news .top_news_cont .top_news_item::after {
  content: "";
  background: url(/images/arrow_right.png) center/cover no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
}
@media (max-width: 768px) {
  .main_content .top_news .top_news_cont .top_news_item::after {
    width: 20px;
    height: 20px;
  }
}
.main_content .top_news .top_news_cont .top_news_item:last-child {
  margin-bottom: 0;
}
.main_content .top_news .top_news_cont .top_news_item .news_item_date {
  font-size: 15px;
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-family: "Jost", sans-serif;
}
.main_content .top_news .top_news_cont .top_news_item .news_item_date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eb6c22;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.main_content .top_news .top_news_cont .top_news_item .news_item_ttl {
  font-size: 22px;
  color: #153463;
  font-weight: 500;
}
@media (max-width: 768px) {
  .main_content .top_news .top_news_cont .top_news_item .news_item_ttl {
    font-size: 15px;
    padding-right: 28px;
  }
}
/* /.top_news */
/* top_cta */
.top_cta {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .top_cta {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.top_cta::after {
  content: "";
  background-color: #f9c992;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80%;
  width: 100%;
  border-radius: 12px 0 0 12px;
}
@media (max-width: 768px) {
  .top_cta::after {
    border: 12px;
  }
}
.top_cta .inner {
  position: relative;
  z-index: 100;
}
.top_cta .top_cta_row {
  margin-bottom: 110px;
}
@media (max-width: 768px) {
  .top_cta .top_cta_row {
    padding-left: 0;
    margin-bottom: 60px;
  }
}
.top_cta .top_cta_item {
  width: 48%;
  position: relative;
}
@media (max-width: 768px) {
  .top_cta .top_cta_item {
    width: 100%;
    margin-bottom: 65px;
  }
  .top_cta .top_cta_item:last-child {
    margin-bottom: 0;
  }
}
.top_cta .top_cta_item .top_cta_img img {
  border-radius: 6px;
}
.top_cta .top_cta_item .top_cta_btn {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  padding: 16px 0;
  padding-left: 100px;
  width: 90%;
  margin: 0 auto;
  line-height: 1.2;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .top_cta .top_cta_item .top_cta_btn {
    width: 85%;
    padding-left: 80px;
    font-size: 20px;
    bottom: -33px;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  }
}
.top_cta .top_cta_item .top_cta_btn::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_cta .top_cta_item .top_cta_btn::before {
    left: 35px;
  }
}
.top_cta .top_cta_item .top_cta_btn::after {
  content: "";
  width: 33px;
  height: 33px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_cta .top_cta_item .top_cta_btn::after {
    width: 20px;
    height: 20px;
  }
}
.top_cta .top_cta_item .top_cta_btn.top_cta_download {
  background-color: #eb6c22;
  border: 1px solid #eb6c22;
}
.top_cta .top_cta_item .top_cta_btn.top_cta_download:hover {
  background-color: #fff;
  color: #eb6c22;
  box-shadow: none;
  transform: translate(-50%, 4px);
}
.top_cta .top_cta_item .top_cta_btn.top_cta_download::before {
  width: 62px;
  height: 53px;
  background: url(/images/icon_download.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .top_cta .top_cta_item .top_cta_btn.top_cta_download::before {
    width: 40px;
    height: 35px;
  }
}
.top_cta .top_cta_item .top_cta_btn.top_cta_download::after {
  background: url(/images/arrow_right_orange.png) center/cover no-repeat;
  border: 1px solid #eb6c22;
  border-radius: 50%;
}
.top_cta .top_cta_item .top_cta_btn.top_cta_lineup {
  background-color: #3f7dbc;
  border: 1px solid #3f7dbc;
}
.top_cta .top_cta_item .top_cta_btn.top_cta_lineup:hover {
  background-color: #fff;
  color: #3f7dbc;
  box-shadow: none;
  transform: translate(-50%, 4px);
}
.top_cta .top_cta_item .top_cta_btn.top_cta_lineup::before {
  width: 53px;
  height: 50px;
  background: url(/images/icon_lineup.png) center/cover no-repeat;
}
@media (max-width: 768px) {
  .top_cta .top_cta_item .top_cta_btn.top_cta_lineup::before {
    width: 35px;
    height: 33px;
  }
}
.top_cta .top_cta_item .top_cta_btn.top_cta_lineup::after {
  background: url(/images/arrow_right_blue.png) center/cover no-repeat;
  border: 1px solid #3f7dbc;
  border-radius: 50%;
}
.top_cta .top_cta_item .top_cta_btn:hover {
  opacity: 1;
}
.top_cta .top_cta_tasting {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .top_cta .top_cta_tasting {
    border-radius: 6px;
    padding: 20px 16px;
  }
}
@media (max-width: 768px) {
  .top_cta .top_cta_tasting .cta_tasting_row {
    margin-bottom: 10px;
  }
}
.top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_textarea {
  width: calc(100% - 360px);
}
@media (max-width: 768px) {
  .top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_textarea {
    width: 100%;
  }
}
.top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_img {
  width: 130px;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_img {
    width: 100px;
    margin-right: 13px;
  }
}
.top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_info {
  width: calc(100% - 160px);
}
@media (max-width: 768px) {
  .top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_info {
    width: calc(100% - 113px);
  }
}
.top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_info .cta_tasting_ttl {
  color: #6baf2f;
  font-size: 40px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_info .cta_tasting_ttl {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_text {
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.top_cta .top_cta_tasting .cta_tasting_row .cta_tasting_text .text_green {
  font-weight: bold;
}
.top_cta .top_cta_tasting .cta_tasting_btn {
  background-color: #6baf2f;
  border: 1px solid #6baf2f;
}
@media (max-width: 768px) {
  .top_cta .top_cta_tasting .cta_tasting_btn {
    font-size: 18px;
    padding-right: 10px;
  }
}
.top_cta .top_cta_tasting .cta_tasting_btn::after {
  background: url(/images/arrow_right_green.png) center/cover no-repeat;
  border: 1px solid #6baf2f;
}
.top_cta .top_cta_tasting .cta_tasting_btn:hover {
  color: #6baf2f;
  background-color: #fff;
}
/* /.top_cta */
/* top_seminar */
.main_content .top_seminar {
  padding-top: 0;
}
.main_content .top_seminar .inner {
  border: 1px solid #7d7d7d;
  padding: 40px;
  padding-top: 90px;
  position: relative;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .main_content .top_seminar .inner {
    padding: 20px;
    padding-bottom: 30px;
    padding-top: 80px;
  }
}
.main_content .top_seminar .top_seminar_ttl {
  position: absolute;
  top: -35px;
  width: 100%;
  left: -20px;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_ttl {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.main_content .top_seminar .top_seminar_ttl .common_ttl_text {
  padding-right: 24px;
  padding-left: 104px;
  background-color: #faf5ef;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_ttl .common_ttl_text {
    padding: 0;
    padding-left: 50px;
    padding-right: 4px;
  }
}
.main_content .top_seminar .top_seminar_ttl .common_ttl_text::before {
  background: url(/images/ttl_seminar.png) center/cover no-repeat;
  left: 24px;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_ttl .common_ttl_text::before {
    left: 4px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_img {
  width: 46%;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_img img {
  border-radius: 12px;
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea {
  width: 50%;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea {
    width: 100%;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_date {
  font-size: 24px;
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: #434343;
  font-family: "Jost", sans-serif;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_date {
    font-size: 13px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eb6c22;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_date::before {
    width: 6px;
    height: 6px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .seminar_textarea_ttl {
  font-size: 26px;
  color: #153463;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea .seminar_textarea_ttl {
    font-size: 15px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info {
    margin-bottom: 20px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info .seminar_info_row {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info .seminar_info_row {
    margin-bottom: 10px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info .seminar_info_row:last-child {
  margin-bottom: 0;
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info .seminar_info_name {
  margin-right: 12px;
  background-color: #f7dac6;
  width: 76px;
  text-align: center;
  font-size: 18px;
  border-radius: 4px;
  color: #5f3c3c;
  padding: 2px 0;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info .seminar_info_name {
    margin-right: 6px;
    width: 60px;
    font-size: 13px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info .seminar_info_text {
  font-size: 18px;
  color: #5f3c3c;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea .top_seminar_info .seminar_info_text {
    font-size: 13px;
  }
}
.main_content .top_seminar .top_seminar_row .top_seminar_textarea .seminar_btn {
  margin-left: 0;
  width: 300px;
}
@media (max-width: 768px) {
  .main_content .top_seminar .top_seminar_row .top_seminar_textarea .seminar_btn {
    width: 100%;
  }
}
/* /.top_seminar */
.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: .8s forwards fadein;
}
.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: .8s forwards .1s fadein;
}
.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: .5s forwards leftin;
}
.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: .5s forwards rightin;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.page_basics .common_keyword {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .page_basics .common_keyword {
    margin-bottom: 20px;
  }
}
.page_basics .page_basics_cont .page_basics_total {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .page_basics .page_basics_cont .page_basics_total {
    margin-bottom: 20px;
  }
}
.page_basics .page_basics_cont .page_basics_total .basics_total_text {
  font-size: 20px;
  color: #4c443a;
}
@media (max-width: 768px) {
  .page_basics .page_basics_cont .page_basics_total .basics_total_text {
    font-size: 15px;
  }
}
.page_basics .page_basics_cont .page_basics_total .basics_total_text .text_large {
  font-size: 32px;
}
@media (max-width: 768px) {
  .page_basics .page_basics_cont .page_basics_total .basics_total_text .text_large {
    font-size: 26px;
  }
}
.page_basics .page_basics_cont .page_basics_row::after {
  content: "";
  display: block;
  width: 31%;
}
@media (max-width: 768px) {
  .page_basics .page_basics_cont .page_basics_row::after {
    width: 100%;
  }
}
.page_basics .page_basics_cont .articles_item {
  width: 31%;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .page_basics .page_basics_cont .articles_item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.page_basics .page_basics_cont .articles_item .articles_img img {
  height: 270px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .page_basics .page_basics_cont .articles_item .articles_img img {
    height: 100%;
  }
}
.page_basics .page_basics_pagenation {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .page_basics .page_basics_pagenation {
    margin-top: 20px;
    margin-bottom: 60px;
  }
}
.page_basics .page_basics_pagenation .basics_pagenation_arrow {
  cursor: pointer;
}
.page_basics .page_basics_pagenation .basics_pagenation_arrow.basics_pagenation_prev {
  content: "";
  background: url(/images/arrow_left_orange02.png) center/cover no-repeat;
  width: 22px;
  height: 21px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .page_basics .page_basics_pagenation .basics_pagenation_arrow.basics_pagenation_prev {
    width: 16.5px;
    height: 16px;
  }
}
.page_basics .page_basics_pagenation .basics_pagenation_arrow.basics_pagenation_next {
  content: "";
  background: url(/images/arrow_right_orange02.png) center/cover no-repeat;
  width: 22px;
  height: 21px;
}
@media (max-width: 768px) {
  .page_basics .page_basics_pagenation .basics_pagenation_arrow.basics_pagenation_next {
    width: 16.5px;
    height: 16px;
  }
}
.page_basics .page_basics_pagenation .basics_pagenation_number {
  background-color: #fff;
  border-radius: 50%;
  height: 49px;
  width: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-right: 10px;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 768px) {
  .page_basics .page_basics_pagenation .basics_pagenation_number {
    font-size: 20px;
    height: 36px;
    width: 36px;
  }
}
.page_basics .page_basics_pagenation .basics_pagenation_number.active {
  background-color: #eb6c22;
  color: #fff;
}
.page_basics .page_basics_pagenation .link_page {
  background-color: #fff;
  border-radius: 50%;
  height: 49px;
  width: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-right: 10px;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 768px) {
  .page_basics .page_basics_pagenation .link_page {
    font-size: 20px;
    height: 36px;
    width: 36px;
  }
}
.page_basics .page_basics_pagenation .current_page {
  background-color: #eb6c22;
  color: #fff;
  border-radius: 50%;
  height: 49px;
  width: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-right: 10px;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 768px) {
  .page_basics .page_basics_pagenation .current_page {
    font-size: 20px;
    height: 36px;
    width: 36px;
  }
}
.page_basics .page_basics_pagenation .basics_pagenation_dots {
  margin-right: 10px;
  cursor: pointer;
}
.page_article .page_article_box {
  padding: 60px;
  border-radius: 12px;
  margin-top: 60px;
  margin-bottom: 90px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .page_article .page_article_box {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .page_article .page_article_box {
    margin-top: 100px;
    padding: 20px;
    width: 100%;
  }
}
.page_article .page_article_ttl {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page_article .page_article_ttl {
    margin-bottom: 20px;
  }
}
.page_article .page_article_ttl .article_ttl_row {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page_article .page_article_ttl .article_ttl_row {
    margin-bottom: 20px;
  }
}
.page_article .page_article_ttl .article_ttl_row .page_article_date {
  font-family: "Jost", sans-serif;
  font-size: 30px;
  margin-right: 60px;
}
@media (max-width: 768px) {
  .page_article .page_article_ttl .article_ttl_row .page_article_date {
    font-size: 18px;
    margin-right: 20px;
  }
}
.page_article .page_article_ttl .article_ttl_row .page_article_date .year {
  font-size: 24px;
}
@media (max-width: 768px) {
  .page_article .page_article_ttl .article_ttl_row .page_article_date .year {
    font-size: 14px;
  }
}
.page_article .page_article_ttl .article_ttl_row .page_article_cate {
  text-align: center;
  background-color: #eb6c22;
  color: #fff;
  padding: 6px 0;
  width: 180px;
  display: block;
  border-radius: 40px;
  font-size: 18px;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .page_article .page_article_ttl .article_ttl_row .page_article_cate {
    width: 120px;
    font-size: 12px;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  }
}
.page_article .page_article_ttl .article_ttl_text {
  font-size: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid #af9e80;
}
@media (max-width: 768px) {
  .page_article .page_article_ttl .article_ttl_text {
    font-size: 24px;
    padding-bottom: 10px;
  }
}
.page_article .common_keyword {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page_article .common_keyword {
    margin-bottom: 20px;
  }
  .page_article .common_keyword .inner {
    width: 100%;
  }
}
.page_article .article_border_text {
  border: 1px solid #af9e80;
  padding: 30px;
  font-size: 20px;
  color: #645132;
  margin-bottom: 50px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .page_article .article_border_text {
    padding: 13px;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.page_article .article_cont {
  padding: 0 20px;
}
@media (max-width: 768px) {
  .page_article .article_cont {
    padding: 0;
  }
}
.page_article .article_cont img {
  width: 600px;
  margin: 0 auto 70px;
  border-radius: 12px;
  display: block;
}
@media (max-width: 768px) {
  .page_article .article_cont img {
    width: 90%;
    margin-bottom: 20px;
    border-radius: 6px;
  }
}
.page_article .article_cont p.page_article_thumnail {
  margin: 0;
}
.page_article .article_cont p.page_article_thumnail img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .page_article .article_cont p.page_article_thumnail img {
    border-radius: 6px;
    margin-bottom: 30px;
  }
}
.page_article .article_cont h2 {
  position: relative;
  font-size: 34px;
  margin-bottom: 30px;
  padding-left: 54px;
}
@media (max-width: 768px) {
  .page_article .article_cont h2 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 36px;
  }
}
.page_article .article_cont h2::before, .page_article .article_cont h2::after {
  content: "";
  border-radius: 50%;
  position: absolute;
}
.page_article .article_cont h2::before {
  width: 35px;
  height: 35px;
  background-color: #eb6c22;
  left: 0;
  top: 10px;
}
@media (max-width: 768px) {
  .page_article .article_cont h2::before {
    width: 27px;
    height: 27px;
    top: 4px;
  }
}
.page_article .article_cont h2::after {
  background-color: #fff;
  left: 10.5px;
  top: 20.5px;
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
  .page_article .article_cont h2::after {
    width: 10px;
    height: 10px;
    left: 8.5px;
    top: 12.5px;
  }
}
.page_article .article_cont h3 {
  font-size: 30px;
  margin-bottom: 30px;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .page_article .article_cont h3 {
    font-size: 20px;
  }
}
.page_article .article_cont h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eb6c22;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .page_article .article_cont h3::before {
    margin-bottom: 20px;
  }
}
.page_article .article_cont h4 {
  font-size: 24px;
  color: #eb6c22;
}
@media (max-width: 768px) {
  .page_article .article_cont h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
.page_article .article_cont p {
  font-size: 20px;
  margin-bottom: 60px;
  line-height: 2;
}
@media (max-width: 768px) {
  .page_article .article_cont p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.page_article .article_cont p a {
  color: #eb6c22;
  text-decoration: underline;
}
.page_article .article_cont .col_2 {
  width: 600px;
  margin: 0 auto 72px;
}
@media (max-width: 768px) {
  .page_article .article_cont .col_2 {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page_article .article_cont .col_2 img {
  width: 48%;
  margin-bottom: 0;
}
.page_article .article_cont .mt-be-columns {
  justify-content: center;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .page_article .article_cont .mt-be-columns {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page_article .article_cont .mt-be-columns .mt-be-column p {
  margin-bottom: 0;
}
.page_article .article_cont .mt-be-columns .mt-be-column p img {
  width: 96%;
  margin: 0;
}
.page_article .page_article_read {
  padding-right: 20px;
  padding-bottom: 20px;
}
.page_article .page_article_read .article_read_textarea {
  width: 63%;
}
@media (max-width: 768px) {
  .page_article .page_article_read .article_read_textarea {
    width: 71%;
  }
}
.page_article .page_article_read .article_read_textarea .article_tablecont_ttl {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page_article .page_article_read .article_read_textarea .article_tablecont_ttl {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.page_article .page_article_read .article_read_text {
  text-indent: -1.2rem;
  margin-bottom: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page_article .page_article_read .article_read_text {
    text-indent: -1.9rem;
    margin-left: 10px;
  }
}
.page_article .page_article_read .article_read_text a {
  position: relative;
  padding-left: 20px;
  color: #17487b;
  font-size: 20px;
}
@media (max-width: 768px) {
  .page_article .page_article_read .article_read_text a {
    padding-left: 30px;
  }
}
.page_article .page_article_read .article_read_text a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  transform: translateY(-50%);
  background-color: #17487b;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .page_article .page_article_read .article_read_text a::before {
    width: 6px;
    height: 6px;
    top: 12px;
    left: 20px;
  }
}
.page_article .page_article_read .article_read_img {
  max-width: 180px;
  width: 20%;
}
@media (max-width: 768px) {
  .page_article .page_article_read .article_read_img {
    width: 25%;
  }
}
.page_article .page_article_read .article_read_img img {
  width: 100%;
  margin-bottom: 0;
  border-radius: 12px;
}
.page_article .page_article_tablecont {
  padding: 20px 70px 40px;
  background-color: #faf5ef;
  border-radius: 12px;
  position: relative;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont {
    padding: 10px 20px 20px;
    margin-bottom: 35px;
  }
}
.page_article .page_article_tablecont .tablecont_illust {
  position: absolute;
  top: -10px;
  left: 50px;
  width: 65px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont .tablecont_illust {
    top: -5px;
    left: 20px;
    width: 38px;
  }
}
.page_article .page_article_tablecont .article_tablecont_ttl {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 32px;
  padding-left: 70px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont .article_tablecont_ttl {
    font-size: 24px;
    padding-left: 55px;
    margin-bottom: 24px;
  }
}
.page_article .page_article_tablecont .article_tablecont_ttl .text_orange {
  font-size: 28px;
  font-family: "Jost", sans-serif;
  font-weight: normal;
  margin-left: 14px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont .article_tablecont_ttl .text_orange {
    font-size: 18px;
  }
}
.page_article .page_article_tablecont .article_tablecont_list .tablecont_list_item {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont .article_tablecont_list .tablecont_list_item {
    margin-bottom: 20px;
  }
}
.page_article .page_article_tablecont .article_tablecont_list .tablecont_list_item:last-child {
  margin-bottom: 0;
}
.page_article .page_article_tablecont .article_tablecont_list .tablecont_list_item:last-child .tablecont_list_ttl {
  margin-bottom: 0;
}
.page_article .page_article_tablecont .article_tablecont_list .tablecont_list_item a {
  color: #17487b;
  display: block;
}
.page_article .page_article_tablecont .article_tablecont_list .tablecont_list_ttl {
  font-size: 22px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont .article_tablecont_list .tablecont_list_ttl {
    font-size: 18px;
    padding-left: 13px;
  }
}
.page_article .page_article_tablecont .article_tablecont_list .tablecont_list_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eb6c22;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont .article_tablecont_list .tablecont_list_ttl::before {
    width: 6px;
    height: 6px;
  }
}
.page_article .page_article_tablecont #toc div > ul > li {
  font-size: 22px;
  position: relative;
  padding-left: 20px;
}
.page_article .page_article_tablecont #toc div > ul > li a {
  color: #17487b;
  display: block;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont #toc div > ul > li {
    font-size: 18px;
    padding-left: 13px;
  }
}
.page_article .page_article_tablecont #toc div > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  background-color: #eb6c22;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont #toc div > ul > li::before {
    width: 6px;
    height: 6px;
  }
}
.page_article .page_article_tablecont #toc div > ul > li ul {
  padding-left: 20px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont #toc div > ul > li ul {
    padding-left: 13px;
  }
}
.page_article .page_article_tablecont #toc div > ul > li ul li {
  margin-bottom: 10px;
}
.page_article .page_article_tablecont #toc div > ul > li ul li:last-child {
  margin-bottom: 0;
}
.page_article .page_article_tablecont #toc div > ul > li ul li a {
  font-size: 20px;
  position: relative;
  padding-left: 14px;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont #toc div > ul > li ul li a {
    font-size: 15px;
    padding-left: 10px;
  }
}
.page_article .page_article_tablecont #toc div > ul > li ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #626262;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .page_article .page_article_tablecont #toc div > ul > li ul li a::before {
    width: 3px;
    height: 3px;
  }
}
@media (max-width: 768px) {
  .page_article .article_cta_row {
    margin-bottom: 20px;
  }
}
.page_article .page_article_cta {
  border: 1px solid #c7bbb1;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .page_article .page_article_cta {
    padding: 10px;
    border-radius: 6px;
    padding-bottom: 20px;
    margin-bottom: 35px;
  }
}
.page_article .page_article_cta .article_cta_img {
  max-width: 180px;
  width: 20%;
}
@media (max-width: 768px) {
  .page_article .page_article_cta .article_cta_img {
    width: 28%;
  }
}
.page_article .page_article_cta .article_cta_img img {
  width: 100%;
  margin: 0;
}
.page_article .page_article_cta .article_cta_textarea {
  width: 76%;
}
@media (max-width: 768px) {
  .page_article .page_article_cta .article_cta_textarea {
    width: 66%;
  }
}
.page_article .page_article_cta .article_cta_textarea .article_cta_link {
  font-size: 22px;
  margin-bottom: 20px;
  color: #17487b;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 768px) {
  .page_article .page_article_cta .article_cta_textarea .article_cta_link {
    margin-bottom: 0;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page_article .page_article_cta .article_cta_btns {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .page_article .page_article_cta .article_cta_btns.sp_dn {
    display: none;
  }
}
.page_article .page_article_cta .article_cta_btns.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .page_article .page_article_cta .article_cta_btns.sp_db {
    display: block;
  }
}
.page_article .page_article_cta .article_cta_btns .article_cta_btn {
  width: 48%;
}
@media (max-width: 768px) {
  .page_article .page_article_cta .article_cta_btns .article_cta_btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page_article .page_article_cta .article_cta_btns .article_cta_btn:last-child {
    margin-bottom: 0;
  }
}
.page_article .page_article_supervision {
  padding: 30px;
  background-color: #faf5ef;
  border-radius: 12px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .page_article .page_article_supervision {
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
  }
}
.page_article .page_article_supervision p {
  margin: 0;
}
.page_article .page_article_supervision .article_supervision_ttl {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .page_article .page_article_supervision .article_supervision_ttl {
    margin-bottom: 18px;
  }
}
.page_article .page_article_supervision .article_supervision_ttl::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #645132;
  position: absolute;
  top: 50%;
  left: 0;
}
.page_article .page_article_supervision .article_supervision_ttl p {
  display: inline;
  background-color: #faf5ef;
  padding: 0 13px;
  position: relative;
  padding-left: 82px;
  font-size: 26px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .page_article .page_article_supervision .article_supervision_ttl p {
    font-size: 18px;
    padding: 0px 7px;
    padding-left: 48px;
  }
}
.page_article .page_article_supervision .article_supervision_ttl p::before {
  content: "";
  background: url(/images/ttl_supervision.png) center/cover no-repeat;
  width: 57px;
  height: 53px;
  position: absolute;
  left: 13px;
  top: -6px;
}
@media (max-width: 768px) {
  .page_article .page_article_supervision .article_supervision_ttl p::before {
    width: 39px;
    height: 37px;
    left: 7px;
  }
}
@media (max-width: 768px) {
  .page_article .page_article_supervision .article_supervision_row {
    align-items: center;
    margin-bottom: 10px;
  }
}
.page_article .page_article_supervision .article_supervision_row .article_supervision_img {
  width: 22%;
  max-width: 144px;
}
.page_article .page_article_supervision .article_supervision_row .article_supervision_img img {
  width: 100%;
  margin: 0;
}
.page_article .page_article_supervision .article_supervision_textarea {
  width: 72%;
}
.page_article .page_article_supervision .article_supervision_textarea .article_supervision_info {
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .page_article .page_article_supervision .article_supervision_textarea .article_supervision_info {
    margin-bottom: 0;
  }
}
.page_article .page_article_supervision .article_supervision_textarea .article_supervision_info .article_supervision_position {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .page_article .page_article_supervision .article_supervision_textarea .article_supervision_info .article_supervision_position {
    font-size: 14px;
  }
}
.page_article .page_article_supervision .article_supervision_textarea .article_supervision_info .article_supervision_name {
  font-size: 26px;
  line-height: 1;
}
@media (max-width: 768px) {
  .page_article .page_article_supervision .article_supervision_textarea .article_supervision_info .article_supervision_name {
    font-size: 18px;
  }
}
.page_article .page_article_supervision .article_supervision_text {
  font-size: 18px;
}
@media (max-width: 768px) {
  .page_article .page_article_supervision .article_supervision_text {
    font-size: 14px;
  }
}
.page_article .page_article_more .article_more_ttl {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.page_article .page_article_more .article_more_ttl::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #434343;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  z-index: 10;
}
.page_article .page_article_more .article_more_ttl p {
  font-size: 26px;
  font-weight: bold;
  background-color: #fff;
  color: #434343;
  position: relative;
  z-index: 100;
  display: inline;
  padding: 0px 18px;
}
@media (max-width: 768px) {
  .page_article .page_article_more .article_more_ttl p {
    font-size: 20px;
  }
}
.page_article .page_article_more .article_more_cont {
  width: 100%;
}
.page_article .page_article_more .article_more_cont .articles_item {
  padding: 0;
}
.page_article .page_article_more .article_more_cont .articles_item .articles_img {
  width: 120px;
}
@media (max-width: 768px) {
  .page_article .page_article_more .article_more_cont .articles_item .articles_img {
    width: 43%;
  }
}
.page_article .page_article_more .article_more_cont .articles_item .articles_img img {
  width: 100%;
  margin: 0;
}
.page_article .page_article_more .article_more_cont .articles_item .article_info {
  width: calc(100% - 150px);
}
@media (max-width: 768px) {
  .page_article .page_article_more .article_more_cont .articles_item .article_info {
    width: 53%;
  }
}
.page_article .page_article_more .article_more_cont .articles_item .article_info .articles_ttl {
  font-size: 22px;
  padding-left: 0;
}
@media (max-width: 768px) {
  .page_article .page_article_more .article_more_cont .articles_item .article_info .articles_ttl {
    font-size: 15px;
  }
}
.page_article .page_article_more .article_more_cont .articles_item .article_info .articles_ttl::before, .page_article .page_article_more .article_more_cont .articles_item .article_info .articles_ttl::after {
  content: none;
}
.table_wrapper {
  overflow-x: scroll;
}