@charset "UTF-8";
/* =======================================
	このCSSファイルはSassにて生成されています。
	This file is created by Sass Files.
=========================================*/
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

/* ---------------------------------------
	Basic Settings
-----------------------------------------*/
html {
  font-family: var(--font-roboto);
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
@media screen and (width > 768px) {
  html {
    scroll-padding-top: 80px;
  }
}
@media screen and (width <= 768px) {
  html {
    scroll-padding-top: 60px;
  }
}
html body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-family: var(--font-roboto);
  background-color: var(--cl-bg);
  color: var(--cl-text);
  line-height: 1.5;
  display: grid;
  grid-template: "header" auto "contents" 1fr "footer" auto/1fr;
  min-height: 100dvh;
}
@media screen and (width > 768px) {
  html body {
    font-size: 18px;
    font-size: 0.9375vw;
  }
}
@media screen and (width <= 768px) {
  html body {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
html body img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}
html body a {
  color: var(--cl-link);
  text-decoration: none;
  word-break: break-all;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
html body a:hover, html body a:link, html body a:visited, html body a:active {
  text-decoration: none;
}
@media (any-hover: hover) {
  html body a:hover {
    color: var(--cl-link-hover);
    opacity: var(--opacity);
  }
}
@media screen and (width <= 768px) {
  html body .pc-only {
    display: none;
  }
}
@media screen and (width > 768px) {
  html body .sp-only {
    display: none;
  }
}
html body .d-inline-block {
  display: inline-block;
}
html body .cl-primary {
  color: var(--cl-primary);
}
html body .cl-secondary {
  color: var(--cl-secondary);
}
html body .cl-accent {
  color: var(--cl-accent);
}
html body .cl-gray {
  color: var(--cl-gray);
}
html body .bg-primary {
  background-color: var(--cl-primary);
  color: var(--cl-white);
}
html body .bg-secondary {
  background-color: var(--cl-secondary);
}
html body .bg-accent {
  background-color: var(--cl-accent);
  color: var(--cl-white);
}
html body .bg-border {
  background-color: var(--cl-border);
}

:root {
  --cl-primary: #645745;
  --cl-secondary: #efefee;
  --cl-accent: #e6000a;
  --cl-border: #c8c8c8;
  --cl-bg: #fff;
  --cl-text: #000;
  --cl-link: #000;
  --cl-link-hover: #645745;
  --cl-gray: #c2bdb2;
  --cl-white: #fff;
  --font-awesome: "Font Awesome 6 Free";
  --font-eb-garamond: "EB Garamond", serif;
  --font-roboto: "Roboto", sans-serif;
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --scale: 1.1;
  --trim-leading: calc((1em - 1lh) / 2);
  --transition: 0.3s ease-in-out;
  --opacity: 0.8;
}

/* ---------------------------------------
	Header
-----------------------------------------*/
.l-header {
  grid-area: header;
  background-color: var(--cl-white);
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.l-header__wrapper {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .l-header__wrapper {
    width: calc(100% - 2rem);
    max-width: 87.5rem;
    height: 80px;
  }
}
@media screen and (width <= 768px) {
  .l-header__wrapper {
    width: 100%;
    max-width: calc(100% - 8.2051282051vw);
    height: 15.3846153846vw;
  }
}
.l-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (width > 768px) {
  .l-header__logo {
    width: 6.25vw;
  }
}
@media screen and (width <= 768px) {
  .l-header__logo {
    width: 25.641025641vw;
  }
}
.l-header__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (any-hover: hover) {
  .l-header__logo img:hover {
    opacity: var(--opacity);
  }
}
.l-header__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .l-header__navi {
    gap: 4.1666666667vw;
    margin-left: auto;
  }
}
@media screen and (width <= 768px) {
  .l-header__navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16.4102564103vw;
    background-color: color-mix(in srgb, var(--cl-white) 90%, transparent);
    position: fixed;
    top: 15.3846153846vw;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    width: 80%;
    height: calc(100svh - 15.3846153846vw);
    padding: 4.1025641026vw;
    z-index: 1;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}
@media screen and (width > 768px) {
  .l-header__navi .menu-item {
    font-size: 24px;
    font-size: 1.25vw;
  }
}
@media screen and (width <= 768px) {
  .l-header__navi .menu-item {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.l-header__navi .menu-item a {
  position: relative;
  color: var(--cl-primary);
}
@media (any-hover: hover) {
  .l-header__navi .menu-item a:hover {
    -webkit-animation: leftToRight 0.5s ease-in-out;
            animation: leftToRight 0.5s ease-in-out;
  }
  .l-header__navi .menu-item a:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--cl-primary);
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-animation: leftToRight 0.5s ease-in-out;
            animation: leftToRight 0.5s ease-in-out;
  }
}
.l-header__navi .menu-item.current-menu-item a {
  position: relative;
}
.l-header__navi .menu-item.current-menu-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--cl-primary);
  position: absolute;
  bottom: -4px;
  left: 0;
}
@-webkit-keyframes leftToRight {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes leftToRight {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@media screen and (width <= 768px) {
  .l-header__navi.is_active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.l-header__navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .l-header__navi-list {
    gap: 2.0833333333vw;
  }
}
@media screen and (width <= 768px) {
  .l-header__navi-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.1538461538vw;
  }
}
.l-header__language-navi {
  color: var(--cl-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .l-header__language-navi {
    gap: 0.4166666667vw;
  }
}
@media screen and (width <= 768px) {
  .l-header__language-navi {
    gap: 2.0512820513vw;
  }
}
@media screen and (width > 768px) {
  .l-header__language-navi .menu-item {
    font-size: 18px;
    font-size: 0.9375vw;
  }
}
@media screen and (width <= 768px) {
  .l-header__language-navi .menu-item {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.l-header__language-navi .menu-item:not(:last-child)::after {
  content: "/";
}
@media screen and (width > 768px) {
  .l-header__language-navi .menu-item:not(:last-child)::after {
    margin-left: 0.4166666667vw;
  }
}
@media screen and (width <= 768px) {
  .l-header__language-navi .menu-item:not(:last-child)::after {
    margin-left: 2.0512820513vw;
  }
}
.l-header__language-navi .menu-item.current-lang a {
  color: var(--cl-gray);
}
@media screen and (width > 768px) {
  .l-header__sp-navi {
    display: none;
  }
}
@media screen and (width <= 768px) {
  .l-header__sp-navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    position: fixed;
    top: 0;
    right: 0;
    width: 15.3846153846vw;
    height: 15.3846153846vw;
    background-color: var(--cl-primary);
    color: var(--cl-white);
    z-index: 1;
  }
}
.l-header__sp-navi i {
  font-size: 24px;
  font-size: 6.1538461538vw;
}
.l-header__sp-navi .-text {
  font-size: 12px;
  font-size: 3.0769230769vw;
}
.l-header__sp-navi {
  cursor: pointer;
}
.l-header.is_sticked {
  background-color: color-mix(in srgb, var(--cl-white) 95%, transparent);
}

/* ---------------------------------------
	Main
-----------------------------------------*/
.l-main {
  grid-area: contents;
}

/* ---------------------------------------
	Footer
-----------------------------------------*/
.l-footer {
  grid-area: footer;
  background-color: #555655;
}
.l-footer__wrapper {
  margin-inline: auto;
}
@media screen and (width > 768px) {
  .l-footer__wrapper {
    width: calc(100% - 2rem);
    max-width: 87.5rem;
    padding-block: 2.0833333333vw;
  }
}
@media screen and (width <= 768px) {
  .l-footer__wrapper {
    width: 100%;
    max-width: calc(100% - 8.2051282051vw);
    padding-block: 6.1538461538vw;
  }
}
.l-footer__navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width > 768px) {
  .l-footer__navi-list {
    gap: 2.5vw;
    font-size: 0.9375vw;
  }
}
@media screen and (width <= 768px) {
  .l-footer__navi-list {
    gap: 6.1538461538vw;
    font-size: 3.0769230769vw;
  }
}
.l-footer__navi-list li a {
  color: var(--cl-white);
}
@media (any-hover: hover) {
  .l-footer__navi-list li a:hover {
    color: var(--cl-secondary);
  }
}
.l-footer__copyright {
  color: var(--cl-white);
  text-align: right;
}
@media screen and (width > 768px) {
  .l-footer__copyright {
    font-size: 18px;
    font-size: 0.9375vw;
  }
}
@media screen and (width <= 768px) {
  .l-footer__copyright {
    font-size: 12px;
    font-size: 3.0769230769vw;
    text-align: center;
  }
}

/* ---------------------------------------
	Button
-----------------------------------------*/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  text-decoration: none;
  border-style: solid;
}
@media screen and (width > 768px) {
  .btn {
    font-size: 30px;
    font-size: 1.5625vw;
    border-width: 0.1041666667vw;
    padding: 0.8333333333vw 3.3333333333vw;
  }
}
@media screen and (width <= 768px) {
  .btn {
    font-size: 18px;
    font-size: 4.6153846154vw;
    border-width: 0.5128205128vw;
    padding: 2.0512820513vw 8.2051282051vw;
  }
}
.btn--accent {
  background-color: var(--cl-accent);
  color: var(--cl-white);
  border-color: var(--cl-accent);
}
@media (any-hover: hover) {
  .btn--accent:hover {
    background-color: var(--cl-white);
    color: var(--cl-accent);
  }
}
.btn--arrow::after {
  content: "";
  display: inline-block;
  background-image: url("../images/components/btn_arrow_off.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (width > 768px) {
  .btn--arrow::after {
    width: 2.5vw;
    height: 2.5vw;
    margin-left: 0.8333333333vw;
  }
}
@media screen and (width <= 768px) {
  .btn--arrow::after {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    margin-left: 4.1025641026vw;
  }
}
@media (any-hover: hover) {
  .btn--arrow:hover::after {
    background-image: url("../images/components/btn_arrow_on.png");
  }
}

/* ---------------------------------------
	ブロックエディタ用スタイル
-----------------------------------------*/
@media screen and (width > 768px) {
  .blocks-styles-wrapper {
    font-size: 0.9375vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper {
    font-size: 4.1025641026vw;
  }
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper .wp-block-heading {
    margin-bottom: 1.25vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper .wp-block-heading {
    margin-bottom: 4.1025641026vw;
  }
}
.blocks-styles-wrapper h1 {
  color: var(--cl-primary);
  text-align: center;
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper h1 {
    font-size: 48px;
    font-size: 2.5vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper h1 {
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}
.blocks-styles-wrapper h2 {
  background-color: var(--cl-secondary);
  color: var(--cl-primary);
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper h2 {
    font-size: 40px;
    font-size: 2.0833333333vw;
    padding: 0.4166666667vw 0.8333333333vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper h2 {
    font-size: 24px;
    font-size: 6.1538461538vw;
    padding: 2.0512820513vw;
  }
}
.blocks-styles-wrapper h3 {
  background-color: color-mix(in srgb, var(--cl-primary) 80%, var(--cl-white));
  color: var(--cl-white);
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper h3 {
    font-size: 32px;
    font-size: 1.6666666667vw;
    padding: 0.4166666667vw 0.8333333333vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper h3 {
    font-size: 20px;
    font-size: 5.1282051282vw;
    padding: 2.0512820513vw 4.1025641026vw;
  }
}
.blocks-styles-wrapper h4 {
  color: var(--cl-primary);
  border-bottom: 1px solid var(--cl-primary);
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper h4 {
    font-size: 32px;
    font-size: 1.6666666667vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper h4 {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.blocks-styles-wrapper h5 {
  color: var(--cl-primary);
  border-bottom: 1px solid var(--cl-primary);
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper h5 {
    font-size: 24px;
    font-size: 1.25vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper h5 {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.blocks-styles-wrapper h6 {
  color: var(--cl-primary);
  border-bottom: 1px solid var(--cl-primary);
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper h6 {
    font-size: 20px;
    font-size: 1.0416666667vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper h6 {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper .wp-block-paragraph {
    font-size: 0.9375vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper .wp-block-paragraph {
    font-size: 3.5897435897vw;
  }
}
.blocks-styles-wrapper a {
  color: var(--cl-primary);
  text-decoration: underline !important;
}
@media (any-hover: hover) {
  .blocks-styles-wrapper a:hover {
    text-decoration: none !important;
  }
}
.blocks-styles-wrapper ul li::before {
  content: "-";
  display: inline-block;
  color: var(--cl-primary);
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper ul li::before {
    margin-right: 0.4166666667vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper ul li::before {
    margin-right: 2.0512820513vw;
  }
}
@media screen and (width > 768px) {
  .blocks-styles-wrapper .wp-block-image img {
    max-width: 46.875vw;
  }
}
@media screen and (width <= 768px) {
  .blocks-styles-wrapper .wp-block-image img {
    max-width: 100%;
  }
}
.blocks-styles-wrapper .wp-block-image img figcaption {
  display: block;
  text-align: center;
}
.blocks-styles-wrapper .wp-block-image figcaption {
  display: block;
}
.blocks-styles-wrapper .wp-block-columns {
  gap: 16px;
}
.blocks-styles-wrapper .wp-block-embed.wp-embed-aspect-16-9 iframe {
  aspect-ratio: 16/9;
}
.blocks-styles-wrapper .wp-block-embed.wp-embed-aspect-4-3 iframe {
  aspect-ratio: 4/3;
}
.blocks-styles-wrapper .wp-block-calendar table th {
  background-color: var(--cl-secondary);
  color: var(--cl-primary);
}
.blocks-styles-wrapper .alignright {
  float: right;
  margin-left: 16px;
}
.blocks-styles-wrapper .alignleft {
  float: left;
  margin-right: 16px;
}
.blocks-styles-wrapper .aligncenter {
  text-align: center;
}

/* ---------------------------------------
	Breadcrumbs
-----------------------------------------*/
.breadcrumbs {
  width: calc(100% - 32px);
  margin-inline: auto;
  text-align: right;
  color: var(--cl-primary);
}
@media screen and (width > 768px) {
  .breadcrumbs {
    max-width: 87.5rem;
    padding-block: 2.0833333333vw;
    font-size: 0.8333333333vw;
  }
}
@media screen and (width <= 768px) {
  .breadcrumbs {
    max-width: calc(100% - 8.2051282051vw);
    padding-block: 6.1538461538vw;
    font-size: 3.5897435897vw;
  }
}
.breadcrumbs > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.breadcrumbs a {
  color: var(--cl-gray);
}
@media (any-hover: hover) {
  .breadcrumbs a:hover {
    color: var(--cl-primary);
  }
}

/* ---------------------------------------
	Section
-----------------------------------------*/
.section__head {
  position: relative;
}
.section__heading {
  text-align: center;
}
@media screen and (width > 768px) {
  .section__heading {
    margin-bottom: 5.2083333333vw;
  }
}
@media screen and (width <= 768px) {
  .section__heading {
    margin-bottom: 10.2564102564vw;
  }
}
.section__heading .-bg {
  font-family: var(--font-eb-garamond);
  font-style: italic;
  color: var(--cl-secondary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (width > 768px) {
  .section__heading .-bg {
    font-size: 150px;
    font-size: 7.8125vw;
  }
}
@media screen and (width <= 768px) {
  .section__heading .-bg {
    font-size: 64px;
    font-size: 16.4102564103vw;
  }
}
.section__heading .-text {
  color: var(--cl-primary);
  z-index: 1;
}
@media screen and (width > 768px) {
  .section__heading .-text {
    font-size: 48px;
    font-size: 2.5vw;
  }
}
@media screen and (width <= 768px) {
  .section__heading .-text {
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}

/* ---------------------------------------
	News Card
-----------------------------------------*/
.news-card {
  border-bottom: 1px solid var(--cl-border);
}
.news-card:first-of-type {
  border-top: 1px solid var(--cl-border);
}
@media screen and (width > 768px) {
  .news-card__wrapper {
    padding: 2.0833333333vw 3.75vw;
  }
}
@media screen and (width <= 768px) {
  .news-card__wrapper {
    padding: 6.1538461538vw 6.1538461538vw;
  }
}
.news-card__date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (width > 768px) {
  .news-card__date-wrapper {
    gap: 0.4166666667vw;
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (width <= 768px) {
  .news-card__date-wrapper {
    gap: 2.0512820513vw;
    margin-bottom: 4.1025641026vw;
  }
}
.news-card__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--cl-primary);
}
@media screen and (width > 768px) {
  .news-card__date {
    font-size: 24px;
    font-size: 1.25vw;
  }
}
@media screen and (width <= 768px) {
  .news-card__date {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.news-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width > 768px) {
  .news-card__category {
    gap: 0.4166666667vw;
  }
}
@media screen and (width <= 768px) {
  .news-card__category {
    gap: 2.0512820513vw;
  }
}
.news-card__category li {
  background-color: var(--cl-primary);
  color: var(--cl-white);
}
@media screen and (width > 768px) {
  .news-card__category li {
    font-size: 16px;
    font-size: 0.8333333333vw;
    padding: 0.1041666667vw 0.4166666667vw;
  }
}
@media screen and (width <= 768px) {
  .news-card__category li {
    font-size: 14px;
    font-size: 3.5897435897vw;
    padding: 0.5128205128vw 2.0512820513vw;
  }
}
@media screen and (width > 768px) {
  .news-card__title {
    font-size: 24px;
    font-size: 1.25vw;
  }
}
@media screen and (width <= 768px) {
  .news-card__title {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.news-card__title a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

/* ---------------------------------------
	ページネーション用スタイル
-----------------------------------------*/
@media screen and (width > 768px) {
  .theme-pagination {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (width <= 768px) {
  .theme-pagination {
    margin-top: 6.1538461538vw;
  }
}
.theme-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width > 768px) {
  .theme-pagination .nav-links {
    font-size: 1.25vw;
    gap: 0.8333333333vw;
  }
}
@media screen and (width <= 768px) {
  .theme-pagination .nav-links {
    font-size: 4.1025641026vw;
    gap: 2.0512820513vw;
  }
}
.theme-pagination .nav-links .page-numbers {
  color: var(--cl-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width > 768px) {
  .theme-pagination .nav-links .page-numbers {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width <= 768px) {
  .theme-pagination .nav-links .page-numbers {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
  }
}
.theme-pagination .nav-links .page-numbers.prev, .theme-pagination .nav-links .page-numbers.next {
  width: auto;
  height: auto;
}
.theme-pagination .nav-links .page-numbers.current {
  background-color: var(--cl-primary);
  color: var(--cl-white);
}

/* ---------------------------------------
	JS_fadeIn
----------------------------------------*/
.js-scroll-fade-bg {
  overflow: hidden;
  opacity: 0;
}
.js-scroll-fade-bg.is_animation {
  -webkit-animation: imgScale 1.2s ease-out forwards;
          animation: imgScale 1.2s ease-out forwards;
}
@-webkit-keyframes imgScale {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes imgScale {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 100000;
  padding: 0.75em 1.5em;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
  -webkit-transition: top 0.2s ease;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 8px;
  outline: 2px solid #c00;
  outline-offset: 2px;
}

.l-main:focus {
  outline: none;
}/*# sourceMappingURL=style.css.map */