@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media print, screen and (min-width: 768px) {
  .wrapper_wide {
    max-width: 1200px;
    width: 80%;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 10rem;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 12rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  height: inherit;
  width: 96%;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    width: 92%;
  }
}
.header__wrapper .lang-change {
  position: relative;
  display: none;
}
.header__wrapper .lang-change__current {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .header__wrapper .lang-change__current {
    flex-direction: row-reverse;
    gap: 1rem 2rem;
  }
}
.header__wrapper .lang-change__current .label {
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  margin-top: 0.5rem;
  color: #fff;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .header__wrapper .lang-change__current .label {
    font-size: 3rem;
  }
}
.header__wrapper .lang-change__current .icon {
  width: 3rem;
}
@media only screen and (max-width: 767px) {
  .header__wrapper .lang-change__current .icon {
    width: 6rem;
  }
}
.header__wrapper .lang-change__list {
  display: none;
  position: absolute;
  top: 2rem;
  right: 0;
  padding: 2rem 2.5rem;
  background-color: #fff;
  border-radius: 1rem;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .header__wrapper .lang-change__list {
    top: 4rem;
    padding: 4rem;
  }
}
.header__wrapper .lang-change__list .item:not(:first-child) {
  margin-top: 2rem;
}
.header__wrapper .lang-change__list .item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .header__wrapper .lang-change__list .item a {
    gap: 2rem;
  }
}
.header__wrapper .lang-change__list .item a .label {
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .header__wrapper .lang-change__list .item a .label {
    font-size: 3rem;
  }
}
.header__wrapper .lang-change__list .item a .icon {
  width: 3rem;
}
@media only screen and (max-width: 767px) {
  .header__wrapper .lang-change__list .item a .icon {
    width: 6rem;
  }
}
.header__logo {
  width: 20rem;
  display: block;
  position: static;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 24rem;
    padding: 0;
  }
}
.header__contact {
  display: flex;
}
.header__contact-num {
  display: flex;
}
.header__contact-num__icon {
  width: 4.25rem;
}
.header__contact-num__number {
  padding-left: 1rem;
}
.header__contact-num__number figure {
  width: 22.1rem;
}
.header__contact-num__number p {
  font-size: 1.1rem;
  color: white;
  padding-top: 0.5rem;
}
.header__contact-btn {
  padding-left: 2rem;
}
.header__contact-btn a {
  position: relative;
  top: -0.5rem;
  font-size: 1.4rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16.5rem;
  height: 5rem;
  background: linear-gradient(180deg, #cf220f 0%, #e85d3c 100%);
  border-radius: 8rem;
  border: 1px solid white;
  padding-left: 2.5rem;
}
.header__contact-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  margin: auto;
  background-image: url(../img/lp/cotact_icon_mail.svg);
  background-size: cover;
  height: 1.9rem;
  width: 2.1rem;
}
.header__contact-btn a:hover {
  transform: scale(1.1);
}
@media print, screen and (min-width: 768px) {
  .header.scrolled .header__wrapper {
    height: 10rem;
  }
}

.footer {
  padding: 6rem 0 4rem;
  background-color: transparent;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 8rem 0;
  }
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  .footer .wrapper {
    display: block;
  }
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer__link {
    display: block;
  }
}
.footer__link .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7fafd;
  border: 1px solid #005eaf;
  color: #005eaf;
  height: 6rem;
  width: 23rem;
  text-align: center;
  line-height: 1.4;
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .footer__link .btn {
    padding-right: 1rem;
    font-size: 2.4rem;
    width: 58rem;
    height: 6rem;
    margin: 4rem auto 0;
  }
}
.footer__link .btn::after {
  position: absolute;
  content: "";
  background-image: url("../img/common/icon_arrow_blue.svg");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 1rem;
  bottom: 0;
  margin: auto;
  height: 1.1rem;
  width: 1.9rem;
}
@media only screen and (max-width: 767px) {
  .footer__link .btn::after {
    height: 2.2rem;
    width: 3.8rem;
  }
}
.footer__link .btn.lp-footer-faq {
  padding-right: 2rem;
}
.footer__link .btn.website {
  color: white;
  background-color: rgb(30, 94, 175);
}
.footer__link .btn.website::after {
  background-image: url("../img/common/icon_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__link .btn.short-movie {
  color: #333;
  background-color: #F9BE00;
  padding-left: 1.5rem;
}
.footer__link .btn.short-movie::before {
  content: "";
  display: block;
  width: 2.7rem;
  height: 3.2rem;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/common/icon_short_movie_blue.svg?1");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .footer__link .btn.short-movie::before {
    left: 4rem;
    width: 3.2rem;
    height: 3.8rem;
  }
}
.footer__link .btn.short-movie::after {
  background-image: url("../img/common/icon_arrow_blue.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__logo {
  width: 21rem;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    margin: auto;
    width: 38rem;
  }
}
.footer__sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .footer__sns {
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
  }
}
.footer__sns .text {
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  color: #999999;
  letter-spacing: 0.2em;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footer__sns .text {
    font-size: 2.6rem;
  }
}
.footer__sns .list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer__sns .list {
    gap: 3rem;
  }
}
.footer__sns .list .item {
  width: 3rem;
}
@media only screen and (max-width: 767px) {
  .footer__sns .list .item {
    width: 5rem;
  }
}
.footer__sns .list .item.x {
  width: 2.3rem;
}
@media only screen and (max-width: 767px) {
  .footer__sns .list .item.x {
    width: 3.8rem;
  }
}
.footer__sns .list .item.instagram {
  width: 2.6rem;
}
@media only screen and (max-width: 767px) {
  .footer__sns .list .item.instagram {
    width: 4.2rem;
  }
}
.footer__copy {
  font-size: 1.2rem;
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-top: 3rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    font-size: 2.4rem;
    text-align: center;
    margin-top: 4rem;
  }
}

.contact {
  margin-top: 15rem;
}
.contact__title {
  font-size: 3.4rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .contact__title {
    font-size: 4rem;
  }
}
.contact__title span {
  position: relative;
  display: inline-block;
  padding: 0 10rem 2rem;
}
@media only screen and (max-width: 767px) {
  .contact__title span {
    padding: 0 7rem;
  }
}
.contact__title span::before, .contact__title span::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 0;
  background-image: url("../img/lp/title_bar.svg");
  background-size: cover;
  width: 8rem;
  height: 12rem;
}
.contact__title span::after {
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}
.contact__title b {
  font-size: 4.6rem;
  color: #cf220e;
}
@media only screen and (max-width: 767px) {
  .contact__title b {
    font-size: 5.4rem;
  }
}
.contact__content {
  position: relative;
  background-image: url("../img/lp/contact_bg.png");
  background-size: cover;
  background-position: center 0;
  padding: 5rem 0 3rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .contact__content {
    background-image: url("../img/lp/contact_bg_sp.png");
    padding: 8rem 0;
  }
}
.contact__content .en {
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  text-align: center;
  font-weight: 600;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 10rem;
  color: rgba(253, 250, 240, 0.5);
  line-height: 1;
}
.contact__wrapper {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact__wrapper {
    margin: auto;
    width: 90%;
  }
}
.contact__inner {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.contact__inner .title {
  font-size: 2.8rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact__inner .title {
    line-height: 1.3;
    font-size: 3.4rem;
    white-space: nowrap;
  }
}
.contact__inner .title b {
  font-weight: bold;
  font-size: 3.8rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .title b {
    font-size: 4.6rem;
  }
}
.contact__inner .tel {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .contact__inner .tel {
    margin: 3rem 0;
  }
}
.contact__inner .tel .icon {
  width: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .tel .icon {
    width: 10rem;
  }
}
.contact__inner .tel .nmb {
  width: 46rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .tel .nmb {
    width: 56rem;
  }
}
.contact__inner .tel .note {
  font-size: 0.9em;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  margin-top: 1rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .contact__inner .tel .note {
    font-size: 0.75em;
  }
}
.contact__inner .btn-area {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn-area {
    margin: 2rem 0;
  }
}
.contact__inner .btn-area::before, .contact__inner .btn-area::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  background-size: cover;
  height: 19.7rem;
  width: 20rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn-area::before, .contact__inner .btn-area::after {
    bottom: -4rem;
    height: 14rem;
    width: 11rem;
  }
}
.contact__inner .btn-area::before {
  left: -14rem;
  background-image: url("../img/lp/contact_img01.png");
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn-area::before {
    background-image: url("../img/lp/contact_img01_sp.png");
    left: 0;
  }
}
.contact__inner .btn-area::after {
  right: -14rem;
  background-image: url("../img/lp/contact_img02.png");
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn-area::after {
    background-image: url("../img/lp/contact_img02_sp.png");
    height: 15.5rem;
    right: 0;
  }
}
.contact__inner .btn {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, rgb(207, 34, 13) 0%, rgb(235, 96, 63) 100%);
  padding: 0.6rem 7rem;
  border-radius: 5rem;
  border: 1px solid #fff;
  transition: all ease-in-out 0.3s;
}
.contact__inner .btn:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn {
    font-size: 3.2rem;
    padding: 1rem 8rem;
  }
}
.contact__inner .btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  margin: auto;
  background-image: url("../img/lp/cotact_icon_mail.svg");
  background-size: cover;
  height: 2.3rem;
  width: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn::before {
    left: 3rem;
    height: 2.8rem;
    width: 3rem;
  }
}
.contact__inner .btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  background-image: url("../img/lp/icon_arrow02.svg");
  background-size: cover;
  height: 2.3rem;
  width: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn::after {
    right: 3rem;
    height: 2.9rem;
    width: 3rem;
  }
}
.contact__inner .sub {
  padding: 1rem 4rem;
  text-align: center;
  border: 1px solid #333;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .sub {
    margin-top: 4rem;
    text-align: left;
    padding: 3rem 4rem;
  }
}

.contact {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .contact {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact__wrapper {
    width: 100%;
  }
}
.contact__content {
  padding: 1rem 0 3rem;
  background: no-repeat center bottom -2px/50% #efc932;
}
@media only screen and (max-width: 767px) {
  .contact__content {
    padding: 4.5rem 0 7rem;
    background: #efc932;
  }
}
.contact__content .en {
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn-area {
    margin: 0;
  }
}
.contact__inner .btn-area::before, .contact__inner .btn-area::after {
  bottom: -1rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn-area::before, .contact__inner .btn-area::after {
    bottom: -5rem;
  }
}
.contact__inner .btn-area::before {
  width: 19.3rem;
  height: 19.5rem;
  background-image: url(../img/lp/usj/contact_img01.png);
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn-area::before {
    width: 14.1rem;
    height: 14.5rem;
    left: -2.5rem;
  }
}
.contact__inner .btn-area::after {
  width: 30.2rem;
  height: 21.4rem;
  background-image: url(../img/lp/usj/contact_img02.png);
  right: -17rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .btn-area::after {
    width: 20.7rem;
    height: 16.5rem;
    right: -3rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact__inner .tel {
    margin: 2.5rem 0 3.3rem;
  }
}
.contact__inner .tel .icon {
  margin-top: -3rem;
}
@media only screen and (max-width: 767px) {
  .contact__inner .tel .icon {
    margin-top: -4rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact__inner .tel .note {
    letter-spacing: 0.05em;
  }
}
.contact__bottom {
  padding: 1.9rem 0;
  background-color: #f8edc5;
}
@media only screen and (max-width: 767px) {
  .contact__bottom {
    background: no-repeat center bottom/100% #f8edc5;
    padding: 3.5rem 0;
  }
}
.contact__bottom p {
  font-size: 1.5rem;
  color: #373737;
}
@media only screen and (max-width: 767px) {
  .contact__bottom p {
    font-size: 2.2rem;
    text-align: left;
    width: 70%;
    margin: auto;
  }
}

.main {
  margin-top: 0;
}

.mv {
  margin-bottom: 15rem;
}
.mv .mv--inner {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .mv .mv--inner {
    height: 110dvh;
  }
}
.mv .mv--inner picture {
  display: block;
  width: 100%;
  height: 100%;
}
.mv .mv--inner picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mv .mv--catch {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 93rem;
}
@media print, screen and (min-width: 768px) {
  .mv .mv--catch {
    bottom: 2.4rem;
    bottom: 15dvh;
  }
}
@media only screen and (max-width: 767px) {
  .mv .mv--catch {
    width: 70.5rem;
    bottom: 2rem;
  }
}
.mv .mv--catch img {
  width: 100%;
}
.mv .mv--read {
  background: #004294;
  padding: 2.4rem 0 2.8rem;
}
@media only screen and (max-width: 767px) {
  .mv .mv--read {
    padding: 2.7rem 4rem 4rem;
  }
}
.mv .mv--read * {
  color: #fff;
}
.mv .mv--read p {
  margin: auto;
  font-size: 2.2rem;
  text-align: justify;
  letter-spacing: 0.07em;
  line-height: 1.6818181818;
}
@media print, screen and (min-width: 768px) {
  .mv .mv--read p {
    width: 110rem;
  }
}
@media only screen and (max-width: 767px) {
  .mv .mv--read p {
    font-size: 3.4rem;
    letter-spacing: 0.04em;
  }
}

.reasons .section-ttl {
  background: #004294;
  position: relative;
  color: #fff;
  padding: 3rem 4rem;
  margin-bottom: 6.8rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.0857142857;
}
@media only screen and (max-width: 767px) {
  .reasons .section-ttl {
    font-size: 7rem;
    padding: 4rem 4rem 4rem;
    margin-bottom: 4.4rem;
  }
}
.reasons .section-ttl::before, .reasons .section-ttl::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 2px;
  background: #004294;
  left: 0;
}
.reasons .section-ttl::before {
  top: -0.9rem;
}
@media only screen and (max-width: 767px) {
  .reasons .section-ttl::before {
    top: -1.2rem;
  }
}
.reasons .section-ttl::after {
  bottom: -0.9rem;
}
@media only screen and (max-width: 767px) {
  .reasons .section-ttl::after {
    bottom: -1.2rem;
  }
}
.reasons--bg {
  background: #d9e7f3;
  padding: 10.8rem 0 9.8rem;
  margin-bottom: 15.8rem;
}
@media only screen and (max-width: 767px) {
  .reasons--bg {
    margin-bottom: 16.4rem;
  }
}
.reasons--title {
  margin-bottom: 9.7rem;
}
@media only screen and (max-width: 767px) {
  .reasons--title {
    margin-bottom: 13.7rem;
  }
}
.reasons--title img {
  width: 57rem;
  margin: 0 auto;
  display: block;
}
.reasons--title h2 {
  color: #004294;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  top: -2rem;
}
@media only screen and (max-width: 767px) {
  .reasons--title h2 {
    font-size: 6rem;
    line-height: 1.3;
    top: -1rem;
  }
}
.reasons--title h2 span {
  font-size: 3.8rem;
}
@media only screen and (max-width: 767px) {
  .reasons--title h2 span {
    font-size: 4.56rem;
  }
}
.reasons--content__read {
  margin: 0 auto 7.3rem;
}
@media print, screen and (min-width: 768px) {
  .reasons--content__read {
    width: 120rem;
  }
}
@media only screen and (max-width: 767px) {
  .reasons--content__read {
    width: 68.7rem;
  }
}
.reasons--content__read p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.764;
  width: 110rem;
  margin: 0 auto 5.5rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__read p {
    font-size: 2.8rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 767px) {
  .reasons--content__read p {
    width: 100%;
  }
}
.reasons--content__read h4 {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .reasons--content__read h4 {
    font-size: 4.68rem;
  }
}
.reasons--content__read h4 span {
  font-size: 4.6rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__read h4 span {
    font-size: 5.98rem;
  }
}
.reasons--content__read h4 mark {
  background: linear-gradient(transparent 60%, #e78c21 0%);
  padding: 0 3.7rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__read h4 mark {
    padding: 0;
  }
}
.reasons--content__title.num1 {
  background: no-repeat center 21rem;
  background-size: 1920px;
  background-image: url("../img/organizer/12f-premium/section-bg1.jpg");
  background-image: image-set(url("../img/organizer/12f-premium/section-bg1.webp") type("image/webp"), url("../img/organizer/12f-premium/section-bg1.jpg") type("image/jpeg"));
  height: 101rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title.num1 {
    background: no-repeat center 42.5rem/contain;
    background-image: url("../img/organizer/12f-premium/sp/section-bg1.jpg");
    background-image: image-set(url("../img/organizer/12f-premium/sp/section-bg1.webp") type("image/webp"), url("../img/organizer/12f-premium/sp/section-bg1.jpg") type("image/jpeg"));
    height: 97.5rem;
  }
}
.reasons--content__title.num2 {
  background: no-repeat center 30rem;
  background-size: 1920px;
  background-image: url("../img/organizer/12f-premium/section-bg2.jpg");
  background-image: image-set(url("../img/organizer/12f-premium/section-bg2.webp") type("image/webp"), url("../img/organizer/12f-premium/section-bg2.jpg") type("image/png"));
  height: 100rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title.num2 {
    background: no-repeat center 48rem/contain;
    background-image: url("../img/organizer/12f-premium/sp/section-bg2.jpg");
    background-image: image-set(url("../img/organizer/12f-premium/sp/section-bg2.webp") type("image/webp"), url("../img/organizer/12f-premium/sp/section-bg2.jpg") type("image/jpeg"));
    height: 104rem;
  }
}
.reasons--content__title.num3 {
  margin-bottom: 6.7rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title.num3 {
    margin-bottom: 7rem;
  }
}
.reasons--content__title.num4 {
  background: no-repeat center 27rem;
  background-size: 1920px;
  background-image: url("../img/organizer/12f-premium/section-bg3.jpg");
  background-image: image-set(url("../img/organizer/12f-premium/section-bg3.webp") type("image/webp"), url("../img/organizer/12f-premium/section-bg3.jpg") type("image/png"));
  height: 97rem;
  margin-bottom: 13.4rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title.num4 {
    background: no-repeat center 68rem/contain;
    background-image: url("../img/organizer/12f-premium/sp/section-bg3.jpg");
    background-image: image-set(url("../img/organizer/12f-premium/sp/section-bg3.webp") type("image/webp"), url("../img/organizer/12f-premium/sp/section-bg3.jpg") type("image/jpeg"));
    height: 124rem;
    margin-bottom: 11.8rem;
  }
}
.reasons--content__title.num5 {
  background: no-repeat center 21rem;
  background-size: 1920px;
  background-image: url("../img/organizer/12f-premium/section-bg4.jpg");
  background-image: image-set(url("../img/organizer/12f-premium/section-bg4.webp") type("image/webp"), url("../img/organizer/12f-premium/section-bg4.jpg") type("image/png"));
  height: 91rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title.num5 {
    background: no-repeat center 50.5rem/contain;
    background-image: url("../img/organizer/12f-premium/sp/section-bg4.jpg");
    background-image: image-set(url("../img/organizer/12f-premium/sp/section-bg4.webp") type("image/webp"), url("../img/organizer/12f-premium/sp/section-bg4.jpg") type("image/jpeg"));
    height: 106.5rem;
    margin-bottom: 8rem;
  }
}
.reasons--content__title.num5 .num-ttl {
  height: 31rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title.num5 .num-ttl {
    height: auto;
  }
}
.reasons--content__title .num-ttl {
  width: 75rem;
  margin: auto;
  background: #1645A6;
  background: linear-gradient(90deg, rgba(22, 69, 166, 0.9) 0%, rgba(0, 66, 148, 0.9) 100%);
  position: relative;
  padding: 5.4rem 6.5rem 4.3rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.45);
}
@media only screen and (max-width: 767px) {
  .reasons--content__title .num-ttl {
    width: 60.8rem;
    padding: 7rem 3.8rem 4rem;
  }
}
.reasons--content__title .num-ttl::before {
  content: "";
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border: 1px solid #fff;
  position: absolute;
}
.reasons--content__title .num-ttl * {
  color: #fff;
}
.reasons--content__title .num-ttl h3 {
  font-size: 4.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title .num-ttl h3 {
    margin-bottom: 4rem;
    letter-spacing: 0;
    line-height: 1.3260869565;
  }
}
.reasons--content__title .num-ttl h3 .num {
  position: absolute;
  top: -22%;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 10rem;
  font-weight: 400;
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  color: #e78c21;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title .num-ttl h3 .num {
    top: -5.4rem;
  }
}
.reasons--content__title .num-ttl p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.764;
}
@media only screen and (max-width: 767px) {
  .reasons--content__title .num-ttl p {
    font-size: 2.8rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 767px) {
  .reasons--content__title .num-ttl p {
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
}
.reasons--content__title .num-ttl p span {
  color: #f0df8c;
  font-weight: 700;
}
.reasons--content__list {
  margin-bottom: 14rem;
}
@media only screen and (max-width: 767px) {
  .reasons--content__list {
    margin-bottom: 10rem;
  }
}
.reasons--single {
  margin-bottom: 7.8rem;
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .reasons--single {
    width: 140rem;
    align-items: stretch;
    background: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .reasons--single {
    position: relative;
    padding: 5rem 0 7rem 8rem;
    margin-bottom: 8.4rem;
  }
  .reasons--single::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 72.7rem;
  }
}
@media print, screen and (min-width: 768px) {
  .reasons--single:nth-of-type(even) {
    margin-left: auto;
    flex-direction: row-reverse;
  }
  .reasons--single:nth-of-type(even) .reasons--single__content {
    padding: 7.5rem 8rem 2rem 5rem;
  }
  .reasons--single:nth-of-type(even) .thumb::after {
    left: -2rem;
  }
}
.reasons--single .thumb {
  width: 64rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .reasons--single .thumb {
    width: 66.6rem;
    order: 2;
    margin-left: auto;
  }
  .reasons--single .thumb img {
    width: 100%;
  }
}
.reasons--single .thumb::after {
  content: "";
  position: absolute;
  top: 2rem;
  width: 100%;
  height: 100%;
  background: #004294;
}
@media print, screen and (min-width: 768px) {
  .reasons--single .thumb::after {
    left: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .reasons--single .thumb::after {
    right: 2rem;
  }
}
.reasons--single .thumb picture {
  position: relative;
  z-index: 1;
}
.reasons--single .thumb picture img {
  position: relative;
  z-index: 1;
}
.reasons--single__content {
  width: calc(100% - 64rem);
}
@media print, screen and (min-width: 768px) {
  .reasons--single__content {
    padding: 7.5rem 5rem 2rem 7rem;
  }
}
@media only screen and (max-width: 767px) {
  .reasons--single__content {
    width: 64.5rem;
    position: relative;
    order: 1;
    margin-bottom: 4rem;
  }
}
.reasons--single__content h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .reasons--single__content h3 {
    font-size: 3.6rem;
    margin-bottom: 3.2rem;
  }
}
.reasons--single__content h3 picture {
  width: 10.7rem;
  position: relative;
  left: -2.9rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  .reasons--single__content h3 picture {
    width: 13.4rem;
    left: -3.9rem;
    margin-bottom: 0.7rem;
  }
}
.reasons--single__content p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.764;
}
@media only screen and (max-width: 767px) {
  .reasons--single__content p {
    font-size: 2.8rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 767px) {
  .reasons--single__content p {
    padding-right: 4rem;
    font-feature-settings: "palt";
    letter-spacing: 0.09rem;
  }
}
.reasons--single__content p span {
  color: #005eaf;
  font-weight: 700;
}
.reasons .price-area {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .reasons .price-area {
    width: 110rem;
  }
}
@media only screen and (max-width: 767px) {
  .reasons .price-area {
    width: 68.7rem;
  }
}
.reasons .price-area h4 {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .reasons .price-area h4 {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
}
.reasons .price-area table {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .reasons .price-area table {
    margin-bottom: 3.3rem;
  }
}
.reasons .price-area table tr:first-of-type th {
  background: #004294;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .reasons .price-area table tr:first-of-type th {
    font-size: 2.8rem;
    font-weight: 700;
  }
}
.reasons .price-area table tr th, .reasons .price-area table tr td {
  text-align: center;
  border: 1px solid #989898;
  line-height: 6rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .reasons .price-area table tr th, .reasons .price-area table tr td {
    line-height: 1.285;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1.4rem 0.5rem 1.5rem;
    vertical-align: middle;
  }
}
.reasons .price-area table tr th {
  background: #b2cfe7;
  color: #004294;
}
.reasons .price-area table tr td {
  background: #fff;
}
.reasons .price-area .small-txt li {
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: 1.6rem;
  text-indent: -1.6rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .reasons .price-area .small-txt li {
    font-size: 2.6rem;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    line-height: 1.74;
    padding-left: 2.6rem;
    text-indent: -2.6rem;
  }
}
.reasons--example {
  width: 120rem;
  margin: 0 auto 15rem;
}
@media only screen and (max-width: 767px) {
  .reasons--example {
    width: 68.7rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.reasons--example__title {
  font-size: 3.6rem;
  height: 8rem;
  background-color: #005eaf;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .reasons--example__title {
    font-size: 4.68rem;
    width: 100%;
    min-height: 10.4rem;
  }
}
.reasons--example ul {
  width: 110rem;
  margin: 8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .reasons--example ul {
    width: 60.7rem;
    margin-left: auto;
    margin-rgiht: auto;
    column-gap: 0;
    row-gap: 6rem;
  }
}
.reasons--example li {
  width: 53rem;
}
@media only screen and (max-width: 767px) {
  .reasons--example li {
    width: 100%;
  }
}
.reasons--example p {
  font-size: 2.2rem;
  color: #005eaf;
  font-weight: bold;
  margin-top: 2rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .reasons--example p {
    font-size: 3.2rem;
  }
}
.reasons .reasons--content.confarence-1202 .section-ttl {
  background-color: #006d89;
}
.reasons .reasons--content.confarence-1202 .section-ttl::before {
  background-color: #006d89;
}
.reasons .reasons--content.confarence-1202 .section-ttl::after {
  background-color: #006d89;
}
.reasons .reasons--content.confarence-1202 .reasons--content__title .num-ttl {
  background: rgba(0, 109, 137, 0.9);
}
.reasons .reasons--content.confarence-1202 .price-area {
  margin-bottom: 15rem;
}
.reasons .reasons--content.confarence-1202 .price-area table tr:first-of-type th {
  background-color: #006d89;
  color: white;
}
.reasons .reasons--content.confarence-1202 .price-area table tr th {
  background-color: #b2d3dc;
  color: #006d89;
}

.case {
  background-color: #d9e7f3;
}
.case .section-inner {
  margin: 0 auto 15rem;
  padding-top: 10rem;
  padding-bottom: 6.5rem;
}
@media print, screen and (min-width: 768px) {
  .case .section-inner {
    width: 120rem;
  }
}
@media only screen and (max-width: 767px) {
  .case .section-inner {
    width: 68.7rem;
    margin-bottom: 0;
  }
}
.case .section-inner p {
  width: 110rem;
  margin: 1rem auto 0;
}
@media only screen and (max-width: 767px) {
  .case .section-inner p {
    width: 68.7rem;
    margin-top: 4rem;
  }
}
.case .case-ttl {
  background: #005eaf;
  text-align: center;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  padding: 1.5rem 4rem;
  margin-bottom: 6rem;
}
.case .case-ttl::before, .case .case-ttl::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 2px;
  background: #004294;
  left: 0;
}
.case .case-ttl::before {
  top: -0.9rem;
}
@media only screen and (max-width: 767px) {
  .case .case-ttl::before {
    top: -1.2rem;
  }
}
.case .case-ttl::after {
  bottom: -0.9rem;
}
@media only screen and (max-width: 767px) {
  .case .case-ttl::after {
    bottom: -1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .case .case-ttl {
    font-size: 7rem;
    margin-bottom: 6rem;
    line-height: 1.2;
  }
}
.case .case-ttl + p {
  width: 110rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8rem;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.764;
}
@media only screen and (max-width: 767px) {
  .case .case-ttl + p {
    font-size: 2.8rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 767px) {
  .case .case-ttl + p {
    width: 68.7rem;
  }
}
.case--list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 3.8rem 4rem;
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  .case--list {
    width: 110rem;
  }
}
@media only screen and (max-width: 767px) {
  .case--list {
    gap: 7.1rem;
  }
}
.case--single {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .case--single {
    width: 53rem;
  }
}
@media only screen and (max-width: 767px) {
  .case--single .thumb {
    width: 97.3%;
  }
}
.case--single .txt-area {
  background: #f2f7fb;
  position: relative;
  left: 1rem;
  padding: 0 3rem 3rem;
  height: calc(100% - 27.5rem);
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area {
    padding: 0rem 2rem 3rem;
    width: 97.4%;
    left: 1.9rem;
    height: calc(100% - 33.6rem);
  }
}
.case--single .txt-area .title-box {
  position: relative;
  top: -3.5rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 43rem;
}
@media print, screen and (min-width: 768px) {
  .case--single .txt-area .title-box {
    min-height: 7rem;
  }
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .title-box {
    width: 54.3rem;
    top: -4.1rem;
    position: relative;
    margin-bottom: -1.6rem;
  }
}
.case--single .txt-area .title-box .title-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid #005eaf;
  display: block;
  position: relative;
  z-index: 1;
  color: #005eaf;
  opacity: 1 !important;
  padding: 1rem 0;
  min-height: 7rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .title-box .title-inner {
    padding: 2rem 0 2rem 2rem;
    min-height: 9.4rem;
    line-height: 1.3;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.case--single .txt-area .title-box .title-inner .title-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3rem;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 8.8rem;
  background: #e78c21;
  border: 1px solid #fff;
  padding-top: 3.3rem;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
  line-height: 1.485;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .title-box .title-inner .title-icon {
    left: -4.5rem;
    width: 11.2rem;
    height: 11.2rem;
    padding-top: 4rem;
    font-size: 4.3rem;
  }
}
.case--single .txt-area .title-box .title-inner .title-icon::before {
  content: "";
  background: url("../img/organizer/common/renew/icon-title.png") no-repeat center/cover;
  width: 5.5rem;
  height: 2.5rem;
  display: block;
  position: absolute;
  left: 1.1rem;
  top: 0.35em;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .title-box .title-inner .title-icon::before {
    width: 7rem;
    height: 3.1rem;
    left: 1.7rem;
    top: 0.35em;
  }
}
.case--single .txt-area .title-box .title-inner h3 {
  font-size: 2.1rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 5rem 0 7rem;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .title-box .title-inner h3 {
    font-size: 3.36rem;
    padding: 0 8.2rem 0 7rem;
    font-feature-settings: "palt";
    justify-content: center;
  }
}
.case--single .txt-area .title-box .title-inner a {
  width: 100%;
}
.case--single .txt-area .title-box .title-inner a:hover {
  opacity: 1;
}
.case--single .txt-area .title-box .title-inner a h3::after {
  content: "";
  background: url("../img/organizer/common/renew/arrow-blue.svg") no-repeat center/cover;
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .title-box .title-inner a h3::after {
    width: 2.2rem;
    height: 2.2rem;
    right: 2.7rem;
  }
}
.case--single .txt-area .title-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #005eaf;
}
.case--single .txt-area p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.764;
  margin-bottom: 1.5rem;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
@media print, screen and (min-width: 768px) {
  .case--single .txt-area p {
    height: 9rem;
  }
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area p {
    font-size: 2.8rem;
    margin-bottom: 2.6rem;
    line-height: 1.58;
    margin-bottom: 2.3rem;
  }
}
.case--single .txt-area .single-info {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 1rem;
  margin-top: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .single-info {
    margin-top: 2rem;
    padding-left: 2rem;
    row-gap: 2rem;
  }
}
.case--single .txt-area .single-info dl {
  display: flex;
  align-items: center;
}
.case--single .txt-area .single-info dl.venue {
  margin-right: 1rem;
  width: 29rem;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .single-info dl.venue {
    width: 36.3rem;
  }
}
.case--single .txt-area .single-info dl dt {
  width: 8.2rem;
  min-height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  font-size: 1.5rem;
  font-weight: 500;
  background: #005eaf;
  margin-right: 1rem;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .single-info dl dt {
    width: 10.7rem;
    padding: 1.6rem 0;
    line-height: 1.3;
    font-size: 2.8rem;
  }
}
.case--single .txt-area .single-info dl dd {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #005eaf;
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .single-info dl dd {
    font-size: 2.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .case--single .txt-area .single-info dl.layout {
    width: 100%;
  }
  .case--single .txt-area .single-info dl.layout dt {
    width: 13.4rem;
  }
}

/********************************
        CTA
********************************/
.cta {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .cta {
    margin-bottom: 7.4rem;
  }
}
.cta--title {
  display: none;
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .cta--title {
    margin-bottom: 4.9rem;
  }
}
.cta--title h2 {
  font-size: 4.4rem;
  font-weight: 500;
  color: #005eaf;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 1.55;
}
@media only screen and (max-width: 767px) {
  .cta--title h2 {
    font-size: 4.8rem;
  }
}
.cta--title h2 span {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
  display: block;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .cta--title h2 span {
    font-size: 3.1rem;
  }
}
.cta--title h2 span::before {
  content: "";
  display: block;
  background: url("../img/organizer/common/renew/contact-icon.svg") no-repeat center/cover;
  width: 3.6rem;
  height: 3.4rem;
  margin: 0 auto 0.7rem;
}
@media only screen and (max-width: 767px) {
  .cta--title h2 span::before {
    width: 4.3rem;
    height: 4.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .cta--content {
    display: flex;
    align-items: stretch;
  }
}
.cta--content__box {
  padding: 2.9rem 0 2.3rem;
}
@media print, screen and (min-width: 768px) {
  .cta--content__box {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .cta--content__box {
    padding: 2.9rem 0 3rem;
  }
}
.cta--content__box a {
  display: flex;
  height: 100%;
}
.cta--content__box a .content-title {
  height: 100%;
}
@media print, screen and (min-width: 768px) {
  .cta--content__box a .content-title {
    width: 49.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .cta--content__box a .content-title {
    width: 100%;
    margin: 0 auto;
  }
}
.cta--content__box a .content-title::before {
  content: "";
  width: 7.7rem;
  height: 7.7rem;
  border-radius: 7.7rem;
  display: block;
  margin: 0 auto 0.6rem;
}
@media only screen and (max-width: 767px) {
  .cta--content__box a .content-title::before {
    margin: 0 auto 0.5rem;
  }
}
.cta--content__box a .content-title * {
  color: #fff;
  text-align: center;
}
.cta--content__box a .content-title h3 {
  font-size: 4rem;
  font-weight: 500;
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cta--content__box a .content-title h3 {
    font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
    letter-spacing: 0.2em;
  }
}
.cta--content__box a .content-title h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3rem;
  background: url("../img/organizer/common/renew/arrow-white.svg") no-repeat center/cover;
  width: 1.9rem;
  height: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .cta--content__box a .content-title h3::after {
    right: 4.3rem;
    bottom: 1.4rem;
    width: 4.3rem;
    height: 2.5rem;
  }
}
.cta--content__box a .content-title h3 span {
  display: block;
  width: 32.8rem;
  line-height: 2.8rem;
  border: 1px solid #fff;
  border-radius: 3rem;
  margin: -0.1rem auto 0;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.32em;
}
@media only screen and (max-width: 767px) {
  .cta--content__box a .content-title h3 span {
    margin: 1.2rem auto 2.8rem;
    width: 49.6rem;
    line-height: 4.2rem;
    font-size: 2.1rem;
  }
}
.cta--content__box a .content-title p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .cta--content__box a .content-title p {
    font-size: 2.4rem;
    line-height: 1.7;
    letter-spacing: 0.07em;
  }
}
.cta--content__web {
  background: url("../img/organizer/scene/cta-bg1.jpg") no-repeat top center/cover;
}
.cta--content__web .content-title {
  margin: 0 8rem 0 auto;
}
.cta--content__web .content-title::before {
  background: #fff url("../img/organizer/common/renew/calendar_icon.svg") no-repeat center/2.9rem;
}
.cta--content__contact {
  background: url("../img/organizer/scene/cta-bg2.jpg") no-repeat top center/cover;
}
.cta--content__contact .content-title {
  margin: 0 auto 0 8rem;
}
.cta--content__contact .content-title::before {
  background: #fff url("../img/organizer/common/renew/pc_icon.svg") no-repeat center/3.84rem;
}

/*# sourceMappingURL=12f-premium.css.map */