@charset "utf-8";
.instagram {
  padding-bottom: 80px;
  background: #fafafa;
}

.instaCont section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.instaCont article {
  width: 50%;
}

.instaCont section > article:nth-of-type(n + 3) {
  margin: 40px 0 0;
}

.instaCont .imgBx01 {
  position: relative;
  display: block;
  padding: 0 0 100% 0;
  overflow: hidden;
}

.instaCont .imgBx01 img,
.instaCont .imgBx01 video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.instaCont .snsLink:hover .imgBx01 img,
.instaCont .snsLink:hover .imgBx01 video {
  transform: scale(1.2);
}

.instaCont .imgBx01 > span {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  transition: transform 0.5s ease;
}

.instaCont .snsLink:hover .imgBx01 > span {
  transform: scale(1.2);
}

.instaCont .imgBx01 > img + span,
.instaCont .imgBx01 > video + span {
  display: none;
}

.instaCont .webgene-item-main-video {
  display: block;
  width: auto;
  max-width: 100%;
}

.instaCont .webgene-item .dayTxt {
  font-size: 0.85em;
}

.instaCont .webgene-item .snsTit {
  font-size: 1em;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .instaCont article {
    width: 25%;
  }

  .instaCont section > article:nth-of-type(n + 2) {
    margin: 0;
  }
}

@media screen and (min-width: 1200px) {
  .instaCont article {
    width: 25%;
  }

  .instaCont section > article:nth-of-type(n + 3) {
    margin: 0;
  }
}

/* ======================
cta
======================== */
.cta {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-block: 83px;
}

@media screen and (min-width: 768px) {
  .cta {
    padding-block: 104px;
  }
}

.cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  background: var(--color-bg-gra);
}

.cta__inner {
  padding-inline: 40px;
  margin-inline: auto;
  width: 100%;
}

.cta__container {
  pointer-events: none;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.cta__title {
  pointer-events: auto;
  font-family: var(--font-en);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: calc(100 / 1000 * 1em);
  color: var(--color-white);
}

.cta__text {
  pointer-events: auto;
  margin-top: 20px;
  font-family: var(--color-white);
  font-size: 13px;
  letter-spacing: calc(50 / 1000 * 1em);
  color: var(--color-white);
}

.cta__button-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

@media screen and (min-width: 768px) {
  .cta__button-wrapper {
    flex-direction: row;
  }
}

.cta__button {
  pointer-events: auto;
}

.cta__button-entry .button__link p {
  background-image: linear-gradient(
    to right,
    #f2921e 0%,
    #f17410 60%,
    #f16308 100%
  );
  min-width: 257px;
}

.cta__button-entry .button__link:hover p {
  background-image: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-hover);
  color: var(--color-hover);
}

.cta__button-entry .button__link:hover p {
  background-image: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-hover);
  color: var(--color-hover);
}

.cta__button-entry .button__link:hover p::before {
  background-image: url(../images/dot-hover.svg);
}

.cta__button-entry .button__link:hover p::after {
  background-image: url(../images/arrow-right-hover.svg);
}

.cta__button .button__link p{
  min-width: 257px;
}

.cta__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta__swiper-l,
.cta__swiper-r {
  width: auto;
  height: 137px;
  position: relative;
  z-index: 0;
}

.cta__swiper-l .swiper-wrapper,
.cta__swiper-r .swiper-wrapper {
  transition-timing-function: linear !important;
}

.cta__swiper-slide {
  width: auto !important;
  height: 137px;
}

.cta__swiper-slide img {
  height: 100%;
  width: auto;
  object-fit: cover;
  aspect-ratio: 211/137;
}

.cta__swiper-slide-color {
  width: auto !important;
  height: 137px;
}

.cta__swiper-slide-color img {
  height: 100%;
  width: auto;
  object-fit: cover;
  aspect-ratio: 137/137;
}

/* ==================
footer
===================== */
.footer {
  width: 100%;
  padding-block: 80px 22px;
  background: #222222;
}

@media screen and (min-width: 768px) {
  .footer {
    padding-block: 132px 22px;
  }
}

.footer__inner {
  padding-inline: 20px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: clamp(40px, 6.81vw, 93px);
  }
}

@media screen and (min-width: 900px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__head {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .footer__head {
    width: 28.7%;
  }
}

.footer__logo {
  display: block;
  aspect-ratio: 150/32;
  width: 150px;
  height: auto;
  transition: opacity 0.5s ease;
}

.footer__logo:hover {
  opacity: 0.6;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__info {
  margin-top: 57px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.footer__info-text {
  font-family: var(--font-title);
  font-size: 12px;
  color: #9a9a9a;
  letter-spacing: calc(50 / 1000 * 1em);
  line-height: 1.2;
  transition: opacity 0.5s ease;
}

.footer__info-text a:hover {
  opacity: 0.6;
}

.footer__menu {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(25px, 2.93vw, 40px);
  color: var(--color-white);
}

.footer__list {
  width: 100%;
}

.footer__link p {
  width: 100%;
  padding: 32px 0 32px 5px;
  border-bottom: 1px solid #393939;
  font-family: var(--font-title);
  font-size: clamp(12px, 1.03vw, 14px);
  letter-spacing: calc(50 / 1000 * 1em);
  transition: background 0.5s ease;
}

.footer__link:hover p {
  background: #4a4949;
}

.footer__link-button:hover p::before,
.footer__link-button:hover p::after {
  opacity: 0.6;
}

.footer__link:first-child p {
  border-top: 1px solid #393939;
}

.footer__link-button p {
  position: relative;
}

.footer__link-button p::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 19.5%;
  width: 1px;
  height: 37px;
  background: var(--color-white);
  transition: opacity 0.5s ease;
}

.footer__link-button p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  width: 9px;
  height: 8px;
  background: url(../images/Icon-arrow-right.svg) no-repeat center
    center/contain;
  transition: opacity 0.5s ease;
}

.copyright {
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 203px;
  }
}

.copylight__inner {
  padding-inline: 20px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .copylight__inner {
    justify-content: space-between;
    padding-inline: clamp(40px, 6.81vw, 93px);
  }
}

.copyright__text {
  text-align: right;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: calc(50 / 1000 * 1em);
}
