@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&&display=swap");
:root {
  --ff-zen: "Zen Kaku Gothic New", sans-serif;
}

body {
  font-family: var(--ff-zen);
  font-size: 16px;
}

main {
  font-weight: 500;
  background: #fff;
}

.c-mv {
  position: relative;
  min-height: 360px;
  width: 100%;
  background: #EDA977;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 0;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .c-mv {
    justify-content: space-between;
    flex-direction: column;
    padding: 0;
  }
}
.c-mv__inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.c-mv__heading {
  background: #fff;
  font-size: 32px;
  color: #EDA977;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 80px;
  max-width: fit-content;
  width: 100%;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .c-mv__heading {
    font-size: 24px;
    padding: 32px 24px;
    margin: 20px auto -80px;
  }
}
.c-mv__heading::before, .c-mv__heading::after {
  content: "";
  display: block;
  background: #EDA977;
  width: 1px;
  height: calc(100% - 24px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-mv__heading::before {
  left: 8px;
}
.c-mv__heading::after {
  right: 8px;
}
.c-mv__heading small {
  font-size: 22px;
  display: block;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 16px;
  color: #AD7B57;
}
@media screen and (max-width: 767.9px) {
  .c-mv__heading small {
    font-size: 18px;
  }
}
.c-mv__heading small::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-image: radial-gradient(#EDA977 30%, transparent 30%);
  background-size: 8px 6px;
}
.c-mv__heading-inner::before, .c-mv__heading-inner::after {
  content: "";
  display: block;
  background: #EDA977;
  width: calc(100% - 24px);
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.c-mv__heading-inner::before {
  top: 8px;
}
.c-mv__heading-inner::after {
  bottom: 8px;
}
.c-mv__img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: calc(50% + 200px);
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .c-mv__img {
    position: static;
    max-width: 100%;
  }
}
.c-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
@media screen and (max-width: 767.9px) {
  .c-mv__img img {
    height: 270px;
    vertical-align: bottom;
    object-position: center bottom;
  }
}

.c-lead {
  margin: 40px 0 20px;
  padding: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .c-lead {
    margin: 20px 0;
  }
}
.c-lead__text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .c-lead__text {
    font-size: 18px;
  }
}

.c-anchor {
  margin-bottom: 64px;
  padding: 0 20px;
  background: #C28F69;
}
@media screen and (max-width: 767.9px) {
  .c-anchor {
    margin-bottom: 40px;
    padding: 0;
  }
}
.c-anchor__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  margin: 0 auto;
}
.c-anchor__item:not(:last-child) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767.9px) {
  .c-anchor__item {
    display: flex;
    width: 100%;
  }
}
.c-anchor__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #fff;
  padding: 12px 8px;
}
@media screen and (max-width: 767.9px) {
  .c-anchor__link {
    width: 100%;
    padding: 12px;
  }
}
.c-anchor__link::after {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  mask: url("/attaka/images/new/top/arrow.svg") no-repeat center/contain;
  transform: rotate(90deg);
}
.c-anchor__label {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-anchor__label__inner {
  display: block;
  width: 100%;
  font-size: 16px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767.9px) {
  .c-anchor__label__inner {
    font-size: 13px;
  }
}
.c-anchor__label__inner sup {
  font-size: 12px;
  vertical-align: super;
}
@media screen and (max-width: 767.9px) {
  .c-anchor__label__inner sup {
    font-size: 10px;
  }
}

.c-technology {
  padding: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .c-technology {
    padding: 0;
  }
}
.c-technology + .c-technology {
  margin-top: 80px;
}
@media screen and (max-width: 767.9px) {
  .c-technology + .c-technology {
    margin-top: 40px;
  }
}
.c-technology__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .c-technology__inner {
    display: grid;
    grid-template-areas: "heading mainImag" "body body";
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__inner {
    display: block;
  }
}
.c-technology__header {
  padding: 0 540px 0 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1119.9px) {
  .c-technology__header {
    padding-right: calc(100px + 37%);
  }
}
@media screen and (max-width: 991px) {
  .c-technology__header {
    grid-area: heading;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__header {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}
.c-technology__header__note {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .c-technology__header__note {
    text-align: center;
  }
}
.c-technology__heading {
  font-size: 32px;
  line-height: 1.6;
  color: #EDA977;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1119.9px) {
  .c-technology__heading br {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__heading {
    font-size: 23px;
    text-align: center;
  }
  .c-technology__heading br {
    display: block;
  }
}
.c-technology__heading sup {
  font-size: 12px;
  vertical-align: 16px;
}
.c-technology__mainImag {
  position: absolute;
  top: 0;
  right: 80px;
  z-index: 1;
}
@media screen and (max-width: 1119.9px) {
  .c-technology__mainImag {
    width: 37%;
  }
}
@media screen and (max-width: 991px) {
  .c-technology__mainImag {
    grid-area: mainImag;
    position: static;
    width: auto;
    margin-left: auto;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__mainImag {
    padding: 0 20px;
    position: static;
    transform: scale(1);
  }
}
.c-technology__mainImag img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(201, 142, 99, 0.4);
}
@media screen and (max-width: 767.9px) {
  .c-technology__mainImag img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}
.c-technology__body {
  background: linear-gradient(180deg, #FFDFC7 0%, #FFEFE4 25%);
  padding: 40px 80px;
}
@media screen and (max-width: 991px) {
  .c-technology__body {
    grid-area: body;
    padding: 40px 40px 56px;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__body {
    margin-top: -80px;
    padding: 110px 24px 32px;
  }
}
.c-technology__lead {
  font-size: 16px;
  line-height: 1.8;
  padding-right: 480px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1119.9px) {
  .c-technology__lead {
    padding-right: calc(40px + 43.478%);
  }
  .c-technology__lead br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .c-technology__lead {
    padding-right: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__lead {
    padding: 0 20px;
  }
}
.c-technology__lead sup {
  font-size: 8px;
  font-weight: 400;
  vertical-align: super;
}
.c-technology__note {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 1119.9px) {
  .c-technology__note {
    padding-right: calc(40px + 43.478%);
  }
}
@media screen and (max-width: 991px) {
  .c-technology__note {
    padding-right: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__note {
    padding: 0 20px;
  }
}
.c-technology__body > .c-technology__note {
  width: 100%;
}
.c-technology__section {
  background: #fff;
  border-radius: 10px;
  margin-top: 64px;
  position: relative;
  padding: 64px 64px 40px;
}
@media screen and (max-width: 1019.9px) {
  .c-technology__section {
    padding: 64px 40px 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__section {
    margin-top: 48px;
    padding: 40px 20px 20px;
  }
}
.c-technology__section.-mt-sm {
  margin-top: 40px;
  padding: 40px 80px;
}
@media screen and (max-width: 1019.9px) {
  .c-technology__section.-mt-sm {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__section.-mt-sm {
    margin-top: 20px;
    padding: 20px;
  }
}
.c-technology__section-heading:not(.-simple) {
  color: #fff;
  background: #C28F69;
  width: fit-content;
  padding: 4px 24px;
  border-radius: 40px;
  font-size: 18px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  white-space: nowrap;
  box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-heading:not(.-simple) {
    padding: 4px 16px;
    min-width: 170px;
  }
}
.c-technology__section-heading.-simple {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-heading.-simple {
    font-size: 16px;
    line-height: 1.8;
  }
}
.c-technology__section-heading.-simple + p {
  font-size: 14px;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-heading.-simple + p {
    text-align: left;
  }
}
.c-technology__section-heading + p {
  margin-top: 20px;
  text-align: center;
}
.c-technology__section-heading + figure {
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-heading + figure {
    margin-top: 20px;
  }
}
.c-technology__section-box {
  display: flex;
  gap: 20px 80px;
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 1019.9px) {
  .c-technology__section-box {
    gap: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-box {
    flex-direction: column;
    gap: 24px 0;
    grid-row: 1;
  }
}
.c-technology__section-box.-order {
  gap: 20px 60px;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-box.-order {
    position: relative;
    padding-bottom: 140px;
  }
}
.c-technology__section-box.-reverse {
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-box.-reverse {
    margin-top: 20px;
    flex-direction: column-reverse;
  }
}
.c-technology__section-box.-reverse > .c-technology__section-body {
  order: 2;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-box.-reverse > .c-technology__section-body {
    order: unset;
  }
}
.c-technology__section-box.-reverse > .c-technology__section-img {
  order: 1;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-box.-reverse > .c-technology__section-img {
    order: unset;
  }
}
.c-technology__section-box > .c-technology__section-img {
  flex: 0 0 auto;
  max-width: 50%;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-box > .c-technology__section-img {
    width: 100%;
    max-width: none;
  }
}
.c-technology__section-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}
.c-technology__section-body > *:first-child {
  margin-top: 0;
}
.c-technology__section-body > *:last-child {
  margin-bottom: 0;
}
.c-technology__section-body p {
  font-size: 14px;
}
.c-technology__section-body ol > li {
  font-size: 14px;
  padding-left: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #EDA977;
  margin-bottom: 12px;
  position: relative;
}
.c-technology__section-body ol > li > strong {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #EDA977;
}
.c-technology__section-body ol > li > sup {
  font-size: 8px;
  font-weight: 400;
  vertical-align: super;
}
.c-technology__section-note {
  font-size: 12px !important;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 0.5em;
}
.c-technology__section-text + .c-technology__section-note {
  margin-top: -12px;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-text + .c-technology__section-note {
    margin-top: 0;
  }
}
.c-technology__section-text {
  font-size: 24px !important;
  line-height: 1.6;
  color: #EDA977;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  margin-right: -0.5em;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-text {
    line-height: 1.8;
    letter-spacing: 0;
    font-size: 18px !important;
    text-align: center;
    margin-bottom: 8px;
  }
}
.c-technology__section-text:not(:first-child) {
  margin-top: 20px;
}
.c-technology__section-text sup {
  font-size: 14px;
  vertical-align: super;
}
.c-technology__section-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #EDA977;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-summary {
    gap: 16px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: left;
  }
}
.c-technology__section-summary__img {
  height: 90px;
  width: clamp(90px, 18vw, 140px);
}
.c-technology__section-summary__img img {
  vertical-align: top;
}
.c-technology__section-summary__label {
  font-size: 16px;
  font-weight: bold;
  color: #EDA977;
}
.c-technology__section-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.c-technology__section-img.-center {
  text-align: center;
  height: 100%;
}
.c-technology__section-img__caption {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  .c-technology__section-img__caption {
    text-align: center;
  }
}
.c-technology__button {
  margin-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .c-technology__button {
    margin-top: 20px;
  }
}
.c-technology-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 440px;
  width: 100%;
  min-height: 80px;
  padding: 12px 16px;
  color: #fff;
  line-height: 1.25;
  background: linear-gradient(90deg, #EDA977 37.5%, #FDE495 50%, #FDE495 60%, #edad7f 87.5%);
  background-size: 200% 100%;
  background-position: 0 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0 auto;
  transition: background-position 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .c-technology-button {
    min-height: 68px;
    max-width: 100%;
  }
}
.c-technology-button:hover {
  background-position: 100% 0;
}
.c-technology-button::after {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 32px;
  height: 32px;
  background: url("/attaka/images/new/technology/icon_movie.png") no-repeat center/contain;
}
.c-technology-button__label {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 4px;
}
@media screen and (max-width: 767.9px) {
  .c-technology-button__label {
    font-size: 14px;
  }
}
.c-technology-button__label-sm {
  font-size: 14px;
}
@media screen and (max-width: 767.9px) {
  .c-technology-button__label-sm {
    font-size: 12px;
  }
}
.c-technology-banner {
  margin-top: 56.5px;
  padding: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .c-technology-banner {
    margin-top: 91.5px;
    padding: 0;
  }
}
.c-technology-banner__inner {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
.c-technology-banner__inner picture {
  vertical-align: top;
}
.c-technology-banner__inner picture img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/*# sourceMappingURL=index.css.map */
.point {
  max-width: 940px;
  width: 100%;
  display: block;
  margin: 0 auto 80px auto;
  height: auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.point .point_button {
  transition: opacity 0.3s ease;
  display: flex;
}

.point .point_button:hover {
  opacity: 0.5;
}

.point .point_button img{
  max-width: 100%;
}


.point .point_button.sp-only { 
  display: none; 
}

.point .point_button.pc-only { 
  display: block; 
}

@media (max-width: 767px) {
  .point {
    max-width: 500px;
    margin: 0 auto 40px auto;
  }

.point .point_button.pc-only { 
    display: none; 
  }
}

.point_movie {
  margin-top: 80px;
}

.point_movie .title {
  text-align: center;
  position: relative;
}

.point_movie .title .head {
  font-size: 24px;
  color: #B25C1C;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
}

.point_movie .title .head::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: -8px;
  width: 120px; 
  height: 3px;
  background-color: #B25C1C;
  border-radius: 1.5px;
}

.point_movie .title .head::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: -8px;
  width: 110px;
  height: 3px;
  background-color: #B25C1C;
  border-radius: 1.5px;
}

.diagonal-line {
  position: absolute;
  bottom: 69.5px;
  margin-left: -107px;
  width: 20px;
  height: 3px;
  background-color: #B25C1C;
  transform: translateX(-50%) rotate(-45deg);
  border-radius: 1.5px;
}
  @media (max-width: 767px) {
    .point_movie .title .head{
      font-size: 18px;
      padding-bottom: 20px;
    }
    .point_movie .title .head::before {
    bottom: 6px;
    height: 2px;
    width: 70px;
    left: 0px;
  }
  
  .point_movie .title .head::after {
    bottom: 6px;
    width: 85px;
    height: 2px;            
    border-radius: 1px;
    right: 0px;
  }
  .diagonal-line {
    bottom: 43.5px;
    margin-left: -89px;
    width: 16px;
    height: 2px;
    border-radius: 1px;
  }
}

.point_movie .title .text {
  font-size: 40px;
  color: #EDA977;
  font-weight: 900;
  line-height: 160%;
  font-feature-settings: "palt" 1;
}
  @media (max-width: 767px) {
    .point_movie .title .text{
      font-size: 24px;
      margin-top: 4px;
    }
  }

.galleries__title {
  color:#EDA977;
  font-size:32px;
  font-weight:600;
  text-align:center
}

.galleries__movies {
  margin-top:32px
}

.galleries__splide {
  position:relative
}

.galleries__splide .splide__track {
  padding-bottom:43.5px
}

.galleries__splide .splide__track .movies__list {
  display: flex;
  align-items: flex-start;
}

.galleries__splide .splide__track .movies__list>li {
  border-radius:20px;
  max-width:246px;
  flex: 0 0 auto;
  margin-right: 70px
}

.galleries__splide .splide__track .movies__list>li>.movie {
  overflow:hidden;
  border-radius:20px;
}

.galleries__splide .splide__track .movies__list>li>.movie>a {
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  position:relative;
  -webkit-transition:opacity 0.3s;
  transition:opacity 0.3s;
  opacity:1;
  cursor:pointer
}

.galleries__splide .splide__track .movies__list>li>.movie>a:hover {
  opacity:0.5
}

.galleries__splide .splide__track .movies__list>li>.movie>a::after {
  content:"";
  background-image:url(../../../attaka/images/new/common/icon_start.svg);
  width:80px;
  height:auto;
  aspect-ratio:1 / 1;
  position:absolute;
  inset:0;
  margin:auto
}

.galleries__splide .splide__track .movies__list>li>.edited {
  font-size:18px;
  font-weight:500;
  text-align:center;
  margin-top:16px;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.galleries__splide .splide__carousel__progress {
  background:#FCF2EB;
  margin:0 auto;
  width:calc(100% - 126px);
  max-width:894px;
  border-radius:5px
}

.galleries__splide .splide__carousel__progress__bar {
  background:#EDA977;
  height:5px;
  -webkit-transition:width 400ms ease;
  transition:width 400ms ease;
  width:0;border-radius:5px
}

.galleries__splide .splide__arrows {
  position:absolute;
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;width:calc(100% - 40px);
  max-width:1000px;
  bottom:2.5px;
  right:0;
  left:0;
  margin:auto
}

.galleries__splide .splide__arrows .splide__arrow {
  position:absolute;
  background-image:url(../../../attaka/images/new/technology/icon_arrow_accent.svg);
  background-color:transparent;
  border-radius:0;
  opacity:1;
  width:28px;
  height:28px
}

.galleries__splide .splide__arrows .splide__arrow--prev {
  top:0;
  bottom:0;
  left:0;
  margin:auto;
  -webkit-transform:scale(-1, 1);
  -ms-transform:scale(-1, 1);
  transform:scale(-1, 1)
}

.galleries__splide .splide__arrows .splide__arrow--next{right:0}
.galleries .anno__text {
  margin-top:50px
  }
  @media screen and (max-width: 767.9px){
    .galleries .anno__text{
      margin-top:35px;font-size:11px
    }
  }
  @media screen and (max-width: 767.9px){
    .galleries {
      margin-top:32px
    }
    .galleries--01 {
      margin-top:calc(60px + 15%)
    }
    .galleries__title{
      font-size:19px
    }
    .galleries__splide .splide__track .movies__list>li {
      max-width:250px
    }
  }

  .splide__slide img{
    max-width: 100%;
  }

  .modal-area .modal__wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
  padding: 20px 20px 60px 20px;
  box-sizing: border-box;
}

.height__movie{
  position: relative;
    aspect-ratio: 9 / 16;
    height: calc(100vh - 240px);
    margin: auto;
}

@media screen and (max-width: 767.9px){
  .height__movie{
    height: auto;
    width: calc(100vw - 70px);
  }
}

.height__movie > video-js {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
  object-fit: contain; 
}


@media screen and (min-width: 1201px) {
  .galleries__splide .splide__arrows {
    display: none;
  }
  .galleries__splide .splide__carousel__progress {
    display: none;
  }
    .galleries__splide .splide__track .movies__list{
    justify-content: center;
  }
  .galleries__splide .splide__track .movies__list > li:last-child {
  margin-right: 0 !important;
}
}

@media screen and (max-width: 1200px) and (min-width: 921px) {
  .galleries__splide .splide__track .movies__list > li {
    max-width: 250px;
  }
  .galleries__splide .splide__arrows {
    display: flex;
  }
  .galleries__splide .splide__carousel__progress {
    display: block;
  }
}

@media screen and (max-width: 920px) and (min-width: 641px) {
  .galleries__splide .splide__track .movies__list > li {
    max-width: 220px;
    margin-right: 0;
  }
  .galleries__splide .splide__arrows {
    display: flex;
  }
  .galleries__splide .splide__carousel__progress {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .galleries {
    margin-top: 32px;
  }
  .galleries__title {
    font-size: 19px;
  }
  .galleries__splide .splide__track .movies__list > li {
    max-width: 246px;
    margin-right: 0;
  }
  .galleries__splide .splide__arrows {
    display: flex;
  }
  .galleries__splide .splide__carousel__progress {
    display: block;
  }
  .galleries .anno__text {
    margin-top: 35px;
    font-size: 11px;
  }
}