#content,
.l-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.widelayout {
  padding: 80px 0;
}
@media screen and (min-width: 1024px) {
  .widelayout {
    padding: 120px 0;
  }
}

.brandContainer {
  padding: 0 6vw;
}
@media screen and (min-width: 1024px) {
  .brandContainer {
    max-width: calc(1200px + 12vw);
    padding: 0 6vw;
    margin: 0 auto;
  }
}

.contentsContainer {
  padding: 0 6vw;
}
@media screen and (min-width: 1024px) {
  .contentsContainer {
    max-width: calc(960px + 12vw);
    padding: 0 6vw;
    margin: 0 auto;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
  .d-sm-none {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
}
.d-lg-none.irregular {
  display: block !important;
}
@media screen and (min-width: 1350px) {
  .d-lg-none.irregular {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}

.d-none.d-sm-block {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .d-none.d-sm-block {
    display: flex !important;
  }
}

.d-none.d-lg-block {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .d-none.d-lg-block {
    display: flex !important;
  }
}

img {
  max-width: 100%;
}

p {
  letter-spacing: 0.05em;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #efeff1;
}

@media screen and (min-width: 768px) {
  .c-gnav {
    align-items: center;
    gap: 24px;
  }
}
.c-gnav .menu-item {
  height: 38px !important;
}
@media screen and (min-width: 768px) {
  .c-gnav .menu-item a {
    padding: 0 !important;
    height: 38px !important;
    transition: all 0.2s ease-in-out;
  }
}

.l-header__menuBtn {
  margin-right: 8px;
}

.p-spMenu__inner::before {
  background: #222429 !important;
}
.p-spMenu__inner .c-iconBtn {
  color: #fff !important;
}
.p-spMenu__inner a {
  color: #fff !important;
}
.p-spMenu__inner .contactbtn {
  margin: 40px auto 0 !important;
}

.zoomupAnimation[data-trigger] {
  transform: scale(0.8);
  opacity: 0;
  transform-origin: center center;
  transition: all 0.4s ease-in-out;
}
.zoomupAnimation[data-trigger].InView {
  opacity: 1;
  transform: scale(1);
}

.leftAnimation[data-trigger] {
  transform: translateX(10px);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}
.leftAnimation[data-trigger].InView {
  transform: translateX(0);
  opacity: 1;
}

.rightAnimation[data-trigger] {
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}
.rightAnimation[data-trigger].InView {
  transform: translateX(0);
  opacity: 1;
}

.topAnimation[data-trigger] {
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.8s ease-in-out 0.3s;
}
.topAnimation[data-trigger].InView {
  transform: translateY(0);
  opacity: 1;
}

.bottomGrowAnimation[data-trigger] {
  overflow: hidden;
}
.bottomGrowAnimation[data-trigger] h2,
.bottomGrowAnimation[data-trigger] p {
  display: block;
  overflow: hidden;
}
.bottomGrowAnimation[data-trigger] h2 span,
.bottomGrowAnimation[data-trigger] p span {
  display: inline-block;
  transform: translateY(200%);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.bottomGrowAnimation[data-trigger].InView span {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #000;
  text-align: center;
}

#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading .kvArea {
  width: 100%;
}

#loading .kvArea .img_box {
  text-align: center;
}

#loading .kvArea .img_box img {
  max-width: 30%;
  height: auto;
}

@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#hero {
  position: relative;
}
#hero .bg {
  width: 100%;
  aspect-ratio: 393/700;
  background: url("../img/hero-sm.jpg");
  background-size: 100% auto;
  background-position: bottom center;
}
@media screen and (min-width: 960px) {
  #hero .bg {
    aspect-ratio: 1440/840;
    background: url("../img/hero.jpg");
    background-size: 100% auto;
    background-position: bottom center;
  }
}
#hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#hero .hero-cont {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 0 90px;
  height: 100%;
}
@media screen and (min-width: 960px) {
  #hero .hero-cont {
    top: calc(50% + 64px);
    gap: 24px;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-50%);
    padding: 0;
  }
}
@media screen and (min-width: 1350px) {
  #hero .hero-cont {
    top: 50%;
    gap: 40px;
  }
}
#hero .hero-cont .hero-text {
  padding: 0 6vw;
}
#hero .hero-cont .hero-text .sub {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  #hero .hero-cont .hero-text .sub {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #hero .hero-cont .hero-text .sub {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  #hero .hero-cont .title {
    padding: 0 6vw;
  }
}
#hero .hero-cont .title img {
  width: 100%;
}

#present {
  position: relative;
  margin-top: -1px;
  padding: 30px 0 80px;
}
@media screen and (min-width: 1024px) {
  #present {
    padding: 60px 0 160px;
  }
}
#present .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../img/present-bg-sm.jpg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  #present .bg {
    background-image: url("../img/present-bg.jpg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
  }
}
#present .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#present .contentsContainer .midashi-group .sub {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .sub {
    margin-bottom: 48px;
  }
}
#present .contentsContainer .midashi-group .sub .sub-text {
  font-size: 15px;
  font-weight: bold;
  line-height: 150%;
  color: #fff;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .sub .sub-text {
    font-size: 20px;
  }
}
#present .contentsContainer .midashi-group .sub .sub-text span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .sub .sub-text span {
    font-size: 24px;
  }
}
#present .contentsContainer .midashi-group .sub .icon {
  position: absolute;
  top: -28px;
  right: 0;
}
@media screen and (min-width: 600px) {
  #present .contentsContainer .midashi-group .sub .icon {
    right: 16vw;
  }
}
@media screen and (min-width: 768px) {
  #present .contentsContainer .midashi-group .sub .icon {
    right: 22vw;
  }
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .sub .icon {
    top: -56px;
    right: 16vw;
  }
}
#present .contentsContainer .midashi-group .sub .icon img {
  width: 96px;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .sub .icon img {
    width: 140px;
  }
}
#present .contentsContainer .midashi-group .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .title {
    width: 80%;
    margin: 0 auto 80px;
  }
}
#present .contentsContainer .midashi-group .title .title-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#present .contentsContainer .midashi-group .title .title-inner .belt {
  display: inline-flex;
  padding: 8px 16px;
  background: #fff;
}
#present .contentsContainer .midashi-group .title .title-inner .belt .belt-text {
  text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  background: linear-gradient(90deg, #5e88bf 0%, #ee705a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .title .title-inner .belt .belt-text {
    font-size: 24px;
  }
}
#present .contentsContainer .midashi-group .title .title-inner .present-midashi {
  color: #fff;
  text-shadow: 4px 4px 8px rgba(255, 255, 255, 0.15);
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 16px;
  margin-top: -24px;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .title .title-inner .present-midashi {
    font-size: 48px;
    text-align: left;
    margin-top: -40px;
  }
}
#present .contentsContainer .midashi-group .title .title-inner .present-midashi span {
  background: linear-gradient(180deg, #be8104 3.32%, #ffe684 50.45%, #cd921a 96.68%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 80px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -8%;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .title .title-inner .present-midashi span {
    font-size: 128px;
  }
}
#present .contentsContainer .midashi-group .title .underline {
  width: 100%;
  border-bottom: 1px solid #fff;
  margin-bottom: 16px;
}
#present .contentsContainer .midashi-group .title .midashi-sub {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .midashi-group .title .midashi-sub {
    font-size: 36px;
    text-align: center;
  }
}
#present .contentsContainer .present-title {
  width: 80%;
  margin: 0 auto 40px;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .present-title {
    width: 40%;
  }
}
#present .contentsContainer .present-title .text {
  margin-bottom: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
#present .contentsContainer .present-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #present .contentsContainer .present-group {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 64px;
  }
}
#present .contentsContainer .present-group .present-single {
  position: relative;
  background-color: rgba(255, 255, 255, 0.08);
  border: solid 1px rgba(255, 255, 255, 0.4);
  padding: 4px;
}
@media screen and (min-width: 768px) {
  #present .contentsContainer .present-group .present-single {
    flex-basis: calc(50% - 12px);
  }
}
#present .contentsContainer .present-group .present-single .ribbon {
  position: absolute;
  top: 0;
  left: 16px;
}
@media screen and (min-width: 768px) {
  #present .contentsContainer .present-group .present-single .ribbon {
    left: 24px;
  }
}
#present .contentsContainer .present-group .present-single .ribbon img {
  width: 36px;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .present-group .present-single .ribbon img {
    width: 72px;
  }
}
#present .contentsContainer .present-group .present-single .ribbon .ribbon-text {
  position: absolute;
  top: calc(50% - 8px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  font-weight: bold;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .present-group .present-single .ribbon .ribbon-text {
    font-size: 40px;
  }
}
#present .contentsContainer .present-group .present-single .border-box {
  border: solid 1px #fff;
  padding: 24px 24px 24px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .present-group .present-single .border-box {
    padding: 24px 24px 24px 30%;
  }
}
#present .contentsContainer .present-group .present-single .border-box .text {
  width: 100%;
}
#present .contentsContainer .present-group .present-single .border-box .text .title01 {
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  font-weight: bold;
  margin: 0;
}
#present .contentsContainer .present-group .present-single .border-box .text .title02 {
  color: #ffd966;
  font-size: 24px;
  line-height: 150%;
  font-weight: bold;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}
#present .contentsContainer .present-group .present-single .border-box .text .des {
  font-size: 15px;
  line-height: 150%;
  color: #fff;
  font-weight: 500;
  margin-bottom: 16px;
  height: 100%;
}
#present .contentsContainer .present-group .present-single .border-box .img {
  width: 100%;
}
#present .contentsContainer .btn-group .btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
#present .contentsContainer .btn-group .btn-text .comment {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 100%;
  margin: 0;
  position: relative;
  padding: 0 40px;
}
#present .contentsContainer .btn-group .btn-text .comment::before, #present .contentsContainer .btn-group .btn-text .comment::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 0;
  border-top: 2px dashed #ffd966;
}
#present .contentsContainer .btn-group .btn-text .comment::before {
  transform: rotate(53deg);
  left: 0;
}
#present .contentsContainer .btn-group .btn-text .comment::after {
  transform: rotate(127deg);
  right: 0;
}
#present .contentsContainer .btn-group .present-btn {
  position: relative;
}
#present .contentsContainer .btn-group .present-btn a {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 20px;
  border-radius: 50px;
  background: linear-gradient(91deg, #4679a6 -7.92%, #f2afa0 103.03%, #f2bc8d 117.5%);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25);
  border: none;
  width: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .btn-group .present-btn a {
    width: 480px;
    padding: 24px;
    font-size: 24px;
  }
}
#present .contentsContainer .btn-group .present-btn a svg {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  #present .contentsContainer .btn-group .present-btn a svg {
    right: 24px;
  }
}
#present .contentsContainer .btn-group .present-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(271deg, #f2bc8d -7.92%, #f2afa0 103.03%, #4679a6 117.5%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: -1;
}
#present .contentsContainer .btn-group .present-btn a:hover::before {
  opacity: 1;
}

.wave02 {
  position: relative;
  width: 100%;
  aspect-ratio: 393/98;
}
@media screen and (min-width: 768px) {
  .wave02 {
    aspect-ratio: 1440/172;
  }
}
.wave02 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .problem-wrapper {
    background: url("../img/problem-bg.jpg") no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    padding: 125vh 0;
  }
}
.problem-wrapper .bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background: url("../img/problem-bg-sm.jpg") no-repeat center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .problem-wrapper .bg {
    display: none;
  }
}
.problem-wrapper #problem-container {
  padding: 100vh 0;
}
@media screen and (min-width: 768px) {
  .problem-wrapper #problem-container {
    padding: 0;
  }
}
.problem-wrapper #problem-container .problem {
  width: 100%;
  height: 1px;
  margin-bottom: 100vh;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .problem-wrapper #problem-container .problem {
    margin-bottom: 125vh;
  }
}
.problem-wrapper #problem-container .problem .problem-contents {
  pointer-events: none;
  width: 100%;
  position: fixed;
  inset: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.problem-wrapper #problem-container .problem .problem-contents .text-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  color: #fff;
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .problem-wrapper #problem-container .problem .problem-contents .text-area {
    gap: 72px;
    margin-top: 64px;
  }
}
.problem-wrapper #problem-container .problem .problem-contents .text-area .problem-midashi {
  font-size: 32px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .problem-wrapper #problem-container .problem .problem-contents .text-area .problem-midashi {
    font-size: 64px;
  }
}
.problem-wrapper #problem-container .problem .problem-contents .text-area .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 150%;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .problem-wrapper #problem-container .problem .problem-contents .text-area .title {
    font-size: 40px;
  }
}
.problem-wrapper #problem-container .problem .problem-contents .text-area .list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.problem-wrapper #problem-container .problem .problem-contents .text-area .list .list-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .problem-wrapper #problem-container .problem .problem-contents .text-area .list .list-item {
    gap: 24px;
  }
}
.problem-wrapper #problem-container .problem .problem-contents .text-area .list .list-item img {
  padding: 2px 0;
  width: 18px;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .problem-wrapper #problem-container .problem .problem-contents .text-area .list .list-item img {
    width: 32px;
  }
}
.problem-wrapper #problem-container .problem .problem-contents .text-area .list .list-item p {
  font-size: 15px;
  font-weight: bold;
  line-height: 150%;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .problem-wrapper #problem-container .problem .problem-contents .text-area .list .list-item p {
    font-size: 24px;
  }
}
.problem-wrapper #problem-container .problem.active {
  opacity: 1;
  transition: all 1.5s;
}

#resolution {
  position: relative;
}
#resolution .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../img/resolution-bg-sm.jpg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
}
@media screen and (min-width: 1350px) {
  #resolution .bg {
    background-image: url("../img/resolution-bg.jpg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
  }
}
#resolution .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#resolution .brandContainer .resolution-midashi .ja {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-midashi .ja {
    margin-bottom: 64px;
  }
}
#resolution .brandContainer .resolution-midashi .ja span {
  font-size: 36px;
  font-weight: bold;
  line-height: 150%;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-midashi .ja span {
    font-size: 64px;
  }
}
#resolution .brandContainer .resolution-midashi .ja span .line {
  position: relative;
  display: inline-block;
}
#resolution .brandContainer .resolution-midashi .ja span .line img {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 110px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-midashi .ja span .line img {
    min-width: 180px;
  }
}
#resolution .img {
  position: relative;
  width: 100%;
}
#resolution .img img {
  width: 100%;
}
#resolution .img .sub-text {
  position: absolute;
  bottom: 48px;
  left: 6vw;
  font-weight: bold;
  font-size: 15px;
  line-height: 160%;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
}
@media screen and (min-width: 1024px) {
  #resolution .img .sub-text {
    bottom: 50%;
    transform: translateY(50%);
    left: 40px;
    font-size: 18px;
    line-height: 200%;
  }
}
#resolution .brandContainer .resolution-group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  margin-top: -24px;
}
@media screen and (min-width: 768px) {
  #resolution .brandContainer .resolution-group {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-group {
    gap: 64px 80px;
    margin-top: -80px;
  }
}
#resolution .brandContainer .resolution-group .resolution-single {
  width: 100%;
  background: rgba(238, 112, 90, 0.24);
  border-radius: 240px 240px 0 0;
  padding: 40px 24px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #resolution .brandContainer .resolution-group .resolution-single {
    flex-basis: calc(50% - 20px);
  }
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-group .resolution-single {
    flex-basis: calc(50% - 40px);
    border-radius: 320px 320px 0 0;
  }
}
@media screen and (min-width: 1350px) {
  #resolution .brandContainer .resolution-group .resolution-single {
    padding: 80px;
  }
}
#resolution .brandContainer .resolution-group .resolution-single .header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-group .resolution-single .header {
    gap: 8px;
  }
}
#resolution .brandContainer .resolution-group .resolution-single .header img {
  width: 24px;
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-group .resolution-single .header img {
    width: 32px;
  }
}
#resolution .brandContainer .resolution-group .resolution-single .header .number {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-group .resolution-single .header .number {
    font-size: 20px;
  }
}
#resolution .brandContainer .resolution-group .resolution-single .title {
  display: block;
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 40px;
  border-bottom: solid 1px #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 130%;
}
@media screen and (min-width: 1350px) {
  #resolution .brandContainer .resolution-group .resolution-single .title {
    font-size: 32px;
  }
}
#resolution .brandContainer .resolution-group .resolution-single .list {
  padding: 0;
  margin: 0;
  list-style: none;
}
#resolution .brandContainer .resolution-group .resolution-single .list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-group .resolution-single .list li {
    font-size: 20px;
  }
}
#resolution .brandContainer .resolution-group .resolution-single .list li:last-child {
  margin: 0;
}
#resolution .brandContainer .resolution-group .resolution-single .list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: solid 1px #fff;
  position: absolute;
  left: 0;
  background-color: #f2bc8d;
  margin: 4px 0;
}
@media screen and (min-width: 1024px) {
  #resolution .brandContainer .resolution-group .resolution-single .list li::before {
    margin: 8px 0;
  }
}

#movie {
  position: relative;
  padding: 80px 0;
}
#movie .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#movie .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#movie .movie-digest {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  #movie .movie-digest {
    flex-direction: row;
    justify-content: space-between;
  }
}
#movie .movie-digest .left {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #movie .movie-digest .left {
    text-align: start;
  }
}
#movie .movie-digest .left .movie-midashi {
  margin-bottom: 16px;
}
#movie .movie-digest .left .movie-midashi span {
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 40px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  #movie .movie-digest .left .movie-midashi span {
    font-size: 64px;
  }
}
#movie .movie-digest .left .sub span {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  #movie .movie-digest .left .sub span {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  #movie .movie-digest .right {
    flex-basis: 60%;
  }
}
#movie .movie-digest .right iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/9;
}

.story-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .story-wrapper {
    transition: background-image 0.8s ease-in-out, background-color 0.8s ease-in-out;
    padding: 125vh 0;
  }
}
.story-wrapper .bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  transition: background-image 0.8s ease-in-out;
}
@media screen and (min-width: 768px) {
  .story-wrapper .bg {
    display: none;
  }
}
.story-wrapper #position-bar {
  position: fixed;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  opacity: 0;
  border-radius: 50%;
  transition: opacity 1.5s;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #position-bar {
    right: 32px;
  }
}
.story-wrapper #position-bar.active {
  opacity: 1;
}
.story-wrapper #position-bar span {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  display: block;
  transition: all 1s;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #position-bar span {
    width: 8px;
    height: 8px;
  }
}
.story-wrapper #position-bar span.active {
  background-color: #fff;
  width: 8px;
  height: 8px;
  transition: all 1s;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #position-bar span.active {
    width: 16px;
    height: 16px;
  }
}
.story-wrapper #story-container {
  padding: 50vh 0;
}
@media screen and (min-width: 768px) {
  .story-wrapper #story-container {
    padding: 0;
  }
}
.story-wrapper #story-container .story {
  width: 100%;
  height: 1px;
  margin-bottom: 100vh;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .story-wrapper #story-container .story {
    margin-bottom: 125vh;
  }
}
.story-wrapper #story-container .story .story-contents {
  pointer-events: none;
  width: 100%;
  position: fixed;
  inset: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.story-wrapper #story-container .story .story-contents .text-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fff;
  padding: 24px;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #story-container .story .story-contents .text-area {
    width: 50vw;
    padding: 40px;
  }
}
.story-wrapper #story-container .story .story-contents .text-area.midashi {
  background-color: transparent;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.story-wrapper #story-container .story .story-contents .text-area.last {
  background-color: transparent;
  padding: 0;
  position: absolute;
  bottom: 40px;
  left: 24px;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #story-container .story .story-contents .text-area.last {
    bottom: 80px;
  }
}
.story-wrapper #story-container .story .story-contents .text-area.last .text {
  color: #fff;
  line-height: 160%;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #story-container .story .story-contents .text-area.last .text {
    font-size: 15px;
  }
}
.story-wrapper #story-container .story .story-contents .text-area .story-midashi {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #story-container .story .story-contents .text-area .story-midashi {
    font-size: 64px;
  }
}
.story-wrapper #story-container .story .story-contents .text-area .text {
  color: #1e1e1e;
  line-height: 160%;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #story-container .story .story-contents .text-area .text {
    font-size: 15px;
  }
}
.story-wrapper #story-container .story .story-contents .text-area .text span {
  font-size: 16px;
  font-weight: bold;
  color: #5e88bf;
}
@media screen and (min-width: 1024px) {
  .story-wrapper #story-container .story .story-contents .text-area .text span {
    font-size: 20px;
  }
}
.story-wrapper #story-container .story:first-child .story-contents .text-area {
  width: 100%;
}
.story-wrapper #story-container .story.active {
  opacity: 1;
  transition: all 1.5s;
}
.story-wrapper.bg-type-a {
  background: url("../img/story-bg01.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
.story-wrapper.bg-type-a .bg {
  background-repeat: no-repeat;
  background: url("../img/story-bg01-sm.jpg") no-repeat center top;
  background-size: cover;
}
.story-wrapper.bg-type-b {
  background: url("../img/story-bg02.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
.story-wrapper.bg-type-b .bg {
  background-repeat: no-repeat;
  background: url("../img/story-bg02-sm.jpg") no-repeat center top;
  background-size: cover;
}
.story-wrapper.bg-type-c {
  background: url("../img/story-bg03.jpg") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}
.story-wrapper.bg-type-c .bg {
  background-repeat: no-repeat;
  background: url("../img/story-bg03-sm.jpg") no-repeat center top;
  background-size: cover;
}

#profile {
  position: relative;
}
@media screen and (min-width: 1024px) {
  #profile {
    padding-bottom: 0;
  }
}
#profile .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../img/profile-bg-sm.jpg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: bottom center;
}
@media screen and (min-width: 768px) {
  #profile .bg {
    background-image: url("../img/profile-bg.jpg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: bottom center;
  }
}
#profile .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#profile .profile-digest {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  #profile .profile-digest {
    flex-direction: row;
    justify-content: space-between;
  }
}
#profile .profile-digest .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  #profile .profile-digest .left {
    flex-direction: row;
    flex: 1;
  }
}
#profile .profile-digest .left .profile-img {
  width: 160px;
  height: 160px;
}
#profile .profile-digest .left .text {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #profile .profile-digest .left .text {
    text-align: start;
  }
}
#profile .profile-digest .left .text .part {
  margin-bottom: 16px;
  line-height: 100%;
}
#profile .profile-digest .left .text .part span {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 100%;
}
#profile .profile-digest .left .text .name {
  margin-bottom: 8px;
}
#profile .profile-digest .left .text .name span {
  mix-blend-mode: soft-light;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  line-height: 100%;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  #profile .profile-digest .left .text .name span {
    font-size: 48px;
  }
}
#profile .profile-digest .left .text .kana {
  margin: 0;
}
#profile .profile-digest .left .text .kana span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 100%;
}
#profile .profile-digest .right {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  #profile .profile-digest .right {
    flex-basis: 45%;
  }
}
#profile .profile-digest .right .sub-midashi {
  color: rgba(255, 255, 255, 0.56);
  line-height: 150%;
  margin-bottom: 4px;
}
#profile .profile-digest .right .text {
  color: #fff;
  line-height: 150%;
  margin-bottom: 15px;
}
#profile .gallery {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 40px 24px;
  margin-left: 6vw;
}
@media screen and (min-width: 1024px) {
  #profile .gallery {
    padding: 80px;
  }
}
#profile .gallery .title {
  display: block;
  margin-bottom: 4px;
  padding-bottom: 8px;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 1024px) {
  #profile .gallery .title {
    font-size: 24px;
  }
}
#profile .gallery .scroll {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  #profile .gallery .scroll {
    margin-bottom: 40px;
  }
}
#profile .gallery .scroll p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
#profile .gallery .scroll svg {
  width: 8px;
  height: 8px;
}
#profile .gallery .img-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  position: relative;
  z-index: 2;
}
#profile .gallery .img-group img {
  flex: 0 0 auto;
  scroll-snap-align: start;
  max-height: 160px;
}
@media screen and (min-width: 1024px) {
  #profile .gallery .img-group img {
    max-height: 280px;
  }
}

#voice {
  position: relative;
  padding: 80px 0;
}
@media screen and (min-width: 1024px) {
  #voice {
    padding: 0 0 160px;
  }
}
#voice .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../img/voice-bg-sm.jpg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  #voice .bg {
    background-image: url("../img/voice-bg.jpg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
  }
}
#voice .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#voice .contentsContainer {
  position: relative;
  z-index: 1;
}
#voice .contentsContainer .voice-midashi {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  #voice .contentsContainer .voice-midashi {
    margin-bottom: 64px;
  }
}
#voice .contentsContainer .voice-midashi .ja {
  margin: 0;
}
#voice .contentsContainer .voice-midashi .ja span {
  font-size: 36px;
  font-weight: bold;
  line-height: 150%;
  color: #4679a6;
}
@media screen and (min-width: 1024px) {
  #voice .contentsContainer .voice-midashi .ja span {
    font-size: 64px;
  }
}
#voice .contentsContainer .voice-midashi .en {
  margin: 0;
}
#voice .contentsContainer .voice-midashi .en span {
  font-size: 24px;
  font-weight: bold;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 1024px) {
  #voice .contentsContainer .voice-midashi .en span {
    font-size: 48px;
  }
}
#voice .contentsContainer .voice-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
}
#voice .contentsContainer .voice-group .voice-single {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  #voice .contentsContainer .voice-group .voice-single {
    flex-direction: row;
  }
}
#voice .contentsContainer .voice-group .voice-single .img {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #voice .contentsContainer .voice-group .voice-single .img {
    flex-basis: 400px;
  }
}
#voice .contentsContainer .voice-group .voice-single .img img {
  width: 100%;
  height: auto;
}
#voice .contentsContainer .voice-group .voice-single .img .flower {
  position: absolute;
  bottom: 0;
  right: -40px;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  #voice .contentsContainer .voice-group .voice-single .img .flower {
    bottom: -40px;
    right: auto;
    left: -40px;
    transform: none;
  }
}
#voice .contentsContainer .voice-group .voice-single .img .flower img {
  width: 180px;
  height: auto;
}
@media screen and (min-width: 768px) {
  #voice .contentsContainer .voice-group .voice-single .img .flower img {
    width: 210px;
  }
}
#voice .contentsContainer .voice-group .voice-single .voice-text {
  margin-top: -40px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #voice .contentsContainer .voice-group .voice-single .voice-text {
    margin: 120px 0 0 -80px;
    flex: 1;
  }
}
#voice .contentsContainer .voice-group .voice-single .voice-text .catchCopyBar {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
#voice .contentsContainer .voice-group .voice-single .voice-text .catchCopyBar span {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 150%;
  padding: 8px;
  background-color: #f2afa0;
}
@media screen and (min-width: 1350px) {
  #voice .contentsContainer .voice-group .voice-single .voice-text .catchCopyBar span {
    font-size: 32px;
  }
}
#voice .contentsContainer .voice-group .voice-single .voice-text .name {
  font-weight: bold;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  #voice .contentsContainer .voice-group .voice-single .voice-text .name {
    font-size: 24px;
    margin-bottom: 80px;
    text-align: end;
  }
}
#voice .contentsContainer .voice-group .voice-single .voice-text .comment {
  font-weight: 500;
  font-size: 15px;
  line-height: 200%;
  margin: 0;
}
#voice .contentsContainer .voice-group .voice-single .voice-text .comment span {
  font-weight: bold;
  color: #ee705a;
}
@media screen and (min-width: 768px) {
  #voice .contentsContainer .voice-group .voice-single:nth-child(even) {
    flex-direction: row-reverse;
  }
  #voice .contentsContainer .voice-group .voice-single:nth-child(even) .img .flower {
    transform: scale(-1, 1);
    right: -40px;
    left: auto;
  }
  #voice .contentsContainer .voice-group .voice-single:nth-child(even) .voice-text {
    margin: 120px -80px 0 0;
  }
  #voice .contentsContainer .voice-group .voice-single:nth-child(even) .voice-text .name {
    text-align: start;
  }
}

#faq {
  position: relative;
  padding: 80px 0 120px;
}
@media screen and (min-width: 1024px) {
  #faq {
    padding: 160px 0 240px;
  }
}
#faq .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#faq .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#faq .contentsContainer {
  position: relative;
  z-index: 1;
}
#faq .contentsContainer .flower01 {
  position: absolute;
  top: 48px;
  left: -6vw;
  z-index: -1;
}
@media screen and (min-width: 1350px) {
  #faq .contentsContainer .flower01 {
    top: 40px;
    left: 0;
  }
}
#faq .contentsContainer .flower01 img {
  width: 120px;
  height: auto;
}
@media screen and (min-width: 768px) {
  #faq .contentsContainer .flower01 img {
    width: 215px;
  }
}
#faq .contentsContainer .flower02 {
  position: absolute;
  bottom: -40px;
  right: -6vw;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  #faq .contentsContainer .flower02 {
    bottom: -80px;
  }
}
@media screen and (min-width: 1350px) {
  #faq .contentsContainer .flower02 {
    bottom: -140px;
    right: 0;
  }
}
#faq .contentsContainer .flower02 img {
  width: 120px;
  height: auto;
}
@media screen and (min-width: 768px) {
  #faq .contentsContainer .flower02 img {
    width: 240px;
  }
}
#faq .contentsContainer .faq-midashi {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  #faq .contentsContainer .faq-midashi {
    margin-bottom: 64px;
  }
}
#faq .contentsContainer .faq-midashi .ja {
  margin: 0;
}
#faq .contentsContainer .faq-midashi .ja span {
  background: linear-gradient(90deg, #5e88bf 0%, #ee705a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.1);
  font-size: 36px;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  #faq .contentsContainer .faq-midashi .ja span {
    font-size: 64px;
  }
}
#faq .contentsContainer .faq-midashi .en {
  margin: 0;
}
#faq .contentsContainer .faq-midashi .en span {
  font-size: 24px;
  font-weight: bold;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 1024px) {
  #faq .contentsContainer .faq-midashi .en span {
    font-size: 48px;
  }
}
#faq .contentsContainer .faq-group {
  background-color: #fff;
  padding: 40px;
}
@media screen and (min-width: 1024px) {
  #faq .contentsContainer .faq-group {
    padding: 80px;
  }
}
#faq .contentsContainer .faq-group .faq-single {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
}
#faq .contentsContainer .faq-group .faq-single .question {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #ee705a;
}
#faq .contentsContainer .faq-group .faq-single .answer {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 150%;
}
#faq .contentsContainer .faq-group .faq-single:last-child {
  padding: 0;
  margin: 0;
  border: none;
}

.wave01 {
  position: relative;
  width: 100%;
  aspect-ratio: 393/44;
  margin-top: -44px;
}
@media screen and (min-width: 768px) {
  .wave01 {
    aspect-ratio: 1440/89;
    margin-top: -89px;
  }
}
.wave01 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#final {
  position: relative;
}
#final .bg {
  width: 100%;
  height: calc(100vh - 48px);
}
@media screen and (min-width: 960px) {
  #final .bg {
    height: calc(100vh - 64px);
  }
}
#final .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#final .final-cont {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  padding: 0 6vw;
}
@media screen and (min-width: 768px) {
  #final .final-cont {
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #final .final-cont .title {
    width: 70%;
  }
}
#final .final-cont .title img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #final .final-cont .final-text {
    padding-left: 32px;
  }
}
#final .final-cont .final-text .sub {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 24px;
}/*# sourceMappingURL=custom.css.map */