@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3c3c3c;
}

.l-wrapper {
  position: relative;
}

.l-inner {
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width:768px) {
  .l-inner {
    padding-inline: clamp(60px, 8.0527086384vw, 110px);
  }
}
@media screen and (min-width:1367px) {
  .l-inner {
    padding-inline: calc((100vw - 1146px) / 2);
  }
}
.c-link {
  display: block;
  color: inherit;
}

@media (any-hover: hover) {
  .c-link:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}

.c-section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 48px;
}
@media screen and (min-width:768px) {
  .c-section__head {
    grid-template-columns: auto auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-section__text {
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.03em;
  font-weight: 500;
  max-width: 514px;
}

.c-section__title-en {
  font-family: "Montserrat", sans-serif;
  color: #31ABED;
  font-size: clamp(48px, 5vw, 60px);
  line-height: 0.8333333333;
  font-weight: 600;
}

.c-section__title-ja {
  margin-top: clamp(14px, 1.4166666667vw, 17px);
  color: #313841;
  font-size: clamp(14px, 1.46484375vw, 15px);
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.c-btn {
  padding-block: 15px;
  padding-inline: clamp(80px, 13.5416666667vw, 104px);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  background: #31ABED;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%; /* 初期位置：左の外側に隠しておく */
  width: 100%;
  height: 100%;
  /* 半透明の白いグラデーションで光を作る */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg); /* 光の帯を斜めに傾ける */
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease; /* 光が通り過ぎる速度 */
  z-index: 1;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 12px;
  width: clamp(20px, 3.3854166667vw, 26px);
  aspect-ratio: 1/1;
  background: url(../images/icon-right-box.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .c-btn:hover {
    color: #ffffff;
    opacity: 1;
  }
  .c-btn:hover::before {
    left: 150%;
  }
}

.c-btn__white {
  padding-block: 15px;
  padding-inline: 18px 100px;
    height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #151515;
  font-size: 14px;
  font-weight: 500;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
    width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.c-btn__white::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 11px;
  width: 26px;
  aspect-ratio: 1/1;
  background: url(../images/icon-right-blue.svg) no-repeat center center/contain;
}
@media (any-hover: hover) {
  .c-btn__white:hover {
    opacity: 1;
    color: #ffffff;
    background: #0056CF;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}



.c-under {
  display: inline-block;
  position: relative;
}
.c-under::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #0056CF;
  scale: 0;
  -webkit-transition: scale 0.5s ease;
  transition: scale 0.5s ease;
}
@media (any-hover: hover) {
  .c-under:hover::after {
    scale: 1;
  }
}

.c-head {
  padding-bottom: clamp(32px, 5.37109375vw, 55px);
  position: relative;
}
.c-head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/page-head-filter.png) no-repeat top center/cover;
  pointer-events: none;
}

.c-head__wrap {
  padding-top: clamp(48px, 7.03125vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-inline: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width:1024px) {
  .c-head__wrap {
    grid-template-columns: repeat(2, auto);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
@media screen and (min-width:768px) {
  .c-head__wrap {
    padding-left: clamp(40px, 8.1991215227vw, 112px);
    padding-right: clamp(40px, 6.25vw, 75px);
  }
}
@media screen and (min-width:1367px) {
  .c-head__wrap {
    padding-left: calc(112px + (100vw - 1366px) / 2);
    padding-right: calc(75px + (100vw - 1366px) / 2);
  }
}


.c-head__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-head__title-ja {
  padding-left: 25px;
  color: #313841;
  font-size: clamp(14px, 1.953125vw, 15px);
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  font-weight: 600;
  position: relative;
}
.c-head__title-ja::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 11px;
  aspect-ratio: 1/1;
  background: #0056CF;
  border-radius: 50%;
}

.c-head__title-en {
  margin-top: clamp(16px, 1.953125vw, 20px);
  font-family: "Bebas Neue", serif;
  color: #31ABED;
  font-size: clamp(56px, 6.588579795vw, 90px);
  line-height: 1.1111111111;
  font-weight: 700;
}

.c-head__img {
  width: clamp(240px, 59.375vw, 456px);
  max-width: calc(100% - 60px);
  aspect-ratio: 456/261;
  border-radius: 10px;
  margin-left: auto;
}
@media screen and (min-width:768px) {
  .c-head__img {
    margin-left: 0;
  }
}
.c-head__img img {
  border-radius: 10px;
}

.c-page__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-page__title-en {
  font-family: "Montserrat", sans-serif;
  color: #31ABED;
  font-size: clamp(38px, 4.8828125vw, 50px);
  line-height: 1;
  font-weight: 600;
}

.c-page__title-ja {
  margin-top: 15px;
  font-size: clamp(14px, 1.953125vw, 15px);
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.c-page__desc {
  margin-top: clamp(32px, 5.2083333333vw, 40px);
  max-width: 400px;
  font-size: clamp(13px, 1.8229166667vw, 14px);
  line-height: 2.1428571429;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (min-width:1024px) {
  .c-page__desc {
    max-width: 277px;
  }
}



.c-breadcrumb__wrap {
    padding-top: 97px;
  margin-left: auto;
    margin-right: 29px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 4;
}

.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  color: #747474;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.84px;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb a {
  color: inherit;
  padding: 0;
}
@media (any-hover: hover) {
  .c-breadcrumb a:hover {
    color: inherit;
    text-decoration: underline;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.c-arrow {
  margin-left: 12px;
  margin-right: 12.3px;
  width: 5.7px;
  height: 8.46px;
  background: url(../images/breadcrumb-arrow.svg) no-repeat center center/cover;
}


.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width:100%;
}

.animated__fadeIn {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1s ease, visibility 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, visibility 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease, -webkit-transform 1s ease;
}
.animated__fadeIn.is-ready {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.animated__fadeIn.js-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}



.sp-hidden br {
  display: none;
}
@media screen and (min-width:768px) {
  .sp-hidden br {
    display: block;
  }
}

.sp-hidden--first br:first-of-type {
  display: none;
}
@media screen and (min-width:768px) {
  .sp-hidden--first br:first-of-type {
    display: block;
  }
}

.sp-hidden-xl br {
  display: none;
}
@media screen and (min-width:1024px) {
  .sp-hidden-xl br {
    display: block;
  }
}

@media screen and (min-width:768px) {
  .pc-hidden br {
    display: none;
  }
}

@media screen and (min-width:1024px) {
  .xl-hidden br {
    display: none;
  }
}

@media screen and (min-width:1200px) {
  .xxl-hidden br {
    display: none;
  }
}

.instaCont {
  padding-top: clamp(80px, 7.5vw, 90px);
  padding-bottom: clamp(80px, 11.8333333333vw, 142px);
}
.instaCont a {
  color: #838284;
}
.instaCont .p-insta__items {
  margin-top: clamp(40px, 4.1666666667vw, 50px);
}

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

.instaCont article {
	width: 50%;
  max-width: calc(50vw - 30px);
}

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

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

.instaCont .imgBx01:hover {
	opacity: 0.7;
}

.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;
  aspect-ratio:1/1;
  border-radius: 10px;
}

.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;
}

.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;
  margin-inline: 10px;
}

@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%;
      max-width:266px;
	}
	.instaCont section>article:nth-of-type(n + 3) {
		margin: 0;
	}
}