@charset "UTF-8";
/*
Theme Name: Rodest Child
Theme URI: https://rodest.qodeinteractive.com
Description: A child theme of Rodest
Author: Elated Themes
Author URI: https://qodeinteractive.com
Version: 1.0
Text Domain: rodest
Template: rodest
*/
/**
 * 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/uploads/2025/07/Kotonomo-Regular-Kw-N.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Kotonomo Bold";
  src: url("/wp-content/uploads/2025/07/Kotonomo-Bold-Kw-N.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Kotonomo Black";
  src: url("/wp-content/uploads/2025/07/Kotonomo-Black-Kw-N.woff2") format("woff2");
  font-weight: 900;
}
@font-face {
  font-family: "Mogra";
  src: url("/wp-content/uploads/2025/07/Mogra-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Olivia";
  src: url("/wp-content/uploads/2025/07/Olivia-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monoton";
  src: url("/wp-content/uploads/2025/07/Monoton-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fascinate";
  src: url("/wp-content/uploads/2025/07/FascinateInline-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/2025/07/Poppins-Light.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/2025/07/Poppins-LightItalic.woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/2025/07/Poppins-Bold.woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/wp-content/uploads/2025/07/Poppins-ExtraBold.woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root,
body,
p,
li {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
}

.qodef-e-categories a {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

h1,
h2,
h3 {
  font-family: "Olivia", "Kotonomo Black", sans-serif !important;
}

h4,
h5,
h6,
.qodef-social-title {
  font-family: "Monoton", "Kotonomo Bold", sans-serif !important;
  font-weight: normal !important;
  text-transform: uppercase;
}

.qodef-page-title .qodef-breadcrumbs a,
.qodef-page-title .qodef-breadcrumbs span {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 14px !important;
}

.qodef-section-title .qodef-highlight-text {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

.qodef-button.qodef-html--link {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

.qodef-portfolio-list .qodef-e-info a,
.qodef-portfolio-list .qodef-m-filter-items a {
  padding-top: 5px !important;
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.qodef-blog .qodef-e-categories-holder a,
.widget.widget_block .wp-block-categories-list li a {
  padding-top: 7px !important;
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.qodef-outlined-title .qodef-m-title {
  font-family: "Poppins", "Kotonomo Black", sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
}

strong,
b {
  display: inline;
  background: linear-gradient(transparent 50%, rgba(255, 63, 5, 0.078) 40%);
  font-size: 110%;
}

*::selection {
  background-color: #e33230;
  color: #fff;
  overflow-y: hidden;
}

.elementor-divider-separator {
  border-color: #e33230 !important;
}

.qodef-m-text {
  padding-top: 5px !important;
  line-height: 1 !important;
}

.qodef-theme-button,
button[type=submit],
input[type=submit] {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.widget .qodef-search-form-button.qodef--button-inside {
  padding-top: 7px !important;
}

table {
  border: none !important;
  border-bottom: 1px solid #e33230 !important;
}

td {
  border-right: 1px solid #e33230 !important;
  border-top: 1px solid #e33230 !important;
  border-left: none !important;
}
td:last-of-type {
  border-right: none !important;
}

th {
  border-right: 1px solid #e33230 !important;
  border-top: 1px solid #e33230 !important;
  border-left: none !important;
  font-family: "Poppins", "Kotonomo Bold", sans-serif !important;
  font-weight: 700 !important;
}

tr {
  border: none !important;
}

thead {
  border-bottom: 3px solid #e33230 !important;
}

.qodef-header-navigation > ul > li > a {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.qodef-header--minimal #qodef-page-header-inner .qodef-fullscreen-menu-opener .qodef-opener-text,
.qodef-opener-icon.qodef-source--predefined.qodef-side-area-opener .qodef-m-icon,
.qodef-mobile-header--minimal #qodef-page-mobile-header-inner .qodef-opener-icon .qodef-opener-text {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.qodef-fullscreen-menu > ul > li > a {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

#qodef-page-inner {
  padding-top: 0 !important;
}

#qodef-page-mobile-header-inner {
  margin: 0 20px !important;
}

.qodef-title--breadcrumbs {
  display: none !important;
}

.menu-item-7663,
.menu-item-7706 {
  margin-right: 0 !important;
}

.menu-item-7664,
.menu-item-7707 {
  margin-left: 0 !important;
}

@media screen and (max-width: 1024px) {
  .qodef-grid.qodef-col-layout--custom > .qodef-grid-inner > .qodef-grid-item:first-child {
    width: 100%;
    margin-bottom: 0;
  }
}
#qodef-page-footer-top-area-inner {
  padding-bottom: 0 !important;
}

#qodef-page-footer-bottom-area-inner .qodef-footer-bottom-list .qodef-footer-bottom-list-item {
  width: 24% !important;
}

@media only screen and (max-width: 1440px) {
  .qodef-grid.qodef-col-layout--custom > .qodef-grid-inner > .qodef-grid-item:first-child {
    width: 25% !important;
  }
}
@media screen and (max-width: 1024px) {
  .qodef-grid.qodef-col-layout--custom > .qodef-grid-inner > .qodef-grid-item:first-child {
    width: 60% !important;
  }
}
#menu-footer-menu-jp {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
}
#menu-footer-menu-jp li {
  height: 1rem !important;
  padding-right: 1rem !important;
  width: auto !important;
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 14px !important;
  line-height: 1 !important;
  border-right: 1px solid #fff !important;
}
#menu-footer-menu-jp li:last-child {
  border-right: none !important;
  margin: 0 0 15px !important;
}

@media screen and (max-width: 1024px) {
  #menu-footer-menu-jp,
  #menu-footer-menu-en {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  #menu-footer-menu-jp li,
  #menu-footer-menu-en li {
    border-right: none !important;
  }
}
#nav_menu-2,
#nav_menu-3 {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
}

#qodef-page-comments {
  margin-top: 0 !important;
  padding-top: 30px !important;
  border-top: 1px solid #e33230 !important;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-image img {
  width: 80px !important;
  border-radius: 50% !important;
}

#qodef-page-comments-list .qodef-comment-item .qodef-e-links > * {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

.elementor-element-3b9a037 div[aria-label="2 / 2"] .qodef-small-image img {
  width: 200px !important;
}
.elementor-element-3b9a037 div[aria-label="1 / 2"] .qodef-small-image img {
  width: 400px !important;
}

.qodef-disperse-portfolio-slider.qodef-layout--disperse .swiper-pagination.swiper-pagination-fraction,
.qodef-disperse-portfolio-slider .qodef-item-holder .qodef-main-info-holder .qodef-m-title .qodef-highlight-text,
.qodef-disperse-portfolio-slider .swiper-button-next .qodef-navigation-text,
.qodef-disperse-portfolio-slider .qodef-disperse-portfolio-slider .swiper-button-prev .qodef-navigation-text {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}
.qodef-disperse-portfolio-slider .qodef-bottom-info-holder * {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1 !important;
}
.qodef-disperse-portfolio-slider .qodef-item-holder .qodef-bottom-info-holder .qodef-e-categories a {
  padding-top: 5px !important;
}

@media screen and (max-width: 1024px) {
  .qodef-disperse-portfolio-slider .qodef-item-holder .qodef-main-info-holder .qodef-small-image {
    margin: 0 auto 0 auto;
  }
}
.qodef-bottom-info-holder {
  display: none !important;
}

.qodef-item-holder .qodef-main-info-holder {
  border-bottom: none !important;
}

#qodef-page-header-inner {
  border-bottom: none !important;
}

@media screen and (max-width: 1024px) {
  #qodef-page-inner {
    padding: 0 0 0 0 !important;
  }
}
.qodef-content-grid {
  width: 100% !important;
}

.elementor-element-2fce51b img {
  width: 100% !important;
  aspect-ratio: 3/1.2 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-bottom: 1px solid #e33230 !important;
  border-top: 1px solid #e33230 !important;
}
@media screen and (max-width: 1024px) {
  .elementor-element-2fce51b img {
    aspect-ratio: 16/9 !important;
  }
}

.privacy-policy .elementor-element-dc66dfc,
.page-id-1860 .elementor-element-dc66dfc,
.page-id-6618 .elementor-element-dc66dfc,
.page-id-7687 .elementor-element-dc66dfc {
  display: none !important;
}

.elementor-author-box {
  background: #e33230 !important;
  padding: 1rem !important;
}
.elementor-author-box .elementor-author-box__avatar {
  margin-right: 20px !important;
}
.elementor-author-box .elementor-author-box__avatar img {
  width: 80px !important;
  border-radius: 50% !important;
}
.elementor-author-box .elementor-author-box__bio {
  font-size: 14px !important;
  line-height: 1.3 !important;
  color: #fff !important;
}
.elementor-author-box .elementor-author-box__name {
  margin-top: 0 !important;
  font-size: 24px !important;
  font-family: "Monoton", "Kotonomo Bold", sans-serif !important;
  color: #fff !important;
}

#qodef-page-sidebar {
  flex-grow: 1 !important;
  border-left: 0 !important;
}

.qodef-page-sidebar-section {
  border-left: 1px solid #e33230 !important;
}

.elementor-widget-container p {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
}

.wp-widget-group__inner-blocks .alignleft {
  margin-right: 0.7rem !important;
}

.elementor-icon-list-item {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-size: 13px !important;
}

.elementor-icon-list-icon {
  margin-top: -3px !important;
}
.elementor-icon-list-icon svg {
  fill: #e33230 !important;
}

.qodef-blog-single-top-holder {
  margin: 0 !important;
  border: none !important;
  padding: 0 0 !important;
}
.qodef-blog-single-top-holder .qodef-e-top-holder {
  display: none !important;
}
.qodef-blog-single-top-holder .qodef-e-media-image img {
  width: 100% !important;
  aspect-ratio: 3/1 !important;
  object-fit: cover !important;
  border-bottom: 1px solid #e33230 !important;
  border-top: 1px solid #e33230 !important;
}
@media screen and (max-width: 1024px) {
  .qodef-blog-single-top-holder .qodef-e-media-image img {
    aspect-ratio: 16/9 !important;
  }
}

aside {
  padding-left: 40px !important;
  border-left: 1px solid #e33230 !important;
}

.single-portfolio-item.qodef-layout--images-small #qodef-page-outer .qodef-content-grid {
  margin: 0 30px !important;
}

#qodef-page-mobile-header-inner {
  padding: 0 0 !important;
}

@media screen and (max-width: 1024px) {
  .single-portfolio-item.qodef-layout--slider-small #qodef-page-outer .qodef-content-grid {
    margin: 0 0 !important;
    padding: 0 20px !important;
  }
  .single-portfolio-item .e-con.e-flex > .e-con-inner {
    padding: 0 0 !important;
  }
}
.qodef-e-counter span {
  font-family: "Poppins", "Kotonomo Regular", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.single-portfolio-item.qodef-layout--slider-small #qodef-page-outer .qodef-content-grid {
  margin: 0 0 !important;
  padding: 0 0 !important;
}

.qodef-img-holder {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  #qodef-page-inner .elementor-location-single,
  .archive #qodef-page-outer {
    padding: 0 20px !important;
  }
}