@charset "UTF-8";
:root {
  --header-h: 64px;
  --header: 64;
  --spc-20: 80px;
  --spc-10: 48px;
  --spc-8: 64px;
  --spc-comn: 32px;
  --spc-6: 40px;
  --spc-5: 32px;
  --spc-4: 32px;
  --spc-3: 24px;
  --spc-2: 16px;
  --spc-1: 8px;
  --8px: 0.5rem;
  --10px: 0.625rem;
  --11px: 0.6875rem;
  --12px: 0.75rem;
  --13px: 0.8125rem;
  --14px: 0.875rem;
  --14px: 0.9375rem;
  --16px: 1rem;
  --18px: 1.125rem;
  --20px: 1.25rem;
  --24px: 1.5rem;
  --28px: 1.75rem;
  --fs-body: var(--13px);
  --fs-body-s: var(--11px);
  --fs-h2: var(--18px);
}
@media screen and (min-width: 940px) {
  :root {
    --header-h: 110px;
    --header: 160;
  }
}
@media screen and (min-width: 769px) {
  :root {
    --spc-20: 160px;
    --spc-13: 104px;
    --spc-10: 80px;
    --spc-8: 64px;
    --spc-comn: 3.5rem;
    --spc-6: 48px;
    --spc-5: 40px;
    --spc-4: 32px;
    --spc-3: 24px;
    --spc-2: 16px;
    --fs-body: var(--16px);
    --fs-body-s: var(--14px);
    --fs-h2: var(--28px);
    --comn-duration: .3s;
  }
}

.admin-bar {
  --adminbar-h: 32px;
}
@media screen and (max-width: 600px) {
  .admin-bar {
    --adminbar-h: 0px;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/* common */
html {
  --body-bg:#F5F5F5;
  background-color: var(--body-bg);
  color: #444444;
  overflow-y: scroll;
  font-size: 16px;
}

body {
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fs-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: url(../images/body_bg.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: "Noto Serif JP", serif;
}

main {
  padding-top: var(--header-h);
}

main + * {
  --mt: var(--spc-20);
  margin-top: var(--mt);
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media screen and (min-width: 940px) {
  .headerResp {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }
}

.Button.pc {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .Button.pc {
    display: flex !important;
  }
}

/* ArticleArea */
.ArticleArea > * + * {
  margin-top: var(--spc-comn);
}

.ArticleArea__content {
  --mt: var(--spc-5);
  background-color: #ffffff;
  padding: 32px 20px;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .ArticleArea__content {
    padding: var(--spc-comn);
  }
}
.ArticleArea__content > * + * {
  margin-top: var(--mt);
}
.ArticleArea__content .wp-block-group:not(.ColumnArea) .wp-block-group__inner-container:not(.ColumnArea) > * + * {
  margin-top: var(--mt);
}
.ArticleArea__content h2 {
  --mt: var(--spc-10);
  font-family: "Noto Serif JP", serif;
  font-size: var(--20px);
  line-height: 1.5;
  font-weight: bold;
  color: #493A0A;
  padding-bottom: 24px;
  background-image: url(../images/deco_part_rhombus.svg), url(../images/deco_part_rhombus_angleL.svg), url(../images/deco_part_rhombus_angleR.svg), linear-gradient(to right, #E5DBB9 48%, transparent 48%, transparent 52%, #E5DBB9 52%);
  background-repeat: no-repeat;
  background-position: bottom center, bottom 1px left, bottom 1px right, bottom 3px center;
  background-size: auto, auto, auto, calc(100% - 50px) 1px;
}
@media screen and (min-width: 769px) {
  .ArticleArea__content h2 {
    font-size: var(--28px);
  }
}
.ArticleArea__content h3 {
  --mt: var(--spc-10);
  font-family: "Noto Serif JP", serif;
  font-size: var(--18px);
  line-height: 1.5;
  font-weight: bold;
  color: #493A0A;
  padding-bottom: 18px;
  background-image: url(../images/deco_part_rhombus.svg), linear-gradient(to right, transparent 0, #EEEEEE 0);
  background-repeat: no-repeat;
  background-size: auto, calc(100% - 13px) 1px;
  background-position: bottom left, bottom 3px right;
}
@media screen and (min-width: 769px) {
  .ArticleArea__content h3 {
    font-size: var(--24px);
  }
}
.ArticleArea__content h4 {
  --mt: var(--spc-6);
  font-size: var(--16px);
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: #EEEEEE solid 1px;
  padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .ArticleArea__content h4 {
    font-size: var(--18px);
  }
}
.ArticleArea__content h2 + *, .ArticleArea__content h3 + * {
  --mt: var(--spc-3);
}
.ArticleArea__content h4 + * {
  --mt: var(--spc-2);
}
.ArticleArea__content ul, .ArticleArea__content ol {
  padding-left: 1em;
}
.ArticleArea__content a {
  color: #687CE4;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .ArticleArea__content a:hover {
    text-decoration: none;
  }
}
.ArticleArea__content a:hover img {
  transition: filter 0.1s;
}
@media screen and (min-width: 769px) {
  .ArticleArea__content a:hover img {
    filter: brightness(0.9);
  }
}
.ArticleArea__content a[target=_blank] {
  font-weight: bold;
}
.ArticleArea__content a[target=_blank]::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_external.svg);
  background-repeat: no-repeat;
  margin-left: 8px;
}
.ArticleArea__content a[target=_blank]:has(img)::after {
  content: none;
}
.ArticleArea__content mark {
  font-weight: bold;
  background-color: var(--mark-color) !important;
}
.ArticleArea__content mark.has-text-highlight-color {
  --mark-color: #F5F3DB;
}
.ArticleArea__content strong {
  font-weight: bold;
}
.ArticleArea__content blockquote {
  background-color: #F7F7F7;
  padding: 16px;
}
@media screen and (min-width: 769px) {
  .ArticleArea__content blockquote {
    padding: 24px;
  }
}
.ArticleArea__content table {
  border-collapse: collapse;
  border: #EEEEEE solid 1px;
  width: 100%;
  font-size: var(--14px);
}
.ArticleArea__content table th, .ArticleArea__content table td {
  border-color: #EEEEEE;
  --bg-color: #ffffff;
  background-color: var(--bg-color);
  padding: 14px;
}
.ArticleArea__content table tr:nth-child(even) th, .ArticleArea__content table tr:nth-child(even) td {
  --bg-color:#F7F7F7;
}
.ArticleArea__content .has-small-font-size {
  --wp--preset--font-size--small: var(--14px);
  font-size: var(--wp--preset--font-size--small);
}
.ArticleArea__content .has-text-align-center {
  text-align: center;
}
.ArticleArea__content .wp-block-buttons {
  display: flex;
}
.ArticleArea__content .wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
.ArticleArea__content .wp-block-button {
  border: none;
  background-color: transparent;
  margin: 0px;
  padding: 0px;
}
.ArticleArea__content .wp-block-button__link {
  --grad-color-A: #CBAB35;
  --grad-color-B: #ffecab;
  --border-color-A: #938249;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px 9px;
  margin: 0px 14px;
  width: 244px;
  height: 50px;
  border-radius: 0px;
  font-size: 1em;
  position: relative;
  color: #444444;
  background: linear-gradient(0deg, var(--grad-color-A), var(--grad-color-B));
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0px 0px 3px #ffffff;
  transition: filter 0.2s;
}
@media screen and (min-width: 769px) {
  .ArticleArea__content .wp-block-button__link:hover {
    filter: brightness(1.1);
  }
}
.ArticleArea__content .wp-block-button__link::before, .ArticleArea__content .wp-block-button__link::after {
  content: "";
  display: block;
  width: 28px;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0px;
  background: linear-gradient(0deg, var(--grad-color-A), var(--grad-color-B));
}
.ArticleArea__content .wp-block-button__link::before {
  left: -28px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.ArticleArea__content .wp-block-button__link::after {
  right: -28px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.ArticleArea__content .wp-block-embed iframe {
  width: 100%;
}
.ArticleArea__content figure.wp-block-embed.is-type-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.ArticleArea__copy {
  padding: 16px 0px;
}
.ArticleArea__copy + * {
  --mt:16px;
}

#toc_container a {
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 769px) {
  #toc_container a:hover {
    text-decoration: underline;
  }
}

.toc_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F7F7F7;
  font-size: var(--14px);
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 4px;
}
.toc_title::after {
  content: "▼";
  font-size: var(--10px);
  color: #444444;
}
@media screen and (min-width: 769px) {
  .toc_title {
    cursor: pointer;
  }
}
.toc_title.-active {
  border-radius: 4px 4px 0px 0px;
}
.toc_title.-active + .toc_list {
  display: block;
}

.toc_list {
  display: none;
  border: #EEEEEE solid 1px;
  padding: 16px calc(16px + 1em) !important;
  border-radius: 0px 0px 4px 4px;
  border-top: none;
  font-weight: bold;
  list-style-type: none;
}
@media screen and (min-width: 769px) {
  .toc_list {
    padding: 24px calc(32px + 1em) !important;
  }
}
.toc_list > * + * {
  margin-top: 0.2em;
}
.toc_list > li {
  margin-top: 0.5em;
}
.toc_list li > ul li {
  list-style-type: none;
  font-weight: normal;
}

.toc_toggle {
  font-size: var(--10px);
}
@media screen and (min-width: 769px) {
  .toc_toggle a:hover {
    text-decoration: none !important;
  }
}

.toc_brackets {
  display: none;
}

.ArticleArea__buttonOuter.-spCenter {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .ArticleArea__buttonOuter.-spCenter {
    text-align: left;
  }
}

/* ArticleCard */
.ArticleCard {
  position: relative;
}
.ArticleCard .ButtonList {
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .ArticleCard:not(:has(.Button)):hover .ArticleCard__thumbnail {
    filter: brightness(0.9);
  }
  .ArticleCard:not(:has(.Button)):hover .ArticleCard__title a {
    text-decoration: underline;
  }
}

.ArticleCard.-large .ArticleCard__label.-hasBg {
  padding: 20px 20px 32px 20px;
}
@media screen and (min-width: 769px) {
  .ArticleCard.-large .ArticleCard__label.-hasBg {
    padding: var(--spc-4);
  }
}
.ArticleCard.-large .ArticleCard__title {
  font-size: var(--18px);
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .ArticleCard.-large .ArticleCard__title {
    font-size: var(--20px);
  }
}

.ArticleCard.-medium .ArticleCard__label.-hasBg {
  padding: 12px 12px 20px;
}
@media screen and (min-width: 769px) {
  .ArticleCard.-medium .ArticleCard__label.-hasBg {
    padding: 24px;
  }
}
.ArticleCard.-medium .ArticleCard__title {
  font-size: var(--12px);
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .ArticleCard.-medium .ArticleCard__title {
    font-size: var(--16px);
  }
}

.ArticleCard.-small .ArticleCard__label.-hasBg {
  padding: 12px;
}
@media screen and (min-width: 769px) {
  .ArticleCard.-small .ArticleCard__label.-hasBg {
    padding: 16px;
  }
}
.ArticleCard.-small .ArticleCard__title {
  font-size: var(--12px);
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .ArticleCard.-small .ArticleCard__title {
    font-size: var(--14px);
  }
}

.ArticleCard.-holizontal {
  display: flex;
}
.ArticleCard.-holizontal .ArticleCard__thumbnail {
  flex-basis: 50%;
}
.ArticleCard.-holizontal .ArticleCard__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ArticleCard.-holizontal .ArticleCard__label {
  flex-basis: 50%;
}
.ArticleCard.-holizontal.-large {
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .ArticleCard.-holizontal.-large {
    flex-direction: row;
  }
}
.ArticleCard.-holizontal.-large .ArticleCard__thumbnail {
  flex-basis: 60%;
}
.ArticleCard.-holizontal.-large .ArticleCard__label {
  flex-basis: 40%;
}

.ArticleCard__thumbnail {
  width: 100%;
  transition: filter 0.1s;
}
.ArticleCard__thumbnail img {
  aspect-ratio: 8/5;
  width: 100%;
}

.ArticleCard__label {
  margin-top: 8px;
}
.ArticleCard__label > * + * {
  margin-top: 1em;
}
.ArticleCard__label.-hasBg {
  background-color: #ffffff;
  margin: 0px;
  padding: 12px;
}
@media screen and (min-width: 769px) {
  .ArticleCard__label.-hasBg {
    padding: 24px;
  }
}

.ArticleCard__title {
  font-family: "Noto Serif JP", serif;
  font-size: var(--12px);
  font-weight: bold;
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  .ArticleCard__title {
    font-size: var(--16px);
  }
}
.ArticleCard__title.-small {
  font-size: var(--14px);
}
.ArticleCard__title a {
  text-decoration: none;
}
.ArticleCard__title a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
}

.ArticleCard__desc {
  font-size: var(--14px);
  line-height: 2.2;
}

/* ArticleList */
.ArticleList {
  --spc: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spc);
}
@media screen and (min-width: 769px) {
  .ArticleList {
    --spc: 40px;
  }
}

.ArticleList.-hasSubContent {
  display: block;
}
@media screen and (min-width: 769px) {
  .ArticleList.-hasSubContent .ArticleCard {
    float: left;
    width: 57%;
  }
}
.ArticleList.-hasSubContent .ArticleCard:nth-child(n+2) {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .ArticleList.-hasSubContent .ArticleCard:nth-child(n+2) {
    margin-top: 0px;
    float: right;
    width: 37%;
  }
}
.ArticleList.-hasSubContent .ArticleCard:nth-child(n+3) {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .ArticleList.-hasSubContent .ArticleCard:nth-child(n+3) {
    margin-top: var(--spc-3);
  }
}
.ArticleList.-hasSubContent::after {
  content: "";
  display: block;
  clear: both;
}
.ArticleList.-hasSubContent .PageSection__link {
  float: right;
  width: 37%;
  margin-top: var(--spc-3);
  text-align: right;
}

.ArticleList__subItems {
  flex-basis: 400px;
}

.ArticleList.-col2 > * {
  flex-basis: calc(50% - var(--spc) / 2);
}

.ArticleList.-col3 > * {
  flex-basis: calc(50% - var(--spc) / 2);
}
@media screen and (min-width: 769px) {
  .ArticleList.-col3 > * {
    flex-basis: calc(33.33% - var(--spc) / 3 * 2);
  }
}

.ArticleList.-col4 > * {
  flex-basis: calc(50% - var(--spc) / 2);
}
@media screen and (min-width: 769px) {
  .ArticleList.-col4 > * {
    flex-basis: calc(25% - var(--spc) / 4 * 3);
  }
}

/* pagination */
.pagination {
  margin-top: var(--spc-5);
}

.screen-reader-text {
  display: none;
}

ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: var(--11px);
  font-weight: 500;
  list-style-type: none;
}
ul.page-numbers a {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  ul.page-numbers a:hover {
    color: #2744d8;
    background-color: #F7F7F7;
  }
}
ul.page-numbers a, ul.page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 32px;
  background-color: #ffffff;
  border: #EEEEEE solid 1px;
  transition: color 0.1s, background-color 0.1s;
  color: #687CE4;
}
ul.page-numbers a.current, ul.page-numbers span.current {
  background-color: #EEEEEE;
}

/* ArticleSlider */
.ArticleSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0px;
}
@media screen and (min-width: 769px) {
  .ArticleSlider {
    margin-top: var(--spc-13);
    padding: 10px 0px;
  }
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  width: 100%;
  height: auto;
}

.swiper-slide-active .ArticleSlider__item {
  border: #222222 solid 10px;
}
@media screen and (min-width: 769px) {
  .swiper-slide-active .ArticleSlider__item {
    margin: -10px;
  }
}

.swiper-slide {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .swiper-slide {
    width: 620px;
  }
}

.ArticleSlider__item {
  display: flex;
  flex-direction: column;
  transition: border var(--comn-duration);
  box-sizing: content-box;
  height: 100%;
}
.ArticleSlider__item .ArticleCard__label {
  height: 100%;
}

.ArticleSlider__nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  width: 680px;
  top: 34%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .ArticleSlider__nav {
    display: flex;
  }
}

.ArticleSlider__button {
  background-color: transparent;
  border: none;
  transition: filter 0.1s;
}
@media screen and (min-width: 769px) {
  .ArticleSlider__button:hover {
    filter: brightness(1.1);
  }
}

.ArticleSlider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .ArticleSlider__pagination {
    display: none;
  }
}
.ArticleSlider__pagination .swiper-pagination-bullet {
  display: block;
  opacity: 1;
  width: 12px;
  height: 12px;
  border: #CCCCCC solid 1px;
  background-color: #ffffff;
}
.ArticleSlider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #222222;
  border-color: #222222;
}

/* AuthorCard */
.AuthorCard {
  --mt: var(--spc-comn);
  display: flex;
  align-items: flex-start;
  gap: var(--spc-4);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .AuthorCard {
    align-items: center;
  }
}

.AuthorCard__textUnit > * + * {
  margin-top: 12px;
}

.AuthorCard__name {
  font-weight: bold;
  font-size: var(--12px);
}
@media screen and (min-width: 769px) {
  .AuthorCard__name {
    font-size: var(--16px);
  }
}
@media screen and (min-width: 769px) {
  .AuthorCard__name a:hover {
    text-decoration: none;
  }
}

.AuthorCard__desc {
  font-size: var(--fs-body-s);
  color: #777777;
}

.AuthorCard__avatar {
  flex-shrink: 0;
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .AuthorCard__avatar {
    width: 100px;
    height: 100px;
  }
}

/* YoutubeBanner */
.YoutubeBanner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px;
  background-color: #222222;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .YoutubeBanner {
    padding: var(--spc-3);
    justify-content: space-between;
    gap: 3%;
  }
}

.YoutubeBanner__figure {
  display: flex;
  flex-shrink: 0.5;
}

.YoutubeBanner__textUnit {
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  flex-grow: 1;
}

.YoutubeBanner__title {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  gap: 1em;
  font-size: var(--12px);
  text-align: left;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .YoutubeBanner__title {
    font-size: var(--16px);
    flex-direction: row;
    align-items: center;
  }
}
.YoutubeBanner__title a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.YoutubeBanner__logo {
  max-width: 88px;
}
@media screen and (min-width: 769px) {
  .YoutubeBanner__logo {
    max-width: none;
  }
}

.YoutubeBanner__desc {
  color: #E5DBB9;
  font-size: var(--13px);
}

/* Button */
.Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.2s;
  border: none;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .Button:hover {
    filter: brightness(1.1);
  }
}

.Button.-hexagon {
  --ratio: 6/1;
  --maxw: 300px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #444444;
  font-weight: bold;
  text-shadow: 0px 0px 3px #ffffff;
  max-width: var(--maxw);
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  color: #3C3206;
  font-weight: 500;
  text-shadow: 0px 0px 3px #ffffff;
  aspect-ratio: var(--ratio);
  font-size: var(--14px);
}
.Button.-hexagon.-primary {
  background-image: url("../images/button_bg_common_medium.svg");
}
.Button.-hexagon.-primary.-large {
  background-image: url("../images/button_bg_common_large.svg");
}
.Button.-hexagon.-primary.-small {
  background-image: url("../images/button_bg_common_small.svg");
}
.Button.-hexagon.-black {
  color: #ffffff;
  text-shadow: none;
}
.Button.-hexagon.-black.-small {
  --maxw: 154px;
  --ratio:	77/17;
  background-image: url("../images/button_bg_common_small_black.svg");
}
.Button.-hexagon.-large {
  --ratio:8/1;
  --maxw: 400px;
}
.Button.-hexagon.-small {
  --ratio: 121/17;
  --maxw: 242px;
  font-size: var(--12px);
}

.Button.-borderHex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #3C3206;
  font-size: var(--12px);
  font-weight: 500;
  text-shadow: 0px 0px 3px #ffffff;
  aspect-ratio: 81/20;
}
.Button.-borderHex.-large {
  width: 100%;
  max-width: 328px;
  aspect-ratio: 41/5;
}
.Button.-borderHex.-primary {
  background-image: url(../images/button_bg_gold.svg);
}
.Button.-borderHex.-primary.-large {
  background-image: url(../images/button_bg_gold_large.svg);
}
.Button.-borderHex.-secondary {
  background-image: url(../images/button_bg_white.svg);
}

/* ButtonList */
.ButtonList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style-type: none;
  align-items: center;
}

.ButtonList.-spc2 {
  gap: 16px;
}

.ButtonList__item img {
  transition: opacity 0.2s;
}
@media screen and (min-width: 769px) {
  .ButtonList__item:hover img {
    opacity: 0.8;
  }
}

/* Breadcrumb */
.Breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
  color: #777777;
}

.Breadcrumb__item {
  display: flex;
  align-items: center;
  list-style-type: none;
  font-size: var(--11px);
}
@media screen and (min-width: 769px) {
  .Breadcrumb__item {
    font-size: var(--12px);
  }
}
.Breadcrumb__item:not(:first-child)::before {
  content: "›";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0.5em;
}
.Breadcrumb__item a {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .Breadcrumb__item a:hover {
    text-decoration: underline;
  }
}

/* CategoryButton */
.CategoryButton {
  display: flex;
  align-items: center;
  padding: 4px 6px;
  border: #EEEEEE solid 1px;
  background-color: #ffffff;
  color: #687CE4;
  font-size: var(--10px);
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.1s, background-color 0.1s;
}
@media screen and (min-width: 769px) {
  .CategoryButton {
    font-size: var(--11px);
  }
}
@media screen and (min-width: 769px) {
  .CategoryButton:hover {
    color: #2744d8;
    background-color: #F7F7F7;
  }
}
.CategoryButton.-hasArrow::before {
  content: "▼";
  color: #444444;
  font-size: var(--8px);
  margin-right: 0.5em;
}

/* Chatting */
.Chatting {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.Chatting__avatar {
  overflow: hidden;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .Chatting__avatar {
    width: 60px;
    height: 60px;
  }
}

.Chatting__speechBubble {
  --border-color: #EEEEEE;
  position: relative;
  padding: 12px 16px;
  border: var(--border-color) solid 2px;
  border-radius: 16px;
}
@media screen and (min-width: 769px) {
  .Chatting__speechBubble {
    padding: 16px 24px;
  }
}
.Chatting__speechBubble::before, .Chatting__speechBubble::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 16px;
}
.Chatting__speechBubble::before {
  background: var(--border-color);
  z-index: 1;
}
.Chatting__speechBubble::after {
  background: #ffffff;
  z-index: 2;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.Chatting__speechBubble:first-child {
  margin-right: 10px;
}
.Chatting__speechBubble:first-child::before, .Chatting__speechBubble:first-child::after {
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.Chatting__speechBubble:first-child::before {
  right: -14px;
}
.Chatting__speechBubble:first-child::after {
  right: -10px;
}

.Chatting__speechBubble:last-child {
  margin-left: 10px;
}
.Chatting__speechBubble:last-child::before, .Chatting__speechBubble:last-child::after {
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.Chatting__speechBubble:last-child::before {
  left: -14px;
}
.Chatting__speechBubble:last-child::after {
  left: -10px;
}

/* CTASection */
.CTASection {
  background-color: #687CE4;
  background-image: url(../images/cta_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  padding: 40px 0px;
}
@media screen and (min-width: 769px) {
  .CTASection {
    padding: 64px 0px;
  }
}
.CTASection > * + * {
  margin-top: 32px;
}

.CTASection__inner {
  border: rgba(255, 255, 255, 0.4) solid 1px;
  background-image: url(../images/cta_inner_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 32px 24px;
}
@media screen and (min-width: 769px) {
  .CTASection__inner {
    padding: 48px;
  }
}
.CTASection__inner > * + * {
  margin-top: 24px;
}

.CTASection__title {
  --spc-x: 7px;
  font-size: var(--fs-h2);
  padding-bottom: var(--spc-x);
  background-image: url(../images/deco_part_rhombus_white.svg), url(../images/deco_part_rhombus_angleL_white.svg), url(../images/deco_part_rhombus_angleR_white.svg), linear-gradient(to right, rgba(255, 255, 255, 0.4) 48%, transparent 48%, transparent 52%, rgba(255, 255, 255, 0.4) 52%);
  background-repeat: no-repeat;
  background-position: bottom center, bottom 1px left, bottom 1px right, bottom 3px center;
  background-size: auto, auto, auto, calc(100% - 50px) 1px;
}
.CTASection__title::before {
  content: "";
  display: block;
  margin-bottom: var(--spc-x);
  height: 6px;
  width: 100%;
  background-image: url(../images/deco_part_rhombus_white.svg), url(../images/deco_part_rhombus_angleL_white.svg), url(../images/deco_part_rhombus_angleR_white.svg), linear-gradient(to right, rgba(255, 255, 255, 0.4) 48%, transparent 48%, transparent 52%, rgba(255, 255, 255, 0.4) 52%);
  background-repeat: no-repeat;
  background-position: bottom center, bottom 1px left, bottom 1px right, bottom 3px center;
  background-size: auto, auto, auto, calc(100% - 50px) 1px;
}

.CTASection__desc {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: var(--14px);
  text-align: left;
}
@media screen and (min-width: 769px) {
  .CTASection__desc {
    font-size: var(--15px);
    text-align: center;
  }
}

.CTASection__copy {
  color: #E5DFC9;
  background-color: rgba(0, 0, 0, 0.34);
  border: rgba(255, 255, 255, 0.3) solid 1px;
  padding: 0.5em;
  font-size: var(--12px);
}

/* ColumnArea */
.ColumnArea.-blue {
  --title-color: #ffffff;
  --type-color: #687CE4;
}
.ColumnArea.-gray {
  --title-color: #444444;
  --type-color: #EEEEEE;
}
.ColumnArea.-hasBg {
  --bg-color: #ffffff;
}
.ColumnArea.-hasBg .ColumnArea__body {
  border: none;
  background-color: var(--bg-color);
}
.ColumnArea.-pdLarge .ColumnArea__body {
  padding: 32px 20px;
}
@media screen and (min-width: 769px) {
  .ColumnArea.-pdLarge .ColumnArea__body {
    padding: 40px;
  }
}

.ColumnArea__title {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  font-weight: bold;
  color: var(--title-color);
  background-color: var(--type-color);
  margin-left: 8px;
  padding: 8px 11px;
  border-radius: 4px 4px 0px 0px;
}

.ColumnArea__body {
  border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  border-color: var(--type-color);
  padding: 16px;
}
@media screen and (min-width: 769px) {
  .ColumnArea__body {
    padding: 24px;
  }
}
.ColumnArea__body > * + * {
  margin-top: var(--spc-4);
}

.ColumnArea__thumbnail {
  border-radius: 8px;
  overflow: hidden;
}

.ColumnArea__heading {
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

.ColumnArea__desc {
  font-size: var(--11px);
}
@media screen and (min-width: 769px) {
  .ColumnArea__desc {
    font-size: var(--14px);
  }
}

/* Container */
.Container {
  width: 94%;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.Container.-large {
  --maxw: 67.5rem;
}

.Container.-medium {
  --maxw: 55rem;
}

@media screen and (min-width: 769px) {
  .Container__inner {
    padding-left: var(--spc-comn);
    padding-right: var(--spc-comn);
  }
}

/* Date */
.Date {
  flex-shrink: 0;
  align-self: flex-start;
  font-size: var(--10px);
  font-weight: 200;
}
@media screen and (min-width: 769px) {
  .Date {
    font-size: var(--12px);
  }
}

/* DownloadArea */
.DownloadArea {
  display: none;
  margin-top: 0px;
}
.DownloadArea > * + * {
  margin-top: 40px;
}

/* FormItem */
.FormItem {
  position: relative;
  font-size: var(--14px);
}
.FormItem > * + * {
  margin-top: 10px;
}
.FormItem + .FormItem {
  margin-top: var(--spc-3);
}
@media screen and (min-width: 769px) {
  .FormItem + .FormItem {
    margin-top: var(--spc-4);
  }
}

.FormItem__label {
  font-weight: bold;
  color: #493A0A;
  font-size: var(--13px);
}
@media screen and (min-width: 769px) {
  .FormItem__label {
    font-size: var(--14px);
  }
}

.FormItem__link {
  color: #687CE4;
}
@media screen and (min-width: 769px) {
  .FormItem__link:hover {
    text-decoration: none;
  }
}

.wpcf7-form-control:not(.wpcf7-acceptance):not(.wpcf7-submit) {
  padding: 1em;
  display: block;
  width: 100%;
  border: #EEEEEE solid 1px;
  max-width: 420px;
}

textarea.wpcf7-form-control:not(.wpcf7-acceptance):not(.wpcf7-submit) {
  resize: vertical;
  max-width: none;
  height: 200px;
}

input.wpcf7-form-control {
  height: 50px;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0px;
}

.ArticleArea__content .FormItem a[target=_blank] {
  font-weight: normal;
  color: #687CE4;
}
.ArticleArea__content .FormItem a[target=_blank]::after {
  content: none;
}

.FormItem .wpcf7-spinner {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0px;
}

.wpcf7-list-item-label a {
  color: #687CE4;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .wpcf7-list-item-label a:hover {
    text-decoration: none;
  }
}

/* GallerySlider */
.GallerySlider__pagination {
  display: block;
  position: static;
}
.GallerySlider__pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: 12px;
  border: #E5DBB9 solid 1px;
  background-color: #ffffff;
}
.GallerySlider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E5DBB9;
}

/* Grid */
.Grid {
  display: flex;
}

.Grid.-resp {
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .Grid.-resp {
    flex-direction: row;
  }
}

.Grid.-contentCenter {
  justify-content: center;
}

.Grid.-alignCenter {
  align-items: center;
}

.Grid.-wrap {
  flex-wrap: wrap;
}

.Grid.-spc1 {
  gap: var(--spc-1);
}

.Grid.-spc2 {
  gap: var(--spc-2);
}

.Grid.-spc3 {
  gap: var(--spc-3);
}
.Grid.-spc3.-respSpc {
  gap: var(--spc-2);
}
@media screen and (min-width: 769px) {
  .Grid.-spc3.-respSpc {
    gap: var(--spc-3);
  }
}

.Grid__item {
  --mt: var(--spc-2);
}
.Grid__item > * + * {
  margin-top: var(--mt);
}
.Grid__item.-thumbnail {
  flex-shrink: 0;
}

/* Logo */
.Logo {
  flex-shrink: 0.5;
}
.Logo svg {
  max-width: 100%;
  transition: fill 0.1s;
  fill: #E5DFC9;
}
@media screen and (min-width: 769px) {
  .Logo a:hover svg {
    fill: #ffffff;
  }
}

@media screen and (min-width: 940px) {
  .Logo__sp {
    display: none;
  }
}

.SiteHeader.-opened .Logo__sp {
  display: none;
}
.SiteHeader.-opened .Logo__pc {
  display: block;
}

.Logo__pc {
  display: none;
}
@media screen and (min-width: 940px) {
  .Logo__pc {
    display: block;
  }
}

/* PageBody */
.PageBody {
  display: flex;
  gap: var(--spc-5) 6.6%;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .PageBody {
    flex-direction: row;
  }
}

.PageBody__content {
  width: 100%;
  overflow: hidden;
}

.PageBody__desc {
  font-size: var(--13px);
}
@media screen and (min-width: 769px) {
  .PageBody__desc {
    font-size: var(--14px);
  }
}

/* PageHeader */
.PageHeader {
  --mt: 16px;
  margin-top: var(--spc-4);
}
@media screen and (min-width: 769px) {
  .PageHeader {
    margin-top: var(--spc-13);
  }
}
.PageHeader > * + * {
  margin-top: var(--mt);
}
.PageHeader + * {
  margin-top: var(--spc-10);
}

.PageHeader__title {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fs-h2);
  font-weight: bold;
  color: #493A0A;
  text-align: center;
  padding-bottom: 24px;
  background-image: url(../images/deco_part_rhombus.svg), url(../images/deco_part_rhombus_angleL.svg), url(../images/deco_part_rhombus_angleR.svg), linear-gradient(to right, #E5DBB9 48%, transparent 48%, transparent 52%, #E5DBB9 52%);
  background-repeat: no-repeat;
  background-position: bottom center, bottom 1px left, bottom 1px right, bottom 3px center;
  background-size: auto, auto, auto, calc(100% - 48px) 1px;
}
@media screen and (min-width: 769px) {
  .PageHeader__title {
    background-position: bottom center, bottom 1px left calc(25% - 22px), bottom 1px right calc(25% - 22px), bottom 3px center;
    background-size: auto, auto, auto, 50% 1px;
  }
}

.PageHeader__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spc-2);
}

/* PageSection */
.PageSection:first-child {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .PageSection:first-child {
    margin-top: var(--spc-8);
  }
}
.PageSection:not(:first-child) {
  margin-top: var(--spc-5);
}
@media screen and (min-width: 769px) {
  .PageSection:not(:first-child) {
    margin-top: var(--spc-10);
  }
}
.PageSection > * + * {
  margin-top: var(--spc-5);
}

.PageSection.-hasPd {
  margin-top: 0px;
  padding: var(--spc-4) 0px;
}
@media screen and (min-width: 769px) {
  .PageSection.-hasPd {
    padding: var(--spc-8) 0px;
  }
}

.PageSection__title {
  font-size: var(--24px);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  text-align: center;
  background-image: url(../images/deco_part_rhombus_angleL.svg), url(../images/deco_part_rhombus_angleR.svg), linear-gradient(to right, #E5DBB9 48%, transparent 48%, transparent 52%, #E5DBB9 52%);
  background-repeat: no-repeat;
  background-position: center left, center right, center;
  background-size: auto, auto, calc(100% - 48px) 1px;
}
.PageSection__title span {
  background-color: var(--body-bg);
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.PageSection__title.-normal {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--14px);
  background: none;
  text-align: left;
}
.PageSection__title.-normal + * {
  margin-top: var(--16px);
}

.PageSection__link {
  text-align: center;
  font-size: var(--14px);
}
.PageSection__link a {
  color: #687CE4;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .PageSection__link a:hover {
    text-decoration: none;
  }
}

/* Sidebar */
.Sidebar {
  display: none;
  flex-shrink: 0;
  width: 200px;
}
@media screen and (min-width: 769px) {
  .Sidebar {
    display: block;
  }
}

.Sidebar__title {
  font-size: var(--14px);
  font-family: "Noto Sans JP", sans-serif;
}
.Sidebar__title:not(:first-child) {
  margin-top: var(--spc-10);
}

.Sidebar__content {
  margin-top: var(--spc-3);
}
.Sidebar__content > * + * {
  margin-top: var(--spc-3);
}

/* SiteFooter */
.SiteFooter {
  color: #ffffff;
  background-color: #222222;
  padding: var(--spc-5) 6px;
}
@media screen and (min-width: 769px) {
  .SiteFooter {
    padding: var(--spc-8);
  }
}

.SiteFooter__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .SiteFooter__wrapper {
    justify-content: space-between;
    flex-direction: row;
  }
}

.SiteFooter__logo {
  flex-basis: 100%;
}
@media screen and (min-width: 769px) {
  .SiteFooter__logo {
    flex-basis: auto;
  }
}

.SiteFooter__snsUnit {
  flex-basis: calc(50% - 12px);
  justify-content: flex-end;
}
@media screen and (min-width: 769px) {
  .SiteFooter__snsUnit {
    justify-content: stretch;
    flex-basis: auto;
  }
}

.SiteFooter__menu {
  display: flex;
  align-items: center;
  flex-basis: calc(50% - 12px);
}
@media screen and (min-width: 769px) {
  .SiteFooter__menu {
    flex-basis: auto;
    margin-top: var(--spc-5);
  }
}

.SiteFooter__menuList {
  list-style-type: none;
}
.SiteFooter__menuList:not(.-secondary) > * + * {
  margin-top: 0.3em;
}
@media screen and (min-width: 769px) {
  .SiteFooter__menuList {
    display: flex;
    justify-content: space-between;
  }
}
.SiteFooter__menuList .SiteFooter__menuList {
  display: block;
  padding-left: 1em;
}
@media screen and (min-width: 769px) {
  .SiteFooter__menuList .SiteFooter__menuList {
    padding-left: 0em;
  }
}
.SiteFooter__menuList.-secondary {
  display: none;
}
@media screen and (min-width: 769px) {
  .SiteFooter__menuList.-secondary {
    display: flex;
    justify-content: flex-start;
    gap: 0.5em;
  }
}
.SiteFooter__menuList.-secondary .SiteFooter__menuListItem {
  --type-color: #AAAAAA;
  display: flex;
  align-items: center;
  color: var(--type-color);
}
.SiteFooter__menuList.-secondary .SiteFooter__menuListItem:not(:first-child)::before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: var(--type-color);
  margin-right: 0.5em;
}

.SiteFooter__menuListItem {
  font-size: var(--12px);
  text-decoration: none;
  font-weight: 500;
}
.SiteFooter__menuListItem a {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .SiteFooter__menuListItem a:hover {
    text-decoration: underline;
  }
}

.SiteFooter__info {
  display: flex;
  gap: var(--spc-3);
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .SiteFooter__info {
    align-items: center;
    flex-direction: row;
  }
}

.SiteFooter__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spc-1);
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .SiteFooter__buttons {
    margin-left: auto;
    justify-content: flex-end;
  }
}

.SiteFooter__bottomUnit {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: #444444 solid 1px;
  margin-top: var(--spc-5);
  padding-top: var(--spc-2);
}
@media screen and (min-width: 769px) {
  .SiteFooter__bottomUnit {
    justify-content: space-between;
  }
}

.SiteFooter__copyright {
  display: block;
  font-size: var(--12px);
  color: #AAAAAA;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .SiteFooter__copyright {
    color: #ffffff;
    text-align: left;
  }
}

/* SiteHeader */
.SiteHeader {
  position: fixed;
  z-index: 100;
  top: var(--adminbar-h);
  left: 0px;
  width: 100%;
  overflow: auto;
}
@media screen and (min-width: 940px) {
  .SiteHeader {
    overflow: visible;
  }
}
@media screen and (min-width: 940px) {
  .SiteHeader.-scroll .SiteHeader__menu.-primary {
    height: 90px;
    padding: 12px 50px;
  }
}
.SiteHeader.-opened {
  height: 100%;
}
@media screen and (min-width: 940px) {
  .SiteHeader.-opened {
    height: auto;
  }
}
.SiteHeader.-opened .SiteHeader__menu.-primary .SiteHeader__menuList {
  display: none;
}
@media screen and (min-width: 940px) {
  .SiteHeader.-opened .SiteHeader__menu.-primary .SiteHeader__menuList {
    display: flex;
  }
}
.SiteHeader.-opened .SiteHeader__menu.-secondary {
  display: flex;
}
@media screen and (min-width: 940px) {
  .SiteHeader.-opened .SiteHeader__menu.-secondary {
    display: flex;
  }
}
.SiteHeader.-opened .SiteHeader__menu .SiteHeader__logo svg {
  width: 162px;
  height: auto;
}
@media screen and (min-width: 940px) {
  .SiteHeader.-opened .SiteHeader__menu .SiteHeader__logo svg {
    width: auto;
    height: auto;
  }
}

.SiteHeader__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.SiteHeader__menuUnit {
  display: none;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menuUnit {
    display: flex;
    gap: var(--spc-1);
  }
}

.SiteHeader__logo {
  flex-shrink: 0;
}

.SiteHeader__buttons {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  margin-top: 24px;
  gap: 24px;
}
@media screen and (min-width: 940px) {
  .SiteHeader__buttons {
    display: none;
  }
}

.SiteHeader__menuList {
  list-style-type: none;
  display: flex;
}

.SiteHeader__menuListItem {
  display: flex;
  --bar-siz: 0.8em;
  --bar-color: #ffffff;
  --bar-spc: 0.5em;
}
.SiteHeader__menuListItem:not(:first-child) {
  padding-left: 0.5em;
}
.SiteHeader__menuListItem:not(:first-child)::before {
  content: "";
  display: block;
  align-self: center;
  width: 1px;
  height: var(--bar-siz);
  background-color: var(--bar-color);
  margin-right: var(--bar-spc);
}
.SiteHeader__menuListItem.-spMenu {
  display: flex;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menuListItem.-spMenu {
    display: none;
  }
}
.SiteHeader__menuListItem .SiteHeader__menuList .SiteHeader__menuListItem::before {
  content: none;
}

.SiteHeader__link {
  font-size: var(--10px);
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.1s;
}
@media screen and (min-width: 769px) {
  .SiteHeader__link {
    font-size: var(--12px);
  }
}
.SiteHeader__link.-primary {
  --hover-color: #ffffff;
  font-weight: 600;
  color: #E5DBB9;
}
@media screen and (min-width: 769px) {
  .SiteHeader__link:hover {
    color: var(--hover-color);
  }
}

.SiteHeader__menuButton {
  display: block;
  width: 26px;
  height: 15px;
  background-color: transparent;
  position: relative;
  border: none;
  font-size: 0;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menuButton {
    display: none;
  }
}

.SiteHeader__menuButtonBar {
  display: block;
  height: 1px;
  background-color: #E5DFC9;
}
.SiteHeader__menuButtonBar::before, .SiteHeader__menuButtonBar::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #E5DFC9;
  position: absolute;
}
.SiteHeader__menuButtonBar::before {
  width: 100%;
  top: 0px;
}
.SiteHeader__menuButtonBar::after {
  width: 18px;
  bottom: 0px;
}

.SiteHeader__menu {
  background-color: var(--bg-color);
  color: var(--text-color);
}
.SiteHeader__menu.-primary {
  --bg-color: #222222;
  --text-color: #ffffff;
  --hover-color: #E5DBB9;
  height: var(--header-h);
  padding: 18px 16px;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-primary {
    padding: 24px 50px;
    height: 110px;
    transition: height var(--comn-duration), padding var(--comn-duration);
  }
}
.SiteHeader__menu.-primary .SiteHeader__menuList {
  align-items: center;
}
.SiteHeader__menu.-primary .SiteHeader__menuList .SiteHeader__menuListItem.-current .SiteHeader__link {
  color: #E5DBB9;
  text-decoration: underline;
}
.SiteHeader__menu.-secondary {
  --bg-color: #222222;
  --text-color: #ffffff;
  --hover-color: #687CE4;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0px;
  position: absolute;
  width: 100%;
  z-index: 10;
  top: var(--header-h);
  left: 0px;
  padding: 0px 10px 24px;
  overflow: auto;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-secondary {
    --bg-color: #ffffff;
    --text-color: #444444;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    top: calc(100% - 24px);
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
    padding: 0px 6px 0px 24px;
  }
}
.SiteHeader__menu.-secondary .SiteHeader__menuList {
  flex-direction: column;
  gap: 0px 24px;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuList {
    flex-direction: row;
    gap: 0px 1.96vw;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1226px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuList {
    gap: 0px 24px;
  }
}
.SiteHeader__menu.-secondary .SiteHeader__menuListItem {
  --bar-siz: 24px;
  --bar-color: #E5DBB9;
  --bar-spc: 24px;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuListItem {
    flex-direction: row;
  }
}
.SiteHeader__menu.-secondary .SiteHeader__menuListItem:not(:first-child) {
  padding-left: 0;
}
.SiteHeader__menu.-secondary .SiteHeader__menuListItem:not(:first-child)::before {
  content: none;
  --bar-spc:24px;
  width: 1px;
  height: var(--bar-siz);
  margin-top: 0px;
  margin-bottom: 0px;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuListItem:not(:first-child)::before {
    content: "";
  }
}
.SiteHeader__menu.-secondary .SiteHeader__menuListItem.-current {
  position: relative;
}
.SiteHeader__menu.-secondary .SiteHeader__menuListItem.-current::after {
  content: none;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 3px;
  background-color: #CBAB35;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuListItem.-current::after {
    content: "";
  }
}
.SiteHeader__menu.-secondary .SiteHeader__menuListItem .SiteHeader__menuList .SiteHeader__menuListItem {
  border-bottom: solid #555555 1px;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuListItem .SiteHeader__menuList .SiteHeader__menuListItem {
    border-bottom: none;
  }
}
.SiteHeader__menu.-secondary .SiteHeader__menuListItem .SiteHeader__menuList .SiteHeader__menuListItem::before {
  content: none;
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuListItem .SiteHeader__menuList .SiteHeader__menuListItem::before {
    content: none;
  }
}
.SiteHeader__menu.-secondary .SiteHeader__menuListItem .SiteHeader__link {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  font-size: var(--10px);
}
@media screen and (min-width: 940px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuListItem .SiteHeader__link {
    min-height: 50px;
    font-size: 0.98vw;
  }
}
@media screen and (min-width: 1226px) {
  .SiteHeader__menu.-secondary .SiteHeader__menuListItem .SiteHeader__link {
    font-size: var(--12px);
  }
}

.SiteHeader .SearchForm {
  width: 100%;
}
@media screen and (min-width: 940px) {
  .SiteHeader .SearchForm {
    width: 240px;
  }
}

.SiteHeader__search {
  order: -1;
}
@media screen and (min-width: 940px) {
  .SiteHeader__search {
    order: unset;
  }
}

/* SearchForm */
.SearchForm {
  display: flex;
  width: 240px;
  height: 36px;
  font-size: var(--12px);
  min-width: 120px;
}

.SearchForm__item {
  padding: 0px 8px;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #F7F7F7;
}
.SearchForm__item.-field {
  flex-grow: 1;
  width: calc(100% - 20px);
}
.SearchForm__item[type=submit] {
  flex-shrink: 0;
}/*# sourceMappingURL=style.css.map */