.page-loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded {
opacity: 0;
visibility: hidden;
} body.loading {
overflow: hidden;
height: 100%;
}
.page-loader-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
}
.page-loader-logo {
width: 200px;
height: auto;
animation: logoFloat 3s ease-in-out infinite;
}
.page-loader-logo img {
width: 100%;
height: auto;
filter: brightness(0) saturate(100%) invert(39%) sepia(11%) saturate(2059%) hue-rotate(143deg) brightness(95%) contrast(89%);
} .page-loader-progress {
width: 200px;
height: 3px;
background-color: rgba(172, 155, 112, 0.2);
border-radius: 2px;
overflow: hidden;
}
.page-loader-progress-bar {
height: 100%;
width: 0%;
background-color: var(--color-accent-main);
border-radius: 2px;
animation: progressBar 2s ease-in-out infinite;
}
@keyframes progressBar {
0% {
width: 0%;
transform: translateX(0);
}
50% {
width: 70%;
transform: translateX(0);
}
100% {
width: 100%;
transform: translateX(0);
}
}
@keyframes logoFloat {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
} :root {
--color-accent-main: #ac9b70;
--color-accent-deep: #8b7a60;
--color-text-body: #4a4a4a;
--color-text-sub: #8a8a8a; --color-bg-light: #f7f6f3;
--color-bg-deep: #2f2d2d;
--org-navy: #223548;
--color-shadow-accent: #FAF8F2; --color-text-base: #444444;
--color-text-secondary: #666666;
--color-text-light: #999999; --border-radius-small: 5px; --border-card-subtle: 1px solid color-mix(in srgb, var(--color-text-sub) 14%, white); --content-width: 1280px;
--content-width-confined: 1120px; --section-article-padding-pc: 120px;
--section-article-padding-sp: 80px;
--section-article-padding-short: 50px; --color-logo-gradient-start: #2f6f72;
--color-logo-gradient-mid: #2a5b5f;
--color-logo-gradient-end: #4f735f; --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
--shadow-deep: 0 8px 16px rgba(0, 0, 0, 0.2);
--shadow-soft:0 8px 20px rgba(0,0,0,.05),0 2px 6px rgba(0,0,0,.02); --shadow-list-item: var(--shadow-soft);
--shadow-list-item-hover: 0 12px 30px color-mix(in srgb, #000 8%, transparent);
--text-shadow-about: 0 0 4px rgba(172,155,112,.45),0 0 12px rgba(172,155,112,.25); --font-family-mincho: "Shippori Mincho", serif; --ease-fade: cubic-bezier(0.25, 0.46, 0.45, 0.94); --bg-effect: radial-gradient(circle at 50% 55%, rgba(255,255,255,.55) 0%, rgba(255,255,255,.18) 45%, rgba(255,255,255,0) 70%),linear-gradient(90deg, rgba(230,242,248,.8) 0%, rgba(243,232,242,.8) 35%, rgba(247,239,228,.8) 65%, rgba(232,241,246,.8) 100%),linear-gradient(180deg, rgba(234,244,251,.8) 0%, rgba(242,236,246,.8) 45%, rgba(247,239,228,.8) 100%);
}
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
*,*::before,*::after {
box-sizing: border-box;
}
body {
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Hiragino Sans","Yu Gothic UI","Yu Gothic",Meiryo,system-ui,sans-serif;
font-size: 14px;
line-height: 1.8;
letter-spacing: 0.02em;
color: var(--color-text-base);
background-color: #f6f7faff;
}
h2,h3 {
font-family: var(--font-family-mincho);
}
a, a:hover, a:visited, a:link {
color: #fff;
font-weight: 500;
} header {
position: fixed !important;
top: 0;
left: 0;
right: 0;
width: 100%;
z-index: 1000 !important; display: flex;
align-items: center;
justify-content: space-between;
background-color: #fff;
box-shadow: var(--shadow-soft);
} header .header_logo_area {
padding-left: 3vw;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
header .header_logo_area h1,
header .header_logo_area .header_logo {
margin: 0;
padding: 0;
position: static;
transform: none;
}
header .header_logo_area h1 a,
header .header_logo_area .header_logo a {
display: block;
}
header .header_logo_area h1 img,
header .header_logo_area .header_logo img {
width: 80px !important;
height: auto; filter: brightness(0) saturate(100%) invert(39%) sepia(11%) saturate(2059%) hue-rotate(143deg) brightness(95%) contrast(89%);
} header .header_menu_area {
flex: 1;
display: flex;
align-items: center;
justify-content: flex-end;
position: relative;
}
header nav {
border-radius: .2vw 0 0 .2vw;
padding: 0 20px; height: 60px; position: static;
margin: inherit;
right: 0;
transform: none;
font-family: var(--font-family-mincho);
}
header nav ul {
display: flex;
height: 100%;
gap: 5px;
}
header nav ul li {
margin: 0;
padding: 0;
display: flex;
align-items: center; height: 100%; }
header nav ul li a {
display: flex;
align-items: center; height: 60%; text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
color: var(--color-accent-main) !important;
padding: 0 10px;
border-radius: var(--border-radius-small);
gap: 4px; 
}
header nav ul li a:hover {
background-color: var(--color-shadow-accent);
transform: translateY(-3px);
} header nav ul li a .external-link-icon {
width: 14px;
height: 14px;
flex-shrink: 0;
opacity: 0.7;
transition: opacity 0.3s ease;
}
header nav ul li a:hover .external-link-icon {
opacity: 1;
}
header nav ul li a[href*="/contact/"] {
background-color: var(--color-accent-main);
color: #fff !important;
padding: 0 20px;
border-radius: var(--border-radius-small);
}
header nav ul li a[href*="/contact/"]:hover {
background-color: var(--color-accent-main);
transform: translateY(-3px);
} div#container.article.lower.form span.essential {
background-color: var(--color-accent-main);
color: #fff;
}
div#container.article.lower.form label,
div#container.article.lower.form table th {
font-family: var(--font-family-mincho);
}
div#container.article.lower.form button[type="submit"].button_confirm,
div#container.article.lower.form button[type="button"].button_confirm {
color: var(--color-accent-deep);
border-color: var(--color-accent-deep);
} header nav ul li.parent_menu {
position: relative;
} header nav ul li.parent_menu::after {
content: '';
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 12px;
pointer-events: none;
}
header nav ul li.parent_menu:hover::after,
header nav ul li.parent_menu:focus-within::after {
pointer-events: auto;
} header nav > ul > li.parent_menu > a::after {
content: 'expand_more' !important;
display: inline-block !important;
background: none !important;
font-family: 'Material Symbols Outlined';
font-weight: normal;
font-style: normal;
font-size: 20px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
color: var(--color-accent-main);
width: auto !important;
height: auto !important;
vertical-align: middle;
transition: transform 0.3s ease, color 0.3s ease;
}
header nav > ul > li.parent_menu:hover > a::after,
header nav > ul > li.parent_menu:focus-within > a::after {
transform: rotate(180deg);
color: var(--color-accent-deep);
} header nav ul li.parent_menu ul.sub_menu {
display: none !important;
flex-direction: column !important;
position: absolute !important;
top: calc(100% + 12px) !important;
left: 50% !important;
transform: translateX(-50%) !important;
background-color: transparent !important;
border-radius: 10px !important;
padding: 0 !important;
width: max-content !important;
min-width: 240px !important;
max-width: 360px !important;
height: auto !important;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
z-index: 1000 !important;
list-style: none !important;
margin: 0 !important;
overflow: hidden !important;
gap: 0 !important;
} header nav ul li.parent_menu:hover ul.sub_menu,
header nav ul li.parent_menu:focus-within ul.sub_menu {
display: flex !important;
} header nav ul li.parent_menu ul.sub_menu > li {
display: block !important;
position: static !important;
float: none !important;
width: 100% !important;
height: auto !important;
min-height: 0 !important;
max-height: none !important;
overflow: visible !important;
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
opacity: 1 !important;
visibility: visible !important;
transform: none !important;
flex: 0 0 auto !important;
background: transparent !important;
} header nav ul li.parent_menu ul.sub_menu > li > a {
display: flex !important;
align-items: center !important;
gap: 6px !important;
padding: 12px 20px 12px 16px !important;
width: 100% !important;
height: auto !important;
min-height: 0 !important;
max-height: none !important;
line-height: 1.5 !important;
text-decoration: none !important;
color: var(--color-text-base) !important;
background-color: #fff !important;
background-image: none !important;
opacity: 1 !important;
visibility: visible !important;
transform: none !important;
transition: background-color 0.3s ease, color 0.3s ease !important;
white-space: nowrap !important;
border: 0 !important;
font-weight: 700 !important;
} header nav ul li.parent_menu ul.sub_menu > li > a::before {
content: 'chevron_right';
font-family: 'Material Symbols Outlined';
font-weight: normal;
font-style: normal;
font-size: 20px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
color: var(--color-accent-main);
flex-shrink: 0;
} header nav ul li.parent_menu ul.sub_menu > li + li > a {
border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
} header nav ul li.parent_menu ul.sub_menu > li > a {
border-radius: 0 !important;
} header nav ul li.parent_menu ul.sub_menu > li:first-child > a {
border-top-left-radius: 10px !important;
border-top-right-radius: 10px !important;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
} header nav ul li.parent_menu ul.sub_menu > li:last-child > a {
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
border-bottom-left-radius: 10px !important;
border-bottom-right-radius: 10px !important;
}
header nav ul li.parent_menu ul.sub_menu > li > a:hover {
background-color: #f7f5f0 !important;
color: var(--color-accent-deep) !important;
transform: none !important;
}
header nav ul li.parent_menu ul.sub_menu > li > a:hover::before {
color: var(--color-accent-deep);
} header .cv {
position: absolute;
top: 0;
right: 0;
z-index: 1001;
} div.front div.top_view {
width: 100%;
margin-left: 50%;
transform: translateX(-50%);
overflow: hidden;
}  @media screen and (min-width: 768px) {
.sec article,
.sec_article article,
.sec_about article,
.sec_business article {
max-width: var(--content-width);
margin-left: auto;
margin-right: auto;
width: 100%;
} div.front .sec_article {
padding-top: var(--section-article-padding-short);
padding-bottom: var(--section-article-padding-short);
} div.front .sec_article article,
div.front .sec_note article,
div.front .sec_business article {
display: grid;
grid-template-columns: 1fr auto;
grid-template-rows: auto auto;
column-gap: 1.5rem;
row-gap: 20px;
align-items: center;
min-width: 0;
}
div.front .sec_article article .front_article_head,
div.front .sec_note article .front_article_head,
div.front .sec_business article .front_article_head {
display: block;
margin-bottom: 0;
min-width: 0;
grid-column: 1;
grid-row: 1;
}
div.front .sec_article article .front_article_body,
div.front .sec_note article .front_article_body,
div.front .sec_business article .front_article_body {
display: contents;
min-width: 0;
}
div.front .sec_article article .front_article_body > ul.list_article.article_list,
div.front .sec_note article .front_article_body > ul.list_article.article_list {
grid-column: 1 / -1;
grid-row: 2;
min-width: 0;
}
div.front .sec_business article .front_article_body > .business_slider_unit {
grid-column: 1 / -1;
grid-row: 2;
min-width: 0;
width: 100%;
max-width: 100%;
}
div.front .sec_article article .front_article_body > .more_link,
div.front .sec_note article .front_article_body > .more_link,
div.front .sec_business article .front_article_body > .more_link {
grid-column: 2;
grid-row: 1;
align-self: center;
justify-self: end;
margin-top: 0;
padding-top: 0;
border-top: none;
width: auto;
flex-shrink: 0;
}
div.front .sec_article article::after,
div.front .sec_note article::after,
div.front .sec_business article::after {
content: "";
grid-column: 1 / -1;
grid-row: 1;
align-self: end;
height: 1px;
width: 100%;
box-sizing: border-box;
pointer-events: none;
background: linear-gradient(
90deg,
transparent 0%,
color-mix(in srgb, var(--color-accent-main) 0%, transparent) 15%,
var(--color-accent-main) 50%,
color-mix(in srgb, var(--color-accent-main) 0%, transparent) 85%,
transparent 100%
);
background-size: 200% 100%;
animation: underline-sweep 5s linear infinite;
opacity: 0.7;
}
div.front .sec_article .front_article_head .section_header,
div.front .sec_note .front_article_head .section_header,
div.front .sec_business .front_article_head .section_header {
grid-column: 1;
grid-row: 1;
margin-bottom: 0;
width: 100%;
box-sizing: border-box;
} div.front .sec.sec_business,
div.front .sec.sec_company,
div.front .sec.sec_recruit {
padding-top: var(--section-article-padding-pc);
padding-bottom: var(--section-article-padding-pc);
} div.front .sec_article .section_header_left .category_tabs,
div.front .sec_note .section_header_left .category_tabs {
justify-content: flex-start;
}
}
.sec {
padding: var(--section-article-padding-short) 0;
background-color: #fff;
opacity: 0;
transform: translateY(30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
.sec.fade-in {
opacity: 1;
transform: translateY(0);
} div.lower .sec {
opacity: 1;
transform: none;
}
div.lower .section_header {
opacity: 1;
transform: none;
}
.section_header {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
margin-bottom: 10px;
border-bottom: solid 1px color-mix(in srgb, var(--color-accent-main) 0%, transparent);
opacity: 0;
transform: translateY(20px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
.section_header.fade-in {
opacity: 1;
transform: translateY(0);
} .section_header::after{
content:"";
position:absolute;
left:0;
bottom:-1px; height:1px; width:100%;
pointer-events:none; background: linear-gradient(
90deg,
transparent 0%,
color-mix(in srgb, var(--color-accent-main) 0%, transparent) 15%,
var(--color-accent-main) 50%,
color-mix(in srgb, var(--color-accent-main) 0%, transparent) 85%,
transparent 100%
);
background-size: 200% 100%;
animation: underline-sweep 5s linear infinite;
opacity: .7;
}
@keyframes underline-sweep{
0%   { background-position: 200% 0; }
100% { background-position: -200% 0; }
} div.front .sec_article .front_article_head .section_header,
div.front .sec_note .front_article_head .section_header,
div.front .sec_business .front_article_head .section_header {
border-bottom: none;
}
div.front .sec_article .front_article_head .section_header::after,
div.front .sec_note .front_article_head .section_header::after,
div.front .sec_business .front_article_head .section_header::after {
content: none;
animation: none;
}
.section_header_left {
flex: 1;
min-width: 0;
position: relative;
} .news_sidebar_nav {
margin-bottom: 30px;
}
.news_sidebar_nav ul {
list-style: none;
padding: 0;
margin: 0;
}
.news_sidebar_nav li {
margin-bottom: 12px;
}
.news_sidebar_link {
display: block;
padding: 8px 12px;
color: var(--color-text-base);
text-decoration: none;
font-size: 14px;
border-radius: 4px;
transition: all 0.3s ease;
cursor: pointer;
}
.news_sidebar_link:hover,
.news_sidebar_link.active {
background-color: var(--color-bg-light);
color: var(--color-accent-main);
}
.category_tabs {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 30px;
}
.category_tab {
padding: 0 16px;
background-color: transparent;
color: var(--color-accent-main);
font-size: 12px;
letter-spacing: 0.05em;
cursor: pointer;
transition: all 0.3s ease;
border-radius: var(--border-radius-small);
font-family: inherit;
}
.category_tab:hover {
background-color: var(--color-accent-main);
color: #ffffff;
}
.category_tab.active {
background-color: var(--color-accent-main);
color: #ffffff;
} .sec_note .category_tabs,
.sec_article .section_header_left .category_tabs {
flex-direction: row;
flex-wrap: wrap;
}
@media (max-width: 767px) {
.section_header {
flex-direction: column;
align-items: flex-start;
} div.front .section_header hgroup {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
width: 100%;
margin-bottom: 16px;
margin-left: auto;
margin-right: auto;
}
div.front .section_header hgroup .section_ttl {
order: 1;
margin-right: 0;
margin-bottom: 0.35em;
text-align: center;
width: 100%;
}
div.front .section_header hgroup .section_ttl::after {
content: none;
}
div.front .section_header hgroup .section_ttl_caption {
order: 2;
text-align: center;
width: 100%;
margin: 0;
}
.section_header_left {
width: 100%;
} div.front .section_header_left {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
div.front .section_header_left .category_tabs {
align-self: stretch;
width: 100%;
margin-bottom: 20px;
} div.front .sec_article .section_header_left .category_tabs {
justify-content: center;
} div.front .sec_article article .front_article_head,
div.front .sec_note article .front_article_head,
div.front .sec_business article .front_article_head {
position: relative;
border-bottom: solid 1px color-mix(in srgb, var(--color-accent-main) 0%, transparent);
}
div.front .sec_article article .front_article_head::after,
div.front .sec_note article .front_article_head::after,
div.front .sec_business article .front_article_head::after {
content: "";
position: absolute;
left: 0;
bottom: -1px;
height: 1px;
width: 100%;
pointer-events: none;
background: linear-gradient(
90deg,
transparent 0%,
color-mix(in srgb, var(--color-accent-main) 0%, transparent) 15%,
var(--color-accent-main) 50%,
color-mix(in srgb, var(--color-accent-main) 0%, transparent) 85%,
transparent 100%
);
background-size: 200% 100%;
animation: underline-sweep 5s linear infinite;
opacity: 0.7;
}
.section_header .more_link {
margin-top: 20px;
width: 100%;
justify-content: center;
box-sizing: border-box;
} div.front .sec_article article .front_article_body,
div.front .sec_note article .front_article_body,
div.front .sec_business article .front_article_body {
margin-top: 0;
padding-top: 5vw;
border-top: 1px solid rgba(0, 0, 0, 0.06);
box-sizing: border-box;
} div.front .sec_article article .front_article_body > .more_link,
div.front .sec_note article .front_article_body > .more_link,
div.front .sec_business article .front_article_body > .more_link {
max-width: 100%;
box-sizing: border-box;
margin-top: 30px;
padding-top: 5vw;
border-top: 1px solid rgba(0, 0, 0, 0.06);
} div.front .sec_article article .front_article_body > .more_link .btn,
div.front .sec_note article .front_article_body > .more_link .btn,
div.front .sec_business article .front_article_body > .more_link .btn,
div.front .sec_about article > .more_link .btn,
div.front .sec_recruit article.top_box .recruit_content .more_link .btn {
width: 90%;
max-width: 100%;
margin-left: auto;
margin-right: auto;
box-sizing: border-box;
}
div.front .sec_article article .front_article_body > .more_link .btn a,
div.front .sec_note article .front_article_body > .more_link .btn a,
div.front .sec_business article .front_article_body > .more_link .btn a,
div.front .sec_about article > .more_link .btn a,
div.front .sec_recruit article.top_box .recruit_content .more_link .btn a {
width: 100%;
max-width: 100%;
box-sizing: border-box;
justify-content: center; padding-left: calc(15px * 1.2 + 30px * 1.2 + 1.25em);
padding-right: calc(15px * 1.2 + 30px * 1.2 + 1.25em);
}
.category_tabs {
flex-direction: column;
gap: 8px;
margin-top: 15px;
} .news_sidebar .category_tabs {
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
}
.category_tab {
padding: 6px 12px;
font-size: 12px;
}
}
div.article .section_header h2.section_ttl,
div.article .section_header h3.section_ttl,
div.article .section_header h4.section_ttl,
div.article .section_header .section_ttl,
h2.section_ttl.section_ttl,
h3.section_ttl.section_ttl,
h4.section_ttl.section_ttl,
.section_ttl.section_ttl {
margin-bottom: 20px;
margin-right: 10px;
height: auto;
font-size: 2.5rem;
color: var(--color-accent-deep);
line-height: 1.4em;
letter-spacing: 0.02em;
}
.section_ttl::after {
content: "   /   ";
font-size: 18px;
font-weight: 400;
letter-spacing: 0.08em;
color: var(--color-accent-deep);
}
.section_ttl_caption {
color: var(--color-text-light);
font-size: 0.9rem;
}
@media screen and (max-width: 768px) {
div.article .section_ttl.deco_ttl {
font-size: 26px;
line-height: 1.5;
height: auto;
}
} #container.article.lower.page-career .section_ttl.deco_ttl::before,
#container.article.lower.page-career .section_ttl.deco_ttl::after,
#container.article.lower.page-environment .section_ttl.deco_ttl::before,
#container.article.lower.page-environment .section_ttl.deco_ttl::after,
#container.article.lower.page-welfare .section_ttl.deco_ttl::before,
#container.article.lower.page-welfare .section_ttl.deco_ttl::after {
content: none !important;
display: none !important;
}
#container.article.lower.page-career .column_1 main h2 {
margin-bottom: 30px;
} #container.article.lower.page-environment .lead {
font-family: var(--font-family-mincho);
color: var(--color-accent-deep);
}
#container.article.lower.page-environment .outline_txt {
font-family: var(--font-family-mincho);
}
div.lower .sec_environment_outline .outline_txt > strong {
color: var(--color-accent-main);
}
div.lower .sec_environment_outline {
padding-bottom: 0;
}
div.lower .sec_environment_outline ul {
padding: 0;
}
div.lower .sec_environment_outline::after {
content: none !important;
display: none !important;
}
#container.article.lower.page-environment h3,
#container.article.lower.page-welfare h3 {
color: var(--color-accent-deep);
} #container.article.lower.page-environment .more_link {
display: flex;
justify-content: center;
width: 100%;
box-sizing: border-box;
margin-top: 40px;
} div.lower .sec_career .career_flex {
margin-bottom: 0;
}
@media screen and (max-width: 767px) {
div.lower .sec_career .career_flex .career_item {
width: 220px;
height: 220px;
border-radius: 50%;
}
} #container.article.lower.page-environment .column_1 main > section.sec {
background-color: transparent !important;
padding-top: 0;
padding-bottom: 0;
padding-left: clamp(16px, 3vw, 40px);
padding-right: clamp(16px, 3vw, 40px);
margin-bottom: 28px;
}
#container.article.lower.page-environment .column_1 main > section.sec:first-of-type {
margin-top: clamp(16px, 3vw, 32px);
}
#container.article.lower.page-environment .column_1 main > section.sec:last-of-type {
margin-bottom: 0;
}
#container.article.lower.page-environment .column_1 main > section.sec > article {
background-color: #fff;
border-radius: var(--border-radius-small);
box-shadow: var(--shadow-list-item);
border: var(--border-card-subtle);
box-sizing: border-box;
padding: clamp(28px, 4vw, 52px);
max-width: 1040px;
margin-left: auto;
margin-right: auto;
}
#container.article.lower.page-environment .sec_career {
padding-top: 0;
} #container.article.lower.page-company .section_ttl.deco_ttl.deco_ttl_left::before,
#container.article.lower.page-company .section_ttl.deco_ttl.deco_ttl_left::after {
content: none !important;
display: none !important;
} div.lower .sec_history .history_list .history_item_wrap {
box-shadow: var(--shadow-list-item);
border: var(--border-card-subtle);
box-sizing: border-box;
} div.lower .sec_history .history_list .history_item_wrap dt {
font-family: var(--font-family-mincho);
color: var(--color-accent-deep);
} div.lower .sec_history .history_list .history_item_wrap dt::before,
div.lower .sec_history .history_list .history_item_wrap dt::after {
background-color: var(--color-accent-deep);
}
div.lower .sec_history dl.history_list.accordion dd span {
color: var(--color-accent-deep);
} div.lower .sec_access .access_flex .text_box h3 {
color: var(--color-accent-deep);
}
div.lower .sec_access .map_box {
overflow: hidden;
border-radius: var(--border-radius-small);
}
div.lower .sec_access .map_box iframe {
display: block;
width: 100%;
max-width: 100%;
border: 0;
border-radius: var(--border-radius-small);
}
#career_02 article > p {
margin-bottom: 20px;
}  div.lower .sec_office .office_tbl_wrap h3.section_ttl,
div.lower .sec_office .office_tbl_wrap h4.section_ttl,
div.lower .sec_group_company .office_tbl_accordion_head h4.section_ttl {
font-family: var(--font-family-mincho);
font-size: 1.1rem;
font-weight: bold;
margin-bottom: 0;
margin-right: 0;
}
div.lower .sec_office .office_tbl_wrap .section_ttl::after,
div.lower .sec_group_company .office_tbl_accordion_head .section_ttl::after {
content: none;
display: none;
}
div.lower .sec_office .office_tbl_wrap:not(:last-child) {
margin-bottom: 0;
} div.lower .page_ttl > p.lead,
div.lower .group_list_wrap > .lead p {
text-align: center;
line-height: 1.75;
font-size: clamp(0.95rem, 1.6vw, 1.05rem);
font-weight: normal;
margin: clamp(12px, 2vw, 20px) auto 40px;
}
div.lower .group_list_wrap > .lead p:not(:last-child) {
margin-bottom: 1em;
} div.lower .sec_office.bg_beige > article,
div.lower .sec_group_company.bg_beige > article {
box-shadow: var(--shadow-list-item);
border-radius: var(--border-radius-small, 8px);
padding: 50px 30px;
}
@media screen and (max-width: 768px) {
div.lower .sec_office.bg_beige > article,
div.lower .sec_group_company.bg_beige > article {
padding: 30px 15px;
}
} div.lower .sec_group_company.bg_beige {
padding-top: var(--section-article-padding-short);
} div.lower .sec_office .office_tbl_flex {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 20px);
align-items: start;
}
div.lower .sec_office .office_tbl_wrap {
width: 100%;
max-width: none;
padding: 20px;
box-sizing: border-box;
border-radius: var(--border-radius-small);
}
@media screen and (min-width: 769px) {
div.lower .sec_office {
padding-bottom: 0px;
}
}
div.lower .group_list_wrap .group_list_flex {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: clamp(16px, 2.5vw, 20px);
align-items: start;
list-style: none;
padding: 0;
margin: 0;
}
div.lower .group_list_wrap .group_list_flex .item {
width: 100%;
max-width: none;
padding: 20px;
border-radius: var(--border-radius-small);
} div.lower .office_tbl_accordion_head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
cursor: pointer;
margin: 0 0 0 0;
}
div.lower .office_tbl_accordion_head h4.section_ttl {
font-family: var(--font-family-mincho);
flex: 1 1 auto;
min-width: 0;
text-align: center;
border-radius: var(--border-radius-small);
}
div.lower .office_tbl_accordion_head:focus {
outline: none;
}
div.lower .office_tbl_accordion_head:focus-visible {
box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent-main) 45%, white);
border-radius: var(--border-radius-small);
}
div.lower .office_tbl_accordion_icon.material-symbols-outlined {
color: var(--color-accent-main);
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
user-select: none;
} div.lower .office_tbl_accordion_panel {
display: grid;
grid-template-rows: 0fr;
transition: grid-template-rows 0.45s ease;
}
div.lower .office_tbl_accordion_panel.office_tbl_accordion_panel--open {
grid-template-rows: 1fr;
}
div.lower .office_tbl_accordion_panel_inner {
overflow: hidden;
min-height: 0;
}
@media (prefers-reduced-motion: reduce) {
div.lower .office_tbl_accordion_panel {
transition: none;
}
}
@media (max-width: 1100px) {
div.lower .sec_office .office_tbl_flex,
div.lower .group_list_wrap .group_list_flex {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {
div.lower .sec_office .office_tbl_flex,
div.lower .group_list_wrap .group_list_flex {
grid-template-columns: 1fr;
}
}
div.lower .sec_office .office_tbl_wrap table,
div.lower .group_list_wrap .group_list_flex .item table,
div.lower .sec_company .company_wrap table,
div.lower .sec_holiday table {
border-collapse: collapse;
}
div.lower .sec_office .office_tbl_wrap table th,
div.lower .sec_office .office_tbl_wrap table td,
div.lower .group_list_wrap .group_list_flex .item table th,
div.lower .group_list_wrap .group_list_flex .item table td,
div.lower .sec_company .company_wrap table th,
div.lower .sec_company .company_wrap table td,
div.lower .sec_holiday table th,
div.lower .sec_holiday table td {
border-width: 1px 0;
text-align: left;
border-style: solid;
border-color: color-mix(in srgb, var(--color-text-sub) 22%, white);
}
div.lower .sec_office .office_tbl_wrap table tr:first-child th,
div.lower .sec_office .office_tbl_wrap table tr:first-child td,
div.lower .group_list_wrap .group_list_flex .item table tr:first-child th,
div.lower .group_list_wrap .group_list_flex .item table tr:first-child td,
div.lower .sec_company .company_wrap table tr:first-child th,
div.lower .sec_company .company_wrap table tr:first-child td,
div.lower .sec_holiday table tr:first-child th,
div.lower .sec_holiday table tr:first-child td {
border-top: none;
}
div.lower .sec_office .office_tbl_wrap table tr:last-child th,
div.lower .sec_office .office_tbl_wrap table tr:last-child td,
div.lower .group_list_wrap .group_list_flex .item table tr:last-child th,
div.lower .group_list_wrap .group_list_flex .item table tr:last-child td,
div.lower .sec_company .company_wrap table tr:last-child th,
div.lower .sec_company .company_wrap table tr:last-child td,
div.lower .sec_holiday table tr:last-child th,
div.lower .sec_holiday table tr:last-child td {
border-bottom: none;
}
div.lower .sec_office .office_tbl_wrap table th,
div.lower .group_list_wrap .group_list_flex .item table th,
div.lower .sec_company .company_wrap table th,
div.lower .sec_holiday table th {
padding-left: 0;
}
div.lower .sec_office .office_tbl_wrap table td,
div.lower .group_list_wrap .group_list_flex .item table td,
div.lower .sec_company .company_wrap table td,
div.lower .sec_holiday table td {
padding-left: 30px;
padding-right: 0;
} @media screen and (max-width: 568px) {
div.lower .sec_office .office_tbl_wrap table td,
div.lower .sec_office .office_tbl_wrap table th {
padding: 15px;
}
div.lower .group_list_wrap .group_list_flex .item table td,
div.lower .group_list_wrap .group_list_flex .item table th {
padding: 15px;
}
} div.lower .group_list_wrap .group_list_flex .item.office_tbl_accordion > .image_wrap {
height: 90px;
max-width: 100%;
margin: clamp(8px, 1.5vw, 16px) auto 4px;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
cursor: pointer;
}
div.lower .group_list_wrap .group_list_flex .item .image_wrap img {
max-width: 80%;
max-height: 80%;
width: auto;
height: auto;
object-fit: contain;
} div.lower .group_list_wrap .group_list_flex .item table td a.group_company_hp_link {
color: var(--color-accent-main);
text-decoration: underline;
text-underline-offset: 0.15em;
word-break: break-all;
}
div.lower .group_list_wrap .group_list_flex .item table td a.group_company_hp_link:hover,
div.lower .group_list_wrap .group_list_flex .item table td a.group_company_hp_link:focus-visible {
color: var(--color-accent-deep);
}
div.lower .sec_company .company_wrap {
background-color: #fff;
border-radius: var(--border-radius-small);
padding: clamp(18px, 3vw, 32px);
box-sizing: border-box;
} div.lower .sec_company .sec_office_in_group {
display: block;
width: 100%;
max-width: 100%;
margin: clamp(28px, 4vw, 48px) 0 0;
padding: 0;
box-sizing: border-box;
}
div.lower .sec_company .sec_office_in_group .eternal_cast_offices_ttl {
width: 100%;
margin: 0 0 clamp(16px, 2.5vw, 24px);
padding: 0;
color: var(--color-accent-deep, var(--color-text-main));
font-family: var(--font-family-mincho, serif);
font-size: clamp(1.2rem, 2.4vw, 1.6rem);
font-weight: bold;
line-height: 1.4;
text-align: center;
}
div.lower .sec_company .sec_office_in_group .office_tbl_flex {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
.box_shadow,
div.lower .sec_data .data_list_flex .item,
div.lower .group_list_wrap .group_list_flex .item,
div.lower .sec_office .office_tbl_wrap,
div.lower .sec_company .company_wrap {
box-shadow: var(--shadow-list-item);
}
div.lower .sec_data .data_list_flex .item h2 {
color: var(--color-accent-deep);
}
div.lower .sec_data .data_list_note {
margin-top: clamp(28px, 5vw, 50px);
color: var(--color-text-sub);
font-weight: 400;
text-align: center;
line-height: 1.6;
} div.lower .number_list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 1.25rem;
}
div.lower .number_list > .item {
margin: 0;
padding: 1.5rem clamp(1rem, 4vw, 2rem);
background: #fff;
border: none !important;
border-radius: var(--border-radius-small);
box-shadow: var(--shadow-list-item);
box-sizing: border-box;
}
div.lower .number_list .item h3 {
color: var(--color-accent-deep);
}
div.lower .number_list .item h3 span {
color: var(--color-accent-main);
} #container.article.lower.news .sec_article .section_header_left,
#container.article.lower.note .sec_article .section_header_left {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
#container.article.lower.news .sec_article .category_tabs,
#container.article.lower.note .sec_article .category_tabs {
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 100%;
max-width: 100%;
margin-top: 0;
margin-bottom: 8px;
gap: 8px;
} @media screen and (max-width: 768px) {
#container.article.lower.news div.lower_top {
background-image: url(//www.eternal-cast.com/wp/wp-content/eternal-cast-theme-v2/assets/img/lower/img_ttl_bg_03_sp.png) !important;
}
} @media screen and (max-width: 768px) {
#container.article.lower.note div.lower_top {
background-image: url(//www.eternal-cast.com/wp/wp-content/eternal-cast-theme-v2/assets/img/lower/img_ttl_bg_09_sp.png) !important;
}
}
.sec hgroup,
.catchcopy {
text-shadow: var(--text-shadow-about);
}
.sec hgroup {
position: relative;
display: flex;
align-items: center;
padding-bottom: 20px;
}
.catchcopy {
color: #fff;
font-size: clamp(2em, 3.2vw, 3.5vw);
font-family: var(--font-family-mincho);
letter-spacing: .05em;
line-height: 1.5;
width: fit-content;
font-weight: 600;
} .catchcopy .char {
display: inline-block;
opacity: 0;
transform: translateY(20px);
animation: charFadeIn 0.8s var(--ease-fade) forwards;
}
@keyframes charFadeIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.caption {
letter-spacing: 0.1em;
font-family: var(--font-family-mincho);
color: var(--color-accent-deep);
font-size: 1rem;
font-weight: 600;
}  .btn a, .btn a:hover, .btn a:visited, .btn a:link { color: var(--color-accent-main); } .more_link .btn a {
display: flex;
align-items: center;
justify-content: flex-end;
position: relative;
margin: 0;
font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Meiryo", serif;
font-size: 16px;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #fff;
padding: 0.7vw 5vw;
white-space: nowrap;
box-shadow: none;
pointer-events: auto;
width: max-content;
transition: all 0.3s ease;
min-width: auto;
background: var(--color-accent-deep);
box-shadow: var(--shadow-deep);
border-radius: var(--border-radius-small);
border: none;
} .more_link .btn a::after {
content: "" !important;
display: block;
right: 15px;
width: 30px;
height: 30px;
margin-left: 10px;
border-radius: 50%;
border: 1px solid #fff;
background-color: transparent;
z-index: 1;
position: absolute;
transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
} .more_link .btn a::before {
content: "" !important;
position: absolute;
right: 20px;
top: 50%;
width: 17px;
height: 17px;
transform: translateY(-50%);
background-color: #fff;
-webkit-mask-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/link_01.svg);
mask-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/link_01.svg);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-size: 17px 17px;
mask-size: 17px 17px;
pointer-events: none;
z-index: 2;
transition: background-color 0.3s ease, transform 0.3s ease, -webkit-mask-image 0.15s ease;
} .more_link .btn a:hover {
background: var(--color-text-base);
box-shadow: 0 1px 1px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.04);
transform: translateX(5px);
}
.more_link .btn a:hover::before {
background-color: var(--color-text-base);
transform: translate(3px, -50%);
-webkit-mask-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/link_02.svg);
mask-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/link_02.svg);
}
.more_link .btn a:hover::after {
background: #fff;
color: #ffffff;
transform: translateX(3px);
} .article_nav .more_link {
display: flex;
justify-content: center;
width: 100%;
box-sizing: border-box;
}
.article_nav .more_link .btn a {
justify-content: flex-start;
padding: 0.7vw 5vw 0.7vw calc(15px + 50px + 18px);
}
.article_nav .more_link .btn a::after {
left: 15px;
right: auto;
margin-left: 0;
}
.article_nav .more_link .btn a::before {
left: 21px;
right: auto;
transform: translateY(-50%) scaleX(-1);
}
.article_nav .more_link .btn a:hover {
transform: translateX(-5px);
}
.article_nav .more_link .btn a:hover::before {
transform: translate(-3px, -50%) scaleX(-1);
}
.article_nav .more_link .btn a:hover::after {
transform: translateX(-3px);
} @media screen and (max-width: 767px) {
.more_link {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
box-sizing: border-box;
}
.article_nav .more_link {
justify-content: center;
}
.more_link .btn a {
font-size: calc(16px * 1);
box-sizing: border-box; padding-top: calc(2vw * 1.8);
padding-bottom: calc(2vw * 1.8);
padding-left: calc(5vw * 1.5);
padding-right: calc(15px * 1.2 + 30px * 1.2 + 1.25em);
}
.article_nav .more_link .btn a {
padding-left: calc(15px * 1.2 + 30px * 1.2 + 1.25em);
padding-right: calc(5vw * 1.5);
padding-top: calc(5vw * 1.5);
padding-bottom: calc(5vw * 1.5);
}
.more_link .btn a::after {
width: calc(30px * 1.2);
height: calc(30px * 1.2);
right: calc(15px * 1.2);
margin-left: calc(10px * 1.2);
}
.article_nav .more_link .btn a::after {
left: calc(15px * 1.2);
right: auto;
margin-left: 0;
}
.more_link .btn a::before {
width: calc(17px * 1.2);
height: calc(17px * 1.2);
right: calc(20px * 1.2);
-webkit-mask-size: calc(17px * 1.2) calc(17px * 1.2);
mask-size: calc(17px * 1.2) calc(17px * 1.2);
}
.article_nav .more_link .btn a::before {
left: calc(21px * 1.2);
right: auto;
transform: translateY(-50%) scaleX(-1);
}
.article_nav .more_link .btn a:hover::before {
transform: translate(-3px, -50%) scaleX(-1);
}
.sec_recruit article.top_box .recruit_content .more_link {
justify-content: center;
}
}
@media screen and (max-width: 1080px) {
header div.inner {
height: 80px !important;
}
} .top_view {
height: 100vh;
position: relative;
overflow: hidden;
} .top_view video.fv_bg_video,
div.front div.top_view > video {
position: absolute !important;
inset: 0 !important;
width: 100% !important;
height: 100% !important;
max-width: none !important;
object-fit: cover;
z-index: 0 !important;
pointer-events: none;
}
.top_view::before {
content: "";
inline-size: 100%;
block-size: 100%;
position: absolute;
top: 0px;
left: 0px;
z-index: 1;
background-color: #03070c4a;
background-image: radial-gradient(#ffffff24 30%, transparent 31%), radial-gradient(#ffffff36 30%, #00000000 31%);
background-size: 4px 4px, 4px 4px, cover;
background-position: 0 0, 2px 2px, center;
transition: 0.3s;
} .sp_br {
display: none;
} .br_pc_only {
display: none;
} div.top_view .fv_copy {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 20;
text-align: center;
}
div.top_view .fv_copy .fv_logo {
margin-bottom: 35px;
display: flex;
justify-content: center;
align-items: center;
}
div.top_view .fv_copy .fv_logo img,
img.fv_logo_img {
max-width: 320px;
width: auto;
height: auto;
display: block;
}
@media screen and (min-width: 769px) {
.br_pc_only {
display: block;
}
}
@media screen and (max-width: 768px) {
.sp_br {
display: block;
}
div.top_view .fv_copy {
width: min(94vw, 560px);
left: 50%;
top: 38%;
right: auto;
transform: translate(-50%, -50%);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 20;
}
div.top_view .fv_copy .fv_logo {
flex-shrink: 0;
}
div.top_view .fv_copy .fv_logo img.fv_logo_img {
max-width: min(72vw, 260px);
width: min(72vw, 260px);
height: auto;
} div.top_view .fv_copy .caption,
div.top_view .fv_copy .catchcopy {
text-align: center;
width: 100%;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
div.top_view .fv_copy .caption {
font-size: clamp(1.05rem, 4.5vw, 1.45rem);
line-height: 1.55;
letter-spacing: 0.08em;
margin-bottom: 20px;
}
div.top_view .fv_copy .catchcopy {
font-size: clamp(2.45rem, 10vw, 4rem);
line-height: 1.1;
letter-spacing: 0.05em;
} div.front .top_view .fv_copy {
z-index: 30 !important;
}
div.front .top_view .fv_logo {
display: flex !important;
width: auto !important;
max-width: 100% !important;
flex-shrink: 0 !important;
overflow: visible !important;
}
div.front .top_view img.fv_logo_img {
display: block !important;
width: min(72vw, 260px) !important;
max-width: min(72vw, 260px) !important;
min-width: 140px !important;
height: auto !important;
opacity: 1 !important;
visibility: visible !important;
position: relative;
z-index: 31 !important;
flex: none !important;
}
}
div.top_view .fv_copy .caption {
color: #fff;
} div.top_view .fv_recruit_area {
position: absolute;
bottom: 40px;
right: 40px;
z-index: 100;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 5px;
} div.top_view .fv_balloon {
position: relative;
background-color: transparent;
width: 280px;
}
.fv_balloon_text {
color: #fff;
font-size: 16px;
line-height: 1.8;
margin: 0;
font-family: var(--font-family-mincho);
text-align: end;
text-shadow: var(--text-shadow-about);
}
.fv_balloon_text_small {
font-size: 12px;
color: #fff;
}
@media screen and (max-width: 768px) { div.top_view .fv_recruit_area {
left: 50%;
right: auto;
transform: translateX(-50%);
bottom: 130px;
gap: 15px;
align-items: center;
width: min(calc(100% - 32px), 300px);
max-width: 100%;
}
div.top_view .fv_balloon {
width: 100%;
max-width: 280px;
align-self: center;
}
div.top_view .fv_balloon_text {
font-size: 14px;
line-height: 1.6;
text-align: center;
}
div.top_view .fv_balloon_text_small {
font-size: 12px;
}
div.top_view .fv_recruit_area > p {
text-align: center;
width: 100%;
}
div.top_view .fv_recruit_card {
width: 200px;
max-width: 100%;
height: 80px;
align-self: center;
}
div.top_view .fv_recruit_card_image {
width: 100px;
}
} div.top_view .fv_recruit_card {
position: relative;
display: flex;
flex-direction: row;
align-items: center;
border: 1px solid rgba(255, 255, 255, 0.8);
border-radius: var(--border-radius-small);
padding: 4px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
width: 280px;
height: 90px;
background: #ffffff24;
overflow: hidden;
}
div.top_view .fv_recruit_card::after {
animation: 2s 2s shine linear infinite;
background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.3) 50%, rgba(255, 255, 255, 0) 75%);
content: '';
height: 100%;
left: -100%;
position: absolute;
top: 0;
transform: skewX(-15deg);
width: 100%;
}
div.top_view .fv_recruit_card:hover {
color: #fff;
}
@keyframes shine {
20% {
left: 100%;
}
100% {
left: 100%;
}
}
div.top_view .fv_recruit_card:hover {
background-color: rgba(255, 255, 255, 1);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.fv_recruit_card_image {
flex-shrink: 0;
width: 120px;
height: 100%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
border-radius: var(--border-radius-small);
}
.fv_recruit_card_image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.fv_recruit_card_left {
flex: 1;
padding: 12px;
text-align: center;
}
.fv_recruit_card_label {
color: #fff;
font-size: 16px;
font-weight: 600;
margin: 0;
font-family: var(--font-family-mincho);
letter-spacing: 0.05em;
}
.fv_recruit_card_right {
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
flex-shrink: 0;
background-color: #fff;
border-radius: var(--border-radius-small);
}
.fv_recruit_card_arrow {
width: 20px;
height: 20px;
color: var(--color-accent-deep);
transition: transform 0.3s ease;
}
div.top_view .fv_recruit_card:hover .fv_recruit_card_arrow {
transform: translateX(4px);
}
div.top_view .fv_recruit_card:hover .fv_recruit_card_label {
color: var(--color-accent-main);
}
.fv-scroll {
position: absolute;
bottom: 0;
left: 50%;
margin: 0 auto;
transform: translateX(-50%);
z-index: 5;
}
.fv-scroll-inner {
color: #fff;
padding-bottom: 85px;
display: inline-block;
letter-spacing: 0.23em;
position: relative;
text-shadow: var(--text-shadow-about);
font-family: var(--font-family-mincho);
}
.fv-scroll-inner:before,
.fv-scroll-inner:after {
content: '';
position: absolute;
left: 50%;
height: 58px;
width: 2px;
bottom: 32px;
transform: translateX(-50%);
height: 50px;
top: 40px;
}
.fv-scroll-inner:before {
background-color: #ffffff9f;
}
.fv-scroll-inner:after {
background-color: #fff;
animation: stretch 2.5s ease infinite;
}
@keyframes stretch {
0% {
transform-origin: top center;
transform: scaleY(0);
}
49.9% {
transform-origin: top center;
transform: scaleY(1);
}
50% {
transform-origin: bottom center;
transform: scaleY(1);
}
99.9% {
transform-origin: bottom center;
transform: scaleY(0);
}
100% {
transform-origin: top center;
transform: scaleY(0);
}
}
@media screen and (max-width: 768px) {
div.front div.top_view #top_slider .fv_copy .fv_copy_text {
font-size: 2.5em;
}
}   .news_layout_wrapper {
display: flex;
gap: 40px;
width: 100%;
margin-top: 30px;
} .news_sidebar {
flex-shrink: 0;
width: 200px;
}
.news_content_area {
flex: 1;
}
ul.list_article {
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
max-width: 100% !important;
margin: 0;
} .sec_note ul.list_article.article_list,
.sec_article ul.list_article.article_list {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-auto-rows: 1fr;
gap: 2vw;
}
ul.list_article li,
.article_list > li {
display: flex;
flex-direction: row;
gap: 20px;
position: relative;
border-radius: 0;
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
background: transparent;
overflow: visible;
padding: 0;
opacity: 0;
transform: translateX(-30px);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sec_note ul.list_article.article_list > li,
.sec_note .article_list > li,
.sec_article ul.list_article.article_list > li {
display: flex;
flex-direction: column;
height: 100%;
border-radius: 5px;
background: #fff;
overflow: hidden;
padding: 15px 0 0;
border-bottom: none;
box-shadow: var(--shadow-list-item);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade), box-shadow 0.3s ease;
}
ul.list_article li:last-child {
border-bottom: none;
padding-bottom: 0;
}
ul.list_article li.fade-in,
.article_list > li.fade-in {
opacity: 1;
transform: translateX(0);
border: solid 5px #fff;
}
ul.list_article li:hover{
transform: translateX(0);
}
.sec_note ul.list_article.article_list > li:hover,
.sec_article ul.list_article.article_list > li:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-list-item-hover);
}
ul.list_article .news_thumbnail::after{
content:"";
position:absolute;
inset:0;
background:rgba(255,255,255,0); transition:background .3s ease;
pointer-events:none;
}
ul.list_article li:hover .news_thumbnail::after{
background:rgba(255,255,255,.25); }
ul.list_article .news_content {
width: 100%;
} ul.list_article .news_thumbnail {
flex-shrink: 0;
width: 150px;
height: 110px;
position: relative;
overflow: hidden;
background: rgb(247 247 247);
margin: 0;
border-radius: var(--border-radius-small);
}
.sec_note ul.list_article.article_list .news_thumbnail,
.sec_article ul.list_article.article_list .news_thumbnail {
width: 100%;
max-width: 100%;
box-sizing: border-box;
aspect-ratio: 1 / 1;
min-height: 180px;
margin: -14px;
margin-bottom: 0;
border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
}
.list_article .news_thumbnail::after{
content:"";
position:absolute;
inset:0;
background: rgba(68, 102, 83, .06); pointer-events:none;
}
.list_article .news_thumbnail img {
width: 100%;
object-fit: cover;
object-position: center;
transform: none;
transition: transform .4s ease;
transform: scale(1);
} .list_article li:hover .news_thumbnail img {
transform: scale(1.05);
} .list_article .news_thumbnail a {
display: block;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
.list_article .content_wrapper {
flex: 1;
display: flex;
flex-direction: row;
gap: 10px;
align-items: flex-start;
}
.sec_note .list_article .content_wrapper,
.sec_article ul.list_article.article_list .content_wrapper {
padding: 0 20px 20px;
width: 100%;
display: flex;
flex-direction: column;
} .list_article .news_meta_wrapper {
display: flex;
flex-direction: column;
gap: 0;
flex-shrink: 0;
width: 120px;
align-items: center;
justify-content: flex-start;
}
.sec_note .list_article .news_meta_wrapper,
.sec_article ul.list_article.article_list .news_meta_wrapper {
display: flex;
justify-content: space-between;
width: 100%;
margin-bottom: 0;
flex-direction: row;
gap: 0;
flex-shrink: 1;
align-items: flex-start;
}
.list_article .news_cat {
position: static;
z-index: auto;
pointer-events: auto;
margin-bottom: 0;
} .sec_note .list_article .news_cat,
.sec_article ul.list_article.article_list .news_cat,
div.front .sec_note ul.list_article .news_cat,
div.front .sec_article ul.list_article .news_cat {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
gap: 6px;
flex: 1;
min-width: 0;
}
.list_article .news_cat .cat {
margin: 0;
font-size: 0.85rem; border-radius: 4px;
}
.list_article .news_cat .cat span {
font-size: 12px;
padding: 4px 10px;
border-radius: 999px; } .list_article .news_content .news_meta {
position: static;
box-sizing: border-box;
margin: 0;
z-index: auto;
background: transparent;
padding: 0;
pointer-events: auto;
overflow: visible;
order: 1; }
.sec_note .list_article .news_meta_wrapper .news_meta,
.sec_article ul.list_article.article_list .news_meta_wrapper .news_meta {
position: static;
box-sizing: border-box;
margin: 0;
z-index: auto;
background: transparent;
padding: 0;
pointer-events: auto;
overflow: visible;
} ul.list_article p.cat a, ul.list_article p.cat span,
.list_article .news_cat .cat span {
min-width: 60px;
}
.list_article .news_meta .date,
.list_article .news_meta .date time {
font-size: 14px;
color: var(--color-text-light);
}
.list_article .news_meta .date {
pointer-events: auto;
margin: 0;
font-weight: 500;
line-height: 1.4;
}
.list_article .news_meta .date time {
opacity: .7;
} .list_article .news_content {
flex: 1;
position: relative;
display: flex;
flex-direction: column;
gap: 8px;
}
.sec_note .list_article .news_content,
.sec_article ul.list_article.article_list .news_content {
width: 100%;
position: relative;
display: block;
} .list_article .news_content h3 {
width: 100%;
max-width: 100%;
background-image: none !important;
margin: 0 !important;
padding-right: 0 !important;
font-size: 16px;
font-weight: 500;
line-height: 1.6;
order: 2; }
.sec_note .list_article .news_content h3,
.sec_article ul.list_article.article_list .news_content h3 {
margin: 6px 0 0 !important;
order: unset;
}
.sec_note .list_article .news_content h3 a,
.sec_article ul.list_article.article_list .news_content h3 a {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
line-height: 1.6;
}
.sec_note .list_article .note_staff_info,
.sec_article ul.list_article.article_list .note_staff_info {
width: 100%;
max-width: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-end;
} .list_article h2 a,
.list_article h3 a,
.list_article .news_content h3 a {
color: var(--color-text-base);
text-decoration: none;
} .list_article li:hover h2 a,
.list_article li:hover h3 a,
.list_article li:hover .news_content h3 a {
color: var(--color-accent-main);
text-decoration: none;
} .list_article .news_content h3 a {
display: block;
line-height: 1.6;
letter-spacing: .05em;
} @media screen and (max-width: 768px) {
.news_layout_wrapper {
flex-direction: column;
gap: 20px;
}
.news_sidebar {
width: 100%;
}
.news_sidebar_nav {
margin-bottom: 20px;
}
.category_tabs {
flex-direction: column;
gap: 5px;
}
.news_sidebar .category_tabs {
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
}
ul.list_article li,
.sec_note ul.list_article.article_list > li,
.sec_article ul.list_article.article_list > li {
flex-direction: column;
gap: 15px;
}
ul.list_article .news_thumbnail {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
min-height: 0;
}
.list_article .news_content h3 {
font-size: 16px;
}
.list_article .news_meta .date time {
font-size: 12px;
} ul.list_article > li.js-card .content_wrapper {
flex-direction: column;
align-items: stretch;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
ul.list_article > li.js-card .news_meta_wrapper {
width: 100%;
max-width: 100%;
flex-shrink: 0;
align-items: flex-start;
}
ul.list_article > li.js-card .news_content {
width: 100%;
max-width: 100%;
min-width: 0;
flex: 1 1 auto;
align-self: stretch;
}
ul.list_article > li.js-card .news_content h3 {
width: 100%;
max-width: 100%;
min-width: 0;
box-sizing: border-box;
}
ul.list_article > li.js-card .news_content h3 a {
width: 100%;
max-width: 100%;
box-sizing: border-box;
} .sec_note ul.list_article.article_list,
.sec_article ul.list_article.article_list {
grid-template-columns: 1fr;
gap: 20px;
} #container.article.lower.news .sec_article ul.list_article.article_list,
#container.article.lower.note .sec_article ul.list_article.article_list {
grid-template-columns: 1fr 1fr;
gap: 12px;
} div.front .sec_article ul.list_article.article_list,
div.front .sec_note ul.list_article.article_list {
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.sec_note .list_article .content_wrapper,
.sec_article ul.list_article.article_list .content_wrapper {
padding: 0 10px 20px;
}
.sec_note ul.list_article.article_list .news_thumbnail,
.sec_article ul.list_article.article_list .news_thumbnail {
aspect-ratio: 16 / 9;
min-height: 0;
height: auto;
}
.sec_note ul.list_article.article_list > li.fade-in,
.sec_article ul.list_article.article_list > li.fade-in {
border: none;
} div.front .sec_article {
padding-top: var(--section-article-padding-sp);
padding-bottom: var(--section-article-padding-sp);
}
}
ul.list_article p.date {
padding: 0;
width: auto;
font-size: 0.7em; color: var(--color-text-light); }
div.front .service_list li .bg_box {
border-radius: var(--border-radius-small);
background: var(--color-bg-light);
}
div.front .service_list li .bg_box h3 {
margin-bottom: 15px;
font-weight: normal;
color: var(--color-accent-main);
}
.list_article a:hover {
transform: none !important;
text-shadow: none !important;
} ul.list_article p.cat,
.list_article .news_cat .cat {
width: auto;
padding: 0;
} ul.list_article p.cat a, ul.list_article p.cat span,
.list_article .news_cat .cat span {
border-radius: var(--border-radius-small);
background: var(--color-shadow-accent);
color: var(--color-accent-main);
font-weight: normal;
} div.article.lower .article_head h2 {
color: var(--color-accent-main);
position: relative;
margin-top: 0;
margin-bottom: 2rem;
border-bottom: solid 1px color-mix(in srgb, var(--color-accent-main) 0%, transparent);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
div.article.lower .article_head h2::after {
content: "";
position: absolute;
left: 0;
bottom: -10px;
height: 1px;
width: 100%;
pointer-events: none;
background: linear-gradient(
90deg,
transparent 0%,
color-mix(in srgb, var(--color-accent-main) 0%, transparent) 15%,
var(--color-accent-main) 50%,
color-mix(in srgb, var(--color-accent-main) 0%, transparent) 85%,
transparent 100%
);
background-size: 200% 100%;
animation: underline-sweep 5s linear infinite;
opacity: 0.7;
}
div.article.lower .article_head time {
color: var(--color-text-light);
} div.article.lower .article_head .article_info_cats {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
gap: 8px;
}
div.article.lower .article_head .article_info > .article_info_cats {
margin-top: 0.35rem;
}
div.article.lower .article_head .head_detail_text .article_info_cats {
margin-bottom: 0.75rem;
}
div.article.lower .article_head .head_detail_text ul.article_info + .article_info_cats {
margin-top: 0.5rem;
}
div.article.lower .article_head .article_info p.cat,
div.article.lower .article_head .article_info .cat,
div.article.lower .article_head .article_info_cats .cat {
width: auto;
padding: 0;
margin: 0;
font-size: 0.85rem;
border-radius: 4px;
}
div.article.lower .article_head .article_info .cat span,
div.article.lower .article_head .article_info_cats .cat span {
display: inline-block;
box-sizing: border-box;
font-size: 12px;
padding: 4px 10px;
min-width: 60px;
border-radius: var(--border-radius-small);
background: var(--color-shadow-accent);
color: var(--color-accent-main);
font-weight: normal;
}
div.article.lower .article_head .article_info {
color: var(--color-text-light);
margin-bottom: 1rem;
}
div.article.lower .article_head .head_detail_flex .head_detail_text ul.article_info {
list-style: none !important;
margin: 0 0 0.5 0 !important;
padding: 0 !important;
color: var(--color-text-light) !important;
}
div.article.lower .article_head .head_detail_flex .head_detail_text ul.article_info > li {
color: var(--color-text-light) !important;
}
div.article.lower .article_head .head_detail_flex .head_detail_text ul.article_info li + li {
border-top-color: var(--color-text-light) !important;
}
div.article.lower .article_head .head_detail_flex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1rem, 3vw, 2rem);
align-items: flex-start;
} div.article.lower .article_head .head_detail_flex .head_detail_text {
flex: 1 1 0;
order: 2;
min-width: min(100%, 280px);
max-width: none !important;
}
div.article.lower .article_head .head_detail_flex .thum {
flex: 0 0 380px;
order: 1;
width: 380px;
max-width: min(380px, 100%);
min-width: 0;
height: 280px;
overflow: hidden;
border-radius: var(--border-radius-small);
}
div.article.lower .article_head .head_detail_flex .thum img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
border-radius: var(--border-radius-small);
} div.article.lower .article_head .head_detail_flex .head_detail_text p.staff_caption.article_head_subtitle {
margin: 0.65rem 0 10px;
color: var(--color-text-base);
font-size: 1em;
font-weight: 700;
line-height: 1.4;
font-family: hiragino-mincho-pron, "Hiragino Mincho ProN", "Yu Mincho", YuMincho, Meiryo, serif;
} div.article.lower .article_head .head_detail_flex .head_detail_text p.article_head_caption {
color: var(--color-accent-deep);
margin: 0.5rem 0 0;
font-size: inherit;
line-height: 1.5;
} div.article.lower .article_head .head_detail_flex .head_detail_text .staff_industry {
margin: 6px 0 0;
font-size: 0.85em;
color: var(--color-text-light);
line-height: 1.4;
font-family: var(--font-family-mincho);
}
div.article.lower .article_head .head_detail_flex .head_detail_text ul.article_info + .staff_industry {
margin-top: 4px;
}
div.article.lower .article_head .head_detail_flex .head_detail_text .staff_industry + h2 {
margin-top: 6px;
}
@media screen and (max-width: 768px) {
div.article_head {
padding-top: 0 !important;
}
}
div.article.lower .editor h3::before {
background-color: var(--color-accent-main) !important;
}
div.article.lower .editor h2 {
border-radius: var(--border-radius-small);
padding: 20px;
}
div.article.lower .editor img {
border-radius: var(--border-radius-small);
}
div.editor a:link,
div.editor a:visited,
div.editor a:active,
div.editor a:hover {
color: var(--color-accent-main) !important;
background-color: var(--color-shadow-accent) !important;
} .has-luminous-vivid-orange-color {
color: var(--color-accent-main) !important;
} .has-vivid-cyan-blue-color {
color: var(--color-accent-main) !important;
} .sec_other_staff .other_staff_swiper__wrap {
position: relative;
width: 100%;
max-width: var(--content-width);
margin-left: auto;
margin-right: auto;
padding: 0 clamp(2.75rem, 8vw, 3.5rem);
box-sizing: border-box;
}
.sec_other_staff .other_staff_swiper {
overflow: hidden;
width: 100%;
max-width: none;
margin-left: auto;
margin-right: auto;
box-sizing: border-box;
}
.sec_other_staff .other_staff_swiper__nav {
position: absolute;
top: 50%;
z-index: 2;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
margin: 0;
padding: 0;
border: none;
border-radius: 50%;
background: var(--color-accent-main);
color: #fff;
cursor: pointer;
box-shadow: 0 2px 8px color-mix(in srgb, var(--color-accent-deep) 25%, transparent);
transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.sec_other_staff .other_staff_swiper__nav:hover {
background: var(--color-accent-deep);
}
.sec_other_staff .other_staff_swiper__nav .material-symbols-outlined {
font-size: 28px;
line-height: 1;
color: #fff;
}
.sec_other_staff .other_staff_swiper__nav--prev {
left: 0;
}
.sec_other_staff .other_staff_swiper__nav--next {
right: 0;
}
.sec_other_staff .other_staff_swiper__nav.swiper-button-disabled {
opacity: 0.3;
cursor: default;
pointer-events: none;
}
.sec_other_staff .other_staff_swiper .swiper-wrapper {
align-items: stretch;
}
.sec_other_staff .other_staff_swiper a.swiper-slide {
display: block;
width: min(220px, 72vw);
height: auto;
flex-shrink: 0;
box-sizing: border-box;
text-decoration: none;
}
.sec_other_staff .other_staff_swiper a.swiper-slide .thum {
width: 100%;
aspect-ratio: 1;
overflow: hidden;
border-radius: var(--border-radius-small);
margin: 0;
max-width: none;
flex: unset;
height: auto;
}
.sec_other_staff .swiper-slide .thum img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
border-radius: var(--border-radius-small);
} body.single-staff .section_ttl.deco_ttl::before {
content: none !important;
display: none !important;
}
body.single-staff .section_ttl::after {
content: none !important;
display: none !important;
}
.sec_other_staff {
max-width: 100%;
overflow-x: clip;
box-sizing: border-box;
} .staff_industry{
margin: 6px 0 0;
font-size: 0.85em;
color: var(--color-text-light);
line-height: 1.4;
} .note_name {
font-weight: 700;
font-size: 1em;
margin: 0 0 2px 0;
font-family: hiragino-mincho-pron, "Hiragino Mincho ProN",
"Yu Mincho", YuMincho, Meiryo, serif;
}  .badge_new {
position: absolute;
top: 0;
left: 0;
z-index: 10;
pointer-events: none;
width: 50px;
height: 50px;
background: var(--color-logo-gradient-start);
clip-path: path("M 0,0 L 50,0 L 0,50 Z");
border-radius: 4px 0 0 0;
overflow: hidden;
} .badge_new::after {
content: "new";
position: absolute;
top: 20px;
left: 3px;
color: #fff;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.05em;
line-height: 1;
transform: rotate(-45deg);
transform-origin: left top;
}  .news_content .note_staff_info {
margin-top: auto;
padding-top: 10px;
text-align: right;
}
.news_content .staff_industry {
font-family: var(--font-family-mincho);
margin: 0 0 2px 0;
font-size: 0.85em;
color: var(--color-text-light);
line-height: 1.4;
}
.news_content .note_name {
font-family: var(--font-family-mincho);
font-weight: 700;
font-size: 1em;
margin: 0;
}  div.front .sec_about {
background-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/about_bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
position: relative;
padding: var(--section-article-padding-pc) 0;
overflow: visible;
isolation: isolate;
}
div.front .sec_about::after {
content: "";
inline-size: 100%;
block-size: 100%;
position: absolute;
top: 0px;
left: 0px;
z-index: 0;
background-image: var(--bg-effect);
background-size: cover;
background-position: 0 0, 2px 2px;
mix-blend-mode: darken;
opacity: .9;
transition: 0.3s;
}
div.front .sec_about::before{
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: 0vw;
left: 0vw;
right: 0vw;
top: 0vw;
background-size: 100% 90px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.278 3.62" preserveAspectRatio="none"><path d="M35.278.092S8.238.267 0 3.62V.092z" opacity=".2" fill="%23ffffff"/><path d="M35.278.092S8.238.246 0 3.194V.092z" opacity=".2" fill="%23ffffff"/><path d="M35.278.092S8.238.223 0 2.738V.092zM35.278.092H0V0h35.278z" fill="%23ffffff"/></svg>');
}
div.front .sec_about_bottom_decoration {
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 90px;
z-index: 4;
pointer-events: none;
background-repeat: no-repeat;
background-size: 100% 90px;
background-position: 50% 100%;
transform: scaleY(-1);
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.278 3.62" preserveAspectRatio="none"><path d="M35.278.092S8.238.267 0 3.62V.092z" opacity=".2" fill="%23ffffff"/><path d="M35.278.092S8.238.246 0 3.194V.092z" opacity=".2" fill="%23ffffff"/><path d="M35.278.092S8.238.223 0 2.738V.092zM35.278.092H0V0h35.278z" fill="%23ffffff"/></svg>');
}
@media (min-width:2100px){
div.front .sec_about::before{
background-size: 175% calc(2vw + 148px);
}
div.front .sec_about_bottom_decoration{
height: calc(2vw + 90px);
background-size: 100% calc(2vw + 90px);
}
}
div.front .sec_about .about_img_float {
position: absolute;
top: -30px;
left: 3%;
z-index: 10;
opacity: 0;
height: 260px;
transform: translateY(-30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
div.front .sec_about .about_img_float.fade-in {
opacity: 0.8;
transform: translateY(0);
}
div.front .sec_about .about_img_float_2 {
position: absolute;
bottom: -5%;
right: 3%;
top: auto;
left: auto;
z-index: 10;
opacity: 0;
height: 290px;
transform: translateY(30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
div.front .sec_about .about_img_float_2.fade-in {
opacity: 0.8;
transform: translateY(0);
}
div.front .sec_about .about_img_float img {
height: 100%;
animation: floatAnimation 6s ease-in-out infinite;
}
div.front .sec_about .about_img_float_2 img {
height: 100%;
animation: floatAnimationReversed 6s ease-in-out infinite;
}
@keyframes floatAnimation {
0%, 100% {
transform: rotate(0deg) translateY(0) translateX(0);
}
25% {
transform: rotate(2deg) translateY(-10px) translateX(5px);
}
50% {
transform: rotate(0deg) translateY(-5px) translateX(-5px);
}
75% {
transform: rotate(2deg) translateY(-8px) translateX(3px);
}
}
@keyframes floatAnimationReversed {
0%, 100% {
transform: scaleX(-1) rotate(0deg) translateY(0) translateX(0);
}
25% {
transform: scaleX(-1) rotate(-2deg) translateY(-10px) translateX(-5px);
}
50% {
transform: scaleX(-1) rotate(0deg) translateY(-5px) translateX(5px);
}
75% {
transform: scaleX(-1) rotate(-2deg) translateY(-8px) translateX(-3px);
}
}
div.front .sec_about article {
display: block;
max-width: var(--content-width-confined);
}
div.front .sec_about .about_text_box {
margin-bottom: 40px;
}
div.front .sec_about h2 {
color: var(--color-accent-deep);
}
div.front .sec_about .catchcopy {
color: var(--color-accent-deep);
text-shadow: var(--text-shadow-about);
margin-bottom: 10px;
font-size: clamp(2em, 2.8vw, 3.5vw);
}
div.front .sec_about .about_text_box .catchcopy + .caption{
margin-bottom: 2vw;
font-size: 1em;
font-weight: normal;
text-shadow: var(--text-shadow-about);
letter-spacing: 0.05em;
} @media screen and (max-width: 768px) {
div.front .sec_about {
background-position: 54% center;
} div.front .sec_about .about_text_box,
div.front .sec_about .about_text_box * {
text-shadow:
0 0 3px rgba(255, 255, 255, 0.98),
0 0 10px rgba(255, 255, 255, 0.75),
0 0 22px rgba(255, 255, 255, 0.45),
0 1px 2px rgba(255, 255, 255, 0.9) !important;
}
}  div.lower main.main_about {
position: relative; overflow-x: visible;
overflow-y: visible;
}
div.lower main.main_about .main_about_bg {
position: absolute;
inset: 0;
z-index: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
div.lower main.main_about .main_about_content {
position: relative;
z-index: 1;
} div.lower .sec_about_vision,
div.lower .sec_about_mission,
div.lower .sec_about_value {
padding: 60px 0;
}  @media screen and (min-width: 769px) {
div.lower .service_detail > article {
max-width: var(--content-width);
width: 100%;
margin-left: auto;
margin-right: auto;
padding: var(--section-article-padding-pc) 0;
}
}
div.lower .service_detail .service_detail_list {
margin-top: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 50px;
counter-reset: service-detail;
width: 100%;
} div.lower .service_detail .service_detail_list > li.item[id^="business_"],
div.lower .service_detail .service_detail_list > li.item[id^="service_"] {
scroll-margin-top: clamp(88px, 14vw, 120px);
} div.lower .service_detail .service_detail_list > li.item {
padding: 0;
border-bottom: none !important;
}
div.lower .service_detail .service_detail_list > li.item:last-child {
padding-bottom: 0;
} div.lower .service_detail .service_detail_flex {
display: flex; flex-direction: column;
position: relative;
overflow: hidden;
border-radius: var(--border-radius-small);
box-shadow: var(--shadow-list-item);
background: #fff;
counter-increment: service-detail;
width: 100%;
} div.lower .service_detail .service_detail_flex:nth-child(even) {
flex-direction: column !important;
} div.lower .service_detail .service_detail_flex .image_box {
order: 0;
}
div.lower .service_detail .service_detail_flex .text_box {
order: 1;
}
div.lower .service_detail .service_detail_flex .image_box img {
width: 100%;
height: clamp(220px, 28vw, 440px);
object-fit: cover;
display: block;
border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
} div.lower .service_detail .service_detail_flex .text_box {
background: var(--color-accent-deep);
color: #fff;
padding: 48px 56px;
display: grid;
grid-template-columns: minmax(240px, 370px) minmax(0, 1fr);
gap: 40px 60px;
align-items: center;
position: relative;
width: 100% !important; }
div.lower .service_detail_list .service_detail_flex .text_box .ttl_flex .content_ttl h3,
div.lower .service_detail_list .service_detail_flex .text_box .ttl_flex .content_ttl p {
color: #fff;
} div.lower .service_detail .service_detail_flex .text_box:nth-child(even) {
width: 100% !important;
}
div.lower .service_detail .service_detail_flex .image_box {
width: 100% !important;
} div.lower .service_detail .service_detail_flex .text_box::before {
content: counter(service-detail, decimal-leading-zero);
position: absolute;
left: 32px;
top: -105px; font-size: clamp(72px, 8vw, 140px);
font-weight: 600;
line-height: 1;
color: var(--color-accent-deep);
pointer-events: none;
} div.lower .service_detail .service_detail_flex .content_icon {
display: none;
}
div.lower .service_detail .service_detail_flex .ttl_flex {
display: block;
margin: 0;
}
div.lower .service_detail .service_detail_flex .content_ttl h3 {
color: #fff;
margin: 0 0 12px 0;
font-weight: 600;
letter-spacing: 0.02em;
}
div.lower .service_detail .service_detail_flex .content_ttl p {
color: color-mix(in srgb, #fff 80%, transparent);
margin: 0;
line-height: 1.6;
}
div.lower .service_detail .service_detail_flex .text_box > p {
margin: 0;
color: color-mix(in srgb, #fff 88%, transparent);
line-height: 1.9;
text-align: left;
}
@media screen and (max-width: 768px) {
div.lower .service_detail .service_detail_list {
gap: 34px;
}
div.lower .service_detail .service_detail_flex .image_box img {
height: 210px;
}
div.lower .service_detail .service_detail_flex .text_box {
padding: 34px 22px;
grid-template-columns: 1fr;
gap: 18px;
}
div.lower .service_detail .service_detail_flex .text_box::before {
left: 18px;
top: -56px;
}
} div.lower .sec_about_vision,
div.lower .sec_about_mission {
position: relative;
}
div.lower .sec_about_vision::after,
div.lower .sec_about_mission::after {
content: "";
position: absolute;
left: 50%;
bottom: -60px; transform: translateX(-50%);
width: 1px;
height: 120px;
background-color: #e0e0e0;
pointer-events: none;
}
div.lower .about_card {
max-width: var(--content-width-confined);
margin: 0 auto;
background-color: #fff;
border-radius: var(--border-radius-small);
padding: 60px 80px;
box-shadow: var(--shadow-list-item);
} div.lower .sec_about_value .about_card {
text-align: center;
}
div.lower .sec_about_value .about_card .value_list {
justify-items: center;
} div.lower .about_card.vision_card_text_only {
text-align: center;
padding: 80px 60px;
}
div.lower .vision_title {
font-size: 2.5rem;
font-weight: 600;
color: var(--color-text-base);
margin: 0 0 30px 0;
font-family: var(--font-family-mincho);
}
div.lower .vision_divider {
width: 200px;
height: 1px;
background-color: #e0e0e0;
margin: 0 auto 40px;
}
div.lower .vision_divider--short {
width: 120px;
margin: 30px auto 40px;
}
div.lower .vision_main_statement {
margin-bottom: 20px;
}
div.lower .vision_main_statement p {
font-size: 1.8rem;
font-weight: 600;
color: var(--color-text-base);
line-height: 1.8;
margin: 0;
font-family: var(--font-family-mincho);
}
div.lower .vision_slogan {
font-size: 1rem;
color: var(--color-text-base);
margin: 0 0 30px 0;
letter-spacing: 0.1em;
}
div.lower .vision_content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}
div.lower .vision_text_ja {
font-size: 1rem;
color: var(--color-text-base);
line-height: 2;
margin: 0 0 30px 0;
}
div.lower .vision_text_en {
font-size: 0.95rem;
color: var(--color-text-base);
line-height: 2;
margin: 0;
} div.lower .about_card.mission_card_text_only {
padding: 80px 60px;
}
div.lower .mission_title {
font-size: 2.5rem;
font-weight: 600;
color: var(--color-text-base);
margin: 0 0 30px 0;
text-align: center;
font-family: var(--font-family-mincho);
}
div.lower .mission_items {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 60px;
max-width: 1200px;
margin: 0 auto;
}
div.lower .mission_item {
text-align: center;
}
div.lower .mission_icon {
width: 80px;
height: 80px;
margin: 0 auto 30px;
display: flex;
align-items: center;
justify-content: center;
}
div.lower .mission_icon svg {
width: 100%;
height: 100%;
}
div.lower .mission_icon .material-symbols-outlined {
font-size: 80px;
line-height: 1;
color: var(--color-accent-deep); display: inline-flex;
align-items: center;
justify-content: center;
}
div.lower .mission_item_title {
font-size: 1.5rem;
font-weight: 600;
color: var(--color-text-base);
font-family: var(--font-family-mincho);
}
div.lower .mission_item_subtitle {
font-size: 1rem;
color: var(--color-text-light);
margin: 0 0 30px 0;
}
div.lower .mission_item_content {
text-align: left;
}
div.lower .mission_text_ja {
font-size: 0.95rem;
color: var(--color-text-base);
line-height: 2;
margin: 0 0 20px 0;
}
div.lower .mission_text_en {
font-size: 0.9rem;
color: var(--color-text-base);
line-height: 2;
margin: 0;
}
div.lower .about_card h3 {
font-size: 2rem;
font-weight: bold;
color: var(--color-accent-deep);
margin-bottom: 20px;
font-family: var(--font-family-mincho);
}
div.lower .about_card h4 {
font-size: 1.3rem;
font-weight: bold;
color: var(--color-accent-deep);
font-family: var(--font-family-mincho);
}
div.lower .about_card h4.catchcopy {
font-size: 2rem;
margin-bottom: 15px;
}
div.lower .about_card .caption {
font-size: 1rem;
color: var(--color-text-sub);
margin-bottom: 30px;
font-style: italic;
}
div.lower .about_card .card_content {
line-height: 2;
}
div.lower .about_card .card_content p {
margin-bottom: 20px;
}
div.lower .about_card .card_content p:last-child {
margin-bottom: 0;
}
div.lower .about_card .mission_subtitle {
font-size: 1.2rem;
font-weight: bold;
color: var(--color-accent-deep);
margin-bottom: 25px;
text-align: center;
}
div.lower .about_card .value_list {
list-style: none;
padding: 0;
margin: 30px 0;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 30px 60px;
}
div.lower .about_card .value_list li {
padding: 0;
border-bottom: none;
}
div.lower .about_card .value_list li:last-child {
border-bottom: none;
}
div.lower .about_card .value_list .value_title {
display: block;
font-size: 1.1rem;
font-weight: bold;
color: var(--color-accent-deep);
margin-bottom: 5px;
}
div.lower .about_card .value_list .value_subtitle {
display: block;
font-size: 0.9rem;
color: #666;
font-style: italic;
}
@media screen and (max-width: 768px) {
div.lower .sec_about_vision,
div.lower .sec_about_mission,
div.lower .sec_about_value {
padding: 40px 0;
}
div.lower .sec_about_vision::after,
div.lower .sec_about_mission::after {
bottom: -40px;
height: 80px;
}
div.lower .about_card {
padding: 30px 20px;
}
div.lower .about_card.vision_card_text_only {
padding: 50px 30px;
}
div.lower .vision_title {
font-size: 2rem;
margin-bottom: 25px;
}
div.lower .vision_divider {
width: 150px;
margin-bottom: 30px;
}
div.lower .vision_divider--short {
width: 100px;
margin: 25px auto 30px;
}
div.lower .vision_main_statement p {
font-size: 1.5rem;
}
div.lower .vision_slogan {
font-size: 0.9rem;
margin-bottom: 25px;
}
div.lower .vision_content {
max-width: 100%;
}
div.lower .vision_text_ja,
div.lower .vision_text_en {
font-size: 0.9rem;
line-height: 1.8;
}
div.lower .about_card.mission_card_text_only {
padding: 50px 30px;
}
div.lower .mission_title {
font-size: 2rem;
margin-bottom: 40px;
}
div.lower .mission_items {
grid-template-columns: 1fr;
gap: 50px;
}
div.lower .mission_icon {
width: 64px;
height: 64px;
margin-bottom: 25px;
}
div.lower .mission_icon .material-symbols-outlined {
font-size: 64px;
}
div.lower .mission_item_title {
font-size: 1.3rem;
}
div.lower .mission_item_subtitle {
font-size: 0.95rem;
margin-bottom: 25px;
}
div.lower .mission_text_ja,
div.lower .mission_text_en {
font-size: 0.85rem;
line-height: 1.8;
}
div.lower .about_card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
}
div.lower .about_card h4 {
font-size: 1.4rem;
}
div.lower .about_card h4.catchcopy {
font-size: 1.6rem;
}
div.lower .about_card .caption {
font-size: 0.9rem;
margin-bottom: 20px;
}
div.lower .about_card .card_content p {
margin-bottom: 15px;
font-size: 0.9rem;
}
div.lower .about_card .mission_subtitle {
font-size: 1rem;
margin-bottom: 20px;
}
div.lower .about_card .value_list {
grid-template-columns: 1fr;
gap: 18px;
}
div.lower .about_card .value_list li {
padding: 0;
}
div.lower .about_card .value_list .value_title {
font-size: 1rem;
}
div.lower .about_card .value_list .value_subtitle {
font-size: 0.85rem;
}
} div.lower .sec_about_link .about_link_list {
align-items: stretch;
}
div.lower .sec_about_link .about_link_list .list_item {
display: flex;
}
div.lower .sec_about_link .about_link_list .list_item > a {
display: flex;
flex-direction: column;
flex: 1 1 auto;
min-height: 0;
border-radius: var(--border-radius-small);
overflow: hidden;
box-shadow: var(--shadow-list-item);
transition: box-shadow 0.3s ease, transform 0.3s ease;
}
div.lower .sec_about_link .about_link_list .list_item > a:hover {
box-shadow: var(--shadow-list-item-hover);
transform: translateY(-2px);
}
div.lower .sec_about_link .about_link_list .list_item a .image_wrap {
border-radius: 0;
aspect-ratio: 16 / 9;
width: 100%;
overflow: hidden;
position: relative;
flex: 0 0 auto;
}
div.lower .sec_about_link .about_link_list .list_item a .image_wrap img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
div.lower .sec_about_link .about_link_list .list_item a span {
background-color: var(--color-accent-main);
font-family: var(--font-family-mincho);
border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
}
@media screen and (max-width: 767px) {
div.lower .sec_about_link .about_link_list .list_item a .image_wrap {
aspect-ratio: 1 / 1;
}
div.lower .sec_about_link .about_link_list .list_item a span {
font-size: clamp(11px, 2.8vw, 12px);
line-height: 1.35;
padding: 6px 4px;
letter-spacing: 0.04em;
}
}
div.front .sec_recruit .staff_img_scroll {
bottom: -50px;
overflow: hidden;
filter: saturate(0.9);
opacity: 0;
transform: translateY(30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
div.front .sec_recruit .staff_img_scroll.fade-in {
opacity: 1;
transform: translateY(0);
}
div.front .sec_recruit .staff_img_scroll .staff_img_track {
display: flex;
width: max-content;
will-change: transform;
animation: staffImg_scroll 60s linear infinite;
}
@keyframes staffImg_scroll{
from { transform: translateX(0); }
to   { transform: translateX(-50%); }
}
div.front .sec_recruit .staff_img_scroll img {
height: 280px;
}
div.front .sec_recruit .staff_img_scroll img:first-child {
margin-right: 20px;
} .sec_about article,
.sec_recruit article,
.sec_recruit .staff_img_scroll {
position: relative;
z-index: 100;
}  .sec_business {
background: linear-gradient(to bottom, transparent 50%, #e8e6e0 50%);
opacity: 0;
transform: translateY(30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
} div.front .sec_business {
overflow-x: hidden;
overflow-x: clip;
}
.sec_business.fade-in {
opacity: 1;
transform: translateY(0);
}
.sec_business hgroup {
margin-bottom: 0;
} div.front .sec_business .business_slider_unit .business_swiper__nav-col {
flex-shrink: 0;
display: flex;
flex-direction: column;
width: 64px;
align-self: stretch;
background: color-mix(in srgb, var(--color-accent-deep) 90%, #000 10%);
overflow: hidden;
box-shadow: 2px 0 14px color-mix(in srgb, var(--color-accent-deep) 30%, transparent);
z-index: 12;
opacity: 0;
pointer-events: none;
transition: opacity 2.5s var(--ease-fade);
}
div.front .sec_business.fade-in .business_slider_unit .business_swiper__nav-col {
opacity: 1;
pointer-events: auto;
}
div.front .sec_business .business_slider_unit .business_swiper__nav {
flex: 1 1 50%;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 0;
margin: 0;
padding: 10px 4px;
border: none;
border-radius: 0;
background: transparent;
color: #fff;
cursor: pointer;
box-shadow: none;
transition: background-color 0.2s ease, opacity 0.2s ease;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
position: relative;
}
div.front .sec_business .business_slider_unit .business_swiper__nav + .business_swiper__nav::before {
content: '';
position: absolute;
top: 0;
left: 10%;
right: 10%;
height: 1px;
background: color-mix(in srgb, #fff 40%, transparent);
}
div.front .sec_business .business_slider_unit .business_swiper__nav-inner {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
}
div.front .sec_business .business_slider_unit .business_swiper__nav .material-symbols-outlined {
font-size: 22px;
line-height: 1;
color: #fff;
}
div.front .sec_business .business_slider_unit .business_swiper__nav-label {
font-size: 0.65rem;
font-weight: 600;
letter-spacing: 0.04em;
line-height: 1.2;
font-family: var(--font-family-base), system-ui, sans-serif;
}
div.front .sec_business .business_slider_unit .business_swiper__nav:hover {
background: color-mix(in srgb, #fff 10%, transparent);
}
div.front .sec_business .business_slider_unit .business_swiper__nav.swiper-button-disabled {
opacity: 0.35;
cursor: default;
pointer-events: none;
} div.front .sec_business .business-slide-card {
display: flex;
flex-direction: row;
align-items: stretch;
width: 100%;
height: clamp(360px, 46vh, 500px);
max-height: 100%;
position: relative;
text-decoration: none;
color: inherit;
background: var(--color-accent-main);
border-radius: var(--border-radius-small);
box-shadow: 0 8px 28px color-mix(in srgb, var(--color-accent-deep) 28%, transparent);
overflow: hidden;
box-sizing: border-box;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
div.front .sec_business .business-slide-card:hover {
transform: translateY(-3px);
box-shadow: 0 14px 36px color-mix(in srgb, var(--color-accent-deep) 35%, transparent);
}
div.front .sec_business .business-slide-card:focus-visible {
outline: 2px solid #fff;
outline-offset: 3px;
}
div.front .sec_business .business-slide-card__num {
position: absolute;
top: 0;
left: 0;
z-index: 3;
display: flex;
flex-direction: row;
align-items: center;
gap: 10px;
padding: 8px 14px;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.08em;
color: #fff;
font-family: var(--font-family-base), system-ui, sans-serif;
background-color: var(--color-accent-main);
border-radius: var(--border-radius-small);
box-shadow: 0 2px 10px color-mix(in srgb, var(--color-accent-deep) 35%, transparent);
border-radius: var(--border-radius-small) 0 var(--border-radius-small) 0;
}
div.front .sec_business .business-slide-card__num-line {
display: block;
width: 20px;
height: 2px;
background: #fff;
flex-shrink: 0;
}
div.front .sec_business .business-slide-card__img {
flex: 0 0 83%;
min-width: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
align-self: stretch;
border-radius: 0;
}
div.front .sec_business .business-slide-card__body {
flex: 1 1 auto;
min-width: 0;
position: relative;
display: flex;
align-items: flex-end;
justify-content: flex-end;
padding: 0 14px 60px 8px;
box-sizing: border-box;
}
div.front .sec_business .business-slide-card__title-vertical {
writing-mode: vertical-rl;
text-orientation: mixed;
font-size: clamp(1rem, 1.35vw, 1.05rem);
font-weight: 700;
line-height: 1.65;
letter-spacing: 0.14em;
color: #fff;
font-family: var(--font-family-mincho), serif;
max-height: 78%;
text-align: start;
}
div.front .sec_business .business-slide-card__arrow {
position: absolute;
right: 12px;
bottom: 12px;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
background: color-mix(in srgb, var(--color-accent-deep) 55%, var(--color-accent-main));
border-radius: var(--border-radius-small);
z-index: 2;
}
div.front .sec_business .business-slide-card__arrow .material-symbols-outlined {
font-size: 18px;
color: #fff;
} @media screen and (min-width: 768px) { div.front .sec_business article .front_article_body > .business_slider_unit {
width: 100vw;
max-width: none;
margin-left: calc(50% - 50vw);
margin-right: 0;
display: flex;
flex-direction: row;
align-items: stretch;
gap: 0;
position: relative;
border-radius: 0;
padding-right: 0;
box-sizing: border-box;
min-height: 0;
}
div.front .sec_business .business_slider_unit > .business_swiper__nav-col {
min-height: clamp(380px, 48vh, 520px);
}
div.front .sec_business .business_slider_unit > .business_swiper.swiper {
order: 2;
flex: 1 1 0;
min-width: 0;
width: auto;
height: clamp(380px, 48vh, 520px);
display: block;
position: relative;
box-sizing: border-box;
margin: 0;
padding: 0;
padding-left: max(12px, calc((100vw - var(--content-width)) / 2 - 64px));
overflow: hidden;
opacity: 0;
transform: translateY(30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
div.front .sec_business .business_slider_unit > .business_swiper.swiper.fade-in {
opacity: 1;
transform: translateY(0);
}
div.front .sec_business .business_swiper .swiper-wrapper {
height: 100%;
align-items: stretch;
}
div.front .sec_business .business_swiper .swiper-slide {
width: min(360px, 72vw);
max-width: min(360px, 72vw);
height: 100%;
display: flex;
align-items: stretch;
box-sizing: border-box;
flex-shrink: 0;
}
div.front .sec_business .business_swiper .swiper-slide .business-slide-card {
height: 100%;
width: 100%;
}
} @media screen and (max-width: 767px) {
div.front .sec_business article .front_article_body > .business_slider_unit {
max-width: 100%;
width: 100%;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
display: flex;
flex-direction: row;
align-items: stretch;
gap: 0;
height: auto;
min-height: 0;
border-radius: 0;
box-sizing: border-box;
position: relative;
}
div.front .sec_business article .front_article_body > .business_slider_unit > .business_swiper__nav-col {
width: 52px;
min-height: min(72vw, 380px);
border-radius: 0;
}
div.front .sec_business article .front_article_body > .business_slider_unit > .business_swiper__nav {
padding: 8px 2px;
}
div.front .sec_business article .front_article_body > .business_slider_unit > .business_swiper__nav .material-symbols-outlined {
font-size: 18px;
}
div.front .sec_business article .front_article_body > .business_slider_unit > .business_swiper__nav-label {
font-size: 0.58rem;
}
div.front .sec_business article .front_article_body > .business_slider_unit > .business_swiper.swiper {
flex: 1 1 0;
min-width: 0;
width: auto;
height: auto;
min-height: min(72vw, 380px);
display: block;
border-radius: 0;
box-sizing: border-box;
padding-left: 10px;
overflow: hidden;
}
div.front .sec_business .business_swiper .swiper-wrapper {
height: min(72vw, 380px);
align-items: stretch;
}
div.front .sec_business .business_swiper .swiper-slide {
width: min(280px, 74vw);
max-width: min(280px, 74vw);
height: 100%;
display: flex;
align-items: stretch;
flex-shrink: 0;
}
div.front .sec_business .business-slide-card {
width: 100%;
height: 100%;
max-height: none;
}
div.front .sec_business .business-slide-card__num {
top: 14px;
left: 12px;
font-size: 0.65rem;
gap: 8px;
padding: 6px 10px;
}
div.front .sec_business .business-slide-card__num-line {
width: 16px;
}
div.front .sec_business .business-slide-card__title-vertical {
font-size: 0.95rem;
letter-spacing: 0.12em;
}
div.front .sec_business .business-slide-card__body {
padding: 0 10px 48px 6px;
}
div.front .sec_business .business-slide-card__arrow {
width: 32px;
height: 32px;
right: 8px;
bottom: 8px;
}
}  .sec_company hgroup {
margin-bottom: 0;
}
.sec_company .company_content {
margin-top: 40px;
}
.company_link_list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
list-style: none;
padding: 0;
margin: 0;
} .sec_company .company_link_item a {
min-height: clamp(200px, 24vw, 280px);
} .company_link_item,
.recruit_link_item {
background-color: #fff;
border-radius: var(--border-radius-small);
overflow: hidden;
box-shadow: var(--shadow-list-item);
transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
opacity: 0;
transform: translateY(20px);
}
.company_link_item.fade-in,
.recruit_link_item.fade-in {
opacity: 1;
transform: translateY(0);
}
.company_link_item:hover,
.recruit_link_item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-list-item-hover);
}
.company_link_item a,
.recruit_link_item a {
display: flex;
text-decoration: none;
color: inherit;
height: 100%;
}
.company_link_image,
.recruit_link_image {
width: 50%;
flex-shrink: 0;
overflow: hidden;
position: relative;
}
.company_link_image img,
.recruit_link_image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: filter 0.3s ease;
}
.company_link_text {
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 20px;
text-align: center;
}
.company_link_text h3 {
font-size: 1.2rem;
font-weight: 600;
color: var(--color-accent-deep);
margin-bottom: 10px;
font-family: var(--font-family-mincho);
}
.company_link_text p {
font-size: 1rem;
color: var(--color-text-base);
margin: 0;
}
@media (max-width: 767px) {
.company_link_list {
grid-template-columns: 1fr;
gap: 20px;
}
.recruit_link_list_inner {
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.company_link_item a,
.recruit_link_item a {
flex-direction: column;
}
.company_link_image,
.recruit_link_image {
width: 100%;
height: 200px;
}
.sec_recruit article.top_box .recruit_link_image {
height: 100px;
}
.company_link_text,
.recruit_link_text {
width: 100%;
padding: 10px;
}
}  div.front .sec_recruit {
background-image:
url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/footer_bg.jpg),
url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/bg.jpg);
background-size:
cover,
cover;
background-position:
center top,
center bottom;
background-repeat:
no-repeat,
no-repeat;
background-attachment: fixed;
position: relative;
background-blend-mode: normal;
}
div.front .sec_recruit::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 50%;
background-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/footer_bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
z-index: 0;
}
div.front .sec_recruit::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 50%;
background-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
z-index: 0;
} @media screen and (max-width: 767px) {
div.front .sec_recruit {
background-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: scroll;
}
div.front .sec_recruit::before,
div.front .sec_recruit::after {
display: none;
}
}
div.front .sec_recruit article.top_box {
background-color: var(--color-accent-main);
max-width: var(--content-width-confined);
padding:  50px 0;
border-radius: var(--border-radius-small);
opacity: 0;
backdrop-filter: blur(10px);
background: rgba(180,150,90,0.85);
box-shadow:0 20px 40px rgba(0,0,0,.1);
text-shadow: var(--text-shadow-about);
transform: translateY(30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
div.front .sec_recruit article.top_box.fade-in {
opacity: 1;
transform: translateY(0);
}
.sec_recruit article.top_box hgroup {
margin-bottom: 0;
display: block;
}
.sec_recruit article.top_box .section_ttl {
margin-right: 0;
}
div.front .sec_recruit .section_ttl::after {
content: none;
display: none;
}
.sec_recruit article.top_box .section_ttl_caption {
text-align: center;
color: #fff;
}
.sec_recruit article.top_box .section_header {
justify-content: center;
border-bottom: solid 1px color-mix(in srgb, #fff 50%, transparent);
}
.sec_recruit article.top_box .recruit_content {
text-align: center;
}
.sec_recruit article.top_box .recruit_content .catchcopy,.sec_recruit article.top_box .recruit_content .caption, .sec_recruit article.top_box .section_ttl {
color: #fff;
}
.sec_recruit article.top_box .recruit_content .catchcopy {
margin: 40px auto;
}
.sec_recruit article.top_box .recruit_content .caption {
max-width: 600px;
margin: 0 auto 25px;
}
.sec_recruit article.top_box .more_link .btn a {
background-color: #fff;
color: var(--color-accent-main);
font-weight: bold;
}
.sec_recruit article.top_box .more_link .btn a::before {
background-color: var(--color-accent-main);
}
.sec_recruit article.top_box .more_link .btn a::after {
border: solid 1px var(--color-accent-main);
}
.sec_recruit article.top_box .recruit_content .more_link {
display: flex;
justify-content: center;
margin-top: 48px;
}
.sec_recruit article.top_box .recruit_link_list {
margin-top: 50px;
padding: 0 50px;
}
.sec_recruit article.top_box .recruit_link_list_inner {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
list-style: none;
padding: 0;
margin: 0;
align-items: stretch;
} @media screen and (min-width: 768px) {
.sec_recruit article.top_box .recruit_link_item {
aspect-ratio: 2.45 / 1;
min-height: 0;
display: flex;
flex-direction: column;
}
.sec_recruit article.top_box .recruit_link_item > a {
flex: 1 1 auto;
min-height: 0;
align-items: stretch;
}
.sec_recruit article.top_box .recruit_link_image {
align-self: stretch;
min-height: 0;
}
}
@media (max-width: 767px) {
.sec_recruit article.top_box .recruit_content .catchcopy,
.sec_recruit article.top_box .recruit_content .caption {
padding-left: clamp(1rem, 5vw, 1.5rem);
padding-right: clamp(1rem, 5vw, 1.5rem);
box-sizing: border-box;
}
.sec_recruit article.top_box .recruit_content .caption {
font-size: 0.9rem;
}
.sec_recruit article.top_box .recruit_link_list_inner {
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.sec_recruit article.top_box .recruit_link_list {
padding: 0 20px;
}
} .sec_recruit article.top_box .recruit_link_image img {
filter: brightness(0.8) grayscale(0.5);
object-fit: cover;
object-position: 32% center;
}
.sec_recruit article.top_box .recruit_link_item:hover .recruit_link_image img {
filter: brightness(1) grayscale(0);
}
.sec_recruit article.top_box .recruit_link_text {
width: 100%;
max-width: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
background-color: #fff;
}
@media screen and (min-width: 768px) {
.sec_recruit article.top_box .recruit_link_text {
width: 50%;
}
}
.sec_recruit article.top_box .recruit_link_text h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--color-accent-main);
margin-bottom: 5px;
}
.sec_recruit article.top_box .recruit_link_text p {
font-size: 0.8rem;
color: var(--color-text-secondary);
line-height: 1.6;
}  div.front .sec_note article {
padding: var(--section-article-padding-pc) 0 var(--section-article-padding-short);
background-color: transparent;
box-shadow: none;
max-width: var(--content-width);
opacity: 0;
transform: translateY(30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
div.front .sec_note article.fade-in {
opacity: 1;
transform: translateY(0);
} .footer_top_links {
background-color: #2f3a46;
padding: 30px 0;
width: 70vw;
max-width: 70vw;
margin: 0 auto;
position: relative;
z-index: 10;
margin-top: -30px;
margin-bottom: -30px;
border-radius: var(--border-radius-small);
}
.footer_top_links_inner {
max-width: 100%;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
position: relative;
}
.footer_top_links_inner::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 1px;
background-color: rgba(255, 255, 255, 0.3);
transform: translateX(-50%);
}
.footer_top_link_item {
text-align: center;
color: #fff;
}
.footer_top_link_item h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 5px;
color: #fff;
}
.footer_top_link_item p {
font-size: 0.9rem;
line-height: 1.8;
margin-bottom: 25px;
color: rgba(255, 255, 255, 0.9);
}
.footer_top_link_btn a {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 12px 24px;
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: var(--border-radius-small);
color: #fff;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s ease;
}
.footer_top_link_btn a:hover {
background-color: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.8);
}
.footer_top_link_btn .arrow {
font-size: 1rem;
transition: transform 0.3s ease;
}
.footer_top_link_btn a:hover .arrow {
transform: translateX(5px);
}
@media (max-width: 767px) {
.footer_top_links {
width: 90vw;
max-width: 90vw;
}
.footer_top_links_inner {
grid-template-columns: 1fr;
gap: 30px;
}
.footer_top_links_inner::before {
display: none;
}
}
footer {
padding-top: 0;
margin-top: var(--section-article-padding-pc);
}
footer:before {
display: none;
}
footer .footer_inner {
background-color: var(--org-navy);
border-radius: 1vw 1vw 0 0;
padding: 5vw 0;
position: relative;
z-index: 1;
}
footer a {
color: #fff !important;
}
footer a:hover {
color: #fff !important;
opacity: 0.85;
}
footer .footer_flex .footer_content .sns_instagram {
margin-right: 5px;
} footer .footer_flex .footer_content .sub_menu + .main_menu {
margin-top: 24px;
}
footer div.logo img {
width: 150px;
margin: 30px auto;
} .footer_fv_copy {
background: var(--color-bg-light);
padding: 30px 0;
}
.footer_fv_copy_inner {
margin: 0 auto;
padding: 0 20px;
}
.footer_fv_catchcopy {
font-family: var(--font-family-mincho);
font-size: clamp(2.2rem, 5vw, 5rem);
font-weight: 600;
letter-spacing: 0.12em;
color: var(--color-accent-main);
background-color: var(--color-bg-light);
white-space: nowrap;
opacity: 0;
transform: translateY(30px);
transition: opacity 2.5s var(--ease-fade), transform 2.5s var(--ease-fade);
}
.footer_fv_catchcopy.fade-in {
opacity: 1;
transform: translateY(0);
} html:has(#container.article.lower) {
overflow-x: hidden;
} div#container.article.lower div.column_1 main > nav.breadcrumb-trail {
position: relative !important;
top: auto !important;
right: auto !important;
bottom: auto !important;
left: auto !important;
inset: auto !important;
transform: none !important;
float: none !important; width: 100vw;
max-width: none !important;
margin-left: calc(50% - 50vw) !important;
margin-right: calc(50% - 50vw) !important;
padding: 2rem 0 1.5rem;
box-sizing: border-box;
text-align: left;
background-color: #fff;
} div.lower main.main_about > nav.breadcrumb-trail {
z-index: 2;
}
div#container.article.lower div.column_1 main > nav.breadcrumb-trail .breadcrumb-trail__list {
max-width: var(--content-width);
width: 100%;
margin-left: auto;
margin-right: auto;
padding-left: 1rem;
padding-right: 1rem;
box-sizing: border-box;
}
div#container.article.lower div.column_1 main > nav.breadcrumb-trail .breadcrumb-trail__list,
div#container.article.lower div.column_1 main > nav.breadcrumb-trail .breadcrumb-trail__item,
div#container.article.lower div.column_1 main > nav.breadcrumb-trail li {
position: static !important;
top: auto !important;
right: auto !important;
bottom: auto !important;
left: auto !important;
inset: auto !important;
transform: none !important;
float: none !important;
}
div#container.article.lower div.column_1 main > nav.breadcrumb-trail .breadcrumb-trail__link,
div#container.article.lower div.column_1 main > nav.breadcrumb-trail .breadcrumb-trail__sep,
div#container.article.lower div.column_1 main > nav.breadcrumb-trail .breadcrumb-trail__text {
position: static !important;
top: auto !important;
right: auto !important;
bottom: auto !important;
left: auto !important;
inset: auto !important;
transform: none !important;
float: none !important;
}
div#container.article.lower div.column_1 main > nav.breadcrumb-trail .material-symbols-outlined {
position: static !important;
top: auto !important;
right: auto !important;
bottom: auto !important;
left: auto !important;
inset: auto !important;
transform: none !important;
float: none !important;
}
.breadcrumb-trail__list {
display: flex;
flex-wrap: wrap;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
gap: 0.35rem 0.5rem;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
font-size: 0.875rem;
font-weight: 400;
line-height: 1.5;
color: var(--color-text-secondary);
}
.breadcrumb-trail__item {
display: inline-flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
}
.breadcrumb-trail__link {
display: inline-flex;
align-items: center;
gap: 0.2rem;
text-decoration: none;
} div#container.article.lower div.column_1 main > nav.breadcrumb-trail a.breadcrumb-trail__link:link,
div#container.article.lower div.column_1 main > nav.breadcrumb-trail a.breadcrumb-trail__link:visited,
div#container.article.lower div.column_1 main > nav.breadcrumb-trail a.breadcrumb-trail__link:hover,
div#container.article.lower div.column_1 main > nav.breadcrumb-trail a.breadcrumb-trail__link:active {
color: var(--color-accent-main) !important;
font-weight: 400;
}
div#container.article.lower div.column_1 main > nav.breadcrumb-trail a.breadcrumb-trail__link:hover {
text-decoration: underline;
}
.breadcrumb-trail__link .breadcrumb-trail__text {
color: inherit;
}
.breadcrumb-trail__home-icon {
font-size: 1.125rem !important;
width: 1.125rem;
height: 1.125rem;
font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.breadcrumb-trail__sep {
color: var(--color-text-light);
user-select: none;
font-weight: 400;
}
.breadcrumb-trail__item--current .breadcrumb-trail__text {
color: var(--color-text-body);
}
@media screen and (min-width: 768px) {
div#container.article.lower div.column_1 main > nav.breadcrumb-trail .breadcrumb-trail__list {
padding-left: 0;
padding-right: 0;
}
} div.lower .lower_top .page_ttl {
position: absolute;
bottom: 0;
left: 0;
z-index: 10;
background-color: #fff;
border-radius: 0 30px 0 0;
padding: 20px 50px 0;
}
div.lower .lower_top .page_ttl p {
color: var(--color-text-light);
font-weight: bold;
position: relative;
padding-left: 37px;
}
div.lower .lower_top .page_ttl p::before {
content: "";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 30px;
height: 30px;
background-image: url(//www.eternal-cast.com/wp/wp-content/themes/eternal-cast-theme-v2-child/images/ttl_img-02.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
body:not(.home) div.lower .page_ttl h2,
body:not(.home) div.lower .page_ttl h3 {
font-family: var(--font-family-mincho);
font-weight: 600;
color: var(--color-accent-deep);
background-color: transparent;
font-size: 2.5rem;
text-align: center;
margin: 0;
line-height: normal;
}
body:not(.home) div.lower .sec_office .page_ttl h3,
body:not(.home) div.lower .sec_group_company .page_ttl h3 {
margin-bottom: 30px;
}
body:not(.home) div.lower .page_ttl h2::before,
body:not(.home) div.lower .page_ttl h3::before {
display: none;
}
div.article div.lower_top {
background-color: var(--color-bg-light);
position: relative;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 500px;
}
@media screen and (max-width: 768px) {
div.article div.lower_top {
background-image: url(//www.eternal-cast.com/wp/wp-content/eternal-cast-theme-v2/assets/img/lower/img_ttl_bg_13_sp.png) !important;
height: 230px;
} div.lower .lower_top .page_ttl {
left: 50%;
right: auto;
transform: translateX(-50%);
border-radius: 30px 30px 0 0;
text-align: center;
padding: 20px 10px;
min-width: 80%;
box-sizing: border-box;
}
div.lower .lower_top .page_ttl p {
display: inline-block;
text-align: left;
}
body:not(.home) div.lower .page_ttl h2,
body:not(.home) div.lower .page_ttl h3 {
font-size: 2rem;
height: auto;
}
} @media screen and (max-width: 768px) {
.footer_fv_catchcopy {
white-space: normal;
text-align: center;
max-width: 100%;
box-sizing: border-box;
overflow-wrap: break-word;
word-break: break-word;
}
}
@media (max-width: 767px) {
div.lower .lower_top .page_ttl_overlay {
padding: 20px;
}
div.lower .lower_top .page_ttl_overlay h2 {
font-size: 1.8rem;
padding: 15px 20px;
}
div.lower .lower_top .page_ttl_overlay.sd {
transform: translateY(20px);
}
@keyframes sdAppear {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
} @media screen and (max-width: 767px) {
html,
body {
overflow-x: hidden;
} .container,
.inner,
.wrapper,
header div.inner,
.wp-block-group__inner-container {
width: min(100%, 100vw) !important;
max-width: 100% !important;
padding-left: 16px;
padding-right: 16px;
box-sizing: border-box;
}
img,
svg,
video,
iframe,
table {
max-width: 100%;
height: auto;
} div.front .top_view video.fv_bg_video {
max-width: none !important;
}
iframe {
width: 100%;
} div.front div.top_view,
div.front div.top_view #top_slider,
div.front div.top_view .swiper,
div.front div.top_view .swiper-wrapper,
div.front div.top_view .swiper-slide {
height: 100vh !important;
min-height: 100vh !important;
}
div.front div.top_view video {
position: absolute !important;
inset: 0 !important;
z-index: 0 !important;
width: 100% !important;
height: 100% !important;
min-height: 100% !important;
object-fit: cover !important;
pointer-events: none;
} .row,
.columns {
min-width: 0;
}
.row > *,
.columns > * {
width: 100% !important;
max-width: 100% !important;
} p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a {
overflow-wrap: anywhere;
word-break: break-word;
} div.top_view .fv_copy,
div.top_view .fv_copy * {
overflow-wrap: normal;
word-break: normal;
line-height: 1.5;
} div.front .top_view .fv_copy {
z-index: 30 !important;
}
div.front .top_view .fv_logo {
display: flex !important;
width: auto !important;
max-width: 100% !important;
flex-shrink: 0 !important;
overflow: visible !important;
}
div.front .top_view img.fv_logo_img {
display: block !important;
width: min(72vw, 260px) !important;
max-width: min(72vw, 260px) !important;
min-width: 140px !important;
height: auto !important;
opacity: 1 !important;
visibility: visible !important;
position: relative;
z-index: 31 !important;
flex: none !important;
}
} @media screen and (max-width: 1080px) {
header .header_menu_area {
position: static;
}
.toggle_button_bg {
position: fixed;
top: 10px;
right: 10px;
z-index: 12002;
background: transparent !important;
background-image: none !important;
border-radius: 0 !important;
box-shadow: none !important;
padding: 0 !important;
}
#toggle.toggle_button {
width: 48px;
height: 48px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background: transparent;
border-radius: 0;
padding: 0 !important;
}
#toggle .bar {
position: absolute;
width: 26px;
height: 2px;
left: 50%;
top: 50%;
background: #1f1f1f;
transition: transform .28s ease, opacity .2s ease, background-color .2s ease;
} #toggle.toggle_button .bar + .bar {
margin-top: 0 !important;
}
#toggle .bar.top {
transform: translate(-50%, calc(-50% - 8px));
}
#toggle .bar.middle {
transform: translate(-50%, -50%);
}
#toggle .bar.bottom {
transform: translate(-50%, calc(-50% + 8px));
}
#toggle.toggle_active .bar {
background: #fff !important;
background-color: #fff !important;
}
#toggle.toggle_active .bar.top {
transform: translate(-50%, -50%) rotate(45deg);
}
#toggle.toggle_active .bar.middle {
opacity: 0;
}
#toggle.toggle_active .bar.bottom {
transform: translate(-50%, -50%) rotate(-45deg);
}
#drawer_layer.drawer_bg {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, .35);
z-index: 12000;
display: none;
}
header nav {
position: fixed;
inset: 0;
width: 100vw;
height: 100dvh;
max-width: 100%;
background: #111;
padding: 90px 20px 36px;
margin: 0;
border-radius: 0;
z-index: 12001;
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
pointer-events: none;
transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
overflow-y: auto;
}
header nav.is_open {
opacity: 1;
visibility: visible;
transform: translateY(0);
pointer-events: auto;
}
header nav ul {
width: 100%;
margin: 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 0;
}
header nav ul li {
width: 100%;
height: auto;
justify-content: center;
border-top: 1px solid rgba(255, 255, 255, .14);
}
header nav ul li:last-child {
border-bottom: 1px solid rgba(255, 255, 255, .14);
}
header nav ul li.switching {
display: none;
}
header nav ul li a {
width: 100%;
min-height: 58px;
display: flex;
justify-content: center;
align-items: center;
padding: 14px 10px;
color: #fff !important;
background: transparent !important;
border-radius: 0;
font-size: 1rem;
line-height: 1.4;
transform: none !important;
}
header nav ul li a:hover {
background: rgba(255, 255, 255, .08) !important;
}
header nav ul li a .external-link-icon {
opacity: .9;
} header nav ul li a[href*="x.com"] img,
header nav ul li a[href*="twitter.com"] img {
filter: brightness(0) invert(1);
} header nav ul li.parent_menu {
flex-direction: column !important;
}
header nav ul li.parent_menu ul.sub_menu,
header nav ul li.parent_menu:hover ul.sub_menu,
header nav ul li.parent_menu:focus-within ul.sub_menu {
display: flex !important;
flex-direction: column !important;
position: static !important;
transform: none !important;
background-color: transparent !important;
box-shadow: none !important;
border-radius: 0 !important;
padding: 0 !important;
min-width: 0 !important;
max-width: none !important;
width: 100% !important;
margin: 0 !important;
overflow: visible !important;
}
header nav ul li.parent_menu ul.sub_menu > li {
border-top: 1px solid rgba(255, 255, 255, .08) !important;
}
header nav ul li.parent_menu ul.sub_menu > li > a {
background-color: transparent !important;
color: rgba(255, 255, 255, .85) !important;
font-size: 0.92rem !important;
min-height: 48px !important;
justify-content: left !important;
white-space: normal !important;
}
header nav ul li.parent_menu ul.sub_menu > li + li > a {
border-top: 0 !important;
}
header nav ul li.parent_menu ul.sub_menu > li > a:hover {
background: rgba(255, 255, 255, .08) !important;
color: #fff !important;
}
header nav ul li.parent_menu::after {
display: none;
}
body.drawer_open {
overflow: hidden;
} body.drawer_open nav.breadcrumb-trail {
visibility: hidden !important;
pointer-events: none !important;
}
body.drawer_open header {
z-index: 12100 !important;
}
}