@charset "UTF-8";

.bousai-item-list {
  padding: 80px 0;
}

.bousai-items__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.bousai-item-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
}

.bousai-item-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.bousai-item-card__body {
  padding: 12px 14px 16px;
}

.bousai-item-card__brand {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.bousai-item-card__title {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 8px;
}

.bousai-item-card__price {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.bousai-item-card__price span {
  font-weight: normal;
  font-size: 75%;
}


/* =============================
   レスポンシブ
   ============================= */

/* 1200px 以下：4列 */
@media (max-width: 1200px) {
  .bousai-items__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 992px 以下：3列 */
@media (max-width: 992px) {
  .bousai-item-list {
    padding: 60px 0;
  }

  .bousai-items__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

/* 768px 以下：2列（タブレット＆スマホ横） */
@media (max-width: 768px) {
  .bousai-item-list {
    padding: 48px 16px;
  }

  .bousai-items__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .bousai-item-card__body {
    padding: 10px 10px 14px;
  }

  .bousai-item-card__brand,
  .bousai-item-card__title,
  .bousai-item-card__price {
    font-size: 12px;
  }
}

/* 480px 以下：2列（スマホ） */
@media (max-width: 480px) {
  .bousai-item-list {
    padding: 40px 12px;
  }

  .bousai-items__inner {
    gap: 14px;
  }

  .bousai-item-card__brand,
  .bousai-item-card__title,
  .bousai-item-card__price {
    font-size: 11px;
  }
}


/*----------
iframe-adjust
----------*/
.header-frame,
.footer-frame,
#body-wrapper {
  /* opacity: 0;
  transition: all .3s;
  &.is-show {
    opacity: 1 !important;
  } */
}

.header-frame,
.footer-frame {
  width: 100%;
  display: block;
  margin: auto;
  border: none;
  background: transparent;
}

.header-frame {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
}

/*----------
default adjust
----------*/
#header-container {
  /*   position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    @media screen and (max-width: 1023px) {
      display: none;
    } */
}

.site-logo-image {
  display: block;
}

.header-container-in.hlt-top-menu .site-name-text-link {
  line-height: 1;
}

.logo-header img {
  width: 130px;
}

@media screen and (max-width: 767px) {
  .logo.logo-header.logo-image {
    padding: 20px 0 10px 0;
    line-height: 1;
    width: 160px;
  }
}

#footer {
  display: none;
}

.sidebar h2, .sidebar h3 {
  padding: 5px 12px;
  font-size: 16px;
}

main.main, div.sidebar {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 843px) {
  main.main, div.sidebar {
    padding: 0 16px;
  }
}

.widget ul li a {
  padding: 0.3em 0.5em !important;
  font-size: 14px !important;
}

.widget-entry-card {
  font-size: 14px;
}

/*----------
common
----------*/
body {
  font-family: "Plus Jakarta Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", Osaka, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

a {
  transition: all 0.3s;
}

@media (hover: hover) {
  a:hover {
    color: #83d9f7;
  }
}

/*----------
layout
----------*/
.l-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner.is-swiper {
  max-width: 1180px;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 15px;
  }

  .l-inner.is-swiper {
    max-width: 1180px;
    padding: 0 20px;
  }
}

.l-nav {
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .l-nav {
    padding: 5px 0;
  }
}

.l-nav__tit {
  font-size: 17px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .l-nav__tit {
    font-size: 14px;
  }
}

.l-nav__list {
  margin: 0.5em 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.5em;
  font-size: 14px;
}

@media screen and (max-width: 1139px) {
  .l-nav__list {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .l-nav__list {
    gap: 0.3em 1em;
  }
}

@media screen and (max-width: 480px) {
  .l-nav__list {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}

.l-nav__list a {
  text-decoration: none;
  color: #232323;
  line-height: 1.4;
  padding: 0.2em 1.5em 0.2em 0;
  border-right: 1px solid rgba(35, 35, 35, 0.5);
  flex: 0 0 auto;
}

@media (hover: hover) {
  .l-nav__list a:hover {
    color: #ff9100;
  }
}

@media screen and (max-width: 767px) {
  .l-nav__list a {
    padding: 0.1em 1em 0.1em 0;
  }
}

.l-catlist {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .l-catlist {
    padding: 40px 0;
  }
}

.l-catlist__tit {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 1em;
}

@media screen and (max-width: 767px) {
  .l-catlist__tit {
    font-size: 20px;
  }
}

.l-catlist__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .l-catlist__list {
    gap: 15px;
  }
}

.l-catlist__list .list-item {
  width: calc((100% - 60px) / 4);
}

@media screen and (max-width: 843px) {
  .l-catlist__list .list-item {
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .l-catlist__list .list-item {
    width: calc((100% - 15px) / 2);
  }
}

@media screen and (max-width: 480px) {
  .l-catlist__list .list-item {
    width: 100%;
  }
}

.l-catlist__list .list-item a {
  color: #232323;
  text-decoration: none;
}

.l-catlist__list .list-item__parent {
  border: 1px solid rgba(35, 35, 35, 0.5);
  border-radius: 40px;
  line-height: 1.4;
  padding: 0.5em 1.5em;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

@media (hover: hover) {
  .l-catlist__list .list-item__parent:hover {
    color: #fff;
    background: #ff9100;
    border-color: #ff9100;
  }
}

@media screen and (max-width: 767px) {
  .l-catlist__list .list-item__parent {
    font-size: 14px;
    justify-content: flex-start;
  }
}

.l-catlist__list .list-item__child {
  margin: 0.7em 1.5em 0;
}

.l-catlist__list .list-item__child a {
  display: block;
  padding: 0.4em 0;
  line-height: 1.4;
  font-size: 14px;
}

@media (hover: hover) {
  .l-catlist__list .list-item__child a:hover {
    color: #ff9100;
  }
}

@media screen and (max-width: 767px) {
  .l-catlist__list .list-item__child a {
    font-size: 12px;
  }
}

.l-about {
  background: #fdf5e8;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .l-about {
    padding: 40px 0;
  }
}

.l-about__tit {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 1em;
}

@media screen and (max-width: 767px) {
  .l-about__tit {
    font-size: 20px;
  }
}

.l-about__desc {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.l-about__desc__img {
  width: 48%;
}

.l-about__desc__img img {
  border: 1px solid #232323;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .l-about__desc__img {
    width: 100%;
    margin: 0 0 1em;
  }

  .l-about__desc__img img {
    width: 500px;
    display: block;
    margin: auto;
  }
}

.l-about__desc__txt {
  width: 49%;
}

.l-about__desc__txt__tit {
  font-size: 38px;
  line-height: 1.5;
  margin: 0 0 0.3em;
}

.l-about__desc__txt__tit span {
  display: inline-block;
}

.l-about__desc__txt p {
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 1139px) {
  .l-about__desc__txt__tit {
    font-size: 30px;
  }

  .l-about__desc__txt p .adjust {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-about__desc__txt {
    width: 100%;
  }

  .l-about__desc__txt__tit {
    font-size: 24px;
  }

  .l-about__desc__txt p br {
    display: none;
  }
}

.l-about__item {
  margin: 80px 0 0;
}

@media screen and (max-width: 767px) {
  .l-about__item {
    margin: 40px 0 0;
  }
}

.l-about__item__block {
  margin: 60px 0 0;
}

@media screen and (max-width: 767px) {
  .l-about__item__block {
    margin: 30px 0 0;
  }
}

.l-about__item__tit {
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .l-about__item__tit {
    font-size: 18px;
  }
}

.l-about__item__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 0;
}

@media screen and (max-width: 843px) {
  .l-about__item__list {
    gap: 15px;
  }
}

@media screen and (max-width: 767px) {
  .l-about__item__list {
    margin: 15px 0 0;
  }
}

@media screen and (max-width: 480px) {
  .l-about__item__list {
    gap: 10px;
  }
}

.l-about__item__list .list-item {
  max-width: 140px;
  width: calc((100% - 100px) / 6);
  border-radius: 15px;
  background: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #232323;
  align-items: center;
}

.l-about__item__list .list-item>* {
  transition: all 0.3s;
}

@media (hover: hover) {
  .l-about__item__list .list-item:hover>* {
    opacity: 0.7;
  }
}

.l-about__item__list .list-item__tit {
  line-height: 1.4;
  font-size: 14px;
  margin: 1em 0 0;
}

@media screen and (max-width: 843px) {
  .l-about__item__list .list-item {
    width: calc((100% - 75px) / 6);
    padding: 10px;
  }

  .l-about__item__list .list-item__tit {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .l-about__item__list .list-item {
    width: calc((100% - 30px) / 3);
  }
}

@media screen and (max-width: 480px) {
  .l-about__item__list .list-item {
    width: calc((100% - 20px) / 3);
  }
}

/*----------
swiper
----------*/
.swiper-area {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: block;
  vertical-align: middle;
  color: #232323;
  line-height: 1;
  width: 1em;
  height: 1em;
  cursor: pointer;
}

.swiper-button-prev::before, .swiper-button-prev::after,
.swiper-button-next::before,
.swiper-button-next::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

.swiper-button-prev {
  left: -30px;
  transform: translate(25%, -50%) rotate(-135deg);
}

.swiper-button-next {
  right: -30px;
  transform: translate(-25%, -50%) rotate(45deg);
}

@media screen and (max-width: 767px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 0.8em;
    height: 0.8em;
  }

  .swiper-button-prev {
    left: -16px;
  }

  .swiper-button-next {
    right: -16px;
  }
}

/*----------
common
----------*/
.c-catlist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.c-catlist>* {
  line-height: 1;
  padding: 0.5em 1em;
  font-size: 12px;
  color: #fff !important;
  background: #232323;
  text-decoration: none;
}

@media (hover: hover) {
  .c-catlist>*:hover {
    color: inherit;
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .c-catlist {
    gap: 4px;
  }

  .c-catlist>* {
    font-size: 10px;
  }
}

/*----------
top
----------*/
.home .content {
  margin-top: 0;
}

.home .content .main {
  padding: 0;
}

.p-top__mv {
  position: relative;
}

.p-top__mv__img {
  display: block;
}

.p-top__mv__img img {
  object-fit: cover;
  width: 100%;
  height: 480px;
}

@media screen and (max-width: 767px) {
  .p-top__mv__img img {
    object-fit: initial;
    height: auto;
  }
}

/* ===================================
   お知らせ一覧（共通スタイル）
=================================== */

.news-container {
  padding-top: 80px;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ddd;
}

.news-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.news-list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  width: 100%;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.news-list li a:hover {
  background-color: #f9f9f9;
  opacity: 0.8;
}

.news-date {
  color: #888;
  font-size: 0.9rem;
  margin-right: 1rem;
  min-width: 90px;
}

.news-cat {
  display: inline-block;
  background: #eee;
  color: #555;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 3px;
  margin-right: 1rem;
  white-space: nowrap;
}

.news-title {
  flex: 1;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .news-container {
    padding-top: 40px;
  }

  .news-list li {
    padding: 10px 0;
  }

  .news-list li a {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-date {
    margin: 0 0 4px 0;
    font-size: 0.85rem;
  }

  .news-cat {
    margin: 0 0 6px 0;
    font-size: 0.75rem;
  }

  .news-title {
    font-size: 0.95rem;
  }
}


.p-top__com__tit {
  font-weight: bold;
}

.p-top__com__tit .txt-en {
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 0.2em;
}

@media screen and (max-width: 767px) {
  .p-top__com__tit .txt-en {
    font-size: 14px;
  }
}

.p-top__com__tit .txt-jp {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 1em;
}

@media screen and (max-width: 767px) {
  .p-top__com__tit .txt-jp {
    font-size: 20px;
  }
}

.p-top__com__desc {
  margin: 0 0 1.5em;
}

@media screen and (max-width: 767px) {
  .p-top__com__desc {
    font-size: 14px;
  }
}

.p-top__com__more {
  margin: 40px 0 0;
  text-align: center;
}

.p-top__com__more a {
  display: inline-block;
  background: #232323;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5em 1.5em;
  line-height: 1.4;
  border-radius: 50px;
  font-size: 18px;
}

@media (hover: hover) {
  .p-top__com__more a:hover {
    background: #ff9100;
  }
}

@media screen and (max-width: 767px) {
  .p-top__com__more {
    margin: 20px 0 0;
  }

  .p-top__com__more a {
    font-size: 16px;
  }
}

.p-top__newcont {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .p-top__newcont {
    padding: 40px 0;
  }
}

.p-top__newcont__list .list-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.p-top__newcont__list .list-item__img {
  width: 52%;
  padding: 0 40px 0 0;
  aspect-ratio: 3 / 1.45;
}

@media (hover: hover) {
  .p-top__newcont__list .list-item__img:hover {
    opacity: 0.7;
  }
}

.p-top__newcont__list .list-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 843px) {
  .p-top__newcont__list .list-item__img {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .p-top__newcont__list .list-item__img {
    width: 100%;
    padding: 0 0 15px;
  }
}

.p-top__newcont__list .list-item__info {
  flex: 1;
}

.p-top__newcont__list .list-item__info a {
  text-decoration: none;
  color: #232323;
}

@media (hover: hover) {
  .p-top__newcont__list .list-item__info a:hover {
    color: #ff9100;
  }
}

.p-top__newcont__list .list-item__tit {
  font-size: 24px;
  line-height: 1.5;
  margin: 0.3em 0 0.8em;
  color: #232323;
}

@media screen and (max-width: 767px) {
  .p-top__newcont__list .list-item__tit {
    font-size: 20px;
  }
}

.p-top__newcont__list .list-item__desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px) {
  .p-top__newcont__list .list-item__desc {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
}

.p-top__newcont__list .list-item__date {
  text-align: right;
  margin: 0.5em 0 0;
}

@media screen and (max-width: 767px) {
  .p-top__newcont__list .list-item__date {
    font-size: 12px;
  }
}

.p-top__newcont__list .list-item__more {
  text-align: right;
  margin: 3em 0 0;
}

@media screen and (max-width: 767px) {
  .p-top__newcont__list .list-item__more {
    font-size: 12px;
  }
}

.p-top__newcont .swiper-button-prev,
.p-top__newcont .swiper-button-next {
  top: 161.3333333333px;
}

@media screen and (max-width: 1139px) {

  .p-top__newcont .swiper-button-prev,
  .p-top__newcont .swiper-button-next {
    top: calc((100vw - 80px) * 0.44 / 3);
  }
}

@media screen and (max-width: 843px) {

  .p-top__newcont .swiper-button-prev,
  .p-top__newcont .swiper-button-next {
    top: calc((100vw - 80px) * 0.48 / 3);
  }
}

@media screen and (max-width: 767px) {

  .p-top__newcont .swiper-button-prev,
  .p-top__newcont .swiper-button-next {
    top: calc((100vw - 40px) / 3);
  }
}

.p-top__catcont {
  padding: 0 0 80px;
}

@media screen and (max-width: 767px) {
  .p-top__catcont {
    padding: 0 0 40px;
  }
}

.p-top__catcont__list .list-item__img {
  padding: 0 0 10px;
  display: block;
  aspect-ratio: 3/1.65;
}

@media (hover: hover) {
  .p-top__catcont__list .list-item__img:hover {
    opacity: 0.7;
  }
}

.p-top__catcont__list .list-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top__catcont__list .list-item__info a {
  text-decoration: none;
  color: #232323;
}

@media (hover: hover) {
  .p-top__catcont__list .list-item__info a:hover {
    color: #ff9100;
  }
}

.p-top__catcont__list .list-item__tit {
  font-size: 16px;
  line-height: 1.4;
  margin: 0.3em 0;
  color: #232323;
}

@media screen and (max-width: 767px) {
  .p-top__catcont__list .list-item__tit {
    font-size: 14px;
  }
}

.p-top__catcont__list .list-item__date {
  text-align: right;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .p-top__catcont__list .list-item__date {
    font-size: 12px;
  }
}

.p-top__catcont .swiper-button-prev,
.p-top__catcont .swiper-button-next {
  top: 86.6666666667px;
}

@media screen and (max-width: 1139px) {

  .p-top__catcont .swiper-button-prev,
  .p-top__catcont .swiper-button-next {
    top: calc((100vw - 60px - 80px) / 4 / 3);
  }
}

@media screen and (max-width: 767px) {

  .p-top__catcont .swiper-button-prev,
  .p-top__catcont .swiper-button-next {
    top: calc((100vw - 30px - 40px) / 3 / 3);
  }
}

@media screen and (max-width: 480px) {

  .p-top__catcont .swiper-button-prev,
  .p-top__catcont .swiper-button-next {
    top: calc((100vw - 30px - 10px) * 0.625 / 3);
  }
}

.p-top__newpost {
  padding: 80px 0;
  background: #f1f1f1;
}

@media screen and (max-width: 767px) {
  .p-top__newpost {
    padding: 40px 0;
  }
}

.p-top__newpost__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 843px) {
  .p-top__newpost__list {
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .p-top__newpost__list {
    gap: 10px;
  }
}

.p-top__newpost__list .list-item {
  width: calc((100% - 60px) / 4);
}

@media screen and (max-width: 843px) {
  .p-top__newpost__list .list-item {
    width: calc((100% - 30px) / 3);
  }
}

@media screen and (max-width: 480px) {
  .p-top__newpost__list .list-item {
    width: calc((100% - 10px) / 2);
  }
}

.p-top__newpost__list .list-item__img {
  padding: 0 0 10px;
  display: block;
  aspect-ratio: 3/1.65;
}

@media (hover: hover) {
  .p-top__newpost__list .list-item__img:hover {
    opacity: 0.7;
  }
}

.p-top__newpost__list .list-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top__newpost__list .list-item__info a {
  text-decoration: none;
  color: #232323;
}

@media (hover: hover) {
  .p-top__newpost__list .list-item__info a:hover {
    color: #ff9100;
  }
}

.p-top__newpost__list .list-item__tit {
  font-size: 16px;
  line-height: 1.4;
  margin: 0.3em 0;
  color: #232323;
}

@media screen and (max-width: 767px) {
  .p-top__newpost__list .list-item__tit {
    font-size: 14px;
  }
}

.p-top__newpost__list .list-item__date {
  text-align: right;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .p-top__newpost__list .list-item__date {
    font-size: 12px;
  }
}

/*# sourceMappingURL=custom.css.map */