@charset "utf-8";

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

:root {
  --main-color: #0d0d0d;
  --black-color: #000;
  --white-color: #fff;
  --red-color: #e60000;
  --grey-color: #c1c1c1;
  --main-font: "DM Sans", sans-serif;
  --notosan-font: "Noto Sans JP", sans-serif;
}

body {
  font-family: var(--main-font);
  color: var(--main-color);
  font-weight: 400;
  font-size: 16px;
  background-color: #efefef;
  -webkit-text-size-adjust: 100%;
}

#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: calc(100% - 48px);
  max-width: 1126px;
  margin: 0 auto;
  position: relative;
}

.home #primary {
  position: relative;
}

.home #primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: url("../images/top/background_cover.png") repeat center top;
  pointer-events: none;
  z-index: -1;
}

.box_sp {
  display: none;
}

.box_pc {
  display: block;
}

/* ------------------------------------------------------
common
------------------------------------------------------ */
/*-------------h_title---------------*/
.h_title {
  font-size: 51px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.h_title.center {
  text-align: center;
}

/*-------------btn_primary---------------*/
.btn_primary {
  width: 100%;
  max-width: 247px;
  height: 60px;
  margin: 0 auto;
}

.btn_primary.small {
  max-width: 136px;
  height: 46px;
}

.btn_primary a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  border-radius: 35px;
  position: relative;
}

.btn_primary a::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: var(--white-color);
  border-radius: 35px;
  transition: all 0.4s ease;
  pointer-events: none;
}

.btn_primary a .btn_primary_block {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.btn_primary.small a .btn_primary_block {
  padding: 0 16px;
}

.btn_primary a .btn_primary_block .btn_primary_text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  left: 24px;
  font-weight: 500;
  white-space: nowrap;
}

.btn_primary.small a .btn_primary_block .btn_primary_text {
  font-size: 18px;
  left: 20px;
}

.btn_primary a .btn_primary_block .btn_primary_text:first-child {
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.btn_primary a .btn_primary_block .btn_primary_text:nth-child(2) {
  color: var(--white-color);
  z-index: 0;
}

.btn_primary a i {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white-color);
  position: relative;
  pointer-events: none;
}

.btn_primary.small a i {
  width: 24px;
  height: 24px;
}

.btn_primary a i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/icon_btn.png);
  background-size: 14px 10px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn_primary.small a i::before {
  background-image: url(../images/common/icon_btn.png);
  background-size: 11px 8px;
}

.btn_primary a i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.btn_primary.custom {
  max-width: 330px;
  height: 60px;
  margin: 0 auto !important;
}

.btn_primary.custom a .btn_primary_block {
  justify-content: flex-start;
}

.btn_primary.custom a i::before {
  transform: rotate(180deg);
}

.btn_primary.custom a .btn_primary_block .btn_primary_text {
  left: calc(50% + 6px);
  transform: translate(-50%, -50%);
}

/*-------------card---------------*/
.card {
  display: flex;
  flex-wrap: wrap;
}

.card.custom .card_img {
  height: 16.861vw;
  max-height: 202px;
}

.card.custom .card_info {
  padding: 14px 16px 16px;
}

.card.custom .card_title {
  margin-bottom: 39px;
}

.card .card_box {
  display: block;
}

.card_item {
  width: calc((100% - 48px) / 3);
  margin-right: 24px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.card_item:last-child {
  margin-right: 0;
}

.card_item:nth-child(3n) {
  margin-right: 0;
}

.card_item:nth-child(n + 4) {
  margin-top: 47px;
}

.card_img {
  width: 100%;
  height: 16.976vw;
  max-height: 238px;
  line-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card_img figure {
  width: 100%;
  height: 100%;
}

.card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.card_info {
  padding: 22px 24px;
}

.card_cat {
  margin-bottom: 7px;
}

.card_cat span {
  height: 20px;
  font-size: 12px;
  color: var(--black-color);
  line-height: 1;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 2px;
  border: 1px solid #e0e0e0;
  margin: 2px 4px 2px 0;
}

.card_cat span:last-child {
  margin-right: 0;
}

.card_title {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card_date {
  font-size: 16px;
  color: var(--red-color);
  flex-shrink: 0;
  margin-right: 10px;
}

.card_btn {
  width: 100%;
  max-width: 135px;
  display: block;
}

.card_btn span {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.card_btn span i {
  width: 40px;
  height: 40px;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: relative;
  flex-shrink: 0;
  pointer-events: none;
}

.card_btn span i::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  background-color: var(--white-color);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.card_btn span i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/arrow_right.png");
  background-size: 16px 12px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.4s ease;
  z-index: 2;
}

/*-------------block_news---------------*/
#category {
  margin-bottom: 40px;
}

#category .category_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

#category .category_item {
  min-width: 170px;
  height: 50px;
}

#category .category_item a {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--white-color);
  transition: opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

#category .category_item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  border-radius: 5px;
  transition: all 0.4s ease;
  pointer-events: none;
  opacity: 0;
}

#category .category_item a.is-active {
  pointer-events: none;
}

#category .category_item a.is-active::before {
  opacity: 1;
}

#category .category_item a span {
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

#category .category_item a span::before {
  content: "";
  position: absolute;
  left: -16px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--white-color);
  opacity: 0;
}

#category .category_item a.is-active span {
  background: none;
  -webkit-text-fill-color: var(--white-color);
}

#category .category_item a.is-active span::before {
  opacity: 1;
}

/*-------------block_news---------------*/
#block_news {
  padding: 63px 0 80px;
  background-color: var(--white-color);
}

#block_news .block_news_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}

#block_news .block_news_group .btn_primary {
  margin: 0;
}

#block_news .block_news_title {
  font-size: 40px;
  font-weight: 600;
}

/*-------------block_brands---------------*/
#block_brands {
  padding: 80px 0 40px;
}

#block_brands .block_brands_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

#block_brands .block_brands_title {
  font-size: 40px;
  font-weight: 600;
}

#block_brands .block_brands_group .btn_primary {
  margin: 0;
}

#block_brands .brands_list {
  padding: 40px 41px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgba(211, 211, 211, 0.6);
  border-radius: 5px;
}

#block_brands .brands_item {
  width: calc((100% - 120px) / 6);
  height: 12.855vw;
  max-height: 154px;
  margin-right: 24px;
  background-color: var(--white-color);
  position: relative;
  z-index: 2;
}

#block_brands .brands_item:last-child {
  margin-right: 0;
}

#block_brands .brands_item:nth-child(6n) {
  margin-right: 0;
}

#block_brands .brands_item:nth-child(n + 7) {
  margin-top: 24px;
}

#block_brands .brands_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  height: 100%;
}

#block_brands .brands_logo img {
  max-height: 100%;
  object-fit: contain;
}

/*-------------location---------------*/
.pages .location_list .location_item {
  margin-bottom: 24px;
}

.pages .location_list .location_item:last-child {
  margin-bottom: 0;
}

.pages .location_list .location_item a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32px 40px;
  background-color: var(--white-color);
  transition: all 0.3s ease;
}

.pages .location_list .location_img {
  width: 100%;
  max-width: 224px;
  height: 126px;
  flex-shrink: 0;
  margin-right: 32px;
  line-height: 0;
}

.pages .location_list .location_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pages .location_list .location_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.pages .location_list .location_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 19px;
}

.pages .location_list .location_info span {
  display: block;
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.4;
}

.pages .location_list .location_info span:last-child {
  margin-bottom: 0;
}

.pages .location_list .location_info span i {
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
}

.pages .location_list .location_info .location_address i {
  background-image: url("../images/common/location.svg");
  width: 12px;
  height: 15px;
}

.pages .location_list .location_info .location_time i {
  background-image: url("../images/common/schedule.svg");
  width: 13px;
  height: 13px;
}

.pages .location_list .location_info .location_ins i {
  background-image: url("../images/common/installation.png");
  width: 14px;
  height: 14px;
}

.pages .location_list .location_icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: relative;
  flex-shrink: 0;
  margin-left: 15px;
}

.pages .location_list .location_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/arrow_right.png);
  background-size: 16px 12px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.4s ease;
  z-index: 2;
}

.pages .location_list .location_icon::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  background-color: var(--white-color);
  pointer-events: none;
  z-index: 1;
  transition: all 0.4s ease;
}

/*-------------anchor---------------*/
.pages #anchor {
  padding-bottom: 48px;
}

.pages #anchor .anchor_list {
  display: flex;
  flex-wrap: wrap;
}

.pages #anchor .anchor_item {
  width: calc((100% - 48px) / 3);
  height: 50px;
  background-color: var(--white-color);
  margin-right: 24px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.pages #anchor .anchor_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
}

.pages #anchor .anchor_item:last-child {
  margin-right: 0;
}

.pages #anchor .anchor_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

/*-------------topic_path---------------*/
#topic_path {
  padding-bottom: 30px;
}

#topic_path .inner {
  width: calc(100% - 48px);
}

#topic_path ul {
  display: flex;
  flex-wrap: wrap;
  color: var(--grey-color);
  font-size: 11px;
}

#topic_path ul li {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 6px 25px 6px;
  height: 24px;
  margin: 2px -25px 2px 0;
  position: relative;
}

#topic_path ul li:last-child span {
  width: 100%;
  max-width: 210px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#topic_path ul li i::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 11px;
  width: 5px;
  height: 8px;
  display: inline-block;
  background: url("../images/common/icon_path.png") no-repeat;
  background-size: contain;
  pointer-events: none;
}

#topic_path ul li::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

#topic_path ul li:last-child {
  margin-right: 0;
}

#topic_path ul a {
  color: #4e4e4e;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

/*-------------pagenavi---------------*/
.pagenavi .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagenavi .wp-pagenavi a,
.pagenavi .wp-pagenavi span {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--white-color);
  margin: 8px;
}

.pagenavi .wp-pagenavi .current {
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  color: var(--white-color);
}

.pagenavi .wp-pagenavi .extend {
  background-color: transparent;
  align-items: flex-end;
  width: auto !important;
  margin: 0 9px;
  padding-bottom: 4px;
  font-size: 30px !important;
}

.pagenavi .wp-pagenavi .previouspostslink,
.pagenavi .wp-pagenavi .nextpostslink {
  position: relative;
}

.pagenavi .wp-pagenavi .previouspostslink {
  margin-right: 16px;
  margin-left: 0;
}

.pagenavi .wp-pagenavi .nextpostslink {
  margin-left: 16px;
  margin-right: 0;
}

.pagenavi .wp-pagenavi .previouspostslink::before,
.pagenavi .wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 12px;
  background: url("../images/news/icon_arrow.png") no-repeat center center;
  background-size: contain;
}

.pagenavi .wp-pagenavi .previouspostslink::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* ------------------------------------------------------
header
------------------------------------------------------ */
#header {
  width: 100%;
  background-color: var(--white-color);
  position: fixed;
  z-index: 12;
}

#header .header_wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 16px;
  border-bottom: 2px solid var(--red-color);
  position: relative;
  overflow: hidden;
}

#header .header_wrap #top {
  line-height: 0;
}

#header .header_wrap #top a {
  display: block;
}

#header .header_line {
  position: absolute;
  right: -3px;
  top: 0;
  width: 85%;
  height: 8px;
  background-size: cover;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}

#header .header_line span {
  display: block;
  height: 100%;
  width: 25%;
  transform: skewX(45deg);
  margin-right: -1px;
}

#header .header_line span:nth-child(1) {
  background-color: #0069b1;
}

#header .header_line span:nth-child(2) {
  background-color: #00b0b9;
}

#header .header_line span:nth-child(3) {
  background-color: #f6b700;
}

#header .header_line span:nth-child(4) {
  background-color: #df4f61;
  margin-right: 0;
}

#header .header_subtitle {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--notosan-font);
  color: var(--black-color);
}

#header .header_block {
  height: 87px;
  display: flex;
  align-items: center;
  position: relative;
}

#header .header_title {
  width: 91.33%;
  max-width: 1125px;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  /* text-transform: uppercase; */
  color: #000000;
}

#header #toggle-menu {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 32px;
  height: 27px;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

#header #toggle-menu .hamburger {
  width: 100%;
  height: 100%;
  display: inline-block;
  margin-bottom: 13px;
  position: relative;
}

#header #toggle-menu .hamburger.active span:nth-child(1) {
  transform: translateY(13px) rotate(-45deg);
}

#header #toggle-menu .hamburger.active span:nth-child(2) {
  opacity: 0;
}

#header #toggle-menu .hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(45deg);
}

#header #toggle-menu .hamburger span {
  background-color: #9ea2a2;
  display: block;
  height: 3px;
  border-radius: 4px;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
  opacity: 1;
  width: 100%;
  position: absolute;
  left: 0;
}

#header #toggle-menu .hamburger span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

#header #toggle-menu .hamburger span:nth-child(3) {
  bottom: 0;
}

#header .menu {
  position: fixed;
  right: 0;
  top: 163px;
  width: 100%;
  max-width: 440px;
  height: calc(100vh - 163px);
  transform: translateX(101%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

#header .menu.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

#header .menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

#header .menu_inner {
  height: 100%;
  overflow-y: auto;
}

#header .menu_block {
  width: 94%;
  max-width: 291px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

#header .menu_block nav {
  padding-top: 25px;
  margin-bottom: 26px;
}

#header .menu_list:not(.menu_sup) {
  border-bottom: 1px solid var(--grey-color);
}

#header .menu_list:not(.menu_sup):first-child {
  border-top: 1px solid var(--grey-color);
}

#header .menu_list:not(.menu_sup) a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
}

#header .menu_list:not(.menu_sup) a .menu_text span {
  display: block;
  font-size: 12px;
  line-height: 1.54;
}

#header .menu_list:not(.menu_sup) a.active {
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#header .menu_list:not(.menu_sup) a i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  position: relative;
}

#header .menu_list:not(.menu_sup) a i::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: var(--white-color);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

#header .menu_list:not(.menu_sup) a i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 8px;
  background: url("../images/header/arrow_right.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}

#header .menu_list.menu_sup {
  text-align: center;
  padding-top: 19px;
}

#header .menu_list.menu_sup a {
  font-size: 13px;
  margin-right: 32px;
}

#header .menu_list.menu_sup a:last-child {
  margin-right: 0;
}

#header .menu_sns {
  display: flex;
  justify-content: center;
  padding-bottom: 48px;
}

#header .menu_sns a {
  display: inline-block;
  margin-right: 16px;
}

#header .menu_sns a:last-child {
  margin-right: 0;
}

/* ------------------------------------------------------
content
------------------------------------------------------ */
/*-------------p_mainvisual---------------*/
.pages #p_mainvisual {
  padding: 80px 0 72px;
  margin-top: 163px;
  position: relative;
}

.pages #p_mainvisual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 553px;
  height: 361px;
  background-image: url("../images/common/image_pmv.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.pages #p_mainvisual .inner {
  max-width: 1195px;
  z-index: 1;
}

.pages #p_mainvisual .mainvisual_title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  padding-left: 33px;
}

.pages #p_mainvisual .mainvisual_title .subtitle {
  position: relative;
}

.pages #p_mainvisual .mainvisual_title .subtitle::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 25px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--red-color);
  pointer-events: none;
}

.pages #p_mainvisual .mainvisual_title .sub {
  font-size: 22px;
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}

/*-------------idx_mainvisual---------------*/
#idx_mainvisual {
  height: 554px;
  margin-top: 163px;
}

#idx_mainvisual .mainvisual_contain {
  height: 100%;
  position: relative;
}

#idx_mainvisual .mainvisual_contain .top_slider {
  width: 100%;
  height: 100%;
  max-width: 1126px;
  margin: 0 auto;
  position: relative;
}

#idx_mainvisual .mainvisual_contain .top_slider::before,
#idx_mainvisual .mainvisual_contain .top_slider::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100vw;
  background-color: rgba(85, 85, 85, 0.7);
  backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: 2;
}

#idx_mainvisual .mainvisual_contain .top_slider::before {
  right: 100%;
}

#idx_mainvisual .mainvisual_contain .top_slider::after {
  left: 100%;
}

#idx_mainvisual .mainvisual_contain .swiper-wrapper {
  height: 100%;
}

#idx_mainvisual .mainvisual_contain .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#idx_mainvisual .mainvisual_contain .swiper-pagination {
  bottom: -29px;
  width: 89.4%;
  max-width: 820px;
  left: 50%;
  transform: translateX(-50%);
}

#idx_mainvisual .mainvisual_contain .swiper-pagination .swiper-pagination-bullet {
  width: calc((100% - 40px) / 5);
  height: 8px;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0 4px;
  opacity: 1;
}

#idx_mainvisual .mainvisual_contain .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--red-color);
}

#idx_mainvisual .mainvisual_contain .swiper_arrow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 73px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

#idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-prev,
#idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-next {
  position: relative;
  margin: 0;
  top: auto;
  left: auto;
  right: auto;
  width: 40px;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-prev::after,
#idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-next::after {
  display: none;
}

#idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-prev {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

#idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-next {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

#idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-next img {
  transform: rotate(-180deg);
}

/*-------------idx_about---------------*/
#idx_about {
  padding: 60px 0 64px;
}

#idx_about .inner {
  max-width: 1317px;
}

#idx_about .about_desc {
  width: 100%;
  max-width: 932px;
  padding: 40px 45px;
  margin: 0 auto 64px;
  background-color: var(--white-color);
  border-radius: 5px;
}

#idx_about .about_desc p {
  font-size: 20px;
  line-height: 1.6;
}

#idx_about .about_desc p span {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  line-height: 0;
}

#idx_about .about_logo {
  position: relative;
}

#idx_about .about_logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-height: 194px;
  height: 14.202vw;
  background: rgba(117, 117, 117, 0.5);
  backdrop-filter: blur(20px);
  z-index: 0;
}

#idx_about .about_logo_list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

#idx_about .about_logo_item {
  width: calc((100% - 72px) / 4);
  height: 14vw;
  max-height: 220px;
  margin-right: 24px;
  background-color: var(--white-color);
  line-height: 0;
}

#idx_about .about_logo_item a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

#idx_about .about_logo_item figure {
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#idx_about .about_logo_item figure img {
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

#idx_about .about_logo_item:last-child {
  margin-right: 0;
}

#idx_about .about_logo_item:nth-child(4n) {
  margin-right: 0;
}

#idx_about .about_logo_item:nth-child(n + 5) {
  margin-top: 24px;
}

/*-------------idx_news---------------*/
#idx_news {
  padding: 151px 0 146px;
}

#idx_news .news_wrap {
  display: flex;
  justify-content: space-between;
}

#idx_news .news_heading {
  flex-shrink: 0;
  margin-right: 30px;
  width: 140px;
}

#idx_news .news_heading .h_title {
  margin-bottom: 39px;
}

#idx_news .news_heading .btn_primary {
  margin: 0;
}

#idx_news .news_list {
  width: 100%;
  max-width: 834px;
  margin-top: 3px;
}

#idx_news .news_item {
  margin-bottom: 24px;
}

#idx_news .news_item:last-child {
  margin-bottom: 0;
}

#idx_news .news_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--white-color);
  padding: 25px 40px 22px;
}

#idx_news .news_group {
  margin-right: 30px;
}

#idx_news .news_title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

#idx_news .news_date {
  font-size: 14px;
  color: var(--red-color);
  margin-right: 13px;
}

#idx_news .news_cat {
  display: inline-block;
}

#idx_news .news_cat span {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  color: var(--black-color);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  margin-right: 8px;
}

#idx_news .news_cat span:last-child {
  margin-right: 0;
}

#idx_news .news_icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: relative;
  flex-shrink: 0;
}

#idx_news .news_icon::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  background-color: var(--white-color);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

#idx_news .news_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 12px;
  background-image: url(../images/common/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  z-index: 2;
}

/*-------------idx_pickup---------------*/
#idx_pickup {
  padding: 84px 0 80px;
  position: relative;
}

#idx_pickup::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

#idx_pickup .inner {
  z-index: 2;
  max-width: 1317px;
}

#idx_pickup .h_title {
  margin-bottom: 42px;
}

/*-------------idx_brands---------------*/
#idx_brands {
  padding: 123px 0 145px;
}

#idx_brands .inner {
  max-width: 1126px;
}

#idx_brands .h_title {
  margin-bottom: 42px;
}

#idx_brands .brands_list {
  padding: 40px 41px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

#idx_brands .brands_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  pointer-events: none;
}

#idx_brands .brands_item {
  width: calc((100% - 120px) / 6);
  height: 12.855vw;
  max-height: 154px;
  margin-right: 24px;
  background-color: var(--white-color);
  position: relative;
  z-index: 2;
}

#idx_brands .brands_item:last-child {
  margin-right: 0;
}

#idx_brands .brands_item:nth-child(6n) {
  margin-right: 0;
}

#idx_brands .brands_item:nth-child(n + 7) {
  margin-top: 24px;
}

#idx_brands .brands_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  height: 100%;
}

#idx_brands .brands_logo img {
  max-height: 100%;
  object-fit: contain;
}

/*-------------idx_location---------------*/
#idx_location {
  padding: 68px 0 99px;
  position: relative;
}

#idx_location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  pointer-events: none;
}

#idx_location .inner {
  max-width: 1126px;
}

#idx_location .h_title {
  margin-bottom: 59px;
}

#idx_location .location_list {
  display: flex;
  flex-wrap: wrap;
}

#idx_location .location_item {
  width: calc((100% - 60px) / 5);
  aspect-ratio: 1 / 1;
  max-height: none;
  margin-right: 15px;
}

#idx_location .location_item a {
  background-color: var(--white-color);
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

#idx_location .location_item:last-child {
  margin-right: 0;
}

#idx_location .location_item:nth-child(5n) {
  margin-right: 0;
}

#idx_location .location_item:nth-child(n + 6) {
  margin-top: 39px;
}

#idx_location .location_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px;
}

#idx_location .location_logo img {
  max-height: 100%;
  object-fit: contain;
}

/* ------------------------------------------------------
footer
------------------------------------------------------ */
#footer {
  background-color: var(--main-color);
  padding: 66px 0 39px;
}

#footer .footer_menu {
  width: 100%;
  max-width: 540px;
  margin: 0 auto 65px;
}

#footer .footer_menu nav {
  width: 100%;
}

#footer .footer_menu_list {
  display: flex;
  justify-content: space-between;
}

#footer .footer_menu_list a {
  font-size: 20px;
  color: var(--white-color);
}

#footer .footer_address {
  border-top: 1px solid #919191;
  padding-top: 25px;
  text-align: center;
  color: #919191;
  font-size: 14px;
}

#footer .footer_address address {
  font-style: inherit;
}

/* responsive */
@media screen and (max-width: 1150px) {
  /*-------------card---------------*/
  .card_info {
    padding: 19px 16px 24px;
  }

  .card_date {
    font-size: 15px;
  }

  .card_btn {
    max-width: 118px;
  }

  .card_btn span {
    font-size: 15px;
  }

  .card_btn span i {
    width: 32px;
    height: 32px;
  }
}

@media screen and (min-width: 1025px) {
  a[href^="tel"] {
    pointer-events: none;
  }

  /*-------------btn---------------*/
  .btn_primary a:hover::before {
    opacity: 0;
  }

  .btn_primary a:hover .btn_primary_block .btn_primary_text:first-child {
    opacity: 0;
  }

  .btn_primary a:hover i::before {
    background-image: url(../images/common/icon_btn_hover.png);
  }

  .btn_primary a:hover i::after {
    opacity: 0;
  }

  /*-------------card---------------*/
  .card .card_box:hover i::after {
    opacity: 0;
  }

  .card .card_box:hover i::before {
    background-image: url(../images/common/arrow_right_hover.png);
  }

  .card a:hover .card_img img {
    transform: scale(1.1) translateZ(0);
  }

  .card .card_box:hover .card_title {
    opacity: 0.7;
  }

  /*-------------category---------------*/
  #category .category_item a:hover span::before,
  #category .category_item a:hover::before {
    opacity: 1;
  }

  #category .category_item a:hover span {
    background: none;
    -webkit-text-fill-color: var(--white-color);
  }

  /*-------------location---------------*/
  .pages .location_list .location_item a:hover .location_icon::before {
    background-image: url(../images/common/arrow_right_hover.png);
  }

  .pages .location_list .location_item a:hover .location_icon::after {
    opacity: 0;
  }

  /*-------------anchor---------------*/
  .pages #anchor .anchor_item:hover::before {
    opacity: 1;
  }

  .pages #anchor .anchor_item:hover a {
    background: none;
    -webkit-text-fill-color: var(--white-color);
  }

  /*-------------topic_path---------------*/
  #topic_path ul a:hover {
    opacity: 0.7;
  }

  /*-------------pagenavi---------------*/
  .pagenavi .wp-pagenavi a.page:hover {
    background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
    color: var(--white-color);
  }

  /*-------------menu---------------*/
  #header .menu_list:not(.menu_sup) a:hover {
    background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /*-------------idx_mainvisual---------------*/
  #idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-prev:hover,
  #idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-next:hover {
    opacity: 0.7;
  }

  /*-------------idx_about---------------*/
  #idx_about .about_logo_item a:hover {
    opacity: 0.7;
  }

  #idx_about .about_logo_item a:hover figure img {
    transform: scale(1.1) translateZ(0);
  }

  /*-------------idx_news---------------*/
  #idx_news .news_item a:hover .news_title {
    opacity: 0.7;
  }

  #idx_news .news_item a:hover .news_icon::after {
    opacity: 0;
  }

  #idx_news .news_item a:hover .news_icon::before {
    background-image: url(../images/common/arrow_right_hover.png);
  }

  /*-------------idx_location---------------*/
  #idx_location .location_item a:hover {
    opacity: 0.7;
  }

  /*-------------footer---------------*/
  #footer .footer_menu_list a:hover {
    background: linear-gradient(270deg, #ee5c00 0%, #e60000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }

  /*-------------common---------------*/
  .h_title {
    font-size: 40px;
  }

  /*-------------btn_primary---------------*/
  .btn_primary {
    max-width: 220px;
    height: 50px;
  }

  .btn_primary a::before,
  .btn_primary a i::after {
    opacity: 0;
  }

  .btn_primary a .btn_primary_block .btn_primary_text {
    font-size: 18px;
  }

  .btn_primary a .btn_primary_block .btn_primary_text:first-child {
    display: none;
  }

  .btn_primary a i::before {
    background-image: url(../images/common/arrow_btn_sp.png) !important;
    background-size: 9px 7px !important;
  }

  .btn_primary.custom {
    max-width: 240px;
    height: 50px;
  }

  .btn_primary a .btn_primary_block {
    padding: 0 16px;
  }

  /*-------------card---------------*/
  .card {
    width: 100%;
    max-width: 870px;
    margin: 0 auto;
  }

  .card_item {
    width: calc((100% - 24px) / 2);
  }

  .card.custom .card_img {
    height: 25.702vw;
    max-height: 238px;
  }

  .card.custom .card_title {
    margin-bottom: 22px;
  }

  .card_item:nth-child(2n) {
    margin-right: 0 !important;
  }

  .card_item:nth-child(3n) {
    margin-right: 24px;
  }

  .card_item:nth-child(n + 3) {
    margin-top: 40px;
  }

  .card_img {
    height: 25.702vw;
  }

  .card_info {
    padding: 14px 24px 14px;
  }

  .card_title {
    margin-bottom: 24px;
  }

  .card_btn span i::after {
    display: none;
  }

  .card_btn span i::before {
    background-size: 11px 8px;
    background-image: url("../images/common/arrow_btn.png");
  }

  /*-------------block_news---------------*/
  #block_news {
    padding: 67px 0 90px;
  }

  #block_news .block_news_title {
    font-size: 30px;
  }

  /*-------------block_brands---------------*/
  #block_brands {
    padding: 83px 0 40px;
  }

  #block_brands .block_brands_group {
    margin-bottom: 34px;
  }

  #block_brands .block_brands_title {
    font-size: 30px;
  }

  #block_brands .brands_list {
    padding: 35px;
  }

  #block_brands .brands_item {
    width: calc((100% - 75px) / 6);
    margin-right: 15px;
  }

  #block_brands .brands_item:nth-child(n + 7) {
    margin-top: 15px;
  }

  /*-------------block_news---------------*/
  .pages .location_list .location_item a {
    padding: 30px 3%;
  }

  .pages .location_list .location_img {
    margin-right: 25px;
  }

  .pages .location_list .location_title {
    font-size: 20px;
  }

  .pages .location_list .location_info span {
    font-size: 14px;
  }

  .pages .location_list .location_icon {
    width: 32px;
    height: 32px;
  }

  .pages .location_list .location_icon::after {
    display: none;
  }

  .pages .location_list .location_icon::before {
    background-image: url(../images/common/arrow_btn.png);
    background-size: 11px 8px;
  }

  /*-------------anchor---------------*/
  .pages #anchor {
    padding-bottom: 58px;
  }

  .pages #anchor .anchor_item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }

  /*-------------pagenavi---------------*/
  .pagenavi .wp-pagenavi a,
  .pagenavi .wp-pagenavi span {
    width: 42px;
    height: 42px;
    font-size: 16px;
    margin: 4px;
    border-radius: 8px;
  }

  .pagenavi .wp-pagenavi .extend {
    margin: 0 5px;
  }

  .pagenavi .wp-pagenavi .previouspostslink {
    margin-right: 8px;
  }

  .pagenavi .wp-pagenavi .nextpostslink {
    margin-left: 8px;
  }

  .pagenavi .wp-pagenavi .previouspostslink::before,
  .pagenavi .wp-pagenavi .nextpostslink::before {
    width: 6px;
    height: 10px;
  }

  /*-------------p_mainvisual---------------*/
  .pages #p_mainvisual {
    margin-top: 146px;
  }

  .pages #p_mainvisual .mainvisual_title {
    font-size: 30px;
    padding-left: 18px;
  }

  .pages #p_mainvisual .mainvisual_title .subtitle::before {
    width: 10px;
    height: 10px;
    top: 15px;
    left: -18px;
  }

  .pages #p_mainvisual .mainvisual_title .sub {
    font-size: 16px;
  }

  /*-------------header---------------*/
  #header .header_block {
    height: 70px;
  }

  #header .header_title {
    font-size: 18px;
    line-height: 1.4;
  }

  #header .menu {
    top: 146px;
    height: calc(100vh - 146px);
  }

  #idx_mainvisual {
    margin-top: 146px;
    height: 49.067vw;
  }

  /*-------------idx_about---------------*/
  #idx_about .about_desc {
    padding: 24px;
  }

  #idx_about .about_desc p {
    font-size: 16px;
    line-height: 1.62;
  }

  /*-------------idx_news---------------*/
  #idx_news {
    padding: 59px 0 130px;
  }

  #idx_news .news_icon {
    width: 32px;
    height: 32px;
  }

  #idx_news .news_icon::after {
    display: none;
  }

  #idx_news .news_icon::before {
    width: 11px;
    height: 8px;
    background-image: url(../images/common/arrow_btn.png);
  }

  /*-------------idx_pickup---------------*/
  #idx_pickup .h_title {
    margin-bottom: 34px;
  }

  /*-------------idx_brands---------------*/
  #idx_brands {
    padding-bottom: 130px;
  }

  #idx_brands .h_title {
    margin-bottom: 35px;
  }

  #idx_brands .brands_list {
    padding: 35px;
  }

  #idx_brands .brands_item {
    width: calc((100% - 75px) / 6);
    margin-right: 15px;
  }

  #idx_brands .brands_item:nth-child(n + 7) {
    margin-top: 15px;
  }

  /*-------------idx_location---------------*/
  #idx_location {
    padding: 83px 0 100px;
  }

  #idx_location .h_title {
    margin-bottom: 35px;
  }

  #idx_location .location_item {
    width: calc((100% - 60px) / 5);
    margin-right: 15px;
  }

  #idx_location .location_item a {
    font-size: 22px;
  }

}

@media screen and (max-width: 768px) {
  #wrapper,
  #header,
  #main,
  #footer,
  .pages .pages_inner {
    width: 100% !important;
    min-width: inherit !important;
  }

  .box_sp {
    display: block;
  }

  .box_pc {
    display: none;
  }

  .inner {
    width: calc(100% - 32px);
  }
  /*-------------header---------------*/
  #header .menu_block nav {
    margin-bottom: 22px;
  }

  #header .menu_list.menu_sup {
    text-align: center;
    padding-top: 32px;
  }

  #header .menu_sns a img {
    width: 24px;
  }

  /*-------------card---------------*/
  .card.custom .card_item {
    margin-bottom: 32px !important;
  }

  .card.custom .card_item:last-child {
    margin-bottom: 0 !important;
  }

  .card.custom .card_img {
    height: 51.451vw;
    max-height: 236px;
  }

  .card.custom .card_info {
    padding: 14px 24px 16px;
  }

  .card_item {
    width: 91.467vw;
    max-width: 420px;
    margin: 0 auto 24px !important;
  }

  .card_item:nth-child(2n) {
    margin-right: auto !important;
  }

  .card_item:last-child {
    margin-bottom: 0 !important;
  }

  .card_img {
    height: 51.461vw;
    max-height: 236px;
  }

  /*-------------block_news---------------*/
  #category {
    overflow: auto;
    padding: 0 8px;
  }

  #category .category_group {
    display: flex;
    flex-wrap: nowrap;
    justify-content: initial;
    white-space: nowrap;
    gap: 16px;
  }

  #category .category_item {
    min-width: 206px;
    height: 50px;
  }


  /*-------------block_news---------------*/
  #block_news .block_news_group {
    display: block;
  }

  #block_news .block_news_title {
    text-align: center;
  }

  #block_news .card {
    margin-bottom: 12px;
  }

  #block_news .card.custom .card_item {
    margin-bottom: 24px !important;
  }

  /*-------------block_brands---------------*/
  #block_brands .inner {
    width: 100%;
  }

  #block_brands .block_brands_group {
    display: block;
  }

  #block_brands .block_brands_title {
    text-align: center;
  }

  #block_brands .brands_list {
    padding: 24px;
    width: 100%;
    max-width: 507px;
    margin: 0 auto 32px;
    justify-content: initial;
    background: none;
    position: relative;
  }

  #block_brands .brands_list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: rgba(211, 211, 211, 0.6);
    pointer-events: none;
  }

  #block_brands .brands_item {
    width: calc((100% - 19px) / 2);
    max-width: 220px;
    max-height: 220px;
    height: 43.393vw;
    margin-right: 19px;
  }

  #block_brands .brands_logo img {
    width: 100%;
    max-width: 120px;
  }

  #block_brands .brands_item:nth-child(2n) {
    margin-right: 0;
  }

  #block_brands .brands_item:nth-child(n + 3) {
    margin-top: 19px;
  }

  /*-------------location---------------*/
  .pages .location_list .location_item a {
    display: block;
    padding: 16px 16px 22px;
    margin-bottom: 35px;
  }

  .pages .location_list .location_img {
    width: 82.933vw;
    max-width: 311px;
    height: 46.667vw;
    max-height: 175px;
    margin: 0 auto 16px;
  }

  .pages .location_list .location_group {
    position: relative;
  }

  .pages .location_list .location_info {
    width: calc(100% - 45px);
  }

  .pages .location_list .location_title {
    margin-bottom: 17px;
  }

  .pages .location_list .location_info span {
    margin-bottom: 9px;
  }

  .pages .location_list .location_icon {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-left: 0;
  }

  /*-------------anchor---------------*/
  .pages #anchor .anchor_list {
    flex-direction: column;
    align-items: center;
  }

  .pages #anchor .anchor_item {
    width: 100%;
    max-width: 327px;
    height: 50px;
    margin: 0 auto 16px !important;
  }

  .pages #anchor .anchor_item:last-child {
    margin-bottom: 0 !important;
  }

  /*-------------p_mainvisual---------------*/
  .pages #p_mainvisual {
    padding: 64px 0;
    margin-top: 140px;
  }

  .pages #p_mainvisual::after {
    width: 339px;
    height: 221px;
    background-image: url("../images/common/image_pmv_sp.png");
  }

  .pages #p_mainvisual .mainvisual_title {
    padding-left: 16px;
  }

  .pages #p_mainvisual .mainvisual_title::before {
    left: -2px;
  }

  /*-------------header---------------*/
  #header .header_wrap {
    height: 58px;
    padding: 6px 16px 0 17px;
  }

  #header .header_line {
    width: 76.5%;
    height: 5px;
  }

  #header .header_subtitle {
    font-size: 14px;
    line-height: 1.1;
    text-align: right;
  }

  #header .header_block {
    height: 82px;
  }

  #header #toggle-menu {
    right: 16px;
  }

  #header .menu {
    top: 140px;
    height: calc(100vh - 140px);
  }

  /*-------------idx_mainvisual---------------*/
  #idx_mainvisual {
    margin-top: 140px;
  }

  #idx_mainvisual .mainvisual_contain .swiper-pagination {
    bottom: -23px;
  }

  #idx_mainvisual .mainvisual_contain .swiper-pagination .swiper-pagination-bullet {
    height: 4px;
  }

  #idx_mainvisual .mainvisual_contain .swiper_arrow {
    height: 10.667vw;
    min-height: 40px;
  }

  #idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-prev,
  #idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-next {
    width: 4.267vw;
    min-width: 16px;
  }

  #idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-prev img,
  #idx_mainvisual .mainvisual_contain .swiper_arrow .swiper-button-next img {
    width: 1.867vw;
    min-width: 7px;
  }

  /*-------------idx_about---------------*/
  #idx_about .inner {
    width: calc(100% - 32px);
  }

  #idx_about .about_desc {
    width: calc(100% - 18px);
    margin-bottom: 64px;
  }

  #idx_about .about_logo {
    padding: 48px 0;
  }

  #idx_about .about_logo::after {
    height: 100%;
    max-height: initial;
    top: 0;
    left: 50%;
  }

  #idx_about .about_logo_list {
    display: block;
  }

  #idx_about .about_logo_item {
    width: 91.467vw;
    max-width: 420px;
    height: 56.267vw;
    max-height: 258px;
    margin: 0 auto 32px !important;
  }

  #idx_about .about_logo_item:last-child {
    margin-bottom: 0 !important;
  }

  /*-------------idx_news---------------*/
  #idx_news .news_wrap {
    display: block;
  }

  #idx_news .news_heading {
    width: 100%;
  }

  #idx_news .news_heading .h_title {
    text-align: center;
    margin-bottom: 35px;
  }

  #idx_news .news_list {
    margin-top: 0;
    margin-bottom: 40px;
  }

  #idx_news .news_item a {
    padding: 17px 24px 17px;
    position: relative;
  }

  #idx_news .news_group {
    margin-right: 0;
  }

  #idx_news .news_title {
    margin-bottom: 23px;
  }

  #idx_news .news_date {
    display: block;
    margin: 0 0 8px;
  }

  #idx_news .news_icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
  }

  /*-------------idx_brands---------------*/
  #idx_brands .inner {
    width: 100%;
  }

  #idx_brands .brands_list {
    padding: 24px;
    width: 100%;
    max-width: 507px;
    margin: 0 auto 40px;
  }

  #idx_brands .brands_list::before {
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }

  #idx_brands .brands_item {
    width: calc((100% - 19px) / 2);
    max-width: 220px;
    max-height: 220px;
    height: 43.393vw;
    margin-right: 19px;
  }

  #idx_brands .brands_item:nth-child(2n) {
    margin-right: 0;
  }

  #idx_brands .brands_item:nth-child(n + 3) {
    margin-top: 19px;
  }

  /*-------------idx_location---------------*/
  #idx_location .location_item {
    width: 91.467vw;
    max-width: 420px;
    height: 56.267vw;
    max-height: 258px;
    margin: 0 auto 32px !important;
    aspect-ratio: auto;
  }

  #idx_location .location_item a {
    font-size: 33px;
  }

  #idx_location .location_item:last-child {
    margin-bottom: 0 !important;
  }

  /*-------------footer---------------*/
  #footer {
    padding: 58px 0 90px;
  }

  #footer .footer_menu_list {
    display: block;
  }

  #footer .footer_menu_item {
    margin-bottom: 27px;
    text-align: center;
  }

  #footer .footer_menu_item:last-child {
    margin-bottom: 0;
  }

  #footer .footer_address {
    font-size: 12px;
    padding-top: 24px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 374px) {
  /*-------------header---------------*/
  #header .header_title {
    font-size: 4.813vw;
  }
}

.size-full {
  width: 100%;
}