/* MV */
#id86036boots section.Mv {
  
}

/* MV */

/*============================
font
font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
font-family: "Noto Serif JP", serif;
font-family: "Noto Sans JP", sans-serif;
font-family: "Jost", sans-serif;
font-family: "Ms Madi", cursive;
============================*


/*============================
#id86036boots mv
============================*/
/* ▼ 動画エリア全体を相対起点に */
#video-area {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ▼ YouTube エリア本体 */
#youtube-area {
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease;
}

#youtube-area.appear {
  opacity: 1;
}

/* ▼ フルブリード（画面幅いっぱい）の動画ラッパー */
#youtube-wrapper {
  position: relative;
  width: 100vw;                     /* 画面幅いっぱい */
  margin-left: calc(50% - 50vw);    /* 親が中央配置でも左右余白を消す */
  aspect-ratio: 16 / 9;             /* PC デフォルト 16:9 */
  overflow: hidden;
}

/* ▼ SP のときは 9 / 11 に変更 */
#mv.mode-sp #youtube-wrapper {
  aspect-ratio: 9 / 11;
}

/* ▼ iframe を中にピッタリはめる */
#youtube {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリック無効化 */
}

#youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none; /* クリック無効化 */
}

/* ▼ クリック防止マスク（保険） */
#youtube-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ▼ ローディング：動画エリアだけ覆って中央テキスト */
#loading {
  position: absolute;
  inset: 0;                          /* video-area 全体を覆う */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  letter-spacing: 0.05em;
  background: #fff;                  /* 動画だけ白で隠す */
  z-index: 5;
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}

/* ローディング終了 */
#loading.disappear {
  opacity: 0;
  visibility: hidden;
}



/*============================
#id86036boots feature
============================*/
#id86036boots .about {
  color: #272727;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  padding: 130.5px 0;
  background: url(../img/mv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
#id86036boots .about__wrap {
  max-width: 1250px;
  padding: 0 25px;
  width: 100%;
  margin: 0 auto;
}
#id86036boots .about__contents {
  max-width: 480px;
  width: 100%;
}
#id86036boots .about__title {

}
#id86036boots .about__title .read {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: .05em;
}
#id86036boots .about__title .text {
  font-size: 48px;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 16px;
  display: block;
}
#id86036boots .about__contents p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .02em;
}
#id86036boots .about__btn {
  margin-top: 40px;
  border: 1px solid #7B4338;
  display: block;
  padding: 16px 16.5px;
  position: relative;
}
#id86036boots .about__btn::after {
  position: absolute;
  width: 13px;
  height: 20px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#id86036boots .about__btn .about__btn-con {
  display: flex;
  gap: 24px;
}
#id86036boots .about__btn-img {
  width: 96px;
  height: auto;
  aspect-ratio: 1/1;
}
#id86036boots .about__btn-img img {
  width: 100%;
  height: auto;
}
#id86036boots .about__btn-text {
  width: calc(100% - 120px);
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .1em;
}
#id86036boots .about__btn-text span {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
}
#id86036boots .about__btn-text strong {
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #7B4338;
  line-height: 1;
}


/*== sp ==*/
@media (max-width: 768px) {

  #id86036boots .about {
    padding: 0;
    background: #F0E6DA;
  }
  #id86036boots .about__wrap {
    padding: 24px 24px 32px;
  }
  #id86036boots .about__contents {

  }
  #id86036boots .about__title {
    text-align: center;
  }
  #id86036boots .about__title .read {
    line-height: 1.4;
  }
  #id86036boots .about__title .text {
    font-size: 36px;
    margin-top: 8px;
  }
  #id86036boots .about__contents p {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  #id86036boots .about__btn {
    margin-top: 24px;
    padding: 0;
  }
  #id86036boots .about__btn::after {
    content: none;
  }
  #id86036boots .about__btn .about__btn-con {
    padding: 16px;
    gap: 16px;
  }
  #id86036boots .about__btn-img {
    width: 90px;
  }
  #id86036boots .about__btn-img img {

  }
  #id86036boots .about__btn-text {
    padding: 3.5px 0;
    width: calc(100% - 106px);
  }
  #id86036boots .about__btn-text span {

  }
  #id86036boots .about__btn-text strong {

  }
  #id86036boots .about__btn-bottom {
    border-top: 1px solid #7B4338;
    padding: 16px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    color: #7B4338;
    font-size: 16px;
    position: relative;
  }
  #id86036boots .about__btn-bottom::after {
    position: absolute;
    width: 9.1px;
    height: 14px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    background-image: url(../img/arrow-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  #id86036boots .about__btn-bottom span {

  }
}


/*============================
#id86036boots balance
============================*/
#id86036boots .balance {
  background-color: #E9D9C7;
  padding: 80px;
  color: #272727;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#id86036boots .balance__wrap {
  max-width: 1250px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
#id86036boots .balance__box {
  padding: 80px 0 56px;
  border: 5px solid #fff;
}
#id86036boots .balance__box .balance__title {

}
#id86036boots .balance__box .balance__title .read {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .05em;
}
#id86036boots .balance__box .balance__title .text {
  font-size: 48px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 16px;
}
#id86036boots .balance__box .balance__title .text span {
  color: #7B4338;
  font-weight: bold;
}
#id86036boots .balance__box .balance__read {
  margin-top: 24px;
  line-height: 1.6;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
}
#id86036boots .balance__img {
  max-width: 1138px;
  margin: 56px auto 0;
  padding: 0 25px;
}
#id86036boots .balance__img-caption {
  padding: 16px 12px 0;
  text-align: right;
  font-size: 14px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}


/*== sp ==*/
@media (max-width: 768px) {
  #id86036boots .balance {
    padding: 32px 0;
  }
  #id86036boots .balance__wrap {
    padding: 0;
  }
  #id86036boots .balance__box {
    border: 0;
    padding: 0;
  }
  #id86036boots .balance__box .balance__title {

  }
  #id86036boots .balance__box .balance__title .read {
    font-size: 18px;
    line-height: 1.4;
  }
  #id86036boots .balance__box .balance__title .text {
    margin-top: 8px;
    font-size: 32px;
  }
  #id86036boots .balance__box .balance__title .text span {

  }
  #id86036boots .balance__box .balance__read {
    margin: 0;
    padding: 8px 24px 0;
    font-size: 16px;
    text-align: left;
  }
  #id86036boots .balance__img {
    margin: 24px auto 0;
    padding: 0 16px;
  }
  #id86036boots .balance__img-caption {
    padding: 16px 8px 0;
    font-size: 10px;
    text-align: center;
  }
  #id86036boots .balance__contents {
    padding: 24px 24px 0;
  }
  #id86036boots .Balance__con {
    border-radius: 8px;
    overflow: hidden;
  }
  #id86036boots .Balance__con:nth-child(n+2) {
    margin-top: 16px;
  }
  #id86036boots .balance__con-head {
    padding: 4px;
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
    color: #fff;
    background: #7B4338;
    margin: 0;
  }
  #id86036boots .balance__con-head span {
    font-size: 20px;
  }
  #id86036boots .balance__con-body {
    padding: 16px;
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
  }
  #id86036boots .balance__con-body p.read {
    font-weight: bold;
    color: #7B4338;
  }
  #id86036boots .balance__con-body p.text {
    margin-top: 4px;
  }
}

/*============================
#id86036boots feature
============================*/
#id86036boots .technic {
  padding: 96px 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#id86036boots .technic__wrap {
  max-width: 1448px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
}

#id86036boots .technic__title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: .05em;
  color: #272727;
}
#id86036boots .technic__title .read {

}
#id86036boots .technic__title .text {
  letter-spacing: 0;
  width: fit-content;
  white-space: nowrap;
  padding: 0 32px;
  display: block;
  font-size: 56px;
  line-height: 1.2;
  background-image: url(../img/before.svg), url(../img/after.svg);
  background-size: contain;
  background-position: left top , right top;
  background-repeat: no-repeat;
  margin: 16px auto 0;
}

#id86036boots .technic__title .text span {
  color: #7B4338;
  font-weight: bold;
}

#id86036boots .technic__list {
  margin-top: 64px;
}
#id86036boots .technic__con {
    display: flex;
}
#id86036boots .technic__con > * {
  width: 50%;
  display: block;
}
#id86036boots .technic__con:nth-child(n+2) {
  margin-top: 120px;
}
#id86036boots .technic__con:nth-child(even) {
  flex-direction: row-reverse;
}
#id86036boots .technic__img {
  
}
#id86036boots .technic__img img {
  width: 100%;
  height: auto;
}
#id86036boots .technic__texts-wrap {
  position: relative;
  height: auto;
}
#id86036boots .technic__texts {
  max-width: 420px;
  width: 100%;
  height: auto;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
}
#id86036boots .technic__con:nth-child(n+1) .technic__texts::after {
  content: 'Style 01';
}
#id86036boots .technic__con:nth-child(n+2) .technic__texts::after {
  content: 'Style 02';
}
#id86036boots .technic__con:nth-child(n+3) .technic__texts::after {
  content: 'Style 03';
}
#id86036boots .technic__texts::after {
  transform: translateY(-100%) translateX(0%) rotate(-10deg);
  position: absolute;
  top: -18px;
  left: -18px;
  font-family: "Ms Madi", cursive;
  color: #7B4338;
  font-weight: 400;
  line-height: 1;
  font-size: 48px;
}
#id86036boots .technic__texts h3 {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: .05em;
  margin: 0;
}
#id86036boots .technic__texts h3 span {
  position: relative;
  display: block;
  width: fit-content;
  
}
#id86036boots .technic__texts h3 span::before {
  position: absolute;
  content: '';
  bottom: 5px;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #D7C7C0;
}
#id86036boots .technic__texts h3 span {
  display: block;
}
#id86036boots .technic__texts p {
  margin-top: 32px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}

/*== sp ==*/
@media (max-width: 768px) {
  #id86036boots .technic {
    padding: 32px 0;
  }
  #id86036boots .technic__wrap {

  }

  #id86036boots .technic__title {
    font-size: 18px;
    line-height: 1.2;
  }
  #id86036boots .technic__title .read {

  }
  #id86036boots .technic__title .text {
    background-image: url(../img/before-sp.svg), url(../img/after-sp.svg);
    font-size: 32px;
    padding: 0;
    width: 100%;
  }
  #id86036boots .technic__list {
    margin-top: 32px;
  }
  #id86036boots .technic__con {
    flex-wrap: wrap;
    gap: 72px;
  }
  #id86036boots .technic__con > * {
    width: 100%;
  }
  #id86036boots .technic__con:nth-child(n+2) {
    margin-top: 32px;
  }
  #id86036boots .technic__img {

  }
  #id86036boots .technic__img img {

  }
  #id86036boots .technic__texts-wrap {

  }
  #id86036boots .technic__texts {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    padding: 0 16px;
  }
  #id86036boots .technic__texts::after {
    transform: translateY(-100%) translateX(0%) rotate(-10deg);
    top: -15px;
    left: 16px;
    font-size: 30px;
  }
  #id86036boots .technic__texts h3 {
    font-size: 26px;
    letter-spacing: .0em;
  }
  #id86036boots .technic__texts h3 span {

  }
  #id86036boots .technic__texts h3 span::before {
    bottom: 2px;
    left: 0;
    height: 2px;
  }
  #id86036boots .technic__texts p {
    margin-top: 16px;
  }
}

@media (max-width: 376px) {
  #id86036boots .technic__title .text{
    font-size: 7svw;
  }
}
/*============================
#id86036boots feature
============================*/
#id86036boots .system {
  padding: 96px 0;
  background-color: #D7C7C0;
  color: #272727;
}
#id86036boots .system__wrap {

}
#id86036boots .system__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
#id86036boots .system__title .read {

}
#id86036boots .system__title .text {
  margin-top: 16px;
  font-size: 56px;
  letter-spacing: .1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#id86036boots .system__title .text span {
  color: #7B4338;
  font-weight: bold;
}
#id86036boots .system__desc {
  margin-top: 24px;
  line-height: 1.6;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#id86036boots .system__list {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}
#id86036boots .system__list .system__con {
  max-width: 420px;
  width: 100%;
}
#id86036boots .system__list .system__con .system__img {
  width: 100%;
  height: auto;
}
#id86036boots .system__list .system__con .system__img img {
  width: 100%;
  height: auto;
  display: block;
}

#id86036boots .system__list .system__con h3.system__point {
  margin-top: 32px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
  font-size: 24px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#id86036boots .system__list .system__con h3.system__point span {
  font-size: 32px;
  color: #7B4338;
  font-weight: bold;
}
#id86036boots .system__list .system__con .system__point-text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin-top: 8px;
  padding: 0 24px;
  font-size: 18px;
  line-height: 1.6;
}

/*== sp ==*/
@media (max-width: 768px) {
  #id86036boots .system {
    padding: 40px 0;
  }
  #id86036boots .system__wrap {

  }
  #id86036boots .system__title {
    font-size: 18px;
  }
  #id86036boots .system__title .text {
    margin-top: 8px;
    font-size: 36px;
  }
  #id86036boots .system__desc {
    margin-top: 16px;
    font-size: 16px;
    text-align: left;
  }
  #id86036boots .system__list {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  #id86036boots .system__list .system__con {
    max-width: 420px;
    width: 100%;
  }
  #id86036boots .system__list .system__con .system__img img {
    margin: 0 auto;
    max-width: 265px;
  }

  #id86036boots .system__list .system__con h3.system__point {
    margin-top: 24px;
    line-height: 1;
    font-size: 20px;
  }
  #id86036boots .system__list .system__con h3.system__point span {
    font-size: 24px;
  }
  #id86036boots .system__list .system__con .system__point-text {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    margin-top: 16px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .05em;
  }
}
@media (max-width: 376px) {
  #id86036boots .system__title .text{
      font-size: 10svw;
  }
}

/*============================
#id86036boots feature
============================*/
#id86036boots .feature {
  padding-top: 96px;
}
#id86036boots .feature__wrap {

}

#id86036boots .feature__wrap .feature__title {
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #272727;
  font-weight: bold;
  display: flex;
  vertical-align: middle;
  gap: 8px;
  line-height: 1;
  justify-content: center;
}
#id86036boots .feature__title .read {
  font-size: 32px; 
  line-height: 72px;
  letter-spacing: -.05em;
}
#id86036boots .feature__title .text {
  font-size: 48px;
  font-weight: bold;
}
#id86036boots .feature__title .text span {
  color: #AC2734;
  font-weight: bold;
}
#id86036boots .feature__title .text span strong {
  font-size: 72px;
  font-weight: bold;
}

#id86036boots .feature__contents {
  margin-top: 64px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
#id86036boots .feature__contents .feature__content {
  display: flex;
  gap: 56px;
}
#id86036boots .feature__contents .feature__content:nth-child(even) {
  flex-direction: row-reverse;
}
#id86036boots .feature__contents .feature__content:nth-child(n+2) {
  margin-top: 80px;
}
#id86036boots .feature__contents .feature__content:nth-child(1) .feature__con-texts{
  background-image: url(../img/icon-feature01.webp);
}
#id86036boots .feature__contents .feature__content:nth-child(2) .feature__con-texts{
  background-image: url(../img/icon-feature02.webp);
}
#id86036boots .feature__contents .feature__content:nth-child(3) .feature__con-texts{
  background-image: url(../img/icon-feature03.webp);
}
#id86036boots .feature__con-img {
  width: 344px;
  height: auto;
}
#id86036boots .feature__con-img img {
  display: block;
  width: 100%;
  height: auto;
}
#id86036boots .feature__con-texts {
  width: calc(100% - 400px);
  background-size: 80px 80px;
  background-repeat: no-repeat;
  background-position: top left;
}
#id86036boots .feature__con-texts h3 {
  font-size: 20px;
  color: #272727;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: .05em;
  padding: 9.5px 0 9.5px 100px ;
  display: block;
  margin: 0;
  text-align: left;
}
#id86036boots .feature__con-texts h3 span {
  font-size: 18px;
}
#id86036boots .feature__con-texts p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #272727;
}

/*== sp ==*/
@media (max-width: 768px) {
  #id86036boots .feature {
    padding-top: 40px;
  }
  #id86036boots .feature__wrap .feature__title {
    display: block;
  }
  #id86036boots .feature__title .read {
    font-size: 20px;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
  }
  #id86036boots .feature__title .text {
    font-size: 32px;
  }
  #id86036boots .feature__title .text span strong {
    font-size: 48px;
  }

  #id86036boots .feature__contents {
    margin-top: 24px;
  }
  #id86036boots .feature__contents .feature__content {
    display: block;
  }
  #id86036boots .feature__contents .feature__content:nth-child(n+2) {
    margin-top: 32px;
  }
  #id86036boots .feature__contents .feature__content:nth-child(1) .feature__con-texts{
    background-image: url(../img/icon-feature01-sp.webp);
  }
  #id86036boots .feature__contents .feature__content:nth-child(2) .feature__con-texts{
    background-image: url(../img/icon-feature02-sp.webp);
  }
  #id86036boots .feature__contents .feature__content:nth-child(3) .feature__con-texts{
    background-image: url(../img/icon-feature03-sp.webp);
  }
  #id86036boots .feature__con-img {
    width: 100%;
  }
  #id86036boots .feature__con-texts {
    width: 100%;
    margin-top: 24px;
    background-size: 56px 56px;
    background-repeat: no-repeat;
    background-position: top left;
  }
  #id86036boots .feature__con-texts h3 {
    padding: 0;
    padding-left: 68px;
    line-height: 1.3;
  }
  #id86036boots .feature__con-texts h3 span {
    font-size: 16px;
    display: block;
    margin-top: 4px;
    line-height: 1.4;
  }
  #id86036boots .feature__con-texts p {
    margin-top: 16px;
  }
}

/*============================
#id86036boots variation
============================*/
#id86036boots .variation {
  margin: 96px auto 128px;
}
#id86036boots .variation__wrap {

}

#id86036boots .variation__title {

}
#id86036boots .variation__title .ja {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0em;
  text-align: center;
  color: #272727;
  font-weight: bold;
}
#id86036boots .variation__title .en {
  margin-top: 16px;
  font-size: 56px;
  line-height: 1.2;
  text-align: center;
  font-family: "Jost", sans-serif;
  color: #7B4338;
  letter-spacing: .05em;
  font-weight: 400;
}
#id86036boots .variation__contents {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
#id86036boots .variation__contents .variation__con {
  max-width: 280px;
  width: 100%;
  display: block;
}
#id86036boots .variation__contents .variation__con img {
  display: block;
}
#id86036boots .variation__contents .variation__con p.color {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 24px;
  color: #272727;
}
#id86036boots .variation__contents .variation__con p.price {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #272727;
}
.variation__con.is-new {
  position: relative;
}
.variation__con.is-new::after {
  position: absolute;
  content: '';
  top: -8.15px;
  left: -8.24px;
  width: 74.12px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/new-color.webp);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
}

#id86036boots .variation__btn {
  max-width: 345px;
  width: 100%;
  margin: 40px auto 0;
  border: 1px solid #7B4338;
  padding: 24px 16px;
  position: relative;
}
#id86036boots .variation__btn::after {
  position: absolute;
  content: '';
  right: 12px;
  width: 9.1px;
  height: 14px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
  top: 50%;
}
#id86036boots .variation__btn span {
  color: #7B4338;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  display: block;
  width: 100%;
}

/*== sp ==*/
@media (max-width: 768px) {
  #id86036boots .variation {
    margin: 40px auto 0;
  }
  #id86036boots .variation__title .ja {
    font-size: 20px;
  }
  #id86036boots .variation__title .en {
    margin-top: 8px;
    font-size: 42px;
    line-height: 1.1;
  }
  #id86036boots .variation__contents {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 23px;
    padding: 0 8px;
  }
  #id86036boots .variation__contents .variation__con {
    max-width: 100%;
  }
  #id86036boots .variation__contents .variation__con p.color {
    margin-top: 8px;
  }
  .variation__con.is-new::after {
    top: -8px;
    left: -8px;
    width: 48px;
  }

  #id86036boots .variation__btn {
    display: block;
    max-width: 345px;
    width: 100%;
    margin: 40px auto 0;
    border: 1px solid #7B4338;
    padding: 24px 16px;
    position: relative;
  }
  #id86036boots .variation__btn::after {
    position: absolute;
    content: '';
    right: 12px;
    width: 9.1px;
    height: 14px;
    background-image: url(../img/arrow-sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateY(-50%);
    top: 50%;
  }
  #id86036boots .variation__btn span {
    color: #7B4338;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    display: block;
    width: 100%;
  } 
}

/*============================
#id86036boots instagram
============================*/
#new-contents section.fitfit-official{
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F7F6F4;
} 

.fitfit-official-item{
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  max-width: 870px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.fitfit-official-item-img{
  max-width: 116px;
  width: 100%;
  height: auto;
  aspect-ratio: 116/116;
}
.fitfit-official-item-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fitfit-official-item-text{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fitfit-official-item-text-title{
  font-size: 24px;
  font-weight: 700;
  color: #222222;
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
}
.fitfit-official-item-text-text{
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
}
#new-contents .fitfit-official-item-text-btn a{ 
  display: block;
  width: 100%;
  height: 100%;
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: underline;
}

/*== sp ==*/
@media (max-width: 768px) {
  #new-contents section.fitfit-official{
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #fff;
  } 
  .fitfit-official-item{
    display: block;
  }
  .fitfit-official-item-img{
    width: 56px;
    height: auto;
    margin: 0 auto;
  }
  .fitfit-official-item-img img{
    
  }
  .fitfit-official-item-text {
    gap: 0;
  }
  .fitfit-official-item-text-title{
    margin: 16px auto 0;
    background-color: #CF0035;
    color: #fff;
    text-align: center;
    max-width: 165px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 100px;
    padding: 14px;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }
  .fitfit-official-item-text-text{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-top: 24px;
    font-weight: 400;
    color: #272727;
  }
}

/*============================
#id86036boots base
===========================*/
#id86036boots .is-link ,
.variation__btn ,
#id86036boots .technic__img ,
#id86036boots .about__btn {
  opacity: 1;
  transition: .3s;
}
#id86036boots .is-link:hover ,
.variation__btn:hover ,
#id86036boots .technic__img:hover ,
#id86036boots .about__btn:hover {
  opacity: .6;
  transition: .3s;
}

.ifPc {
  display: block;
 
}
@media (max-width: 768px) {
  .ifPc {
    display: none;
  }
}

.ifSp {
  display: none;
}
@media (max-width: 768px) {
  .ifSp {
    display: block;
  }
}


.inner{
  max-width: 970px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner{
    padding: 0 24px;
  }
}

.inner-1200{
  max-width: 1250px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner-1200{
    padding: 0 16px;
  }
}
.inner-1440{
  max-width: 1490px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner-1440{
    padding: 0 15px;
  }
}
/* Breadcrumbs スタイル */
.breadcrumbs {
  padding: 15px 0;
  background: #F7F6F4;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.breadcrumbs li {
  font-size: 12px;
  color: #666;
}

.breadcrumbs li a {
  color: #666;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumbs li a:hover {
  opacity: 0.7;
}

.w1024auto {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .breadcrumbs {
    display: none;  /* SPでは非表示（.ifPcクラスが指定されているため） */
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


.sp{
  display: none;
}
@media (max-width: 768px) {
  .sp{
    display: block;
  }
}
.pc-only{
  display: block;
}
@media (max-width: 768px) {
  .pc-only{
    display: none;
  }
}