/* common */
.btn[target=_blank]::after {
  background-image: url(../img/common/ic-newwindow.svg);
  background-size: contain;
}

.btnArea.btn_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .btnArea.btn_column {
    display: block;
    text-align: center;
  }
}
.btnArea.btn_column .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
@media screen and (max-width: 768px) {
  .btnArea.btn_column .btn {
    width: 90%;
    padding: 0 0.7em 0 2.5em;
    margin-bottom: 4.3vw;
    height: 17.1875vw;
    line-height: 1.4;
  }
  .btnArea.btn_column .btn:last-child {
    margin-bottom: 0;
  }
}
.btnArea.btn_column .btn::after {
  width: 0.9em;
  height: 0.9em;
}
.btnArea.btn_column.btn_center {
  margin-top: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btnArea.btn_column.btn_grow .btn {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.bandTitle {
  color: #fff;
  font-size: 4rem;
  text-align: center;
  background: #003067 center right/auto 100% url(../img/common/bandTitle_bg.png) no-repeat;
  padding: 1.2rem 2rem;
}
@media screen and (max-width: 768px) {
  .bandTitle {
    font-size: 3.125vw;
    padding: 2.0833333333vw;
  }
}

.title_container {
  margin-bottom: 4rem;
}
.title_container .title_main {
  font-size: 1.4rem;
  color: #898989;
}
.title_container .title_column {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
.title_container .title_description {
  font-size: 2.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.title_container .title_btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.title_container .text_color_important {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .title_container {
    margin-bottom: 3.90625vw;
  }
  .title_container .title_main {
    font-size: 1.8229166667vw;
  }
  .title_container .title_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.0833333333vw;
    gap: 5.2083333333vw;
  }
  .title_container .title_description {
    gap: 3.125vw;
  }
  .title_container .title .text_color_important {
    margin-top: 1.3020833333vw;
  }
}

.frame_info {
  border: 1px solid;
  border-radius: 1.6rem;
  overflow: hidden;
}
.frame_info_title {
  color: #fff;
  background-color: #003067;
  font-weight: bold;
  font-size: 2.8rem;
  text-align: center;
  padding: 1.2rem;
}
.frame_info_title h3 {
  margin-bottom: 0;
}
.frame_info_content {
  font-size: 2.4rem;
  padding: 3rem;
}
.frame_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.frame_list .frame_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  border: 1px solid #BABABA;
  border-radius: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
}
.frame_list .frame_icon {
  width: 100%;
  height: 15rem;
}
.frame_list .frame_icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.frame_list .frame_title {
  text-align: center;
  margin-top: 2.8rem;
  min-height: 2rem;
}
.frame_list .frame_text {
  margin-top: 1rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .frame_info {
    border-radius: 1.5625vw;
  }
  .frame_info_title {
    font-size: 2.6041666667vw;
    padding: 2.6041666667vw 2.0833333333vw;
  }
  .frame_info_content {
    font-size: 2.0833333333vw;
  }
}

.accordion_list.accordion_faq .accordion_btn::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "Q";
  font-size: 2.4rem;
  font-weight: bold;
}
.accordion_list.accordion_faq .accordion_content_inner::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "A";
  font-size: 2.4rem;
  font-weight: bold;
}
.accordion_item {
  border-bottom: 1px solid #707070;
}
.accordion_item.is-active .accordion_btn_icon::after {
  rotate: 0deg;
}
.accordion_btn {
  padding-block: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.accordion_btn_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.accordion_btn_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3rem;
          flex: 0 0 3rem;
  position: relative;
  width: 3rem;
  height: 3rem;
}
.accordion_btn_icon::before, .accordion_btn_icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  height: 2px;
  background-color: #707070;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.accordion_btn_icon::after {
  rotate: -90deg;
}
.accordion_content {
  display: none;
  padding-bottom: 1.8rem;
  color: #373E41;
}
.accordion_content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.accordion_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .accordion_list.accordion_faq .accordion_btn::before, .accordion_list.accordion_faq .accordion_content_inner::before {
    font-size: 4.1666666667vw;
    margin-right: 2.0833333333vw;
  }
  .accordion_list.accordion_faq .accordion_text {
    line-height: 1.7;
  }
  .accordion_btn {
    padding-block: 5.3385416667vw;
    gap: 0.1302083333vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .accordion_btn_text {
    margin-right: 2.0833333333vw;
  }
  .accordion_btn_icon {
    width: 3.6458333333vw;
    -ms-flex-preferred-size: 3.6458333333vw;
        flex-basis: 3.6458333333vw;
  }
  .accordion_content {
    padding-bottom: 5.3385416667vw;
  }
  .accordion_content_inner {
    gap: 1.3020833333vw;
  }
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

.text_color_important {
  color: #E02B2B;
}

.text_color_green {
  color: #00A73C;
}

.list_disc {
  list-style: disc;
}

.list_decimal {
  list-style: decimal;
}
.list_decimal li {
  list-style: auto;
  margin-left: 2rem;
}

/* common end */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .under_inner {
    margin: 1.5625vw auto 5.2083333333vw;
  }
}

.read h2 {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .read h2 {
    font-size: 7.2916666667vw;
  }
}

.wrap {
  max-width: 992px;
  margin: 2rem auto 16rem;
}
@media screen and (max-width: 768px) {
  .wrap {
    width: 94%;
    margin: auto;
  }
}

.page_caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12rem;
  gap: 4.5rem;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .page_caption {
    display: inline;
  }
}
.page_caption_logo_syc {
  width: 12.6rem;
}
.page_caption_logo_sa {
  width: 11rem;
}
.page_caption_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .page_caption_img {
    gap: 5.3385416667vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page_caption_img img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.page_caption_content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.page_caption_main {
  font-size: 3.5rem;
  color: #373E41;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page_caption_main {
    font-size: 2.6rem;
    margin-top: 6.7708333333vw;
    line-height: 1.7;
  }
}
.page_caption_sub {
  margin-top: 3.8rem;
  font-size: 1.3rem;
}
.page_caption .btnArea {
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  .page_caption {
    margin-bottom: 5.2083333333vw;
    gap: 1.3020833333vw;
  }
}

@media screen and (max-width: 768px) {
  .frame_info {
    margin-top: 5.5989583333vw;
  }
}
@media screen and (max-width: 768px) {
  .frame_info_title_text {
    font-size: 2rem !important;
  }
}

.frame_info_content {
  color: #373E41;
}
.frame_info_content_main {
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .frame_info_content_main {
    font-size: 1.6rem;
  }
}
.frame_info_content_main_marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F3EF5E));
  background: linear-gradient(transparent 60%, #F3EF5E 60%);
}
.frame_info_content_description {
  font-size: 2.4rem;
  line-height: 1.7;
  padding-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .frame_info_content_description {
    font-size: 1.6rem;
  }
}
.frame_info_content_sub {
  padding-top: 0.8rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .frame_info_content_sub {
    font-size: 1.6rem;
  }
}

.under_inner {
  margin: 7rem auto 6rem;
}
@media screen and (max-width: 768px) {
  .under_inner {
    margin: 1.5625vw auto 5.2083333333vw;
    width: 100%;
    padding: 0 4.1666666667vw;
  }
}
.under_inner section:not(:last-of-type) {
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .under_inner section:not(:last-of-type) {
    margin-bottom: 20.5729166667vw;
  }
}

.title_container.merit {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .title_container.step {
    margin-bottom: 7.8125vw;
  }
}
@media screen and (max-width: 768px) {
  .title_container .title_main {
    font-size: 1.4rem;
  }
}
.title_container .title_description {
  font-weight: 700;
  color: #373E41;
  line-height: 1.5;
}

.frame_list {
  color: #373E41;
}
@media screen and (max-width: 768px) {
  .frame_list {
    display: inline;
  }
}
.frame_list .frame_item {
  border: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .frame_list .frame_item {
    padding-block: 8.984375vw;
  }
}
.frame_list .frame_item::after {
  content: "";
  width: 1px;
  background: #E5E5E5;
  height: 100%;
  position: absolute;
  right: 0;
  -webkit-transform: translateX(1.25rem);
          transform: translateX(1.25rem);
}
@media screen and (max-width: 768px) {
  .frame_list .frame_item::after {
    width: 100%;
    height: 1px;
    bottom: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.frame_list .frame_item:last-child::after {
  width: 0;
}
.frame_list .frame_title h4 {
  font-size: 2rem;
  min-height: 5.5rem;
}
@media screen and (max-width: 768px) {
  .frame_list .frame_title h4 {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .frame_list .frame_title {
    font-size: 2rem;
  }
}
.frame_list .frame_text {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .frame_list .frame_text {
    font-size: 1.6rem;
  }
}

.step_flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.3rem;
  counter-set: step;
}
.step_flow_content {
  margin-left: 2rem;
  height: 100%;
  position: relative;
  padding-left: 7.6rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .step_flow_content {
    padding-left: 0;
    margin-left: 0;
  }
}
.step_flow_content::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.8rem;
          flex: 0 0 0.8rem;
  background-color: #003067;
}
.step_flow_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 19rem 2.6rem auto;
  grid-template-columns: 19rem auto;
  padding: 5rem 6rem;
  gap: 2.6rem;
  counter-increment: step;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: 1px solid #BABABA;
  border-radius: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .step_flow_item {
    display: inline;
    padding: 8.3333333333vw 4.1666666667vw;
  }
}
.step_flow_item::after {
  content: url(../img/sports_yell_company/arrow.svg);
  position: absolute;
  right: 50%;
  bottom: 0px;
  -webkit-transform: translateX(50%) translateY(4.7rem);
          transform: translateX(50%) translateY(4.7rem);
}
.step_flow_item:last-child::after {
  content: "";
}
.step_flow_caption {
  border-left: solid 0.8rem;
  padding-left: 0.8rem;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .step_flow_caption {
    margin-bottom: 1.3020833333vw;
  }
}
.step_flow_caption span {
  color: #373E41;
}
.step_flow_caption .step_flow_caption_big {
  font-size: 2.6rem;
}
.step_flow_icon {
  overflow: hidden;
  border: 1px solid #BABABA;
  border-radius: 50%;
  padding: 1.8rem 2.4rem;
  aspect-ratio: 1/1;
}
.step_flow_icon.step_flow_logo {
  padding: 0;
}
.step_flow_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.step_flow_title {
  font-size: 2rem;
  margin-bottom: 2.4rem;
  color: #373E41;
}
@media screen and (max-width: 768px) {
  .step_flow_title {
    -webkit-mask-box-image: 2.34375vw;
            mask-border: 2.34375vw;
  }
}
.step_flow_text {
  margin-top: 1.6rem;
  line-height: 1.6;
  color: #373E41;
  font-weight: 400;
  font-size: 1.5rem;
}
.step_flow_text a {
  text-decoration: underline;
}
.step_flow_text.indent {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .step_flow_text.center {
    text-align: center;
  }
}
.step_flow_text:not(:first-child) {
  margin-top: 0;
}
.step_flow .btnArea {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .step_flow .btnArea {
    margin-top: 4.6875vw;
    text-align: center;
  }
}

.btn.blue_bg {
  border-radius: 1.8rem;
}
@media screen and (max-width: 768px) {
  .btn.blue_bg {
    height: 17.7083333333vw;
  }
}
.btn.blue_bg::after {
  background-image: url(../img/sports_yell_company/download.svg);
  background-size: contain;
  width: 1em;
  height: 1em;
}
.btn.blue_bg.download {
  font-size: 2rem;
  height: 7.2rem;
}
@media screen and (max-width: 768px) {
  .btn.blue_bg.download {
    font-size: 3.90625vw;
  }
}
.btn.blue_bg.pdf_link {
  font-size: 2rem;
  height: 9.2rem;
  padding-inline: 13rem;
}
@media screen and (max-width: 768px) {
  .btn.blue_bg.pdf_link {
    padding-inline: 0;
    font-size: 3.90625vw;
  }
}
.btn.blue_bg.pdf_link::after {
  background-image: url(../img/sports_yell_company/pdf.svg);
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  -webkit-transform: translateX(8rem);
          transform: translateX(8rem);
}
@media screen and (max-width: 768px) {
  .btn.blue_bg.pdf_link::after {
    -webkit-transform: translateX(2em);
            transform: translateX(2em);
  }
}
.btn.detail_bg {
  background: #373E41;
  font-weight: 700;
  height: 4.8rem;
}
.btn.detail_bg::after {
  background-image: url(../img/sports_yell_company/arrow_tin.svg);
  background-size: contain;
  width: 3.2rem;
  height: 3.2rem;
}
.btn.grey_bg {
  background: #373E41;
}
.btn.arrow::after {
  background-image: url(../img/sports_yell_company/arrow_tin.svg);
  width: 3.2rem;
  height: 3.2rem;
}
.btn.arrow.green_bg {
  height: 4.8rem;
}

.document {
  text-align: center;
  margin-top: 4.8rem;
}
.document .blue_bg {
  padding-inline: 13rem;
  font-size: 2rem;
  height: 7.2rem;
}
@media screen and (max-width: 768px) {
  .document .blue_bg {
    padding-inline: 1.7em 0;
    width: 100%;
    font-size: 4.8177083333vw;
    height: 23.6979166667vw;
  }
}
.document .blue_bg::after {
  -webkit-transform: translateX(9rem);
          transform: translateX(9rem);
}
@media screen and (max-width: 768px) {
  .document .blue_bg::after {
    -webkit-transform: translateX(3em);
            transform: translateX(3em);
  }
}

.accordion_text {
  margin-right: 4rem;
  line-height: 1.5;
}
.accordion_btn {
  color: #373E41;
}

.application {
  max-width: 1138px;
  width: 100%;
  margin: 2rem auto 10rem;
}
@media screen and (max-width: 768px) {
  .application {
    margin-block: 19.0104166667vw 0;
  }
}
@media screen and (max-width: 768px) {
  .application .btnArea {
    margin-top: 2.9947916667vw;
  }
}
.application .btn {
  text-align: center;
  height: 6.8rem;
}
@media screen and (max-width: 768px) {
  .application .btn {
    margin-bottom: 7.2916666667vw;
  }
}

.fz_lerge {
  font-size: 2.4rem;
  color: #373E41;
}

.click_prohibiting {
  pointer-events: none;
}