@charset "UTF-8";
/* =============================================
style.scss
============================================= */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

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

/* =============================================
Base
============================================= */
/* =============================================
Variable
============================================= */
html {
  position: relative;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-weight: 400;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

@media screen and (max-width: 450px) {
  body {
    font-size: 0.9375rem;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

/* =============================================
Base
============================================= */
/* =============================================
Utility
============================================= */
.el_onlySp {
  display: none;
}

.el_onlyTab {
  display: none;
}

@media screen and (max-width: 1024px) {
  .el_onlyTab {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .el_onlyTab {
    display: none;
  }
  .el_onlySp {
    display: block;
  }
}
.hl_mb10 {
  margin-bottom: 10px !important;
}

.hl_mb20 {
  margin-bottom: 20px !important;
}

.hl_mb30 {
  margin-bottom: 30px !important;
}

.hl_mb40 {
  margin-bottom: 40px !important;
}

.hl_tac {
  text-align: center;
}

.hl_fz12 {
  font-size: 1.2rem;
}

.hl_fw700 {
  font-weight: 700;
}

.el_txtGray {
  color: #ddd;
}

/* アクセシビリティのための非表示テキスト */
.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =============================================
Base
============================================= */
/* =============================================
Base
============================================= */
/* =============================================
JS
============================================= */
.splide__arrow {
  background: #fff;
  border: 1px solid #E5E5E5;
  width: 36px;
  height: 36px;
  opacity: 1;
  transition: 0.3s;
}
.splide__arrow:hover {
  background: #E5E5E5;
}
.splide__arrow svg {
  display: none;
}
.splide__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.splide__arrow.splide__arrow--prev::before {
  left: 16px;
  transform: translateY(-50%) rotate(-135deg);
}
.splide__arrow.splide__arrow--next::before {
  left: 13px;
  transform: translateY(-50%) rotate(45deg);
}
.splide__arrow:disabled {
  opacity: 0.5;
}

.splide__pagination {
  bottom: 1px;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.splide__pagination__page {
  background: #F5F5F5;
  height: 5px;
  margin: 2px;
  opacity: 1;
  width: 5px;
}
.splide__pagination__page.is-active {
  background: #000;
  transform: none;
}

/* =============================================
Base
============================================= */
/* =============================================
Component 共通パーツのスタイル
============================================= */
/* ---------------------------------------------
   common
--------------------------------------------- */
.ly_mainArea {
  position: relative;
  padding: 52px 0 0;
}

@media screen and (max-width: 450px) {
  .ly_mainArea {
    padding: 55px 0 0;
  }
}
.el_container {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.el_container__short {
  max-width: 800px;
}

.bl_section {
  margin-bottom: 100px;
}
.bl_section .bl_search {
  margin-bottom: 60px;
}
.bl_section__short {
  margin-bottom: 20px;
}
.bl_section__mt80 {
  margin-top: 80px;
}

.bl_section2 {
  padding: 70px 0 100px;
  background: #FBFBFB;
}

.bl_section3 {
  margin-bottom: 20px;
}

@media screen and (max-width: 450px) {
  .el_container {
    max-width: 90%;
  }
  .bl_section {
    margin-bottom: 55px;
  }
  .bl_section .bl_search {
    margin-bottom: 30px;
  }
  .bl_section__mt80 {
    margin-top: 30px;
  }
  .bl_section2 {
    padding: 50px 0 55px;
  }
  .bl_section3 {
    margin-bottom: 15px;
  }
}
.bl_breadcrumbs ul {
  display: flex;
}
.bl_breadcrumbs ul li {
  font-size: 0.75rem;
  position: relative;
}
.bl_breadcrumbs ul li:not(:last-child) {
  margin-right: 35px;
}
.bl_breadcrumbs ul li:not(:last-child)::before {
  content: "";
  width: 13px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: -24px;
  background: #E8E8E8;
}
.bl_breadcrumbs ul li span {
  display: inline-block;
}
.bl_breadcrumbs ul li a {
  color: #A3A3A3;
  display: inline-block;
}
.bl_breadcrumbs ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 450px) {
  .bl_breadcrumbs {
    margin-top: 25px;
  }
}
.bl_pageTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 255px;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
.bl_pageTtl_ttl {
  text-align: center;
  font-size: 8.9375rem;
  line-height: 1;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}
.bl_pageTtl--min {
  display: block;
  height: auto;
  border: none;
  padding: 20px 0 0;
  margin-bottom: 50px;
}
.bl_pageTtl--min .bl_pageTtl_ttl {
  text-align: left;
  font-size: 5.625rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .bl_pageTtl {
    height: 165px;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
  .bl_pageTtl_ttl {
    font-size: 5.25rem;
  }
  .bl_pageTtl--min {
    height: auto;
    padding: 15px 0 0;
    margin-bottom: 30px;
  }
  .bl_pageTtl--min .bl_pageTtl_ttl {
    font-size: 3.375rem;
  }
}
.el_ttlJp {
  font-size: 2.625rem;
  text-align: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 450px) {
  .el_ttlJp {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }
}
.el_ttlEn {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 2.5625rem;
  line-height: 1;
  margin-bottom: 10px;
}
.el_ttlEn__center {
  margin-bottom: 35px;
  text-align: center;
}

@media screen and (max-width: 450px) {
  .el_ttlEn {
    font-size: 2.25rem;
  }
  .el_ttlEn__center {
    margin-bottom: 25px;
  }
}
.el_txtLink {
  text-decoration: underline;
}
.el_txtLink:hover {
  text-decoration: none;
}

.el_txtLinkB:hover {
  text-decoration: underline;
}

.el_moreBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 55px;
  width: fit-content;
  background: #000;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.3s;
}
.el_moreBtn:hover {
  background: #696969;
}
.el_moreBtn--ext {
  padding: 15px 5px;
}
.el_moreBtn--ext span {
  display: inline-block;
  position: relative;
  padding: 0 30px;
}
.el_moreBtn--ext span::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/common/icon_link.svg) center/contain no-repeat;
}
.el_moreBtn--max {
  width: 100%;
}
.el_moreBtn img {
  display: block;
  margin-right: 5px;
}

@media screen and (max-width: 450px) {
  .el_moreBtn {
    min-height: 45px;
    padding: 10px 25px;
    font-size: 0.8125rem;
    width: 100%;
    max-width: 100%;
  }
  .el_moreBtn img {
    display: block;
    margin-right: 7px;
    max-height: 16px;
  }
}
.el_snsBtn {
  display: block;
  width: 50px;
  height: 45px;
  transition: 0.4s;
}
.el_snsBtn:hover {
  opacity: 0.6;
}
.el_snsBtn img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 450px) {
  .el_snsBtn {
    width: 40px;
    height: 36px;
  }
}
.bl_anchorLink {
  padding: 0 30px;
}
.bl_anchorLink_list {
  display: flex;
}
.bl_anchorLink_item:not(:last-child) {
  margin-right: 30px;
}
.bl_anchorLink_link {
  display: block;
  position: relative;
  padding-right: 23px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.4s;
}
.bl_anchorLink_link::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  top: 3px;
  right: 0;
  transform: rotate(45deg);
  z-index: 5;
}
.bl_anchorLink_link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1024px) {
  .bl_anchorLink {
    padding: 0;
  }
  .bl_anchorLink_list {
    flex-wrap: wrap;
  }
  .bl_anchorLink_item {
    margin: 10px 15px;
  }
  .bl_anchorLink_item:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 450px) {
  .bl_anchorLink {
    padding: 0;
  }
  .bl_anchorLink_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 20px;
  }
  .bl_anchorLink_item:not(:last-child) {
    margin-right: 0;
  }
  .bl_anchorLink_link {
    display: block;
    padding-right: 20px;
  }
  .bl_anchorLink_link::after {
    width: 8px;
    height: 8px;
    top: 5px;
  }
}
.bl_search {
  max-width: 1000px;
  margin: 0 auto;
}
.bl_search_head {
  background: #FBFBFB;
  border-radius: 5px;
  padding: 18px;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}
.bl_search_head::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  top: 50%;
  right: 20px;
  transform: translateY(-60%) rotate(45deg);
  z-index: 5;
  transition: 0.4s;
}
.bl_search_ttl {
  font-size: 1rem;
  width: fit-content;
  position: relative;
}
.bl_search_ttl::after {
  content: "";
  width: 18px;
  height: 19px;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  background: url(../img/common/icon_search2.svg) center/contain no-repeat;
  z-index: 5;
}
.bl_search_body {
  display: none;
  padding: 35px 75px 40px;
  border: 3px solid #FBFBFB;
}
.bl_search_label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}
.bl_search_select {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}
.bl_search_selectItem {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bl_search_selectWrap {
  width: 100%;
  height: 46px;
  position: relative;
}
.bl_search_selectWrap::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  top: calc(50% - 2px);
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 5;
}
.bl_search_selectBox {
  width: 100%;
  height: 46px;
  background: #FBFBFB;
  border: none;
  font-size: 0.9375rem;
  border-radius: 100px;
  padding: 10px 35px 10px 15px;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.bl_search_selectBox:focus-visible {
  outline: none;
}
.bl_search_btnWrap {
  display: flex;
  align-items: flex-end;
}
.bl_search_word {
  flex: 1;
  margin-right: 25px;
}
.bl_search_inputWrap {
  position: relative;
  height: 46px;
}
.bl_search_inputWrap::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  background: url(../img/common/icon_search2.svg) center/contain no-repeat;
  z-index: 5;
}
.bl_search_input {
  width: 100%;
  height: 46px;
  background: #FBFBFB;
  border: none;
  font-size: 0.9375rem;
  border-radius: 100px;
  padding: 10px 15px 10px 45px;
  line-height: 1.5;
}
.bl_search_input::placeholder {
  color: #959595;
}
.bl_search_input:focus-visible {
  outline: none;
}
.bl_search_btn button {
  display: block;
  width: 230px;
  font-size: 0.9375rem;
  background: #000;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 14px 30px;
  border-radius: 5px;
  transition: 0.3s;
  border: 0;
  cursor: pointer;
}
.bl_search_btn button:hover {
  background: #696969;
}

.bl_search_head.is-open {
  border-radius: 5px 5px 0 0;
}
.bl_search_head.is-open::after {
  transform: translateY(-20%) rotate(-135deg);
}

@media screen and (max-width: 450px) {
  .bl_search {
    max-width: none;
    margin: 0;
  }
  .bl_search_head {
    padding: 15px;
  }
  .bl_search_head::after {
    width: 10px;
    height: 10px;
  }
  .bl_search_ttl {
    font-size: 0.75rem;
    width: auto;
    padding-left: 20px;
  }
  .bl_search_ttl::after {
    width: 14px;
    height: 15px;
    right: auto;
    left: 0;
  }
  .bl_search_body {
    display: none;
    padding: 25px 20px;
  }
  .bl_search_label {
    margin: 0 0 5px;
    font-size: 0.875rem;
  }
  .bl_search_select {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .bl_search_selectItem {
    display: block;
  }
  .bl_search_selectBox {
    font-size: 0.75rem;
  }
  .bl_search_btnWrap {
    display: block;
    align-items: flex-end;
  }
  .bl_search_word {
    flex: 1;
    margin: 0 0 20px;
  }
  .bl_search_inputWrap::after {
    width: 14px;
    height: 15px;
  }
  .bl_search_input {
    width: 100%;
    font-size: 0.75rem;
  }
  .bl_search_btn button {
    display: block;
    width: 100%;
    padding: 13px 25px;
    font-size: 0.8125rem;
    max-width: 100%;
  }
}
.el_category {
  display: flex;
}
.el_category span {
  position: relative;
  display: inline-block;
  min-width: 60px;
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.625rem;
  border-radius: 2px;
  padding: 0 7px;
}
.el_category span:not(:first-child) {
  margin-left: 10px;
}
.el_category--min span {
  font-size: 0.6875rem;
  line-height: 1.25rem;
  font-weight: 400;
  padding: 0 7px 1px;
}
.el_category + .el_category {
  margin-top: 10px;
}

@media screen and (max-width: 450px) {
  .el_category {
    display: flex;
  }
  .el_category span {
    min-width: 52px;
    font-size: 0.75rem;
    line-height: 1.65;
    padding: 0 5px;
  }
  .el_category span:not(:first-child) {
    margin-left: 3px;
  }
  .el_category--min span {
    font-size: 0.6875rem;
    line-height: 1.25rem;
    font-weight: 400;
    padding: 0 5px 1px;
  }
}
.bl_pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bl_pagination_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.bl_pagination_item {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
}
.bl_pagination_item.is-current {
  color: #B2B2B2;
}
.bl_pagination_item.is-dots {
  pointer-events: none;
}
.bl_pagination_item > a {
  transition: 0.4s;
}
.bl_pagination_item > a:hover {
  color: #B2B2B2;
}
.bl_pagination_first > a, .bl_pagination_prev > a, .bl_pagination_next > a, .bl_pagination_last > a {
  display: block;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid #E5E5E5;
  position: relative;
  transition: 0.4s;
}
.bl_pagination_first > a::before, .bl_pagination_prev > a::before, .bl_pagination_next > a::before, .bl_pagination_last > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 8px;
}
.bl_pagination_first > a:hover, .bl_pagination_prev > a:hover, .bl_pagination_next > a:hover, .bl_pagination_last > a:hover {
  background: #E5E5E5;
}
.bl_pagination_first {
  margin-right: 10px;
}
.bl_pagination_first a::before {
  background: url(../img/under/icon_arrow_post_first.svg) center/contain no-repeat;
}
.bl_pagination_prev {
  margin-right: 30px;
}
.bl_pagination_prev a::before {
  background: url(../img/under/icon_arrow_post_prev.svg) center/contain no-repeat;
}
.bl_pagination_next {
  margin-left: 30px;
}
.bl_pagination_next a::before {
  background: url(../img/under/icon_arrow_post_next.svg) center/contain no-repeat;
}
.bl_pagination_last {
  margin-left: 10px;
}
.bl_pagination_last a::before {
  background: url(../img/under/icon_arrow_post_last.svg) center/contain no-repeat;
}

@media screen and (max-width: 450px) {
  .bl_pagination {
    margin-top: 50px;
  }
  .bl_pagination_list {
    gap: 15px;
  }
  .bl_pagination_item {
    font-size: 1.0625rem;
  }
  .bl_pagination_first > a, .bl_pagination_prev > a, .bl_pagination_next > a, .bl_pagination_last > a {
    width: 30px;
    height: 30px;
  }
  .bl_pagination_prev {
    margin-right: 20px;
  }
  .bl_pagination_next {
    margin-left: 20px;
  }
}
.el_listDesc > li {
  position: relative;
  padding-left: 15px;
}
.el_listDesc > li::before {
  content: "";
  position: absolute;
  border-radius: 10px;
  background: #000;
  width: 5px;
  height: 5px;
  left: 0;
  top: 12px;
}

/* =============================================
Base
============================================= */
/* =============================================
Header ヘッダーのスタイル
============================================= */
.ly_header {
  position: relative;
  padding: 12px 0 10px;
  width: 100%;
  height: 116px;
  z-index: 3;
}
.ly_header_top {
  display: grid;
  grid-template-columns: 294px 1fr 280px;
  margin-bottom: 10px;
}
.ly_header_inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .ly_header_inner {
    width: 96%;
  }
  .ly_header_top {
    grid-template-columns: 230px 1fr 280px;
  }
}
@media screen and (max-width: 450px) {
  .ly_header {
    top: 0;
    position: fixed;
    padding: 12px;
    height: auto;
    z-index: 10000;
    background: #fff;
    border-bottom: 1px solid #FBFBFB;
  }
  .ly_header_top {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .ly_header_inner {
    width: auto;
    margin: 0;
  }
  .ly_header .el_headerSearch {
    order: 2;
  }
  .ly_header .el_headerLogo {
    order: 1;
  }
}
.bl_globalNavi {
  position: relative;
}
.bl_globalNavi_list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl_globalNavi_list > li + li {
  margin-left: 38px;
}
.bl_globalNavi_list a {
  position: relative;
  padding-bottom: 2px;
  transition: 0.2s ease;
}
.bl_globalNavi_list a::before {
  content: "";
  position: absolute;
  transition: 0.2s ease;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #000;
}
.bl_globalNavi_list a:hover::before {
  height: 2px;
}

@media screen and (max-width: 450px) {
  .bl_globalNavi {
    display: none;
  }
}
.bl_headerLinks {
  position: relative;
  align-self: flex-end;
  padding-bottom: 14px;
}
.bl_headerLinks_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.625rem;
}
.bl_headerLinks_list > li + li {
  margin-left: 22px;
}
.bl_headerLinks_listItem {
  display: block;
  position: relative;
  padding-top: 27px;
}
.bl_headerLinks_listItem:hover {
  text-decoration: underline;
  text-underline-offset: 1px;
}
.bl_headerLinks_listItem::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bl_headerLinks_listItem__qa::before {
  width: 24px;
  height: 24px;
  background-image: url(../img/common/icon_qanda.svg);
}
.bl_headerLinks_listItem__recruit::before {
  width: 26px;
  height: 24.5px;
  background-image: url(../img/common/icon_recruit.svg);
}
.bl_headerLinks_listItem__contact::before {
  top: 4px;
  width: 21px;
  height: 16.7px;
  background-image: url(../img/common/icon_mail.svg);
}
.bl_headerLinks_listItem__login::before {
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_login.svg);
}

@media screen and (max-width: 450px) {
  .bl_headerLinks {
    display: none;
  }
}
.el_headerLogo {
  margin: 6px auto 0;
}
.el_headerLogo > a {
  display: block;
  transition: 0.3s ease;
  max-width: 215px;
  height: 49px;
}
.el_headerLogo > a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.el_headerLogo > a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1024px) {
  .el_headerLogo > a {
    max-width: 180px;
  }
  .el_headerLogo > a img {
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .el_headerLogo {
    margin: 0 20px 0 0;
  }
  .el_headerLogo > a {
    display: block;
    transition: 0.3s ease;
    max-width: 127px;
    height: 29px;
  }
  .el_headerLogo > a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .el_headerLogo > a:hover {
    opacity: 0.6;
  }
}
.el_headerSearch {
  position: relative;
  width: 294px;
  height: 40px;
}
.el_headerSearch::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: url(../img/common/icon_search.svg) center/contain no-repeat;
  z-index: 5;
}
.el_headerSearch input {
  width: 100%;
  height: 40px;
  background: #F6F6F6;
  border: none;
  font-size: 0.75rem;
  border-radius: 100px;
  padding: 10px 35px 10px 15px;
  line-height: 1.5;
}
.el_headerSearch input::placeholder {
  color: #454545;
}
.el_headerSearch input:focus-visible {
  outline: none;
}

@media screen and (max-width: 1024px) {
  .el_headerSearch {
    width: 230px;
  }
}
@media screen and (max-width: 450px) {
  .el_headerSearch {
    flex: 1;
    width: auto;
    height: 30px;
  }
  .el_headerSearch::after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: url(../img/common/icon_search.svg) center/contain no-repeat;
    z-index: 5;
  }
  .el_headerSearch input {
    height: 30px;
    font-size: 0.625rem;
    padding: 5px 30px 5px 15px;
  }
}
.bl_spNavi {
  display: none;
}

@media screen and (max-width: 450px) {
  .bl_spNavi {
    display: block;
    z-index: 1000;
  }
  .bl_spNavi_btns {
    display: flex;
    background: #FBFBFB;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 100;
  }
  .bl_spNavi_btn {
    flex: 1;
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
  }
  .bl_spNavi_btn img {
    display: inline-block;
    height: 20px;
    width: 24px;
    margin-bottom: 5px;
  }
  .bl_spNavi_btnInr {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 7px;
    position: relative;
  }
  .bl_spNavi_ham span {
    position: absolute;
    width: 20px;
    height: 1px;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s;
  }
  .bl_spNavi_ham span:nth-child(1) {
    top: 10px;
  }
  .bl_spNavi_ham span:nth-child(2) {
    top: 17px;
  }
  .bl_spNavi_ham span:nth-child(3) {
    top: 24px;
  }
  .bl_spNavi_ham.is-open span:nth-child(1) {
    top: 17px;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .bl_spNavi_ham.is-open span:nth-child(2) {
    opacity: 0;
  }
  .bl_spNavi_ham.is-open span:nth-child(3) {
    top: 17px;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .bl_spNavi_cont {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    padding: 100px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
    z-index: -1;
  }
  .bl_spNavi_cont.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
    z-index: 99;
  }
  .bl_spNavi_list {
    text-align: center;
  }
  .bl_spNavi_list > li:not(:last-child) {
    margin-bottom: 30px;
  }
}
/* =============================================
Base
============================================= */
/* =============================================
footer フッターのスタイル
============================================= */
.ly_footer_top {
  padding: 70px 0;
}
.ly_footer_links {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.ly_footer_bottom {
  background: #FBFBFB;
  padding: 45px 0 30px;
}
.ly_footer_inr {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
}
.ly_footer_desc {
  width: fit-content;
}
.ly_footer_logo {
  width: 184px;
  margin-bottom: 10px;
}
.ly_footer_logo a {
  display: block;
}
.ly_footer_logo a img {
  width: 100%;
  height: auto;
}
.ly_footer_info {
  display: grid;
  grid-template-columns: 35px 1fr;
  grid-gap: 10px;
  font-size: 0.75rem;
  line-height: 1.7;
}
.ly_footer_navi {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 45px;
  padding-top: 50px;
}
.ly_footer_naviList > li {
  font-size: 0.875rem;
}
.ly_footer_naviList > li:not(:last-child) {
  margin-bottom: 5px;
}
.ly_footer_naviList > li a:hover {
  text-decoration: underline;
}
.ly_footer_copyright {
  text-align: center;
  font-size: 0.625rem;
  line-height: 1.4;
  padding: 10px;
  background: #EBEBEB;
}

@media screen and (max-width: 1024px) {
  .ly_footer_naviList > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 450px) {
  .ly_footer {
    padding-bottom: 50px;
  }
  .ly_footer_top {
    padding: 55px 0;
  }
  .ly_footer_inr {
    flex-direction: column;
    align-items: center;
  }
  .ly_footer_desc {
    width: auto;
  }
  .ly_footer_logo {
    width: 204px;
    margin: 0 auto 20px;
  }
  .ly_footer_logo a {
    display: block;
  }
  .ly_footer_logo a img {
    width: 100%;
    height: auto;
  }
  .ly_footer_navi {
    flex: none;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 35px;
    max-width: 255px;
  }
  .ly_footer_naviList > li:not(:last-child) {
    margin-bottom: 5px;
  }
  .ly_footer_naviList:nth-child(1) {
    flex: 1;
  }
  .ly_footer_naviList:nth-child(2) {
    flex: 1;
  }
  .ly_footer_naviList:nth-child(3) {
    width: 100%;
    margin-top: 30px;
  }
  .ly_footer_copyright {
    line-height: 1.9;
    padding: 15px 5%;
  }
}
/* =============================================
Base
============================================= */
/* =============================================
Top トップページのスタイル
============================================= */
/* ---------------------------------------------
   Top parts
--------------------------------------------- */
.el_topTtl {
  margin-bottom: 35px;
  text-align: center;
}
.el_topTtl span {
  display: block;
}
.el_topTtl .en {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 1;
  margin-left: -5px;
}
.el_topTtl .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: -5px;
}
.el_topTtl__left {
  text-align: left;
}

@media screen and (max-width: 450px) {
  .el_topTtl {
    margin-bottom: 25px;
  }
  .el_topTtl .en {
    font-size: 4.375rem;
    margin: 0;
  }
  .el_topTtl .jp {
    font-size: 0.875rem;
    margin: 0;
  }
  .el_topTtl__left {
    text-align: center;
  }
}
/* ---------------------------------------------
   Top section
--------------------------------------------- */
.bl_hero {
  margin-top: -15px;
  margin-bottom: 65px;
}
.bl_hero_slider .splide .splide__arrow {
  border-radius: 0;
  background: transparent;
  border: none;
}
.bl_hero_slider .splide .splide__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.bl_hero_slider .splide .splide__arrow.splide__arrow--prev {
  left: 30px;
}
.bl_hero_slider .splide .splide__arrow.splide__arrow--prev::before {
  left: 12px;
  transform: translateY(-50%) rotate(-135deg);
}
.bl_hero_slider .splide .splide__arrow.splide__arrow--next {
  right: 30px;
}
.bl_hero_slider .splide .splide__arrow.splide__arrow--next::before {
  left: 2px;
  transform: translateY(-50%) rotate(45deg);
}
.bl_hero_item {
  width: calc(100% - 160px);
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 0;
}
.bl_hero_link {
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
}
.bl_hero_link:hover {
  opacity: 0.6;
}
.bl_hero_img {
  height: 375px;
  flex: 1.65;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.bl_hero_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bl_hero_desc {
  flex: 1;
  padding: 45px 50px;
}
.bl_hero_ttl {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 15px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .bl_hero_slider .splide .splide__arrow.splide__arrow--prev {
    left: 5px;
  }
  .bl_hero_slider .splide .splide__arrow.splide__arrow--next {
    right: 5px;
  }
  .bl_hero_item {
    width: calc(100% - 80px);
  }
  .bl_hero_desc {
    padding: 30px 0 30px 30px;
  }
  .bl_hero_ttl {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 450px) {
  .bl_hero {
    margin: 0 0 50px;
  }
  .bl_hero_slider .splide {
    padding-bottom: 20px;
  }
  .bl_hero_slider .splide .splide__arrow {
    width: 10px;
    height: 10px;
    transform: none;
    top: auto;
    bottom: 0;
  }
  .bl_hero_slider .splide .splide__arrow::before {
    width: 7px;
    height: 7px;
  }
  .bl_hero_slider .splide .splide__arrow.splide__arrow--prev {
    left: calc(50% - 25px);
  }
  .bl_hero_slider .splide .splide__arrow.splide__arrow--prev::before {
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
  }
  .bl_hero_slider .splide .splide__arrow.splide__arrow--next {
    right: calc(50% - 25px);
  }
  .bl_hero_slider .splide .splide__arrow.splide__arrow--next::before {
    left: auto;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
  }
  .bl_hero_item {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .bl_hero_link {
    display: block;
  }
  .bl_hero_desc {
    padding: 20px 5% 0;
  }
  .bl_hero_ttl {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
  }
}
.bl_brandTop {
  display: flex;
  background: #FBFBFB;
  overflow: hidden;
  align-items: center;
  justify-content: flex-end;
  height: 500px;
  margin-bottom: 85px;
}
.bl_brandTop_descArea {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bl_brandTop_imgArea {
  height: 500px;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 8.75vw);
  gap: 0.97vw;
  max-width: 57.4vw;
  width: 100%;
  margin-right: 20px;
}
.bl_brandTop_imgArea--sp {
  display: none;
}
.bl_brandTop_imgCont {
  display: flex;
  flex-direction: column;
  animation: scrollUp 140s linear infinite;
  animation-play-state: paused;
}
.bl_brandTop_imgCont--reverse {
  animation: scrollDown 140s linear infinite;
  animation-play-state: paused;
}
.bl_brandTop_imgCont .logo {
  width: 8.75vw;
  height: 8.75vw;
  object-fit: cover;
  margin-bottom: 0.97vw;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .bl_brandTop {
    display: flex;
    background: #FBFBFB;
    overflow: hidden;
    align-items: center;
    justify-content: flex-end;
    height: 400px;
    margin-bottom: 85px;
  }
  .bl_brandTop_descArea {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .bl_brandTop_imgArea {
    height: 400px;
    grid-template-columns: repeat(4, 13vw);
    gap: 1;
    max-width: 55vw;
  }
  .bl_brandTop_imgCont {
    display: flex;
    flex-direction: column;
    animation: scrollUp 140s linear infinite;
    animation-play-state: paused;
  }
  .bl_brandTop_imgCont--reverse {
    animation: scrollDown 140s linear infinite;
    animation-play-state: paused;
  }
  .bl_brandTop_imgCont .logo {
    width: 13vw;
    height: 13vw;
    object-fit: cover;
    margin-bottom: 1vw;
    pointer-events: none;
  }
}
@media screen and (max-width: 450px) {
  .bl_brandTop {
    display: block;
    height: auto;
    padding: 35px 0 10px;
    margin-bottom: 65px;
  }
  .bl_brandTop_descArea {
    margin-bottom: 25px;
  }
  .bl_brandTop_imgArea {
    height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    margin-right: 0;
  }
  .bl_brandTop_imgArea--pc {
    display: none;
  }
  .bl_brandTop_imgArea--sp {
    display: grid;
  }
  .bl_brandTop_imgCont {
    display: flex;
    flex-direction: row;
    gap: 10px;
    animation: scrollRight 56s linear infinite;
    animation-play-state: paused;
  }
  .bl_brandTop_imgCont--reverse {
    animation: scrollLeft 56s linear infinite;
    animation-play-state: paused;
  }
  .bl_brandTop_imgCont .logo {
    width: 24vw;
    height: 24vw;
    margin-bottom: 0;
  }
}
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-75%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-75%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-75%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(0);
  }
}
.bl_newsTop {
  overflow: hidden;
  margin-bottom: 75px;
}
.bl_newsTop_inr {
  position: relative;
}
.bl_newsTop_btn {
  position: absolute;
  top: 3px;
  right: 0;
}
.bl_newsTop_btn > a {
  display: block;
  width: fit-content;
  padding-right: 15px;
  font-size: 0.875rem;
  position: relative;
  transition: 0.3s;
}
.bl_newsTop_btn > a:hover {
  opacity: 0.6;
}
.bl_newsTop_btn > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border: 0px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.bl_newsTop_slider {
  margin-top: 30px;
  position: relative;
}
.bl_newsTop_slider .splide__track {
  overflow: visible;
}
.bl_newsTop_slider .splide__arrows {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -60px;
  right: 115px;
}
.bl_newsTop_slider .splide__arrow {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  right: auto;
}
.bl_newsTop_slider .splide__arrow--prev {
  margin-right: 10px;
}
.bl_newsTop_slider .progressBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #ADADAD;
  transition: 0.3s ease;
}
.bl_newsTop_slider .progressBar_wrap {
  position: relative;
  height: 1px;
  background: #FBFBFB;
  margin-top: 10px;
  overflow: hidden;
  margin-top: 50px;
}
.bl_newsTop_img {
  margin-bottom: 15px;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
.bl_newsTop_img img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.4s;
  transform-origin: center center;
}
.bl_newsTop_data {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.bl_newsTop_data .el_category {
  margin-right: 15px;
}
.bl_newsTop_data time {
  line-height: 1;
  font-size: 0.75rem;
}
.bl_newsTop_ttl {
  font-weight: 500;
  line-height: 1.44;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.bl_newsTop_link {
  display: block;
}

.bl_newsTop_link:hover .bl_newsTop_ttl {
  text-decoration: underline;
}
.bl_newsTop_link:hover .bl_newsTop_img img {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .bl_newsTop_btn {
    position: static;
    width: fit-content;
    margin: 20px 0 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .bl_newsTop {
    margin-bottom: 95px;
  }
  .bl_newsTop_btn {
    position: static;
    width: fit-content;
    margin: 20px 0 0 auto;
  }
  .bl_newsTop_slider {
    margin-top: 25px;
  }
  .bl_newsTop_slider .progressBar_wrap {
    margin-top: 30px;
    width: calc(100% + 5vw);
  }
  .bl_newsTop_data .el_category {
    margin-right: 13px;
  }
  .bl_newsTop_ttl {
    font-size: 1rem;
  }
  .bl_newsTop_link {
    display: block;
  }
}
.bl_tab_list {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 20px;
  width: calc(100% - 240px);
  overflow-x: scroll;
  scrollbar-color: #000 #fff;
  scrollbar-width: none;
}
.bl_tab_item {
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1;
  padding: 5px 12px 7px;
  background: #FBFBFB;
  border-radius: 100px;
  transition: 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}
.bl_tab_item:hover {
  opacity: 0.6;
}
.bl_tab_item.active {
  background: #000;
  color: #fff;
}
.bl_tab_panel {
  display: none;
}
.bl_tab_panel.active {
  display: block;
}

@media screen and (max-width: 1024px) {
  .bl_tab_list {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .bl_tab_list {
    flex-wrap: wrap;
  }
  .bl_tab_item {
    font-size: 0.8125rem;
    padding: 5px 12px 7px;
  }
}
.bl_productTop {
  margin-bottom: 15px;
}

/* =============================================
Base
============================================= */
/* =============================================
下層・投稿ページ
============================================= */
/* ---------------------------------------------
  Brands
--------------------------------------------- */
.bl_brandCont_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 27px;
  margin-top: 50px;
}
.bl_brandCont_item {
  width: calc((100% - 81px) / 4);
  display: flex;
  flex-direction: column;
}
.bl_brandCont_img {
  border: 1px solid #EAEAEA;
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 93px;
  grid-template-rows: 100px;
  height: 100px;
}
.bl_brandCont_img::before {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0;
  right: 0;
  border-top: 2px solid #FF0000;
  border-right: 2px solid #FF0000;
  z-index: 2;
}
.bl_brandCont_img__inner::before {
  border-top: 2px solid #003AFA;
  border-right: 2px solid #003AFA;
}
.bl_brandCont_img img {
  width: 100%;
  height: 100%;
}
.bl_brandCont_img_pic {
  object-fit: cover;
}
.bl_brandCont_img_logo {
  object-fit: contain;
}
.bl_brandCont_cat {
  display: flex;
}
.bl_brandCont_cat span {
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 0.875rem;
}
.bl_brandCont_cat span:not(:last-child) {
  margin-right: 20px;
  position: relative;
}
.bl_brandCont_cat span:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 14px;
  position: absolute;
  top: 0;
  right: -10px;
  background: #CCC;
}
.bl_brandCont_txt {
  font-size: 0.6875rem;
  color: #646464;
  line-height: 1.63;
  flex: 1;
}
.bl_brandCont_btnWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin-top: 15px;
}
.bl_brandCont_btn {
  display: block;
  background: #000;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  padding: 10px 5px;
  border-radius: 5px;
  font-size: 0.75rem;
  transition: 0.3s;
}
.bl_brandCont_btn:hover {
  background: #696969;
}
.bl_brandCont_btn--ext span {
  display: inline-block;
  position: relative;
}
.bl_brandCont_btn--ext span::before {
  content: "";
  width: 13px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: url(../img/common/icon_link.svg) center/contain no-repeat;
}
.bl_brandCont_btn--max {
  width: 100%;
}

@media screen and (max-width: 450px) {
  .bl_brandCont_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 30px;
  }
  .bl_brandCont_item {
    width: 100%;
  }
  .bl_brandCont_btnWrap {
    grid-gap: 5px;
  }
}
/* ---------------------------------------------
  Product
--------------------------------------------- */
.bl_productCat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}
.bl_productCat_list + .bl_productCat_list {
  margin-top: 45px;
}
.bl_productCat_list--min {
  gap: 17px;
}
.bl_productCat_list--min .bl_productCat_item {
  width: calc((100% - 119px) / 8);
}
.bl_productCat_list--min .bl_productCat_img {
  margin-bottom: 10px;
}
.bl_productCat_list--min .bl_productCat_ttl {
  font-size: 1rem;
}
.bl_productCat_item {
  width: calc((100% - 135px) / 6);
}
.bl_productCat_img {
  border-radius: 4px;
  border: 1px solid #D8D8D8;
  overflow: hidden;
  margin-bottom: 7px;
}
.bl_productCat_img img {
  width: 100%;
  height: auto;
  will-change: transform;
  transition: transform 0.4s;
  transform-origin: center center;
}
.bl_productCat_ttl {
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
}
.bl_productCat_link {
  display: block;
}
.bl_productCat_link:hover .bl_productCat_img img {
  transform: scale(1.15);
}

.bl_productCat_list.bl_productCat_list--compact {
  gap: 20px 15px;
}
.bl_productCat_list.bl_productCat_list--compact .bl_productCat_item {
  width: calc((100% - 60px) / 5);
}
.bl_productCat_list.bl_productCat_list--compact .bl_productCat_link {
  display: flex;
  align-items: center;
  border: 1px solid #DBDBDB;
  border-radius: 4px;
  padding: 7px;
  transition: 0.4s;
}
.bl_productCat_list.bl_productCat_list--compact .bl_productCat_link:hover {
  opacity: 0.6;
}
.bl_productCat_list.bl_productCat_list--compact .bl_productCat_link:hover .bl_productCat_img img {
  transform: none;
}
.bl_productCat_list.bl_productCat_list--compact .bl_productCat_img {
  margin: 0 10px 0 0;
  border: none;
}
.bl_productCat_list.bl_productCat_list--compact .bl_productCat_img img {
  width: 56px;
  height: auto;
}
.bl_productCat_list.bl_productCat_list--compact .bl_productCat_ttl {
  font-size: 0.9375rem;
}

@media screen and (max-width: 450px) {
  .bl_productCat_list {
    gap: 20px 15px;
  }
  .bl_productCat_list + .bl_productCat_list {
    margin-top: 20px;
  }
  .bl_productCat_list--min {
    gap: 20px 15px;
  }
  .bl_productCat_list--min .bl_productCat_item {
    width: calc((100% - 30px) / 3);
  }
  .bl_productCat_list--min .bl_productCat_img {
    margin-bottom: 5px;
  }
  .bl_productCat_list--min .bl_productCat_ttl {
    font-size: 0.875rem;
  }
  .bl_productCat_item {
    width: calc((100% - 30px) / 3);
  }
  .bl_productCat_img {
    margin-bottom: 5px;
  }
  .bl_productCat_img img {
    width: 100%;
    height: auto;
    will-change: transform;
    transition: transform 0.4s;
    transform-origin: center center;
  }
  .bl_productCat_ttl {
    font-size: 0.875rem;
  }
  .bl_productCat_list.bl_productCat_list--compact {
    gap: 15px;
  }
  .bl_productCat_list.bl_productCat_list--compact .bl_productCat_item {
    width: calc((100% - 15px) / 2);
  }
  .bl_productCat_list.bl_productCat_list--compact .bl_productCat_link {
    padding: 5px;
    transition: 0.4s;
  }
  .bl_productCat_list.bl_productCat_list--compact .bl_productCat_img img {
    width: 50px;
  }
  .bl_productCat_list.bl_productCat_list--compact .bl_productCat_ttl {
    font-size: 0.8125rem;
  }
}
.bl_productType_cont:not(:last-child) {
  margin-bottom: 40px;
}
.bl_productType_ttl {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.bl_productType_list {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}
.bl_productType_item {
  width: calc((100% - 81px) / 4);
}
.bl_productType_link {
  display: block;
  position: relative;
  padding-bottom: 5px;
}
.bl_productType_link::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 1px solid #E5E5E5;
  transition: 0.4s;
}
.bl_productType_link::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: 14px;
  bottom: 12px;
  transform: rotate(45deg);
  z-index: 5;
}
.bl_productType_img {
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
  height: 184px;
}
.bl_productType_img img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.4s;
  transform-origin: center center;
}
.bl_productType_txt {
  text-align: center;
  font-weight: 500;
}

.bl_productType_link:hover::before {
  background: #E5E5E5;
}
.bl_productType_link:hover .bl_productType_img img {
  transform: scale(1.1);
}

@media screen and (max-width: 450px) {
  .bl_productType_cont:not(:last-child) {
    margin-bottom: 30px;
  }
  .bl_productType_ttl {
    font-size: 1.125rem;
  }
  .bl_productType_list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .bl_productType_item {
    width: calc((100% - 20px) / 2);
  }
  .bl_productType_link {
    display: block;
    position: relative;
    padding-bottom: 5px;
  }
  .bl_productType_link::before {
    width: 22px;
    height: 22px;
    bottom: 2px;
  }
  .bl_productType_link::after {
    width: 6px;
    height: 6px;
    right: 9px;
    bottom: 10px;
  }
  .bl_productType_img {
    margin-bottom: 7px;
    height: 30vw;
  }
  .bl_productType_img img {
    height: 30vw;
  }
  .bl_productType_txt {
    text-align: left;
    font-size: 0.75rem;
  }
}
.bl_productResult_info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bl_productResult_num {
  font-size: 0.875rem;
}
.bl_productResult_num .num {
  font-size: 1.125rem;
}
.bl_productResult_display {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.9375rem;
}
.bl_productResult_display .label {
  margin-right: 20px;
}
.bl_productResult_display .selectWrap {
  position: relative;
}
.bl_productResult_display .selectWrap::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 5;
}
.bl_productResult_display .selectBox {
  width: 82px;
  border: 1px solid #FBFBFB;
  border-radius: 5px;
  padding: 5px 15px 5px 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.bl_productResult_display .selectBox:focus-visible {
  outline: none;
}
.bl_productResult_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 25px;
}
.bl_productResult_item {
  width: calc((100% - 75px) / 4);
}
.bl_productResult_link {
  display: block;
}
.bl_productResult_img {
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
  height: 280px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}
.bl_productResult_img img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  will-change: transform;
  transition: transform 0.4s;
  transform-origin: center center;
}
.bl_productResult_nameWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.bl_productResult_color {
  font-size: 0.6875rem;
}
.bl_productResult_color .num {
  font-size: 0.9375rem;
}
.bl_productResult_type {
  font-size: 0.75rem;
  line-height: 1.2;
}
.bl_productResult_model {
  font-size: 1.375rem;
}

.bl_productResult_link:hover .bl_productResult_img {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.bl_productResult_link:hover .bl_productResult_img img {
  transform: scale(1.1);
}

@media screen and (max-width: 450px) {
  .bl_productResult_info {
    margin-bottom: 20px;
    align-items: center;
  }
  .bl_productResult_num {
    font-size: 0.6875rem;
  }
  .bl_productResult_num .num {
    font-size: 0.875rem;
  }
  .bl_productResult_display {
    font-size: 0.6875rem;
  }
  .bl_productResult_display .label {
    margin-right: 10px;
  }
  .bl_productResult_display .selectWrap::after {
    width: 6px;
    height: 6px;
    right: 10px;
  }
  .bl_productResult_display .selectBox {
    font-size: 0.875rem;
    width: 80px;
    padding: 4px 15px 4px 8px;
  }
  .bl_productResult_list {
    gap: 30px 15px;
  }
  .bl_productResult_item {
    width: calc((100% - 15px) / 2);
  }
  .bl_productResult_img {
    margin-bottom: 10px;
    height: 43vw;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  }
  .bl_productResult_img img {
    height: 43vw;
  }
  .bl_productResult_name {
    font-size: 0.875rem;
    margin-right: 10px;
    flex: 1;
  }
  .bl_productResult_nameWrap {
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .bl_productResult_color {
    font-size: 0.6875rem;
  }
  .bl_productResult_color .num {
    font-size: 0.875rem;
  }
  .bl_productResult_type {
    font-size: 0.6875rem;
  }
  .bl_productResult_model {
    font-size: 1.25rem;
  }
}
.bl_productDetail_wrap {
  display: flex;
  gap: 60px;
}
.bl_productDetail_cont {
  margin-top: 50px;
}
.bl_productDetail_desc {
  flex: 1.22;
}
.bl_productDetail_ttlWrap {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 170px;
  grid-gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}
.bl_productDetail_ttl {
  font-size: 2rem;
  line-height: 1.375;
  font-weight: 400;
}
.bl_productDetail_numItem {
  display: flex;
  font-size: 1.25rem;
}
.bl_productDetail_numItem dt::after {
  content: "：";
}
.bl_productDetail_price {
  margin-top: 10px;
  font-size: 1.25rem;
  display: flex;
  align-items: baseline;
  padding-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}
.bl_productDetail_price .currency {
  font-size: 1.5rem;
  display: inline-block;
  padding-right: 2px;
  transform: translateY(1px);
}
.bl_productDetail_price .small {
  font-size: 0.75rem;
}
.bl_productDetail_price dt::after {
  content: "：";
  margin-right: 5px;
}
.bl_productDetail_btn {
  margin-top: 20px;
}
.bl_productDetail_variation {
  margin-top: 40px;
}
.bl_productDetail_variationList {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 20px 18px;
}
.bl_productDetail_variationList > li > a {
  display: block;
  border: 1px solid #FBFBFB;
  padding: 8px;
  font-size: 0.6875rem;
  line-height: 1.36;
  font-weight: 500;
  transition: 0.4s ease;
  height: 100%;
}
.bl_productDetail_variationList > li > a:hover {
  opacity: 0.6;
}
.bl_productDetail_variationList > li figure {
  margin: 0 auto 3px;
  width: 50px;
}
.bl_productDetail_variationList > li figure img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.bl_productDetail_box {
  background: #FBFBFB;
  padding: 30px 45px 45px;
  margin-top: 50px;
}
.bl_productDetail_boxTtl {
  padding-bottom: 15px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 1rem;
  margin-bottom: 15px;
}
.bl_productDetail_boxTxt {
  font-size: 0.8125rem;
  line-height: 2;
}
.bl_productDetail_data {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  font-size: 0.875rem;
  font-weight: 500;
}
.bl_productDetail_data dt {
  position: relative;
}
.bl_productDetail_data dt::after {
  content: "：";
  position: absolute;
}
.bl_productDetail_data + .bl_productDetail_data {
  margin-top: 15px;
}
.bl_productDetail_slider {
  flex: 1;
}
.bl_productDetail_mainSlider {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.bl_productDetail_mainSlider .splide__slide {
  text-align: center;
}
.bl_productDetail_mainSlider .splide__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bl_productDetail_mainSlider .splide__arrow {
  background: #FBFBFB;
  border: 1px solid #FBFBFB;
  width: 48px;
  height: 48px;
}
.bl_productDetail_mainSlider .splide__arrow::before {
  width: 9px;
  height: 9px;
}
.bl_productDetail_mainSlider .splide__arrow.splide__arrow--prev {
  left: 25px;
}
.bl_productDetail_mainSlider .splide__arrow.splide__arrow--prev::before {
  left: 21px;
}
.bl_productDetail_mainSlider .splide__arrow.splide__arrow--next {
  right: 25px;
}
.bl_productDetail_mainSlider .splide__arrow.splide__arrow--next::before {
  left: 17px;
}
.bl_productDetail_thumb {
  margin-top: 20px;
}
.bl_productDetail_thumbList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 16px;
}
.bl_productDetail_thumbList > li {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 5px;
  border: 1px solid #EAEAEA;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}
.bl_productDetail_thumbList > li:hover {
  opacity: 0.6;
}
.bl_productDetail_thumbList img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

@media screen and (max-width: 450px) {
  .bl_productDetail_wrap {
    display: block;
  }
  .bl_productDetail_cont {
    margin-top: 30px;
  }
  .bl_productDetail_desc {
    margin-top: 25px;
  }
  .bl_productDetail_ttlWrap {
    margin-top: 10px;
    display: block;
  }
  .bl_productDetail_ttl {
    font-size: 1.25rem;
  }
  .bl_productDetail_num {
    display: flex;
    margin-top: 5px;
  }
  .bl_productDetail_numItem {
    display: flex;
    font-size: 0.875rem;
  }
  .bl_productDetail_numItem:not(:last-child) {
    margin-right: 10px;
  }
  .bl_productDetail_price {
    font-size: 1rem;
  }
  .bl_productDetail_price .currency {
    font-size: 1.25rem;
  }
  .bl_productDetail_price .small {
    font-size: 0.6875rem;
  }
  .bl_productDetail_btn {
    margin-top: 15px;
  }
  .bl_productDetail_variation {
    margin-top: 30px;
  }
  .bl_productDetail_variationList {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
  }
  .bl_productDetail_variationList > li > a {
    padding: 5px 5px 7px;
  }
  .bl_productDetail_variationList > li figure {
    max-width: 100%;
  }
  .bl_productDetail_box {
    padding: 25px 20px 30px;
    margin-top: 30px;
  }
  .bl_productDetail_boxTtl {
    padding-bottom: 10px;
    font-size: 0.9375rem;
  }
  .bl_productDetail_boxTxt {
    line-height: 1.8;
  }
  .bl_productDetail_data {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 10px 5px;
    font-size: 0.75rem;
  }
  .bl_productDetail_mainSlider .splide__arrow {
    width: 26px;
    height: 26px;
  }
  .bl_productDetail_mainSlider .splide__arrow::before {
    width: 5px;
    height: 5px;
  }
  .bl_productDetail_mainSlider .splide__arrow.splide__arrow--prev {
    left: -13px;
  }
  .bl_productDetail_mainSlider .splide__arrow.splide__arrow--prev::before {
    left: 11px;
  }
  .bl_productDetail_mainSlider .splide__arrow.splide__arrow--next {
    right: -13px;
  }
  .bl_productDetail_mainSlider .splide__arrow.splide__arrow--next::before {
    left: 9px;
  }
  .bl_productDetail_thumbList {
    grid-gap: 7px;
  }
}
.bl_productRelated .splide {
  margin: 0 -15px;
}
.bl_productRelated .splide__slide {
  padding: 15px 15px 0;
}
.bl_productRelated .splide__arrow {
  background: #FBFBFB;
  border: 1px solid #FBFBFB;
  width: 40px;
  height: 40px;
  top: 147.5px;
}
.bl_productRelated .splide__arrow::before {
  width: 8px;
  height: 8px;
}
.bl_productRelated .splide__arrow.splide__arrow--prev {
  left: -5px;
}
.bl_productRelated .splide__arrow.splide__arrow--prev::before {
  left: 17px;
}
.bl_productRelated .splide__arrow.splide__arrow--next {
  right: -5px;
}
.bl_productRelated .splide__arrow.splide__arrow--next::before {
  left: 14px;
}
.bl_productRelated_link {
  display: block;
}
.bl_productRelated_img {
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
  height: 280px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
.bl_productRelated_img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.4s;
  transform-origin: center center;
}
.bl_productRelated_nameWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.bl_productRelated_color {
  font-size: 0.6875rem;
}
.bl_productRelated_color .num {
  font-size: 0.9375rem;
}
.bl_productRelated_type {
  font-size: 0.75rem;
  line-height: 1.2;
}
.bl_productRelated_model {
  font-size: 1.375rem;
}

@media screen and (max-width: 450px) {
  .bl_productRelated .splide {
    margin: 0;
  }
  .bl_productRelated .splide__slide {
    padding: 10px 10px 0;
  }
  .bl_productRelated .splide__arrow {
    width: 26px;
    height: 26px;
    top: calc(20vw + 10px);
    transform: translateY(-50%);
  }
  .bl_productRelated .splide__arrow::before {
    width: 5px;
    height: 5px;
  }
  .bl_productRelated .splide__arrow.splide__arrow--prev {
    left: -3px;
  }
  .bl_productRelated .splide__arrow.splide__arrow--prev::before {
    left: 11px;
  }
  .bl_productRelated .splide__arrow.splide__arrow--next {
    right: -3px;
  }
  .bl_productRelated .splide__arrow.splide__arrow--next::before {
    left: 9px;
  }
  .bl_productRelated_img {
    margin-bottom: 10px;
    height: 40vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  .bl_productRelated_img img {
    height: 40vw;
  }
  .bl_productRelated_nameWrap {
    margin-bottom: 10px;
  }
  .bl_productRelated_type {
    font-size: 0.6875rem;
    line-height: 1.2;
  }
  .bl_productRelated_model {
    font-size: 1.125rem;
  }
}
/* ---------------------------------------------
  News
--------------------------------------------- */
.bl_news {
  padding-top: 60px;
}
.bl_news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 70px 5.8%;
}
.bl_news_img {
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  overflow: hidden;
  margin-bottom: 10px;
}
.bl_news_img img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.4s;
  transform-origin: center center;
}
.bl_news_data {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}
.bl_news_data time {
  font-size: 0.8125rem;
  color: #777777;
}
.bl_news_cat {
  margin-right: 15px;
}
.bl_news_cat span {
  font-size: 0.8125rem;
}
.bl_news_ttl {
  font-size: 0.9375rem;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.bl_news_link {
  display: block;
}

.bl_news_link:hover .bl_news_img img {
  transform: scale(1.1);
}
.bl_news_link:hover .bl_news_ttl {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .bl_news_list {
    grid-gap: 70px 3%;
  }
  .bl_news_img img {
    height: 14vw;
  }
}
@media screen and (max-width: 450px) {
  .bl_news {
    padding-top: 30px;
  }
  .bl_news_list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px 15px;
  }
  .bl_news_img {
    margin-bottom: 5px;
  }
  .bl_news_img img {
    height: 21vw;
  }
  .bl_news_data {
    margin-bottom: 5px;
  }
  .bl_news_data time {
    font-size: 0.75rem;
  }
  .bl_news_cat {
    margin-right: 10px;
  }
  .bl_news_cat span {
    font-size: 0.6875rem;
  }
  .bl_news_ttl {
    font-size: 0.875rem;
    -webkit-line-clamp: 2;
    line-height: 1.5;
  }
}
.bl_newsLink {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.bl_newsLink_item {
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1;
  padding: 5px 12px 7px;
  background: #FBFBFB;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
}
.bl_newsLink_item:hover {
  opacity: 0.6;
}
.bl_newsLink_item.active {
  background: #000;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .bl_newsLink {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .bl_newsLink_item {
    font-size: 0.8125rem;
    padding: 5px 12px 7px;
  }
}
/* ---------------------------------------------
  Company
--------------------------------------------- */
.bl_company_list {
  max-width: 835px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 75px;
}
.bl_company_link {
  display: block;
}
.bl_company_img {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 4px;
}
.bl_company_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.4s;
  transform-origin: center center;
}
.bl_company_txt {
  font-size: 0.9375rem;
  line-height: 40px;
  text-align: right;
  padding-right: 55px;
  position: relative;
}
.bl_company_txt::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #FBFBFB;
  transition: 0.4s;
  z-index: 1;
}
.bl_company_txt::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: 20px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  z-index: 2;
}

.bl_company_link:hover .bl_company_img img {
  transform: scale(1.1);
}

@media screen and (max-width: 1024px) {
  .bl_company_list {
    grid-gap: 50px 40px;
  }
}
@media screen and (max-width: 450px) {
  .bl_company_list {
    max-width: none;
    margin: 0;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .bl_company_img {
    margin-bottom: 10px;
  }
  .bl_company_txt {
    font-size: 1rem;
    line-height: 26px;
    text-align: left;
    padding-right: 30px;
  }
  .bl_company_txt::before {
    width: 26px;
    height: 26px;
  }
  .bl_company_txt::after {
    width: 5px;
    height: 5px;
    right: 13px;
  }
}
/* ---------------------------------------------
  Office
--------------------------------------------- */
.bl_office {
  margin-top: 110px;
}
.bl_office_item {
  display: flex;
  margin-left: calc((100% - 1200px) / 2);
  padding-top: 30px;
}
@media screen and (max-width: 1333px) {
  .bl_office_item {
    margin-left: 5%;
  }
}
.bl_office_item:not(:last-child) {
  margin-bottom: 60px;
}
.bl_office_map {
  width: 62.8%;
  position: relative;
  min-height: 426px;
}
.bl_office_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bl_office_desc {
  flex: 1;
  background: #FBFBFB;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 120px 30px 50px 90px;
  margin-left: -60px;
  min-width: 480px;
}
@media screen and (max-width: 1400px) {
  .bl_office_desc {
    margin-left: -3vw;
  }
}
.bl_office_img {
  position: absolute;
  z-index: 2;
  left: 60px;
  top: -30px;
}
.bl_office_img img {
  width: 110px;
  height: 124px;
  object-fit: cover;
}
.bl_office_ttl {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.bl_office_en {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}
.bl_office_info {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 65px 1fr;
  grid-gap: 13px 10px;
  line-height: 1.6;
  min-height: 100px;
}
.bl_office_info dt {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.bl_office_info dd {
  font-size: 0.875rem;
}

@media screen and (max-width: 1024px) {
  .bl_office {
    margin-top: 60px;
  }
  .bl_office_item {
    margin-left: 3%;
  }
  .bl_office_desc {
    padding: 120px 20px 50px 40px;
    margin-left: 0;
    min-width: 400px;
  }
  .bl_office_img {
    left: 40px;
  }
}
@media screen and (max-width: 450px) {
  .bl_office {
    margin-top: 65px;
  }
  .bl_office_item {
    display: block;
    margin-left: 0;
    padding-top: 0;
  }
  .bl_office_item:not(:last-child) {
    margin-bottom: 65px;
  }
  .bl_office_map {
    width: 100%;
    min-height: 60vw;
  }
  .bl_office_desc {
    display: block;
    padding: 30px 20px 35px;
    margin-left: 0;
    min-width: auto;
  }
  .bl_office_img {
    left: auto;
    right: 5%;
    top: -20px;
  }
  .bl_office_img img {
    width: 77px;
    height: 86.8px;
  }
  .bl_office_ttl {
    font-size: 1.375rem;
    margin-bottom: 5px;
  }
  .bl_office_info {
    margin-top: 30px;
    grid-gap: 10px;
    line-height: 1.5;
    min-height: auto;
  }
}
/* =============================================
FAQ
============================================= */
.bl_faqStyle {
  position: relative;
}
.bl_faqStyle_icon {
  position: absolute;
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  left: 25px;
  top: 0.5rem;
}
.bl_faqStyle_ttl {
  font-size: 1.25rem;
  line-height: 1.2;
}
.bl_faqStyle_txt {
  flex: 1;
}
.bl_faqStyle_txt > p {
  line-height: 1.7;
}
.bl_faqStyle_inner {
  display: flex;
}
.bl_faqStyle > dt {
  cursor: pointer;
  display: flex;
  padding: 20px 40px 20px 60px;
  position: relative;
  transition: 0.2s ease;
}
.bl_faqStyle > dt:not(.is-open):hover {
  background: #F6F7F7;
}
.bl_faqStyle dd {
  display: none;
  background: #F6F7F7;
  padding: 40px 40px 40px 60px;
  position: relative;
}
.bl_faqStyle dd + dt {
  margin-top: 20px;
}
.bl_faqStyle dd > * {
  word-break: break-all;
}
.bl_faqStyle dd .bl_faqStyle_icon {
  top: 1.8rem;
}

@media screen and (max-width: 450px) {
  .bl_faqStyle_icon {
    font-size: 1.7rem;
    left: 22px;
    top: 0.4rem;
  }
  .bl_faqStyle_ttl {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .bl_faqStyle > dt {
    padding: 15px 30px 15px 50px;
  }
  .bl_faqStyle dd {
    padding: 20px 20px 20px 50px;
  }
  .bl_faqStyle dd + dt {
    margin-top: 15px;
  }
  .bl_faqStyle dd .bl_faqStyle_icon {
    top: 0.9rem;
  }
}
/* ---------------------------------------------
  汎用パーツ
--------------------------------------------- */
.bl_colWrap {
  display: grid;
  gap: 40px;
  justify-content: center;
}
.bl_colWrap__col3 {
  grid-template-columns: repeat(3, 1fr);
}
.bl_colWrap__col4 {
  grid-template-columns: repeat(4, 1fr);
}
.bl_colWrap_ttl {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.bl_history_wrap {
  border-bottom: 1px solid #EDEDED;
  display: grid;
  grid-template-columns: 200px 1fr;
  padding-bottom: 15px;
}
.bl_history_wrap + .bl_history_wrap {
  margin-top: 15px;
}
.bl_table {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #D8D8D8;
}
.bl_table tr {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-bottom: 1px solid #D8D8D8;
}
.bl_table th, .bl_table td {
  padding: 15px;
}
.bl_table th {
  background: #F6F7F7;
}
.bl_table td {
  padding: 15px 30px;
}

.el_commonList li + li {
  margin-top: 8px;
}