/* Common Style */
/* Variables */
:root {
  /* Font Family */
  --global--font-primary: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
  --global--font-secondary: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
  /* Font Size */
  --global--font-size-base: 1.25rem;
  --global--font-size-xs: 1rem;
  --global--font-size-sm: 1.125rem;
  --global--font-size-md: 1.25rem;
  --global--font-size-lg: 1.5rem;
  --global--font-size-xl: 2.25rem;
  --global--font-size-xxl: 4rem;
  --global--font-size-xxxl: 5rem;
  --global--font-size-page-title: var(--global--font-size-xxl);
  --global--letter-spacing: normal;
  /* Line Height */
  --global--line-height-body: 1.7;
  --global--line-height-heading: 1.3;
  --global--line-height-page-title: 1.1;
  /* Headings */
  --heading--font-family: var(--global--font-primary);
  --heading--font-size-h6: var(--global--font-size-xs);
  --heading--font-size-h5: var(--global--font-size-sm);
  --heading--font-size-h4: var(--global--font-size-lg);
  --heading--font-size-h3: calc(1.25 * var(--global--font-size-lg));
  --heading--font-size-h2: var(--global--font-size-xl);
  --heading--font-size-h1: var(--global--font-size-page-title);
  --heading--letter-spacing-h6: .05em;
  --heading--letter-spacing-h5: .05em;
  --heading--letter-spacing-h4: var(--global--letter-spacing);
  --heading--letter-spacing-h3: var(--global--letter-spacing);
  --heading--letter-spacing-h2: var(--global--letter-spacing);
  --heading--letter-spacing-h1: var(--global--letter-spacing);
  --heading--line-height-h6: var(--global--line-height-heading);
  --heading--line-height-h5: var(--global--line-height-heading);
  --heading--line-height-h4: var(--global--line-height-heading);
  --heading--line-height-h3: var(--global--line-height-heading);
  --heading--line-height-h2: var(--global--line-height-heading);
  --heading--line-height-h1: var(--global--line-height-page-title);
  --heading--font-weight: normal;
  --heading--font-weight-page-title: 300;
  --heading--font-weight-strong: 600;
  /* Block: Latest posts */
  --latest-posts--title-font-family: var(--heading--font-family);
  --latest-posts--title-font-size: var(--heading--font-size-h3);
  --latest-posts--description-font-family: var(--global--font-secondary);
  --latest-posts--description-font-size: var(--global--font-size-sm);
  --list--font-family: var(--global--font-secondary);
  --definition-term--font-family: var(--global--font-primary);
  /* Colors */
  --global--color-black: #000;
  --global--color-dark-gray: #28303d;
  --global--color-gray: #39414d;
  --global--color-light-gray: #f0f0f0;
  --global--color-green: #d1e4dd;
  --global--color-blue: #d1dfe4;
  --global--color-purple: #d1d1e4;
  --global--color-red: #e4d1d1;
  --global--color-orange: #e4dad1;
  --global--color-yellow: #eeeadd;
  --global--color-white: #fff;
  --global--color-white-50: rgba(255, 255, 255, .5);
  --global--color-white-90: rgba(255, 255, 255, .9);
  --global--color-primary: var(--global--color-dark-gray);
  /* Body text color, site title, footer text color. */
  --global--color-secondary: var(--global--color-gray);
  /* Headings */
  --global--color-primary-hover: var(--global--color-primary);
  --global--color-background: var(--global--color-green);
  /* Mint, default body background */
  --global--color-border: var(--global--color-primary);
  /* Used for borders (separators) */
  /* Spacing */
  --global--spacing-unit: 20px;
  --global--spacing-measure: unset;
  --global--spacing-horizontal: 25px;
  --global--spacing-vertical: 30px;
  /* Elevation */
  --global--elevation: 1px 1px 3px 0 rgba(0, 0, 0, .2);
  /* Forms */
  --form--font-family: var(--global--font-secondary);
  --form--font-size: var(--global--font-size-sm);
  --form--line-height: var(--global--line-height-body);
  --form--color-text: var(--global--color-dark-gray);
  --form--color-ranged: var(--global--color-secondary);
  --form--label-weight: 500;
  --form--border-color: var(--global--color-secondary);
  --form--border-width: 3px;
  --form--border-radius: 0;
  --form--spacing-unit: calc(.5 * var(--global--spacing-unit));
  /* Cover block */
  --cover--height: calc(15 * var(--global--spacing-vertical));
  --cover--color-foreground: var(--global--color-white);
  --cover--color-background: var(--global--color-black);
  /* Buttons */
  --button--color-text: var(--global--color-background);
  --button--color-text-hover: var(--global--color-secondary);
  --button--color-text-active: var(--global--color-secondary);
  --button--color-background: var(--global--color-secondary);
  --button--color-background-active: var(--global--color-background);
  --button--font-family: var(--global--font-primary);
  --button--font-size: var(--global--font-size-base);
  --button--font-weight: 500;
  --button--line-height: 1.5;
  --button--border-width: 3px;
  --button--border-radius: 0;
  --button--padding-vertical: 15px;
  --button--padding-horizontal: calc(2 * var(--button--padding-vertical));
  /* entry */
  --entry-header--color: var(--global--color-primary);
  --entry-header--color-link: currentcolor;
  --entry-header--color-hover: var(--global--color-primary-hover);
  --entry-header--color-focus: var(--global--color-secondary);
  --entry-header--font-size: var(--heading--font-size-h2);
  --entry-content--font-family: var(--global--font-secondary);
  --entry-author-bio--font-family: var(--heading--font-family);
  --entry-author-bio--font-size: var(--heading--font-size-h4);
  /* Header */
  --branding--color-text: var(--global--color-primary);
  --branding--color-link: var(--global--color-primary);
  --branding--color-link-hover: var(--global--color-secondary);
  --branding--title--font-family: var(--global--font-primary);
  --branding--title--font-size: var(--global--font-size-lg);
  --branding--title--font-size-mobile: var(--heading--font-size-h4);
  --branding--title--font-weight: normal;
  --branding--title--text-transform: uppercase;
  --branding--description--font-family: var(--global--font-secondary);
  --branding--description--font-size: var(--global--font-size-sm);
  --branding--description--font-family: var(--global--font-secondary);
  --branding--logo--max-width: 300px;
  --branding--logo--max-height: 100px;
  --branding--logo--max-width-mobile: 96px;
  --branding--logo--max-height-mobile: 96px;
  /* Main navigation */
  --primary-nav--font-family: var(--global--font-secondary);
  --primary-nav--font-family-mobile: var(--global--font-primary);
  --primary-nav--font-size: var(--global--font-size-md);
  --primary-nav--font-size-sub-menu: var(--global--font-size-xs);
  --primary-nav--font-size-mobile: var(--global--font-size-sm);
  --primary-nav--font-size-sub-menu-mobile: var(--global--font-size-sm);
  --primary-nav--font-size-button: var(--global--font-size-xs);
  --primary-nav--font-style: normal;
  --primary-nav--font-style-sub-menu-mobile: normal;
  --primary-nav--font-weight: normal;
  --primary-nav--font-weight-button: 500;
  --primary-nav--color-link: var(--global--color-primary);
  --primary-nav--color-link-hover: var(--global--color-primary-hover);
  --primary-nav--color-text: var(--global--color-primary);
  --primary-nav--padding: calc(.66 * var(--global--spacing-unit));
  --primary-nav--border-color: var(--global--color-primary);
  /* Pagination */
  --pagination--color-text: var(--global--color-primary);
  --pagination--color-link-hover: var(--global--color-primary-hover);
  --pagination--font-family: var(--global--font-secondary);
  --pagination--font-size: var(--global--font-size-lg);
  --pagination--font-weight: normal;
  --pagination--font-weight-strong: 600;
  /* Footer */
  --footer--color-text: var(--global--color-primary);
  --footer--color-link: var(--global--color-primary);
  --footer--color-link-hover: var(--global--color-primary-hover);
  --footer--font-family: var(--global--font-primary);
  --footer--font-size: var(--global--font-size-sm);
  /* Block: Pull quote */
  --pullquote--font-family: var(--global--font-primary);
  --pullquote--font-size: var(--heading--font-size-h3);
  --pullquote--font-style: normal;
  --pullquote--letter-spacing: var(--heading--letter-spacing-h4);
  --pullquote--line-height: var(--global--line-height-heading);
  --pullquote--border-width: 3px;
  --pullquote--border-color: var(--global--color-primary);
  --pullquote--color-foreground: var(--global--color-primary);
  --pullquote--color-background: var(--global--color-background);
  --quote--font-family: var(--global--font-secondary);
  --quote--font-size: var(--global--font-size-md);
  --quote--font-size-large: var(--global--font-size-xl);
  --quote--font-style: normal;
  --quote--font-weight: 700;
  --quote--font-weight-strong: bolder;
  --quote--font-style-large: normal;
  --quote--font-style-cite: normal;
  --quote--line-height: var(--global--line-height-body);
  --quote--line-height-large: 1.35;
  --separator--border-color: var(--global--color-border);
  --separator--height: 1px;
  /* Block: Table */
  --table--stripes-border-color: var(--global--color-light-gray);
  --table--stripes-background-color: var(--global--color-light-gray);
  --table--has-background-text-color: var(--global--color-dark-gray);
  /* Widgets */
  --widget--line-height-list: 1.9;
  --widget--line-height-title: 1.4;
  --widget--font-weight-title: 700;
  --widget--spacing-menu: calc(.66 * var(--global--spacing-unit));
  /* Admin-bar height */
  --global--admin-bar--height: 0;
}

.admin-bar {
  --global--admin-bar--height: 32px;
}

@media only screen and (max-width: 782px) {
  .admin-bar {
    --global--admin-bar--height: 46px;
  }
}
@media only screen and (min-width: 652px) {
  :root {
    --global--font-size-xl: 2.5rem;
    --global--font-size-xxl: 6rem;
    --global--font-size-xxxl: 9rem;
    --heading--font-size-h3: 2rem;
    --heading--font-size-h2: 3rem;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration-thickness: 1px;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  /* 1 */
  margin: 0;
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  /* 2 */
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 1 */
  color: inherit;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template,
[hidden] {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  margin-left: 1.6rem;
}

figure {
  width: 100% !important;
  max-width: 100%;
  overflow-x: auto;
}

/**
* Apply generic border-box to all elements.
* See:
* https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
*/
html {
  /* Apply border-box across the entire page. */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: var(--global--font-secondary);
  line-height: var(--global--line-height-body);
}

/**
* Relax the definition a bit, to allow components to override it manually.
*/
* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
*::before, *::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  background-color: var(--global--color-background);
  color: var(--global--color-primary);
  font-size: var(--global--font-size-base);
  font-weight: normal;
  text-align: left;
}

button {
  cursor: pointer;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
  white-space: pre-wrap;
}

a {
  background-color: transparent;
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template,
[hidden] {
  display: none;
}

@media screen and (min-width: 77.5em) {
  .entry-content img {
    width: initial;
    max-width: initial;
  }
}
body {
  color: #333;
  text-align: justify;
  word-break: break-all;
}

.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}

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

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #383c47;
}
a:hover {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #0066bd;
  text-decoration: none;
}

.cont-btn .wp-block-button .wp-block-button__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 280px;
  padding: calc(0.667em + 2px) calc(0.667em + 2px) calc(0.667em + 2px) calc(1.333em + 2px);
  border-radius: 1px;
  background-color: #f5f5f5;
  color: #383c47;
  font-size: 1rem;
  font-weight: bold;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 1rem;
}
.cont-btn .wp-block-button .wp-block-button__link::after {
  content: "";
  display: block;
  grid-column: 2/3;
  grid-row: 1/3;
  width: 18px;
  height: 16px;
  margin: 12px 11px;
  border-radius: 0;
  background-color: #0066bd;
  -webkit-mask-image: url(../images/arrow.svg);
          mask-image: url(../images/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.cont-btn .wp-block-button .wp-block-button__link:hover {
  background-color: #0066bd;
  color: #fff;
}
.cont-btn .wp-block-button .wp-block-button__link:hover::after {
  background-color: #fff;
}

.hentry .entry-header,
.hentry .page-header {
  padding: 1.25rem 0 2.6875rem;
  text-align: center;
}
.hentry .entry-header .entry-title,
.hentry .entry-header .page-title {
  margin: 0;
  font-size: 2.375rem;
  line-height: 1.2;
}
.hentry .page-header .entry-title,
.hentry .page-header .page-title {
  margin: 0;
  font-size: 2.375rem;
  line-height: 1.2;
}
.hentry .entry-header .en-title,
.hentry .page-header .en-title {
  display: none;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.2;
}

input,
textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

input[type=submit], input[type=button] {
  display: inline-block;
  width: auto;
  padding: 1rem 1.5rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: none;
  border-radius: 1px;
  background-color: #383c47;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
input[type=submit]:hover, input[type=button]:hover {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: #0066bd;
  color: #fff;
}

#not-show {
  display: none;
}

@media screen and (min-width: 62.5em) {
  .hentry .entry-header,
.hentry .page-header {
    text-align: left;
  }
  .hentry .entry-header .entry-title,
.hentry .entry-header .page-title {
    font-size: 3.5rem;
  }
  .hentry .page-header .entry-title,
.hentry .page-header .page-title {
    font-size: 3.5rem;
  }
  .hentry .entry-header .en-title,
.hentry .page-header .en-title {
    display: block;
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 77.5em) {
  .cont-btn .wp-block-button .wp-block-button__link {
    padding: 1rem 1rem 1rem 2rem;
    font-size: 1.5rem;
  }
  .cont-btn .wp-block-button .wp-block-button__link:hover {
    text-decoration: none;
  }
}
/* Header Style */
body .site {
  display: grid;
  overflow: hidden;
}
body .site .checkbox-toggle {
  display: none;
}
body .site .site-header {
  position: relative;
}
body .site .site-header .global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100vw;
  padding: 1rem 4.07vw;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body .site .site-header .global-nav.first {
  top: -32px;
  height: 32px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: rgba(255, 255, 255, 0);
}
body .site .site-header .global-nav.first.fixed {
  position: fixed;
  top: 0;
  height: 80px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: rgba(255, 255, 255, 0.5);
}
body .site .site-header .global-nav.first.fixed .site-branding {
  width: 58px;
  min-height: 48px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
body .site .site-header .global-nav .site-branding {
  width: 65px;
  height: auto;
  overflow: hidden;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
body .site .site-header .global-nav .site-branding .site-title {
  display: contents;
  margin: 0;
}
body .site .site-header .global-nav .site-branding .site-title a {
  display: block;
}
body .site .site-header .global-nav .site-branding .site-title a .custom-logo-link {
  display: block;
}
body .site .site-header .global-nav .site-branding .site-description {
  margin: 0;
}
body .site .site-header .global-nav .nav-insider {
  display: grid;
  grid-template-columns: auto 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
body .site .site-header .global-nav .nav-insider .primary-menu {
  display: none;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: #383c47;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 6rem 5vw 1rem;
  gap: 1.5rem;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .hamburger-menu-container .menu-wrapper {
  margin: 0 10px;
  padding: 0;
  list-style: none;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .hamburger-menu-container .menu-wrapper li {
  border-bottom: 1px solid #f5f5f5;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .hamburger-menu-container .menu-wrapper li a {
  display: block;
  padding: 0.9rem 0;
  color: #f5f5f5;
  line-height: 1.2;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu {
  padding-bottom: 5.5rem;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .hb-contact {
  margin-bottom: 1.5rem;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .hb-contact a {
  display: grid;
  grid-template-columns: auto 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #f5f5f5;
  color: #383c47;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .hb-contact a strong {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.2;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .hb-contact a span {
  grid-column: 1/2;
  font-size: 0.75rem;
  line-height: 1.2;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .hb-contact a::after {
  content: "";
  display: block;
  grid-column: 2/3;
  grid-row: 1/3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0066bd;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 16px;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy {
  display: grid;
  grid-template-columns: 86px auto;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .white-logo {
  margin: 0;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .white-logo .custom-logo-link {
  display: block;
  width: 86px;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .white-logo .custom-logo-link img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .kv-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .kv-title h2,
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .kv-title h3 {
  margin: 0;
  color: #f5f5f5;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .kv-title h2 br,
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .kv-title h3 br {
  display: none;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .kv-title h2 {
  font-size: 0.9375rem;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .kv-title h2 .pc {
  display: block;
}
body .site .site-header .global-nav .nav-insider .hamburger-navigation .inner-scroll .under-menu .logo-copy .kv-title h3 {
  font-size: 0.6875rem;
}
body .site .site-header .global-nav .nav-insider .header-contact a {
  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;
  height: 48px;
  padding: 0 1rem;
  border-radius: 1px;
  background-color: #0066bd;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: center;
}
body .site .site-header .global-nav .nav-insider .header-contact a:hover {
  background-color: #fff;
  color: #383c47;
}
body .site .site-header .top-keyvisual .kv-block {
  position: relative;
}
body .site .site-header .top-keyvisual .kv-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}
body .site .site-header .top-keyvisual .kv-block .sp-img {
  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;
  height: 100vh;
  overflow: hidden;
  line-height: 0;
}
body .site .site-header .top-keyvisual .kv-block .sp-img img {
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}
body .site .site-header .top-keyvisual .kv-block .pc-img {
  display: none;
  line-height: 0;
}
body .site .site-header .top-keyvisual .kv-block .kv-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: 125px;
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  gap: 0.75rem;
  white-space: nowrap;
}
body .site .site-header .top-keyvisual .kv-block .kv-title h2,
body .site .site-header .top-keyvisual .kv-block .kv-title h3 {
  margin: 0;
  color: #383c47;
  line-height: 1.2;
}
body .site .site-header .top-keyvisual .kv-block .kv-title h2 .pc,
body .site .site-header .top-keyvisual .kv-block .kv-title h3 .pc {
  display: none;
}
body .site .site-header .top-keyvisual .kv-block .kv-title h2 {
  font-size: 1.75rem;
}
body .site .site-header .top-keyvisual .kv-block .kv-title h3 {
  font-size: 0.75rem;
}
body .site .site-header .scrolldown1 {
  position: absolute;
  bottom: 0;
  left: 5vw;
  height: 7rem;
  overflow: hidden;
}
body .site .site-header .scrolldown1 a {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
body .site .site-header .scrolldown1::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 1px;
  height: 60px;
  -webkit-animation: pathmove 2.8s ease-in-out infinite;
  animation: pathmove 2.8s ease-in-out infinite;
  opacity: 0;
  background: #fff;
}
body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .hamburger-navigation {
  right: 100%;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .outer-menu {
  position: relative;
  z-index: 1;
}
body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .outer-menu .hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  border-radius: 50%;
  background-color: #383c47;
}
body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .outer-menu .hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  background-color: #f5f5f5;
}
body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .outer-menu .hamburger .bar2 {
  margin: 4px 0;
  opacity: 1;
}
body .site .checkbox-toggle:checked ~ .site-header .global-nav .nav-insider .hamburger-navigation {
  right: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body .site .checkbox-toggle:checked ~ .site-header .global-nav .nav-insider .outer-menu {
  position: fixed;
  top: 16px;
  right: 4.07vw;
}
body .site .checkbox-toggle:checked ~ .site-header .global-nav .nav-insider .outer-menu .hamburger {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #0066bd;
}
body .site .checkbox-toggle:checked ~ .site-header .global-nav .nav-insider .outer-menu .hamburger .bar2 {
  height: 2px;
  margin: 0;
  opacity: 1;
}
body .site .checkbox-toggle:checked ~ .site-header .global-nav .nav-insider .outer-menu .hamburger .bar1 {
  margin-bottom: -2px;
  opacity: 0;
}
body .site .checkbox-toggle:checked ~ .site-header .global-nav .nav-insider .outer-menu .hamburger .bar3 {
  margin-top: -2px;
  opacity: 0;
}
body.admin-bar .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .hamburger-navigation {
  padding-top: 46px;
}
body.admin-bar .site .checkbox-toggle:checked ~ .site-header .global-nav .nav-insider .outer-menu {
  top: 62px;
}
body:not(.home) .site {
  position: relative;
}
body:not(.home) .site .site-header .global-nav {
  position: relative;
}
body:not(.home) .site .site-header .global-nav.fixed.first + .scrolldown1 {
  position: relative;
  height: 80px;
}
body:not(.home) .site .site-header .scrolldown1 {
  bottom: 0;
  left: -1px;
  width: 1px;
  height: 1px;
}
body:not(.home) .site .site-content {
  padding: 0 5vw;
}
body:not(.home) .site .site-content .content-area {
  max-width: 1300px;
  margin: 0 auto 4rem;
}

@-webkit-keyframes pathmove {
  0% {
    top: 32px;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    top: 132px;
    height: 0;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    top: 32px;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    top: 132px;
    height: 0;
    opacity: 0;
  }
}
@media screen and (min-width: 38.75em) {
  body:not(.home) .site::before {
    aspect-ratio: 4/3;
  }
  body .site .site-header .top-keyvisual .kv-block .kv-title {
    left: 5vw;
    -webkit-transform: inherit;
    transform: inherit;
  }
}
@media screen and (min-width: 46.25em) {
  body .site .site-header .top-keyvisual .kv-block .sp-img {
    display: none;
  }
  body .site .site-header .top-keyvisual .kv-block .pc-img {
    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;
    height: 100vh;
    overflow: hidden;
    line-height: 0;
  }
  body .site .site-header .top-keyvisual .kv-block .pc-img img {
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (min-width: 783px) {
  body.admin-bar .site .site-header .global-nav.first.fixed {
    top: 32px;
  }
}
@media screen and (min-width: 55em) {
  body:not(.home) .site::before {
    aspect-ratio: 16/9;
  }
}
@media screen and (min-width: 62.5em) {
  body:not(.home) .site::before {
    aspect-ratio: inherit;
    height: calc(340px + 3.7rem);
  }
  body:not(.home) .site .site-header .global-nav.fixed.first + .scrolldown1 {
    height: 116px;
  }
  body .site .site-header .global-nav {
    padding: 24px 4.07vw;
  }
  body .site .site-header .global-nav .site-branding {
    width: 120px;
    height: 100px;
  }
  body .site .site-header .global-nav.first {
    top: -48px;
    height: 48px;
  }
  body .site .site-header .global-nav.first.fixed {
    height: 116px;
  }
  body .site .site-header .global-nav.first.fixed .site-branding {
    width: 82px;
    height: 68px;
  }
  body .site .site-header .top-keyvisual .kv-block .kv-title {
    top: inherit;
    bottom: 50%;
    left: 9.11vw;
  }
  body .site .site-header .top-keyvisual .kv-block .kv-title h2 {
    font-size: 3.646vw;
  }
  body .site .site-header .top-keyvisual .kv-block .kv-title h2 .pc {
    display: block;
  }
  body .site .site-header .top-keyvisual .kv-block .kv-title h2 .sp {
    display: none;
  }
  body .site .site-header .top-keyvisual .kv-block .kv-title h3 {
    font-size: 1.09vw;
  }
  body .site .site-header .top-keyvisual .kv-block .kv-title h3 .sp {
    display: none;
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider {
    grid-template-columns: auto 200px;
    gap: 2rem;
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .primary-menu {
    display: block;
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .primary-menu .primary-menu-container .menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 2vw;
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .primary-menu .primary-menu-container .menu-wrapper li {
    text-align: center;
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .primary-menu .primary-menu-container .menu-wrapper li a {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1.2;
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .outer-menu,
body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .hamburger-navigation {
    display: none;
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .header-contact a {
    height: 68px;
    border-radius: 1px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 77.5em) {
  body .site .site-header .scrolldown1 {
    height: 11.25rem;
  }
  body .site .site-header .scrolldown1 a {
    font-size: 0.875rem;
  }
  body .site .site-header .scrolldown1 a:hover {
    text-decoration: none;
  }
  body .site .site-header .scrolldown1::after {
    left: 11px;
    height: 60px;
  }
  @-webkit-keyframes pathmove {
    0% {
      top: 2.5rem;
      height: 0;
      opacity: 0;
    }
    30% {
      height: 8.25rem;
      opacity: 1;
    }
    100% {
      top: 22.5rem;
      height: 0;
      opacity: 0;
    }
  }
  @keyframes pathmove {
    0% {
      top: 2.5rem;
      height: 0;
      opacity: 0;
    }
    30% {
      height: 8.25rem;
      opacity: 1;
    }
    100% {
      top: 22.5rem;
      height: 0;
      opacity: 0;
    }
  }
}
@media screen and (min-width: 87.5em) {
  body .site .site-header .top-keyvisual .kv-block .kv-title {
    /* h2 {
        	font-size: 4.375rem;
        } */
  }
  body .site .site-header .top-keyvisual .kv-block .kv-title h3 {
    margin-bottom: 2rem;
    font-size: 1.3125rem;
  }
  body .site .site-header .scrolldown1 {
    left: calc((100vw - 1300px) / 2);
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider {
    grid-template-columns: auto 240px;
    gap: 2rem;
  }
  body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .primary-menu .primary-menu-container .menu-wrapper li a,
body .site .checkbox-toggle ~ .site-header .global-nav .nav-insider .header-contact a {
    font-size: 1rem;
  }
}
/* Footer Style */
.site-footer {
  padding: 3.75rem 5vw;
  border-radius: 0;
  background-color: #f9f9f9;
}
.site-footer .inner-block .inside-block .nav-block {
  margin-bottom: 2rem;
}
.site-footer .inner-block .inside-block .nav-block .footer-navigation {
  display: none;
}
.site-footer .inner-block .inside-block .nav-block .footer-contact {
  max-width: 480px;
  margin: auto;
}
.site-footer .inner-block .inside-block .nav-block .footer-contact a {
  display: grid;
  grid-template-columns: auto 40px;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 1px;
  background-color: #0066bd;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.site-footer .inner-block .inside-block .nav-block .footer-contact a:hover {
  background-color: #fff;
  color: #0066bd;
}
.site-footer .inner-block .inside-block .nav-block .footer-contact a:hover::after {
  background-color: #0066bd;
}
.site-footer .inner-block .inside-block .nav-block .footer-contact a strong {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.2;
}
.site-footer .inner-block .inside-block .nav-block .footer-contact a span {
  grid-column: 1/2;
  font-size: 0.75rem;
  line-height: 1.2;
}
.site-footer .inner-block .inside-block .nav-block .footer-contact a::after {
  content: "";
  display: block;
  grid-column: 2/3;
  grid-row: 1/3;
  width: 18px;
  height: 16px;
  margin: 12px 11px;
  background-color: #fff;
  -webkit-mask-image: url("../images/arrow.svg");
          mask-image: url("../images/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.site-footer .inner-block .inside-block .site-info .site-name {
  margin-bottom: 1rem;
}
.site-footer .inner-block .inside-block .site-info .site-name .site-logo .custom-logo-link {
  display: block;
  width: 120px;
  margin: auto;
  line-height: 1;
}
.site-footer .inner-block .inside-block .site-info .address-block {
  text-align: center;
}
.site-footer .inner-block .inside-block .site-info .address-block .addre {
  display: inline-block;
  margin: 0 0 2rem;
  color: #383c47;
  font-size: 1rem;
  text-align: left;
}
.site-footer .inner-block .inside-block .site-info .address-block .addre a {
  color: #383c47;
}
.site-footer .inner-block .inside-block .site-info .address-block .f__badge {
  width: 84px;
  margin: auto;
}
.site-footer .inner-block .inside-block .site-info .address-block .f__badge a {
  display: block;
  line-height: 1;
}
.site-footer .inner-block .inside-block .site-info .powered-by {
  padding-top: 2rem;
}
.site-footer .inner-block .inside-block .site-info .powered-by address {
  color: #383c47;
  font-size: 0.875rem;
  font-style: normal;
  text-align: center;
}

@media screen and (min-width: 62.5em) {
  .site-footer .inner-block {
    max-width: 1300px;
    margin: auto;
  }
  .site-footer .inner-block .inside-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .site-footer .inner-block .inside-block .nav-block {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0;
  }
  .site-footer .inner-block .inside-block .nav-block .footer-navigation {
    display: block;
    margin-bottom: 2rem;
  }
  .site-footer .inner-block .inside-block .nav-block .footer-navigation .footer-navigation-wrapper {
    display: grid;
    grid-template-columns: repeat(3, auto);
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0.5rem 1.25rem;
  }
  .site-footer .inner-block .inside-block .nav-block .footer-navigation .footer-navigation-wrapper li a {
    color: #383c47;
    font-size: 1rem;
    line-height: 1.2;
  }
  .site-footer .inner-block .inside-block .nav-block .footer-navigation .footer-navigation-wrapper li a:hover {
    color: #0066bd;
  }
  .site-footer .inner-block .inside-block .nav-block .footer-contact a:hover {
    text-decoration: none;
  }
  .site-footer .inner-block .inside-block .site-info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
    text-align: left;
  }
  .site-footer .inner-block .inside-block .site-info .site-name {
    margin-bottom: 1.75rem;
  }
  .site-footer .inner-block .inside-block .site-info .site-name .site-logo .custom-logo-link {
    margin: 0;
  }
  .site-footer .inner-block .inside-block .site-info .address-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    gap: 2.5rem;
  }
  .site-footer .inner-block .inside-block .site-info .address-block .addre {
    width: 17.25rem;
    margin: 0;
  }
  .site-footer .inner-block .inside-block .site-info .powered-by {
    padding-top: 2.625rem;
  }
  .site-footer .inner-block .inside-block .site-info .powered-by address {
    font-size: 0.875rem;
    letter-spacing: 0.08rem;
  }
}
@media screen and (min-width: 87.5em) {
  .site-footer {
    padding: 7.5rem 0;
    border-radius: 1px;
  }
  .site-footer .inner-block .inside-block .nav-block .footer-navigation .footer-navigation-wrapper {
    gap: 0.75rem 4.5rem;
  }
}
/* Parts Style */
.banner-area .banner-list {
  width: 300px;
  margin: auto;
}

/* is-fadein */
.element {
  visibility: hidden;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s, visibility 1s, -webkit-transform 1s;
  opacity: 0;
}

.is-fadein {
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.cover-image {
  position: relative;
  margin: 0 -5vw 2rem;
  border-bottom: 1px solid #ddd;
}
.cover-image:has(.post-thumbnail) {
  border-bottom: none;
}
.cover-image .breadcrumbs {
  display: -webkit-inline-box;
  margin: 0 5vw;
  padding: 0;
  overflow: hidden;
  color: #333;
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.cover-image .breadcrumbs span a {
  margin: 0 0.3rem;
  color: #333;
  text-decoration: none;
}
.cover-image .breadcrumbs span a.home {
  margin-left: 0;
  color: #333;
}
.cover-image .breadcrumbs span a:hover {
  color: #0066bd;
}
.cover-image .post-thumbnail {
  width: 100vw;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 4/3;
  background-color: #383c47;
}
.cover-image .post-thumbnail img {
  max-width: inherit !important;
  height: 100% !important;
  opacity: 0.7;
  -o-object-fit: cover;
  object-fit: cover;
}
.cover-image .post-thumbnail + .breadcrumbs {
  position: absolute;
  top: 1.5rem;
  right: 3.75rem;
  left: 3.75rem;
  margin: 0;
  color: #fff;
  text-align: center;
}
.cover-image .post-thumbnail + .breadcrumbs span a {
  color: #fff;
}
.cover-image .post-thumbnail + .breadcrumbs span a.home {
  color: #fff;
}

/* Page Up */
.site-footer + .scroll-top {
  position: fixed;
  right: 3vw;
  bottom: 17vh;
}
.site-footer + .scroll-top .to-the-top {
  display: inline-block;
}
.site-footer + .scroll-top .to-the-top .inside::before {
  content: "";
  display: block;
  width: 1.95rem;
  height: 1.05rem;
  background-color: #383c47;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2019.5%2010.5%22%20style%3D%22enable-background%3Anew%200%200%2019.5%2010.5%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23333333%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M18.8%2C10.5c-0.2%2C0-0.4-0.1-0.5-0.2L9.8%2C1.8l-8.5%2C8.5c-0.3%2C0.3-0.8%2C0.3-1.1%2C0s-0.3-0.8%2C0-1.1l9-9%20c0.3-0.3%2C0.8-0.3%2C1.1%2C0l9%2C9c0.3%2C0.3%2C0.3%2C0.8%2C0%2C1.1C19.1%2C10.4%2C18.9%2C10.5%2C18.8%2C10.5z%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2019.5%2010.5%22%20style%3D%22enable-background%3Anew%200%200%2019.5%2010.5%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23333333%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M18.8%2C10.5c-0.2%2C0-0.4-0.1-0.5-0.2L9.8%2C1.8l-8.5%2C8.5c-0.3%2C0.3-0.8%2C0.3-1.1%2C0s-0.3-0.8%2C0-1.1l9-9%20c0.3-0.3%2C0.8-0.3%2C1.1%2C0l9%2C9c0.3%2C0.3%2C0.3%2C0.8%2C0%2C1.1C19.1%2C10.4%2C18.9%2C10.5%2C18.8%2C10.5z%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.site-footer.invert + .scroll-top .to-the-top .inside::before {
  background-color: #ccc;
}

.pagination_wrapper {
  margin-top: 2rem;
}
.pagination_wrapper .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem 0.1rem;
}
.pagination_wrapper .page-numbers li > a,
.pagination_wrapper .page-numbers li > span {
  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;
  width: 3rem;
  height: 3rem;
  border: 1px solid #383c47;
  border-radius: 3px;
  color: #383c47;
  font-size: 1rem;
  line-height: 1;
}
.pagination_wrapper .page-numbers li > a {
  background-color: #383c47;
  color: #fff;
}
.pagination_wrapper .page-numbers li > a .ic-arrow_nex::before {
  content: "";
  display: block;
  -webkit-mask-image: url(../images/arrow.svg);
  mask-image: url(../images/arrow.svg);
  width: 1rem;
  height: 0.9rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 1rem 0.9rem;
  mask-size: 1rem 0.9rem;
  background-color: #fff;
}
.pagination_wrapper .page-numbers li > a .ic-arrow_pre::before {
  content: "";
  display: block;
  width: 1rem;
  height: 0.9rem;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  background-color: #fff;
  -webkit-mask-image: url(../images/arrow.svg);
  mask-image: url(../images/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 1rem 0.9rem;
  mask-size: 1rem 0.9rem;
}

@media screen and (min-width: 46.25em) {
  .cover-image .post-thumbnail {
    aspect-ratio: 192/108;
  }
  .pagination_wrapper {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 62.5em) {
  .cover-image {
    max-width: 1300px;
    margin: 0 auto 3.7rem;
    overflow: hidden;
  }
  .cover-image .post-thumbnail {
    width: 100%;
    aspect-ratio: 13/4;
  }
  .cover-image .post-thumbnail + .breadcrumbs {
    text-align: left;
  }
  .cover-image .breadcrumbs {
    margin: 0;
  }
  .pagination_wrapper {
    margin-top: 4rem;
  }
}/*# sourceMappingURL=common.css.map */