#mainContents {
  --tab-color: #fff;
  --army-color: #1eaa39;
  --navy-color: #08287e;
  --air-force-color: #36bdef;
  --tab-active-border-color: linear-gradient(
      to right,
      var(--army-color),
      var(--navy-color),
      var(--air-force-color)
    )
    1;
}

.lowHeading {
  height: 864px;
}

.lowHeadingTxt p {
  padding-left: 30px;
  margin-block: 0;
}

.lowHeadingTxt div {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 0 20px;
}

.lowHeadingTxt .text_p1 {
  font-size: 20px;
  font-weight: 900;
  line-height: 34px; /* 170% */
  letter-spacing: 1px;
}

.lowHeadingTxt .text_p2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px; /* 175% */
  letter-spacing: 0.8px;
  margin-top: 30px;
}

.lowHeading img {
  object-position: center;
}

.lowHeading .inner01 {
  width: 100%;
  max-width: 1200px;
  padding-bottom: 70px;
}

#mainContents .pb-0 {
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .lowHeading {
    height: 1040px;
  }

  .lowHeadingTxt {
    position: absolute;
    top: 404px;
    padding-bottom: 43px;
  }

  .lowHeadingTxt .h1_ptn1 {
    padding: 30px 34px 0 21px;
    min-height: 80px;
  }

  .lowHeadingTxt div {
    margin-top: 30px;
    padding-inline: 21px;
    flex-direction: column;
    gap: 20px 0;
  }

  .lowHeadingTxt p {
    margin-top: 15px;
    min-height: 40px;
    padding: 0 20px;
    /* margin-inline: 21px; */
  }

  .lowHeadingTxt .text_p1 {
    font-size: 16px;
    line-height: 20px; /* 170% */
    letter-spacing: 0.8px;
  }

  .lowHeadingTxt .text_p2 {
    font-size: 14px;
    line-height: 26px;
    margin-top: 25px;
  }
}

.content-area {
  padding: 0;
}

.c-btn01 {
  font-size: 1rem;
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 900;
  line-height: 2.12em;
  letter-spacing: 0.8px;
  background-color: #000;
  padding: 13px 30px 13px 0;
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #1eaa39, #08287e, #36bdef) 1;
  position: relative;
  width: 340px;
}

.c-btn01::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32.5px;
  width: 12px;
  height: 12px;
  border-top: 4px solid;
  border-right: 4px solid;
  transform: translateY(-50%) rotate(45deg);
}

.c-btn01:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .c-btn01 {
    width: 100%;
    padding: 7px 0;
    font-size: 0.75rem;
    border-bottom: 3px solid;
  }
  .c-btn01::after {
    right: 16px;
    width: 10px;
    height: 10px;
    border-top: 4px solid;
    border-right: 4px solid;
    transform: translateY(-50%) rotate(45deg);
  }
}

#tab_area {
  max-width: 1200px;
  overflow: hidden;
  width: 100%;
  display: flex;
}

.p-movie__tabs-list {
  display: flex;
  justify-content: center;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 400px;
  text-align: center;
  cursor: pointer;
  color: #009b95;
  box-sizing: border-box;
  height: 71px;
  position: relative;
}
.tab:hover {
  background: var(--tab-color);
}
.tab:nth-child(6) {
  margin-right: 0;
}
.tab:last-child {
  /* display: none; */
}
.tab p {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
}
.tab.active {
  background: var(--tab-color);
  color: #fff;
}
.tab.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 4px solid;
  border-image: var(--tab-active-border-color);
}

.content-area {
  padding-top: 54px;
  padding-bottom: 84px;
}

.content {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.content.show {
  display: block;
}

.o-movie-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}

@media screen and (max-width: 768px) {
  .p-movie__tabs-list {
    flex-direction: column;
    margin-bottom: 0;
  }
  #tab_area {
    border-bottom: none;
    margin-top: 10px;
    padding-bottom: 23px;
  }
  .tab {
    width: 50%;
    min-width: 167px;
    cursor: pointer;
    justify-content: start;
    padding-left: 12px;
    height: 47.2px;
    right: 0;
  }
  .tab.active::before {
    left: 0;
    border-top: none;
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #1eaa39, #08287e, #009b95) 1;
    height: 100%;
  }

  .tab:last-child {
    display: block;

    /* cursor: none;
    pointer-events: none; */
  }
  .tab p {
    font-size: 14px;
    line-height: 46px;
    letter-spacing: 0.7px;
  }
  .content-area {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .content {
    padding: 30px 20px 0;
  }
  .content .col:nth-child(2n) {
    margin-right: 0;
  }
  .content .col a::after {
    width: 40px;
    height: 40px;
  }

  .o-movie-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 40px;
  }
}

.content .col {
  width: 380px;
  border: 2px solid #eee;
  min-height: 193px;
  position: relative;
  /* float: left; */
}
.content .col a {
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 20px 48px 20px 8px;
  /* padding-top: 100%; */
}
.content .col a:hover {
  opacity: 0.7;
}

.content .col img {
  /* position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -2;
  display: block;
  width: auto;
  height: 100%; */
  width: 131px;
  height: 93px;
}
.content .col a .card-desc p {
  padding-left: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
  letter-spacing: 0.7px;

  span {
    font-size: 16px;
    font-weight: 900;
    line-height: 25px; /* 156.25% */
    letter-spacing: 0.8px;
  }
}

.card-desc2 {
  margin-top: 15px;
}

.pb-s1 {
  padding-bottom: 45px;
}

.content .col::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17.5px;
  width: 12px;
  height: 12px;
  border-top: 4px solid;
  border-right: 4px solid;
  color: #aaa;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .content .col {
    width: 100%;
  }

  .content .col a {
    padding: 20px 33px 20px 8px;
  }
  .content .col img {
    width: 108px;
    height: 77px;
  }
  .content .col a .card-desc p {
    padding-left: 8px;

    span {
      font-size: 14px;
      line-height: 20px;
      letter-spacing: 0.7px;
    }
  }
  .content .col::after {
    right: 11px;
  }
}

@media (max-width: 640px) {
  #photo {
    margin-top: 30px;
  }
  #photo ul {
    padding: 0 2px;
  }
  #photo ul li {
    width: 50%;
  }
}

.modal_movie {
  display: none;
  position: fixed;
  z-index: 1002;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 50px;
}
.modal_movie .bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.modal_movie .modalInner {
  display: table;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}
.modal_movie .modalBox {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.modal_movie .modalBox .over {
  position: relative;
  max-width: 1200px;
  width: 100%;
}
.modal_movie .modalBox .modalClose {
  position: absolute;
  right: 0;
  top: -60px;
  display: block;
  width: 60px;
  height: 60px;
  font-size: 0;
  opacity: 1 !important;
}
.modal_movie .modalBox .modalClose::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 3px;
  margin-top: -1px;
  margin-left: -20px;
  background: #fff;
  transform: rotate(-45deg);
}
.modal_movie .modalBox .modalClose::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 3px;
  margin-top: -1px;
  margin-left: -20px;
  background: #fff;
  transform: rotate(45deg);
}
.modal_movie .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal_movie .movie iframe {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-height: 795px) {
  .modal_movie .modalInner {
    max-width: 800px;
  }
  .modal_movie .modalBox .over {
    max-width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .modal_movie {
    padding: 15px;
  }
  .modal_movie .modalBox .modalClose {
    right: -5px;
    top: -35px;
    width: 30px;
    height: 30px;
  }
  .modal_movie .modalBox .modalClose::before {
    width: 20px;
    margin-left: -10px;
  }
  .modal_movie .modalBox .modalClose::after {
    width: 20px;
    margin-left: -10px;
  }
}
