:root {
  --white: #fff;
  --white-dark: #f2f2f2;
  --black: #000;
  --black-light: #e1e1e9;
  --regular: #2e2e2e;
}

* {
  outline: none;
  outline-width: 0pt;
  outline-style: none;
  resize: none !important;
  -webkit-resize: none !important;
  -moz-resize: none !important;
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--white);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

img,
video {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.rounded {
  border-radius: 20px;
}

/* [BEGIN] Texts */
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-wrap: balance;
  color: var(--regular);
}

h2 {
  margin: 0;
  padding: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 110%;
  text-wrap: balance;
  color: var(--black);
}

h3 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  text-wrap: balance;
  color: var(--black);
}

h4 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  text-wrap: balance;
  color: var(--black);
}

/* [END] Texts */
#main-site {
  margin-inline: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.container.no-padding {
  padding: 0;
}
.container .img {
  width: 100%;
}

.content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

#box-video {
  margin: 0;
  padding: 0;
}

#box02 {
  position: relative;
  overflow: hidden;
}
#box02 .navigation-manual {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
#box02 .navigation-manual .manual-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--black);
  cursor: pointer;
}
#box02 .navigation-manual .manual-btn:hover {
  background-color: #faa41a;
}
#box02 .carousel {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  width: 500%;
}
#box02 .carousel input[type=radio] {
  display: none;
}
#box02 .carousel #box02-slider-01:checked ~ .slider-01 {
  margin-left: 0;
}
#box02 .carousel #box02-slider-02:checked ~ .slider-01 {
  margin-left: -20%;
}
#box02 .carousel #box02-slider-03:checked ~ .slider-01 {
  margin-left: -40%;
}
#box02 .carousel #box02-slider-04:checked ~ .slider-01 {
  margin-left: -60%;
}
#box02 .carousel .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 20%;
  transition: 250ms ease-in-out;
}
#box02 .carousel .item .img {
  width: 100%;
  font-size: 0;
  padding-top: 20px;
  padding-left: 20px;
  border-radius: 24px;
}
#box02 .carousel .item .content {
  gap: 20px;
  text-align: center;
}
#box02 .carousel .item.slider-01 .img {
  background: #f2e2ef;
  background: linear-gradient(0deg, #f2e2ef 0%, #dbb7f5 100%);
}
#box02 .carousel .item.slider-02 .img {
  background: #f5d1bc;
  background: linear-gradient(0deg, #f5d1bc 0%, #f6edeb 100%);
}
#box02 .carousel .item.slider-03 .img {
  background: #f3c8a8;
  background: linear-gradient(0deg, #f3c8a8 0%, #bbd0f1 100%);
}
#box02 .carousel .item.slider-04 .img {
  background: #ced9ea;
  background: linear-gradient(0deg, #ced9ea 0%, #eaeae8 100%);
}

#box03 {
  position: relative;
  overflow: hidden;
}
#box03 .navigation-manual {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
#box03 .navigation-manual .manual-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--black);
  cursor: pointer;
}
#box03 .navigation-manual .manual-btn:hover {
  background-color: #faa41a;
}
#box03 .carousel {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  width: calc(100% * 7);
}
#box03 .carousel input[type=radio] {
  display: none;
}
#box03 .carousel #box03-slider-01:checked ~ .slider-01 {
  margin-left: 0;
}
#box03 .carousel #box03-slider-02:checked ~ .slider-01 {
  margin-left: calc((100% / 7) * -1);
}
#box03 .carousel #box03-slider-03:checked ~ .slider-01 {
  margin-left: calc((100% / 7) * -2);
}
#box03 .carousel #box03-slider-04:checked ~ .slider-01 {
  margin-left: calc((100% / 7) * -3);
}
#box03 .carousel #box03-slider-05:checked ~ .slider-01 {
  margin-left: calc((100% / 7) * -4);
}
#box03 .carousel #box03-slider-06:checked ~ .slider-01 {
  margin-left: calc((100% / 7) * -5);
}
#box03 .carousel .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% / 7);
  transition: 250ms ease-in-out;
}
#box03 .carousel .item .img {
  width: 100%;
  font-size: 0;
  border-radius: 24px;
}
#box03 .carousel .item .content {
  gap: 20px;
  text-align: center;
}
#box03 .carousel .item.slider-01 .img {
  background: #f2e2ef;
  background: linear-gradient(0deg, #f2e2ef 0%, #dbb7f5 100%);
}
#box03 .carousel .item.slider-02 .img {
  background: #f5d1bc;
  background: linear-gradient(0deg, #f5d1bc 0%, #f6edeb 100%);
}
#box03 .carousel .item.slider-03 .img {
  background: #f3c8a8;
  background: linear-gradient(0deg, #f3c8a8 0%, #bbd0f1 100%);
}
#box03 .carousel .item.slider-04 .img {
  background: #ced9ea;
  background: linear-gradient(0deg, #ced9ea 0%, #eaeae8 100%);
}

#box04 {
  position: relative;
  overflow: hidden;
}
#box04 .navigation-manual {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
#box04 .navigation-manual .manual-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--black);
  cursor: pointer;
}
#box04 .navigation-manual .manual-btn:hover {
  background-color: #faa41a;
}
#box04 .carousel {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  width: 500%;
}
#box04 .carousel input[type=radio] {
  display: none;
}
#box04 .carousel #box04-slider-01:checked ~ .slider-01 {
  margin-left: 0;
}
#box04 .carousel #box04-slider-02:checked ~ .slider-01 {
  margin-left: -20%;
}
#box04 .carousel #box04-slider-03:checked ~ .slider-01 {
  margin-left: -40%;
}
#box04 .carousel #box04-slider-04:checked ~ .slider-01 {
  margin-left: -60%;
}
#box04 .carousel .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 20%;
  transition: 250ms ease-in-out;
}
#box04 .carousel .item .img {
  width: 100%;
  font-size: 0;
  padding-top: 20px;
  padding-left: 20px;
  border-radius: 24px;
}
#box04 .carousel .item .content {
  gap: 20px;
  text-align: center;
}
#box04 .carousel .item.slider-01 .img {
  background: #f6d4c3;
  background: linear-gradient(0deg, #f6d4c3 0%, #f6eeec 100%);
}
#box04 .carousel .item.slider-02 .img {
  background: #f3c8a7;
  background: linear-gradient(0deg, #f3c8a7 0%, #d9e6f5 100%);
}
#box04 .carousel .item.slider-03 .img {
  background: #d0dbeb;
  background: linear-gradient(0deg, #d0dbeb 0%, #eae9e7 100%);
}
#box04 .carousel .item.slider-04 .img {
  background: #d0dbeb;
  background: linear-gradient(0deg, #d0dbeb 0%, #eae9e7 100%);
}

#box05 {
  position: relative;
  overflow: hidden;
}
#box05 .navigation-manual {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
#box05 .navigation-manual .manual-btn {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--black);
  cursor: pointer;
}
#box05 .navigation-manual .manual-btn:hover {
  background-color: #faa41a;
}
#box05 .carousel {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  width: 500%;
}
#box05 .carousel input[type=radio] {
  display: none;
}
#box05 .carousel #box05-slider-01:checked ~ .slider-01 {
  margin-left: 0;
}
#box05 .carousel #box05-slider-02:checked ~ .slider-01 {
  margin-left: -20%;
}
#box05 .carousel #box05-slider-03:checked ~ .slider-01 {
  margin-left: -40%;
}
#box05 .carousel #box05-slider-04:checked ~ .slider-01 {
  margin-left: -60%;
}
#box05 .carousel .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 20%;
  transition: 250ms ease-in-out;
}
#box05 .carousel .item .img {
  width: 100%;
  font-size: 0;
  padding-top: 20px;
  padding-left: 20px;
  border-radius: 24px;
}
#box05 .carousel .item .content {
  gap: 20px;
  text-align: center;
}
#box05 .carousel .item.slider-01 .img {
  background: #f3c8a7;
  background: linear-gradient(0deg, #f3c8a7 0%, #bad0f2 100%);
}
#box05 .carousel .item.slider-02 .img {
  background: #f7f7f7;
  background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f7 100%);
}
#box05 .carousel .item.slider-03 .img {
  background: #f7f7f7;
  background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f7 100%);
}
#box05 .carousel .item.slider-04 .img {
  background: #f7f7f7;
  background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f7 100%);
}

/* #box-table */
#box-table {
  flex-direction: column;
}
#box-table h4 {
  width: 100%;
}
#box-table .table-content {
  max-width: 100%;
  overflow-x: auto;
}
#box-table .table-content table {
  margin-top: 20px;
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  color: var(--regular);
}
#box-table .table-content table .title {
  font-size: 18px;
  font-weight: 700;
  text-wrap: balance;
}
#box-table .table-content table thead th {
  padding: 10px;
  border-right: solid 1px #777;
}
#box-table .table-content table thead th:last-child {
  border-right: 0;
}
#box-table .table-content table tbody tr:nth-child(odd) {
  background-color: var(--white-dark);
}
#box-table .table-content table tbody tr td {
  padding: 10px;
  font-size: 18px;
  text-align: center;
  text-wrap: balance;
  border-right: solid 1px #777;
}
#box-table .table-content table tbody tr td:first-child {
  width: 200px;
  text-align: left;
}
#box-table .table-content table tbody tr td:last-child {
  border-right: 0;
}

/* /#box-table */
/* [BEGIN] mobile */
@media screen and (max-width: 768px) {
  .no-mobile {
    display: none !important;
  }
}
/* [END] mobile */
/* [BEGIN] Desktop */
@media screen and (min-width: 769px) {
  .no-desktop {
    display: none !important;
  }

  h3 {
    font-size: 24px;
  }

  #box02 .carousel input[type=radio] {
    display: none;
  }
  #box02 .carousel .item {
    padding: 40px;
    border-radius: 20px;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }
  #box02 .carousel .item .img {
    padding: 0;
    width: 100%;
    background: transparent;
  }
  #box02 .carousel .item .content {
    padding: 40px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.6);
  }
  #box02 .carousel .item.slider-01 {
    background: #f2e2ef;
    background: linear-gradient(0deg, #f2e2ef 0%, #dbb7f5 100%);
  }
  #box02 .carousel .item.slider-02 {
    background: #f5d1bc;
    background: linear-gradient(0deg, #f5d1bc 0%, #f6edeb 100%);
  }
  #box02 .carousel .item.slider-03 {
    background: #f3c8a8;
    background: linear-gradient(0deg, #f3c8a8 0%, #bbd0f1 100%);
  }
  #box02 .carousel .item.slider-04 {
    background: #ced9ea;
    background: linear-gradient(0deg, #ced9ea 0%, #eaeae8 100%);
  }

  #box04 .carousel input[type=radio] {
    display: none;
  }
  #box04 .carousel .item {
    padding: 40px;
    border-radius: 20px;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }
  #box04 .carousel .item .img {
    padding: 0;
    width: 100%;
    background: transparent;
  }
  #box04 .carousel .item .content {
    padding: 40px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.6);
  }
  #box04 .carousel .item.slider-01 {
    background: #f6d4c3;
    background: linear-gradient(0deg, #f6d4c3 0%, #f6eeec 100%);
  }
  #box04 .carousel .item.slider-02 {
    background: #f3c8a7;
    background: linear-gradient(0deg, #f3c8a7 0%, #d9e6f5 100%);
  }
  #box04 .carousel .item.slider-03 {
    background: #d0dbeb;
    background: linear-gradient(0deg, #d0dbeb 0%, #eae9e7 100%);
  }
  #box04 .carousel .item.slider-04 {
    background: #d0dbeb;
    background: linear-gradient(0deg, #d0dbeb 0%, #eae9e7 100%);
  }

  #box05 .carousel input[type=radio] {
    display: none;
  }
  #box05 .carousel .item {
    padding: 40px;
    border-radius: 20px;
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
  }
  #box05 .carousel .item .img {
    padding: 0;
    width: 100%;
    background: transparent;
  }
  #box05 .carousel .item .content {
    padding: 40px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.6);
  }
  #box05 .carousel .item.slider-01 {
    background: #f3c8a7;
    background: linear-gradient(0deg, #f3c8a7 0%, #bad0f2 100%);
  }
  #box05 .carousel .item.slider-02 {
    background: #f7f7f7;
    background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f7 100%);
  }
  #box05 .carousel .item.slider-03 {
    background: #f7f7f7;
    background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f7 100%);
  }
  #box05 .carousel .item.slider-04 {
    background: #f7f7f7;
    background: linear-gradient(0deg, #f7f7f7 0%, #f7f7f7 100%);
  }

  /* #box-table */
  #box-table .table-content table thead th {
    padding: 20px;
  }
  #box-table .table-content table tbody tr td {
    padding: 20px;
  }

  /* /#box-table */
}
/* [END] Desktop */