@charset "UTF-8";
/* 変数設定 */
.hero-container {
  width: 100vw;
  background: url("../../img/home/hero-bg-pc.jpg");
  background-color: #F2F1EC;
  background-repeat: no-repeat;
  background-position: center top;
  padding: 5rem 0 0 0;
}
@media only screen and (max-width: 744px) {
  .hero-container {
    background-position: 70% 0;
    min-height: auto;
  }
}

.hero-inner {
  display: flex;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}
@media only screen and (max-width: 1279px) {
  .hero-inner {
    max-width: 1080px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero-inner {
    max-width: 924px;
  }
}
@media only screen and (max-width: 959px) {
  .hero-inner {
    max-width: 860px;
  }
}
.hero-inner .hero-msg {
  width: 36%;
  opacity: 0;
  transform: scale(0.9);
  animation: msgIn 0.8s ease-out forwards;
}
.hero-inner .hero-msg img {
  width: 100%;
}
@media only screen and (max-width: 744px) {
  .hero-inner {
    flex-direction: column;
    width: 90%;
    max-width: 959px;
    margin-top: 60px;
  }
  .hero-inner .hero-msg {
    width: 90%;
    max-width: 51rem;
    margin: 0 auto 3.2rem auto;
  }
}

@keyframes msgIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.slider-area {
  position: relative;
  margin-bottom: 2rem;
  width: 58%;
  aspect-ratio: 860/570;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slider-area.is-start {
  opacity: 1;
}
@media only screen and (max-width: 744px) {
  .slider-area {
    width: 96%;
    margin: 2rem;
  }
}

.slider-item {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, visibility 1s;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
.slider-item.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease-in-out;
}
.slider-item.is-active img {
  transform: scale(1);
  transition: transform 3s linear;
}
.slider-item .caption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 15;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.slider-item.is-active .caption {
  opacity: 1;
  transform: translateY(0);
}
.slider-item.is-light .caption {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.slider-item.is-dark .caption {
  color: #000000;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.slider-item:not(.is-active) img {
  transform: scale(1);
  transition: transform 1s linear;
}

/***
無限スライダー
***/
.infinite-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 1.6rem;
  background: #fff;
  padding: 1.6rem 0;
  position: relative;
  --line-width: 0%;
}
.infinite-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--line-width);
  height: 4px;
  background-color: #B60014;
}
.infinite-slider-inner {
  display: flex;
  width: fit-content;
  animation: loop-scroll 40s linear infinite;
}
.infinite-slider-inner:hover {
  animation-play-state: paused;
}
.infinite-slider .loop-item {
  display: block;
  width: 400px;
  margin-right: 1.6rem;
  flex-shrink: 0;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .infinite-slider .loop-item {
    width: 300px;
  }
}
@media only screen and (max-width: 959px) {
  .infinite-slider .loop-item {
    width: 240px;
  }
}
@media only screen and (max-width: 479px) {
  .infinite-slider .loop-item {
    width: 180px;
  }
}
.infinite-slider .loop-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  will-change: transform;
}
.infinite-slider .loop-item:hover {
  opacity: 0.9;
}
.infinite-slider .loop-item:hover img {
  transform: scale(1.1);
}

@keyframes loop-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/****
  共通
***/
.title-box h2 {
  font-size: 4.8rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
@media only screen and (max-width: 744px) {
  .title-box h2 {
    font-size: 3.2rem;
  }
}
.title-box h2 span {
  display: block;
  color: #B60014;
  font-size: 1.8rem;
  font-family: "Roboto", serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 744px) {
  .title-box h2 span {
    font-size: 1.4rem;
  }
}

.section {
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
}
@media only screen and (max-width: 744px) {
  .section {
    padding-top: 3.2rem;
    padding-bottom: 4rem;
  }
}

.arrow-box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #B60014;
}
@media only screen and (max-width: 744px) {
  .arrow-box {
    top: auto;
    bottom: 0;
    transform: none;
    width: 30px;
    height: 30px;
  }
}
.arrow-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 744px) {
  .arrow-box::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.js-st-ttl,
.js-st-box {
  opacity: 0;
}

/***
ご挨拶
***/
.greeting-box {
  display: block;
  max-width: 1040px;
  background-color: #f2f1ec;
  padding: 2.4rem;
  margin: 4rem auto;
  position: relative;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.greeting-box:hover {
  background-color: #ebeae4;
}
.greeting-box:hover .arrow-box::after {
  transform: translate(-15%, -50%) rotate(45deg);
}
.greeting-box-inner {
  width: 100%;
  margin: 0;
  background-color: #ffffff;
}
.greeting-box-ttl {
  padding: 2.4rem 7rem 0 3rem;
  margin-left: 4rem;
  margin-bottom: 2.4rem;
  position: relative;
}
.greeting-box-ttl h3 {
  font-size: 3rem;
  line-height: 1.3;
  padding-bottom: 1.6rem;
}
.greeting-box-ttl h3 span {
  font-size: 1.6rem;
  margin-right: 1.6rem;
}
.greeting-box-ttl p {
  color: #B60014;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}
.greeting-box-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2.4rem;
  width: 4px;
  height: calc(100% + 2.4rem);
  background-color: #B60014;
  z-index: 2;
}
.greeting-box-msg {
  padding: 0 2.4rem 2.4rem 7rem;
}
.greeting-box-msg p {
  color: var(--text-clor);
  line-height: 2;
}
@media only screen and (max-width: 744px) {
  .greeting-box {
    padding: 1.6rem;
    margin: 3.2rem auto;
  }
  .greeting-box-ttl {
    margin-left: 1.6rem;
    padding: 1.6rem 1.6rem 0 2rem;
  }
  .greeting-box-ttl::before {
    top: -1.6rem;
    height: calc(100% + 1.6rem);
  }
  .greeting-box h3 {
    font-size: 2.2rem;
  }
  .greeting-box h3 span {
    margin-bottom: 0.4rem;
    font-size: 1.4rem;
  }
  .greeting-box p {
    font-size: 1.3rem;
  }
  .greeting-box-msg {
    padding: 0 1.6rem 3.2rem 2rem;
  }
  .greeting-box-msg p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

/***
祝辞
***/
.section-message {
  width: 100%;
  background: #fff url("../../img/home/msg-bg.jpg") repeat-y center 0;
}
.section-message-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem;
}
.section-message-inner .items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  margin-top: 4rem;
}
.section-message-inner .items-grid .item-card {
  width: calc((100% - 48px) / 4);
}
.section-message-inner .items-grid .item-card a {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.section-message-inner .items-grid .item-card a:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.section-message-inner .items-grid .item-card img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 744px) {
  .section-message-inner .items-grid {
    gap: 20px;
  }
  .section-message-inner .items-grid .item-card {
    width: calc((100% - 40px) / 2);
  }
}

/***
歩み
***/
.section-history-inner {
  max-width: 1080px;
  padding: 2rem;
  margin: 4rem auto;
}
@media only screen and (max-width: 744px) {
  .section-history-inner {
    margin: 3.2rem auto;
  }
}
.section-history-inner .history-item {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 20rem;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 744px) {
  .section-history-inner .history-item {
    flex-direction: column;
    min-height: auto;
    padding: 5.6rem 1rem 4rem;
    text-align: center;
  }
}
.section-history-inner .history-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  opacity: 1;
}
.section-history-inner .history-item:hover .arrow-box::after {
  transform: translate(-15%, -50%) rotate(45deg);
}
.section-history-inner .history-item {
  opacity: 0;
}
.section-history-inner #chapter01 {
  background-image: url("../../img/home/history-ch01.jpg");
}
.section-history-inner #chapter02 {
  background-image: url("../../img/home/history-ch02.jpg");
}
.section-history-inner #chapter03 {
  background-image: url("../../img/home/history-ch03.jpg");
}
.section-history-inner #chapter04 {
  background-image: url("../../img/home/history-ch04.jpg");
}
.section-history-inner .chapter {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background-color: #B60014;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.6rem;
  z-index: 2;
}
.section-history-inner .chapter img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 744px) {
  .section-history-inner .chapter img {
    width: 80%;
  }
}
@media only screen and (max-width: 744px) {
  .section-history-inner .chapter {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 48px;
    padding: 0 0.8rem;
  }
}
.section-history-inner .outline {
  max-width: 500px;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media only screen and (max-width: 744px) {
  .section-history-inner .outline {
    max-width: 100%;
    margin-top: 2rem;
  }
}
.section-history-inner .outline img {
  display: inline-block;
  height: 32px;
  width: auto;
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 744px) {
  .section-history-inner .outline img {
    height: 24px;
    margin-bottom: 1rem;
  }
}
.section-history-inner .outline p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 744px) {
  .section-history-inner .outline p {
    font-size: 1.8rem;
  }
}
.section-history-inner .outline p span {
  display: block;
  font-size: 1.6rem;
}
@media only screen and (max-width: 744px) {
  .section-history-inner .outline p span {
    font-size: 1.4rem;
    padding-top: 0.8rem;
    font-weight: 400;
  }
}

/***
エールインタビュー
***/
.section-intervew {
  width: 100%;
  background: #F2F1ED url("../../img/home/interview-bg.jpg") no-repeat 50% 40%;
}

.subtitle {
  margin-top: 2.4rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-top: 5.4rem;
  perspective: 800px;
  --rotate: 0deg;
}
.subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotateY(var(--rotate));
  width: 32px;
  height: 32px;
  background-color: #0D3388;
  display: block;
  z-index: 1;
  backface-visibility: visible;
}
.subtitle h3 {
  opacity: 0;
  transform: translateY(10px);
  font-size: 2.4rem;
  font-weight: 700;
  color: #0D3388;
}
@media only screen and (max-width: 744px) {
  .subtitle h3 {
    font-size: 2rem;
  }
}

.creator-title::before {
  background-color: #93B405;
}
.creator-title h3 {
  color: #93B405;
}

.startup-title::before {
  background-color: #B60014;
}
.startup-title h3 {
  color: #B60014;
}

.interview-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  row-gap: 4rem;
  max-width: 1040px;
  margin: 0 auto 8rem;
}
@media only screen and (max-width: 744px) {
  .interview-list {
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 2rem;
  }
}

.interview-item {
  flex: 0 1 calc(20% - 1.6rem);
}
@media only screen and (max-width: 744px) {
  .interview-item {
    flex: 0 1 calc(50% - 0.5rem);
  }
}
.interview-item a {
  display: block;
  overflow: hidden;
}
.interview-item a img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.interview-item a:hover img {
  transform: scale(1.05);
}
.interview-item p {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.interview-item p span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

/***
座談会
***/
.section-discussion {
  width: 100%;
  border-bottom: 1px solid var(--border-color--light-gray);
}

.discussion-list,
.focus-list {
  max-width: 1080px;
  margin: 4rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 2rem;
  padding: 0 2rem;
}
@media screen and (max-width: 744px) and (min-width: 744px) {
  .discussion-list,
  .focus-list {
    transform-origin: top center;
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 744px) {
  .discussion-list,
  .focus-list {
    gap: 2rem 1.5rem;
  }
}

.discussion-card,
.focus-card {
  flex: 0 1 calc(33.333% - 1.4rem);
  min-width: 0;
  background: #fff;
}
.discussion-card:hover .card-image img,
.focus-card:hover .card-image img {
  transform: scale(1.05);
}
.discussion-card:hover .arrow-box::after,
.focus-card:hover .arrow-box::after {
  transform: translate(-15%, -50%) rotate(45deg);
}
@media only screen and (max-width: 744px) {
  .discussion-card,
  .focus-card {
    flex: 0 1 calc(50% - 0.8rem);
  }
}
@media only screen and (max-width: 479px) {
  .discussion-card,
  .focus-card {
    flex: 0 1 100%;
  }
}
.discussion-card .card-image,
.focus-card .card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.discussion-card .card-image img,
.focus-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.discussion-card .card-image .arrow-box,
.focus-card .card-image .arrow-box {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  transform: none;
}
.discussion-card .card-text,
.focus-card .card-text {
  padding: 2rem 0;
}
.discussion-card .card-text h3,
.focus-card .card-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.discussion-card .card-text h3 span,
.focus-card .card-text h3 span {
  display: block;
  font-size: 1.3rem;
  color: #B60014;
  margin-bottom: 0.6rem;
}
.discussion-card .card-text .member,
.focus-card .card-text .member {
  padding: 0;
}
.discussion-card .card-text .member li,
.focus-card .card-text .member li {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  position: relative;
}

/***
上月スポーツ賞
***/
#award {
  background: #F3F2EE url("../../img/home/award-bg.jpg") no-repeat 50% 0;
  width: 100%;
}
#award .lead {
  max-width: 1040px;
  margin: 3.2rem auto 4.8rem;
  width: 90%;
  text-align: center;
}
@media only screen and (max-width: 744px) {
  #award .lead {
    text-align: left;
    margin: 2rem auto 3.2rem;
  }
  #award .lead p {
    font-size: 1.4rem;
  }
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 0;
  max-width: 1035px;
  margin: 0 auto;
  background: url("../../img/home/award-panel-bg.jpg") no-repeat 50% 50%;
}
.award-grid .grid-item {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.award-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.award-grid .grid-item.is-grand-prize {
  grid-column: span 2;
  grid-row: span 2;
}
.award-grid .grid-item.is-color-box {
  background-color: #B60014;
  opacity: 0;
}
@media only screen and (max-width: 744px) {
  .award-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.award-link {
  max-width: 1040px;
  margin: 6rem auto;
  padding: 0 2rem;
}
.award-link .award-link-list {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  list-style: none;
  padding: 0;
}
@media only screen and (max-width: 744px) {
  .award-link .award-link-list {
    gap: 1rem;
  }
}

.award-link-item {
  flex: 0 1 300px;
  perspective: 1000px;
}
.award-link-item a {
  display: block;
  height: 7.2rem;
  text-decoration: none;
  position: relative;
}
@media only screen and (max-width: 744px) {
  .award-link-item a {
    height: 5.6rem;
  }
}
.award-link-item a .link-inner {
  width: 100%;
  height: 100%;
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  transform-style: preserve-3d;
  pointer-events: none;
}
.award-link-item a:hover .link-inner, .award-link-item a.is-active .link-inner {
  transform: rotateX(180deg);
}
.award-link-item a .link-inner::after {
  content: "VIEW MORE";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0D3388;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transform: rotateX(180deg);
  backface-visibility: hidden;
}
.award-link-item a span,
.award-link-item a p {
  backface-visibility: hidden;
}

.report-nav {
  width: 100%;
  max-width: 960px;
  margin: 8rem auto;
  padding: 0 2.4rem;
}
@media only screen and (max-width: 479px) {
  .report-nav {
    padding: 0 1.6rem;
  }
}
.report-nav .report-nav-h2 {
  font-size: 4rem;
  font-family: var(--font-family-serif);
  text-align: center;
  margin-bottom: 2.4rem;
  color: #333;
  border-left: none;
}
.report-nav section {
  margin-bottom: 3.2rem;
}
.report-nav section:last-child {
  margin-bottom: 0;
}
.report-nav_c-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #0D3388;
  margin-top: 0;
  line-height: 2;
  border-bottom: 1px solid var(--border-color--light-gray);
  margin-bottom: 3.2rem;
}
.report-nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.report-nav-list.tab-small {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.report-nav-list li {
  display: flex;
  width: 100%;
}
.report-nav-list a {
  display: inline-flex;
  line-height: 1.4;
  align-items: center;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  min-height: 4em;
  text-decoration: none;
  color: #333;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color--light-gray);
  border-radius: 6px;
  background-color: #F8F8F6;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}
.report-nav-list a::after {
  content: "";
  margin-left: auto;
  padding-left: 0.58rem;
  outline: 1px solid transparent;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.18rem solid #0D3388;
  border-right: 0.18rem solid #0D3388;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.report-nav-list a:hover {
  background-color: rgb(225.6875, 225.6875, 217.3125);
}

.index-legend {
  text-align: left;
  background-color: #fff;
  width: 100%;
  padding: 3.2rem 1.6rem;
  border-top: 1px solid var(--border-color--light-gray);
}
@media only screen and (max-width: 959px) {
  .index-legend {
    padding: 2rem 1.6rem;
  }
}
@includemq (sm) {
  .index-legend {
    padding: 1.6rem 1.6rem;
  }
}
.index-legend p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.3rem;
}
@media only screen and (max-width: 959px) {
  .index-legend p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 744px) {
  .index-legend p {
    max-width: 100%;
  }
}
.index-legend p span {
  padding-left: 1.6rem;
  margin-bottom: 1.6rem;
  display: inline-block;
}/*# sourceMappingURL=home.css.map */