@charset "UTF-8";
:root {
  --plaza-blue:#0047BA;
  --plaza-lightblue:#00A0E9;
  --gg-grey:#F5F6D5;
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-family: "IBM Plex Sans JP", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--plaza-blue);
}

html {
  font-size: 62.5%;
  background-color: #F0F5F7;
  -webkit-font-smoothing: antialiased;
}

::-moz-selection {
  background-color: var(--plaza-blue);
  color: #fff;
}

::selection {
  background-color: var(--plaza-blue);
  color: #fff;
}

.headerlogo_60th {
  position: absolute;
  z-index: 300;
  left: 40px;
  top: 30px;
}
.headerlogo_60th h1 {
  width: 150px;
}
.headerlogo_60th h1 img {
  width: 100%;
}

.kv {
  position: relative;
}
.kv .kv_bg {
  height: 100vh;
}
.kv .kv_bg img {
  position: absolute;
  width: 100%;
  height: 95%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv .kv_logo {
  position: absolute;
  max-width: 650px;
  width: 36%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.kv .kv_logo img {
  width: 100%;
}

.kv-image1 {
  animation: float1 5s ease-in-out infinite;
}

.kv-image2 {
  animation: float2 4.7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}
.section_margin {
  margin: 160px 0;
}

.statement {
  position: relative;
}
.statement .statement_message {
  color: var(--plaza-blue);
  font-size: 2rem;
  text-align: center;
  line-height: 2.2;
}
.statement .stetement_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "roc-grotesk-wide", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #ACC4CE;
  font-size: 14.5rem;
  opacity: 0.2;
  line-height: 1;
  text-align: center;
  text-wrap: nowrap;
  z-index: 0;
}

.container-60th {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.heartsup_banner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.heartsup_banner img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.heartsup_banner img:hover {
  transform: scale(1.05);
  z-index: 100;
}

.section_header h2 {
  text-align: center;
  font-size: 9rem;
  color: var(--plaza-blue);
  font-family: "roc-grotesk-wide", sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  margin-bottom: 40px;
}
.section_header p {
  font-size: 2rem;
  text-align: center;
  line-height: 2.2;
}

.category_flex {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.category_flex .category_block {
  width: 20%;
  aspect-ratio: 1/1;
  background-color: #FF0091;
  border: 8px solid #fff;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.category_flex .category_block .category_heartsup {
  font-size: 2rem;
  font-family: roc-grotesk, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}
.category_flex .category_block .category_name {
  font-size: 7.2rem;
  padding: 20px 0 18px 0;
  font-family: roc-grotesk-compressed, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}
.category_flex .category_block .category_exp {
  font-size: 1.8rem;
  line-height: 1.3;
}
.category_flex .category_block:last-child {
  background-color: #00A0E9;
}
.category_flex .category_block:last-child .category_name {
  font-size: 6.7rem;
}
.category_flex .category_block:nth-child(2) {
  background-color: #08857D;
}
.category_flex .category_block:nth-child(3) {
  background-color: #FF0000;
}
.category_flex .category_block:nth-child(4) {
  background-color: #FF8000;
}

.actions {
  background-color: #fff;
  border-radius: 500px 500px 0 0;
  padding-bottom: 150px;
}
.actions h3 {
  text-align: center;
  font-size: 2.8rem;
  margin-top: 100px;
  font-family: roc-grotesk, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.actions_title {
  position: relative;
}
.actions_title .actions_bgimage {
  width: 100%;
}
.actions_title .actions_bgimage img {
  width: 100%;
}
.actions_title .actions_title_name {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.actions_title .actions_title_name h2 {
  max-width: 1000px;
  width: 80vw;
  margin-bottom: 15px;
}
.actions_title .actions_title_name h2 img {
  width: 100%;
}
.actions_title .actions_title_name p {
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
}

.grid-container {
  display: block; /* ✅ 子を縦積みに */
  max-width: 1280px;
  width: 90%;
  margin: -120px auto 0 auto;
}

.grid-item {
  position: relative;
  border: 8px solid #fff;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.grid-item.designblock:hover {
  transform: scale(1);
}

.grid-item:hover {
  transform: scale(1.05);
  z-index: 100;
}

.grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* small のアイテム */
.small {
  grid-column: span 1;
  grid-row: span 1;
}

/* large のアイテム */
.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* "small, small, large" の場合の large の調整 */
/* .large:nth-child(3n+3) {
    grid-column: 3;
    grid-row: span 2;
} */
.pattern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  grid-auto-rows: 200px;
  margin-bottom: 10px;
}

/* スマホでは1列表示 */
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.actions_scroll {
  display: flex;
  gap: 0 10px;
  margin: -100px auto 20px auto;
  position: relative;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 5%;
  display: none;
}
.actions_scroll a {
  font-size: 16px;
  background-color: #fff;
  padding: 10px 0;
  width: 100px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  gap: 0 5px;
  position: relative;
}
.actions_scroll a:after { /*白いひし型 */
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 4px;
  rotate: 135deg;
}
.actions_scroll .actionbtn_01 {
  color: var(--plaza-blue);
}
.actions_scroll .actionbtn_01::after {
  border-top: solid 2px var(--plaza-blue);
  border-right: solid 2px var(--plaza-blue);
}
.actions_scroll .actionbtn_10 {
  color: #FF0091;
}
.actions_scroll .actionbtn_10::after {
  border-top: solid 2px #FF0091;
  border-right: solid 2px #FF0091;
}
.actions_scroll .actionbtn_20 {
  color: #FF0000;
}
.actions_scroll .actionbtn_20::after {
  border-top: solid 2px #FF0000;
  border-right: solid 2px #FF0000;
}
.actions_scroll .actionbtn_30 {
  color: #FF8000;
}
.actions_scroll .actionbtn_30::after {
  border-top: solid 2px #FF8000;
  border-right: solid 2px #FF8000;
}
.actions_scroll .actionbtn_40 {
  color: #00A0E9;
}
.actions_scroll .actionbtn_40::after {
  border-top: solid 2px #00A0E9;
  border-right: solid 2px #00A0E9;
}
.actions_scroll .actionbtn_50 {
  color: #08857D;
}
.actions_scroll .actionbtn_50::after {
  border-top: solid 2px #08857D;
  border-right: solid 2px #08857D;
}

.sponly {
  display: none;
}

.actions_scroll::-webkit-scrollbar {
  display: none;
}

.aboutus .container-60th {
  display: flex;
  gap: 30px 2%;
  flex-wrap: wrap;
}
.aboutus .container-60th .aboutus_title {
  width: 32%;
}
.aboutus .container-60th .aboutus_title h2 {
  font-family: "roc-grotesk-wide", sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  font-size: 5rem;
}

.aboutus_flex {
  width: 66%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.aboutus_flex .aboutus_block {
  width: 100%;
  display: flex;
  gap: 10px 1%;
  flex-wrap: wrap;
  transition: transform 0.3s ease-in-out;
}
.aboutus_flex .aboutus_block img {
  width: 100%;
  vertical-align: top;
}
.aboutus_flex .aboutus_block .aboutus_subblock {
  width: 49.5%;
  transition: transform 0.3s ease-in-out;
}
.aboutus_flex .aboutus_block .aboutus_subblock img {
  width: 100%;
}
.aboutus_flex .aboutus_subblock:hover {
  transform: scale(1.05);
  z-index: 100;
}
.aboutus_flex .aboutus_rc_block:hover {
  transform: scale(1.05);
  z-index: 100;
}

.scrolldown_block {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px 0;
}
.scrolldown_block .scrolldown {
  position: relative;
}
.scrolldown_block p {
  writing-mode: vertical-rl;
  line-height: 1;
  font-family: roc-grotesk, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #fff;
}

.scrolldown::before {
  content: "";
  position: absolute;
  height: 60px; /* ← 高さを60pxに変更 */
  width: 2px;
  top: 0;
  left: 50%;
  left: calc(50% - 1px);
  background: #fff;
  border-radius: 2px;
}

.scrolldown::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 0;
  left: calc(50% - 5px);
  background: #fff;
  animation: m-1-ball 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes m-1-ball {
  0%, 65%, 100% {
    opacity: 0;
  }
  10%, 40% {
    opacity: 1;
  }
  0% {
    transform: translateY(5px) scale(0.7);
  }
  5% {
    transform: scale(0.7);
  }
  15%, 100% {
    transform: scale(1);
  }
  45%, 65% {
    transform: translateY(50px) scale(0.7); /* ← 棒の下へ移動 */
  }
}
.actions-scroll {
  overflow: hidden;
  width: 100%;
}

.actions-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0 15px;
  animation: scroll-marquee 10s linear infinite;
}

.actions-list {
  display: flex;
  gap: 0 15px;
}

.actions-image {
  width: 300px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #fff;
  box-sizing: border-box;
}

.actions-image img {
  width: 100%;
  vertical-align: top;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.wrapper {
  min-width: initial;
  background-color: #F0F5F7;
}

@media screen and (max-width: 1024px) {
  .actions_scroll {
    margin: -50vw auto 20px auto;
  }
  .pconly {
    display: none;
  }
  .sponly {
    display: block;
  }
  .actions_scroll {
    display: flex;
  }
  .grid-container {
    margin: 0 auto 0 auto;
  }
  .aboutus .container-60th .aboutus_title {
    width: 100%;
    text-align: center;
  }
  .aboutus_flex {
    width: 100%;
  }
  .aboutus_flex .aboutus_block .aboutus_subblock {
    width: 100%;
  }
  .statement .stetement_bg {
    font-size: 4rem;
  }
  .section_header h2 {
    font-size: 5.5rem;
  }
  .category_flex .category_block .category_exp {
    font-size: 1.3rem;
  }
  .category_flex .category_block .category_name {
    font-size: 5rem;
    padding: 10px 0 12px 0;
  }
  .category_flex .category_block:last-child .category_name {
    font-size: 4.2rem;
  }
  .category_flex .category_block .category_heartsup {
    font-size: 1.5rem;
  }
  .headerlogo_60th {
    left: 20px;
    top: 20px;
  }
  .kv .kv_logo {
    max-width: 450px;
    width: 70%;
  }
  .statement .statement_message {
    font-size: 1.6rem;
  }
  .section_header p {
    font-size: 1.5rem;
  }
  .actions_title .actions_title_name {
    top: 20%;
  }
  .pattern {
    grid-template-columns: 1fr; /* 1列に */
    grid-auto-rows: auto; /* 高さは中身に合わせる */
  }
  .small,
  .large {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .actions_title .actions_title_name h2 {
    width: 85vw;
  }
  .actions_title .actions_title_name p {
    font-size: 1.6rem;
  }
  .scrolldown_block {
    bottom: 22vh;
    left: 50%;
    top: initial;
    right: initial;
    transform: translateX(-50%);
  }
  .scrolldown_block p {
    writing-mode: initial;
  }
  .section_margin {
    margin: 120px 0;
  }
  .actions {
    padding-bottom: 100px;
  }
  .actions h3 {
    margin-top: 60px;
  }
  .designblock {
    display: none;
  }
  .kv .kv_bg img {
    height: 100%;
  }
  .aboutus_rc_block a {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .category_flex .category_block {
    width: 50%;
  }
}/*# sourceMappingURL=index.css.map */