@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #404040;
  background: #E7E7E7;
}

.l-wrapper {
  position: relative;
}

.l-inner {
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width:768px) {
  .l-inner {
    padding-inline: clamp(60px, 7.906295754vw, 108px);
  }
}
@media screen and (min-width:1367px) {
  .l-inner {
    padding-inline: calc((100vw - 1150px) / 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__title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media screen and (min-width:768px) {
  .c-section__title {
    grid-template-columns: repeat(2, auto);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.c-section__title-en {
  font-size: clamp(40px, 5.6640625vw, 58px);
  line-height: 0.7931034483;
  font-weight: 600;
}

.c-section__title-ja {
  font-size: clamp(15px, 1.5625vw, 16px);
  line-height: 2;
  font-weight: 700;
}

.c-head {
  padding-bottom: clamp(100px, 10.6149341142vw, 180px);
  position: relative;
}
.c-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 1;
}
.c-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 74.0849194729vw;
  height: 29px;
  background: url(../images/air-bottom.png) no-repeat bottom left/contain;
  z-index: 2;
}
.c-head.p-head__fixed::after {
  background: url(../images/fixed-top.png) no-repeat bottom left/contain;
}
.c-head__title {
  padding-top: clamp(80px, 10.15625vw, 104px);
  padding-left: clamp(20px, 6.9010416667vw, 53px);
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

.c-head__title-en {
  font-size: clamp(56px, 8.59375vw, 88px);
  line-height: 0.7386363636;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
}

.c-head__title-ja {
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(14px, 2.0833333333vw, 16px);
  line-height: 2;
  font-weight: 700;
}

.c-head__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.c-btn {
  padding-block: 16px 12px;
  padding-left: 23px;
  padding-right: 148px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  background: #F2B546;
  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: 10px;
  width: 22px;
  aspect-ratio: 1/1;
  background: url(../images/icon-arrow-btn.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .c-btn:hover {
    color: #ffffff;
    opacity: 1;
  }
  .c-btn:hover::before {
    left: 150%;
  }
}




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


.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 32px;
  right: 20px;
  width: 60px;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width:1024px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon.js-show {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: transparent;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__icon-bar {
  width: 30px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #303030;
  overflow-y: scroll;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
@media screen and (min-width:414px) {
  .drawer {
    width: 400px;
  }
}

.drawer.js-show {
  translate: 0;
}

.drawer__menu-list {
  margin-top: 100px;
  padding-inline: 50px;
  margin-bottom: 50px;
  color: #ffffff;
}
.drawer__menu-list .text {
  display: block;
  font-size: 16px;
  font-weight: 500;
  opacity: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
}
.drawer__menu-list .p-header__btn {
  margin-top: 24px;
  margin-left: 0;
  max-width: 200px;
  margin-inline: auto;
  text-align: center;
}
.drawer__menu-list .p-header__btn .text {
  margin-top: 0;
}



.c-breadcrumb__wrap {
  padding-top: 103px;
  margin-right: 24px;
  margin-left: auto;
  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: #ffffff;
  font-size: 12px;
  line-height: 1.4285714286;
  letter-spacing: 0.03em;
  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: 12px;
  width: 7px;
  height: 6px;
  background: url(../images/breadcrumb-arrow.svg) no-repeat center center/cover;
}


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

.p-about__swiper-wrapper {
  flex-wrap: wrap;
}


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