/******************************/
/* SLIDER */
/******************************/


.swiper {
  position: relative;
}

@media screen and (min-width: 1024px) {
 .swiper-slide > a {
  opacity: 1;
}
}

.swiper__next,
.swiper__prev {
  z-index: 99;
  display: none;
  width: 25px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  transition: opacity 0.3s;
}
@media screen and (min-width: 600px) {
  .swiper__next,
  .swiper__prev {
    display: block;
  }
}

.swiper__next:hover,
.swiper__prev:hover {
  cursor: pointer;
  opacity: 0.8;
}

.swiper__next {
  border-top: 1px solid var(--main);
  border-right: 1px solid var(--main);
  rotate: 45deg;
  right: 4.7857142857vw;
  translate: 0 -50%;
}

.swiper__prev {
  border-bottom: 1px solid var(--main);
  border-left: 1px solid var(--main);
  rotate: 45deg;
  left: 4.7857142857vw;
  translate: 0 -50%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  min-height: 350px;
  /*max-height: calc(100vh - var(--headerHeight));*/
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  .swiper-slide img {
    aspect-ratio: 1400/700;
  }
}

.swiper__pagination {
  margin-top: clamp(20px, 2.380952381vw, 30px);
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  background-color: var(--main)!important;
}

.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
}

.swiper-pagination-bullet {
  margin: 0 10px !important;
}

/******************************/
/* 要確認 */
/******************************/

.bx-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  max-height: calc( 100vh - var(--headerHeight));
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .bx-wrapper img {
    aspect-ratio: 1400 / 700;
  }
}


.bx-wrapper .bx-viewport {
  box-shadow: none !important;
  border: 0 !important;
  left: 0 !important;
}
.bx-wrapper .bx-pager {
  bottom: -27px !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  margin: 0 3px !important;
  padding-top: 15px;
  width: 25px !important;
  height: 1px !important;
  background: transparent !important;
  border-bottom: 1px solid #cccccc;
  border-radius: 0 !important;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: transparent !important;
  border-bottom: 1px solid #000000;
}

/******************************/
/* TOP BANNER */
/******************************/
.p-bnr {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 1030px) {
  .p-bnr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-bnr-list {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-bnr-list {
    display: block;
  }
}
.p-bnr-list__item {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  width: 33.3333%;
}
@media screen and (max-width: 1030px) {
  .p-bnr-list__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-bnr-list__item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
    width: auto;
    text-align: center;
  }
}

/******************************/
/* ORIGINAL */
/******************************/

.p-top-fv {
  padding-bottom: clamp(15px, 60 / 1260 * 100vw, 60px);
}

.p-top-news {
  margin-top: 30px;
}

.p-top-news__inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-news__inner {
    width: min(100%, 1260px);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space80);
    padding: 0 var(--innerPadding);
    grid-template-columns: 41.3793103448% 1fr;
  }
}

.p-top-news__block {
  margin-top: 50px;
  padding: 0 var(--innerPadding);
}
@media screen and (min-width: 768px) {
  .p-top-news__block {
    margin-top: 0;
    padding: 0;
  }
}

.p-top-news__items {
  margin-top: 20px;
}

.p-top-news__items a{
  color: var(--main);
}

.p-top-news__items li{
  border-bottom: 1px solid var(--border);
}

@media screen and (min-width: 768px) {
  .p-top-news__items {
    margin-top: 30px;
  }
}

.p-top-news__item {
  padding: 30px 0;
  display: block;
}



.p-top-news__item p {
  margin-top: 10px;
  line-height: 2;
}

.p-top-news__ttl {
  text-transform: capitalize;
  font-size: var(--font30);
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: var(--cardo);
}

.p-top-news__time {
  font-size: 12px;
  font-family: var(--cardo);
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.p-top-news__image img {
  display: block;
  width: 100%;
  height: auto;
  /* background-color: var(--picture); */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding-top:20px;
}
@media screen and (min-width: 768px) {
  .p-top-news__image img {
    aspect-ratio: 1;
  }
}

.p-top-news__image-sp{
  margin-top: 20px;
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
.p-top-news__image-sp{
  display: none;
  margin-top: 0px;
}
}

.p-top-news__image-sp img{
  display: block;
  width: 100%;
  aspect-ratio: 750 / 300;
  height: auto;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.p-top-cat__block {
  margin-top: 60px;
}

.p-top-cat__items {
  margin-top: 60px;
}


.p-top-choise__links {
  margin-top: var(--space65);
  display: block;
}
@media screen and (min-width: 768px) {
  .p-top-choise__links {
    --_columns: 3;
    --_width: 300px;
    display: grid;
    grid-template-columns: repeat(var(--_columns), minmax(auto, var(--_width)));
    justify-content: center;
    gap: var(--space90);
  }
}

.p-top-choise__content {
  display: flex;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-choise__content {
    display: contents;
  }
}
.p-top-choise__content .p-top-choise__link:not(:first-child) {
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-top-choise__content .p-top-choise__link:not(:first-child) {
    margin-left: 0;
  }
}

.p-top-choise__link {
  width: min(42.6666666667vw, 200px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--shippori);
}
@media screen and (min-width: 768px) {
  .p-top-choise__link {
    width: 100%;
  }
}

.p-top-choice__image {
  height: 23.6666666667%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-choice__image img {
  display: inline-block;
  height: auto;
}

.p-top-choise__link--dark {
  background-color: #3D1706;
  margin-inline: auto;
}
.p-top-choise__link--dark img {
  width: 28%;
}

.p-top-choise__link--normal {
  background-color: #8C5F49;
}
.p-top-choise__link--normal img {
  width: 28%;
}

.p-top-choise__link--light {
  background-color: #AE8C7B;
}
.p-top-choise__link--light img {
  width: 10.6266666667%;
}

.p-top-choise__para {
  font-size: min(4.2666666667vw, 16px);
  line-height: 1.2;
  margin-top: min(2.6666666667vw, 10px);
}
@media screen and (min-width: 768px) {
  .p-top-choise__para {
    font-size: min(2.2222222222vw, 28px);
  }
}

.p-top-choise__txt {
  margin-top: min(2.6666666667vw, 10px);
  font-size: min(3.2vw, 12px);
  line-height: 1.5;
  letter-spacing: 0.3em;
  padding-bottom: 4px;
  position: relative;
}
.p-top-choise__txt::after {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}

.p-top-begginer__links{
  --_columns: 1;
  --_width: 400px;
  margin-top: var(--space65);
  display: grid;
  grid-template-columns: repeat(var(--_columns), minmax(auto, var(--_width)));
  gap: 20px;
  margin-inline: auto;
  justify-content: center;
}

.p-top-pop_cat__links {
  --_columns: 2;
  --_width: 400px;
  margin-top: var(--space65);
  display: grid;
  grid-template-columns: repeat(var(--_columns), minmax(auto, var(--_width)));
  gap: 20px;
  margin-inline: auto;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-begginer__links
   {
    --_columns: 4;
    --_width: 560px;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-pop_cat__links
   {
    /* aspect-ratio: 2; */
    --_columns: 4;
    /* --_width: 560px; */
    gap: 40px;
  }
}

.p-top-begginer__link {
  display: block;
  aspect-ratio: 560/284;
  position: relative;
}
.p-top-begginer__link img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
/* 人気カテゴリーのテキストオーバーレイ - 下部配置 */
       .p-top-pop_cat__txt {
        z-index: 3;
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.8);
            color: #333;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            padding: 15px 10px;
            transition: background 0.3s ease;
            font-family: var(--shippori);
        }

        @media (max-width: 767px) {
  .p-top-pop_cat__txt {
    font-size: 16px;
}}
        .p-top-pop_cat__link:hover .p-top-pop_cat__txt {
            background: rgba(255, 255, 255, 0.9);
        }
.p-top-pop_cat__link {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%; /* 正方形を作る */
    overflow: hidden;
    /* border-radius: 8px; */
    text-decoration: none;
    transition: transform 0.3s ease;
}

.p-top-pop_cat__link:hover {
    transform: scale(1.05);
}

.p-top-pop_cat__link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p-top-begginer__txt {
  z-index: 2;
  position: relative;
  padding-top: 10.7142857143%;
  padding-left: 12.5%;
  color: #fff;
  font-family: var(--shippori);
  font-weight: 500;
  line-height: 1.5;
}
.p-top-begginer__txt span {
  font-size: var(--font18);
  line-height: 1.5;
}
.p-top-begginer__txt div {
  margin-top: 10px;
  font-size: var(--font30);
}

.p-top-recommed__lists {
  margin-top: var(--space65);
}

.p-top-cat,
.p-top-choise,
.p-top-recommed,
.p-top-begginer,
.p-top-flow,
.p-top-banner,
.p-top-about,
.p-top-news  {
  margin-top: var(--space120);
}

.p-top-choise {
  padding: var(--space120) 0 var(--space100);
  background-color: var(--bg);
}

.p-top-flow {
  padding: var(--space120) 0;
  background-color: rgba(67, 35, 22, 0.6);
}

.p-top-flow__block {
  writing-mode: vertical-rl;
  margin-left: auto;
  color: #fff;
  font-family: var(--shippori);
}

.p-top-flow__h2 {
  font-size: min(5.3333333333vw, 20px);
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-top-flow__h2 {
    font-size: var(--font28);
  }
}
.p-top-flow__h2 span {
  display: inline-block;
  line-height: 1.7;
}
.p-top-flow__h2 span:nth-of-type(2) {
  margin-top: 50px;
}

.p-top-flow__para {
  margin-right: min(8vw, 30px);
  margin-top: min(8vw, 30px);
  font-size: min(3.7333333333vw, 14px);
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-top-flow__para {
    margin-right: 50px;
    margin-top: 50px;
    line-height: 3;
    font-size: 16px;
  }
}


.p-top-flow__button {
  margin-top: auto;
  margin-right: min(6.6666666667vw, 25px);
  --width: 45px;
  --height: 265px;
  --size: min(14 / 375 * 100vw, 14px);
  --color: #fff;
  color: var(--color);
  border: 1px solid var(--color);
  width: var(--width);
  height: var(--height);
  font-size: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-top-flow__button {
    --width: 60px;
    margin-right: 40px;
    --size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-flow__button::after {
  --_bgColor: #fff;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  translate: -101% 0;
  transition: 0.5s ease-in-out;
  background-color: var(--_bgColor);
}

.p-top-flow__button:hover {
  --color: #824121;
  opacity: 1;
}
  
.p-top-flow__button:hover::after {
  translate: 0 0;
}
}

.p-top-banner__block {
  --_width: 400px;
  width: min(100%, var(--_width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  background-color: #C9AB90;
}
@media screen and (min-width: 768px) {
  .p-top-banner__block {
    --_width: 960px;
    grid-template-columns: 58.3333333333% 1fr;
  }
}

.p-top-banner__image img {
  display: block;
  width: 100%;
  aspect-ratio: 560/360;
  height: auto;
}

.p-top-banner__text {
  width: 100%;
  font-family: var(--shippori);
  margin: auto;
  text-align: center;
  padding: 30px 0 35px;
}
.p-top-banner__text p {
  font-size: var(--font18);
  line-height: 2;
  font-weight: 500;
}
.p-top-banner__text img {
  margin-top: 20px;
  display: block;
  width: min(100%, 240px);
  margin-inline: auto;
}

.p-top-banner__button {
  margin-top: 20px;
  margin-inline: auto;
}

.p-top-banner__button.c-button::after {
  --_bgColor: #824121;
}

.p-top-banner__button.c-button:hover {
  --_color: #fff;
}
.p-top-banner__button.c-button:hover::after {
  translate: 0 0;
}


.p-top-about {
  padding: clamp(65px, 10.7142857143vw, 135px) 0 clamp(65px, 5.1587301587vw, 85px);
}

.p-top-about__block {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--innerPadding);
  height: auto;
}
.p-top-about__block div {
  width: min(100%, 580px);
  aspect-ratio: 580/550;
  background-color: rgba(53, 3, 0, 0.8);
  margin-inline: auto;
  font-family: var(--shippori);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-top-about__block h2 {
  font-size: var(--font30);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.p-top-about__block p {
  margin-top: 30px;
  font-size: var(--font18);
  line-height: 2.5;
}

.p-top-about__button {
  --_size: 14px;
  --_color: #fff;
  --_border: #fff;
  margin-top: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-about__button {
    --_size: 20px;
  }
}

.p-page-top__block {
  width: 100%;
  aspect-ratio: 1400/270;
  height: auto;
  min-height: 180px;
  text-align: center;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-page-top__bg {
  z-index: -1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-breadcrumbs {
  margin-top: 30px;
}

.c-page-ttl {
  text-align: center;
}
.c-page-ttl h2 {
  font-size: var(--font30);
  font-family: var(--shippori);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.c-page-ttl p {
  margin-top: 70px;
  line-height: 2;
}

.p-flow {
  margin-top: var(--space90);
}

.p-flow__items {
  margin-top: var(--space120);
}

.c-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6.3492063492vw, 80px);
}
@media screen and (min-width: 768px) {
  .c-card {
    align-items: center;
    grid-template-columns: 38.7931034483% 1fr;
  }
}

.c-card:not(:first-child) {
  margin-top: var(--space80);
}

.c-card.c-card--1col {
  grid-template-columns: 1fr;
}

.c-card__image img {
  background-color: var(--picture);
  display: block;
  width: 100%;
  aspect-ratio: 450/300;
  height: auto;
}

.c-card__txt h3 {
  margin-top: 25px;
  font-size: var(--font26);
  font-family: var(--shippori);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.c-card__txt p {
  margin-top: 25px;
  line-height: 2;
}

.c-card__number {
  padding-bottom: 30px;
  display: block;
  font-size: var(--font30);
  font-family: var(--cardo);
  position: relative;
}
.c-card__number::after {
  content: "";
  background-color: rgba(47, 5, 1, 0.2);
  width: min(100%, 100px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
/* PC・タブレットのみ（768px以上）で2カラム適用 */
@media (min-width: 768px) {
  .p-top-news__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }

  .p-top-news__image {
    flex: 0 0 calc(50% - 8px);
    display: block;
    position: relative;
    overflow: hidden;
  }

  /* 正方形を作るpaddingトリック */
  .p-top-news__image::before {
    content: '';
    display: block;
    padding-bottom: 100%; /* 1:1の比率 */
  }

  .p-top-news__image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .p-top-news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .p-top-news__block {
    flex: 1 1 100%;
    margin-top: 24px;
  }
}