@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  color: rgb(0, 0, 0);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 400;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 100px);
  max-width: 1350px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-wrapper {
    width: calc(100% - 60px);
  }
}
.contents-wrapper.mini {
  max-width: 1200px;
}
.contents-wrapper.big {
  max-width: 1600px;
  width: 100%;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: auto !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
.main-contents h2 {
  margin-bottom: 30px;
  position: relative;
  padding-left: 30px;
  font-size: 1.9rem;
}
@media (max-width: 767px) {
  .main-contents h2 {
    font-size: 1.5rem;
    padding-left: 15px;
  }
}
.main-contents h2::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 18px;
  height: 45px;
  background: linear-gradient(45deg, rgb(0, 123, 255) 0%, rgb(0, 123, 255) 52%, rgb(255, 235, 0) 100%);
}
@media (max-width: 767px) {
  .main-contents h2::before {
    width: 5px;
    height: 20px;
    top: 5px;
  }
}
.main-contents h3 {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  font-size: 1.7rem;
}
@media (max-width: 767px) {
  .main-contents h3 {
    padding-left: 15px;
    font-size: 1.4rem;
  }
}
.main-contents h3::before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background-color: rgb(0, 123, 255);
}
@media (max-width: 767px) {
  .main-contents h3::before {
    width: 10px;
  }
}
.main-contents h4 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .main-contents h4 {
    font-size: 1.3rem;
  }
}
.main-contents h5 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .main-contents h5 {
    font-size: 1.2rem;
  }
}
.main-contents h6 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .main-contents h6 {
    font-size: 1.1rem;
  }
}
.main-contents a {
  color: rgb(0, 123, 255);
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

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

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

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

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

.speech-bubble-title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  padding: 30px 20px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .speech-bubble-title {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}
.speech-bubble-title::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -42%);
          transform: translate(-50%, -42%);
  content: "";
  display: block;
  width: 600px;
  max-width: 90%;
  aspect-ratio: 6/2;
  background-image: url("../../images/speech-bubble.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.speech-bubble-title.yellow {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.line-title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .line-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.line-title::after {
  margin: 5px auto 0;
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(0, 123, 255)), to(rgb(255, 235, 0)));
  background: linear-gradient(to right, rgb(0, 123, 255) 30%, rgb(255, 235, 0));
}
.line-title > img {
  position: absolute;
  top: -50%;
  left: 0;
  max-width: 420px;
  width: 35%;
}
@media (max-width: 767px) {
  .line-title > img {
    width: 60%;
    top: auto;
    bottom: 100%;
  }
}
.line-title.white {
  color: rgb(255, 255, 255);
}
.line-title.white::after {
  background: rgb(255, 255, 255);
}
.line-title.right {
  text-align: left;
}
.line-title.right::after {
  margin-left: 0;
}

.yellow-link {
  display: block;
  border-radius: 50px;
  color: rgb(0, 123, 255);
  background-color: rgb(255, 235, 0);
  tansition-delay: 1s;
}
.yellow-link > span {
  position: relative;
  -webkit-transform: translate(-5px, -5px);
          transform: translate(-5px, -5px);
  display: block;
  border-radius: 50px;
  padding: 25px 30px;
  text-align: left;
  border: 1px solid rgb(0, 123, 255);
  color: rgb(0, 123, 255);
  font-size: 1.1rem;
  font-weight: 500;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.yellow-link > span::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 4/3;
  background-image: url("../../images/blue-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.yellow-link:hover {
  background-color: rgb(255, 255, 255);
  tansition-delay: 7s;
}
.yellow-link:hover > span {
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.yellow-link:hover > span::after {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.black-link {
  overflow: hidden;
  position: relative;
  display: block;
  margin: auto;
  max-width: 375px;
  padding: 20px;
  border-radius: 50px;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.black-link::before {
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 4/3;
  background-image: url("../../images/white-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 2;
}
.black-link::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(70%, -50%);
          transform: translate(70%, -50%);
  color: rgb(0, 123, 255);
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(0, 123, 255) 0%, rgb(0, 0, 0) 75%);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.black-link:hover::before {
  -webkit-animation: arrow 0.5s forwards;
          animation: arrow 0.5s forwards;
}
.black-link:hover::after {
  opacity: 1;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.black-link.right {
  margin-top: -80px;
  max-width: 250px;
  margin-right: 0;
}
.black-link.blue {
  margin-top: 50px;
  background-color: rgb(0, 123, 255);
}
.black-link.blue::after {
  background: radial-gradient(circle, rgb(255, 235, 0) 0%, rgb(0, 123, 255) 75%);
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(5px, -50%);
            transform: translate(5px, -50%);
  }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@keyframes arrow {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(5px, -50%);
            transform: translate(5px, -50%);
  }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.writer-link {
  position: relative;
  display: block;
  margin: 100px auto 0;
  padding: 70px 30px;
  width: 50%;
  border-radius: 20px;
  -webkit-box-shadow: 1.5px 1.5px 3px rga(rgb(0, 0, 0), 0.3);
          box-shadow: 1.5px 1.5px 3px rga(rgb(0, 0, 0), 0.3);
  background-image: url("../../images/writer-link.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 2.2rem;
  color: rgb(255, 255, 255);
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 1023px) {
  .writer-link {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .writer-link {
    width: 100%;
    padding: 50px 15px;
    margin-top: 50px;
    font-size: 1.7rem;
  }
}
.writer-link .more-text {
  position: absolute;
  bottom: 10px;
  right: 30px;
  font-size: 1.3rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1023px) {
  .writer-link .more-text {
    font-size: 1.1rem;
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .writer-link .more-text {
    font-size: 0.8rem;
    right: 10px;
  }
}
.writer-link .more-text::after {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 2/1;
  vertical-align: middle;
  margin-left: 5px;
  background-image: url("../../images/white-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.writer-link:hover .more-text::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.header-menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 1230px) {
  .header-menu {
    margin-right: 20px;
  }
}
.header-menu li:not(:first-child) a:not(.btn) {
  border-left: 1px solid rgb(0, 0, 0);
}
.header-menu li:not(.btn) a {
  position: relative;
  padding: 0 10px;
}
@media (max-width: 1230px) {
  .header-menu li:not(.btn) a {
    display: none;
  }
}
.header-menu li:not(.btn) a span {
  position: relative;
  z-index: 2;
}
.header-menu li:not(.btn) a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  background: radial-gradient(circle, rgb(255, 235, 0) 1%, transparent 70%);
}
.header-menu li:not(.btn) a:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.header-menu li:nth-child(odd) a::after {
  background: radial-gradient(circle, rgb(0, 123, 255) 1%, transparent 70%);
}
.header-menu li.btn a {
  width: 95px;
  height: 55px;
  margin-left: 20px;
  border-radius: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
  line-height: 16px;
  border: 1px solid rgb(0, 0, 0);
  background-color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .header-menu li.btn a {
    font-size: 10px;
    height: auto;
    line-height: 12px;
    padding: 5px;
    width: 80px;
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .header-menu li.btn a {
    margin-left: 0;
  }
}
.header-menu li.btn a:hover {
  background-color: rgb(255, 235, 0);
  color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .header-menu li:not(:last-child) {
    display: none;
  }
}
.header-menu a {
  display: inline-block;
  color: rgb(0, 0, 0);
  font-weight: 500;
}

.drawer--right .sp-navigation {
  display: none;
}
@media (max-width: 1230px) {
  .drawer--right .sp-navigation {
    display: block;
  }
}
.drawer--right .sp-navigation .drawer-hamburger {
  z-index: 200;
  top: 20px;
}
@media (max-width: 767px) {
  .drawer--right .sp-navigation .drawer-hamburger {
    top: 0;
  }
}
.drawer--right .sp-navigation .drawer-nav {
  width: 330px;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 60px 30px 50px;
  background-color: rgb(248, 246, 241);
  z-index: 100;
}
.drawer--right .sp-navigation .drawer-menu li:not(:last-child):not(.logo) {
  margin-bottom: 25px;
}
.drawer--right .sp-navigation .drawer-menu li.logo {
  margin-bottom: 30px;
}
.drawer--right .sp-navigation .drawer-menu li:nth-child(odd) a::after {
  background: radial-gradient(circle, rgb(0, 123, 255) 1%, transparent 70%);
}
.drawer--right .sp-navigation .drawer-menu a {
  position: relative;
  color: rgb(0, 0, 0);
}
.drawer--right .sp-navigation .drawer-menu a span {
  position: relative;
  z-index: 2;
}
.drawer--right .sp-navigation .drawer-menu a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  background: radial-gradient(circle, rgb(255, 235, 0) 1%, transparent 70%);
}
.drawer--right .sp-navigation .drawer-menu a:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.drawer--right.drawer-open .drawer-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer--right.drawer-open button.drawer-hamburger {
  right: 0;
}

.footer-menu {
  width: 56%;
}
@media (max-width: 1023px) {
  .footer-menu {
    width: 100%;
  }
}
.footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px 0;
}
@media (max-width: 767px) {
  .footer-menu ul {
    gap: 20px 0;
  }
}
.footer-menu ul li:last-child a {
  border-right: none;
}
.footer-menu ul a {
  display: inline-block;
  padding: 0 20px;
  font-size: 1.3rem;
  border-right: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}
@media (max-width: 1023px) {
  .footer-menu ul a {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .footer-menu ul a {
    font-size: 1rem;
    padding: 0 9px;
  }
}

.event-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
.event-list.pc {
  margin-bottom: 100px;
}
@media (max-width: 1023px) {
  .event-list.pc {
    display: none;
  }
}
.event-list li {
  position: relative;
  width: calc((100% - 100px) / 3);
  height: auto;
}
.event-list li.end {
  position: relative;
  pointer-events: none;
}
.event-list li.end a::after {
  z-index: 2;
  background-color: rgba(89, 89, 89, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.event-list li.end:hover a {
  -webkit-transform: translate(-10px, -10px);
          transform: translate(-10px, -10px);
}
.event-list li::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(231, 225, 210);
}
.event-list li a {
  position: relative;
  z-index: 2;
  -webkit-transform: translate(-10px, -10px);
          transform: translate(-10px, -10px);
  display: block;
  height: 100%;
  color: rgb(0, 0, 0);
  text-align: left;
  background-color: rgb(255, 255, 255);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.event-list li:hover a {
  -webkit-transform: translate(-2px, -2px);
          transform: translate(-2px, -2px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.event-list .image-box {
  position: relative;
}
.event-list .image-box img {
  height: auto;
  aspect-ratio: 380/490;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1100px) {
  .event-list .image-box img {
    aspect-ratio: 1/1;
  }
}
.event-list .text-box {
  padding: 20px;
}
.event-list .company-name {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.1rem;
  font-weight: 500;
  background-color: rgb(255, 255, 255);
  border-radius: 0 20px 0 0;
  padding: 10px 30px 10px 20px;
}
@media (max-width: 767px) {
  .event-list .company-name {
    font-size: 1rem;
  }
}
.event-list .event-list-title {
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(217, 217, 217);
  font-size: 1.7rem;
}
@media (max-width: 767px) {
  .event-list .event-list-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
.event-list .event-list-title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1023px) {
  .event-list.main-event {
    padding-top: 10px;
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (max-width: 1100px) {
  .event-list.main-event li {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 1023px) {
  .event-list.main-event li {
    width: auto;
  }
}
@media (max-width: 1023px) {
  .event-list.main-event.page {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
  }
}
@media (max-width: 1023px) {
  .event-list.main-event.page li {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 767px) {
  .event-list.main-event.page li {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .event-list.recommendation li {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .event-list.recommendation a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1100px) {
  .event-list.recommendation .company-name {
    left: auto;
    right: 0;
    border-radius: 20px 0 0 0;
  }
}
@media (max-width: 1100px) {
  .event-list.recommendation .image-box {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .event-list.recommendation .image-box {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .event-list.recommendation .text-box {
    width: 60%;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .event-list.recommendation .text-box {
    width: 100%;
    padding: 20px;
  }
}

.event-list-inner {
  padding: 5px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgb(217, 217, 217);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
@media (max-width: 767px) {
  .event-list-inner {
    font-size: 0.8rem;
  }
}
.event-list-inner .title {
  font-weight: 500;
  width: 71px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media (max-width: 767px) {
  .event-list-inner .title {
    width: 50px;
  }
}

.event-list-tags {
  margin-top: 20px;
  color: rgb(89, 89, 89);
  font-size: 12px;
}
@media (max-width: 767px) {
  .event-list-tags {
    margin-top: 10px;
    font-size: 10px;
  }
}
.event-list-tags span {
  display: inline-block;
}
.event-list-tags span:not(:last-child) {
  margin-right: 5px;
}

.report-list {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px 30px;
}
@media (max-width: 767px) {
  .report-list.pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .report-list.page {
    gap: 30px 10px;
  }
  .report-list.page li {
    width: calc((100% - 10px) / 2);
  }
  .report-list.page .name {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  .report-list.page .title {
    font-size: 1rem;
  }
}
@media (max-width: 1023px) {
  .report-list .category-badge::before {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .report-list .category-badge::before {
    width: 45px;
  }
}
@media (max-width: 1023px) {
  .report-list .category-badge::after {
    width: 40px;
    bottom: -35px;
  }
}
@media (max-width: 767px) {
  .report-list .category-badge::after {
    width: 35px;
    bottom: -25px;
  }
}
.report-list li {
  width: calc((100% - 90px) / 4);
}
@media (max-width: 1100px) {
  .report-list li {
    width: calc((100% - 60px) / 3);
  }
}
.report-list a {
  position: relative;
  color: rgb(0, 0, 0);
}
.report-list a:hover .image-box > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.report-list .image-box {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
.report-list .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.report-list .name {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 40px 10px 20px;
  border-radius: 0 20px 0 0;
  background-color: rgb(255, 255, 255);
  font-size: 0.9rem;
  font-weight: 500;
}
.report-list .title {
  font-size: 1.3rem;
  margin-top: 10px;
  text-align: left;
}
.report-list .title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list.page {
  width: 90%;
  margin: auto;
}
@media (max-width: 1023px) {
  .news-list.page {
    width: 100%;
  }
}
.news-list li {
  border-bottom: 1px dotted rgb(0, 0, 0);
}
.news-list li:first-child {
  border-top: 1px dotted rgb(0, 0, 0);
}
.news-list a {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 20px;
  color: rgb(0, 0, 0);
  text-align: left;
}
@media (max-width: 767px) {
  .news-list a {
    padding: 20px 0;
  }
}
.news-list .time {
  width: 80px;
  font-size: 0.9rem;
}
.news-list .title {
  font-size: 1.5rem;
  width: calc(100% - 20px - 80px);
}
@media (max-width: 767px) {
  .news-list .title {
    width: 100%;
  }
}
.news-list .title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contents-wrapper.header {
  width: calc(100% - 20px);
}

.header-wrapper {
  padding: 20px 0;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1230px) {
  .header-wrapper {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .header-wrapper {
    padding: 10px 0;
  }
}

.header-logo {
  max-width: 255px;
}
@media (max-width: 767px) {
  .header-logo {
    max-width: 170px;
  }
}

.footer-menu-wrapepr {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1023px) {
  .footer-menu-wrapepr {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .footer-menu-wrapepr {
    padding: 50px 0;
  }
}
.footer-menu-wrapepr .footer-logo {
  max-width: 380px;
}

.copy-right {
  padding: 30px;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.page-sns-section {
  background-color: rgb(248, 246, 241);
}
.page-sns-section .contents-wrapper {
  position: relative;
}

.page-sns-title {
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .page-sns-title {
    margin-bottom: 30px;
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.page-sns-title .en {
  font-family: "Noto Serif JP", serif;
  display: block;
  font-size: 2rem;
  font-weight: 500;
}

.sns-icon-wrapper {
  max-width: 300px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .sns-icon-wrapper {
    max-width: 200px;
  }
}
.sns-icon-wrapper a {
  width: calc((100% - 60px) / 3);
}

.top-banner-section {
  padding-top: 0;
}
.top-banner-section .contents-wrapper {
  position: relative;
  padding: 100px 25px 0;
}
@media (max-width: 1023px) {
  .top-banner-section .contents-wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .top-banner-section .contents-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .top-banner-section div.swiper-button-next,
  .top-banner-section div.swiper-button-prev {
    display: none;
  }
}

div.swiper-button-next,
div.swiper-button-prev {
  width: 50px;
  height: auto;
  top: calc(50% + 50px);
}
@media (max-width: 767px) {
  div.swiper-button-next,
  div.swiper-button-prev {
    width: 30px;
  }
}
div.swiper-button-next::after, div.swiper-button-next::before,
div.swiper-button-prev::after,
div.swiper-button-prev::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
div.swiper-button-next::before,
div.swiper-button-prev::before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
div.swiper-button-next:hover::before,
div.swiper-button-prev:hover::before {
  opacity: 1;
}

div.swiper-button-next::after {
  background-image: url("../../images/right-arrow.svg");
}
div.swiper-button-next::before {
  background-image: url("../../images/hover-right-arrow.svg");
}

div.swiper-button-prev::after {
  background-image: url("../../images/left-arrow.svg");
}
div.swiper-button-prev::before {
  background-image: url("../../images/hover-left-arrow.svg");
}

.top-heading {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "din-condensed-variable", sans-serif;
  text-align: left;
  font-size: clamp(4.5rem, 1.643rem + 4.46vw, 7rem);
  line-height: clamp(4.875rem, 1.875rem + 4.69vw, 7.5rem);
  z-index: 2;
  letter-spacing: -4px;
}
@media (max-width: 767px) {
  .top-heading {
    position: static;
    padding-left: 20px;
  }
}
.top-heading img {
  width: 150px;
  margin-left: 5px;
}

.top-banner-swiper.swiper {
  padding: 50px 20px 0;
  width: calc(100% - 50px);
}
@media (max-width: 1023px) {
  .top-banner-swiper.swiper {
    width: calc(100% - 14px);
    padding: 50px 10px 0;
  }
}
@media (max-width: 767px) {
  .top-banner-swiper.swiper {
    width: 100%;
    padding: 20px 20px 0;
  }
}
.top-banner-swiper.swiper .swiper-slide {
  position: relative;
}

.banner-category.column {
  color: rgb(0, 123, 255);
}
.banner-category.column::before {
  background-image: url("../../images/badge/circle/yellow.svg");
}
.banner-category.column::after {
  background-image: url("../../images/badge/ribbon/blue.svg");
}
.banner-category.event {
  color: rgb(255, 235, 0);
}
.banner-category.event::before {
  background-image: url("../../images/badge/circle/pink.svg");
}
.banner-category.event::after {
  background-image: url("../../images/badge/ribbon/yellow.svg");
}
.banner-category.popularity {
  color: rgb(255, 235, 0);
}
.banner-category.popularity::before {
  background-image: url("../../images/badge/circle/blue-line.svg");
}
.banner-category.popularity::after {
  background-image: url("../../images/badge/ribbon/green.svg");
}

.category-badge {
  font-size: 14px;
  position: absolute;
  top: 0px;
  right: 3px;
  z-index: 4;
}
@media (max-width: 767px) {
  .category-badge {
    font-size: 10px;
  }
}
.category-badge span {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 5px;
}
.category-badge::before, .category-badge::after {
  position: absolute;
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.category-badge::before {
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  aspect-ratio: 1/1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .category-badge::before {
    width: 50px;
  }
}
.category-badge::after {
  bottom: -50px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  aspect-ratio: 5/4;
}
@media (max-width: 767px) {
  .category-badge::after {
    width: 30px;
    bottom: -30px;
  }
}

.badge-link:hover .category-badge::before {
  -webkit-animation: rotate 5s linear 0s infinite normal forwards running;
          animation: rotate 5s linear 0s infinite normal forwards running;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
            transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
            transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
            transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
            transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
  }
}
.top-link-list {
  gap: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1325px) {
  .top-link-list {
    gap: 15px;
  }
}
@media (max-width: 1023px) {
  .top-link-list {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .top-link-list {
    padding: 30px 20px 0;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1170px) {
  .top-link-list .yellow-link span {
    font-size: 1rem;
    padding-left: 10px;
  }
  .top-link-list .yellow-link span::after {
    right: 15px;
  }
}

.top-about-section {
  background: linear-gradient(45deg, rgb(0, 123, 255) 0%, rgb(0, 123, 255) 52%, rgb(255, 235, 0) 100%);
  color: rgb(255, 255, 255);
}

.top-about-title {
  margin-bottom: 50px;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
}
@media (max-width: 1023px) {
  .top-about-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .top-about-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.top-about-text {
  margin-bottom: 30px;
  font-size: 1.5rem;
  line-height: 51px;
}
@media (max-width: 767px) {
  .top-about-text {
    font-size: 1rem;
    line-height: 30px;
  }
}
.top-about-text img {
  display: inline-block;
  max-width: 345px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .top-about-text img {
    max-width: 200px;
  }
}
.top-about-text span {
  display: inline-block;
}

.bg-yellow {
  margin-top: 50px;
  background-color: rgb(255, 251, 199);
}

.top-project-section {
  padding-top: 0;
}

.top-event-text {
  margin-bottom: 100px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .top-event-text {
    margin-bottom: 30px;
  }
}

.sp-swiper-intern.swiper,
.sp-swiper-project.swiper {
  margin-bottom: 50px;
  display: none;
}
@media (max-width: 1023px) {
  .sp-swiper-intern.swiper,
  .sp-swiper-project.swiper {
    display: block;
    padding: 40px 50px 0;
  }
}
@media (max-width: 767px) {
  .sp-swiper-intern.swiper,
  .sp-swiper-project.swiper {
    padding: 30px 30px 0;
  }
}

.event-badge.end {
  color: rgb(0, 255, 200);
}
.event-badge.end::before {
  background-image: url("../../images/badge/circle/black.svg");
}
.event-badge.end::after {
  background-image: url("../../images/badge/ribbon/light-blue.svg");
}
.event-badge.deadline {
  color: rgb(255, 235, 0);
}
.event-badge.deadline span {
  padding: 0;
}
.event-badge.deadline::before {
  background-image: url("../../images/badge/circle/pink.svg");
}
.event-badge.deadline::after {
  bottom: -40px;
  background-image: url("../../images/badge/ribbon/yellow.svg");
}
@media (max-width: 767px) {
  .event-badge.deadline::after {
    bottom: -23px;
  }
}
.event-badge.new {
  color: rgb(0, 123, 255);
}
.event-badge.new::before {
  background-image: url("../../images/badge/circle/yellow.svg");
}
.event-badge.new::after {
  background-image: url("../../images/badge/ribbon/blue.svg");
}
.event-badge.popularity {
  color: rgb(0, 123, 255);
}
.event-badge.popularity::before {
  background-image: url("../../images/badge/circle/green.svg");
}
.event-badge.popularity::after {
  background-image: url("../../images/badge/ribbon/orange.svg");
}
.event-badge.none {
  display: none;
}

.top-ranking-title-wrapper {
  margin-bottom: 50px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .top-ranking-title-wrapper {
    gap: 20px;
    margin-bottom: 40px;
  }
}

.line-title.top-ranking {
  margin-bottom: 0;
}
.line-title.top-ranking img {
  position: static;
  width: 45px;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .line-title.top-ranking img {
    width: 30px;
  }
}
.line-title.top-ranking::after {
  margin-left: 0;
}

.top-ranking-text {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 1023px) {
  .top-ranking-text {
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .top-ranking-text {
    font-size: 1.3;
  }
}

.top-ranking-wrapper {
  counter-reset: number 0;
}

.top-ranking-link {
  position: relative;
  gap: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.3);
  counter-increment: number 1;
}
@media (max-width: 1023px) {
  .top-ranking-link {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .top-ranking-link {
    gap: 0;
  }
}
.top-ranking-link:hover {
  background-color: rgb(248, 246, 241);
}
.top-ranking-link:hover::after {
  opacity: 1;
}
.top-ranking-link::before, .top-ranking-link::after {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1023px) {
  .top-ranking-link::before, .top-ranking-link::after {
    width: 30px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .top-ranking-link::before, .top-ranking-link::after {
    top: auto;
    bottom: 0;
    right: 10px;
    width: 25px;
  }
}
.top-ranking-link::before {
  background-image: url("../../images/right-arrow.svg");
}
.top-ranking-link::after {
  opacity: 0;
  background-image: url("../../images/hover-right-arrow.svg");
}
.top-ranking-link:not(:last-child) {
  margin-bottom: 40px;
}
.top-ranking-link:nth-child(1) .text-box::before {
  color: rgb(255, 235, 0);
  background-image: url("../../images/badge/circle/ranking-blue.svg");
}
.top-ranking-link:nth-child(1) .company-name::before {
  background-color: rgb(0, 123, 255);
}
.top-ranking-link:nth-child(2) .text-box::before {
  background-image: url("../../images/badge/circle/ranking-yellow.svg");
}
.top-ranking-link:nth-child(2) .company-name::before {
  background-color: rgb(255, 235, 0);
}
.top-ranking-link:nth-child(3) .text-box::before {
  background-image: url("../../images/badge/circle/ranking-green.svg");
}
.top-ranking-link:nth-child(3) .company-name::before {
  background-color: rgb(255, 0, 0);
}
.top-ranking-link .image-box {
  width: 20%;
}
@media (max-width: 1220px) {
  .top-ranking-link .image-box {
    width: 30%;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
@media (max-width: 767px) {
  .top-ranking-link .image-box {
    width: 100%;
  }
}
.top-ranking-link .image-box img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1220px) {
  .top-ranking-link .image-box img {
    aspect-ratio: auto;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .top-ranking-link .image-box img {
    aspect-ratio: 1/1;
  }
}
.top-ranking-link .text-box {
  padding: 30px 150px 30px 0;
  width: calc(80% - 100px);
  text-align: left;
  gap: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(0, 0, 0);
}
@media (max-width: 1220px) {
  .top-ranking-link .text-box {
    width: calc(70% - 100px);
  }
}
@media (max-width: 1023px) {
  .top-ranking-link .text-box {
    padding-right: 80px;
    width: calc(70% - 60px);
  }
}
@media (max-width: 767px) {
  .top-ranking-link .text-box {
    position: relative;
    width: 100%;
    padding: 50px 30px;
  }
}
.top-ranking-link .text-box::before {
  position: absolute;
  top: 20px;
  left: 21%;
  width: 60px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: rgb(0, 123, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: counter(number);
}
@media (max-width: 1220px) {
  .top-ranking-link .text-box::before {
    left: 31%;
  }
}
@media (max-width: 1023px) {
  .top-ranking-link .text-box::before {
    width: 40px;
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .top-ranking-link .text-box::before {
    left: 10px;
    top: 10px;
  }
}
.top-ranking-link .inner-box,
.top-ranking-link .title-box {
  width: calc((100% - 30px) / 2);
}
@media (max-width: 1220px) {
  .top-ranking-link .inner-box,
  .top-ranking-link .title-box {
    width: 100%;
  }
}
@media (max-width: 1220px) {
  .top-ranking-link .title-box {
    margin-bottom: 10px;
  }
}
.top-ranking-link .event-list-tags {
  width: 100%;
}
.top-ranking-link .main-title {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
@media (max-width: 1023px) {
  .top-ranking-link .main-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .top-ranking-link .main-title {
    margin-bottom: 15px;
  }
}
.top-ranking-link .main-title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-ranking-link .company-name {
    font-size: 0.8rem;
  }
}
.top-ranking-link .company-name span {
  vertical-align: middle;
}
.top-ranking-link .company-name::before {
  content: "";
  display: inline-block;
  width: 15px;
  margin-right: 5px;
  vertical-align: middle;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .top-ranking-link .company-name::before {
    width: 10px;
    margin-right: 3px;
  }
}

.bg-beige {
  margin-top: 50px;
  background-color: rgb(248, 246, 241);
}
.bg-beige .speech-bubble-title span {
  position: relative;
  z-index: 3;
}
.bg-beige .speech-bubble-title::after {
  background-image: url("../../images/white-speech-bubble.svg");
}

.top-writer-section {
  padding-top: 0;
}
@media (max-width: 1023px) {
  .top-writer-section .black-link.ipad-none {
    display: none;
  }
}
.top-writer-section .black-link.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .top-writer-section .black-link.ipad-block {
    display: block;
    margin-top: 50px;
  }
}

.swiper-writer {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .swiper-writer {
    margin-top: 50px;
  }
}
.swiper-writer.top .position.page {
  display: none;
}
.swiper-writer.page .position.top {
  display: none;
}
.swiper-writer a {
  color: rgb(0, 0, 0);
}
.swiper-writer a .image-box {
  margin-bottom: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.swiper-writer a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.swiper-writer a .text-box {
  margin-top: 20px;
}
.swiper-writer a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.swiper-writer .position {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.swiper-writer .name {
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .top-report-section {
    padding-top: 100px;
  }
}

.sp-report-swiper.swiper:not(.page) {
  display: none;
}
@media (max-width: 767px) {
  .sp-report-swiper.swiper:not(.page) {
    display: block;
    padding-top: 50px;
  }
}
.sp-report-swiper.swiper .report-list {
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.sp-report-swiper.swiper .report-list li {
  width: auto;
}

.top-company-section {
  overflow: hidden;
  background-image: url("../../images/top-company-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.top-company-section .contents-wrapper {
  position: relative;
}
.top-company-section .contents-wrapper::before {
  position: absolute;
  top: calc(100% - 82px);
  left: 0;
  content: "";
  display: block;
  max-width: 600px;
  width: 40%;
  height: 500px;
  background-image: url("../../images/top-company.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: top right;
}
@media (max-width: 1200px) {
  .top-company-section .contents-wrapper::before {
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .top-company-section .contents-wrapper::before {
    display: none;
  }
}
.top-company-section .contents-wrapper::after {
  position: absolute;
  left: 0;
  -webkit-transform: translateX(-99%);
          transform: translateX(-99%);
  top: calc(100% - 82px);
  content: "";
  display: block;
  width: 50vw;
  height: 50%;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 1023px) {
  .top-company-section .contents-wrapper::after {
    display: none;
  }
}
.top-company-section .line-title {
  text-align: left;
}
.top-company-section .line-title::after {
  margin-left: 0;
}

.top-company-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.top-company-wrapper .title-wrapepr {
  width: 426px;
}
@media (max-width: 1023px) {
  .top-company-wrapper .title-wrapepr {
    width: 100%;
  }
}
.top-company-wrapper .logo-wrapper {
  padding-top: 250px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: scroll;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 1023px) {
  .top-company-wrapper .logo-wrapper {
    width: 100%;
    padding-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-right: auto;
  }
}

.top-company-title {
  margin-bottom: 80px;
  font-size: 3.8rem;
  text-align: left;
  color: rgb(255, 255, 255);
  font-family: "Noto Serif JP", serif;
  line-height: 110px;
}
@media (max-width: 767px) {
  .top-company-title {
    font-size: 2.5rem;
    line-height: 70px;
    margin-bottom: 50px;
  }
}
.top-company-title span {
  display: block;
}
.top-company-title .border {
  color: rgb(255, 255, 255);
  -webkit-text-fill-color: transparent; /* （順序に関係なく）色を上書きする */
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.company-swiper {
  width: 100%;
  height: 650px;
}
@media (max-width: 767px) {
  .company-swiper {
    height: 230px;
  }
}
.company-swiper img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
}

.top-news-section .contents-wrapper {
  position: relative;
}
@media (max-width: 767px) {
  .top-news-section .black-link.pc {
    display: none;
  }
}
.top-news-section .black-link.sp {
  display: none;
}
@media (max-width: 767px) {
  .top-news-section .black-link.sp {
    display: block;
    margin-top: 40px;
  }
}

.news-title {
  position: absolute;
  top: -150px;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1200px) {
  .news-title {
    left: 0;
  }
}
@media (max-width: 1023px) {
  .news-title {
    position: static;
    margin-bottom: 30px;
  }
}
.news-title.page {
  position: static;
  display: block;
  text-align: left;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .news-title.page {
    margin-bottom: 50px;
  }
}
.news-title.page p {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
.news-title p {
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 70px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media (max-width: 1023px) {
  .news-title p {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
@media (max-width: 767px) {
  .news-title p {
    font-size: 2rem;
    line-height: 50px;
  }
}
@media (max-width: 1023px) {
  .news-title p:last-child {
    margin-left: 100px;
  }
}
.news-title .blue-text {
  color: rgb(0, 123, 255);
}
.news-title .yellow-text {
  color: rgb(255, 235, 0);
}

.top-news-contents {
  width: 80%;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .top-news-contents {
    width: 100%;
  }
}
.top-news-contents .title-box {
  margin-bottom: 50px;
}

.top-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
@media (max-width: 1150px) {
  .top-link-wrapper {
    gap: 30px;
  }
}

.top-link-box {
  width: calc((100% - 100px) / 3);
  padding: 70px 30px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 1.5px 1.5px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1150px) {
  .top-link-box {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 1023px) {
  .top-link-box {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .top-link-box {
    width: 100%;
    padding: 30px;
  }
}
.top-link-box.yellow {
  background-color: rgb(255, 235, 0);
}
.top-link-box.yellow .title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .top-link-box.yellow .title {
    margin-bottom: 30px;
  }
}
.top-link-box.green {
  background-color: rgb(0, 255, 200);
}
.top-link-box.blue {
  width: calc((100% - 100px) / 3 * 2 + 50px);
  background: linear-gradient(45deg, rgb(0, 123, 255) 0%, rgb(0, 123, 255) 52%, rgb(255, 235, 0) 100%);
}
@media (max-width: 1150px) {
  .top-link-box.blue {
    width: calc((100% - 60px) / 3 * 2 + 30px);
  }
}
@media (max-width: 1023px) {
  .top-link-box.blue {
    width: 100%;
  }
}
.top-link-box.blue .title {
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .top-link-box.blue .title {
    margin-bottom: 30px;
  }
}
.top-link-box .black-link {
  width: 100%;
  font-size: 0.7rem;
  max-width: 255px;
}
.top-link-box .black-link:not(:last-child) {
  margin-bottom: 20px;
}
.top-link-box .title {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 1150px) {
  .top-link-box .title {
    font-size: 1.5rem;
  }
}
.top-link-box .title span {
  display: inline-block;
}
.top-link-box p {
  margin-bottom: 50px;
}
.top-link-box p span {
  display: inline-block;
}
.top-link-box .sns-wrapper {
  gap: 30px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
}

.contact-list {
  max-width: 700px;
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
@media (max-width: 767px) {
  .contact-list {
    margin-bottom: 30px;
  }
}
.contact-list.contact .one {
  background-color: rgb(0, 123, 255);
  color: rgb(255, 255, 255);
}
.contact-list.confirmation .inner-box:not(.three) {
  background-color: rgb(0, 123, 255);
  color: rgb(255, 255, 255);
}
.contact-list.thanks .inner-box {
  background-color: rgb(0, 123, 255);
  color: rgb(255, 255, 255);
}
.contact-list .inner-box {
  position: relative;
  width: calc((100% - 60px) / 3);
  padding: 15px;
  border-radius: 50px;
  border: 1px solid rgb(0, 123, 255);
  color: rgb(0, 123, 255);
}
.contact-list .inner-box:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  content: "";
  display: block;
  width: 28px;
  height: 20px;
  background-image: url("../../images/blue-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.contact-wrapper {
  max-width: 1000px;
  margin: auto;
}
.contact-wrapper.confirm .input-box {
  border-bottom: 1px solid rgb(231, 225, 210);
}
.contact-wrapper .inner-box {
  margin-bottom: 50px;
  text-align: left;
}
.contact-wrapper .title {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 500;
}
.contact-wrapper .title span {
  vertical-align: middle;
}
.contact-wrapper .title.must::after {
  margin-left: 5px;
  font-size: 0.9rem;
  content: "※";
  vertical-align: middle;
  color: rgb(193, 39, 45);
}
.contact-wrapper .text-common {
  display: block;
  padding: 10px;
  width: 100%;
  font-family: "M PLUS 1p", sans-serif;
  border: 1px solid rgb(231, 225, 210);
  border-radius: 5px;
}
.contact-wrapper .button-submit {
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 1.2rem;
  border-radius: 50px;
  font-family: "M PLUS 1p", sans-serif;
  max-width: 300px;
  margin: auto;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-wrapper .button-submit.fixes {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.contact-wrapper .button-submit.fixes:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.contact-wrapper .button-submit:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

.contact-btn-wrapper p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.contact-btn-wrapper p br {
  display: none;
}
.contact-btn-wrapper .wpcf7-spinner {
  display: none;
}

.thanks-text {
  line-height: 2;
}
@media (max-width: 767px) {
  .thanks-text {
    font-size: 0.9rem;
  }
}

.archive-report-section .contents-wrapper {
  position: relative;
}

.page-top-en {
  width: 20%;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 200px;
}
@media (max-width: 1023px) {
  .page-top-en {
    position: static;
    margin-bottom: 30px;
    margin-left: 0;
  }
}

.report-list-text {
  font-size: 1.5rem;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .report-list-text {
    margin-bottom: 50px;
  }
}

.wp-pagenavi {
  margin-top: 50px;
}
.wp-pagenavi a, .wp-pagenavi span {
  border: none;
  display: inline-block;
  color: rgb(0, 0, 0);
  font-size: 1.3rem;
}
.wp-pagenavi a:not(:last-child), .wp-pagenavi span:not(:last-child) {
  margin-right: 20px;
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 123, 255);
  padding: 5px 10px;
  border-radius: 5px;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink, .wp-pagenavi span.nextpostslink, .wp-pagenavi span.previouspostslink {
  padding: 0;
}
.wp-pagenavi a.nextpostslink .arrow, .wp-pagenavi a.previouspostslink .arrow, .wp-pagenavi span.nextpostslink .arrow, .wp-pagenavi span.previouspostslink .arrow {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  width: 45px;
  padding: 0;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.wp-pagenavi a.nextpostslink .arrow::before, .wp-pagenavi a.previouspostslink .arrow::before, .wp-pagenavi span.nextpostslink .arrow::before, .wp-pagenavi span.previouspostslink .arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wp-pagenavi a.nextpostslink .arrow.left, .wp-pagenavi a.previouspostslink .arrow.left, .wp-pagenavi span.nextpostslink .arrow.left, .wp-pagenavi span.previouspostslink .arrow.left {
  background-image: url("../../images/left-arrow.svg");
}
.wp-pagenavi a.nextpostslink .arrow.left::before, .wp-pagenavi a.previouspostslink .arrow.left::before, .wp-pagenavi span.nextpostslink .arrow.left::before, .wp-pagenavi span.previouspostslink .arrow.left::before {
  background-image: url("../../images/hover-left-arrow.svg");
}
.wp-pagenavi a.nextpostslink .arrow.right, .wp-pagenavi a.previouspostslink .arrow.right, .wp-pagenavi span.nextpostslink .arrow.right, .wp-pagenavi span.previouspostslink .arrow.right {
  background-image: url("../../images/right-arrow.svg");
}
.wp-pagenavi a.nextpostslink .arrow.right::before, .wp-pagenavi a.previouspostslink .arrow.right::before, .wp-pagenavi span.nextpostslink .arrow.right::before, .wp-pagenavi span.previouspostslink .arrow.right::before {
  background-image: url("../../images/hover-right-arrow.svg");
}
.wp-pagenavi a.nextpostslink .arrow:hover::before, .wp-pagenavi a.previouspostslink .arrow:hover::before, .wp-pagenavi span.nextpostslink .arrow:hover::before, .wp-pagenavi span.previouspostslink .arrow:hover::before {
  opacity: 1;
}

.report-single-image {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .report-single-image {
    margin-bottom: 30px;
  }
}

.single-title {
  margin-bottom: 50px;
  text-align: left;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .single-title {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}
.single-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(0, 123, 255)), to(rgb(255, 235, 0)));
  background: linear-gradient(to right, rgb(0, 123, 255) 30%, rgb(255, 235, 0));
}

.writer-section .writer-title {
  font-size: 1.9rem;
  padding: 20px;
  color: rgb(255, 255, 255);
  background: linear-gradient(45deg, rgb(0, 123, 255) 0%, rgb(0, 123, 255) 52%, rgb(255, 235, 0) 100%);
}
@media (max-width: 767px) {
  .writer-section .writer-title {
    font-size: 1.5rem;
  }
}
.writer-section .main-writer {
  padding: 50px 0;
  background-color: rgb(248, 246, 241);
}
.writer-section .main-writer .inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .writer-section .main-writer .inner-wrapper {
    gap: 30px;
  }
}
.writer-section .main-writer .image-box {
  width: 30%;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .writer-section .main-writer .image-box {
    width: 50%;
  }
}
.writer-section .main-writer .text-box {
  width: calc(70% - 50px);
  text-align: left;
  font-size: 1.3rem;
}
@media (max-width: 1023px) {
  .writer-section .main-writer .text-box {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .writer-section .main-writer .text-box {
    width: 100%;
    font-size: 0.9rem;
  }
}
.writer-section .main-writer .name {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.main-contents.btn {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .main-contents.btn {
    margin-bottom: 30px;
  }
}

.report-popularity-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .report-popularity-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.report-popularity-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
@media (max-width: 1023px) {
  .report-popularity-list {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .report-popularity-list {
    gap: 30px;
  }
}
.report-popularity-list li {
  width: calc((100% - 100px) / 3);
}
@media (max-width: 1023px) {
  .report-popularity-list li {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 767px) {
  .report-popularity-list li {
    width: 100%;
  }
}
.report-popularity-list li:hover .image-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.report-popularity-list .image-box {
  margin-bottom: 5px;
  overflow: hidden;
}
.report-popularity-list .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.report-popularity-list .text-box {
  text-align: left;
  color: rgb(0, 0, 0);
}
.report-popularity-list .time {
  font-size: 0.7rem;
  color: rgb(89, 89, 89);
}
.report-popularity-list .title {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .report-popularity-list .title {
    font-size: 1.2rem;
  }
}
.report-popularity-list .title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.report-popularity-list .writer-wrapper {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.report-popularity-list .writer-image {
  width: 40px;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .report-popularity-list .writer-image {
    width: 30px;
  }
}
.report-popularity-list .writer-image img {
  border-radius: 50%;
}

.event-page-title {
  font-size: 1.9rem;
}
@media (max-width: 767px) {
  .event-page-title {
    font-size: 1.5rem;
  }
}
.event-page-title::after {
  content: "";
  display: block;
  width: 165px;
  height: 3px;
  margin: 5px auto 50px;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(0, 123, 255)), to(rgb(255, 235, 0)));
  background: linear-gradient(to right, rgb(0, 123, 255) 30%, rgb(255, 235, 0));
}
.event-page-title span {
  padding-top: 50px;
  position: relative;
  display: inline-block;
}
.event-page-title img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  width: 100%;
}
@media (max-width: 1023px) {
  .event-page-title img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .event-page-title img {
    -webkit-transform: translate(-10%, -40%);
            transform: translate(-10%, -40%);
  }
}

.event-page-link-wrapper {
  position: relative;
  max-width: 520px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 1px solid rgb(0, 123, 255);
  border-radius: 50px;
}
.event-page-link-wrapper a {
  padding: 20px 10px;
  position: relative;
  z-index: 2;
  width: 55%;
  border-radius: 50px;
  display: block;
  color: rgb(0, 123, 255);
}
.event-page-link-wrapper a.project-link {
  margin-right: -10%;
}
.event-page-link-wrapper a.project-link::after {
  -webkit-transform-origin: left;
          transform-origin: left;
}
.event-page-link-wrapper a.intern-link::after {
  -webkit-transform-origin: right;
          transform-origin: right;
}
.event-page-link-wrapper a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 123, 255);
  border-radius: 50px;
  z-index: 1;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.event-page-link-wrapper a span {
  position: relative;
  z-index: 2;
}
.event-page-link-wrapper.project .project-link {
  pointer-events: none;
  color: rgb(255, 255, 255);
}
.event-page-link-wrapper.project .project-link::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.event-page-link-wrapper.project .intern-link {
  z-index: 3;
}
.event-page-link-wrapper.project .intern-link::after {
  background-color: rgb(255, 255, 255);
}
.event-page-link-wrapper.project .intern-link:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.event-page-link-wrapper.intern .intern-link {
  pointer-events: none;
  color: rgb(255, 255, 255);
}
.event-page-link-wrapper.intern .intern-link::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.event-page-link-wrapper.intern .project-link {
  z-index: 3;
}
.event-page-link-wrapper.intern .project-link::after {
  background-color: rgb(255, 255, 255);
}
.event-page-link-wrapper.intern .project-link:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.event-search-wrapper {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px 30px;
}
@media (max-width: 767px) {
  .event-search-wrapper {
    margin-bottom: 50px;
  }
}
.event-search-wrapper .free {
  position: relative;
}
@media (max-width: 767px) {
  .event-search-wrapper .free {
    width: 80%;
  }
}
.event-search-wrapper .free::before {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url("../../images/search-icon.svg");
  pointer-events: none;
}
@media (max-width: 767px) {
  .event-search-wrapper .free::before {
    width: 15px;
  }
}
.event-search-wrapper .free input {
  display: block;
  width: 250px;
  padding: 15px 10px 15px 38px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(217, 217, 217);
}
@media (max-width: 767px) {
  .event-search-wrapper .free input {
    padding: 10px 10px 10px 38px;
    width: 100%;
  }
}
.event-search-wrapper :placeholder {
  color: rgb(168, 168, 168);
}
@media (max-width: 767px) {
  .event-search-wrapper .button {
    width: 80%;
  }
}
.event-search-wrapper .button img {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .event-search-wrapper .button img {
    width: 15px;
  }
}
.event-search-wrapper .button button {
  width: 195px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(217, 217, 217);
  border-radius: 20px;
  padding: 10px;
  color: rgb(168, 168, 168);
  text-align: left;
}
@media (max-width: 767px) {
  .event-search-wrapper .button button {
    width: 100%;
    padding: 7px 10px;
  }
}

.event-single-title-wrapper {
  margin-bottom: 50px;
  text-align: left;
}
.event-single-title-wrapper .time {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  color: rgb(89, 89, 89);
}
@media (max-width: 767px) {
  .event-single-title-wrapper .time {
    width: calc(100% - 50px - 20px);
  }
}
.event-single-title-wrapper .event-list-tags {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.event-single-title-wrapper .event-list-tags span {
  font-size: 1.3rem;
  padding: 5px;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 251, 199);
}
@media (max-width: 767px) {
  .event-single-title-wrapper .event-list-tags span {
    font-size: 1rem;
  }
}
.event-single-title-wrapper .category-badge {
  position: relative;
}
.event-single-title-wrapper .title-inner {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .event-single-title-wrapper .title-inner {
    gap: 20px;
  }
}
.event-single-title-wrapper .event-single-title {
  font-size: 1.7rem;
  width: calc(100% - 100px - 100px - 30px);
}
@media (max-width: 767px) {
  .event-single-title-wrapper .event-single-title {
    width: calc(100% - 40px);
    font-size: 1.3rem;
  }
}
.event-single-title-wrapper .favorite-box {
  display: block;
  width: 100px;
  text-align: center;
  color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .event-single-title-wrapper .favorite-box {
    width: 50px;
    font-size: 10px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.event-link-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}
@media (max-width: 1100px) {
  .event-link-wrapper {
    gap: 25px;
  }
}
@media (max-width: 1023px) {
  .event-link-wrapper {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .event-link-wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.event-link-wrapper a {
  display: block;
}
@media (max-width: 767px) {
  .event-link-wrapper a span {
    font-size: 0.9rem;
    padding: 20px 10px;
  }
}
.event-link-wrapper a span::after {
  width: 15px;
  aspect-ratio: 3/2;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: rgb(0, 123, 255);
}

.event-single-box:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .event-single-box:not(:last-child) {
    margin-bottom: 60px;
  }
}
.event-single-box .text-box {
  text-align: left;
}
.event-single-box.place iframe {
  aspect-ratio: 16/9;
}

.event-single-sub-title {
  font-size: 1.9rem;
  padding-bottom: 15px;
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 1px solid rgb(217, 217, 217);
}
@media (max-width: 767px) {
  .event-single-sub-title {
    font-size: 1.5rem;
  }
}
.event-single-sub-title span {
  vertical-align: middle;
}
.event-single-sub-title::before {
  content: "";
  display: inline-block;
  width: 40px;
  margin-right: 10px;
  aspect-ratio: 1/1;
  vertical-align: middle;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.event-single-sub-title.about::before {
  background-image: url("../../images/event-icon1.svg");
}
.event-single-sub-title.schedule::before {
  background-image: url("../../images/event-icon2.svg");
}
.event-single-sub-title.play::before {
  background-image: url("../../images/event-icon3.svg");
}
.event-single-sub-title.place::before {
  background-image: url("../../images/event-icon4.svg");
}
.event-single-sub-title.other::before {
  background-image: url("../../images/event-icon5.svg");
}
.event-single-sub-title.message::before {
  background-image: url("../../images/company-icon1.svg");
}
.event-single-sub-title.report::before {
  background-image: url("../../images/company-icon2.svg");
}
.event-single-sub-title.movie::before {
  background-image: url("../../images/company-icon3.svg");
}
.event-single-sub-title.company-about::before {
  background-image: url("../../images/company-icon4.svg");
}

.schedule-time {
  margin-bottom: 50px;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 767px) {
  .schedule-time {
    position: relative;
    margin-bottom: 30px;
  }
}
.schedule-time .title {
  width: 120px;
  padding: 20px 10px;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: rgb(248, 246, 241);
}
@media (max-width: 767px) {
  .schedule-time .title {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0;
    background-color: transparent;
  }
}
.schedule-time .time-wrapper {
  width: calc(100% - 120px - 20px);
  padding: 20px 30px;
  background-color: rgb(248, 246, 241);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) {
  .schedule-time .time-wrapper {
    width: 100%;
    padding: 30px 20px 20px;
  }
}

.event-schedule-list li {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.event-schedule-list li:not(:last-child) > span::before {
  position: absolute;
  top: 5px;
  right: 9px;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgb(255, 235, 0);
}
@media (max-width: 767px) {
  .event-schedule-list li:not(:last-child) > span::before {
    display: none;
  }
}
.event-schedule-list li:not(:last-child) .schedule-contents {
  padding-bottom: 50px;
}
.event-schedule-list li > span {
  width: 120px;
  font-size: 1.3rem;
  position: relative;
}
@media (max-width: 767px) {
  .event-schedule-list li > span {
    width: 100%;
    text-align: left;
    padding-left: 20px;
  }
}
.event-schedule-list li > span::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  margin-left: 10px;
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: rgb(255, 235, 0);
}
@media (max-width: 767px) {
  .event-schedule-list li > span::after {
    right: auto;
    left: 0;
    margin-left: 0;
    top: 6px;
    width: 15px;
  }
}
.event-schedule-list .schedule-contents {
  width: calc(100% - 120px - 10px);
  text-align: left;
}
@media (max-width: 767px) {
  .event-schedule-list .schedule-contents {
    width: 100%;
  }
}
.event-schedule-list .title {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 500;
}

.event-play-list {
  counter-reset: number 0;
}
.event-play-list li {
  counter-increment: number 1;
  text-align: left;
}
.event-play-list li:not(:last-child) {
  margin-bottom: 15px;
}
.event-play-list li::before {
  content: counter(number);
  display: inline-block;
  border: 1px solid rgb(0, 0, 0);
  margin-right: 5px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 25px;
  text-align: center;
  line-height: 25px;
}
@media (max-width: 767px) {
  .event-play-list li::before {
    width: 20px;
    font-size: 0.8rem;
    line-height: 20px;
  }
}

.event-place {
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  background-color: rgb(248, 246, 241);
}
@media (max-width: 767px) {
  .event-place {
    padding: 15px;
  }
}

.event-google-map {
  aspect-ratio: 16/9;
}

.swiper-writer.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
@media (max-width: 1100px) {
  .swiper-writer.page {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .swiper-writer.page {
    gap: 10px;
  }
}
.swiper-writer.page li {
  width: calc((100% - 150px) / 4);
  text-align: left;
}
@media (max-width: 1100px) {
  .swiper-writer.page li {
    width: calc((100% - 90px) / 4);
  }
}
@media (max-width: 1023px) {
  .swiper-writer.page li {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 767px) {
  .swiper-writer.page li {
    width: calc((100% - 10px) / 2);
  }
}
.swiper-writer.page .image-box {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 20px;
}
.swiper-writer.page .position {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 15px;
  margin-bottom: 0;
  padding: 10px 20px;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .swiper-writer.page .position {
    font-size: 0.8rem;
  }
}
@media (max-width: 767px) {
  .swiper-writer.page .name {
    font-size: 1rem;
  }
}

.single-writer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .single-writer-wrapper {
    gap: 30px;
  }
}
.single-writer-wrapper .image-box {
  width: 30%;
}
@media (max-width: 767px) {
  .single-writer-wrapper .image-box {
    width: 50%;
    margin: auto;
  }
}
.single-writer-wrapper .text-box {
  width: calc(70% - 50px);
  text-align: left;
}
@media (max-width: 767px) {
  .single-writer-wrapper .text-box {
    width: 100%;
  }
}
.single-writer-wrapper .position {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .single-writer-wrapper .position {
    font-size: 1.2rem;
  }
}
.single-writer-wrapper .name {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 2.1rem;
}
@media (max-width: 767px) {
  .single-writer-wrapper .name {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.single-writer-wrapper .contents {
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .single-writer-wrapper .contents {
    font-size: 0.8rem;
  }
}

.sp-report-swiper.swiper.page {
  margin: 50px 0;
}
.sp-report-swiper.swiper.page .report-list {
  margin-bottom: 30px;
}

.swiper .swiper-scrollbar {
  opacity: 1 !important;
  background: rgb(255, 255, 255);
}
.swiper .swiper-scrollbar-drag {
  background: #E7E1D2;
}

.company-page-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.company-page-title-wrapper .company-page-title {
  font-size: 1.9rem;
  font-weight: 500;
}

.company-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 80px;
}
@media (max-width: 1023px) {
  .company-list {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .company-list {
    gap: 35px;
  }
}
.company-list li {
  width: calc((100% - 80px) / 2);
  background-color: rgb(248, 246, 241);
}
@media (max-width: 1023px) {
  .company-list li {
    width: calc((100% - 50px) / 2);
  }
}
@media (max-width: 767px) {
  .company-list li {
    width: 100%;
  }
}
.company-list li:hover a {
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.company-list li a {
  display: block;
  height: 100%;
  -webkit-transform: translate(-10px, -10px);
          transform: translate(-10px, -10px);
  background-color: rgb(255, 255, 255);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.company-list li .image-box {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.company-list li .image-box img:not(.logo) {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-list li .image-box img.logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30%;
}
.company-list li .company-name {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 0 20px 0 0;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .company-list li .company-name {
    font-size: 1rem;
  }
}
.company-list .text-box {
  padding: 20px 30px;
  color: rgb(0, 0, 0);
  text-align: left;
}
.company-list .list-text {
  padding-bottom: 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgb(217, 217, 217);
}
@media (max-width: 767px) {
  .company-list .list-text {
    font-size: 0.8rem;
  }
}

.company-single-title-wrapepr {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1023px) {
  .company-single-title-wrapepr {
    gap: 10px;
  }
}
.company-single-title-wrapepr .logo {
  margin: 0;
  width: 200px;
}
.company-single-title-wrapepr .title-inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
@media (max-width: 1023px) {
  .company-single-title-wrapepr .title-inner {
    width: calc(100% - 10px - 100px);
  }
}
@media (max-width: 767px) {
  .company-single-title-wrapepr .title-inner {
    width: calc(100% - 10px - 50px);
  }
}
.company-single-title-wrapepr .event-list-tags {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.company-single-title-wrapepr .event-list-tags span {
  font-size: 1.3rem;
  padding: 5px;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 251, 199);
}
@media (max-width: 767px) {
  .company-single-title-wrapepr .event-list-tags span {
    font-size: 1rem;
  }
}
.company-single-title-wrapepr .title {
  font-size: 1.7rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .company-single-title-wrapepr .title {
    font-size: 1.5rem;
  }
}
.company-single-title-wrapepr .favorite-box {
  display: block;
  width: 100px;
  text-align: center;
  color: rgb(0, 0, 0);
}
@media (max-width: 767px) {
  .company-single-title-wrapepr .favorite-box {
    width: 50px;
    font-size: 10px;
  }
}

.swiper.sp-swiper-project.page {
  display: block;
  padding-top: 50px;
}
.swiper.sp-swiper-project.page .event-list {
  margin-bottom: 30px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.movie-swiper .swiper-wrapper {
  margin-bottom: 30px;
}

.company-about-list .schedule-time:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .company-about-list .schedule-time:not(:last-child) {
    margin-bottom: 35px;
  }
}
.company-about-list .schedule-time a {
  color: rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
}
.company-about-list .company-map:not(:last-child) {
  margin-bottom: 10px;
}
.company-about-list .company-map iframe {
  aspect-ratio: 16/9;
}
/*# sourceMappingURL=main.css.map */