@charset "UTF-8";
/* ------------------------------
	設定
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap");
html {
  font-size: 62.5%;
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値) */
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
}

:root {
  --c-txt: #4D5654;
  --c-line: #DBE3E5;
  --c-type-not: #CED6D5;
  --c-white: #fff;
  --c-bg-category: #DFE6DE;
  --c-bg-other: #f2f2f2;
  --c-bg-footer: #54C2BD;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s ease 0.3s;
}

.fadein.fadein-active {
  opacity: 1 !important;
  visibility: visible;
}

/* スケール */
.img__scale {
  overflow: hidden;
}

.img__scale img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 3s ease-in-out;
}

.img__scale-active img {
  transform: scale(1);
}

/* ------------------------------
	style
------------------------------ */
#contents {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--c-txt);
  background-color: var(--c-white);
  z-index: 0;
}
#contents p {
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 12px;
}
#contents img {
  width: 100%;
  height: auto;
}

h2 {
  font-family: "barlow-condensed", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.35em;
  line-height: 1;
  text-align: center;
  line-height: 1.2;
}

header {
  width: 100%;
  background-image: url(/special/260424_onlinestore_tgf/common/img/header_bk.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.key-visual {
  display: block;
  height: 100vh;
}
@media screen and (min-width: 1025px) {
  .key-visual {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
  }
}

.key-visual-sp {
  background-image: url(/special/260424_onlinestore_tgf/common/img/kv.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.kv-item {
  height: auto;
}
@media screen and (min-width: 1025px) {
  .kv-item {
    flex: 1;
    text-align: center;
    height: 100vh;
  }
}

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

.kv-image-left {
  width: 25.390625vw;
  margin: 2.8125vw 6.09375vw 0 2.34375vw;
}

.kv-image-right {
  width: 27.734375vw;
  margin: 3.046875vw 0 0 6.09375vw;
}

.kv-content h1 {
  width: 81.8666666667vw;
  margin: 0 auto 16vw;
  padding-top: 125.6vw;
}
@media screen and (min-width: 1025px) {
  .kv-content h1 {
    padding-top: 0;
    width: 100%;
    margin: 14.0625vw auto 8.984375vw;
  }
}
.kv-content p {
  width: 80vw;
  margin: 0 auto 21.3333333333vw;
  font-size: 3.4666666667vw;
  text-align: start;
  letter-spacing: 0.08em !important;
}
@media screen and (min-width: 1025px) {
  .kv-content p {
    width: 33.90625vw;
    margin-bottom: 6.25vw;
    text-align: center;
    font-size: min(13px, 1.015625vw);
  }
}

.scroll {
  position: relative;
  padding-bottom: 16vw;
}
@media screen and (min-width: 1025px) {
  .scroll {
    padding-bottom: 0;
  }
}

.scroll-text {
  font-family: "barlow-condensed", sans-serif;
  font-size: 3.2vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--c-txt);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .scroll-text {
    font-size: 12px;
  }
}

.scroll-border {
  position: relative;
  top: 20px;
  width: 1px;
  height: 60px;
  background-color: var(--c-white);
  overflow: hidden;
  margin: auto;
}

.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  background: var(--c-txt);
  -webkit-animation: scrollbar 2s ease-in-out infinite;
          animation: scrollbar 2s ease-in-out infinite;
  margin: auto;
}

@-webkit-keyframes scrollbar {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(350%);
  }
}

@keyframes scrollbar {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(350%);
  }
}
#wrapper main {
  z-index: 1;
}

section {
  position: relative;
}
@media screen and (min-width: 1025px) {
  section {
    height: 120vh;
  }
}
@media screen and (max-width: 1024px) {
  section {
    height: auto !important;
  }
}
section .section-inner {
  position: relative;
  width: 100%;
  will-change: transform;
}
@media screen and (min-width: 1025px) {
  section .section-inner {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
    display: flex !important;
    height: 100vh !important;
    overflow: hidden;
    padding-bottom: 0;
    will-change: transform, top;
  }
}
@media screen and (max-width: 1024px) {
  section .section-inner {
    position: relative !important;
    display: block !important;
    height: auto !important;
    padding-bottom: 0vw;
  }
}
section .sec-left {
  font-family: "barlow-condensed", sans-serif;
  font-size: 5.3333333333vw;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  section .sec-left {
    width: min(400px, 34.375vw);
    padding-top: 9.0625vw;
    flex: 1;
    font-size: 20px;
  }
}
section .sec-left__ttl {
  font-size: 2.6666666667vw;
  text-align: center;
  padding-top: 21.3333333333vw;
  margin-bottom: 10.6666666667vw;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  section .sec-left__ttl {
    font-size: 13px;
    text-align: center;
    padding-top: 0;
    margin-bottom: 100px;
  }
}
section .sec-left .btn__wrapper {
  display: flex;
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}
@media screen and (min-width: 1025px) {
  section .sec-left .btn__wrapper {
    display: block;
  }
}
section .sec-left .btn__wrapper .btn {
  width: 70.9333333333vw;
  height: 24.5333333333vw;
  color: var(--c-white);
  border: 1px solid var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  letter-spacing: 0.25em;
  transition: background-color 0.3s, color 0.3s, all 0.3s ease;
  cursor: pointer;
  z-index: 101;
}
@media screen and (min-width: 1025px) {
  section .sec-left .btn__wrapper .btn {
    width: min(266px, 20.78125vw);
    height: min(92px, 7.1875vw);
    border-radius: min(5px, 0.390625vw);
  }
}
section .sec-left .btn__wrapper .btn:hover, section .sec-left .btn__wrapper .btn.is-active {
  background-color: var(--c-white) !important;
  color: var(--c-txt) !important;
}
section .sec-left .btn__wrapper .btn.is-active {
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  section .sec-left .btn__wrapper .btn:not(:last-child) {
    margin-bottom: 18px;
  }
}
section .sec-right {
  width: 100%;
  background-color: var(--c-white);
  scrollbar-width: none;
}
section .sec-right::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1025px) {
  section .sec-right {
    width: 60.3125vw;
    height: 100vh !important;
    overflow-y: scroll !important;
    padding: 4.6875vw 0 0 0;
    margin-right: min(67px, 5.234375vw);
    border-top: solid 1px var(--c-line);
    display: flex;
    flex-direction: column;
    transition: opacity 0.2s ease;
  }
}
@media screen and (max-width: 1024px) {
  section .sec-right {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    margin-right: 0;
  }
}
section .sec-right__text {
  padding-bottom: 50px;
}
@media screen and (min-width: 1025px) {
  section .sec-right__text {
    border-bottom: solid 1px var(--c-line);
    padding-bottom: 0;
  }
}
section .sec-right__text div {
  font-family: "barlow-condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  section .sec-right__text div {
    font-size: 0.78125vw;
    margin-bottom: 2.34375vw;
  }
}
section .sec-right__text h2 {
  font-family: "barlow-condensed", sans-serif;
  font-size: 7.4666666667vw;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1;
  margin-bottom: 16vw;
  text-align: center;
  text-indent: 0.4em;
}
@media screen and (min-width: 1025px) {
  section .sec-right__text h2 {
    font-size: 2.1875vw;
    margin-bottom: 4.6875vw;
  }
}
section .sec-right__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  width: 80vw;
  margin: 0 auto min(60px, 16vw);
}
@media screen and (min-width: 1025px) {
  section .sec-right__text p {
    width: 46.875vw;
    margin: 0 auto 6.25vw;
    text-align: center !important;
    font-size: 13px;
  }
}
section .sec-right__styling {
  height: auto;
  padding-bottom: 21.3333333333vw;
}
@media screen and (min-width: 1025px) {
  section .sec-right__styling {
    padding-bottom: 80px;
  }
}
section .sec-right__styling .type-men {
  font-family: "barlow-condensed", sans-serif;
  font-size: 4.2666666667vw;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1;
  margin-bottom: 10.6666666667vw;
  padding-top: 16vw;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  section .sec-right__styling .type-men {
    font-size: min(20px, 4.2666666667vw);
    margin-bottom: 3.90625vw;
    padding-top: 3.90625vw;
  }
}
section .sec-right__styling .type-on, section .sec-right__styling .type-off {
  font-weight: 700;
}
section .sec-right__styling .type-off {
  color: var(--c-type-not);
}

#sec_01 .section-inner, #sec_02 .section-inner, #sec_03 .section-inner {
  background-size: 120%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  #sec_01 .section-inner, #sec_02 .section-inner, #sec_03 .section-inner {
    background-position: center center;
    background-attachment: scroll;
    background-size: 130%;
  }
}

#sec_01 .section-inner {
  background-image: url(/special/260424_onlinestore_tgf/common/img/sec_01-sp-bk.webp);
}
@media screen and (min-width: 1025px) {
  #sec_01 .section-inner {
    background-image: url(/special/260424_onlinestore_tgf/common/img/sec-01_bk.webp);
  }
}

#sec_02 .section-inner {
  background-image: url(/special/260424_onlinestore_tgf/common/img/sec_02-sp-bk.webp);
}
@media screen and (min-width: 1025px) {
  #sec_02 .section-inner {
    background-image: url(/special/260424_onlinestore_tgf/common/img/sec-02_bk.webp);
  }
}

#sec_03 .section-inner {
  background-image: url(/special/260424_onlinestore_tgf/common/img/sec_03-sp-bk.webp);
}
@media screen and (min-width: 1025px) {
  #sec_03 .section-inner {
    background-image: url(/special/260424_onlinestore_tgf/common/img/sec-03_bk.webp);
  }
}

.swiper, .swiper2 {
  width: 100%;
  overflow: hidden;
}
.swiper .swiper-wrapper, .swiper2 .swiper-wrapper {
  display: flex;
  margin-left: 0 !important;
  height: auto !important;
}
@media screen and (min-width: 1025px) {
  .swiper .swiper-wrapper, .swiper2 .swiper-wrapper {
    height: 100% !important;
  }
}
.swiper .swiper-slide, .swiper2 .swiper-slide {
  width: 100%;
  height: auto !important;
  display: block;
}
@media screen and (min-width: 1025px) {
  .swiper .swiper-slide, .swiper2 .swiper-slide {
    height: 100% !important;
  }
}
.swiper .swiper-slide__inner, .swiper2 .swiper-slide__inner {
  display: block;
  height: auto !important;
}
@media screen and (min-width: 1025px) {
  .swiper .swiper-slide__inner, .swiper2 .swiper-slide__inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
.swiper .swiper-slide__img, .swiper2 .swiper-slide__img {
  display: block;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (min-width: 1025px) {
  .swiper .swiper-slide__img, .swiper2 .swiper-slide__img {
    width: 31.25vw;
    margin: 0;
  }
}
.swiper .swiper-slide__img img, .swiper2 .swiper-slide__img img {
  width: 100%;
  height: auto;
  display: block;
}

.credit {
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .credit {
    margin: 0;
  }
}
.credit ul {
  margin: 0 auto;
  width: 74.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .credit ul {
    width: min(280px, 21.875vw);
    margin: 0 0 0 1.5625vw;
  }
}
.credit li {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .credit li {
    margin-bottom: min(23px, 1.796875vw);
  }
}
.credit li a {
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.credit li a:hover {
  opacity: 0.6;
}
.credit .name-wrapper {
  font-family: "barlow-condensed", sans-serif;
  font-size: 3.7333333333vw;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  display: flex;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .credit .name-wrapper {
    font-size: min(14px, 1.09375vw);
    margin-bottom: min(10px, 0.78125vw);
  }
}
.credit .name-wrapper__brand {
  padding-right: 2.1333333333vw;
  border-right: solid 1px var(--c-line);
}
@media screen and (min-width: 1025px) {
  .credit .name-wrapper__brand {
    padding-right: min(8px, 0.625vw);
  }
}
.credit .name-wrapper__category {
  padding-left: 2.1333333333vw;
}
@media screen and (min-width: 1025px) {
  .credit .name-wrapper__category {
    padding-left: min(8px, 2.1333333333vw);
  }
}
.credit .price {
  font-family: "barlow-condensed", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .credit .price {
    font-size: min(13px, 1.015625vw);
  }
}
.credit .buy_btn {
  font-family: "barlow-condensed", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.1333333333vw;
  height: 8vw;
  color: var(--c-white);
  background-color: var(--c-txt);
  border-radius: 0.8vw;
}
@media screen and (min-width: 1025px) {
  .credit .buy_btn {
    font-size: min(13px, 1.015625vw);
    width: min(83px, 6.484375vw);
    height: min(30px, 2.34375vw);
    border-radius: min(3px, 0.234375vw);
  }
}

.category {
  background: var(--c-bg-category);
  padding: 16vw 0 21.3333333333vw;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .category {
    padding: 6.25vw 0;
  }
}
.category__ttl {
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .category__ttl {
    margin-bottom: 2.734375vw;
  }
}
.category__ttl h2 {
  margin-bottom: 3.2vw;
  font-size: 7.4666666667vw;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .category__ttl h2 {
    font-size: 2.34375vw;
    margin-bottom: 0.9375vw;
  }
}
.category__ttl p {
  font-size: 3.2vw;
  text-align: center;
  line-height: 1 !important;
}
@media screen and (min-width: 1025px) {
  .category__ttl p {
    font-size: min(12px, 0.9375vw);
  }
}
.category__flex {
  width: 70.9333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .category__flex {
    display: flex;
    flex-wrap: wrap;
    width: 42.96875vw;
  }
}
.category__flex li {
  overflow: hidden;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .category__flex li {
    margin-bottom: 1.40625vw;
  }
}
.category__flex li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70.9333333333vw;
  height: 24.5333333333vw;
  border-radius: 1.3333333333vw;
  background: var(--c-bg-other);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .category__flex li a {
    width: 20.78125vw;
    height: 7.1875vw;
    border-radius: 0.390625vw;
  }
}
.category__flex li a:hover {
  opacity: 0.6;
}
.category__flex li figure {
  width: 26.6666666667vw;
  margin-left: 3.4666666667vw;
}
@media screen and (min-width: 1025px) {
  .category__flex li figure {
    width: 7.8125vw;
    margin-left: 1.015625vw;
  }
}
.category__flex li h3 {
  font-family: "barlow-condensed", sans-serif;
  font-size: 3.4666666667vw;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .category__flex li h3 {
    font-size: 1.015625vw;
  }
}
.category__flex li div {
  width: 1.3333333333vw;
  margin-right: 5.6vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .category__flex li div {
    width: 0.390625vw;
    margin-right: 1.640625vw;
  }
}
.category__flex li:nth-child(odd) {
  margin-right: 0;
}
@media screen and (min-width: 1025px) {
  .category__flex li:nth-child(odd) {
    margin-right: 1.40625vw;
  }
}
.category__flex li:nth-child(1) figure {
  width: 30.6666666667vw;
  padding-top: 1.6vw;
}
@media screen and (min-width: 1025px) {
  .category__flex li:nth-child(1) figure {
    width: 8.984375vw;
    padding-top: 0.46875vw;
  }
}
.category__flex li:nth-child(3) figure {
  width: 21.8666666667vw;
  padding-top: 3.4666666667vw;
  margin-left: 4vw;
}
@media screen and (min-width: 1025px) {
  .category__flex li:nth-child(3) figure {
    width: 6.40625vw;
    padding-top: 1.015625vw;
    margin-left: 1.171875vw;
  }
}
.category__flex li:nth-child(6) figure {
  width: 35.2vw;
}
@media screen and (min-width: 1025px) {
  .category__flex li:nth-child(6) figure {
    width: 10.3125vw;
  }
}

.other {
  padding-top: 16vw;
  background-color: var(--c-bg-other);
}
@media screen and (min-width: 1025px) {
  .other {
    padding-top: 6.25vw;
  }
}
.other .snap {
  min-height: auto;
  height: 100% !important;
  padding-bottom: 21.3333333333vw;
  border-bottom: solid 1px var(--c-txt);
}
@media screen and (min-width: 1025px) {
  .other .snap {
    padding-bottom: 6.25vw;
  }
}
.other .snap .swiper1 {
  position: relative;
  width: 100vw;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .other .snap .swiper1 {
    width: 53.90625vw;
    margin-bottom: 1.953125vw;
  }
}
.other .snap .swiper1 .swiper-slide {
  width: 69.3333333333vw;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .other .snap .swiper1 .swiper-slide {
    width: 20.3125vw;
  }
}
.other .snap .swiper1 .swiper-slide a {
  transition: all 0.3s ease;
}
.other .snap .swiper1 .swiper-slide a:hover {
  opacity: 0.7;
}
.other .snap .swiper1 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.other .snap .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.other .swiper-pagination {
  display: flex;
  position: static !important;
  text-align: center !important;
  gap: 8px;
  width: 158px !important;
  margin: 0 auto !important;
}
@media screen and (min-width: 1025px) {
  .other .swiper-pagination {
    gap: 8px;
    width: 158px !important;
  }
}
.other .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  border: 0;
  background-color: var(--c-bg-other) !important;
  border: 1px solid var(--c-txt);
  border-radius: 0 !important;
  opacity: 1;
  transition: all 0.3s ease;
}
.other .swiper-pagination-bullet-active {
  background-color: var(--c-txt) !important;
  border: 1px solid var(--c-txt);
}
.other .swiper-button-prev,
.other .swiper-button-next {
  color: var(--c-txt);
  font-size: 12px;
  width: auto;
  height: auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (min-width: 1025px) {
  .other .swiper-button-prev,
.other .swiper-button-next {
    width: 0.9375vw;
  }
}
.other .swiper-button-prev::after,
.other .swiper-button-next::after {
  display: none;
}
.other .swiper-button-prev, .other .swiper-button-next {
  font-family: "barlow-condensed", sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  top: 2.6666666667vw;
  left: 0;
  background-color: var(--c-bg-other);
  width: 8vw;
  height: 96vw;
}
@media screen and (min-width: 1025px) {
  .other .swiper-button-prev, .other .swiper-button-next {
    top: 0.78125vw;
    left: 0;
    width: 2.34375vw;
    height: 28.125vw;
    font-size: 0.78125vw;
  }
}
.other .swiper-button-next {
  left: 92vw !important;
}
@media screen and (min-width: 1025px) {
  .other .swiper-button-next {
    left: 51.640625vw !important;
  }
}

.other__ttl {
  width: 100vw;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .other__ttl {
    width: 53.90625vw;
  }
}
.other__ttl__sub {
  font-family: "barlow-condensed", sans-serif;
  font-size: 2.6666666667vw;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-align: center;
  margin-bottom: 6.9333333333vw;
}
@media screen and (min-width: 1025px) {
  .other__ttl__sub {
    font-size: 0.78125vw;
    margin-bottom: 1.5625vw;
  }
}
.other__ttl h2 {
  margin-bottom: 6.1333333333vw;
  font-size: 7.4666666667vw;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .other__ttl h2 {
    margin-bottom: 1.5625vw;
    font-size: 2.34375vw;
  }
}
.other__ttl p {
  position: relative;
  margin-bottom: 10.6666666667vw;
  font-size: 3.2vw;
  text-align: center;
  line-height: 1 !important;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .other__ttl p {
    font-size: min(12px, 0.9375vw);
    margin: 0 auto 3.125vw;
    width: 230px;
  }
}
.other__ttl p:before {
  content: "";
  position: absolute;
  top: 0.8vw;
  left: 17.3333333333vw;
  width: 1px;
  height: 4vw;
  background-color: var(--c-txt);
  transform: rotate(-45deg);
  transform-origin: top left;
}
@media screen and (min-width: 1025px) {
  .other__ttl p:before {
    top: 0;
    left: 0;
    height: 15px;
  }
}
.other__ttl p:after {
  content: "";
  position: absolute;
  top: 0.2666666667vw;
  right: 19.2vw;
  width: 1px;
  height: 4vw;
  background-color: var(--c-txt);
  transform: rotate(45deg);
  transform-origin: top left;
}
@media screen and (min-width: 1025px) {
  .other__ttl p:after {
    top: 0;
    right: 3px;
    height: 15px;
  }
}

.movie {
  min-height: auto;
  height: 100% !important;
  padding: 16vw 0;
}
@media screen and (min-width: 1025px) {
  .movie {
    padding: 6.25vw 0;
  }
}
.movie .other__ttl p {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .movie .other__ttl p {
    width: 200px;
    font-size: min(12px, 0.9375vw);
  }
}
.movie .other__ttl p:before {
  content: "";
  position: absolute;
  top: 0.8vw;
  left: 20vw;
  width: 1px;
  height: 4vw;
  background-color: var(--c-txt);
  transform: rotate(-45deg);
  transform-origin: top left;
}
@media screen and (min-width: 1025px) {
  .movie .other__ttl p:before {
    top: 0;
    left: 0;
    height: 15px;
  }
}
.movie .other__ttl p:after {
  content: "";
  position: absolute;
  top: 0.2666666667vw;
  right: 22.1333333333vw;
  width: 1px;
  height: 4vw;
  background-color: var(--c-txt);
  transform: rotate(45deg);
  transform-origin: top left;
}
@media screen and (min-width: 1025px) {
  .movie .other__ttl p:after {
    top: 0;
    right: 2px;
    height: 15px;
  }
}
.movie__wrapper {
  width: 100%;
  margin: 0;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1025px) {
  .movie__wrapper {
    width: 53.90625vw;
    margin: 0 auto;
  }
}
.movie__wrapper ul {
  width: 29.296875vw;
  display: flex;
  align-items: center;
  margin: 0 0 0 8vw;
}
@media screen and (min-width: 1025px) {
  .movie__wrapper ul {
    width: 53.90625vw;
    margin: 0;
  }
}
.movie__wrapper ul li {
  width: 244px;
  margin: 0 11px 40px 0;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .movie__wrapper ul li {
    width: 19.0625vw;
    margin: 0 0.859375vw 3.125vw 0;
  }
}
.movie__wrapper ul li a {
  display: block;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .movie__wrapper ul li:hover {
    opacity: 0.7;
  }
}
.movie__wrapper ul li:first-child {
  margin-left: 0px;
}
.movie__wrapper .movie__text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.movie__wrapper .movie__text__icon {
  width: 20px;
  margin-right: 14px;
}
@media screen and (min-width: 1025px) {
  .movie__wrapper .movie__text__icon {
    width: 1.5625vw;
    margin-right: 1.09375vw;
  }
}
.movie__wrapper .movie__text p {
  font-family: "barlow-condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  line-height: 1;
  display: flex;
}
@media screen and (min-width: 1025px) {
  .movie__wrapper .movie__text p {
    font-size: 1.015625vw;
  }
}

.c-video {
  position: relative;
  margin-bottom: 2.6666666667vw;
  pointer-events: auto;
  /* ▶︎ 三角 */
}
@media screen and (min-width: 1025px) {
  .c-video {
    margin-bottom: 10px;
  }
}
.c-video .c-video__thumb {
  position: relative;
  width: 247px;
  aspect-ratio: 1080/1920;
  overflow: hidden;
  border-radius: 10px;
  border: solid 1px var(--c-bg-other);
  isolation: isolate; /* 重なり順による描画のバグを防止 */
  cursor: pointer;
  pointer-events: auto !important;
}
@media screen and (min-width: 1025px) {
  .c-video .c-video__thumb {
    width: 19.296875vw;
  }
}
.c-video .c-video__thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-video .c-video__thumb iframe {
  position: absolute;
  top: -1px; /* 1px上にずらして境界線を隠す */
  left: -1px; /* 1px左にずらして境界線を隠す */
  width: calc(100% + 2px); /* 枠線を覆うために少し大きくする */
  height: calc(100% + 2px); /* 枠線を覆うために少し大きくする */
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: auto;
  border: none;
  display: block; /* インライン要素の隙間を防止 */
  vertical-align: bottom;
}
.c-video .c-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 3;
}
@media screen and (min-width: 1025px) {
  .c-video .c-video__play {
    width: 4.6875vw;
    height: 4.6875vw;
  }
}
.c-video .c-video__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

aside {
  padding: 60px 10.1333333333vw;
  background-color: var(--c-bg-footer);
}
aside .aside__inner {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: solid 1px var(--c-bg-other);
}
@media screen and (min-width: 1025px) {
  aside .aside__inner {
    width: 690px;
  }
}
aside .aside__ttl {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: solid 1px var(--c-bg-other);
}
aside .aside__ttl h2 {
  font-family: "barlow-condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 47px;
}
@media screen and (min-width: 1025px) {
  aside .aside__ttl h2 {
    font-size: 28px;
    letter-spacing: 0.21em;
  }
}
aside .aside__ttl p {
  width: 100%;
  margin: 0 auto;
  line-height: 2 !important;
}
@media screen and (min-width: 1025px) {
  aside .aside__ttl p {
    width: 690px;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  aside .aside__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
aside .aside__flex figure {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  aside .aside__flex figure {
    width: 356px;
    margin-bottom: 0;
  }
}
aside .aside__flex__inner {
  margin-right: 0;
}
@media screen and (min-width: 1025px) {
  aside .aside__flex__inner {
    margin-right: 20px;
  }
}
aside .aside__flex__inner h3 {
  font-family: "barlow-condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 35px;
}
aside .aside__flex__inner .date {
  margin-bottom: 30px;
  font-weight: bold;
}
aside .aside__flex__inner .date__ttl {
  font-size: 12px;
}
aside .aside__flex__inner .date p {
  font-size: 13px;
}
aside .aside__flex__inner .location {
  margin-bottom: 40px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  aside .aside__flex__inner .location {
    margin-bottom: 60px;
  }
}
aside .aside__flex__inner .location__ttl {
  font-size: 12px;
}
aside .aside__flex__inner .location p {
  font-size: 13px;
}
aside .follow__instagram {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: underline;
}
aside .follow__instagram div {
  font-family: "barlow-condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
aside .follow__instagram .icon {
  width: 14px;
  margin-left: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
aside .follow__website {
  font-family: "barlow-condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: underline;
}
aside .follow a {
  transition: all 0.3s ease;
}
aside .follow a:hover {
  opacity: 0.6;
}

footer {
  background-color: var(--c-bg-footer);
  padding-bottom: 60px;
}
footer .footer__logo {
  width: min(120px, 32vw);
  margin: 0 auto min(16px, 4.2666666667vw);
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  footer .footer__logo {
    width: min(130px, 10.15625vw);
    margin: 0 auto 1.25vw;
  }
}
@media screen and (min-width: 1025px) {
  footer .footer__logo:hover {
    opacity: 0.5;
  }
}
footer .footer__copyright {
  text-align: center;
  color: var(--c-txt);
  letter-spacing: 0.08em;
  font-size: min(12px, 3.2vw);
}
@media screen and (min-width: 1025px) {
  footer .footer__copyright {
    font-size: min(13px, 1.015625vw);
  }
}

@media screen and (max-width: 1024px) {
  .section-inner {
    display: block !important;
    height: auto !important;
  }
  .sec-right {
    overflow: visible !important;
    height: auto !important;
  }
}
.link__none {
  cursor: default !important;
  pointer-events: none !important;
  opacity: 0.5;
}
.link__none .buy_btn {
  letter-spacing: 0.08em !important;
}
/*# sourceMappingURL=260424_onlinestore_tgf_style.css.map */