.form-field {
  border-top: solid 1px #EEEEEE;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(8px * 4);
  padding-bottom: calc(8px * 4);
  border-bottom: solid 1px #EEEEEE;
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-top: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 959px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 959px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 44px;
  height: 24px;
  color: #ffffff;
  font-size: 1.4rem;
}

.form-required {
  background: #B7001E;
}

.form-optional {
  background: #223A7B;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #F7F7F5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", serif;
  line-height: 56px;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ccc;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ccc;
}

input:focus,
select:focus,
textarea:focus {
  outline: solid 2px #333333;
}

select {
  background: url("/origin/cct_test/dist/img/common/select.svg") center right 16px/14px 14px no-repeat #F7F7F5;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #F7F7F5;
  border: solid 2px #F7F7F5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #ccc #ccc transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:focus + .wpcf7-list-item-label {
  outline: solid 2px #333333;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #ccc;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:focus) {
  outline: solid 2px #F08100;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #F7F7F5;
  border: solid 2px #F7F7F5;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #ccc;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #ccc;
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.form-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #ccc;
  color: #ffffff;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .form-send {
    height: 72px;
  }
}

@media screen and (max-width: 959px) {
  .form-send {
    height: 64px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    height: 56px;
  }
}

.form-send input[type="submit"] {
  opacity: 0;
  position: absolute;
}

.form-send:has(input[type="submit"]:focus) {
  outline: solid 2px #F08100;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #25862A;
  color: #25862A;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(183, 0, 30, 0.08);
  color: #B7001E;
  border: solid 1px #B7001E;
}

.wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.unaccepted input::-webkit-input-placeholder, .wpcf7 form.unaccepted select::-webkit-input-placeholder, .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(183, 0, 30, 0.4);
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(183, 0, 30, 0.4);
}

.wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.unaccepted input:-ms-input-placeholder, .wpcf7 form.unaccepted select:-ms-input-placeholder, .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(183, 0, 30, 0.4);
}

.wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.unaccepted input::-ms-input-placeholder, .wpcf7 form.unaccepted select::-ms-input-placeholder, .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(183, 0, 30, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(183, 0, 30, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(240, 129, 0, 0.08);
  color: #B7001E;
  border: solid 1px #F08100;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(240, 129, 0, 0.4);
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(240, 129, 0, 0.4);
}

.wpcf7 form.spam input:-ms-input-placeholder, .wpcf7 form.spam select:-ms-input-placeholder, .wpcf7 form.spam textarea:-ms-input-placeholder {
  color: rgba(240, 129, 0, 0.4);
}

.wpcf7 form.spam input::-ms-input-placeholder, .wpcf7 form.spam select::-ms-input-placeholder, .wpcf7 form.spam textarea::-ms-input-placeholder {
  color: rgba(240, 129, 0, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(240, 129, 0, 0.4);
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #B7001E;
  font-size: 1.4rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #B7001E;
  font-size: 1.4rem;
  background-color: rgba(183, 0, 30, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

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

.recaptcha-txt a {
  color: #ccc;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.front-page {
  padding-bottom: calc(8px * 13);
}

@media screen and (max-width: 959px) {
  .front-page {
    padding-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .front-page {
    padding-bottom: calc((8px * 13) * 0.5);
  }
}

.front-page .headline {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: calc(8px * 4);
  font-size: 3.2rem;
}

@media screen and (max-width: 959px) {
  .front-page .headline {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .front-page .headline {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.mv .mv-inner {
  width: 100%;
  background: url("/origin/cct_test/dist/img/top/mv-bg.svg") top/cover no-repeat;
}

@media screen and (max-width: 519px) {
  .mv .mv-inner {
    background-size: contain;
  }
}

.mv .mv-inner .mv-catch {
  width: 100%;
  max-width: 1520px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 1279px) {
  .mv .mv-inner .mv-catch {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .mv-catch {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .mv-catch {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.mv .mv-inner .mv-catch .mv-ttl {
  padding-top: calc(8px * 20);
  padding-bottom: calc(8px * 10);
  font-weight: bold;
  font-size: 4.8rem;
  color: #0C3B1E;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .mv-catch .mv-ttl {
    padding-top: calc((8px * 20) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .mv-catch .mv-ttl {
    padding-top: calc((8px * 20) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .mv-catch .mv-ttl {
    padding-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .mv-catch .mv-ttl {
    padding-bottom: calc((8px * 10) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .mv-catch .mv-ttl {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .mv .mv-inner .mv-catch .mv-ttl {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .mv-catch .mv-ttl {
    padding-top: 96px;
    font-size: 2.7rem;
  }
}

.mv .mv-inner .mv-slider {
  position: relative;
  margin-right: auto;
  padding-right: 48px;
  max-width: 1680px;
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .mv-slider {
    padding-right: 40px;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .mv-slider {
    padding-right: 32px;
  }
}

.mv .mv-inner .mv-slider .mv-slider-inner a.--nolink {
  pointer-events: none;
}

.mv .mv-inner .mv-slider .mv-slider-inner img {
  border-radius: 0 80px 0 0;
}

@media screen and (max-width: 1279px) {
  .mv .mv-inner .mv-slider .mv-slider-inner img {
    height: 480px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .mv-slider .mv-slider-inner img {
    height: 400px;
    border-radius: 0 60px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .mv .mv-inner .mv-slider .mv-slider-inner img {
    height: 320px;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .mv-slider .mv-slider-inner img {
    height: 240px;
    border-radius: 0 40px 0 0;
  }
}

.mv .mv-inner .mv-slider .mv-slider-inner .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  top: calc(50% - 30px);
  right: -32px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .mv-slider .mv-slider-inner .slick-dots {
    position: absolute;
    top: calc(50% - 28px);
    right: -28px;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .mv-slider .mv-slider-inner .slick-dots {
    position: absolute;
    top: calc(50% - 20px);
    right: -20px;
  }
}

.mv .mv-inner .mv-slider .mv-slider-inner .slick-dots li {
  position: relative;
  background: #ffffff;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border: 2px solid #25862A;
  border-radius: 50%;
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .mv-slider .mv-slider-inner .slick-dots li {
    width: 10px;
    height: 10px;
  }
}

.mv .mv-inner .mv-slider .mv-slider-inner .slick-dots li button {
  display: none;
}

.mv .mv-inner .mv-slider .mv-slider-inner .slick-dots li.slick-active {
  background: #25862A;
}

.mv .mv-inner .buttons {
  position: absolute;
  top: calc(50% + 30px);
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .buttons {
    position: absolute;
    top: calc(50% + 28px);
    right: 8px;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .buttons {
    position: absolute;
    top: calc(50% + 20px);
    right: 8px;
  }
}

.mv .mv-inner .buttons .button {
  display: none;
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 959px) {
  .mv .mv-inner .buttons .button {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-inner .buttons .button {
    width: 18px;
    height: 18px;
  }
}

.mv .mv-inner .buttons .is-active {
  display: block !important;
}

.menu .wrap-l {
  max-width: 1800px;
}

.menu .menu-ttl {
  margin-bottom: 24px;
  text-align: center;
}

.menu .menu-ttl__main {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .menu .menu-ttl__main {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .menu .menu-ttl__main {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 519px) {
  .menu .menu-ttl__main {
    font-size: 2.4rem;
  }
}

.menu .menu-ttl__main span {
  position: relative;
  display: inline-block;
  padding: 0 28px;
}

.menu .menu-ttl__main span::before, .menu .menu-ttl__main span::after {
  position: absolute;
  top: calc( 50% + 2px);
  content: '';
  translate: 0 -50%;
  width: 16px;
  height: 23px;
  background: url("/origin/cct_test/dist/img/top/news-ttl-deco.svg") center/contain no-repeat;
  z-index: 1;
}

@media screen and (max-width: 519px) {
  .menu .menu-ttl__main span::before, .menu .menu-ttl__main span::after {
    top: calc( 50% + 1px);
  }
}

.menu .menu-ttl__main span::before {
  left: 0;
}

.menu .menu-ttl__main span::after {
  right: 0;
}

.menu .menu-ttl__sub {
  padding-top: 4px;
  font-weight: bold;
  font-size: 2rem;
  font-family: "Montserrat", serif;
  color: #25862A;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .menu .menu-ttl__sub {
    font-size: 1.6rem;
  }
}

.menu .top-menu-unit {
  padding-top: calc(8px * 2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media screen and (max-width: 959px) {
  .menu .top-menu-unit {
    padding-top: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .menu .top-menu-unit {
    padding-top: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .menu .top-menu-unit {
    gap: 8px;
  }
}

@media screen and (max-width: 767px) {
  .menu .top-menu-unit {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin: 0 auto;
    padding-right: 8px;
  }
}

@media screen and (max-width: 519px) {
  .menu .top-menu-unit {
    padding-top: 0;
  }
}

.menu .top-menu-unit__item a {
  display: block;
}

.menu .top-menu-unit__item a:hover {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
  opacity: 0.9;
}

.point {
  position: relative;
  margin-bottom: calc(8px * 25);
}

@media screen and (max-width: 959px) {
  .point {
    margin-bottom: calc((8px * 25) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .point {
    margin-bottom: calc((8px * 25) * 0.5);
  }
}

.point::before {
  content: '';
  position: absolute;
  top: 90px;
  right: 0;
  width: calc(50% + 600px);
  height: calc(100% - 380px);
  background: #F7F7F5;
  border-radius: 40px 0 0 0;
  z-index: -1;
}

@media screen and (max-width: 959px) {
  .point::before {
    width: calc(50% + 320px);
    position: absolute;
    top: 56px;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .point::before {
    width: calc(50% + 240px);
    position: absolute;
    top: 48px;
    right: 0;
  }
}

@media screen and (max-width: 519px) {
  .point::before {
    width: 100%;
    position: absolute;
    top: 40px;
    right: 0;
  }
}

.point::after {
  content: '';
  position: absolute;
  bottom: -560px;
  left: 0;
  width: 100%;
  height: 1130px;
  background: url("/origin/cct_test/dist/img/top/news-bg.png") center/cover no-repeat;
  border-radius: 0 0 40px 40px;
  z-index: -2;
}

.point .point-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 959px) {
  .point .point-unit {
    display: block;
  }
}

.point .point-unit .point-headline {
  font-weight: bold;
  font-size: 3.6rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  width: 170px;
}

@media screen and (max-width: 959px) {
  .point .point-unit .point-headline {
    margin-bottom: 32px;
    width: 100%;
    font-size: 3.2rem;
    text-align: center;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
}

@media screen and (max-width: 767px) {
  .point .point-unit .point-headline {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-headline {
    font-size: 2.4rem;
  }
}

.point .point-unit .point-headline em {
  font-weight: bold;
  font-size: 6.4rem;
  color: #25862A;
  text-orientation: upright;
}

@media screen and (max-width: 959px) {
  .point .point-unit .point-headline em {
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 767px) {
  .point .point-unit .point-headline em {
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-headline em {
    font-size: 4rem;
  }
}

.point .point-unit .point-headline span {
  font-size: 2rem;
  color: #25862A;
}

.point .point-unit .point-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  width: calc(100% - 240px);
}

@media screen and (max-width: 959px) {
  .point .point-unit .point-list {
    width: 100%;
    gap: 16px;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.point .point-unit .point-list__item {
  background: #ffffff;
  -webkit-box-shadow: 0 0 16px rgba(51, 51, 51, 0.16);
  box-shadow: 0 0 16px rgba(51, 51, 51, 0.16);
  border-radius: 24px 0;
}

.point .point-unit .point-list__item .point-vsl img {
  border-radius: 24px 0 0 0;
}

.point .point-unit .point-list__item .point-dtl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 128px;
}

@media screen and (max-width: 959px) {
  .point .point-unit .point-list__item .point-dtl {
    min-height: 104px;
  }
}

@media screen and (max-width: 767px) {
  .point .point-unit .point-list__item .point-dtl {
    min-height: 88px;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-list__item .point-dtl {
    min-height: auto;
  }
}

.point .point-unit .point-list__item .point-dtl .point-num {
  position: absolute;
  top: -19px;
  padding: 8px 14px 8px 14px;
  border-radius: 0 0 16px 0;
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Montserrat", serif;
  color: #ffffff;
  background: #25862A;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .point .point-unit .point-list__item .point-dtl .point-num {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .point .point-unit .point-list__item .point-dtl .point-num {
    font-size: 1.8rem;
  }
}

.point .point-unit .point-list__item .point-dtl .point-ttl {
  padding: 16px 24px 0 24px;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .point .point-unit .point-list__item .point-dtl .point-ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .point .point-unit .point-list__item .point-dtl .point-ttl {
    padding: 16px 16px 0 16px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-list__item .point-dtl .point-ttl {
    padding: 24px 16px 16px;
    font-size: 1.6rem;
  }
}

.point .point-unit .point-list__item:nth-of-type(1) {
  grid-area: 1 / 1 / 2 / 3;
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-list__item:nth-of-type(1) {
    grid-area: auto;
  }
}

.point .point-unit .point-list__item:nth-of-type(2) {
  grid-area: 2 / 1 / 3 / 2;
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-list__item:nth-of-type(2) {
    grid-area: auto;
  }
}

.point .point-unit .point-list__item:nth-of-type(3) {
  grid-area: 2 / 2 / 3 / 3;
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-list__item:nth-of-type(3) {
    grid-area: auto;
  }
}

.point .point-unit .point-list__item:nth-of-type(4) {
  grid-area: 3 / 1 / 4 / 2;
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-list__item:nth-of-type(4) {
    grid-area: auto;
  }
}

.point .point-unit .point-list__item:nth-of-type(5) {
  grid-area: 3 / 2 / 4 / 3;
}

@media screen and (max-width: 519px) {
  .point .point-unit .point-list__item:nth-of-type(5) {
    grid-area: auto;
  }
}

.news {
  margin-bottom: calc(8px * 13);
}

@media screen and (max-width: 959px) {
  .news {
    margin-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .news {
    margin-bottom: calc((8px * 13) * 0.5);
  }
}

.news .news-deco-l-top,
.news .news-deco-l-btm,
.news .news-deco-r-top,
.news .news-deco-r-btm {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.news .news-deco-l-top {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.news .news-deco-l-top::before {
  content: '';
  background: url("/origin/cct_test/dist/img/top/news-frame-deco.svg") center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
  z-index: 1;
}

.news .news-deco-l-btm {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.news .news-deco-l-btm::before {
  content: '';
  background: url("/origin/cct_test/dist/img/top/news-frame-deco.svg") center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96px;
  height: 96px;
  z-index: 1;
  rotate: 270deg;
}

.news .news-deco-r-top {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.news .news-deco-r-top::before {
  content: '';
  background: url("/origin/cct_test/dist/img/top/news-frame-deco.svg") center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  z-index: 1;
  rotate: 90deg;
}

.news .news-deco-r-btm {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.news .news-deco-r-btm::before {
  content: '';
  background: url("/origin/cct_test/dist/img/top/news-frame-deco.svg") center/contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 96px;
  height: 96px;
  z-index: 1;
  rotate: 180deg;
}

.news .news-inner {
  position: relative;
  padding: 60px 80px;
  background: #ffffff;
  border-radius: 40px;
  border: 1px solid #EEEEEE;
}

@media screen and (max-width: 959px) {
  .news .news-inner {
    padding: 56px;
  }
}

@media screen and (max-width: 767px) {
  .news .news-inner {
    padding: 48px;
  }
}

@media screen and (max-width: 519px) {
  .news .news-inner {
    padding: 32px;
  }
}

.news .news-inner .news-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: calc(8px * 5);
  padding-bottom: calc(8px * 4);
  border-bottom: 1px solid #EEEEEE;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-unit {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .news .news-inner .news-unit {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-unit {
    padding-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .news .news-inner .news-unit {
    padding-bottom: calc((8px * 4) * 0.5);
  }
}

.news .news-inner .news-unit .news-head .news-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
  padding-left: 28px;
}

.news .news-inner .news-unit .news-head .news-ttl::before {
  content: '';
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  translate: 0 -50%;
  width: 16px;
  height: 23px;
  background: url("/origin/cct_test/dist/img/top/news-ttl-deco.svg") center/contain no-repeat;
  z-index: 1;
}

@media screen and (max-width: 519px) {
  .news .news-inner .news-unit .news-head .news-ttl::before {
    top: calc( 50% + 1px);
  }
}

.news .news-inner .news-unit .news-head .news-ttl__main {
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-unit .news-head .news-ttl__main {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .news .news-inner .news-unit .news-head .news-ttl__main {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 519px) {
  .news .news-inner .news-unit .news-head .news-ttl__main {
    font-size: 2.4rem;
  }
}

.news .news-inner .news-unit .news-head .news-ttl__sub {
  padding-top: 4px;
  font-weight: bold;
  font-size: 2rem;
  font-family: "Montserrat", serif;
  color: #25862A;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .news .news-inner .news-unit .news-head .news-ttl__sub {
    font-size: 1.6rem;
  }
}

.news .news-inner .news-unit .news-head .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news .news-inner .news-unit .news-head .cat-list__item {
  margin-right: 8px;
  margin-bottom: 8px;
}

.news .news-inner .news-unit .news-head .cat-list__item a {
  position: relative;
  display: block;
  padding: 6px 12px 7px 24px;
  line-height: 1;
  background: rgba(99, 175, 43, 0.1);
}

.news .news-inner .news-unit .news-head .cat-list__item a::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 11px;
  width: 6px;
  height: 6px;
  background: #25862A;
  border-radius: 1px;
  rotate: 45deg;
}

.news .news-inner .news-unit .news-head .cat-list__item a:hover {
  -webkit-transform: translate(1px, 1px);
  transform: translate(1px, 1px);
}

.news .news-inner .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-list {
    margin-bottom: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.news .news-inner .news-list__item {
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.08);
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.08);
  background: #ffffff;
  border-radius: 16px 0;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-list__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.news .news-inner .news-list__item .news-vsl {
  border-radius: 16px 0 0 0;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-list__item .news-vsl {
    width: 200px;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .news .news-inner .news-list__item .news-vsl {
    width: 170px;
  }
}

@media screen and (max-width: 519px) {
  .news .news-inner .news-list__item .news-vsl {
    width: 150px;
  }
}

.news .news-inner .news-list__item .news-vsl a {
  overflow: hidden;
  display: block;
  border-radius: 16px 0 0 0;
  position: relative;
  aspect-ratio: 3/2;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: #F2F2D6;
}

.news .news-inner .news-list__item .news-vsl a img {
  border-radius: 16px 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.news .news-inner .news-list__item .news-vsl a:hover img {
  scale: 1.05;
}

.news .news-inner .news-list__item .news-dtl {
  position: relative;
  padding: 16px;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-list__item .news-dtl {
    position: initial;
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 767px) {
  .news .news-inner .news-list__item .news-dtl {
    position: initial;
    width: calc(100% - 170px);
  }
}

@media screen and (max-width: 519px) {
  .news .news-inner .news-list__item .news-dtl {
    position: initial;
    width: calc(100% - 150px);
  }
}

.news .news-inner .news-list__item .news-dtl .news-cat {
  position: absolute;
  top: -14px;
  right: 0;
  display: block;
  padding: 4px 16px;
  font-size: 1.4rem;
  color: #ffffff;
  background: #25862A;
  border: 1px solid #25862A;
  border-radius: 2px 0 0 2px;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-list__item .news-dtl .news-cat {
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    padding: 2px 8px;
    border-radius: 0 0 2px 0;
  }
}

.news .news-inner .news-list__item .news-dtl .news-date {
  margin-bottom: 8px;
  font-family: "Montserrat", serif;
  font-weight: bold;
  color: #25862A;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-list__item .news-dtl .news-date {
    margin-bottom: 4px;
  }
}

.news .news-inner .news-list__item .news-dtl .news-ttl a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news .news-inner .news-list__item .news-dtl .news-ttl a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.news .news-inner .news-btn a {
  position: relative;
  display: inline-block;
  padding: 12px 40px 12px 16px;
  background: rgba(99, 175, 43, 0.1);
  border-radius: 56px;
  color: #25862A;
}

@media screen and (max-width: 959px) {
  .news .news-inner .news-btn a {
    width: 100%;
    max-width: 240px;
  }
}

.news .news-inner .news-btn a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #25862A;
}

.news .news-inner .news-btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  -webkit-mask-image: url("/origin/cct_test/dist/img/icon/arrow.svg");
  mask-image: url("/origin/cct_test/dist/img/icon/arrow.svg");
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: 1;
  background: #ffffff;
}

.bnr-slider .bnr-slider-inner {
  position: relative;
}

.bnr-slider .bnr-slider-inner .bnr-list {
  position: relative;
  padding: 16px 0 12px;
  background: #EEEEEE;
}

.bnr-slider .bnr-slider-inner .bnr-list .bnr-list-item {
  padding: 8px;
}

@media screen and (max-width: 767px) {
  .bnr-slider .bnr-slider-inner .bnr-list .bnr-list-item {
    padding: 8px 4px;
  }
}

.bnr-slider .bnr-slider-inner .bnr-list .bnr-list-item a {
  display: block;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 8px rgba(51, 51, 51, 0.16);
  box-shadow: 0 0 8px rgba(51, 51, 51, 0.16);
  contain: paint;
}

.bnr-slider .bnr-slider-inner .bnr-list .bnr-list-item a:hover {
  translate: 0 2px;
  opacity: 0.8;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: -40px;
  left: calc(50% + 20px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 519px) {
  .bnr-slider .bnr-slider-inner .bnr-list .slick-dots {
    position: absolute;
    bottom: -28px;
    left: calc(50% + 20px);
  }
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-dots li {
  position: relative;
  background: #ffffff;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border: 2px solid #25862A;
  border-radius: 50%;
}

@media screen and (max-width: 519px) {
  .bnr-slider .bnr-slider-inner .bnr-list .slick-dots li {
    width: 10px;
    height: 10px;
  }
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-dots li button {
  display: none;
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-dots li.slick-active {
  background: #25862A;
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-arrow {
  font-size: 0;
  line-height: 0;
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-prev {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #25862A;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .bnr-slider .bnr-slider-inner .bnr-list .slick-prev {
    position: absolute;
    top: 50%;
    left: 4%;
  }
}

@media screen and (max-width: 519px) {
  .bnr-slider .bnr-slider-inner .bnr-list .slick-prev {
    position: absolute;
    top: 50%;
    left: 3%;
  }
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-prev::after {
  content: '';
  position: absolute;
  top: 13px;
  right: 16px;
  border-style: solid;
  border-width: 8px 0px 8px 12px;
  border-color: transparent transparent transparent #ffffff;
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-next {
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #25862A;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 959px) {
  .bnr-slider .bnr-slider-inner .bnr-list .slick-next {
    position: absolute;
    top: 50%;
    right: 4%;
  }
}

@media screen and (max-width: 959px) {
  .bnr-slider .bnr-slider-inner .bnr-list .slick-next {
    position: absolute;
    top: 50%;
    right: 3%;
  }
}

.bnr-slider .bnr-slider-inner .bnr-list .slick-next::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 16px;
  border-style: solid;
  border-width: 8px 0px 8px 12px;
  border-color: transparent transparent transparent #ffffff;
}

.bnr-slider .bnr-slider-inner .buttons {
  position: absolute;
  bottom: -48px;
  left: calc(50% - 64px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 959px) {
  .bnr-slider .bnr-slider-inner .buttons {
    position: absolute;
    bottom: -44px;
    left: calc(50% - 58px);
  }
}

@media screen and (max-width: 519px) {
  .bnr-slider .bnr-slider-inner .buttons {
    position: absolute;
    bottom: -32px;
    left: calc(50% - 40px);
  }
}

.bnr-slider .bnr-slider-inner .buttons .button {
  display: none;
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 959px) {
  .bnr-slider .bnr-slider-inner .buttons .button {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 519px) {
  .bnr-slider .bnr-slider-inner .buttons .button {
    width: 18px;
    height: 18px;
  }
}

.bnr-slider .bnr-slider-inner .buttons .is-active {
  display: block !important;
}

/*# sourceMappingURL=../../maps/pages/top.css.map */
