@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

[hidden] {
  display: none;
}

html {
  font-size: 16px;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 2;
  font-kerning: none;
  line-break: normal;
  overflow-wrap: break-word;
}

section, nav, article, aside, hgroup,
header, footer, figure, figcaption, details {
  display: block;
}

video, audio, canvas {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-feature-settings: "palt";
}

hr {
  color: inherit;
  height: auto;
  box-sizing: content-box;
}

li {
  list-style: none;
}

a:focus {
  outline: #595C68 thin dotted;
}

a:active {
  outline: #595C68 thin dotted;
}

strong, b {
  font-weight: bold;
}

small {
  font-size: 0.83em;
}

q {
  quotes: none;
}

abbr[title] {
  border-bottom: 1px dotted;
}

code, samp, kbd {
  font-family: monospace, sans-serif;
}

mark {
  color: black;
  background-color: yellow;
}

sub, sup {
  font-size: 0.5em;
  line-height: 0;
}

sub {
  vertical-align: 0px;
}

sup {
  vertical-align: 0.8em;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin-top: 0px;
}

a {
  color: inherit;
  text-decoration: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  text-align: left;
}

th, td {
  text-align: left;
  vertical-align: baseline;
}

fieldset {
  border: 0;
}

legend {
  border: 0;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: inherit;
}

input, button {
  line-height: normal;
  vertical-align: inherit;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

input[type=search]:focus {
  outline-offset: -2px;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  cursor: pointer;
}

select {
  background-color: inherit;
  line-height: normal;
}

textarea {
  vertical-align: top;
  overflow: auto;
}

html {
  font-size: 16px;
  line-height: 1.5;
  background-color: #ffffff;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #595C68;
  font-size: 13px;
  min-height: 100vh;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 0.875rem;
  }
}

main {
  flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

a:not([class]) {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  a:not([class]):hover {
    text-decoration: none;
  }
}

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

span.pc {
  display: none;
}
@media screen and (min-width: 769px) {
  span.pc {
    display: inline;
  }
}

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

:root {
  --fs_sectionTitle:0.875rem;
  --fs_sectionSubtitle:28px;
  --fs_page_title:1.5rem;
  --fs_h2:1.25rem;
  --spc_section:5rem;
  --spc_sectionBody:2.5rem;
  --spc_footer:7.5rem;
  --spc_8r:2.5rem;
}
@media screen and (min-width: 769px) {
  :root {
    --fs_sectionTitle:1rem;
    --fs_sectionSubtitle:2.25rem;
    --fs_page_title:2rem;
    --fs_h2:1.5rem;
    --spc_section:7.5rem;
    --spc_sectionBody:3.75rem;
    --spc_footer:10rem;
    --spc_8r:4rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ArticleArea {
  line-height: 2;
}
.ArticleArea > * + * {
  margin-top: 2.5rem;
}
.ArticleArea * + p {
  margin-top: 1.5em;
}
.ArticleArea h2 {
  font-size: var(--fs_h2);
  line-height: 1.5;
}
.ArticleArea h3, .ArticleArea h4 {
  font-size: 1rem;
}
.ArticleArea h2 + *, .ArticleArea h3 + *, .ArticleArea h4 + * {
  margin-top: 0.5em;
}
.ArticleArea figure img {
  border-radius: 10px;
}
.ArticleArea figcaption {
  color: #777777;
  margin-top: 0.5em;
  font-size: 0.75rem;
}
.ArticleArea .wp-block-media-text {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 1.5rem 4rem;
}
@media screen and (min-width: 769px) {
  .ArticleArea .wp-block-media-text {
    flex-direction: row;
  }
}
.ArticleArea .wp-block-media-text + .wp-block-media-text {
  margin-top: 4rem;
}
.ArticleArea .wp-block-media-text__media {
  text-align: center;
  flex-grow: 1;
  flex-basis: 40%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.ArticleArea .wp-block-media-text__content {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 50%;
  padding: 0px;
}
@media screen and (min-width: 769px) {
  .ArticleArea .wp-block-media-text__content {
    min-width: calc(50% - 32px);
  }
}
.ArticleArea .wp-block-media-text__content > * + * {
  margin-top: 1.5rem;
}
.ArticleArea .wp-block-media-text__content h2 + *, .ArticleArea .wp-block-media-text__content h3 + *, .ArticleArea .wp-block-media-text__content h4 + * {
  margin-top: 0.5em;
}

.PageHeader + .ArticleArea {
  margin-top: var(--spc_8r);
}

.ArticleCard {
  border-radius: 10px;
  padding: 2.5rem 1rem;
  color: #ffffff;
  font-weight: bold;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 769px) {
  .ArticleCard {
    padding: 80px 50px;
  }
}

.ArticleCard__content > * + * {
  margin-top: 1.5rem;
}

.ArticleCard__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}

.ArticleCard__body {
  flex-grow: 1;
  color: #595C68;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem 1rem;
}
@media screen and (min-width: 769px) {
  .ArticleCard__body {
    padding: 2.5rem;
  }
}

.ArticleCard__content.-left {
  text-align: left;
}

@media screen and (min-width: 769px) {
  .ArticleCard__content.-right {
    text-align: right;
  }
}

.ArticleList > * + * {
  margin-top: 3.75rem;
}

.ArticleList__title {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .ArticleList__title {
    font-size: 1.5rem;
  }
}
.ArticleList__title a {
  text-decoration: none;
  transition: opacity 0.2s;
}
@media screen and (min-width: 769px) {
  .ArticleList__title a:hover {
    opacity: 0.8;
  }
}
.ArticleList__title::before {
  content: "› ";
}

.ArticleList__date {
  font-size: 0.75rem;
  color: #777777;
  line-height: 1;
  margin-top: 8px;
}

.BorderList__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.875rem;
  border-top: #EDF1F9 solid 1px;
}
.BorderList__item:last-child {
  border-bottom: #EDF1F9 solid 1px;
}

.BorderList__heading {
  flex-grow: 1;
  flex-basis: 10em;
}
.BorderList__heading.-secondary {
  font-size: 0.75rem;
  color: #777777;
  margin-top: 0.2em;
}

.BorderList__body {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 20em;
}

.BorderList__wrapLink::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .BorderList__wrapLink:hover {
    text-decoration: underline;
  }
}

.Breadcrumb {
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
  gap: 0.5em;
  color: #777777;
  font-size: 0.75rem;
}

.Breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5em;
}
.Breadcrumb__item a {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .Breadcrumb__item a:hover {
    text-decoration: underline;
  }
}

.Button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  max-width: 200px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.875rem;
}
.Button span {
  position: relative;
  z-index: 10;
}

.Button.-fillGray {
  color: #595C68;
  transition: background-color 0.2s;
  background-color: #EDF1F9;
}
@media screen and (min-width: 769px) {
  .Button.-fillGray:hover {
    background-color: #dae2f3;
  }
}

.Button.-fillWhite {
  position: relative;
  color: #595C68;
  transition: color 0.2s;
}
@media screen and (min-width: 769px) {
  .Button.-fillWhite:hover {
    color: #ffffff;
  }
}
@media screen and (min-width: 769px) {
  .Button.-fillWhite:hover::before {
    opacity: 0;
  }
}
.Button.-fillWhite:before, .Button.-fillWhite:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s;
}
.Button.-fillWhite::before {
  z-index: 1;
  background-color: #ffffff;
}
.Button.-fillWhite::after {
  z-index: 0;
  background: linear-gradient(90deg, #39A4D1 0%, #095E9C 100%);
}

.Button.-left {
  margin-left: 0px;
}

.Button.-right {
  margin-left: 0px;
}
@media screen and (min-width: 769px) {
  .Button.-right {
    margin-left: auto;
    margin-right: 0px;
  }
}

.Button.-wAuto {
  width: -moz-fit-content;
  width: fit-content;
  max-width: none;
  padding: 0px 1.5rem;
}

.Contact {
  color: #ffffff;
  background-color: #333333;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-radius: 10px;
}
@media screen and (min-width: 769px) {
  .Contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.Contact__textBox {
  max-width: 800px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.Contact__foot {
  margin-top: 24px;
}

.Container {
  width: calc(100% - 48px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .Container {
    width: 84%;
  }
}

.Container.-large {
  max-width: 73.75rem;
}

.Container.-medium {
  max-width: 73.75rem;
}
@media screen and (min-width: 769px) {
  .Container.-medium {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.Container.-small {
  max-width: 50em;
}

@media screen and (min-width: 769px) {
  .Container.-resp {
    width: 100%;
  }
}

.Container.-full {
  width: calc(100% - 48px);
}

.Grid {
  display: flex;
}

.Grid.-resp {
  flex-wrap: wrap;
  justify-content: center;
}
.Grid.-resp .Grid__item {
  flex-basis: 0;
  flex-grow: 999;
  min-width: 20em;
}
.Grid.-resp .Grid__item.-w400 {
  flex-grow: 1;
  flex-basis: 100%;
  width: 100%;
  max-width: 400px;
  min-width: auto;
}

.Grid.-spc5 {
  gap: 2.5rem;
}

.HeroArea {
  position: relative;
  width: calc(100% - 16px);
  height: calc(100vh - 16px);
  margin: 8px;
}
@media screen and (min-width: 769px) {
  .HeroArea {
    width: calc(100% - 40px);
    margin: 20px 20px 0px 20px;
    height: 720px;
  }
}

.admin-bar .HeroArea {
  height: 688px;
}
@media screen and (max-width: 782px) {
  .admin-bar .HeroArea {
    height: calc(100vh - 46px);
  }
}

.HeroArea__slider {
  width: inherit;
  height: inherit;
}

.HeroArea__sliderItem {
  opacity: 0;
}
.HeroArea__sliderItem.-active {
  opacity: 1;
}

.HeroArea__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  border-radius: 10px;
}

.HeroArea__logo {
  position: absolute;
  width: 100%;
  max-width: 73.75rem;
  z-index: 10;
  left: 50%;
  bottom: 26%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
}
@media screen and (min-width: 769px) {
  .HeroArea__logo {
    width: calc(84% + 20px);
    padding-left: 50px;
    padding-right: 50px;
    bottom: 200px;
  }
}
.HeroArea__logo img {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.2));
}

.HeroArea__symbol {
  filter: drop-shadow(0px 0px 60px rgba(0, 0, 0, 0.86));
}

.HeroArea__copy {
  z-index: 2;
}

.HeroArea__arrow {
  position: absolute;
  width: calc(100% - 48px);
  max-width: 73.75rem;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .HeroArea__arrow {
    width: calc(84% + 20px);
    padding-left: 50px;
    padding-right: 50px;
  }
}

.LabelTable {
  font-size: 13px;
  color: #595C68;
  line-height: 2;
}
.LabelTable > * + * {
  margin-top: 24px;
}

.LabelTable__item {
  display: flex;
  gap: 8px 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  vertical-align: middle;
}

.LabelTable__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  background-color: #EDF1F9;
  text-align: center;
  border-radius: 4px;
}
@media screen and (min-width: 769px) {
  .LabelTable__label {
    width: 100px;
  }
}

.LabelTable__data {
  font-weight: normal;
  flex-grow: 999;
  min-width: 14em;
}
@media screen and (min-width: 769px) {
  .LabelTable__data {
    flex-basis: calc(100% - 124px);
  }
}

.Loading {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  background-color: #ffffff;
  transition: opacity 0.8s; /* loading要素全てを非表示 */
}
.Loading.-active {
  pointer-events: auto;
  opacity: 1;
}

.Loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 90px;
  opacity: 0;
  animation: fadeIn 0.3s forwards; /* loadingロゴのフェードイン */
  pointer-events: none;
}
.Loading__logo.-loaded {
  transition: all 1.5s; /* loadingロゴの移動 */
  margin-top: 0px;
  animation: fadeOut 0.6s forwards; /* loadingロゴのフェードアウト */
}

.PageBody {
  margin-top: var(--spc_sectionBody);
}

.PageHeader.-archive + .PageBody {
  margin-top: 6px;
}

.PageBody__wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 2.5rem 5rem;
}

.PageBody__content {
  flex-basis: 0;
  flex-grow: 999;
  min-width: calc(50% - 40px);
}
.PageBody__content > * + * {
  margin-top: 3rem;
}

.PageBody__thumbnail {
  text-align: center;
  flex-grow: 1;
  flex-basis: 40%;
  max-width: 400px;
}
.PageBody__thumbnail img {
  border-radius: 10px;
}

.PageFooter {
  margin-top: 80px;
}

.PageFooter__link {
  line-height: 1;
  font-size: 0.875rem;
  text-decoration: underline;
}
.PageFooter__link::before {
  content: "›";
  display: inline-block;
  margin-right: 0.5em;
}
@media screen and (min-width: 769px) {
  .PageFooter__link:hover {
    text-decoration: none;
  }
}

.PageHeader {
  margin-top: var(--spc_8r);
}

.PageBody .PageHeader {
  margin-top: 0px;
}

.PageHeader__sub {
  border-top: #EDF1F9 solid 1px;
  margin-top: 2.5rem;
  padding-top: 1rem;
}
@media screen and (min-width: 769px) {
  .PageHeader__sub {
    margin-top: var(--spc_8r);
    padding-top: 1.5rem;
  }
}

.PageHeader__title {
  font-size: var(--fs_page_title);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 4rem;
}

.PageBody .PageHeader__title {
  margin-top: 0px;
}

.PageHeader__date {
  font-size: 0.75rem;
  color: #777777;
  line-height: 1;
  margin-top: 0.5rem;
}

.PageSection {
  margin-top: var(--spc_section);
}

.PageSection__body {
  margin-top: var(--spc_sectionBody);
}

.PageSection__overlapBox {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 84%;
}
@media screen and (min-width: 769px) {
  .PageSection__overlapBox {
    width: 68.75%;
    margin-top: -80px;
    margin-right: 0px;
    padding: 60px 80px 0px 60px;
  }
}

.PageSection__imageText {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 769px) {
  .PageSection__imageText {
    flex-direction: row;
  }
}
@media screen and (min-width: 769px) {
  .PageSection__imageText > .PageSection__figure {
    margin-top: 0px;
  }
}
.PageSection__imageText.-posR {
  justify-content: flex-end;
}
@media screen and (min-width: 769px) {
  .PageSection__imageText.-posR .PageSection__figure {
    order: 2;
  }
}

.PageSection__textBox {
  margin-top: 2.5rem;
}
@media screen and (min-width: 769px) {
  .PageSection__textBox {
    margin-top: 0px;
    width: 84%;
    flex-basis: 600px;
  }
}
.PageSection__textBox .PageSection__figure + * {
  margin-top: 1.5rem;
}

.PageSection__figure {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.6s;
  flex-basis: 400px;
}
@media screen and (min-width: 769px) {
  .PageSection__figure {
    margin-left: 0px;
  }
}
@media screen and (min-width: 769px) {
  .PageSection__figure.-posR {
    margin-right: 0px;
  }
}
.PageSection__figure img {
  display: inline-flex;
  border-radius: 10px;
  width: 80%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .PageSection__figure img {
    width: 100%;
    aspect-ratio: auto;
  }
}

.PageSection.-active .PageSection__figure {
  opacity: 1;
  transform: translateY(0px);
}

.Stack.-spc1 > * + * {
  margin-top: 0.5rem;
}

.Stack.-spc5 > * + * {
  margin-top: 2.5rem;
}

.Stack.-articleList > * + * {
  margin-top: 3.75rem;
}

.SectionTitle {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  color: currentColor;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: var(--fs_sectionTitle);
  line-height: 1;
  font-weight: 600;
}
.SectionTitle[data-subtitle]::before {
  content: attr(data-subtitle);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: currentColor;
  font-size: var(--fs_sectionSubtitle);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.4em;
}
.SectionTitle.-animation {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.6s;
}

.SectionTitle.-gradients[data-subtitle]::before {
  background: linear-gradient(90deg, #39A4D1 0%, #095E9C 100%);
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 100%;
  background-position: left top;
}

.SectionTitle.-yellow[data-subtitle]::before {
  color: #DDF25C;
}

.SectionTitle.-black[data-subtitle]::before {
  color: #595C68;
}

.SectionTitle.-left {
  text-align: left;
  margin-left: 0px;
}
.SectionTitle.-left[data-subtitle]::before {
  margin-left: 0px;
}

.SectionTitle.-right {
  text-align: left;
  margin-right: auto;
  margin-left: 0px;
}
@media screen and (min-width: 769px) {
  .SectionTitle.-right {
    text-align: right;
    margin-left: auto;
    margin-right: 0px;
  }
}
.SectionTitle.-right[data-subtitle]::before {
  margin-left: 0px;
}
@media screen and (min-width: 769px) {
  .SectionTitle.-right[data-subtitle]::before {
    margin-left: auto;
    margin-right: 0px;
  }
}

.PageSection.-active .SectionTitle {
  opacity: 1;
  transform: translateY(0px);
}

.SiteFooter {
  margin-top: var(--spc_footer);
}

.SiteFooter__foot {
  background-color: #ffffff;
  padding-top: 40px;
  padding-bottom: 40px;
}
.SiteFooter__foot.-detail {
  background-color: #595C68;
}

.SiteFooter__copyright {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #999999;
}

.SiteHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 20px;
  width: calc(100% - 16px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
  padding: 16px 16px;
  border-radius: 10px;
  background-size: cover;
  background-position: top 14% left;
  background-image: url("../images/home_main_01.jpg");
}
@media screen and (min-width: 769px) {
  .SiteHeader {
    width: calc(100% - 100px);
    margin-top: 1.5rem;
    padding: 16px 24px;
  }
}

.home .SiteHeader {
  align-items: stretch;
  position: absolute;
  z-index: 1;
  top: 32px;
  left: 0px;
  width: 100%;
  margin-top: 0px;
  padding: 0px 24px;
  border-radius: 0px;
  background: none;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .home .SiteHeader {
    top: 50px;
    padding: 0px 50px;
  }
}
.home .SiteHeader__logo {
  width: 48px;
}
@media screen and (min-width: 769px) {
  .home .SiteHeader__logo {
    width: 80px;
  }
}
.home .SiteHeader__menuList {
  margin-top: 0.5em;
}
@media screen and (min-width: 769px) {
  .home .SiteHeader__menuList {
    margin-top: 0px;
  }
}

.admin-bar.home .SiteHeader {
  top: 82px;
}
@media screen and (max-width: 782px) {
  .admin-bar.home .SiteHeader {
    top: 78px;
  }
}

.SiteHeader__menuList {
  display: flex;
  color: #ffffff;
  font-weight: bold;
  font-size: 13px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 769px) {
  .SiteHeader__menuList {
    gap: 0;
    font-size: 14px;
  }
}

.SiteHeader__menuItem {
  position: relative;
}
.SiteHeader__menuItem:not(:last-child)::after {
  content: "/";
  margin: 0px 0.5em;
}
@media screen and (min-width: 769px) {
  .SiteHeader__menuItem:not(:last-child)::after {
    margin: 0px 1em;
  }
}
.SiteHeader__menuItem a {
  text-decoration: none;
}

.SiteHeader__logo {
  width: 60px;
}
@media screen and (min-width: 769px) {
  .SiteHeader__logo {
    width: 80px;
  }
}
.SiteHeader__logo a {
  transition: opacity 0.2s;
}
@media screen and (min-width: 769px) {
  .SiteHeader__logo a:hover {
    opacity: 0.8;
  }
}
.SiteHeader__logo img {
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.08));
}/*# sourceMappingURL=base.css.map */