@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Anton|Noto+Sans+JP&display=swap");
/*================================
	column
================================*/
.c-column {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-column {
    flex-direction: column;
    gap: 32px;
  }
}
.c-column__img {
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
  position: relative;
}
.c-column__img img {
  transition: transform 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .c-column__img img {
    max-width: 1200px;
    width: 100%;
  }
}
.c-column__caption {
  margin-top: 16px;
  color: #666;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .c-column__link:hover img {
    transform: scale(1.1, 1.1);
    transition-duration: 0.2s;
  }
}
.c-column.-center {
  justify-content: center;
}
.c-column.-center .c-column__img {
  max-width: 840px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-column.-center .c-column__img {
    max-width: 1200px;
  }
}
.c-column.-column2 {
  justify-content: space-between;
}
.c-column.-column2 .c-column__img {
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-column.-column2 .c-column__img {
    max-width: 1200px;
  }
}
.c-column.-column3 {
  justify-content: space-between;
}
.c-column.-column3 .c-column__img {
  max-width: 368px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-column.-column3 .c-column__img {
    max-width: 1200px;
  }
}

/*================================
	link
================================*/
.c-link {
  color: #0050a5;
  transition: all 0.2s;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding: 0 5px 1.2px;
  display: inline-block;
}
.c-link::after {
  content: "";
  background-color: #0050a5;
  width: 100%;
  height: 1px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-link:hover {
    color: #0050a5;
  }
}
.c-link.-blank::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: relative;
  padding-right: 8px;
}
.c-link.-pdf {
  color: #000;
  font-weight: normal;
  transition: all 0.1s;
  padding-left: 46.03px;
}
.c-link.-pdf::before {
  content: url(/assets/images/icon_pdf_blue.svg);
  display: inline-block;
  position: absolute;
  padding-right: 15.7px;
  top: -1px;
  left: 5px;
}
.c-link.-pdf::after {
  display: none;
}
.c-link.-pdf:hover {
  text-decoration: underline;
}
.c-link.-anchor {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  background: url(/assets/images/icn_arrow_down_blue.svg) no-repeat left center;
  background-size: 9px 6px;
  background-position-x: 10px;
}

.c-link2 {
  display: inline-block;
  position: relative;
  color: #000;
  transition: all 0.4s;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 40px;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .c-link2:hover {
    color: #0050a5;
  }
}
@media screen and (min-width: 768px) {
  .c-link2:hover::after {
    width: 8px;
  }
}
.c-link2::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  right: calc(100% - 32px);
  width: 32px;
  height: 1px;
  background-color: #0050a5;
  transition: all 0.4s;
}
.c-link2.-blank {
  padding-left: 61px;
}
.c-link2.-blank::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: absolute;
  right: calc(100% - 61px);
  padding-right: 8px;
}
.c-link2.-blank::after {
  top: 0.7em;
}

.c-link3 {
  display: flex;
}
.c-link3__inner {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover {
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__text {
    margin-right: 14px;
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__circle::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.c-link3__text {
  color: #0050a5;
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 16px;
  transition: margin-right 0.4s;
  flex: 1;
}
.c-link3__circle {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #0050a5;
  border: 1px solid #0050a5;
  position: relative;
  overflow: hidden;
}
.c-link3__circle::after {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  left: 31%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0050a5;
  border-right: 2px solid #0050a5;
  transform: rotate(45deg);
}
.c-link3__circle::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease-in-out;
}
.c-link3.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: relative;
  padding-right: 8px;
}
.c-link3.-center {
  justify-content: center;
  width: 100%;
}
.c-link3.-black .c-link3__inner:hover .c-link3__circle {
  border: 1px solid #FCCA00;
}
@media screen and (min-width: 768px) {
  .c-link3.-black .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.c-link3.-black.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_black.svg);
}
.c-link3.-black .c-link3__text {
  color: #000;
}
.c-link3.-black .c-link3__circle {
  background-color: #FCCA00;
  border: 1px solid #000;
}
.c-link3.-black .c-link3__circle::before {
  background-color: #000;
}
.c-link3.-black .c-link3__circle::after {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}
.c-link3.-yellow .c-link3__inner:hover .c-link3__circle {
  border: 1px solid #FCCA00;
}
@media screen and (min-width: 768px) {
  .c-link3.-yellow .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.c-link3.-yellow.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_yellow.svg);
}
.c-link3.-yellow .c-link3__text {
  color: #FCCA00;
}
.c-link3.-yellow .c-link3__circle {
  background-color: #FCCA00;
  border: 1px solid #FCCA00;
}
.c-link3.-yellow .c-link3__circle::before {
  background-color: #fff;
}
.c-link3.-yellow .c-link3__circle::after {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}

.c-button {
  display: flex;
}
.c-button__inner {
  position: relative;
  display: block;
  background-color: #0050a5;
  border: 1px solid #0050a5;
  border-radius: 8px;
  color: #fff;
  padding: 10px 35px 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
}
.c-button__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  right: 15.5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 2;
}
.c-button__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #fff;
  transform: translateX(-100%);
  transition: all 0.2s;
  z-index: 1;
}
.c-button__inner:hover {
  color: #0050a5;
}
.c-button__inner:hover::before {
  border-top: 2px solid #0050a5;
  border-right: 2px solid #0050a5;
}
.c-button__inner:hover::after {
  transform: translateX(0);
}
.c-button__text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
}
.c-button.-blank .c-button__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  left: auto;
  bottom: 0;
  display: inline-block;
  margin: auto 0;
  z-index: 10;
  width: 13px;
  height: 11px;
  background: url(/assets/images/icn_blank_white.svg) no-repeat;
  background-size: contain;
  border: none;
  transform: translateX(-100%);
}
.c-button.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_blue.svg) no-repeat;
  background-size: contain;
}
.c-button.-center {
  justify-content: center;
}
.c-button.-yellow .c-button__inner {
  color: #000;
  background-color: #FCCA00;
  border: 1px solid #FCCA00;
}
.c-button.-yellow .c-button__inner::before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.c-button.-yellow .c-button__inner::after {
  background-color: #000;
}
.c-button.-yellow .c-button__inner:hover {
  color: #FCCA00;
}
.c-button.-yellow .c-button__inner:hover::before {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}
.c-button.-yellow.-blank .c-button__inner::before {
  background: url(/assets/images/icn_blank_black.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-yellow.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_yellow.svg) no-repeat;
  background-size: contain;
}
.c-button.-download .c-button__inner {
  color: #fff;
  background-color: #0050a5;
  border: 1px solid #0050a5;
}
.c-button.-download .c-button__inner::before {
  background: url(/assets/images/icon_dl_white.svg) no-repeat;
  background-size: contain;
  border: none;
  transform: rotate(0);
  width: 13px;
  height: 16.5px;
  top: 29%;
}
.c-button.-download .c-button__inner::after {
  background-color: #fff;
}
.c-button.-download .c-button__inner:hover {
  color: #0050a5;
}
.c-button.-download .c-button__inner:hover::before {
  background: url(/assets/images/icon_dl_blue.svg) no-repeat;
  background-size: contain;
}
.c-button.-black .c-button__inner {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
}
.c-button.-black .c-button__inner::before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.c-button.-black .c-button__inner::after {
  background-color: #0050a5;
}
.c-button.-black .c-button__inner:hover {
  color: #fff;
  border: 1px solid #0050a5;
}
.c-button.-black .c-button__inner:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-button.-black.-blank .c-button__inner::before {
  background: url(/assets/images/icn_blank_black.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-black.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_white.svg) no-repeat;
  background-size: contain;
}
.c-button.-black.-download .c-button__inner::before {
  background: url(/assets/images/icon_dl_blue.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-black.-download .c-button__inner:hover::before {
  background: url(/assets/images/icon_dl_white.svg) no-repeat;
  background-size: contain;
}

/*================================
	modal
================================*/
.c-modal-youtube__img {
  position: relative;
}
.c-modal-youtube__img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  margin: auto;
  background: url(/assets/images/icn_movie_play2.svg) no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 10;
}

/*モーダル（動画）*/
.c-openMovieModal {
  cursor: pointer;
}

.c-openMovieModal .c-movieModal__content {
  display: none;
}

.c-movieModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  -webkit-transition: all 0.3s;
  transition: none 0.3s;
}
.c-movieModal.-active {
  opacity: 1;
  pointer-events: auto;
}
.c-movieModal.-active .c-movieModal__cols {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.c-movieModal.-active .c-movieModal__cols:before, .c-movieModal.-active .c-movieModal__cols:after {
  -webkit-transition: all 0.2s;
  -webkit-transition-delay: 0.4s;
  transition: all 0.2s 0.4s;
  opacity: 1;
}
.c-movieModal.-active .c-movieModal__cols:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.c-movieModal.-active .c-movieModal__cols:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-movieModal__cols {
  display: flex;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: all 0.2s;
  -webkit-transition-delay: 0.2s;
  transition: all 0.2s 0.2s;
}
.c-movieModal__cols:before, .c-movieModal__cols:after {
  content: "";
  position: absolute;
  right: -4px;
  top: -37px;
  width: 38px;
  height: 4px;
  background-color: #fff;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}
.c-movieModal__cols:before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.c-movieModal__cols:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.c-movieModal__inner {
  position: relative;
  max-width: 840px;
}
.c-movieModal__content {
  position: relative;
  width: 360px;
  padding: 60px 36px;
  background-color: #fff;
}

@media print, screen and (max-width: 767px) {
  .c-movieModal {
    padding: 20px 5.33333%;
  }
  .c-movieModal__cols {
    display: block;
    width: 100%;
  }
  .c-movieModal__cols:before, .c-movieModal__cols:after {
    top: -28px;
    width: 29px;
    height: 3px;
  }
  .c-movieModal__inner {
    width: 100%;
  }
  .c-movieModal__content {
    width: 100%;
    padding: 30px 20px;
  }
  .c-youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .c-youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .c-movieModal {
    padding: 20px 14%;
  }
}
/*モーダル（HTML）*/
.c-openHtmlModal {
  cursor: pointer;
}

.c-modalContents {
  display: none;
}
.c-modalContents > :last-child {
  margin-bottom: 0;
}

.c-htmlModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-htmlModal.-active {
  opacity: 1;
  pointer-events: auto;
}
.c-htmlModal.-active .c-modalContents__content {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.c-htmlModal .c-modalContents__body .c-modalContents {
  display: block;
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .c-htmlModal {
    padding: 20px 5.33333%;
  }
  .c-htmlModal__inner {
    width: 100%;
    height: 70%;
  }
  .c-htmlModal__inner .c-modalContents {
    padding: 30px 20px;
  }
  .c-htmlModal__inner:before, .c-htmlModal__inner:after {
    top: -28px;
    width: 29px;
    height: 3px;
  }
}
/*modalContents*/
.c-modalContents__content {
  position: relative;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  padding-top: 80px;
  transition: all 0.2s 0.2s;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-modalContents__content {
    width: 100%;
    padding-top: 48px;
  }
}
.c-modalContents__body {
  background-color: #fff;
  width: 1040px;
  height: 640px;
  overflow: auto;
  padding: 0 80px 80px;
}
@media screen and (max-width: 767px) {
  .c-modalContents__body {
    width: 100%;
    height: 70vh;
    padding: 0 24px 24px;
  }
}
.c-modalContents__close {
  position: absolute;
  background-color: #fff;
  width: 28px;
  height: 28px;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-modalContents__close {
    right: 12px;
    top: 12px;
  }
}
.c-modalContents__close::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.c-modalContents__close::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-modalContents__close::before, .c-modalContents__close::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 12px;
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background-color: #0050A5;
}
.c-modalContents__title {
  font-size: 3.6rem;
  color: #0050A5;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .c-modalContents__title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
.c-modalContents__sub {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-modalContents__sub {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.c-modalContents__txt {
  font-size: 1.6rem;
}
.c-modalContents__cols {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-modalContents__cols {
    flex-direction: column;
    justify-content: flex-end;
  }
}
.c-modalContents__col {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-modalContents__col {
    margin-bottom: 24px;
  }
}
.c-modalContents__col + .c-modalContents__col {
  margin-left: 64px;
  width: 384px;
  flex: none;
}
@media screen and (max-width: 767px) {
  .c-modalContents__col + .c-modalContents__col {
    margin-left: 0;
    width: 100%;
  }
}
.c-modalContents__img + .c-modalContents__img {
  margin-top: 24px;
}
.c-modalContents__caption {
  margin-top: 16px;
  font-size: 1.4rem;
}

/*================================
	content
================================*/
.c-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-content {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .c-content img {
    max-width: 1200px;
    width: 100%;
  }
}
.c-content__textarea {
  flex: 1;
  margin-right: 64px;
}
@media screen and (max-width: 767px) {
  .c-content__textarea {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-content__imgarea {
    margin-bottom: 24px;
  }
}
.c-content__imgarea.-link {
  height: 100%;
}
.c-content__imgarea.-link img {
  transition: transform 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .c-content__imgarea.-link:hover p {
    color: #0050A5;
  }
}
@media screen and (min-width: 768px) {
  .c-content__imgarea.-link:hover img {
    transform: scale(1.1, 1.1);
    transition-duration: 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .c-content__imgarea + .c-content__imgarea {
    margin-top: 8px;
  }
}
.c-content__title {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .c-content__title {
    margin-right: 0;
    text-align: center;
  }
}
.c-content__title span {
  display: block;
}
.c-content__title span:nth-child(1) {
  font-family: "Jost", sans-serif;
  font-size: 6.4rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-content__title span:nth-child(1) {
    font-size: 3.8rem;
    margin-bottom: 12px;
  }
}
.c-content__title span:nth-child(2) {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-content__title span:nth-child(2) {
    font-size: 2.4rem;
  }
}
.c-content__title.-jp-only {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-content__title.-jp-only {
    font-size: 2.4rem;
  }
}
.c-content__text {
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.c-content__img {
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-content__img {
    max-width: 1200px;
  }
}
.c-content__img + p {
  margin-top: 16px;
  font-size: 1.6rem;
  color: #000;
}
.c-content.-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-content.-reverse {
    flex-direction: column;
  }
}
.c-content.-reverse .c-content__textarea {
  margin-right: 0;
  margin-left: 64px;
}
@media screen and (max-width: 767px) {
  .c-content.-reverse .c-content__textarea {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-content.-jp-only-layout .c-content__imgarea {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-content.-jp-only-layout .c-content__textarea {
    order: 2;
  }
}
.c-content.-column3 {
  justify-content: flex-start;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 {
    gap: 0;
    justify-content: center;
  }
}
.c-content.-column3.-center {
  justify-content: center;
}
.c-content.-column3 .c-content__img {
  max-width: 384px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__img {
    max-width: 1200px;
  }
}
.c-content.-column3 .c-content__textarea {
  margin-right: 24px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__textarea {
    margin-right: 0;
    margin-left: 0;
  }
}
.c-content.-column3.-reverse .c-content__textarea {
  margin-right: 0;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3.-reverse .c-content__textarea {
    margin-right: 0;
    margin-left: 0;
  }
}
.c-content.-column3 .c-content__card {
  max-width: 368px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__card {
    max-width: 1200px;
  }
}
.c-content.-column3 .c-content__card__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__card__title {
    margin-bottom: 24px;
  }
}
.c-content.-column3 .c-content__title {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-content.-column3 .c-content__title {
    font-size: 2rem;
  }
}
.c-content.-image2 {
  max-width: 1728px;
  padding: 0 20px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .c-content.-image2 {
    gap: 0;
  }
}
.c-content.-image2 .c-content__img {
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .c-content.-image2 .c-content__img {
    max-width: 1200px;
  }
}
.c-content.-image2 .c-content__textarea {
  max-width: 543px;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  flex: none;
}
@media screen and (max-width: 767px) {
  .c-content.-image2 .c-content__textarea {
    max-width: 1200px;
  }
}
.c-content.-image2.-reverse .c-content__textarea {
  max-width: 543px;
  width: 100%;
  margin-right: 0;
  margin-left: 32px;
}
@media screen and (max-width: 767px) {
  .c-content.-image2.-reverse .c-content__textarea {
    max-width: 1200px;
  }
}
.c-content__card {
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-content__card {
    max-width: 1200px;
  }
}
.c-content__card__img {
  margin-bottom: 16px;
  width: 100%;
}
.c-content__card__title {
  font-size: 2.4rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .c-content__card__title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.c-content__card__text {
  font-size: 1.6rem;
}
.c-content__card__text + .c-link3 {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .c-content__card + .c-content__card {
    margin-top: 32px;
  }
}
.c-content__caption {
  margin-top: 16px;
  color: #666;
  font-size: 1.4rem;
}

.c-board {
  background-color: #fff;
}
.c-board__fv {
  max-width: 1920px;
  margin: 0 auto 100px;
  padding-top: 278px;
  background-image: url(/assets/images/dummy/fv_2.jpg);
  background-image: -webkit-image-set(url("/assets/images/dummy/fv_2.jpg") type("image/jpeg"));
  background-image: image-set(url("/assets/images/dummy/fv_2.jpg") type("image/jpeg"));
  background-size: 1920px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .c-board__fv {
    background-image: url(/assets/images/dummy/fv_2_sp.jpg);
    background-image: -webkit-image-set(url("/assets/images/dummy/fv_2_sp.jpg") type("image/jpeg"));
    background-image: image-set(url("/assets/images/dummy/fv_2_sp.jpg") type("image/jpeg"));
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 40% 24px 0;
    margin: 0 auto 80px;
  }
}
.c-board__fv__box {
  background-color: #fff;
  max-width: 1200px;
  padding: 80px 100px;
  margin: 0 auto;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-board__fv__box {
    padding: 80px 24px;
  }
}
.c-board__fv__title {
  font-size: 6.4rem;
  text-align: center;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .c-board__fv__title {
    font-size: 3.8rem;
  }
}
.c-board__fv__sub {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .c-board__fv__sub {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.c-board__fv__intro {
  font-size: 3.6rem;
  color: #0050A5;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .c-board__fv__intro {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.c-board__fv__txt {
  font-size: 1.6rem;
  text-align: center;
}

/*================================
	flex
================================*/
.c-flex {
  display: flex;
  justify-content: space-between;
}
.c-flex.-nogap {
  justify-content: flex-start;
}
.c-flex.-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-flex.-reverse {
    flex-direction: column;
  }
}
.c-flex.-col1 {
  justify-content: center;
}
.c-flex.-col2 .c-flex__col, .c-flex.-col2 .c-flex__img {
  width: 48.5%;
  margin-right: 3%;
}
@media screen and (max-width: 767px) {
  .c-flex.-col2 .c-flex__col, .c-flex.-col2 .c-flex__img {
    width: 100%;
    margin-right: 0;
  }
}
.c-flex.-col2 .c-flex__img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-flex.-col2 .c-flex__img {
    margin-bottom: 32px;
  }
}
.c-flex.-col2 .c-flex__img:nth-child(even) {
  margin-right: 0;
}
.c-flex.-col3 .c-flex__col, .c-flex.-col3 .c-flex__img {
  width: 31.33333%;
  margin-right: 3%;
}
@media screen and (max-width: 767px) {
  .c-flex.-col3 .c-flex__col, .c-flex.-col3 .c-flex__img {
    width: 100%;
    margin-right: 0;
  }
}
.c-flex.-col3 .c-flex__img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-flex.-col3 .c-flex__img {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .c-flex {
    flex-direction: column;
  }
}

@font-face {
  font-family: "digital";
  src: url("/sports/photomaker/font/seiko_digital_ver4.woff2") format("woff2"), url("/sports/photomaker/font/seiko_digital_ver4.woff") format("woff"), url("/sports/photomaker/font/seiko_digital_ver4.otf") format("opentype");
  font-weight: medium;
  font-style: normal;
}
.pc-only {
  display: inherit !important;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inherit !important;
    width: 100%;
  }
}

.-inline {
  display: inline-block;
}

.hidden {
  display: none;
}

/*丸ボタン*/
.circle {
  display: block;
  width: 38px;
  height: 38px;
  margin-left: 16px;
  border-radius: 50%;
  background-color: #0050a5;
  border: 1px solid #0050a5;
  position: relative;
  overflow: hidden;
}
.circle:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease-in-out;
}
.circle:after {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  left: 31%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0050a5;
  border-right: 2px solid #0050a5;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-button:hover .circle:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}

.c-button:hover .circle:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*スポーツ用の黄色丸ボタン*/
.sports__link {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: padding-left 0.2s;
  color: #000;
}
.sports__link:hover {
  padding-left: 5px;
  cursor: pointer;
}
.sports__link .circle {
  border-color: #000;
  background-color: #fcca00;
}
.sports__link .circle:before {
  background-color: #000;
}
.sports__link .circle:after {
  border-top: 2px solid #fcca00;
  border-right: 2px solid #fcca00;
}
.sports__link:hover .circle {
  border-color: #fcca00;
}
.sports__link:hover .circle:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.sports__link:hover .circle:after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

/*横長ボタン*/
.yellowbtn__inline {
  display: flex;
  justify-content: center;
}
.yellowbtn__link {
  position: relative;
  display: block;
  background-color: #fcca00;
  border: 1px solid #fcca00;
  border-radius: 8px;
  color: #000;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
}
.yellowbtn__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.yellowbtn__link.-plus::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 2px;
  border: none;
  background-color: #000;
  border-radius: 2px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.yellowbtn__link.-plus .yellowbtn__link__txt::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 2px;
  border: none;
  background-color: #000;
  border-radius: 2px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.yellowbtn__link.-plus .yellowbtn__link__txt.is-active::before {
  display: none;
}
.yellowbtn__link::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}
.yellowbtn__link:hover {
  color: #fcca00;
}
.yellowbtn__link:hover::before {
  border-top: 2px solid #fcca00;
  border-right: 2px solid #fcca00;
  z-index: 2;
}
.yellowbtn__link:hover.-plus .yellowbtn__link__txt::before {
  background-color: #fcca00;
}
.yellowbtn__link:hover::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.yellowbtn__link__txt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  z-index: 10;
}

/*splide*/
.splide__slide {
  position: relative;
  display: flex;
}
.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*pagenav*/
.pageNav {
  padding: 9px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .pageNav {
    min-width: inherit;
  }
  .pageNav.sp-only {
    display: inherit !important;
    width: 100%;
  }
}

.breadCrumb {
  vertical-align: middle;
  width: 85%;
  font-size: 0;
}
.breadCrumb__item {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
}
.breadCrumb__item::before {
  content: ">";
  display: inline-block;
  margin-right: 1rem;
  font-weight: 500;
}
.breadCrumb__item:first-child::before {
  content: "";
  display: inline-block;
  margin-right: 0;
  font-weight: 0;
}
.breadCrumb__link {
  font-weight: 500;
  color: #000;
}
.breadCrumb__link:hover {
  opacity: 1;
  color: #0050a5;
  text-decoration: underline;
}

/* back btn */
.back-btn {
  position: relative;
  display: block;
  background-color: #ddd;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #000;
  padding: 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto 40px;
  transition: all 0.2s;
}
.back-btn:hover {
  cursor: pointer;
  opacity: 0.6;
}
.back-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 15px;
  width: 10px;
  height: 10px;
  z-index: 10;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media screen and (max-width: 767px) {
  .back-btn {
    width: 100%;
    max-width: 320px;
  }
}

/*fv*/
.fv {
  position: relative;
  background-color: #fcca00;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .fv {
    padding: 24px;
  }
}
.fv__cols {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__col-text {
    position: absolute;
    top: 9%;
  }
}
.fv__col-img {
  max-width: 448.85px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__col-img {
    max-width: 100%;
    aspect-ratio: 175/254;
  }
}
.fv__title-img {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__title-img {
    max-width: 75%;
  }
}
.fv__scrolltop {
  position: absolute;
  display: block;
  bottom: -7px;
  left: 6px;
  width: 43px;
  height: 324.5px;
  pointer-events: none;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .fv__scrolltop {
    display: none;
    bottom: -10px;
  }
}
.fv__scrolltop svg {
  height: auto;
  width: auto;
  transform: none;
  max-width: 9999px;
}

/*intro*/
.intro {
  position: relative;
  background-color: #EEEEEE;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 24px 8px;
  }
}
.intro__wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1115px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0 130px;
}
@media screen and (max-width: 767px) {
  .intro__wrap {
    padding: 96px 36px 90px;
  }
}
.intro__wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 132px;
  height: 120px;
  background: url(/sports/photomaker/images/img_photomaker_about-1.svg) no-repeat;
  background-size: 132px;
}
@media screen and (max-width: 767px) {
  .intro__wrap::before {
    width: 99px;
    height: 90px;
    background: url(/sports/photomaker/images/img_photomaker_about-1.svg) no-repeat;
    background-size: 99px;
  }
}
.intro__wrap::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 132px;
  height: 120px;
  background: url(/sports/photomaker/images/img_photomaker_about-2.svg) no-repeat;
  background-size: 132px;
}
@media screen and (max-width: 767px) {
  .intro__wrap::after {
    width: 99px;
    height: 90px;
    background: url(/sports/photomaker/images/img_photomaker_about-2.svg) no-repeat;
    background-size: 99px;
  }
}
.intro__text {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .intro__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.intro__strong {
  font-weight: bold;
}

/*enjoy*/
.enjoy {
  position: relative;
  padding: 100px 0 64px;
  background: linear-gradient(177deg, #fff 60%, #FCCA00 60.1%);
}
@media screen and (max-width: 767px) {
  .enjoy {
    padding: 48px 24px;
    background: linear-gradient(173deg, #fff 43%, #FCCA00 43.1%);
  }
}
.enjoy__wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.enjoy__title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .enjoy__title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.enjoy__title-en {
  font-family: "Jost", sans-serif;
  font-size: 6.4rem;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .enjoy__title-en {
    font-size: 3.8rem;
  }
}
.enjoy__subtitle {
  display: inline;
  background: linear-gradient(transparent 70%, #FCCA00 70%);
  line-height: 1.3;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  padding-left: 6px;
}
@media screen and (max-width: 767px) {
  .enjoy__subtitle {
    font-size: 2rem;
    line-height: 2;
  }
}
.enjoy__subtitle-wrap {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .enjoy__subtitle-wrap {
    margin-bottom: 32px;
  }
}
.enjoy__text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .enjoy__text {
    margin-bottom: 40px;
  }
}
.enjoy__cards {
  display: flex;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .enjoy__cards {
    flex-direction: column;
    gap: 106px;
    margin-top: 106px;
  }
}
.enjoy__card {
  position: relative;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 276px 40px 48px;
  margin-top: 138px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .enjoy__card {
    padding: 195px 24px 40px;
    margin-top: 0;
  }
}
.enjoy__card-img {
  position: absolute;
  top: -138px;
  left: 50%;
  transform: translateX(-50%);
  width: 488px;
}
@media screen and (max-width: 767px) {
  .enjoy__card-img {
    top: -82px;
    width: 310px;
  }
}
.enjoy__card-title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
.enjoy__card-text {
  font-size: 1.6rem;
  margin-bottom: 32px;
}
.enjoy__card-list {
  padding-left: 25px;
}
.enjoy__card-item {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.enjoy__card-item:last-child {
  margin-bottom: 0;
}
.enjoy__card-item::before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FCCA00;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

/*photoframe*/
.photoframe {
  position: relative;
  padding: 100px 24px;
}
@media screen and (max-width: 767px) {
  .photoframe {
    padding: 48px 24px 80px;
  }
}
.photoframe__main {
  position: relative;
}
.photoframe__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.photoframe__title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .photoframe__title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.photoframe__title-en {
  font-family: "Jost", sans-serif;
  font-size: 6.4rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .photoframe__title-en {
    font-size: 3.8rem;
  }
}
.photoframe__text {
  font-size: 1.6rem;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .photoframe__text {
    margin-bottom: 24px;
  }
}
.photoframe__inline {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 64px;
}
.photoframe__box {
  max-width: 716px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .photoframe__box {
    max-width: 999px;
  }
}
.photoframe__instruction {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .photoframe__instruction {
    margin-bottom: 32px;
  }
}
.photoframe__status-badge {
  position: absolute;
  display: none;
  top: 0;
  padding: 6px 14px;
  height: 38px;
  width: 88px;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  background-color: #FCCA00;
  color: #000;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .photoframe__status-badge {
    font-size: 1.4rem;
    padding: 5px 10px;
    height: 28px;
    width: 62px;
  }
}
.photoframe__form {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .photoframe__form {
    margin-bottom: 40px;
  }
}
.photoframe__form-list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 48px;
}
@media screen and (max-width: 767px) {
  .photoframe__form-list {
    gap: 28px 16px;
  }
}
.photoframe__form-list li {
  position: relative;
  width: calc(50% - 32px);
  background-color: #EEEEEE;
}
@media screen and (max-width: 767px) {
  .photoframe__form-list li {
    width: calc(50% - 8px);
  }
}
.photoframe__form-list input {
  display: none;
}
.photoframe__form-list input[type=radio] + label {
  position: relative;
  display: block;
  aspect-ratio: 163/200;
  width: 100%;
  padding-top: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.photoframe__form-list input[type=radio] + label:hover {
  cursor: pointer;
}
.photoframe__form-list input[type=radio]:checked + label {
  outline: 2px dashed #FCCA00;
  outline-offset: 5px;
}
.photoframe__form-list input[type=radio]:checked ~ .photoframe__status-badge {
  display: block;
}
.photoframe__select {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.photoframe__select input {
  display: none;
}
.photoframe__select-button {
  position: relative;
  display: block;
  background-color: #fcca00;
  border: 1px solid #fcca00;
  border-radius: 8px;
  color: #000;
  padding: 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .photoframe__select-button {
    width: 100%;
    max-width: 320px;
  }
}
.photoframe__select-button:hover {
  cursor: pointer;
  color: #fcca00;
}
.photoframe__select-button:hover::before {
  border-top: 2px solid #fcca00;
  border-right: 2px solid #fcca00;
}
.photoframe__select-button:hover::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.photoframe__select-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 15px;
  width: 10px;
  height: 10px;
  z-index: 10;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.photoframe__select-button::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: -1;
}
.photoframe__editor-wrap {
  max-width: 252px;
  width: 252px;
  margin: 0 auto 32px;
}
.photoframe__editor-text {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
.photoframe__editor-zoom {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 32px;
}
.photoframe__editor-zoom--in {
  font-size: 1.4rem;
  text-align: center;
}
.photoframe__editor-zoom--in span {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #000;
}
.photoframe__editor-zoom--in span:hover {
  cursor: pointer;
}
.photoframe__editor-zoom--in span::before, .photoframe__editor-zoom--in span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
}
.photoframe__editor-zoom--in span::before {
  width: 20px;
  height: 0.9px;
}
.photoframe__editor-zoom--in span::after {
  width: 1px;
  height: 20px;
}
.photoframe__editor-zoom--out {
  font-size: 1.4rem;
  text-align: center;
}
.photoframe__editor-zoom--out span {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #000;
}
.photoframe__editor-zoom--out span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  width: 20px;
  height: 0.9px;
}
.photoframe__editor-button {
  position: relative;
  display: block;
  background-color: #fcca00;
  border: 1px solid #fcca00;
  border-radius: 8px;
  color: #000;
  padding: 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .photoframe__editor-button {
    width: 100%;
    max-width: 320px;
  }
}
.photoframe__editor-button:hover {
  cursor: pointer;
  color: #fcca00;
}
.photoframe__editor-button:hover::before {
  border-top: 2px solid #fcca00;
  border-right: 2px solid #fcca00;
}
.photoframe__editor-button:hover::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.photoframe__editor-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 15px;
  width: 10px;
  height: 10px;
  z-index: 10;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.photoframe__editor-button::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: -1;
}
.photoframe__editor-button span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  z-index: 10;
}
.photoframe__editor-button + button {
  margin-top: 24px;
}
.photoframe__time {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.photoframe__time-inner {
  background-color: #000;
  padding: 84px 24px;
}
.photoframe__time-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}
.photoframe__time-text {
  font-size: 1.4rem;
  color: #eee;
  margin-bottom: 85px;
  text-align: center;
}
.photoframe__time-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.photoframe__time-button {
  position: relative;
  display: block;
  background-color: #fcca00;
  border: 1px solid #fcca00;
  border-radius: 8px;
  color: #000;
  padding: 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  .photoframe__time-button {
    width: 100%;
    max-width: 320px;
  }
}
.photoframe__time-button:hover {
  cursor: pointer;
  color: #fcca00;
}
.photoframe__time-button:hover::before {
  border-top: 2px solid #fcca00;
  border-right: 2px solid #fcca00;
}
.photoframe__time-button:hover::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.photoframe__time-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 15px;
  width: 10px;
  height: 10px;
  z-index: 10;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.photoframe__time-button::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: -1;
}
.photoframe__time-button span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  z-index: 10;
}
.photoframe__time-splide {
  width: 145px;
  padding: 0 11px;
}
.photoframe__time-box {
  position: relative;
}
.photoframe__time-front {
  position: absolute;
  display: flex;
  padding: 0 11px;
  justify-content: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  top: 51px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .photoframe__time-front {
    width: 100%;
    padding: 0;
  }
}
.photoframe__time-front li {
  width: 145px;
  color: #fff;
  font-size: 1.4rem;
  height: 30px;
  line-height: 32px;
  white-space: nowrap;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .photoframe__time-front li {
    text-align: right;
    max-width: 145px;
    width: 33%;
  }
}
.photoframe .splide__track {
  display: flex;
  justify-content: center;
}
.photoframe .splide__slide {
  display: block;
  text-align: center;
  color: #fff;
  opacity: 0.3;
  font-size: 2rem;
  height: 34px;
  line-height: 34px;
}
@media screen and (max-width: 767px) {
  .photoframe .splide__slide {
    font-size: 1.8rem;
  }
}
.photoframe .splide__slide + .is-active {
  opacity: 1;
  transform: scale(1.2);
  line-height: 34px;
}
.photoframe__result {
  padding: 74px 24px 0;
}
.photoframe__result-img {
  width: 252px;
  margin: 0 auto 32px;
}
.photoframe__result-link {
  position: relative;
  display: block;
  background-color: #fcca00;
  border: 1px solid #fcca00;
  border-radius: 8px;
  color: #000;
  padding: 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  .photoframe__result-link {
    width: 100%;
    max-width: 320px;
  }
}
.photoframe__result-link:hover {
  cursor: pointer;
  color: #fcca00;
}
.photoframe__result-link:hover::before {
  border-top: 2px solid #fcca00;
  border-right: 2px solid #fcca00;
}
.photoframe__result-link:hover::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.photoframe__result-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 15px;
  width: 10px;
  height: 10px;
  z-index: 10;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.photoframe__result-link::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: -1;
}
.photoframe__result-link span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  z-index: 10;
}
.photoframe__result-text {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.photoframe__result-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.photoframe__result-item {
  max-width: 48px;
  width: 100%;
}
.photoframe__result-item:hover {
  opacity: 0.5;
}

#frame_01 + label {
  background: url(/sports/photomaker/images/img_photomaker_frame01.jpg) no-repeat;
  background-size: 100% auto;
}

#frame_02 + label {
  background: url(/sports/photomaker/images/img_photomaker_frame02.jpg) no-repeat;
  background-size: 100% auto;
}

#frame_03 + label {
  background: url(/sports/photomaker/images/img_photomaker_frame03.jpg) no-repeat;
  background-size: 100% auto;
}

#frame_04 + label {
  background: url(/sports/photomaker/images/img_photomaker_frame04.jpg) no-repeat;
  background-size: 100% auto;
}

/*floatbutton*/
.floatbutton {
  position: fixed;
  right: 75px;
  bottom: 5px;
  background-color: #FCCA00;
  border: 2px solid #000;
  border-radius: 31px;
  padding: 12px 12px 12px 20px;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .floatbutton {
    padding: 8px 12px 8px 20px;
    font-size: 1.4rem;
    right: 10px;
    bottom: 15px;
  }
}
.floatbutton:hover {
  padding: 12px 12px 12px 20px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .floatbutton:hover {
    padding: 8px 12px 8px 20px;
  }
}
.floatbutton:hover .circle {
  border-color: #000;
}

@media screen and (max-width: 767px) {
  .l-pageTop .l-pageTop__wrap.-fixed {
    bottom: 80px;
  }
}

/*frameimg*/
.frameimg {
  display: inline-block;
  text-align: center;
  background-color: #FCCA00;
  aspect-ratio: 96/25;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .frameimg {
    aspect-ratio: 195/146;
  }
}

/* sns */
.sns {
  background-color: #fff;
  padding: 100px 0 100px;
}
@media screen and (max-width: 767px) {
  .sns {
    padding: 80px 0;
  }
}
.sns__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sns__title {
  font-size: 6.4rem;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  text-align: center;
  color: #000;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .sns__title {
    margin-bottom: 8px;
    font-size: 3.8rem;
  }
}
.sns__txt {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sns__txt {
    font-size: 1.8rem;
    margin-bottom: 37px;
  }
}
.sns__list {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .sns__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.sns__item {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .sns__item {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .sns__item.-Instagram {
    margin-bottom: 48px;
  }
}
.sns__inline {
  display: flex;
  justify-content: center;
}
.sns__link {
  position: relative;
  display: block;
  background-color: #fcca00;
  border: 1px solid #fcca00;
  border-radius: 8px;
  color: #000;
  padding: 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
}
.sns__link:hover {
  color: #fcca00;
}
.sns__link:hover::before {
  background: url(/assets/images/icn_blank_yellow.svg) no-repeat;
  background-size: contain;
}
.sns__link:hover::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.sns__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: inline-block;
  margin: auto 0;
  z-index: 10;
  width: 13px;
  height: 11px;
  background: url(/assets/images/icn_blank_black.svg) no-repeat;
  background-size: contain;
}
.sns__link::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #000;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}
.sns__link__txt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  z-index: 10;
}
.sns__icn {
  display: flex;
  justify-content: center;
}
.sns__icn__link {
  display: inline-block;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .sns__icn__link {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 767px) {
  .sns__icn__link-instagram {
    width: 57.52px;
  }
}
@media screen and (max-width: 767px) {
  .sns__icn__link-x {
    width: 52.33px;
  }
}

.sns__title-en {
  font-family: "Anton", sans-serif;
  line-height: 1.2;
  font-size: 6.4rem;
  color: #000;
  text-align: center;
}

.sns__title-ja {
  line-height: 1.5;
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sns__title-en {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .sns__title-ja {
    font-size: 2rem;
  }
}

/*hbm*/
.p-hbm {
  max-width: 1200px;
  margin: 0 auto;
}
.p-hbm__box {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-hbm__box {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.p-hbm__title {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-hbm__title {
    width: auto;
    margin: 0;
    padding: 0;
    border: none;
  }
}
.p-hbm__head {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-hbm__head {
    margin-bottom: 32px;
  }
}
.p-hbm__txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-hbm__txt {
    margin-bottom: 0;
    padding: 0 24px;
  }
}
.p-hbm__button {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-hbm__button {
    justify-content: center;
  }
}
.p-hbm__button__link {
  font-size: 1.6rem;
  color: #0050a5;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-top: 24px;
  transition: margin-left 0.2s;
}
.p-hbm__button__link:hover {
  margin-left: 10px;
}
.p-hbm__button__link:hover .circle:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.p-hbm__button__link:hover .circle:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.p-hbm__cols {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-hbm__cols {
    flex-direction: column;
    gap: 8px;
    padding: 0 24px;
  }
}
.p-hbm__col {
  position: relative;
  overflow: hidden;
  height: 627px;
  width: 175px;
  transition: width 0.4s;
}
@media screen and (max-width: 767px) {
  .p-hbm__col {
    height: 80px;
    width: 100%;
    transition: height 0.4s;
  }
}
.p-hbm__col.-active {
  width: 830px;
}
@media screen and (max-width: 767px) {
  .p-hbm__col.-active {
    height: 260px;
    width: 100%;
  }
}
.p-hbm__col + .p-hbm__col {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-hbm__col + .p-hbm__col {
    margin-left: 0;
  }
}
.p-hbm__col_card {
  display: none;
  position: absolute;
  bottom: 15px;
  left: 34px;
  z-index: 2;
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-hbm__col_card {
    left: 16px;
    bottom: 24px;
  }
}
.p-hbm__col__txt {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 2;
  font-size: 2.4rem;
  color: #fff;
  padding: 0 34px;
}
@media screen and (max-width: 767px) {
  .p-hbm__col__txt {
    bottom: 58px;
    font-size: 1.6rem;
    padding: 0 16px;
  }
}
.p-hbm__col.-hover {
  width: 830px;
}
@media screen and (max-width: 767px) {
  .p-hbm__col.-hover {
    height: 83vw;
    width: 100%;
  }
}
.p-hbm__col.-hover .p-hbm__col_card,
.p-hbm__col.-hover .p-hbm__col__txt,
.p-hbm__col.-hover a::after,
.p-hbm__col.-hover a::after {
  display: block;
}
.p-hbm__col.-hover .p-hbm__thum {
  filter: grayscale(0%);
}
.p-hbm__col a::after {
  content: "";
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 185px;
  background: linear-gradient(0deg, rgb(0, 80, 165) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.p-hbm__thum {
  height: 627px;
  width: auto;
  object-fit: cover;
  filter: grayscale(100%);
  display: none;
}
@media screen and (max-width: 767px) {
  .p-hbm__thum {
    height: auto;
    width: 100%;
  }
}
.p-hbm__thum.-pcthum {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-hbm__thum.-pcthum {
    display: none;
  }
}
.p-hbm__thum.-spthum {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-hbm__thum.-spthum {
    display: block;
  }
}
.p-hbm__thum.-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-hbm__thum.-pc {
    display: none;
  }
}
.p-hbm__thum.-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-hbm__thum.-sp {
    display: none;
  }
}

.p-hbm__col.-hover .p-hbm__thum {
  display: block;
}
.p-hbm__col.-hover .p-hbm__thum.-pcthum {
  display: none;
}
.p-hbm__col.-hover .p-hbm__thum.-pc {
  display: block;
}
.p-hbm__col.-hover .p-hbm__thum.-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-hbm__col.-hover .p-hbm__thum.-spthum {
    display: none;
  }
  .p-hbm__col.-hover .p-hbm__thum.-sp {
    display: block;
  }
  .p-hbm__col.-hover .p-hbm__thum.-pc {
    display: none;
  }
}

.p-hbm__head {
  position: relative;
  font-family: "Anton", sans-serif;
  font-size: 5rem;
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-hbm__head {
    font-size: 3.2rem;
    text-align: center;
    display: block;
    margin: 0 auto 32px;
  }
}

/*magazine*/
.magazine {
  background-color: #f5f5f5;
  padding: 100px 0 100px;
}
@media screen and (max-width: 767px) {
  .magazine {
    padding: 80px 0;
  }
}

/*modal*/
.photomaker {
  position: relative;
}

.c-modalContents__close::before, .c-modalContents__close::after {
  background-color: #fff;
}

.c-modalContents__content, .c-modalContents__close, .c-modalContents__body {
  background-color: #000;
}

.c-modalContents__body {
  padding: 0 144px 80px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-modalContents__body {
    height: 70vh;
    padding: 0 24px 48px;
  }
}

.modal__item {
  position: relative;
  background-color: #fff;
  padding: 64px 24px 32px;
  box-shadow: 6px 8px 0px 0px #fcca00;
  margin-top: 240px;
  margin-bottom: 12px;
  margin-right: 2px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .modal__item {
    margin-top: 280px;
  }
}
.modal__img {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 190.95px;
}
.modal__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 22px;
  text-align: center;
}
.modal__title span {
  display: inline-block;
  font-size: 2rem;
  font-family: "Jost", sans-serif;
  text-align: center;
  background-color: #fcca00;
  border-radius: 50%;
  margin-right: 8px;
  width: 30px;
  height: 30px;
}
.modal__text {
  font-size: 1.6rem;
}
.modal-splide {
  position: relative;
}
.modal-splide .splide__slide img {
  width: 190.95px;
  height: auto;
  object-fit: contain;
  max-width: 100%;
}
.modal-splide .splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-top: 50px;
}
.modal-splide .splide__arrow {
  position: relative;
  display: block;
  background-color: #fcca00;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  opacity: 1;
}
.modal-splide .splide__arrow:disabled {
  opacity: 0.5;
  cursor: default;
}
.modal-splide .splide__arrow--prev {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  left: -80px;
}
.modal-splide .splide__arrow--prev::before {
  content: "";
  display: block;
  position: absolute;
  left: 22px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg) translateY(0);
  transform: rotate(45deg) translateY(0);
}
.modal-splide .splide__arrow--prev::after {
  content: "";
  display: block;
  position: absolute;
  left: 13px;
  width: 17px;
  height: 2px;
  background: #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.modal-splide .splide__arrow--next {
  right: -80px;
}
.modal-splide .splide__arrow--next::before {
  content: "";
  display: block;
  position: absolute;
  left: 22px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg) translateY(0);
  transform: rotate(45deg) translateY(0);
}
.modal-splide .splide__arrow--next::after {
  content: "";
  display: block;
  position: absolute;
  left: 13px;
  width: 17px;
  height: 2px;
  background: #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.modal-splide .splide__pagination {
  bottom: -32px;
}
@media screen and (max-width: 767px) {
  .modal-splide .splide__pagination {
    bottom: 560px;
  }
}
.modal-splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 3px 5px;
}
.modal-splide .splide__pagination__page.is-active {
  background: #FCCA00;
  width: 32px;
  z-index: 1;
  border-radius: 8px;
  transform: scale(1);
}