@charset "UTF-8";
/* レイアウト
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-page-home {
    padding-bottom: 11.6rem;
    background: url(../img/home/bg_contents_pc.png) no-repeat left bottom/59.5rem 24.5rem;
  }
  .p-homeSection {
    padding-top: 9.3rem;
  }
  .p-homeSection-inner {
    max-width: var(--container-default);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-page-home {
    padding-bottom: 5.2rem;
    background: url(../img/home/bg_contents_sp.png) no-repeat left bottom -24px/100%;
  }
  .p-homeSection {
    padding-top: 4.8rem;
  }
}
/* ボタン
------------------------------------------------------------- */
button {
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

/* タイトル
------------------------------------------------------------- */
.p-homeSection__title {
  font-weight: var(--fw-medium);
  text-align: left;
}
.p-homeSection__title span {
  display: block;
}
.p-homeSection__title--en {
  font-family: var(--font-en);
  color: var(--color-primary);
}
.p-homeSection__title--ja {
  font-family: var(--font-ja-serif);
  letter-spacing: var(--letter-spacing-default);
}

@media screen and (min-width: 768px) {
  .p-homeSection__title {
    max-width: var(--container-default);
    margin-inline: auto;
    margin-bottom: 2.8rem;
  }
  .p-homeSection__title--en {
    font-size: 1.3rem;
  }
  .p-homeSection__title--ja {
    font-size: 2.7rem;
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-homeSection__title {
    width: 100%;
    padding-inline: 1.5rem;
    margin-bottom: 1.7rem;
  }
  .p-homeSection__title--en {
    font-size: 1.1rem;
  }
  .p-homeSection__title--ja {
    font-size: 2.4rem;
    margin-top: 0.3rem;
  }
}
/* タイトル
------------------------------------------------------------- */
.is-border-top {
  border-top-color: var(--color-secondary);
  border-top-style: solid;
}
@media screen and (min-width: 768px) {
  .is-border-top {
    border-top-width: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  .is-border-top {
    border-top-width: 0.2rem;
  }
}

/* おすすめ商品エリア（スライダーコントローラー）
------------------------------------------------------------- */
.m-productLineHome-slideController {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: flex-end;
}
.m-productLineHome-slideController .swiper-button-disabled {
  opacity: 0.35;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

[aria-disabled=true], [disabled] {
  cursor: default;
}

@media screen and (min-width: 992px) {
  .m-productLineHome-slideController {
    top: -8rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .m-productLineHome-slideController {
    top: -6rem;
    gap: 1rem;
  }
  .m-productLineHome-slideController img {
    width: 4rem;
  }
}
/* メインビジュアル
------------------------------------------------------------- */
@keyframes slideIn {
  0% {
    transform: translate(8rem);
  }
  to {
    transform: translate(0);
  }
}
.m-homeMainVisual {
  position: relative;
}
.m-homeMainVisual .m-homeMainVisual__container, .m-homeMainVisual .m-homeMainVisual-slider__item-link {
  display: block;
  height: 100%;
}
.m-homeMainVisual .m-homeMainVisual-slider__item {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition-property: opacity;
}
.m-homeMainVisual .m-homeMainVisual-slider__item.swiper-slide-active .m-homeMainVisual-slider__item-picture {
  animation: 8s linear 1 slideIn;
}
.m-homeMainVisual .m-homeMainVisual-slider__item.swiper-slide-next .m-homeMainVisual-slider__item-picture {
  transform: translate(8rem);
}
.m-homeMainVisual .m-homeMainVisual-slider__item-picture {
  position: relative;
  left: -8rem;
  width: calc(100% + 16rem);
  max-width: initial;
  height: 100%;
  transition-duration: 1s;
  transition-property: transform;
  will-change: transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition-property: opacity;
}
.m-homeMainVisual .m-homeMainVisual-slider__item-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-homeMainVisual .m-homeMainVisual-title {
  position: absolute;
  left: 0;
  color: var(--color-white);
  font-family: var(--font-ja-serif);
  font-weight: var(--fw-medium);
  z-index: 1;
}
.m-homeMainVisual .m-homeMainVisual-title span {
  display: block;
}
.m-homeMainVisual .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .m-homeMainVisual .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.m-homeMainVisual .swiper-horizontal > .swiper-pagination-bullets, .m-homeMainVisual .swiper-pagination-bullets.swiper-pagination-horizontal, .m-homeMainVisual .swiper-pagination-custom, .m-homeMainVisual .swiper-pagination-fraction {
  left: auto;
}
.m-homeMainVisual .m-homeMainVisual-slidePagination {
  position: absolute;
  justify-content: flex-end;
  z-index: 1;
}
.m-homeMainVisual .m-homeMainVisual-slidePagination__item {
  border: none;
  pointer-events: none;
  opacity: 0.5;
}
.m-homeMainVisual .m-homeMainVisual-slidePagination__item.swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .m-homeMainVisual {
    height: calc(100vh - (var(--header-height-pc) + var(--header-ticker-height-pc)));
  }
  .m-homeMainVisual .m-homeMainVisual-title {
    padding-inline: 6rem;
    bottom: 3.2rem;
  }
  .m-homeMainVisual .m-homeMainVisual-title--main {
    font-size: 3.6rem;
    letter-spacing: var(--letter-spacing-default);
  }
  .m-homeMainVisual .m-homeMainVisual-title--sub {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
  .m-homeMainVisual .m-homeMainVisual-slidePagination {
    margin-top: 0;
  }
  .m-homeMainVisual .m-homeMainVisual-slidePagination {
    bottom: 3.5rem;
    right: 6rem;
    gap: 1.6rem;
    margin-top: 0;
  }
  .m-homeMainVisual .m-homeMainVisual-slidePagination__item {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .m-homeMainVisual {
    height: calc(100vh - (var(--header-height-sp) + var(--header-ticker-height-sp)));
  }
  .m-homeMainVisual .m-homeMainVisual-title {
    bottom: 5rem;
    padding-inline: 1.5rem;
    line-height: 1.5;
  }
  .m-homeMainVisual .m-homeMainVisual-title--main {
    font-size: 2.8rem;
    letter-spacing: 0.09em;
  }
  .m-homeMainVisual .m-homeMainVisual-title--sub {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
  .m-homeMainVisual .m-homeMainVisual-slidePagination {
    margin-top: 0;
  }
  .m-homeMainVisual .m-homeMainVisual-slidePagination {
    bottom: 2rem;
    right: 1.5rem;
    gap: 1rem;
    margin-top: 0;
  }
  .m-homeMainVisual .m-homeMainVisual-slidePagination__item {
    width: 0.8rem;
    height: 0.8rem;
  }
}
/* メインビジュアル下バナーエリア
------------------------------------------------------------- */
.p-banner-area {
  margin-top: 3rem;
}
.p-banner-area .p-banner-area-inner.swiper {
  opacity: 1;
}
.p-banner-area .js-banner-area-button-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}
.p-banner-area .js-banner-area-button-wrapper .swiper-button-prev, .p-banner-area .js-banner-area-button-wrapper .swiper-button-next {
  position: static;
  width: 4rem;
  height: 4rem;
  margin-top: 0;
}
.p-banner-area .js-banner-area-button-wrapper .swiper-button-prev:after, .p-banner-area .js-banner-area-button-wrapper .swiper-button-next:after {
  display: none;
}
.p-banner-area .js-banner-area-button-wrapper .swiper-button-prev img, .p-banner-area .js-banner-area-button-wrapper .swiper-button-next img {
  width: 100%;
}

.p-banner-list a {
  display: block;
}

@media screen and (min-width: 768px) {
  .p-banner-area {
    max-width: 116rem;
    margin-inline: auto;
  }
  .p-banner-area .p-banner-list {
    width: 100%;
    display: flex;
    flex-shrink: 0;
  }
  .p-banner-area .p-banner-list .p-banner-list-item {
    width: calc(25% - 2.025rem);
  }
  .p-banner-area .p-banner-list a {
    transition: opacity var(--transition-default);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-banner-area .p-banner-list a:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (max-width: 767px) {
  .p-banner-area {
    overflow: hidden;
    padding-inline: 1.5rem;
  }
  .p-banner-area .js-banner-slider {
    width: 100%;
    overflow: visible;
  }
  .p-banner-area .swiper-slide {
    width: 23rem;
  }
}
/* コーディネートエリア
------------------------------------------------------------- */
.p-coordinate-area {
  font-family: var(--font-ja-serif);
}
.p-coordinate-area .p-coordinate-title {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-default);
}
.p-coordinate-area .p-coordinate-lead {
  font-weight: var(--fw-regular);
  line-height: 2;
  letter-spacing: var(--letter-spacing-default);
}
.p-coordinate-area .p-coordinate-movie {
  display: flex;
  align-items: center;
}
.p-coordinate-area .p-coordinate-movie .p-coordinate-movie-text {
  font-weight: var(--fw-medium);
  letter-spacing: var(--letter-spacing-default);
  color: var(--color-main);
  text-align: left;
}
.p-coordinate-area .p-coordinate-movie-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
}
.p-coordinate-area .p-coordinate-movie-wrapper .js-movie-wrapper-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(34, 43, 47, 0.4);
}
.p-coordinate-area .p-coordinate-movie-wrapper .p-coordinate-movie-wrapper-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
}
.p-coordinate-area .p-coordinate-movie-wrapper .p-coordinate-movie-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-coordinate-area .p-coordinate-movie-wrapper .p-coordinate-movie-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-coordinate-area .p-coordinate-movie-wrapper .js-movie-wrapper-close {
  position: absolute;
}
.p-coordinate-area #js-coordinate-movie-target {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-coordinate-area {
    background: url(../img/home/bg_coordinate_pc.png) no-repeat top left/100%;
    padding-top: 7.3rem;
    margin-top: 4.7rem;
  }
  .p-coordinate-area .p-homeSection-inner {
    display: flex;
    justify-content: space-between;
  }
  .p-coordinate-info {
    width: 45.8rem;
    padding-top: 0.8rem;
  }
  .p-coordinate-title {
    font-size: 3rem;
  }
  .p-coordinate-lead {
    font-size: 1.5rem;
    margin-top: 2.4rem;
  }
  .p-coordinate-movie {
    margin-top: 3.5rem;
    transition: opacity var(--transition-default);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-coordinate-movie:hover {
    cursor: pointer;
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px) {
  .p-coordinate-movie .p-coordinate-movie-img {
    width: 20.5rem;
  }
  .p-coordinate-movie .p-coordinate-movie-text {
    width: calc(100% - 20.5rem);
    font-size: 1.4rem;
    padding-left: 2rem;
  }
  .p-coordinate-movie-wrapper .p-coordinate-movie-wrapper-inner {
    width: 80.1rem;
  }
  .p-coordinate-movie-wrapper .js-movie-wrapper-close {
    top: -6rem;
    right: -6rem;
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-coordinate-movie-wrapper .js-movie-wrapper-close:hover {
    cursor: pointer;
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px) {
  .p-coordinate-img {
    width: 70rem;
  }
}
@media screen and (max-width: 767px) {
  .p-coordinate-area {
    margin-top: 5rem;
    padding-top: 0;
  }
  .p-coordinate-info {
    width: 100%;
    padding-inline: 1.5rem;
  }
  .p-coordinate-title {
    font-size: 2.2rem;
  }
  .p-coordinate-lead {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
  .p-coordinate-movie {
    margin-top: 2.5rem;
  }
  .p-coordinate-movie .p-coordinate-movie-img {
    width: 15rem;
  }
  .p-coordinate-movie .p-coordinate-movie-text {
    font-size: 1.1rem;
    margin-left: 1.5rem;
  }
  .p-coordinate-movie-wrapper .p-coordinate-movie-wrapper-inner {
    width: 92%;
  }
  .p-coordinate-movie-wrapper .js-movie-wrapper-close {
    top: -4rem;
    right: 0;
    width: 3rem;
    height: 3rem;
  }
  .p-coordinate-img {
    width: 100%;
    margin-top: 4rem;
  }
}
/* サービスエリア
------------------------------------------------------------- */
.p-service-list {
  display: grid;
  gap: 0.1rem;
}
.p-service-list .p-service-list-link {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #2B2B2F;
}
.p-service-list .p-service-list-img {
  transition: transform var(--transition-default);
  opacity: 0.4;
}
.p-service-list .p-service-list-title-box {
  position: absolute;
  display: block;
  width: 100%;
  padding-inline: 1rem;
  color: var(--color-white);
  text-align: center;
  transform: translateY(-50%);
}
.p-service-list .p-service-list-title {
  font-weight: var(--fw-medium);
  text-align: center;
}
.p-service-list .p-service-list-title span {
  display: block;
}
.p-service-list .p-service-list-title--main {
  font-family: var(--font-ja-serif);
  letter-spacing: var(--letter-spacing-default);
}
.p-service-list .p-service-list-title--sub {
  font-family: var(--font-en);
}
.p-service-list .p-service-list-title-img {
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-service-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-service-list-link:hover .p-service-list-img {
    transform: scale(1.15);
  }
}
@media screen and (min-width: 768px) {
  .p-service-list-title-box {
    top: 54.5%;
  }
  .p-service-list-title--main {
    font-size: 2.8rem;
  }
  .p-service-list-title--sub {
    font-size: 1.3rem;
    margin-top: 0.1rem;
  }
  .p-service-list-title-img {
    width: 4rem;
    margin-top: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-service-list-title-box {
    top: 59%;
  }
  .p-service-list-title--main {
    font-size: 1.8rem;
  }
  .p-service-list-title--sub {
    font-size: 1rem;
    margin-top: 0.3rem;
  }
  .p-service-list-title-img {
    width: 3rem;
    margin-top: 1.2rem;
  }
}
/* お知らせ
------------------------------------------------------------- */
.p-news-area .p-homeNewsList-body--link {
  display: block;
}
.p-news-area .p-homeNewsList-body__time {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  font-family: var(--font-en);
  letter-spacing: 0.09em;
}
.p-news-area .p-homeNewsList-body__title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-news-area {
    padding-top: 12rem;
    margin-top: 12rem;
  }
  .p-news-area-inner {
    max-width: var(--container-small);
    width: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
  }
  .p-news-area-title-box {
    width: 37rem;
  }
  .p-homeContentsUnderBtn {
    margin-top: 3.8rem;
  }
  .p-homeNewsList {
    width: 79rem;
  }
  .p-homeNewsList-body {
    padding: 1.8rem 2.5rem;
  }
  .p-homeNewsList-body--link:hover {
    opacity: 1;
    cursor: default;
  }
  .p-homeNewsList-body__time {
    font-size: 1.5rem;
  }
  .p-homeNewsList-body__title {
    max-width: 100%;
    margin-top: 0.71rem;
  }
  .p-homeNewsList-body__title span {
    font-size: 1.5rem;
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-news-area {
    padding-inline: 1.5rem;
    margin-top: 5rem;
  }
  .p-news-area .p-homeSection__title {
    padding-inline: 0;
  }
  .p-homeNewsList-body {
    padding: 2rem 2.5rem 1.5rem;
  }
  .p-homeNewsList-body__time {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
  .p-homeNewsList-body__title {
    margin-top: 0.6rem;
  }
  .p-homeNewsList-body__title span {
    font-size: 1.4rem;
    -webkit-line-clamp: 5;
  }
  .p-homeContentsUnderBtn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}
/* おすすめ商品エリア（スライダー）
------------------------------------------------------------- */
.m-productLineHome {
  justify-content: flex-start;
  gap: 0 !important;
}

.m-productLineHome__slider-wrap {
  position: relative;
  overflow: visible;
}
.m-productLineHome__slider-wrap .swiper-wrapper {
  flex-wrap: nowrap;
}

@media screen and (min-width: 992px) {
  .p-recommend-area .l-container {
    padding-right: 0;
    padding-left: 0;
  }
  .m-productLineHome__slider-wrap .m-productLineHome__item {
    width: 30rem;
  }
  .m-productLineHome__slider-wrap .m-productLineHome-slideController {
    top: -8rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .m-productLineHome__slider-wrap .m-productLineHome__item {
    width: 20rem;
  }
  .m-productLineHome__slider-wrap .m-productLineHome-slideController {
    top: -6rem;
    gap: 1rem;
  }
  .m-productLineHome__slider-wrap .m-productLineHome-slideController img {
    width: 4rem;
  }
}
/* おすすめ商品エリア
------------------------------------------------------------- */
.p-recommend-area {
  overflow: hidden;
}
.p-recommend-area:not(:has(.swiper-slide)) {
  display: none;
}
.p-recommend-area .c-product-head {
  overflow: hidden;
}
.p-recommend-area .c-product-head__link {
  position: relative;
  display: block;
}
.p-recommend-area .c-product-head__picture {
  overflow: hidden;
}
.p-recommend-area .c-product-head__picture:before {
  display: none;
}
.p-recommend-area .c-product-head__image {
  position: static;
}
.p-recommend-area .c-product-head__sold-out {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: var(--fw-medium);
  font-size: 2rem;
  background-color: rgba(141, 141, 141, 0.4);
}
.p-recommend-area .c-product-body-category {
  color: #746F6F;
}
.p-recommend-area .c-product-body__title-name a {
  font-weight: var(--fw-regular);
}

@media screen and (min-width: 992px) {
  .p-recommend-area {
    padding-top: 12rem;
  }
  .p-recommend-area .c-product-head {
    border-radius: 0.8rem;
  }
  .p-recommend-area .c-product-body-category {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
  .p-recommend-area .c-product-body__title-name {
    margin-top: 0.5rem;
  }
  .p-recommend-area .c-product-body__title-name a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  .p-recommend-area .c-product-head {
    border-radius: 0.4rem;
  }
  .p-recommend-area .c-product-body {
    margin-top: 1.1rem;
  }
  .p-recommend-area .c-product-body-category {
    font-size: 1rem;
    margin-top: 0.8rem;
  }
  .p-recommend-area .c-product-body__title-name {
    margin-top: 0.6rem;
  }
  .p-recommend-area .c-product-body__title-name a {
    font-size: 1.4rem;
  }
}
/* おすすめ商品エリア（価格部分）
------------------------------------------------------------- */
.c-product-body__price,
.c-product-body__price-subsc,
.c-product-body__price-prime,
.c-product-body__price-default {
  width: 100%;
  font-family: var(--font-en);
  font-weight: var(--fw-medium);
}
.c-product-body__price--num,
.c-product-body__price-subsc--num,
.c-product-body__price-prime--num,
.c-product-body__price-default--num {
  width: 100%;
  white-space: normal;
}

.c-product-body__price-prime {
  color: var(--color-red);
}

.c-product-body__price--sale .c-product-body__price-default--num {
  font-size: 1.4rem;
}
.c-product-body__price--sale .c-product-body__price-default {
  margin-top: -0.5rem;
}

.c-product-body__price-subsc {
  column-gap: 0;
}

.c-product-body__price-subsc-icon {
  display: grid;
  place-content: center;
  color: var(--color-main);
}

.c-product-body__price-subsc-icon {
  border: 0.1rem solid var(--color-main);
  padding: 0 0.7rem;
  border-radius: 0.2rem;
}

.c-product-body__price-subsc--first {
  width: 100%;
  text-align: center;
  color: var(--color-red);
  border: 0.1rem solid var(--color-red);
  border-radius: 0.2rem;
}
.c-product-body__price-subsc--first .c-product-body__price-subsc-price {
  font-family: var(--font-en-montserrat);
}

.c-product-body__price-subsc--regular {
  color: var(--color-main);
}

@media screen and (min-width: 992px) {
  .p-ranking-list .c-product-body__price,
  .p-ranking-list .c-product-body__price-subsc,
  .p-ranking-list .c-product-body__price-prime,
  .p-ranking-list .c-product-body__price-default {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
  .p-ranking-list .c-product-body__price + .c-product-body__price-subsc,
  .p-ranking-list .c-product-body__price-subsc + .c-product-body__price-subsc,
  .p-ranking-list .c-product-body__price-prime + .c-product-body__price-subsc,
  .p-ranking-list .c-product-body__price-default + .c-product-body__price-subsc {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .p-ranking-list .c-product-body__price,
  .p-ranking-list .c-product-body__price-subsc,
  .p-ranking-list .c-product-body__price-prime,
  .p-ranking-list .c-product-body__price-default {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}
/* タブ切り替え
------------------------------------------------------------- */
@keyframes fadeInTabContent {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tab-wrappers {
  width: 100%;
}

.tab-button {
  display: grid;
  place-content: center;
  height: 100%;
  color: #000;
  background-color: var(--color-bg-gray);
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.3s;
}
.tab-button.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.tab-content {
  display: none;
  animation: fadeInTabContent 0.3s;
}
.tab-content.active {
  display: block;
}

@media screen and (max-width: 767px) {
  .tab-button {
    width: 100%;
  }
}
/* 畳を探すエリア（カテゴリーエリア）
------------------------------------------------------------- */
.p-category-area .p-category-tab-buttons {
  display: flex;
}
.p-category-area .p-category-tab-button-box:first-child, .p-category-area .p-category-tab-button-box:last-child {
  overflow: hidden;
}
.p-category-area .p-category-tab-button-box .p-category-tab-button {
  width: 100%;
  font-weight: var(--fw-medium);
  letter-spacing: var(--letter-spacing-default);
}
.p-category-area .p-category-list {
  display: grid;
}
.p-category-area .p-category-list .p-category-list-item {
  border: 0.1rem solid var(--color-border);
}
.p-category-area .p-category-list .p-category-list-item:first-child {
  display: none;
}
.p-category-area .p-category-list .p-category-list-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1.25;
  background-image: url(../img/common/icon/icon_arrow_right_blue.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
}
.p-category-area .p-homeContentsUnderBtn {
  display: flex;
}

@media screen and (min-width: 768px) {
  .p-category-area {
    margin-top: 11.4rem;
    padding-top: 9.8rem;
  }
  .p-category-area .p-category-tab-buttons {
    width: 100%;
  }
  .p-category-area .p-category-tab-buttons .p-category-tab-button-box {
    width: 20%;
  }
  .p-category-area .p-category-tab-buttons .p-category-tab-button-box:first-child {
    border-radius: 0.8rem 0 0 0.8rem;
  }
  .p-category-area .p-category-tab-buttons .p-category-tab-button-box:last-child {
    border-radius: 0 0.8rem 0.8rem 0;
  }
  .p-category-area .p-category-tab-buttons .p-category-tab-button {
    font-size: 1.7rem;
    padding: 1.4rem 0.5rem;
    transition: opacity var(--transition-default);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-category-area .p-category-tab-buttons .p-category-tab-button:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px) {
  .p-category-area .p-category-tab-contents {
    margin-top: 3rem;
  }
  .p-category-area .p-category-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 2.7rem;
  }
  .p-category-area .p-category-list .p-category-list-item {
    border-radius: 0.8rem;
    transition: opacity var(--transition-default);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-category-area .p-category-list .p-category-list-item:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px) {
  .p-category-area .p-category-list .p-category-list-link {
    min-height: 7.8rem;
    gap: 0 2rem;
    padding: 0.9rem 6rem 0.9rem 2rem;
    font-size: 1.6rem;
    background-position: center right 2rem;
  }
  .p-category-area .p-category-list .p-category-list-link img {
    width: 6rem;
  }
  .p-category-area .p-category-list .p-category-list-text {
    width: calc(100% - 8rem);
  }
  .p-category-area .p-homeContentsUnderBtn {
    justify-content: flex-end;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-category-area {
    margin-top: 4.7rem;
  }
  .p-category-area .p-category-tab-buttons {
    display: grid;
    grid-template-columns: repeat(5, 15rem);
    gap: 0;
    padding-inline: 1.5rem;
    padding-bottom: 1rem;
    overflow-x: auto;
  }
  .p-category-area .p-category-tab-buttons .p-category-tab-button-box:first-child {
    border-radius: 0.4rem 0 0 0.4rem;
  }
  .p-category-area .p-category-tab-buttons .p-category-tab-button-box:last-child {
    border-radius: 0 0.4rem 0.4rem 0;
  }
  .p-category-area .p-category-tab-buttons .p-category-tab-button {
    font-size: 1.4rem;
    min-height: 4.5rem;
    padding: 0 0.5rem;
  }
  .p-category-area .p-category-tab-contents {
    margin-top: 1rem;
  }
  .p-category-area .p-category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding-inline: 1.5rem;
  }
  .p-category-area .p-category-list .p-category-list-item {
    border-radius: 0.4rem;
  }
  .p-category-area .p-category-list .p-category-list-link {
    min-height: 5.8rem;
    gap: 0 1rem;
    font-size: 1.4rem;
    padding: 1.4rem 2.5rem 1.4rem 1rem;
    background-position: center right 0.5rem;
  }
  .p-category-area .p-category-list .p-category-list-link img {
    width: 3rem;
  }
  .p-category-area .p-category-list .p-category-list-text {
    width: calc(100% - 4rem);
  }
  .p-category-area .p-homeContentsUnderBtn {
    justify-content: center;
  }
}
/* ジャーナルエリア
------------------------------------------------------------- */
.p-journal-area {
  overflow: hidden;
}
.p-journal-area:not(:has(.swiper-slide)) {
  display: none;
}
.p-journal-area .p-homeSection__title-box {
  display: none;
}
.p-journal-area .m-homeFeatureSlide-thumbs {
  display: none;
}
.p-journal-area .m-homeFeatureSlide-main-slider {
  overflow: visible;
}
.p-journal-area .m-homeFeatureSlide-slider {
  align-items: flex-start;
  height: auto;
}
.p-journal-area .m-homeFeatureSlide-slider__item {
  height: auto;
}
.p-journal-area .m-homeFeatureSlide-slider__text {
  line-height: 1.5;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-journal-area .m-homeFeatureSlide-slider__text--sub {
  display: none;
}
.p-journal-area .m-homeFeatureSlide-slider__text--main {
  font-weight: var(--fw-regular);
}
.p-journal-area .p-homeContentsUnderBtn {
  display: flex;
}

@media screen and (min-width: 768px) {
  .p-journal-area {
    padding-top: 11.5rem;
    margin-top: 9.3rem;
  }
  .p-journal-area .m-homeFeatureSlide-slider__item {
    width: 30rem;
  }
  .p-journal-area .m-homeFeatureSlide-slider__text {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  .p-journal-area .m-productLineHome-slideController {
    position: -7.3rem;
  }
  .p-journal-area .p-homeContentsUnderBtn {
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-journal-area {
    margin-top: 5rem;
  }
  .p-journal-area .p-homeSection-inner {
    padding-inline: 1.5rem;
  }
  .p-journal-area .m-homeFeatureSlide-slider__item {
    width: 25rem;
  }
  .p-journal-area .m-homeFeatureSlide-slider__text {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
  .p-journal-area .p-homeContentsUnderBtn {
    justify-content: center;
    margin-top: -0.5rem;
  }
}
/* ギャラリーエリア
------------------------------------------------------------- */
@keyframes slideInGallery {
  0% {
    transform: translate(4rem);
  }
  to {
    transform: translate(0);
  }
}
.p-gallery-area {
  position: relative;
}
.p-gallery-area:not(:has(.swiper-slide)) {
  display: none;
}
.p-gallery-area .p-homeSection-inner {
  position: relative;
}
.p-gallery-area .p-gallery-lead {
  font-family: var(--font-ja-serif);
}
.p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-slider__item {
  overflow: hidden;
}
.p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-slider__item.swiper-slide-active .m-homeFeatureSlide-slider__picture {
  animation: 8s linear 1 slideInGallery;
}
.p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-slider__item.swiper-slide-next .m-homeFeatureSlide-slider__picture {
  transform: translate(4rem);
}
.p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-slider__picture {
  position: relative;
  left: -4rem;
  width: calc(100% + 8rem);
  max-width: initial;
  height: 100%;
  transition-duration: 1s;
  transition-property: transform;
  will-change: transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition-property: opacity;
}
.p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-slider__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-gallery-area .m-homeFeatureSlide-slider__item {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition-property: opacity;
}
.p-gallery-area .m-homeFeatureSlide-slider__link {
  position: relative;
}
.p-gallery-area .m-homeFeatureSlide-slider__text {
  position: absolute;
  left: 0;
  color: var(--color-white);
  font-family: var(--font-ja-serif);
  font-weight: var(--fw-medium);
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-gallery-area .m-homeFeatureSlide-slider__text span {
  display: block;
}
.p-gallery-area .m-homeFeatureSlide-slider__text--sub {
  font-family: var(--font-en);
}
.p-gallery-area .m-homeFeatureSlide-slidePagination .swiper-pagination-bullet {
  height: auto;
  opacity: 1;
}
.p-gallery-area .m-homeFeatureSlide-thumbs .m-homeFeatureSlide-slider__item {
  border-radius: 0.4rem;
  overflow: hidden;
}
.p-gallery-area .m-homeFeatureSlide-thumbs .m-homeFeatureSlide-slider__item.swiper-slide-thumb-active {
  border: 0.1rem solid var(--color-primary);
}
.p-gallery-area .m-productLineHome-slideController {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-gallery-area {
    padding-top: 12rem;
    margin-top: 12rem;
    background: url(../img/home/bg_gallelry_pc.png) no-repeat bottom 17.8rem left/83rem 16rem;
  }
  .p-gallery-area .p-homeSection__title-box {
    display: block;
    width: 37.4rem;
    z-index: 1;
  }
  .p-gallery-area .p-homeSection__title-box .p-homeSection__title {
    padding-inline: 0;
  }
  .p-gallery-area .p-homeSection__title-box .p-homeContentsUnderBtn {
    margin-top: 2.6rem;
  }
  .p-gallery-area .p-gallery-lead {
    font-size: 1.5rem;
  }
  .p-gallery-area .m-homeFeatureSlide-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
  .p-gallery-area .m-homeFeatureSlide-container, .p-gallery-area .m-homeFeatureSlide {
    position: static;
  }
  .p-gallery-area .m-homeFeatureSlide-main {
    width: min(84rem, 65.625%);
    order: 2;
  }
  .p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-slider__item {
    height: 56rem;
    border-radius: 1.6rem;
  }
  .p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-slider__link {
    height: 100%;
  }
  .p-gallery-area .m-homeFeatureSlide-slider__text {
    bottom: 2.5rem;
    padding-inline: 2.5rem;
  }
  .p-gallery-area .m-homeFeatureSlide-slider__text--sub {
    font-size: 1.4rem;
  }
  .p-gallery-area .m-homeFeatureSlide-slider__text--main {
    font-size: 1.8rem;
    line-height: 1.33333333;
  }
  .p-gallery-area .m-homeFeatureSlide-slidePagination {
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    gap: 1rem;
    width: min(39rem, 30.46875%);
    order: 1;
  }
  .p-gallery-area .m-homeFeatureSlide-slidePagination .swiper-pagination-bullet {
    width: 9rem;
    border-radius: 0.4rem;
    overflow: hidden;
  }
  .p-gallery-area .m-homeFeatureSlide-slidePagination .swiper-pagination-bullet {
    transition: opacity var(--transition-default);
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-gallery-area .m-homeFeatureSlide-slidePagination .swiper-pagination-bullet:hover {
    cursor: pointer;
    opacity: var(--hover-opacity);
  }
}
@media screen and (min-width: 768px) {
  .p-gallery-area .m-homeFeatureSlide-thumbs {
    width: 39rem;
    order: 1;
  }
  .p-gallery-area .m-homeFeatureSlide-thumbs .m-homeFeatureSlide-thumbs-slider {
    margin-top: 14rem;
  }
  .p-gallery-area .m-homeFeatureSlide-thumbs .m-homeFeatureSlide-slider__item {
    width: 9rem;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .p-gallery-area .m-homeFeatureSlide-thumbs .m-homeFeatureSlide-slider__link:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .p-gallery-area .p-homeContentsUnderBtn--bottom {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery-area {
    margin-top: 5rem;
    background: url(../img/home/bg_gallelry_sp.png) no-repeat top 5.5rem left/100%;
  }
  .p-gallery-area .p-gallery-lead {
    font-size: 1.4rem;
    padding-inline: 1.5rem;
  }
  .p-gallery-area .m-homeFeatureSlide-wrapper {
    padding-inline: 1.5rem;
  }
  .p-gallery-area .m-homeFeatureSlide-main {
    margin-top: 2rem;
  }
  .p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-main-slider {
    height: 23rem;
  }
  .p-gallery-area .m-homeFeatureSlide-main .m-homeFeatureSlide-slider__item {
    border-radius: 0.8rem;
  }
  .p-gallery-area .m-homeFeatureSlide-slider__link {
    height: 100%;
  }
  .p-gallery-area .m-homeFeatureSlide-slider__text {
    bottom: 1rem;
    padding-inline: 1rem;
  }
  .p-gallery-area .m-homeFeatureSlide-slider__text--sub {
    font-size: 1rem;
  }
  .p-gallery-area .m-homeFeatureSlide-slider__text--main {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .p-gallery-area .m-homeFeatureSlide-slidePagination {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }
  .p-gallery-area .m-homeFeatureSlide-slidePagination .swiper-pagination-bullet {
    width: 100%;
    height: auto;
    border-radius: 0.4rem;
    overflow: hidden;
  }
  .p-gallery-area .m-homeFeatureSlide-thumbs {
    width: 100%;
    margin-top: 1rem;
  }
  .p-gallery-area .m-homeFeatureSlide-thumbs .m-homeFeatureSlide-slider__item {
    width: calc(25% - 0.825rem);
  }
  .p-gallery-area .p-homeContentsUnderBtn {
    margin-top: 2rem;
  }
}
/* オーダーサイズボタン
------------------------------------------------------------- */
.btn-order-size {
  position: fixed;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-default), visibility var(--transition-default), bottom 0.1s ease-out;
  z-index: 1;
}
.btn-order-size.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .btn-order-size {
    right: 6rem;
    bottom: 4.5rem;
    width: 12rem;
    height: 12rem;
  }
  .btn-order-size:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 88, 168, 0.8);
    border-radius: 50%;
    transition: transform var(--transition-default);
    transform-origin: center;
  }
  .btn-order-size img {
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .btn-order-size:hover:before {
    transform: scale(1.09);
  }
}
@media screen and (max-width: 767px) {
  .btn-order-size {
    left: 50%;
    bottom: 1.5rem;
    width: 34.5rem;
    transform: translateX(-50%);
  }
}