@charset "UTF-8";
/*
Theme Name: Centrix Child
Theme URI: https://gasinforest.com/wordpress/centrix/landing/
Author: paul_tf
Author URI: https://themeforest.net/user/paul_tf
Description: A child theme of Centrix
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: centrix-child
Template: centrix
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*/
/**
 * uaplus.css version 0.0.1
 */
/**
 * Different box model
 * 
 * We use the traditional box model, where the padding and border 
 * of the element is drawn inside and not outside the specified 
 * width and height. That makes combining relative and absolute 
 * units in properties like <code>inline-size</code> and 
 * <code>block-size</code> easier.
 * 
 * 2025/05/22 :where(html) のgutter外すこと！！！

* {
  box-sizing: border-box;

  &::after,
  &::before {
    box-sizing: border-box;
  }
}

/**
 * Improve focus styles
 *
 * Add spacing between content and its focus outline.
 */
:focus-visible {
  outline-offset: 3px;
}

/**
 * Disable text size adjustment
 * 
 * To improve readability on non-mobile optimized websites, browsers
 * like mobile Safari increase the default font size when you switch
 * a website from portrait to landscape. We don't want that for our 
 * optimized sites.
 *
 * See https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/
 */
:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  line-height: 1.5;
}

/**
 * Increase line height
 *
 * Long paragraphs are easier to read if the line height is higher.
 */
/**
 * Add scrollbar gutter
 *
 * Prevent the page from “jumping” when switching from a long to a short page.
 *
 */
/**
 * Remove UA styles for h1s nested in sectioning content
 *
 * Nesting h1s in section, articles, etc., shouldn't influence the 
 * styling of the heading since nesting doesn't influence 
 * semantics either.
 * 
 * See https://github.com/whatwg/html/issues/7867#issuecomment-2632395167
 * See https://github.com/whatwg/html/pull/11102
 * See https://html.spec.whatwg.org/#sections-and-headings
 */
:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

/**
 * Improve abbreviations with titles
 * 
 * The abbr element with the title isn't helpful regarding 
 * accessibility because support is inconsistent, and it's only 
 * accessible to some users. Still, it's commonly used. 
 * This rule shows a dotted underline on abbreviations in all 
 * browsers (there's a bug in Safari) and changes the cursor.
 * 
 * See https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
 */
:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

/**
 * Optimize mark element in Forced Colors Mode
 *
 * The colors of the mark element don't change in Forced Colors Mode,
 * which can be problematic. Use system colors instead.
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
 */
@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
/**
 * Announce del, ins, and s to screen readers
 * 
 * With the exception of NVDA (2024.4.2), which announces "deletion",
 * none of the common screen readers announces the <s> element.
 * Voice Over on macOS and iOS and Narrator don't announce 
 * <ins> and <del>. Usually, screen readers not announcing text-level
 * semantics is something we just accept, but devs using elements 
 * like <s> without knowing that they may not convey semantics is a 
 * common issue. We announce the start and end of stricken, inserted,
 * and deleted content with pseudo-elements. For languages other 
 * than English, you should provide translations, e.g. :lang(de) 
 * :where(s::before) { content: "Durchgestrichener Text Beginn "; }
 * 
 * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html
 */
:where(del, ins, s)::before, :where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}
:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}
:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}
:where(ins)::after {
  content: " insertion end";
}

/**
 * Avoid overflow caused by embedded content
 * 
 * Ensure that embedded content (audio, video, images, etc.) 
 * doesn't overflow its container.
 */
:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

/**
 * Prevent fieldsets from causing overflow
 *
 * Reset the default `min-inline-size: min-content` to prevent
 * children from stretching fieldsets
 *
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
:where(fieldset) {
  min-inline-size: 0;
}

/**
 * Turn labels into block elements
 * 
 * Labels for inputs, selects, and textarea should be block 
 * elements.
 */
:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

/**
 * Increase the block-size of textareas
 *
 * The default height of textareas is small. We increase it a bit.
 */
:where(textarea:not([rows])) {
  min-block-size: 6em;
}

/**
 * Inherit font styling in form elements
 * 
 * buttons, inputs, selects, and textarea should have the same font
 * family and size as the rest of the page.
 */
:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

/**
 * Normalize search input styles
 *  
 * Remove the rounded corners of search inputs on macOS and IOS 
 * and normalize the background color
 */
:where([type=search]) {
  -webkit-appearance: textfield;
  appearance: textfield;
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
/**
 * Maintain direction in some input types
 * 
 * Some input types should remain left-aligned in right-to-left
 * languages,but only if the value isn't empty because the 
 * placeholder should be right-aligned.
 *
 * See https://rtlstyling.com/posts/rtl-styling#form-inputs
 */
:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
  direction: ltr;
}

/**
 * Improve table styling
 *  
 * With the default styling, tables are hard to scan. These rules 
 * add padding and collapsed borders.
 */
:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

/**
 * Fading dialogs
 *  
 * Add fade in and fade out transitions for the dialog element
 * and backdrops
 */
:where(dialog) {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}
:where(dialog)::backdrop {
  background: oklch(0% 0 0/0.3);
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]) {
  opacity: 1;
}
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]) {
    opacity: 0;
  }
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
/**
 * Increase specificity of [hidden]
 *  
 * Make it harder to accidentally unhide elements with the 
 * [hidden] attribute while still maintaining the until-found 
 * functionality.
 */
[hidden]:not([hidden=until-found]) {
  display: none !important;
}

@font-face {
  font-family: "Kotonomo-Regular";
  src: url("/wp-content/themes/centrix-child/assets/fonts/Kotonomo-Regular-Kw-N.woff2") format("woff2");
}
@font-face {
  font-family: "Kotonomo-Bold";
  src: url("/wp-content/themes/centrix-child/assets/fonts/Kotonomo-Bold-Kw-N.woff2") format("woff2");
}
@font-face {
  font-family: "Kotonomo-Black";
  src: url("/wp-content/themes/centrix-child/assets/fonts/Kotonomo-Black-Kw-N.woff2") format("woff2");
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Neue Montreal", "Kotonomo-Bold", sans-serif !important;
  font-weight: 700 !important;
}

body,
p,
li,
button,
input,
label {
  font-family: "Neue Montreal", "Kotonomo-Regular", sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem) !important;
}

p {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem) !important;
  text-align: justify !important;
  text-align-last: left !important;
}

strong,
b {
  font-weight: 700 !important;
}

:root {
  --vp-color-brand: $color3 !important;
}

.lucas-forced-current-link {
  color: hotpink !important;
  font-weight: bold !important;
  border-left: 4px solid deeppink !important;
  background: rgba(255, 192, 203, 0.1) !important;
}

.elementor-slideshow__header > svg {
  fill: #212121 !important;
}

.elementor-lightbox .dialog-lightbox-close-button,
.elementor-lightbox .elementor-swiper-button,
.elementor-slideshow__title {
  color: #212121 !important;
}

.elementor-lightbox .elementor-lightbox-image {
  box-shadow: none !important;
}

.elementor-lightbox .dialog-lightbox-close-button svg,
.elementor-lightbox .elementor-swiper-button svg {
  fill: #212121 !important;
}

.ptf-header--slide .ptf-navbar-inner,
.ptf-slide-menu {
  background-color: #fff855 !important;
}

.ptf-navbar,
.ptf-navbar.ptf-navbar--solid,
.ptf-navbar.ptf-navbar--fixed,
.ptf-navbar.ptf-navbar--white-text-on-top {
  background-color: transparent !important;
}

.ptf-navbar.ptf-navbar--fixed,
.ptf-navbar.ptf-navbar--white-text-on-top {
  color: #000 !important;
}

.ptf-navbar .ptf-navbar-inner {
  min-height: 3rem !important;
}

.ptf-navbar--main .container-xxl {
  padding-top: 1rem !important;
}

.ptf-mobile-menu.is-open {
  background-color: #fff855 !important;
}

.elementor-element-15bd820 a {
  font-family: "Neue Montreal", "Kotonomo-Regular", sans-serif !important;
  font-weight: 400 !important;
  color: #000 !important;
}

.ptf-slide-menu a:hover::before {
  display: none;
}

.ptf-filters .vp-filter__item {
  font-family: "Neue Montreal", "Kotonomo-Regular", sans-serif !important;
  font-weight: 400 !important;
}

.sidebar-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto !important;
}

#mla-text-widget-2 p {
  font-size: clamp(0.75rem, 0.7rem + 0.5vw, 0.875rem) !important;
}

.post-section a,
.page-id-339 .ptf-main a {
  font-family: "Neue Montreal", "Kotonomo-Bold", sans-serif !important;
  font-weight: 700 !important;
  color: #ffcc00;
  position: relative;
  display: inline-flex;
}
.post-section a:hover::before,
.page-id-339 .ptf-main a:hover::before {
  transform: scale(1, 1);
}
.post-section a::before,
.page-id-339 .ptf-main a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
  transform: scale(0, 1);
  background-color: #000;
}
.post-section a:hover,
.page-id-339 .ptf-main a:hover {
  color: #000;
}
.post-section a .post-related a,
.page-id-339 .ptf-main a .post-related a {
  color: #000;
}
.post-section .post-meta li a,
.page-id-339 .ptf-main .post-meta li a {
  font-family: "Neue Montreal", "Kotonomo-Regular", sans-serif !important;
  font-weight: 400 !important;
  color: #000 !important;
}
.post-section .post-sidebar li,
.page-id-339 .ptf-main .post-sidebar li {
  font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem) !important;
}
.post-section .post-sidebar li a,
.page-id-339 .ptf-main .post-sidebar li a {
  font-family: "Neue Montreal", "Kotonomo-Regular", sans-serif !important;
  font-weight: 400 !important;
  color: #000;
}
.post-section .elementor-element-333d399 a,
.page-id-339 .ptf-main .elementor-element-333d399 a {
  font-family: "Neue Montreal", "Kotonomo-Regular", sans-serif !important;
  font-weight: 400 !important;
  color: #000;
}

@media screen and (max-width: 767px) {
  .post-section p {
    font-size: clamp(1.375rem, 1.2rem + 0.5vw, 1.75rem) !important;
  }
}
.post-card .elementor-post {
  align-items: center !important;
}
.post-card .elementor-post h2 {
  font-size: clamp(1.375rem, 1.2rem + 0.5vw, 1.75rem) !important;
  padding-top: -0.5rem !important;
}
.post-card .elementor-post p {
  font-size: clamp(0.875rem, 0.8rem + 0.5vw, 1rem) !important;
  display: -webkit-box;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
}
.post-card a {
  position: relative;
  display: inline-flex;
}
.post-card a:hover::before {
  transform: scale(1, 1);
}
.post-card a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
  transform: scale(0, 1);
  background-color: #000;
}
.post-card a:hover {
  color: #000;
}

@media screen and (max-width: 767px) {
  .single-post h1.elementor-heading-title {
    font-size: clamp(2.25rem, 2rem + 1vw, 3rem) !important;
  }
}
.portfolio-template-default p {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem) !important;
}

@media screen and (max-width: 767px) {
  .portfolio-template-default p {
    font-size: clamp(1.375rem, 1.2rem + 0.5vw, 1.75rem) !important;
  }
}
.elementor-portfolio__filter:hover {
  color: #ffcc00 !important;
}
.elementor-portfolio__filter.elementor-active {
  color: #ccc !important;
}/*# sourceMappingURL=style.css.map */