/**
 * File: base.css
 * Usage: 全ページ共通のスタイルを定義します。レイアウト、モジュールなど。
 * Example: ly_header, ly_footer, el_btn, el_gradientGold, el_subpTtl, el_normalTtl
*/

@charset "UTF-8";

/* ================================================  
 カスタムプロパティ
================================================ */
:root {
  --color-black: #323a3c;
  --color-white: #ebf0f2;
  --color-gray: #4f595c;
  --color-blueGray: #234f5f;
  --color-blueGray-secondary: #96a2a7;
  --color-blueGray-tertiary: #d0dade;
  --color-white-accent: #f0f2f3;

  --font-3xl: 40px;
  --font-xxl: 34px;
  --font-xl: 24px;
  --font-lg: 20px;
  --font-md: 18px;
  --font-sm: 16px;
  --font-xs: 14px;
  --font-xxs: 12px;

  --btn-gradient: linear-gradient(90deg, #f372a3 19%, #6fb2ef 100%);
  --btn-gradient-hover: linear-gradient(90deg, #f372a3 75%, #6fb2ef 100%);
}

/* ================================================  
 ローディングアニメーション
================================================ */
/* .js_loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  pointer-events: none;
}

.js_loader {
  width: 50px;
  height: 50px;
  background-color: pink;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

/* ================================================  
 リセットの記述
================================================ */
/* 管理バーの余白を削除 */
html {
  margin-top: 0 !important;
}

#wpadminbar {
  display: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding: 0;
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  /* Fallback */
  /* min-height: calc(var(--vh, 1vh) * 100); */
  text-rendering: optimizeSpeed;
  line-height: 1.8;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

pre {
  white-space: pre-line;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* WordPress管理画面のツールバー */
#wpadminbar {
  display: none !important;
}

/* ================================================  
 フォントの読み込み
================================================ */
@font-face {
  font-family: 'ZenKakuGothicNew';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ZenKakuGothicNew-Regular.woff');
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ZenKakuGothicNew-Medium.woff');
}
@font-face {
  font-family: 'ZenKakuGothicNew';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ZenKakuGothicNew-Bold.woff');
}

/* ================================================  
 サイドバー
================================================ */
.el_bg_left {
  display: none;
}

/* ================================================  
 カスタマイズ広告の設定
================================================ */
.bl_ads {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ================================================  
 スタイルの適用(モバイルファーストで記述)
================================================ */
body {
  background-color: #ffffff;
  color: #333;
  -webkit-text-size-adjust: 100%;
  font-family: 'ZenKakuGothicNew', '游ゴシック体', 'Yu Gothic', sans-serif;
  font-size: var(--font-xs);
  line-height: 160%;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  letter-spacing: 0.05em;
}

main {
  min-height: 100vh;
}

body.is_navOpen {
  overflow: hidden;
  pointer-events: none;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
  margin-top: 0.6em;
  margin-bottom: 0.4em;
}

h4 {
  font-size: 1.12em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.75em;
}

.clearfix::after {
  clear: both;
}

li {
  list-style: none;
}

html {
  margin-top: 0 !important;
}

/* defaultの▼アイコンを消す */
summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

/* メディアクエリ用の表示・非表示 */
.sm_only {
  display: block !important;
}

.md_only,
.lg_only {
  display: none !important;
}

.xl_only {
  display: none !important;
}

/* ================================================  
  レイアウト
================================================ */
.ly_cont {
  padding-inline: 20px;
  margin-inline: auto;
}

.ly_noneHeader {
  /* padding-top: 40px; */
}

.ly_cont_sm {
  padding-inline: 20px;
  margin-inline: auto;
}

.ly_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ly_section {
  padding-block: 80px;
}

/* ================================================  
モジュール
================================================ */
/* barba */
.barba-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* ================================================  
logo
================================================ */
.el_logo {
  width: 100px;
  margin: auto;
  display: flex;
  margin-block: 40px;
}
/* ================================================  
header
================================================ */

.bl_headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ================================================  
検索フォーム
================================================ */
.el_serchform {
  border-radius: 4px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.el_serchform input {
  background: #f1f1f1;
  border: none;
  padding: 6px 12px;
  padding-left: 32px;
  width: 100%;
}

.el_serchform_btn {
  position: absolute;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
  border: none;
  background: none;
}

/* ================================================  
bogo 
================================================ */
.bogoflags,
.bogoflags-before:before {
  display: none;
}

.el_switchBtn {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 44px;
  right: 20px;
  z-index: 1000;
}

.el_switchBtn svg {
  filter: contrast(0.5);
}

.bl_headerSwitcher {
  display: none;
  position: fixed;
  top: 64px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 6px;
  border: #c8c8c8 1px solid;
  box-shadow: 2px 4px 4px rgba(255, 255, 255, 0.2);
  background: white;
  z-index: 1000;
}

.bl_headerSwitcher.is_open {
  display: block;
}

.bl_headerSwitcher ul li:not(:first-child) {
  margin-top: 12px;
}

.bl_headerSwitcher ul li span:not(:has(a)) {
  text-decoration: line-through;
  opacity: 0.3;
}

.bl_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
}

.bl_overlay.is_open {
  display: block;
}
/* ================================================  
パンくずリスト 
================================================ */
.bl_breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.bl_breadcrumbs_li {
  font-size: var(--font-xs);
  font-weight: 500;
  color: var(--color-black);
  line-height: 1;
}

.bl_breadcrumbs_separator {
  line-height: 1;
}

/* header */

/* footer */

footer {
  padding-bottom: 80px;
}

.el_footerCopy {
  font-size: 10px;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 20px;
}

/* ================================================  
  コンタクトフォーム
================================================ */
/* レイアウトの設定 */
.bl_contactWrapper {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 1000px;
}

.bl_contactWrapper_txt {
  width: 100%;
}

.bl_contactWrapper_box {
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #a8cbf3;
}

.bl_contact {
  margin-top: 20px;
  width: 100%;
}

.el_contactMust {
  font-size: 12px;
  color: #ff0000;
  margin-left: 10px;
}

.wpcf7-form-control {
  width: 100%;
}

.wpcf7-form-control::-webkit-input-placeholder {
  padding-left: 10px;
  color: #c8c8c8;
}

.wpcf7-form-control.wpcf7-text {
  height: 40px;
}

.wpcf7-form-control.wpcf7-textarea {
  height: 150px;
}

.bl_contactform {
  margin-top: 24px;
}

.bl_contactform_input {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .bl_contactWrapper {
    margin-top: 90px;
  }

  .bl_contactWrapper_box {
    margin-top: 30px;
    padding: 40px;
  }
}

@media screen and (min-width: 960px) {
  .bl_spNav {
    top: 140px;
    max-width: 800px;
  }
}

@media screen and (min-width: 1160px) {
  .bl_contactWrapper_box {
    margin-top: 30px;
    padding: 70px 125px;
  }
}

/* ================================================  
  エレメントモジュール
================================================ */

/* VIEW MOREボタン */
.el_moreBtn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 4.48px;
  line-height: 1.2;
  color: white;
  background: var(--btn-gradient);
  width: 280px;
  height: 56px;
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    all 0.8s,
    color 0.4s;
  border-radius: 4px;
  cursor: pointer;
  z-index: 0;
}

.el_moreBtn svg {
  position: absolute;
  top: 50%;
  right: 28px;
  translate: 0 -50%;
  width: 6.5px;
  transition: all 0.4s ease;
}

.el_moreBtn:after {
  background: var(--btn-gradient-hover);
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition:
    all 0.8s,
    color 0.4s;
  border-radius: 4px;
}

.el_moreBtn:hover:after {
  opacity: 1;
}

.el_moreBtn:hover svg {
  translate: 6px -50%;
}

/* 角丸ボタン */
.el_roundedBtn {
  background: var(--btn-gradient);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 153px;
  height: 36px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  transition:
    all 0.8s,
    color 0.4s;
  cursor: pointer;
  gap: 4px;
  margin-inline: auto;
  z-index: 0;
  position: relative;
}

.el_roundedBtn.el_headerBtnContact {
  width: 42px;
  height: 42px;
}

.el_roundedBtn:after {
  background: var(--btn-gradient-hover);
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition:
    all 0.8s,
    color 0.4s;
  border-radius: 999px;
}

.el_roundedBtn:hover:after {
  opacity: 1;
}

/* セクションタイトル */

.el_secTtl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.el_secTtlEn {
  font-family: 'JosefinSans', sans-serif;
  font-size: var(--font-3xl);
  font-weight: 500;
  color: var(--color-white);
  text-align: left;
}

.el_secTtlJa {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.24em;
}

/* ================================================  
 ヘルパー
================================================ */
/* 余白の調整 */

.hp_mt_xs {
  margin-top: 16px;
}

.hp_mt_sm {
  margin-top: 24px;
}

.hp_mt_md {
  margin-top: 32px;
}

.hp_mt_lg {
  margin-top: 40px;
}

.hp_mt_xl {
  margin-top: 56px;
}

.hp_ptlg {
  padding-top: 40px;
}

.hp_pb_md {
  padding-bottom: 20px;
}

.hp_pt_lg {
  padding-top: 40px;
}

.hp_padX_lg {
  padding-inline: 40px;
}

.hp_padY_md {
  padding-block: 20px;
}

.hp_wMax {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}

.hp_z10 {
  z-index: 10;
}

.hp_z100 {
  z-index: 100;
}

.hp_z1000 {
  z-index: 1000;
}

/* 色の変更 */
.hp_bgBlack {
  background: #333;
}

.hp_txtWhite {
  color: #fff;
}

/* テキストの調整 */
.hp_txtCenter {
  text-align: center;
}

/* アライン調整 */
.hp_align_r {
  margin-left: auto;
  margin-right: 0;
}

.bl_footer_logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.bl_footer_logos a {
  display: flex;
  max-height: 45px;
  width: auto;
  margin-inline: none;
}

.bl_footer_logos a img {
  width: auto;
  max-height: 45px;
  object-fit: contain;
}

.hp_fontMed {
  font-weight: 500;
}
/* ================================================  
 columnパーツ
================================================ */

.bl_newsWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  gap: 32px 20px;
  margin: 0 auto;
  justify-content: center;
  margin-top: 40px;
}

.bl_column {
  transition: all 0.4s;
}

.bl_column .bl_column_thumb {
  aspect-ratio: 3 / 2;
  border-radius: 4px;
  overflow: hidden;
}

.bl_column .bl_column_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s ease;
}

.bl_column:hover .bl_column_thumb img {
  transform: scale(1.1);
}

.bl_column_ttl {
  font-size: var(--font-xs);
  line-height: 1.4;
  margin-top: 8px;
}

.bl_column_postMeta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  margin-top: 5px;
  color: #666;
}

.bl_column_postCats {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.bl_column_postCats_li {
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 4px;
  line-height: 1;
}

.is_categoryNews {
  background-color: #fff5f8;
  color: #e989a6;
}

.is_categoryReport {
  background-color: #f1f8fd;
  color: #78ade9;
}

.is_categoryUncategorized {
  background-color: #f5f5f5;
  color: #888888;
}

.bl_column_postDate {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3.84px;
  color: #a0a0a0;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 4px;
}

/* ボーダー打ち消し */
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  border: none;
}

.wp-pagenavi span.current {
  font-weight: 400;
  background-color: #fff5f8;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  width: 40px;
  height: 40px;
}

/* category.php用 */
.el_catName {
  font-size: var(--font-md);
  font-weight: 400;
  margin-top: 40px;
  border-bottom: #a0a0a0 1px solid;
  padding-bottom: 8px;
}

/* ボタン */
.hp_txtCenter {
  text-align: center;
  margin-top: 20px;
}
.ly_btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-around;
  padding-inline: 12px;
  gap: 12px;
}

.el_btn {
  margin-top: 20px;
  background: rgba(50, 58, 60, 0.5);
  color: white;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  height: 42px;
  width: 100%;
  transition: all 0.3s ease;
}

.el_anotherBtn {
  background: rgb(215, 23, 23);
  color: #fff;
}

.el_backBtn {
  position: absolute;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  top: 48px;
  left: 20px;
  z-index: 1000;
  display: flex;
  font-weight: 500;
}

.el_backBtn img {
  width: 24px;
}

.ly_cont.ly_btnCont {
  margin-inline: auto;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .bl_newsWrapper {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
  }

  .bl_column_postMeta {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
  }

  .bl_column_ttl {
    font-size: var(--font-sm);
  }

  /* category.php用 */
  .el_catName {
    margin-top: 80px;
  }

  /* button */
  .el_backBtn {
    left: auto;
    padding-left: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .bl_newsWrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 56px 27px;
  }
}

/* ここまで */

/* ================================================  
 会社概要パーツ
================================================ */
.bl_comCont {
  margin-top: 40px;
}

.bl_comCont_li {
  display: flex;
  align-items: flex-start;
  padding-block: 18px;
  border-top: 1px solid #c8c8c8;
}

.bl_comCont_li:last-of-type {
  border-bottom: 1px solid #c8c8c8;
}

.bl_comCont_li_l {
  width: 30%;
  font-weight: 600;
}

.bl_comCont_li_r {
  width: 70%;
}

.bl_comMap {
  margin-top: 40px;
}

.ly_footer {
  padding-bottom: 80px;
}

/* PR記事用 */
.bl_prImg {
  position: relative;
}
.bl_result_item img.el_prRibbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  overflow: hidden;
  height: auto;
  object-fit: contain;
  object-position: right;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .bl_comCont {
    margin-top: 80px;
  }

  .bl_comCont_li_l {
    width: 15%;
  }

  .bl_comCont_li_r {
    width: 85%;
  }

  .el_serchform input {
    padding-block: 8px;
  }

  .bl_result_item img.el_prRibbon {
    width: 30%;
  }
}

@media screen and (min-width: 768px) {
  main {
    max-width: 768px;
    margin-left: auto;
    margin-right: 0;
  }
  .sm_only {
    display: none !important;
  }

  .md_only {
    display: block !important;
  }

  .ly_cont,
  .bl_Lcat_wrapper {
    padding-inline: 40px;
  }

  /* ヘッダー */
  .ly_header {
    display: flex;
    justify-content: center;
    top: 64px;
    background: rgba(255, 255, 255, 0);
    z-index: 1000;
  }

  /* ヘッダー nav */
  .el_roundedBtn.el_headerBtnContact {
    width: 153px;
    height: 36px;
  }

  /* ヘッダー 固定アイコン */
  .bl_fixedIcons {
    position: fixed;
    top: 50%;
    right: 1%;
    translate: 0 -50%;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .bl_fixedIcons_list a {
    display: flex;
    width: 24px;
    mix-blend-mode: difference;
  }

  .bl_fixedIcons_list a svg {
    filter: drop-shadow(0px 2px 4px rgba(255, 91, 198, 0.4));
    fill: #e989a6 !important;
    fill-rule: nonzero;
  }

  /* フッター */

  .ly_footer {
    padding-bottom: 80px;
  }

  .bl_footerNav {
    align-items: center;
    font-size: var(--font-xs);
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-inline: 8px;
  }

  .bl_footerNav_list {
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .bl_footerNav_list:hover {
    color: var(--color-blueGray);
  }

  /* フッターお問い合わせボタン */
  .bl_footerNav .el_roundedBtn.hp_mt_lg {
    margin-top: 0;
  }

  .el_copy {
    margin-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .ly_cont {
    max-width: 768px;
  }

  /* header */
  /* .bl_header {
    height: 100px;
    top: 0;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    max-width: 100%;
  } */

  .el_headerLogo {
    width: 308px;
  }

  .ly_page {
    padding-top: 100px;
  }

  .el_headerNavLink {
    color: var(--color-black);
    font-weight: 400;
  }

  .el_headerNav_cont .el_headerNavList {
    gap: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .ly_section {
    padding-block: 200px;
  }

  .ly_cont.bl_headerWrapper {
    padding-inline: 32px;
  }

  .md_only {
    display: none !important;
  }

  .lg_only {
    display: block !important;
  }

  .bl_headerNav {
    gap: 24px;
  }

  .el_headerNav_cont .el_headerNavList {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .el_headerNavItem {
    font-size: var(--font-xs);
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .el_headerNavItem:hover {
    color: var(--color-blueGray);
  }

  .el_secTtlEn {
    font-size: 64px;
  }

  .el_secTtlJa {
    font-size: 16px;
  }

  .bl_footerNavWrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 950px;
    margin-inline: auto;
  }

  .bl_footerNav {
    margin-top: 40px;
  }

  .bl_footerLogo {
    width: 308px;
  }

  .ad-banner {
    width: 230px;
  }

  /* ヘッダー内ヘッダー */
  .el_spNavList_li_header {
    color: var(--color-black);
    border: var(--color-black) 1px solid;
    gap: 8px;
    font-weight: 400;
    position: relative;
    cursor: pointer;
  }

  .el_spNavList_li a,
  .el_spNavList_li summary {
    padding: 12px 24px;
    gap: 8px;
  }

  .el_spNavList_li_header .bogo-language-switcher {
    position: absolute;
    width: 100%;
    background: var(--color-blueGray-tertiary);
    color: var(--color-black);
  }

  header .el_spNavList_li .bogo-language-switcher.list-view li a.current {
    color: var(--color-black);
  }

  header .bogo-language-switcher .bogo-language-name {
    display: flex;
  }

  header ul.bogo-language-switcher li {
    padding: 0;
  }

  header .el_spNavList_li .bogo-language-name a {
    padding: 8px 16px;
    width: 100%;
    border: var(--color-black) 1px solid;
  }

  header .el_spNavList_li .bogo-language-name a:hover {
    background: var(--color-black);
    color: var(--color-white) !important;
  }

  header details.el_headerNavItem[open] {
    background: var(--color-black);
    color: var(--color-white);
  }

  header details.el_headerNavItem[open] svg {
    rotate: 180deg;
  }

  header details.el_headerNavItem[open] svg path {
    stroke: var(--color-white);
  }
}

@media screen and (min-width: 960px) {
  .el_bg_left {
    display: block;
    position: fixed;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 768px);
    height: 100%;
  }
  .el_bg_left img {
    width: 100px;
  }
}

@media screen and (min-width: 1152px) {
  .xl_only {
    display: block;
  }

  .el_headerNav_cont {
    display: block !important;
    gap: 24px;
  }

  .el_humb {
    display: none;
  }
}

@media screen and (min-width: 1760px) {
  .el_bg_left {
    display: none;
  }

  main {
    margin-inline: auto;
  }
}

.ly_single {
  margin-top: 20px;
}
