@charset "UTF-8";
/*======*/
/* 共通 */
/*======*/
html {
  --paddingWrap: 6.5vw;
  --paddingWrap-negative: calc(var(--paddingWrap) * -1.1);
}

@media screen and (min-width: 768px) {
  html {
    --paddingWrap: 24px;
  }
}

/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  header {
    height: 0;
    padding: 0;
  }
}

.conteiner section {
  padding: 8vw 0 7vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.conteiner .section-type2 {
  padding: 15vw 0 15vw;
}

@media screen and (min-width: 768px) {
  .conteiner section {
    padding: 42px 0 98px;
  }
  .conteiner .section-type2 {
    padding: 190px 0 190px;
  }
}

.contents {
  padding: 0 var(--paddingWrap);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .contents {
    max-width: 1078px;
    margin: 0 auto;
  }
}

/* アニメーション
------------------------------ */
.animated {
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*=========*/
/* ヘッダー */
/*=========*/
/* header
------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  margin: 0 auto;
  padding: 16px 24px;
  background: #FFF;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header nav .l-list,
header nav .r-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header nav .l-list li:not(:last-child) {
  position: relative;
  margin-right: 28px;
  padding-right: 28px;
}

header nav .l-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: #000;
}

header nav .l-list li:nth-of-type(2) {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0em;
  white-space: nowrap;
}

header nav .r-list li:not(:last-child) {
  margin-right: 22px;
}

header nav .r-list li:nth-of-type(2) {
  max-width: 80px;
}

@media screen and (max-width: 767px) {
  header {
    padding: 2.66vw;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
  }
  header nav .l-list {
    width: 66.28vw;
  }
  header nav .l-list li:not(:last-child) {
    margin-right: 3vw;
    padding-right: 3vw;
  }
  header nav .l-list li:not(:last-child)::before {
    height: 6vw;
  }
  header nav .l-list li:nth-of-type(1) img {
    width: auto;
    max-width: none;
    height: 6vw;
  }
  header nav .l-list li:nth-of-type(2) {
    font-size: 12px;
    line-height: 1.5;
  }
  header nav .r-list {
    width: 21.56vw;
  }
  header nav .r-list li:not(:last-child) {
    margin-right: 2.4vw;
  }
  header nav .r-list li:nth-of-type(1) img {
    height: 5.33vw;
  }
  header nav .r-list li:nth-of-type(2) {
    max-width: 100%;
  }
  header nav .r-list li:nth-of-type(2) img {
    height: 6.66vw;
  }
}

/* リンクボタン
-----------------------------------*/
a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* フッター
-----------------------------------*/
footer {
  padding: 13vw 0 6vw;
  text-align: center;
  color: #BA0C2F;
}

footer .contents {
  padding: 0 5%;
}

footer .txt {
  font-size: 28px;
  font-weight: 600;
}

footer .btn-link {
  margin-top: 10px;
  text-align: center;
}

.btn-footer {
  color: #BA0C2F;
  position: relative;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
}

footer .copyright {
  margin-top: 10vw;
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
}

@media screen and (min-width: 768px) {
  footer {
    padding: 69px 0 50px;
  }
  footer .btn-link {
    margin-top: 1px;
    text-align: center;
  }
  footer .copyright {
    margin-top: 16px;
    font-size: 10px;
  }
  .btn-footer,
  .ptop {
    transition: all 0.3s ease;
  }
  .btn-footer:hover,
  .ptop:hover {
    opacity: 0.7;
  }
  .btn-footer i {
    transition: all 0.3s ease;
    display: inline-block;
  }
  .btn-footer:hover i {
    transform: translateX(5px);
  }
  .ptop i {
    transition: all 0.3s ease;
    display: inline-block;
  }
  .ptop:hover i {
    transform: translateX(-5px);
  }
}

.ptop {
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: -6px;
  z-index: 9;
}

.top-btn-w .ptop .btn-style-3 {
  color: #FFF;
}

.top-btn-w.top-btn-w1 .ptop .btn-style-3 {
  color: #BA0C2F;
}

.ptop .btn-style-3 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #BA0C2F;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 11px;
}

.ptop .btn-style-1::before {
  -webkit-transform: translate(-60%, -2px) scaleX(-1);
  transform: translate(-60%, -2px) scaleX(-1);
  left: 0;
  right: auto;
}

hr.section-line {
  width: auto;
  max-width: 1440px;
  margin: 0 7%;
  background: none;
  border: 0;
  border-top: 1px solid #BA0C2F;
}

.btn-style-1 {
  display: inline-block;
  padding: 7px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 100%;
  font-weight: 500;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #333333;
  position: relative;
  z-index: 0;
}

.btn-style-1::before {
  content: "";
  width: 18px;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28.396 8.935'%3E%3Cpath id='Path_911' data-name='Path 911' d='M0,0V27.35L8.12,20.8' transform='translate(0 8.435) rotate(-90)' fill='none' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E") 50% 45%/contain no-repeat;
  -webkit-transform: translateX(55%);
  transform: translateX(55%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.btn-style-1:hover {
  background: #333333;
  text-decoration: none;
  color: #fff;
}

.ttl-style-1 {
  font-weight: 600;
  letter-spacing: 0;
}

.ttl-style-1 > span {
  display: block;
}

.ttl-style-1 .txt1 {
  font-size: 12px;
  font-weight: 400;
}

.ttl-style-1 .txt2 {
  font-size: 28px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .ttl-style-1 .txt1,
  .ttl-style-1 .txt2 {
    line-height: 32px;
  }
  .ttl-style-1 .txt1 {
    letter-spacing: 0.03em;
  }
  .ttl-style-1 .txt2 {
    letter-spacing: 0.04em;
  }
}

dl.item-detail-style-1 {
  margin-bottom: 8px;
}

dl.item-detail-style-1 dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-family: "Figtree", sans-serif;
  line-height: 15px;
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

dl.item-detail-style-1 dd {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  margin-top: 2px;
}

.btn-buy {
  position: relative;
}

.btn-buy a {
  background: #BA0C2F;
  color: #FFF;
  font-size: 10px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: center;
  width: 34px;
  box-sizing: border-box;
  padding: 0;
  display: block;
}

.btn-buy span {
  color: #BA0C2F;
  background: #FFF;
  line-height: 18px;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  background-origin: padding-box;
  bottom: 0;
  opacity: 0;
}

.btn-buy.is a {
  background: #FFF;
  color: #BA0C2F;
}

.btn-buy.is span {
  color: #FFF;
  background: #BA0C2F;
}

.btn-buy:hover span {
  opacity: 1;
}

.btn-buy:hover a {
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  dl.item-detail-style-1 dt .btn {
    margin-left: 12px;
  }
  dl.item-detail-style-1 dd {
    margin-top: 2px;
    font-size: 12px;
  }
}

.section-style-1 .imgbox-01 {
  margin: 5vw 0 8vw;
}

.section-style-1 .txtbox {
  margin: 5vw 0 2vw;
}

@media screen and (min-width: 768px) {
  .section-style-1 {
    padding: 42px 0 98px !important;
  }
  .section-style-1 .imgbox,
  .section-style-1 .txtbox {
    margin: 35px 0 0;
  }
  .section-style-2 .imgbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1440px) and (min-width: 768px) {
  .section-style-2 .imgbox {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

@-webkit-keyframes logo {
  0% {
    -webkit-filter: none;
    filter: none;
  }
  100% {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}

@keyframes logo {
  0% {
    -webkit-filter: none;
    filter: none;
  }
  100% {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}

@-webkit-keyframes imgboxFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes imgboxFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#open {
  background: #BA0C2F;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

#open .logo {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38vw;
}

.open-out #open {
  opacity: 1;
  z-index: 999;
}

.open-out #open {
  opacity: 1;
}

.sec-main {
  padding: 0 !important;
}

.sec-main .logo {
  width: 38vw;
}

.sec-main .kv {
  position: relative;
}

.sec-main .kv .logobox,
.sec-main .kv .imgbox {
  grid-area: 1/1/1/1;
  height: 100vh;
}

.sec-main .kv .logobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec-main .kv .imgbox .img {
  width: 100%;
  height: 100%;
}

.sec-main .kv .imgbox .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .sec-main {
    height: 100lvh;
  }
  #open .logo {
    position: absolute;
    top: 50%;
    left: 207px;
    transform: translateY(-50%);
    width: 273px;
  }
  .sec-main .kv .logobox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 207px;
    transform: translate(0, -50%);
  }
  .sec-main .logo {
    width: 273px;
  }
  .sec-main .kv {
    height: 100%;
  }
}

.sec-01 {
  padding: 0 0 25vw !important;
  position: relative;
}

.sec-01 .bgi {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1 !important;
}

.sec-01 .bgi .img-left {
  width: 50%;
  height: 100vw;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-01 .bgi .img-right {
  width: 50%;
  height: 100vw;
  position: absolute;
  top: 65vw;
  right: 0;
}

.sec-01 .bgi img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec-01 .contents {
  height: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 0;
}

.sec-01 .txtbox {
  color: #000;
  text-align: left;
}

.sec-01 .txtbox .txt1 {
  font-size: 11.5px;
  font-weight: bold;
  padding: 120vw 0 0 25px;
}

.sec-01 .txtbox .txt2 {
  font-size: 21px;
  margin: 5px 0 -1px 20px;
  font-weight: bold;
}

.sec-01 .txtbox .txt3 {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0em;
  position: absolute;
  top: 24vw;
  left: 50%;
  text-align: center;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .sec-01 {
    height: 100vh;
  }
  .sec-01 .bgi .img-left {
    width: calc(50% - 150px);
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }
  .sec-01 .bgi .img-right {
    width: calc(50% - 150px);
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
  }
  .sec-01 .contents {
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }
  .sec-01 .txtbox {
    color: #000;
    text-align: center;
  }
  .sec-01 .txtbox .txt1 {
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    line-height: 22px;
  }
  .sec-01 .txtbox .txt2 {
    font-size: 29px;
    margin: 24px 0 22px;
  }
  .sec-01 .txtbox .txt3 {
    font-size: 22px;
    line-height: 28px;
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
  }
}

.sec-02 {
  padding: 0 !important;
}

.sec-02 .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

/* .sec-02 .video::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 25px solid #BA0C2F;
  content: "";
} */

#controlBar_bg-movie {
  display: none !important;
}

.sec-02 .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media screen and (min-width: 768px) {
  .sec-02 {
    height: calc(100vh + 45px);
  }
  .sec-02 .video {
    height: calc(100vh + 45px);
    padding: 0;
    overflow: hidden;
  }
  /* .sec-02 .video::after {
    border: 50px solid #BA0C2F;
    border-top: 120px solid #BA0C2F;
    content: "";
  } */
  /* .sec-02 .video iframe {
    position: absolute;
    top: -4%;
    left: -15%;
    width: 130% !important;
    height: 120% !important;
  } */
}

.sec-03 {
  padding: 16vw 0 0 !important;
}

.sec-03 h2.ttl {
  font-size: 20px;
  width: 105%;
  letter-spacing: -0.025em;
}

.sec-03 .set .txt {
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0;
  font-weight: 500;
}

.sec-03 .set .txt.txt1 {
  margin: 20px 0 25px;
}

.sec-03 .imgbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}

.sec-03 .imgbox .img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .sec-03 {
    padding: 0 25px !important;
    position: relative;
  }
  .sec-03 .contents {
    height: 100%;
    padding: 210px 0 125px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    max-width: 1340px;
  }
  .sec-03 .contents .set {
    min-height: inherit;
    display: block;
  }
  .sec-03 h2.ttl {
    font-size: 34px;
    line-height: 50px;
    text-align: left;
    margin-bottom: 340px;
    letter-spacing: 0;
  }
  .sec-03 .set {
    text-align: left;
    color: #fff;
  }
  .sec-03 .set .txt1 {
    margin: 4px 0 0 !important;
    color: #000;
    font-size: 15px;
  }
  .sec-03 .set .txt2 {
    margin-top: 22px !important;
    font-size: 15px;
    line-height: 24px;
    color: #000;
  }
  .sec-03 .imgbox {
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0 !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .sec-03 .imgbox .img {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  .sec-03 .imgbox .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.sec-04 .ttlbox {
  padding: 8vw 0 5.5vw;
}

.sec-04 .imgbox {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid;
  border-left: none;
  border-bottom: none;
}

.sec-04 .imgbox .item {
  width: 33.33334%;
  border-left: 1px solid;
  border-bottom: 1px solid;
  box-sizing: border-box;
  word-break: break-all;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0;
  overflow: hidden;
}

.sec-04 .imgbox .item .num {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16.5px;
  position: absolute;
  top: 6px;
  left: 7px;
  z-index: 1;
}

.sec-04 .imgbox .item a {
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.sec-04 .imgbox .item .img {
  padding: 5px 0 0 0;
  position: relative;
  margin: 0 0 5px 7px;
  height: 95px !important;
}

.sec-04 .imgbox .item .img .hide {
  position: absolute;
  top: -5px;
  right: 0;
  left: 7px;
  opacity: 0;
  transition: all 0.3s ease;
}

.sec-04 .imgbox .item .img img {
  width: 100%;
  object-fit: cover;
  opacity: 1;
}

.sec-04 .imgbox .item .txt {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  margin: 0 6px 4px 7px;
}

.sec-04 .imgbox .item .desc {
  font-weight: 500;
  font-size: 8px;
  line-height: 12px;
  position: relative;
  z-index: 1;
  margin: 0 4px 0 7px;
  font-size: 2.125vw;
}

.sec-04 .imgbox .item::before {
  content: "";
  width: 10px;
  height: 18px;
  background: url(/cms/img/texcyluxe/2025AW/polygon_arr.png) center no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 6px;
  bottom: 8px;
  z-index: 1;
}

.sec-04 .imgbox .item .txt img {
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
}

@media screen and (max-width: 767px) {
  .sec-04 .imgbox .item .img img {
    top: -5px !important;
  }
  .sec-04 .imgbox .item .img .hide {
    top: -5px !important;
    z-index: 2;
  }
  .sec-04 .imgbox .item .img {
    pointer-events: none;
  }
  .sec-04 .imgbox .item .num,
  .sec-04 .imgbox .item .txt,
  .sec-04 .imgbox .item .desc {
    z-index: 1010;
  }
  .sec-04 a:hover img {
    opacity: 1 !important;
  }
}

@media screen and (min-width: 768px) {
  hr.section-line {
    margin: 0 auto;
  }
  .ttl-style-1 .txt2 {
    margin-top: -4px;
  }
  .sec-04 {
    padding: 85px 0 105px !important;
  }
  .sec-04 .ttlbox {
    padding: 0 0 22px;
  }
  .sec-04 .imgbox {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid;
    border-left: none;
    border-bottom: none;
  }
  .sec-04 .imgbox .item {
    width: 20%;
    border-left: 1px solid;
    border-bottom: 1px solid;
    box-sizing: border-box;
    word-break: break-all;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0;
    overflow: hidden;
  }
  .sec-04 .imgbox .item .num {
    font-size: 24px;
    top: 10px;
    left: 10px;
    z-index: 1010;
  }
  .sec-04 .imgbox .item a {
    display: block;
    position: relative;
    transition: all 0.3s ease;
  }
  .sec-04 .imgbox .item a:hover img {
    opacity: 0 !important;
    transition: all 0.6s ease;
  }
  .sec-04 .imgbox .item a:hover img.hide {
    opacity: 1 !important;
    z-index: 10;
  }
  .sec-04 .imgbox .item .img {
    padding: 5px 0 0 0;
    position: relative;
    margin: 0 0 25px 15px;
    height: 165px !important;
  }
  .sec-04 .imgbox .item .img .hide {
    position: absolute !important;
    top: -1px;
    right: 0;
    left: 0px;
    opacity: 0 !important;
    transition: all 0.6s ease;
  }
  .sec-04 .imgbox .item .img img {
    width: 100%;
    object-fit: cover;
    opacity: 1 !important;
    z-index: 1;
  }
  .sec-04 .imgbox .item .txt {
    font-size: 14px;
    line-height: 14px;
    margin: 0 12px 4px 12px;
    z-index: 1011;
  }
  .sec-04 .imgbox .item .desc {
    font-size: 10px;
    line-height: 15px;
    position: relative;
    z-index: 1;
    margin: 0 6px 0 12px;
    z-index: 1011;
  }
  .sec-04 .imgbox .item::before {
    content: "";
    width: 16px;
    height: 24px;
    background: url(/cms/img/texcyluxe/2025AW/polygon_arr.png) center no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: 20px;
    bottom: 10px;
    z-index: 1;
  }
  .sec-04 .imgbox .item .txt img {
    -webkit-transition: 1s ease-out;
    transition: 1s ease-out;
  }
}

.sec-05 {
  margin-bottom: -5vw;
}

#sec5-box {
  margin-top: 5vw;
}

#sec5-box h2 {
  margin-right: 15px;
}

#sec5-box h3 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 28px;
  color: #BA0C2F;
  padding: 4vw 0 6vw;
}

.ttl-number {
  text-align: center;
}

.ttl-number span {
  font-size: 50px;
  font-weight: 600;
  font-family: "Figtree", sans-serif;
  line-height: 50px;
}

@media screen and (min-width: 768px) {
  #sec5-box {
    margin: 0;
  }
  #sec5-box h2 {
    margin-right: 15px;
    width: 689px;
  }
  #sec5-box h3 {
    font-size: 14px;
    line-height: 27px;
    padding: 20px 0 0;
  }
  .ttl-number {
    text-align: center;
  }
  .ttl-number span {
    font-size: 100px;
    line-height: 100px;
  }
}

@media screen and (min-width: 768px) {
  .sec-05 {
    margin: 0 0 6px;
  }
  .sec-05 .contents {
    max-width: 1440px;
    padding: 0;
    position: relative;
  }
  .sec-05 h2 {
    visibility: visible;
    position: absolute;
    left: 59.5%;
    top: 6%;
  }
  .sec-05 .photo {
    max-width: 780px;
    width: 55%;
  }
  .sec-05 .imgbox-01 {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
  }
  .sec-05 .block {
    max-width: 510px;
    margin: 0 70px;
    width: 36%;
    padding-top: 14%;
  }
}

@media screen and (min-width: 768px) {
  .sec-06 {
    padding: 0 !important;
  }
  .sec-06 .contents {
    max-width: 1440px;
    padding: 0;
    position: relative;
  }
  .sec-06 h2 {
    position: absolute;
    top: 7.5%;
    left: 70px;
    width: 35.5%;
    text-align: right;
  }
  .sec-06 .photo {
    max-width: 510px;
    margin: 0 70px;
    width: 36%;
    padding-top: 14%;
  }
  .sec-06 .imgbox-01 {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .sec-06 .photo1 {
    max-width: 780px;
    width: 55%;
  }
  .sec-06 .txtbox {
    margin: -10.5% 0 0 70px;
  }
}

.sec-07 .set1 {
  margin-top: 5vw;
}

.sec-07 .set1 .img1 {
  margin: 0 -31px 6vw 30px;
}

.sec-07 .set2 .img2 {
  margin: 0 28% 0 -31px;
}

.sec-07 .txtbox {
  margin: 8vw 0 0;
}

@media screen and (min-width: 768px) {
  .sec-07 {
    margin-top: 120px;
  }
  .sec-07 .contents {
    max-width: 1440px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .sec-07 .set1 {
    margin-top: 0;
    max-width: 780px;
    width: 55%;
  }
  .sec-07 .set2 {
    max-width: 510px;
    margin: 0 70px;
    width: 36%;
    padding-top: 14%;
  }
  .sec-07 .ttlbox {
    position: absolute;
    left: 59.5%;
    top: 6%;
  }
  .sec-07 .set1 .img1 {
    margin: 0;
  }
  .sec-07 .set2 .img2 {
    margin: 0;
  }
  .sec-07 .txtbox {
    margin: 40px 0 0;
  }
}

.sec-08 .set {
  margin-top: 5vw;
  position: relative;
}

.sec-08 .set .col-l {
  margin: 0 -31px 6vw 26%;
}

.sec-08 .set .photo {
  margin: 0 8% 0 -31px;
}

.sec-08 .txtbox {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .sec-08 {
    margin: 0;
    padding: 0;
  }
  .sec-08 .contents {
    max-width: 1440px;
    padding: 0;
    position: relative;
  }
  .sec-08 .ttlbox {
    position: absolute;
    top: 7.5%;
    left: 70px;
    width: 35.5%;
  }
  .sec-08 .ttlbox h2 {
    text-align: right;
  }
  .sec-08 .set {
    margin-top: 0;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .sec-08 .set .col-l {
    max-width: 510px;
    margin: 0 70px;
    width: 36%;
    padding-top: 14%;
  }
  .sec-08 .set .photo {
    margin: 0;
    max-width: 780px;
    width: 55%;
  }
  .sec-08 .txtbox {
    margin: -10.5% 0 0 70px;
  }
}

.sec-09 .img-gr {
  margin-top: 5vw;
}

.sec-09 .block {
  margin: 6vw 10% 0;
}

.sec-09 .txtbox {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .sec-09 .contents {
    max-width: 1440px;
    padding: 0;
    position: relative;
  }
  .sec-09 h2 {
    position: absolute;
    left: 59.5%;
    top: 6%;
  }
  .sec-09 .set {
    position: relative;
  }
  .sec-09 .img-gr {
    display: flex;
    justify-content: space-between;
  }
  .sec-09 .block {
    max-width: 510px;
    margin: 0 70px;
    width: 36%;
    padding-top: 14%;
  }
  .sec-09 .photo1 {
    max-width: 780px;
    width: 55%;
    margin: 0;
  }
  .sec-09 .txtbox {
    margin-top: 35px;
  }
}

.bg-color {
  background: #BA0C2F;
  color: #FFF;
}

.sec-10 {
  margin-top: 13vw;
}

.sec-10 h2 {
  margin-top: 10vw;
}

.sec-10 h3 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 28px;
  padding: 4vw 0 0;
}

@media screen and (min-width: 768px) {
  .sec-10 {
    margin: 10px 0 -15px;
    padding-bottom: 0 !important;
  }
  .sec-10 .contents {
    max-width: 1350px;
  }
  .sec-10 h2 {
    margin-top: 105px;
    max-width: 720px;
  }
  .sec-10 h3 {
    font-size: 14px;
    line-height: 27px;
    padding: 20px 0 0;
  }
}

.sec-11 .set {
  margin-top: 5vw;
}

.sec-11 .txtbox {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .sec-11 .contents {
    max-width: 1350px;
  }
  .sec-11 .set {
    margin-top: 10px;
  }
  .sec-11 .txtbox {
    margin-top: 23px;
  }
  .sec-11 .img-gr {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sec-11 .photo1 {
    max-width: 648px;
    width: 50%;
  }
  .sec-11 .photo2 {
    max-width: 648px;
    width: 50%;
  }
}

.sec-12 .set {
  margin-top: 5vw;
}

.sec-12 .img-gr {
  position: relative;
}

.sec-12 .txtbox {
  margin: 8vw 0 0;
}

@media screen and (min-width: 768px) {
  .sec-12 {
    margin-top: -150px;
  }
  .sec-12 .contents {
    max-width: 1350px;
  }
  .sec-12 .set {
    margin-top: 13px;
  }
  .sec-12 .txtbox {
    margin-top: 23px;
  }
  .sec-12 .img-gr {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sec-12 .photo1 {
    max-width: 648px;
    width: 50%;
  }
  .sec-12 .photo2 {
    max-width: 648px;
    width: 50%;
  }
}

.sec-13 .set {
  margin-top: 5vw;
}

.sec-13 .txtbox {
  margin: 8vw 0 0 0;
}

@media screen and (min-width: 768px) {
  .sec-13 {
    margin-top: -145px;
  }
  .sec-13 .contents {
    max-width: 1350px;
  }
  .sec-13 .set {
    margin-top: 10px;
  }
  .sec-13 .txtbox {
    margin-top: 23px;
  }
  .sec-13 .img-gr {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sec-13 .photo1 {
    max-width: 648px;
    width: 50%;
  }
  .sec-13 .photo2 {
    max-width: 648px;
    width: 50%;
  }
}

.sec-14 .set {
  margin-top: 5vw;
}

.sec-14 .txtbox {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .sec-14 {
    margin-top: -145px;
  }
  .sec-14 .contents {
    max-width: 1350px;
  }
  .sec-14 .set {
    margin-top: 10px;
  }
  .sec-14 .txtbox {
    margin-top: 23px;
  }
  .sec-14 .img-gr {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sec-14 .photo1 {
    max-width: 648px;
    width: 50%;
  }
  .sec-14 .photo2 {
    max-width: 648px;
    width: 50%;
  }
}

.sec-15 .set {
  margin-top: 8vw;
}

.sec-15 .txtbox {
  margin-top: 8vw;
  padding-bottom: 10vw;
}

@media screen and (min-width: 768px) {
  .sec-15 {
    margin-top: -150px;
    padding-bottom: 0 !important;
  }
  .sec-15 .contents {
    max-width: 1350px;
  }
  .sec-15 .set {
    margin-top: 10px;
  }
  .sec-15 .txtbox {
    margin-top: 23px;
    padding-bottom: 100px;
  }
  .sec-15 .img-gr {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sec-15 .photo1 {
    max-width: 648px;
    width: 50%;
  }
  .sec-15 .photo2 {
    max-width: 648px;
    width: 50%;
  }
}

.sec-16 h2 {
  margin: 13vw 5% 0 0;
}

.sec-16 h3 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 28px;
  color: #BA0C2F;
  padding: 4vw 0 0;
}

@media screen and (min-width: 768px) {
  .sec-16 {
    padding-bottom: 0 !important;
  }
  .sec-16 h2 {
    margin: 100px 0 0 14px;
    max-width: 710px;
  }
  .sec-16 h3 {
    padding: 16px 10px 0px;
  }
}

.sec-17 .ttl-number {
  text-align: right;
  margin-bottom: -45px;
}

.sec-17 .photo1 {
  margin: 0 27% 0 -31px;
  position: relative;
  z-index: 2;
}

.sec-17 .photo2 {
  margin: -10vw -31px 8vw 32%;
}

@media screen and (min-width: 768px) {
  .sec-17 {
    margin-top: -15px;
    padding-bottom: 0 !important;
  }
  .sec-17 .ttl-number {
    margin-bottom: 20px;
    padding-right: 18px;
  }
  .sec-17 .photo1 {
    margin: 0;
    position: relative;
    z-index: 2;
    width: 50%;
  }
  .sec-17 .photo2 {
    margin: 0;
    width: 50%;
  }
  .sec-17 .img-gr {
    display: flex;
    justify-content: center;
    max-width: 1002px;
    margin: auto;
  }
  .sec-17 .txtbox {
    padding: 36px 13px;
  }
}

.sec-18 .ttl-number {
  text-align: left;
  margin-bottom: -45px;
}

.sec-18 .photo1 {
  margin: 0 -31px 0 27%;
  position: relative;
  z-index: 2;
}

.sec-18 .photo2 {
  margin: -10vw 32% 8vw -31px;
}

@media screen and (min-width: 768px) {
  .sec-18 .contents {
    max-width: 1340px;
    position: relative;
  }
  .sec-18 .img-gr {
    display: flex;
    justify-content: space-between;
  }
  .sec-18 .ttl-number {
    margin-bottom: -45px;
  }
  .sec-18 .photo1 {
    margin: 0;
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding-top: 12%;
    width: 39%;
  }
  .sec-18 .photo2 {
    margin: 0;
    max-width: 708px;
    width: 54%;
  }
  .sec-18 h2 {
    position: absolute;
    text-align: right !important;
    top: 2.5%;
    left: 45px;
    width: 35.5%;
  }
  .sec-18 .txtbox {
    margin-top: -7%;
  }
}

.sec-19 .set {
  margin-top: 5vw;
}

.sec-19 .img-gr {
  display: flex;
  width: calc(100% + 62px);
  margin: 0 -31px;
}

.sec-19 .txtbox {
  margin-top: 8vw;
}

.sec-19 .block {
  margin: 6vw 14% 0;
}

@media screen and (min-width: 768px) {
  .sec-19 {
    margin: -45px 0 -50px;
  }
  .sec-19 .contents {
    max-width: 1340px;
    position: relative;
  }
  .sec-19 .set {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
  }
  .sec-19 h2 {
    width: 22%;
    text-align: right;
    position: absolute;
    top: -5px;
    left: 20px;
  }
  .sec-19 .img-gr {
    display: flex;
    max-width: 905px;
    margin: 0;
    order: 2;
    width: 72%;
  }
  .sec-19 .txtbox {
    margin-top: 35px;
  }
  .sec-19 .block {
    margin: 0;
    max-width: 280px;
    padding-top: 125px;
    width: 22%;
  }
}

.sec-20 .set {
  margin-top: 5vw;
}

.sec-20 .photo {
  width: calc(100% + 62px);
  margin: 0 -31px;
}

.sec-20 .txtbox {
  margin-top: 8vw;
}

.sec-20 .block {
  margin: 6vw 15% 0;
}

@media screen and (min-width: 768px) {
  .sec-20 .contents {
    max-width: 1340px;
    position: relative;
  }
  .sec-20 .set {
    margin-top: 0;
  }
  .sec-20 .img-gr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .sec-20 .ttl-number {
    margin-bottom: 0;
  }
  .sec-20 .txtbox {
    margin: 0 0 35px;
  }
  .sec-20 .block {
    margin: 0;
    position: relative;
    z-index: 2;
    max-width: 438px;
    padding-top: 12%;
    width: 36%;
    display: flex;
    flex-wrap: wrap-reverse;
  }
  .sec-20 .photo {
    margin: 0;
    max-width: 708px;
    width: 56%;
  }
  .sec-20 h2 {
    position: absolute;
    text-align: left;
    right: 0;
    width: 35%;
    bottom: 77%;
  }
}

.sec-21 .set {
  margin-top: 5vw;
}

.sec-21 .photo {
  width: calc(100% + 62px);
  margin: 0 -31px;
}

.sec-21 .txtbox {
  margin: 8vw 15% 10vw;
}

.sec-21 .block {
  margin: 6vw 15% 10vw;
}

.txtbox {
  position: relative;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .sec-21 {
    margin: -35px 0 60px;
  }
  .sec-21 .contents {
    max-width: 1440px;
    padding: 0;
    position: relative;
  }
  .sec-21 .set {
    margin-top: 0;
  }
  .sec-21 .img-gr {
    display: flex;
    justify-content: flex-end;
  }
  .sec-21 .block {
    max-width: 1056px;
    width: 74%;
    margin: 0 0 0 -125px;
  }
  .sec-21 .photo {
    max-width: 438px;
    padding-top: 14%;
    width: 32%;
    position: relative;
    z-index: 1;
    margin-right: -125px;
  }
  .sec-21 .txtbox {
    margin: -10% 0 0 70px;
  }
  .sec-21 .block {
    margin: 0;
  }
  .sec-21 h2 {
    position: absolute;
    top: 6%;
    right: 77%;
  }
}

@media screen and (max-width: 1339px) and (min-width: 768px) {
  .sec-20 h2 {
    right: 0;
    width: 37%;
    bottom: 83%;
  }
}

@media screen and (max-width: 1209px) and (min-width: 768px) {
  .sec-05 h2,
  .sec-07 .ttlbox,
  .sec-09 h2 {
    top: 3%;
  }
  .sec-06 h2,
  .sec-08 .ttlbox {
    top: 3%;
    width: 35%;
  }
  .sec-18 h2 {
    top: 1%;
  }
  .sec-21 h2 {
    position: absolute;
    top: 3%;
    right: 79%;
  }
  .sec-21 .txtbox {
    margin: -9% 0 0 64px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .sec-20 h2 {
    right: 0;
    width: 38%;
    bottom: 86%;
    font-size: 95px;
  }
  .sec-20 h2 span {
    font-size: 90px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .sec-05 h2,
  .sec-07 .ttlbox,
  .sec-09 h2 {
    top: 0%;
  }
  .sec-06 h2,
  .sec-08 .ttlbox {
    top: 0%;
    width: 33%;
  }
  .sec-18 h2 {
    top: -2%;
    width: 34.5%;
  }
  .sec-21 h2 {
    position: absolute;
    top: 0%;
    right: 80%;
  }
  .sec-21 .txtbox {
    margin: -9% 0 0 64px;
  }
  .sec-21 .photo {
    margin-right: -75px;
  }
  .sec-21 .txtbox {
    margin: -8% 0 0 29px;
  }
  .sec-21 {
    margin: -35px 0 0;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    -ms-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

html {
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

@supports (-webkit-hyphens: none) {
  html {
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
  }
  .fnt-inter-b {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
  .bold {
    font-weight: 600 !important;
  }
}

@supports (-webkit-touch-callout: none) {
  html {
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
  }
  .fnt-inter-b {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
  .bold {
    font-weight: 600 !important;
  }
}

@supports not (-webkit-touch-callout: none) {
  html {
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
  }
  .fnt-inter-b {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }
  .bold {
    font-weight: 600 !important;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    html {
      -webkit-font-smoothing: antialiased;
      /* WebKit  */
    }
    .fnt-inter-b {
      font-family: "Inter", sans-serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: normal;
    }
    .bold {
      font-weight: 600 !important;
    }
  }
}
