@charset "UTF-8";
:root {
  --color-signature-purple: #542a45; /* R84 G42 B68 */
  --color-signature-gold: #ce9f54; /* R206 G160 B82 */
  --color-accent-dusty-bloom: #a08094; /* R160 G128 B148 */
  --color-accent-dark-plum: #391d2e; /* R57 G29 B46 */
  --color-accent-midday-sun: #e5bd50; /* R229 G189 B80 */
  --color-accent-orchard-leaf: #758736; /* R117 G135 B54 */
  --color-gray-800: #444;
  --color-primary: var(--color-signature-purple); /* メインのブランドカラー */
  --color-secondary: var(--color-signature-gold); /* セカンダリのブランドカラー */
  --color-tertiary: var(--color-accent-dusty-bloom); /* ターシャリのブランドカラー */
  --color-text-main: var(--color-gray-800); /* 主要なテキストの色 */
  --color-text-light: var(--color-accent-dusty-bloom); /* 薄いテキストの色 */
  --color-background: #fff; /* 背景色（パレット外） */
  --color-link: var(--color-signature-purple); /* リンクの色 */
  --color-error: #ff4136; /* エラーメッセージの色 */
  --color-nav-arrow: #fff;
  --color-cate-sustainability:var(--color-accent-orchard-leaf);
  --color-cate-media:var(--color-accent-dusty-bloom);
  --color-cate-association:var(--color-signature-gold);
  --scrollbar-width: 17px;
}

/*---------- Reset ----------*/
body {
  color: #333;
  font-family: Noto Sans JP, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", YuGothic, "游ゴシック", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

html.showSearch {
  overflow: hidden;
  height: 100%;
}

html.showSearch body {
  overflow: hidden;
  height: 100%;
}

p, dl, dt, dd, li {
  margin: 0;
  word-break: break-word;
}

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

a:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*---------- font-size ----------*/
.fs10 {
  font-size: 0.625rem;
}

.fs11 {
  font-size: 0.6875rem;
}

.fs12 {
  font-size: 0.75rem;
}

.fs13 {
  font-size: 0.8125rem;
}

.fs14 {
  font-size: 0.875rem;
}

.fs15 {
  font-size: 0.9375rem;
}

.fs16 {
  font-size: 1rem;
}

.fs17 {
  font-size: 1.0625rem;
}

.fs18 {
  font-size: 1.125rem;
}

.fs19 {
  font-size: 1.1875rem;
}

.fs20 {
  font-size: 1.25rem;
}

.fs22 {
  font-size: 1.375rem;
}

.fs24 {
  font-size: 1.5rem;
}

.fs26 {
  font-size: 1.625rem;
}

.fs28 {
  font-size: 1.75rem;
}

.fs30 {
  font-size: 1.875rem;
}

/*---------- margin ----------*/
.mt0 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

/*---------- Btn ----------*/
.Btn {
  display: inline-block;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 46px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.Btn:hover {
  opacity: 0.7;
}

.Btn_print {
  border: solid 2px #4c1f67;
  max-width: 300px;
  border-radius: 8px;
  color: #4c1f67;
  font-weight: bold;
}

@media (max-width: 736px) {
  .Btn_print {
    max-width: 270px;
  }
}
.Btn_print::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/common/icon_print.png) no-repeat 0 0;
  vertical-align: middle;
  margin-right: 10px;
}

.Btn_pdf {
  border: solid 2px #4c1f67;
  max-width: 300px;
  border-radius: 8px;
  color: #4c1f67;
  font-weight: bold;
}

@media (max-width: 736px) {
  .Btn_pdf {
    max-width: 270px;
  }
}
.Btn_pdf::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/common/icon_pdf.png) no-repeat 0 0;
  vertical-align: middle;
  margin-right: 10px;
}

.BtnCenterBlock {
  text-align: center;
  margin: 30px 0;
}

/*---------- Link ----------*/
.Link {
  color: #a22b00;
}

.Link:hover {
  text-decoration: underline;
}

.Link-purple {
  color: #4c1f67;
}

.Link-alpha {
  transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
  -webkit-transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
  -moz-transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
}

.Link-alpha:hover {
  opacity: 0.7;
}

/*---------- MoreLink ----------*/
.MoreLink {
  text-align: center;
}

:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt {
  color: #4c1f67;
  font-size: 1.25rem;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  outline: none;
  cursor: pointer;
}
:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt::after {
  content: "";
  display: block;
  width: 240px;
  height: 18px;
  background: url(../images/common/link_arrow01.png) no-repeat 0 0;
  margin: 0 auto;
}
:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-brown {
  color: #9a4c00;
}
:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-brown::after {
  background-image: url(../images/common/link_arrow_brown.png);
}
:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-large::after {
  width: 320px;
  background: url(../images/common/link_arrow04.png) no-repeat 0 0;
}
:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-movie::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 20px;
  background: url(../images/common/icon_movie.png) no-repeat 0 0;
  vertical-align: middle;
  margin-right: 10px;
}
:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-movie::after {
  width: 300px;
  height: 18px;
  background: url(../images/common/link_arrow02.png) no-repeat 0 0;
}
:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-prune::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 26px;
  background: url(../images/common/icon_prune02.png) no-repeat 0 0;
  vertical-align: middle;
  margin-right: 10px;
}
:where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-prune::after {
  width: 300px;
  height: 18px;
  background: url(../images/common/link_arrow02.png) no-repeat 0 0;
}

.MoreLink-block {
  --bg-color-link:var(--color-secondary);
}
.MoreLink-block a {
  display: inline-block;
  color: #FFF;
  background-color: var(--bg-color-link);
  border: 1px solid var(--bg-color-link);
  padding: 0.75em 2em;
  font-weight: 700;
  transition: background-color 0.5s ease;
}
.MoreLink-block a:hover {
  color: var(--bg-color-link);
  background-color: #fff;
}

@media (max-width: 736px) {
  :where(.MoreLink):not(.MoreLink-block) .MoreLink_txt {
    font-size: 1rem;
    font-weight: bold;
  }
  :where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-movie::before {
    width: 21px;
    height: 15px;
    background-size: 21px auto;
  }
  :where(.MoreLink):not(.MoreLink-block) .MoreLink_txt-movie::after {
    width: 240px;
    background-size: 240px auto;
  }
}
/*---------- Title ----------*/
.Title_type01 {
  font-size: 2.125rem;
  color: #4c1f67;
  position: relative;
  padding: 10px 0 30px;
  display: inline-block;
  margin-bottom: 50px;
}
.Title_type01::before {
  content: "";
  display: inline-block;
  background: url(../images/common/text_frame_purple_l.png) no-repeat 0 0;
  width: 34px;
  height: 25px;
  position: absolute;
  top: -29px;
  margin-right: 10px;
}
.Title_type01::after {
  content: "";
  display: inline-block;
  background: url(../images/common/text_frame_purple_r.png) no-repeat 0 0;
  width: 34px;
  height: 25px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-left: 10px;
}

.Title_type02 {
  color: #b13b53;
  font-size: 1.875rem;
  padding-bottom: 10px;
  border-bottom: solid 1px #b13b53;
  margin: 0 0 30px;
}

.Title_block {
  margin-bottom: 45px;
  text-align: center;
}

.Title_imgArea {
  margin: 0 0 10px;
}

.Title_subTxt {
  color: #b13b53;
  font-size: 1.5rem;
  font-weight: 500;
}

.Title_txt {
  color: #4c1f67;
  font-size: 2.125rem;
  font-weight: normal;
  text-align: center;
}

.Title_txt-sml {
  font-size: 1.375rem;
  line-height: 2;
}

.Title_lead {
  font-size: 1.125rem;
  line-height: 1.8em;
  text-align: center;
}

.Title_note {
  color: #4c1f67;
  font-size: 0.875rem;
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 736px) {
  .Title_type01 {
    display: block;
    font-size: 1.3125rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .Title_type01::before {
    background-size: 23px auto;
    top: -12px;
    left: 50%;
    margin-left: -150px;
    margin-right: 0;
    position: absolute;
  }
  .Title_type01::after {
    background-size: 23px auto;
    left: 50%;
    bottom: 10px;
    margin-left: 130px;
    position: absolute;
  }
  .Title_type02 {
    font-size: 1.125rem;
  }
  .Title_block {
    margin-bottom: 25px;
    box-sizing: border-box;
  }
  .Title_block * {
    box-sizing: inherit;
  }
  .Title_imgArea {
    margin: 0 0 3px;
  }
  .Title_imgArea-beautyAndHealth {
    width: 253px;
    height: auto;
  }
  .Title_imgArea-recipes {
    width: 260px;
    height: auto;
  }
  .Title_imgArea-about {
    width: 300px;
    height: auto;
  }
  .Title_imgArea-topics {
    width: 182px;
    height: auto;
  }
  .Title_imgArea-recommend {
    width: 182px;
    height: auto;
  }
  .Title_imgArea-professional {
    width: 250px;
    height: auto;
  }
  .Title_subTxt {
    font-size: 1.125rem;
  }
  .Title_txt {
    font-size: 1.75rem;
  }
  .Title_txt-sml {
    font-size: 1.09375rem;
  }
  .Title_lead {
    font-size: 1rem;
  }
}
/*---------- Text ----------*/
.Text-center {
  text-align: center !important;
}

.Text-right {
  text-align: right !important;
}

.Text-left {
  text-align: left !important;
}

.Text-strong {
  font-weight: bold !important;
}

.Text-brown {
  color: #a22b00;
}

.Text-gold {
  color: #a7812e;
}

/*---------- InputCheck ----------*/
.InputCheck {
  position: absolute;
  opacity: 0;
}

.InputCheck_label {
  color: #4c1f67;
  font-size: 1.125rem;
  background: url(../images/common/check.png) no-repeat 0 5px;
  cursor: pointer;
  padding: 5px 0 5px 24px;
}

@media (max-width: 736px) {
  .InputCheck_label {
    font-size: 0.75rem;
    padding-top: 6px;
    padding-bottom: 6px;
    background-position: 0 3px;
  }
}
.InputCheck:checked + .InputCheck_label {
  background: url(../images/common/check_active.png) no-repeat 0 3px;
}

@media (max-width: 736px) {
  .InputCheck:checked + .InputCheck_label {
    background-position: 0 1px;
  }
}
/*---------- Contents ----------*/
@media (max-width: 736px) {
  .Contents.menuOpen {
    height: 100vh;
    overflow: hidden;
  }
}
.Contents_wrapper {
  transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
  -webkit-transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
  -moz-transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
  position: relative;
  left: 0;
}

.Contents_inner-noKv {
  background: url(../images/common/bg_page.png) no-repeat center 0;
  background-size: 100% auto;
  padding-top: 60px;
}

@media (max-width: 736px) {
  .Contents_inner-noKv {
    background-size: auto 55px;
    padding-top: 30px;
  }
}
.Contents_inner-news, .Contents_inner-newsLetter {
  background: url(../images/news/bg_news.png) no-repeat center 0;
  background-size: 100% auto;
  padding-top: 60px;
}

@media (max-width: 736px) {
  .Contents_inner-news, .Contents_inner-newsLetter {
    background-size: auto 55px;
    padding-top: 30px;
  }
}
.Contents_inner-campaign {
  background: url(../images/news/bg_campaign.png) no-repeat center 0;
  background-size: 100% auto;
  padding-top: 60px;
}

@media (max-width: 736px) {
  .Contents_inner-campaign {
    background-size: auto 55px;
    padding-top: 30px;
  }
}
.Contents_inner-statistics {
  background: url(../images/industry/bg_statistics.png) no-repeat center 0;
  background-size: 100% auto;
  padding-top: 60px;
}

@media (max-width: 736px) {
  .Contents_inner-statistics {
    background-size: auto 55px;
    padding-top: 30px;
  }
}
/*---------- Page ----------*/
.Page_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 736px) {
  .Page_inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/*---------- SectionBlock ----------*/
.SectionBlock {
  margin-bottom: 80px;
}

/*---------- Breadcrumb ----------*/
.Breadcrumb {
  margin: 30px auto 70px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 736px) {
  .Breadcrumb {
    margin: 15px auto 25px;
  }
}
.Breadcrumb_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 28px;
  border: solid 1px #4c1f67;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #4c1f67;
  position: relative;
}

@media (max-width: 736px) {
  .Breadcrumb_item {
    height: 19px;
  }
}
.Breadcrumb_item::after {
  content: "";
  display: block;
  width: 16px;
  height: 27px;
  background: url(../images/common/arrow_bread_crumb.png) no-repeat 0 0;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  right: -17px;
  z-index: 1;
}

@media (max-width: 736px) {
  .Breadcrumb_item::after {
    height: 18px;
    right: -18px;
  }
}
.Breadcrumb_item:first-child {
  border-radius: 14px 0 0 14px;
}

.Breadcrumb_item:first-child .Breadcrumb_link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 11px;
  background: url(../images/common/icon_home.png) no-repeat 0 0;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

@media (max-width: 736px) {
  .Breadcrumb_item:first-child .Breadcrumb_link::before {
    background-size: 10px auto;
    width: 10px;
    height: 8px;
    top: -1px;
  }
}
.Breadcrumb_item:last-child {
  border-radius: 0 14px 14px 0;
  background-color: #fff;
}

.Breadcrumb_item:last-child::after {
  content: none;
}

.Breadcrumb_item:last-child .Breadcrumb_link {
  color: #4c1f67;
  padding: 0 15px 0 20px;
}

.Breadcrumb_link {
  color: #fff;
  padding: 0 10px 0 20px;
  font-size: 0.75rem;
  line-height: 26px;
  display: block;
}

@media (max-width: 736px) {
  .Breadcrumb_link {
    padding: 0 5px 0 15px;
    font-size: 0.5625rem;
    line-height: 17px;
  }
}
.Breadcrumb_link-current {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 450px;
}

@media (max-width: 736px) {
  .Breadcrumb_link-current {
    max-width: 150px;
  }
}
/*---------- BannerList ----------*/
.BannerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 60px;
}

@media (max-width: 736px) {
  .BannerList {
    display: none;
  }
}
.BannerList_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 22%;
  flex: 0 0 22%;
  width: 22%;
}

.BannerList_link {
  display: block;
  border: solid 1px #e5e5e5;
}

.BannerList_link img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*---------- SimpleBreadcrumb ----------*/
.SimpleBreadcrumb {
  background-color: #fff5e0;
  padding: 0 20px;
}

.SimpleBreadcrumb-orange {
  background-color: #f8971d;
}

.SimpleBreadcrumb-orange .SimpleBreadcrumb_item {
  color: #fff;
}

.SimpleBreadcrumb-orange .SimpleBreadcrumb_link {
  color: #fff;
}

.SimpleBreadcrumb-blue {
  background-color: #00b5cb;
}

.SimpleBreadcrumb-blue .SimpleBreadcrumb_item {
  color: #fff;
}

.SimpleBreadcrumb-blue .SimpleBreadcrumb_link {
  color: #fff;
}

.SimpleBreadcrumb-green {
  background-color: #4cb860;
}

.SimpleBreadcrumb-green .SimpleBreadcrumb_item {
  color: #fff;
}

.SimpleBreadcrumb-green .SimpleBreadcrumb_link {
  color: #fff;
}

.SimpleBreadcrumb_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 10px 130px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  z-index: 10;
}

.SimpleBreadcrumb_item {
  display: inline-block;
  font-size: 0.75rem;
  margin-right: 5px;
}

.SimpleBreadcrumb_item::after {
  content: ">";
}

.SimpleBreadcrumb_item:last-child::after {
  content: none;
}

.SimpleBreadcrumb_link {
  color: #a22b00;
  padding-right: 15px;
}

/*---------- PostImgList ----------*/
.PostImgList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.PostImgList-mansony {
  display: block;
}

.PostImgList-mansony .PostImgList_item {
  width: 285px;
  margin: 0 0 30px;
}

.PostImgList_inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.PostImgList_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 28.5%;
  flex: 0 0 28.5%;
  width: 28.5%;
  margin-right: 7.25%;
}

.PostImgList_item:nth-child(3n) {
  margin-right: 0;
}

.PostImgList_item-paper {
  border: solid 1px #ccc;
  border-radius: 10px;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.PostImgList_link {
  display: block;
}

.PostImgList_imgArea {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}

.PostImgList_imgArea:hover .PostImgList_dataPanel {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.PostImgList_dataPanel {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(49, 19, 6, 0.5);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
  transition: -webkit-transform 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
  transition: transform 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
  transition: transform 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97), -webkit-transform 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
}

.PostImgList_dataPanelInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.PostImgList_dataTitle {
  color: #fff;
  font-size: 1.4375rem;
  margin-bottom: 10px;
  line-height: 1.6em;
}

.PostImgList_dataLead {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6em;
}

.PostImgList_title {
  font-size: 1.125rem;
  margin-bottom: 10px;
  line-height: 1.6em;
}

.PostImgList_txt {
  font-size: 0.875rem;
  line-height: 1.6em;
}

/*---------- RecipeNavi ----------*/
.RecipeNavi {
  position: relative;
  margin: 20px 0 55px;
}

.RecipeNavi_inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.RecipeNavi_categoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 6px 10px;
  cursor: pointer;
}

.RecipeNavi_categoryList.pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.RecipeNavi_categoryList-column .RecipeNavi_categoryItem {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
}

.RecipeNavi_categoryList-paper {
  max-width: 650px;
  margin: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.RecipeNavi_categoryList-paper .RecipeNavi_categoryItem {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.RecipeNavi_categoryList-news {
  max-width: 300px;
  margin: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.RecipeNavi_categoryList-news .RecipeNavi_categoryItem {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}

.RecipeNavi_categoryItem {
  color: #502411;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66%;
  flex: 0 0 16.66%;
  width: 16.66%;
  line-height: 22px;
}

.RecipeNavi_categoryItem::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 17px;
  vertical-align: middle;
  margin-left: 10px;
}

.RecipeNavi_categoryItem::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.RecipeNavi_categoryItem-genre::before {
  width: 17px;
  height: 19px;
}

.RecipeNavi_categoryItem-scene::before {
  width: 23px;
  height: 20px;
}

.RecipeNavi_categoryItem-diet::before {
  width: 17px;
  height: 17px;
}

.RecipeNavi_categoryItem-health::before {
  width: 19px;
  height: 17px;
}

.RecipeNavi_categoryItem-season::before {
  width: 22px;
  height: 17px;
}

.RecipeNavi_categoryItem-pro::before {
  width: 19px;
  height: 19px;
}

.RecipeNavi_detail {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 1000px;
  padding: 10px 20px 30px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  top: 98px;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 5;
}

.RecipeNavi_detailList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.RecipeNavi_detailList-column .RecipeNavi_detailBlock {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  width: 25%;
}

.RecipeNavi_detailList-paper {
  max-width: 650px;
  right: 0;
  margin: auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.RecipeNavi_detailList-paper .RecipeNavi_detailBlock {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.RecipeNavi_detailList-news {
  max-width: 300px;
  right: 0;
  margin: auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.RecipeNavi_detailList-news .RecipeNavi_detailBlock {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}

.RecipeNavi_detailBlock {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66%;
  flex: 0 0 16.66%;
  width: 16.66%;
}

.RecipeNavi_detailItem {
  position: relative;
  padding: 0 1px 1px 0;
}

.RecipeNavi_checkbox {
  position: absolute;
  opacity: 0;
}

.RecipeNavi_checkbox:checked + .RecipeNavi_detailLabel {
  background-color: #fac117;
}

.RecipeNavi_detailLabel {
  padding: 5px;
  display: block;
}

.RecipeNavi_categoryTitle {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 3px;
}

.RecipeNavi_categoryCount {
  display: block;
  font-size: 0.75rem;
  color: #6d2d16;
}

.RecipeNavi_btnArea {
  text-align: center;
  margin: 10px auto 0;
  max-width: 240px;
}

.RecipeNavi_txtSearch {
  max-width: 620px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  margin: 0 auto 20px;
}

.RecipeNavi_inputSearch {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 20px;
  text-align: center;
  height: 40px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  font-size: 1.125rem;
}

.RecipeNavi_btnSearch {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.RecipeNavi_detailLinkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 35px;
}

.RecipeNavi_detailLinkItem {
  margin-right: 80px;
}

.RecipeNavi_detailLinkItem:last-child {
  margin-right: 0;
}

.RecipeNavi_detailLink {
  display: block;
}

.RecipeNavi_detailLinkCount {
  font-size: 0.875rem;
  padding-left: 10px;
  color: #a22b00;
}

/*---------- ColumnList ----------*/
.ColumnList {
  position: relative;
  padding-bottom: 30px;
  margin-top: 50px;
}

.ColumnList_inner {
  max-width: 1000px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ColumnList_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 23.5%;
  flex: 0 0 23.5%;
  width: 23.5%;
  margin-right: 2%;
}

.ColumnList_item:last-child {
  margin-right: 0;
}

.ColumnList_link {
  display: block;
}

.ColumnList_imgArea {
  margin-bottom: 12px;
  max-height: 150px;
  overflow: hidden;
}

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

.ColumnList_title {
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.4em;
}

.ColumnList_txt {
  line-height: 1.4em;
}

.ColumnList_date {
  font-size: 0.8125rem;
  margin-bottom: 10px;
  color: #666;
}

/*---------- TagList ----------*/
.TagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.TagList_item {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #e5e5e5;
  border-radius: 10px;
  padding: 4px 10px;
  line-height: 1em;
  font-size: 0.8125rem;
}

/*---------- PostDetailList ----------*/
.PostDetailList {
  max-width: 1010px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.PostDetailList_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 30px;
}

.PostDetailList_item:nth-child(3n) {
  margin-right: 0;
}

.PostDetailList_item-search {
  width: 100%;
  margin-right: 0;
  margin-bottom: 0;
}

.PostDetailList_item-slim {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  width: 30%;
  margin-right: 5%;
}

.PostDetailList_imgArea, .PostDetailList .PostDetailList_imgArea {
  margin-bottom: 15px;
  max-height: 215px;
  overflow: hidden;
}

.PostDetailList_imgLink {
  display: block;
}

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

.PostDetailList_txtLink {
  display: block;
  margin: 0 0 10px;
}

.PostDetailList_title {
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0 0 10px;
  line-height: 1.4em;
}

.PostDetailList_txt {
  font-size: 0.875rem;
  line-height: 1.8em;
}

.PostDetailList_btmLink {
  margin-top: 30px;
}

/*---------- ContentsLink ----------*/
.ContentsLink {
  background-color: #f5f5f5;
  padding: 40px 0 10px;
}

.ContentsLink_inner {
  max-width: 1010px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ContentsLink_item {
  width: 48%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  border: solid 1px #000;
  margin-bottom: 30px;
}

.ContentsLink_link {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.ContentsLink_img {
  vertical-align: bottom;
  width: 210px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 210px;
  flex: 0 0 210px;
}

.ContentsLink_txt {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
  font-size: 1.25rem;
}

/*---------- SocialContents ----------*/
.SocialContents {
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 20px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 1440px) {
  .SocialContents {
    max-width: 80%;
  }
}

.SocialContents_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  width: 24%;
}

.SocialContents_title {
  margin-bottom: 15px;
}
.SocialContents_title a {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 40px;
  height: 40px;
}
.SocialContents_title a span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(100%);
  clip: rect(0 0 0 0); /* 旧ブラウザ対応 */
  white-space: nowrap;
}
.SocialContents_title a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent 50% 50%/cover no-repeat;
  background-size: 80% 80%;
}
.SocialContents_title a[href*="youtube.com"]:before {
  background-image: url("../images/common/icon-sns-youtube.svg");
}
.SocialContents_title a[href*="x.com"]:before {
  background-image: url("../images/common/icon-sns-x.svg");
}
.SocialContents_title a[href*="facebook.com"]:before {
  background-image: url("../images/common/icon-sns-facebook.svg");
}
.SocialContents_title a[href*="instagram.com"]:before {
  background-image: url("../images/common/icon-sns-instagram.svg");
}
.SocialContents_title a[href*="linkedin.com"]:before {
  background-image: url("../images/common/icon-sns-linkedin.svg");
}

.SocialContents_inner {
  height: 285px;
  overflow: auto;
  border: solid 1px #e5e5e5;
}

.browser-ie .SocialContents_inner.is-twitter {
  display: none;
}

.SocialContents_twitterMessage {
  display: none;
  line-height: 1.7;
}

.browser-ie .SocialContents_twitterMessage {
  display: block;
}

.SocialContents_instaList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.SocialContents_instaListItem {
  width: 32%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.SocialContents_instaListItem:nth-child(3n) {
  margin-right: 0;
}

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

.SocialContents_btnArea {
  text-align: center;
}

.SocialContents_titleImg {
  vertical-align: middle;
}

.SocialContents_blank {
  vertical-align: middle;
  margin-left: 10px;
}

.SocialContents_instaList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.SocialContents_instaListItem {
  width: 32%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.SocialContents_instaListItem::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

.SocialContents_instaListItem:nth-child(3n) {
  margin-right: 0;
}

.SocialContents_instaListItem a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.SocialContents_instaListImg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (max-width: 736px) {
  .SocialContents {
    display: none;
  }
}
/*---------- imgColumn ----------*/
.imgColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}

.imgColumn img {
  display: block;
  max-width: 620px;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0 auto 5px;
}

.imgColumn p {
  font-size: 0.8125rem;
  color: #808080;
}

.imgColumn-2column {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.imgColumn-2column li {
  width: 48.7%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48.7%;
  flex: 0 0 48.7%;
}

.imgColumn-3column {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.imgColumn-3column li {
  width: 32.5%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32.5%;
  flex: 0 0 32.5%;
}

/*---------- SearchedItems ----------*/
.SearchedItems {
  margin: 0 auto 20px;
  border: solid 1px #ddd;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.6em;
}

.SearchedItems_lead {
  color: #4c1f67;
}

.SearchedItems_lead::after {
  content: " : ";
}

/*---------- RecommendRecipe ----------*/
.RecommendRecipe {
  background-color: #efeaf8;
  padding: 50px 20px;
}

@media (max-width: 736px) {
  .RecommendRecipe {
    padding: 40px 0;
  }
}
.RecommendRecipe_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1080px;
  margin: 0 auto 30px;
}

@media (max-width: 736px) {
  .RecommendRecipe_list {
    display: block;
    padding: 0 15px;
  }
}
.RecommendRecipe_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 23.7%;
  flex: 0 0 23.7%;
  width: 23.7%;
  margin-right: 1.73%;
}

@media (max-width: 736px) {
  .RecommendRecipe_item {
    width: 100%;
    margin-right: 0;
  }
  .RecommendRecipe_item:nth-child(even) .RecommendRecipe_link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.RecommendRecipe_item:last-child {
  margin-right: 0;
}

.RecommendRecipe_link {
  display: block;
}

@media (max-width: 736px) {
  .RecommendRecipe_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.RecommendRecipe_imgArea {
  margin-bottom: 10px;
  height: 190px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 736px) {
  .RecommendRecipe_imgArea {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    height: 150px;
    margin-bottom: 0;
  }
}
.RecommendRecipe_img {
  width: 100%;
  height: auto;
}

.RecommendRecipe_txt {
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
}

@media (max-width: 736px) {
  .RecommendRecipe_txt {
    font-size: 0.75rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 15px;
  }
}
.ShareList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 20px 0;
}

.ShareList_item {
  margin-left: 10px;
  min-width: 64px;
}

/*---------- Wordpress Style ----------*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignleft {
  float: left;
  padding: 0 15px 15px 0;
}

.alignright {
  float: right;
  padding: 0 0 15px 15px;
}

.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget iframe[style] {
  width: 100% !important;
}

/*---------- Responsive Style ----------*/
.sp {
  display: none;
}

.tb {
  display: none;
}

.pc {
  display: block;
}

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

.pc_none {
  display: none;
}

.tb_none {
  display: block;
}

.sp_none {
  display: block;
}

br.tb_none, img.tb_none, br.sp_none, img.sp_none {
  display: inline;
}

/*---------- adjust ----------*/
.inline {
  display: inline !important;
}

/*========================================================================================================== Breakpoint 1024px */
@media only screen and (max-width: 1024px) {
  /*---------- Responsive Style ----------*/
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .sp {
    display: none;
  }
  br.pc, img.pc, br.sp, img.sp {
    display: none;
  }
  br.tb, img.tb {
    display: inline;
  }
  .pc_none {
    display: block;
  }
  .tb_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
  br.pc_none, img.pc_none, br.sp_none, img.sp_none {
    display: inline;
  }
  br.tb_none, img.tb_none {
    display: none;
  }
}
/*========================================================================================================== Breakpoint 736px */
@media (max-width: 736px) {
  :root {
    font-size: 13px;
  }
  .fs_sp10 {
    font-size: 0.625rem;
  }
  .fs_sp11 {
    font-size: 0.6875rem;
  }
  .fs_sp12 {
    font-size: 0.75rem;
  }
  .fs_sp13 {
    font-size: 0.8125rem;
  }
  .fs_sp14 {
    font-size: 0.875rem;
  }
  .fs_sp15 {
    font-size: 0.9375rem;
  }
  .fs_sp16 {
    font-size: 1rem;
  }
  .fs_sp17 {
    font-size: 1.0625rem;
  }
  .fs_sp18 {
    font-size: 1.125rem;
  }
  .fs_sp19 {
    font-size: 1.1875rem;
  }
  .fs_sp20 {
    font-size: 1.25rem;
  }
  .fs_sp22 {
    font-size: 1.375rem;
  }
  .fs_sp24 {
    font-size: 1.5rem;
  }
  .fs_sp26 {
    font-size: 1.625rem;
  }
  .fs_sp28 {
    font-size: 1.75rem;
  }
  .fs_sp30 {
    font-size: 1.875rem;
  }
  /*---------- Responsive Style ----------*/
  .sp {
    display: block;
  }
  .tb {
    display: none;
  }
  .pc {
    display: none;
  }
  br.pc, img.pc, br.tb, img.tb {
    display: none;
  }
  br.sp, img.sp {
    display: inline;
  }
  .pc_none {
    display: block;
  }
  .tb_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
  br.pc_none, img.pc_none, br.tb_none, img.tb_none {
    display: inline;
  }
  br.sp_none, img.sp_none {
    display: none;
  }
}
.snsInfo_list_link span, .Header_menuSearchLink span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(100%);
  clip: rect(0 0 0 0); /* 旧ブラウザ対応 */
  white-space: nowrap;
}

.snsInfo_list_link:before, .Header_menuSearchLink:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent 50% 50%/cover no-repeat;
}

.Header {
  --color-link:var(--color-secondary);
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
}
.Header_inner:after, .Header_logo, .Header_links {
  transition: height 0.5s ease;
  height: 120px;
}
.Header_inner {
  position: relative;
}
.Header_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Header_logo a {
  width: 100%;
  height: 100%;
}
.Header_logoImg {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-height: 120px;
  padding: 1em;
  object-fit: contain;
  object-position: 0 50%;
}
.Header_contentsMenu {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  display: flex;
  align-items: center;
  transition: 0.5s ease;
  transition-property: opacity, transform;
}
.Header_contentsMenuList {
  margin: 0;
  display: flex;
}
.Header_contentsMenuItem + .Header_contentsMenuItem {
  margin-left: 0.5em;
}
.Header_contentsMenuBtn {
  position: relative;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  font-size: 0.8em;
  color: #FFF;
}
.Header_contentsMenuBtn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.5em;
  border: 2px solid #FFF;
  opacity: 0;
  box-sizing: border-box;
}
.Header_contentsMenuBtn:hover:after {
  opacity: 1;
}
.Header_contentsMenuBtn-sustainability {
  background-color: var(--color-cate-sustainability);
  border-color: var(--color-cate-sustainability);
}
.Header_contentsMenuBtn-media {
  background-color: var(--color-cate-media);
  border-color: var(--color-cate-media);
}
.Header_contentsMenuBtn-association {
  background-color: var(--color-cate-association);
  border-color: var(--color-cate-association);
}
.Header_contentsMenuList + .snsInfo {
  margin-left: 0.5em;
}
.Header_menu {
  display: flex;
  height: 100%;
  width: 100%;
  color: var(--color-secondary);
}
.Header_menuInner {
  display: flex;
  width: 100%;
}
.Header_menuLink {
  --color-menu-link: var(--color-secondary);
  display: flex;
  align-items: center;
  color: var(--color-menu-link);
  text-align: left;
  padding: 0 1em;
  box-sizing: border-box;
  line-height: 1.2;
}
.Header_menuLink span {
  position: relative;
}
.Header_menuItem:has(.Header_spSubMenu) .Header_menuLink span:after, .Header_spSubMenuLink:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8em;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  background: url("../images/common/icon-arrow-down.svg") 0 0/cover no-repeat;
}
.Header_menuItem:has(.Header_spSubMenu) .Header_menuLink:hover span:after {
  background-image: url("../images/common/icon-arrow-down-hover.svg");
}
.Header_menuItem:has(.Header_spSubMenu) .Header_menuLink:hover, .Header_spSubMenuLink:hover {
  --color-menu-link:#FFF;
  text-decoration: underline;
}
@supports (text-underline-offset: 0.25em) {
  .Header_menuItem:has(.Header_spSubMenu) .Header_menuLink:hover, .Header_spSubMenuLink:hover {
    text-underline-offset: 0.25em;
  }
}
.Header_spSubMenu {
  padding: 0.5em 0;
  background-color: var(--color-primary);
  min-width: 12.5em;
}
.Header_spSubMenuLink {
  color: var(--color-menu-link);
  padding: 0.5em 1em;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Header_spSubMenuLink:hover {
  color: #FFF;
}
.Header_spSubMenuLink:after {
  display: none;
}
.Header_menuSearchLink:before {
  width: 24px;
  height: 24px;
  background-image: url("../images/common/icon-search.svg");
}
.Header_menuSearchLink:hover:before {
  background-image: url("../images/common/icon-search_w.svg");
}
.Header_menuBtn {
  position: absolute;
  top: 50%;
  right: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  cursor: pointer;
  transform: translateY(-50%);
  text-align: center;
  line-height: 32px;
}
.Header_menuBtnLine {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 2px;
}
.Header_menuBtnLine:before, .Header_menuBtnLine:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}
.Header_menuBtnLine:before, .Header_menuBtnLine:after, .Header_menuBtnLine span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-secondary);
  overflow: hidden;
  user-select: none;
  transition: transform 0.4s 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19), top 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19), opacity 0.2s 0.6s ease;
  transform-origin: center;
}
.Header_menuBtnLine:before {
  top: -6px;
}
.Header_menuBtnLine:after {
  top: 6px;
}
@media screen and (min-width: 737px) {
  .Header_inner:after, .Header_logo {
    width: 20%;
    position: absolute;
    inset: 0;
    margin-block: auto;
  }
  .Header_links {
    width: 60%;
    margin: 0 auto;
  }
  .Header_menuList {
    display: flex;
    width: calc(100% - 36px);
  }
  .Header_menuItem {
    width: 21.6802168022%;
  }
  .Header_menuItem:has(a[href*="/about"]) {
    width: 32.5203252033%;
  }
  .Header_menuLink {
    height: 100%;
  }
  .Header_spSubMenu {
    display: none;
    position: absolute;
    z-index: 100;
  }
  .Header_menuSearch {
    width: 36px;
    display: flex;
    justify-content: right;
    align-items: center;
  }
  .Header_menuSearchLink {
    position: relative;
    color: inherit;
    width: 24px;
    height: 24px;
    cursor: pointer;
    padding: 0;
    box-sizing: border-box;
  }
  .Header_menuBtn {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .Header_inner:after, .Header_logo, .Header_links {
    height: 100px;
  }
  .Header_logo {
    justify-content: flex-start;
  }
  .Header_logo a {
    width: 50%;
    height: 100%;
  }
  .Header_links {
    height: auto !important;
  }
  .Header_contentsMenuList {
    display: none;
  }
  .Header_menuInner {
    z-index: 100;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 1s ease;
    background-color: var(--color-primary);
    overflow-y: auto;
  }
  .Header_menuLink {
    padding: 0.5em 1em;
  }
  .Header_spSubMenu {
    padding: 0 1em;
  }
  .Header_menuItem:not(.open) .Header_spSubMenu {
    height: 0;
    overflow: hidden;
  }
  .Header_menuItem.open .Header_menuLink {
    --color-link:#FFF;
    color: #FFF;
  }
  .Header_menuSearch {
    padding-left: 1em;
    margin-top: 3em;
  }
  .Header_menuSearchLink {
    display: flex;
    align-items: center;
  }
  .Header_menuSearchLink:before {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.25em;
  }
  .Header_menuSearchLink span {
    position: relative;
    clip-path: none;
    clip: unset;
    width: auto;
    height: auto;
    margin: 0;
  }
}

@media (min-width: 737px) {
  .is-sticky .Header_inner:after, .is-sticky .Header_logo, .is-sticky .Header_links {
    height: 80px;
  }
  .is-sticky .Header_contentsMenu {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@media (max-width: 736px) {
  .Header {
    font-size: 123.0769230769%;
    position: relative;
  }
}
.menuOpen .Header_menuBtnLine span {
  opacity: 0;
}
.menuOpen .Header_menuBtnLine:before {
  top: 0;
  transform: translateY(0) rotate(45deg);
}
.menuOpen .Header_menuBtnLine:after {
  top: 0;
  transform: translateY(0) rotate(-45deg);
}
@media screen and (max-width: 736px) {
  .menuOpen .Header_menuInner {
    height: calc(100vh - 100px);
  }
}

.Header_menuBtn.is-closing .Header_menuBtnLine:before, .Header_menuBtn.is-closing .Header_menuBtnLine:after, .Header_menuBtn.is-closing .Header_menuBtnLine span {
  transition: transform 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19), top 0.4s 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19), opacity 0.2s 0.6s ease;
}

.HeaderFixed {
  display: none;
}

.Header_spMenu {
  display: none;
}

.snsInfo_list {
  display: flex;
  gap: 0.5em;
}
.snsInfo_list_item {
  width: 20%;
}
.snsInfo_list_link {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  margin-inline: auto;
}
.snsInfo_list_link:before {
  background-size: 80% 80%;
}
.snsInfo_list_link[href*="youtube.com"]:before {
  background-image: url("../images/common/icon-sns-youtube.svg");
}
.snsInfo_list_link[href*="x.com"]:before {
  background-image: url("../images/common/icon-sns-x.svg");
}
.snsInfo_list_link[href*="facebook.com"]:before {
  background-image: url("../images/common/icon-sns-facebook.svg");
}
.snsInfo_list_link[href*="instagram.com"]:before {
  background-image: url("../images/common/icon-sns-instagram.svg");
}
.snsInfo_list_link[href*="linkedin.com"]:before {
  background-image: url("../images/common/icon-sns-linkedin.svg");
}
.snsInfo_list_link[href*="youtube.com"]:hover:before {
  background-image: url("../images/common/icon-sns-youtube-w.svg");
}
.snsInfo_list_link[href*="x.com"]:hover:before {
  background-image: url("../images/common/icon-sns-x-w.svg");
}
.snsInfo_list_link[href*="facebook.com"]:hover:before {
  background-image: url("../images/common/icon-sns-facebook-w.svg");
}
.snsInfo_list_link[href*="instagram.com"]:hover:before {
  background-image: url("../images/common/icon-sns-instagram-w.svg");
}
.snsInfo_list_link[href*="linkedin.com"]:hover:before {
  background-image: url("../images/common/icon-sns-linkedin-w.svg");
}
.snsInfo_list_link:hover:after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  display: block;
  content: "";
  width: 64%;
  height: 1px;
  background-color: #fff;
}
@media (max-width: 736px) {
  .snsInfo_list {
    gap: 0.25em;
  }
  .snsInfo_list_link {
    width: 20px;
    height: 20px;
  }
}

/*---------- Footer ----------*/
.Footer {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding-top: 2em;
}
.Footer_body {
  padding-left: 1em;
  padding-right: 1em;
}
.Footer_copyright {
  margin: 1em 0;
  display: block;
}
@media (min-width: 737px) {
  .Footer_snsInfo {
    position: absolute;
    right: 0.5em;
    bottom: 0.5em;
  }
}
@media (max-width: 736px) {
  .Footer_snsInfo {
    margin-top: 1em;
  }
}

.FooterSiteInfo {
  position: relative;
}
.FooterSiteInfo_logo {
  margin-block: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.FooterSiteInfo_logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.FooterSiteInfo_logo img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-height: 120px;
  padding: 1em;
  object-fit: contain;
  margin-left: -1em;
}
.FooterSiteInfo .FooterSiteNav {
  margin: 0 auto;
}
@media (min-width: 737px) {
  .FooterSiteInfo_logo {
    width: 20%;
    position: absolute;
    inset: 0;
  }
  .FooterSiteInfo .FooterSiteNav {
    width: 60%;
  }
}
.FooterTop {
  background: url(../images/common/bg_footer01.png) repeat 0 0;
}

.FooterTop_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-left: solid 1px #333154;
  border-right: solid 1px #6d4a81;
}

.FooterTop_column {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  width: 20%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: solid 1px #331546;
  border-left: solid 1px #6d4a81;
}

.FooterTop_block {
  padding: 30px 15px;
}

.FooterTop_block + .FooterTop_block {
  padding: 0 15px 30px;
}

.FooterTop_lead {
  margin-bottom: 15px;
}

.FooterTop_leadLink {
  font-size: 0.9375rem;
  font-weight: bold;
  color: #fff;
}

.FooterTop_leadLink-hasSub:hover {
  opacity: 1;
}

.FooterTop_itemBlock {
  margin-bottom: 15px;
}

.FooterTop_item {
  margin-bottom: 15px;
}

.FooterTop_item:last-child {
  margin-bottom: 0;
}

.FooterTop_link {
  font-size: 0.8125rem;
  color: #fff;
  position: relative;
  display: block;
  padding-left: 10px;
  line-height: 1.2em;
}

.FooterTop_link:hover {
  opacity: 0.7;
}

.FooterTop_link::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 736px) {
  .FooterTop_inner {
    display: block;
    padding: 0;
    border: none;
  }
  .FooterTop_column {
    width: 100%;
  }
  .FooterTop_block {
    padding: 0;
    border-top: solid 1px #5c3971;
    border-bottom: solid 1px #341447;
  }
  .FooterTop_lead {
    margin-bottom: 0;
  }
  .FooterTop_leadLink {
    font-size: 0.75rem;
    font-weight: normal;
    padding: 12px 15px;
    display: block;
    background: url(../images/common/arrow_r_wht.png) no-repeat calc(100% - 18px) center;
    background-size: 7px auto;
  }
  .FooterTop_leadLink-hasSub {
    position: relative;
    background: none;
  }
  .FooterTop_leadLink-hasSub::before {
    content: "";
    display: block;
    width: 13px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .FooterTop_leadLink-hasSub::after {
    content: "";
    display: block;
    width: 1px;
    height: 13px;
    background-color: #fff;
    position: absolute;
    right: 21px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .FooterTop_leadLink.open {
    position: relative;
    background: none;
  }
  .FooterTop_leadLink.open::after {
    content: none;
  }
  .FooterTop_itemBlock {
    display: none;
  }
  .FooterTop_item {
    margin-bottom: 0;
  }
  .FooterTop_link {
    padding: 5px 10px 5px 30px;
    font-size: 0.75rem;
  }
  .FooterTop_link::before {
    left: 20px;
    top: 4px;
  }
}
.FooterMiddle {
  background: url(../images/common/bg_footer02.png) repeat 0 0;
}

.FooterMiddle_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.FooterMiddle_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.FooterMiddle_linksItem {
  margin-right: 30px;
}

.FooterMiddle_linksTxt {
  color: #bea0d0;
  font-size: 0.9375rem;
}

.FooterMiddle_linksTxt:hover {
  opacity: 0.7;
}

.FooterMiddle_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.FooterMiddle_snsItem {
  margin-left: 15px;
}

.FooterMiddle_snsLink {
  opacity: 0.5;
}

.FooterMiddle_snsLink:hover {
  opacity: 0.3;
}

@media (max-width: 736px) {
  .FooterMiddle_sns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
  }
  .FooterMiddle_snsLink img {
    width: 29px;
    height: auto;
    vertical-align: bottom;
  }
}
.FooterBottom {
  background: url(../images/common/bg_footer03.png) repeat 0 0;
  padding: 40px 20px;
}

.FooterBottom_logoArea {
  text-align: center;
  margin-bottom: 25px;
}

.FooterBottom_lead {
  text-align: center;
  font-size: 0.8125rem;
  color: #7f6590;
  font-weight: normal;
}

.FooterBottom_copyright {
  color: #7f6590;
  display: block;
  text-align: center;
}

.FooterBottom_pagetopBlock {
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99;
}

.FooterBottom_pagetop {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 101;
}

@media (max-width: 736px) {
  .FooterBottom {
    padding: 20px;
  }
  .FooterBottom_logoArea {
    margin-bottom: 15px;
  }
  .FooterBottom_logoImg {
    width: 121px;
    height: auto;
  }
  .FooterBottom_lead {
    font-size: 0.5625rem;
    line-height: 1.6em;
  }
  .FooterBottom_copyright {
    font-size: 0.5625rem;
  }
  .FooterBottom_pagetop {
    bottom: 10px;
    right: 10px;
  }
  .FooterBottom_pagetopImg {
    width: 52px;
    height: auto;
  }
}
.FooterSearch {
  display: none;
}

.FooterSearch_input {
  background: url(../images/common/icon_search_gray.png) no-repeat 96% center #fff;
  background-size: 25px auto;
  border: solid 2px #98948f;
  width: 100%;
  height: 53px;
  border-radius: 5px;
  text-align: center;
  color: #98948f;
}

@media (max-width: 736px) {
  .FooterSearch {
    display: block;
    background-color: #fff;
    padding: 22px 15px;
  }
}
.FooterSiteNav {
  line-height: 1.7;
}
.FooterSiteNav ul {
  margin: 0;
}
.FooterSiteNav a {
  color: inherit;
}
@supports (text-underline-offset: 0.25em) {
  .FooterSiteNav a:hover {
    text-underline-offset: 0.25em;
  }
}
.FooterSiteNav_list {
  padding-left: 0;
}
.FooterSiteNav_item > a {
  font-weight: bold;
  line-height: 1.2;
}
.FooterSiteNav_subList {
  margin-top: 0.5em;
  font-size: 87.5%;
}
.FooterSiteNav_subList li {
  display: flex;
  align-items: flex-start;
  gap: 0.25em;
}
.FooterSiteNav_subList li:before {
  content: "";
  width: 1em;
  height: 1em;
  margin-top: 0.35em;
  background-color: var(--color-secondary);
  clip-path: polygon(20% 45%, 65% 45%, 65% 55%, 20% 55%);
}
@media (min-width: 481px) {
  .FooterSiteNav a:hover {
    color: #FFF;
    text-decoration: underline;
  }
  .FooterSiteNav_list {
    --gap: 20px;
    display: grid;
    gap: var(--gap);
    row-gap: 10px;
  }
  .FooterSiteNav_subList li {
    margin-top: 0.325em;
  }
}
@media (max-width: 480px) {
  .FooterSiteNav_list, .FooterSiteNav_item + .FooterSiteNav_item {
    border: 0 solid rgba(0, 0, 0, 0.3);
  }
  .FooterSiteNav_list, .FooterSiteNav_item + .FooterSiteNav_item {
    border-top-width: 1px;
  }
  .FooterSiteNav_list {
    border-bottom-width: 1px;
  }
  .FooterSiteNav_item > a {
    position: relative;
    display: block;
    padding: 0.75em 0.5em;
  }
  .FooterSiteNav_item:has(.FooterSiteNav_subList) > a:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5em;
    width: 16px;
    height: 16px;
    background: url("../images/common/icon-arrow-down.svg") 0 0/cover no-repeat;
  }
  .FooterSiteNav_item:has(.FooterSiteNav_subList).js-open > a {
    color: #FFF;
    text-decoration: underline;
  }
  .FooterSiteNav_item:has(.FooterSiteNav_subList).js-open > a:after {
    background-image: url("../images/common/icon-arrow-down-hover.svg");
  }
  .FooterSiteNav_item:has(.FooterSiteNav_subList):not(.js-open) .FooterSiteNav_sub {
    display: none;
  }
  .FooterSiteNav_subList a {
    width: calc(100% - 1.5em);
  }
  .FooterSiteNav_subList li {
    padding: 0.5em;
    background-color: #6a375d;
  }
  .FooterSiteNav_subList li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .Footer {
    padding-top: 0;
  }
  .FooterSiteInfo_logo {
    padding-block: 0.5em 1em;
  }
}
@media (max-width: 736px) {
  .FooterSiteNav {
    font-size: 123.0769230769%;
  }
}

@media (min-width: 321px) {
  .FooterSiteNav_item:nth-child(1) {
    grid-area: item1;
  }
  .FooterSiteNav_item:nth-child(2) {
    grid-area: item2;
  }
  .FooterSiteNav_item:nth-child(3) {
    grid-area: item3;
  }
  .FooterSiteNav_item:nth-child(4) {
    grid-area: item4;
  }
  .FooterSiteNav_item:nth-child(5) {
    grid-area: item5;
  }
  .FooterSiteNav_item:nth-child(6) {
    grid-area: item6;
  }
  .FooterSiteNav_item:nth-child(7) {
    grid-area: item7;
  }
  .FooterSiteNav_item:nth-child(8) {
    grid-area: item8;
  }
}
/* PC向け6カラムレイアウト */
@media (min-width: 1025px) {
  .FooterSiteNav_list {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto; /* コンテンツの高さに合わせて自動調整 */
    grid-template-areas: "item1 item2 item3 item4 item5" "item1 item2 item3 item4 item6" "item1 item2 item3 item4 item7" "item1 item2 item3 item4 item8";
  }
}
/* 3カラムレイアウト */
@media (min-width: 481px) and (max-width: 1024px) {
  .FooterSiteNav_list {
    grid-template-columns: repeat(3, calc((100% - var(--gap) * 2) / 3));
    grid-template-areas: "item1 item2 item3" "item4 item5 item6" "item4 item5 item7" "item4 item5 item8";
  }
}
/* 2カラムレイアウト（スマートフォンなど） */
.SiteSearch_closeBtn span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(100%);
  clip: rect(0 0 0 0); /* 旧ブラウザ対応 */
  white-space: nowrap;
}

/*---------- SiteSearch ----------*/
.SiteSearch {
  --search-color: #FFF;
  --search-sub-color: #AAA;
  position: absolute;
  z-index: 102;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}
.SiteSearch_panel {
  width: 100%;
}
.SiteSearch_head {
  padding-right: var(--scrollbar-width);
  display: block;
  padding-block: 1em;
}
.SiteSearch_headInner {
  max-width: 980px;
  margin: 0 auto;
}
.SiteSearch_wordSearch {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  position: relative;
}
.SiteSearch_input {
  width: 100%;
  height: 68px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  border: solid 1px #fff;
  border-radius: 10px;
  background-color: transparent;
  font-size: 1.125rem;
  display: block;
  outline: none;
  color: #FFF;
}
.SiteSearch_input:placeholder-shown {
  color: rgba(153, 153, 153, 0.5);
}
.SiteSearch_input::-webkit-input-placeholder {
  color: rgba(153, 153, 153, 0.5);
}
.SiteSearch_input:-moz-placeholder {
  color: rgba(153, 153, 153, 0.5);
  opacity: 1;
}
.SiteSearch_input::-moz-placeholder {
  color: rgba(153, 153, 153, 0.5);
  opacity: 1;
}
.SiteSearch_input:-ms-input-placeholder {
  color: rgba(153, 153, 153, 0.5);
}
.SiteSearch_input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.9) inset;
  -webkit-text-fill-color: #FFF !important;
  background-color: transparent !important;
}
.SiteSearch_btn {
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: url(../images/common/icon-search_w.svg) no-repeat center center;
  background-size: 26px auto;
  margin: auto;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: -9999px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
}
.SiteSearch_btn:hover {
  background-image: url(../images/common/icon-search.svg);
}
.SiteSearch_content {
  position: relative;
  color: #FFF;
  background-color: transparent;
  overflow: auto;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  transition: height 1s ease;
  height: calc(100vh - 100px);
}
.SiteSearch_contentInner {
  max-width: 980px;
  margin: 0 auto;
  min-height: 100%;
}
.SiteSearch_resultCount {
  text-align: center;
  color: var(--search-color);
  font-size: 1.5rem;
  border-bottom: solid 1px var(--search-sub-color);
  padding-bottom: 15px;
  margin-bottom: 3px;
  display: none;
}
.SiteSearch_resultList {
  display: none;
  border-top: solid 1px var(--search-sub-color);
  padding-bottom: 50vh;
}
.SiteSearch_resultItem + .SiteSearch_resultItem {
  border-top: 1px solid #333;
}
.SiteSearch_link {
  display: block;
  padding: 20px 0;
  color: var(--search-sub-color);
}
.SiteSearch_title {
  font-size: 1.375rem;
  color: var(--search-color);
  margin-bottom: 10px;
}
.SiteSearch_txt {
  font-size: 0.9375rem;
  line-height: 1.4;
}
.SiteSearch_closeBtn {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.SiteSearch_closeBtn:before, .SiteSearch_closeBtn:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 2px;
  background-color: #fff;
}
.SiteSearch_closeBtn:before {
  transform: rotate(45deg);
}
.SiteSearch_closeBtn:after {
  transform: rotate(-45deg);
}
.SiteSearch_closeBtn:hover:before, .SiteSearch_closeBtn:hover:after {
  background-color: var(--color-secondary);
}

html:not(.showSearch) .SiteSearch {
  display: none;
}

.SiteSearch_content:not(.js-searchContentOpen) {
  height: 0;
}

@media (max-width: 736px) {
  .SiteSearch {
    font-size: 123.0769230769%;
    top: 0;
  }
  .SiteSearch_headInner {
    padding: 1em 1.5em;
  }
  .SiteSearch_wordSearch {
    width: 100%;
    margin: 0 auto;
  }
  .SiteSearch_input {
    height: 45px;
    font-size: 0.875rem;
    background-size: 18px auto;
    background-position: 96% center;
  }
  .SiteSearch_btn {
    background-size: 20px auto;
  }
  .SiteSearch_content {
    height: calc(100vh - 130px);
  }
  .SiteSearch_contentInner {
    padding: 30px 20px 0;
  }
  .SiteSearch_resultCount {
    font-size: 100%;
  }
  .SiteSearch_title {
    font-size: 87.5%;
  }
  .SiteSearch_txt {
    font-size: 81.25%;
  }
}

.SiteSearch {
  --dots-area:64px;
}
.SiteSearch_loader {
  position: absolute;
  inset: 0;
  margin: auto;
  text-align: center;
  height: var(--dots-area);
  display: none;
  pointer-events: none;
}
.SiteSearch_loadIcon {
  position: absolute;
  inset: 0;
  width: var(--dots-area);
  height: var(--dots-area);
  margin: auto;
}
.SiteSearch_loadDots {
  width: var(--dots-area);
  height: var(--dots-area);
  position: relative;
  animation: load-base 2.5s infinite linear both;
}
.SiteSearch_loadDots > * {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: load-dot 2s infinite ease-in-out both;
}
.SiteSearch_loadDots > *:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: load-dot-before 2s infinite ease-in-out both;
}
.SiteSearch_loadDots > *:nth-child(1) {
  animation-delay: -1.1s;
}
.SiteSearch_loadDots > *:nth-child(2) {
  animation-delay: -1s;
}
.SiteSearch_loadDots > *:nth-child(3) {
  animation-delay: -0.9s;
}
.SiteSearch_loadDots > *:nth-child(4) {
  animation-delay: -0.8s;
}
.SiteSearch_loadDots > *:nth-child(5) {
  animation-delay: -0.7s;
}
.SiteSearch_loadDots > *:nth-child(6) {
  animation-delay: -0.6s;
}
.SiteSearch_loadDots > *:nth-child(1):before {
  animation-delay: -1.1s;
}
.SiteSearch_loadDots > *:nth-child(2):before {
  animation-delay: -1s;
}
.SiteSearch_loadDots > *:nth-child(3):before {
  animation-delay: -0.9s;
}
.SiteSearch_loadDots > *:nth-child(4):before {
  animation-delay: -0.8s;
}
.SiteSearch_loadDots > *:nth-child(5):before {
  animation-delay: -0.7s;
}
.SiteSearch_loadDots > *:nth-child(6):before {
  animation-delay: -0.6s;
}

.js-searchLoading .SiteSearch_loader {
  display: block;
}

@keyframes load-base {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load-dot {
  80%, 100% {
    transform: rotate(360deg);
  }
}
@keyframes load-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1);
  }
}
.post-password-form {
  text-align: center;
  max-width: 645px;
  margin: 0 auto;
}

.post-password-form > p {
  font-size: 1.375rem;
  color: #6e2d11;
  line-height: 1.4em;
  padding: 60px 20px 25px;
}

.post-password-form > p:last-child {
  padding: 0 20px 30px;
}

.post-password-form label {
  font-size: 1.125rem;
  color: #333;
}

.post-password-form input {
  font-size: 1.125rem;
  color: #333;
}

.post-password-form input[type=submit] {
  color: #fff;
  background-color: #a22b00;
  font-weight: bold;
  border: none;
  height: 26px;
  font-size: 1rem;
  padding: 0 10px;
}

.BannerLink {
  max-width: 1080px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.BannerLink_item {
  width: 48.1%;
  flex: 0 0 48.1%;
}
.BannerLink_item-solo {
  margin: 30px auto 0;
}
.BannerLink_item-solo .BannerLink_imgArea {
  width: 140px;
  flex: 0 0 140px;
}
.BannerLink_link {
  display: flex;
  align-items: center;
  background-color: #f6f2f9;
}
.BannerLink_link-blank {
  padding-right: 50px;
  background: url(../images/common/icon_blank.png) no-repeat 95% center #f6f2f9;
}
.BannerLink_imgArea {
  width: 210px;
  flex: 0 0 210px;
}
.BannerLink_img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.BannerLink_title {
  font-size: 1.125rem;
  flex: 1 1 auto;
  box-sizing: border-box;
  padding: 10px 0 10px 30px;
}

@media (max-width: 736px) {
  .BannerLink {
    display: block;
    margin: 0 auto 40px;
  }
  .BannerLink_item {
    width: 100%;
    margin-bottom: 15px;
  }
  .BannerLink_item-solo .BannerLink_imgArea {
    width: 110px;
    flex: 0 0 110px;
  }
  .BannerLink_link-blank {
    padding-right: 40px;
    background-size: 20px auto;
  }
  .BannerLink_imgArea {
    width: 110px;
    flex: 0 0 110px;
  }
  .BannerLink_title {
    font-size: 1rem;
    padding: 10px 0 10px 15px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

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