@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans", sans-serif;
  background-color: var(--color-white, #fff);
  color: #404040;
  font-size: 1.6rem;
  font-feature-settings: "palt";
}

body::after {
  content: "";
  background: url("assets/img/pc/menu-bg.png") no-repeat, url("assets/img/sp/menu-bg.png") no-repeat;
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

output {
  font-size: inherit;
}

/* Padding 各方向（1rem） */
.p1-t {
  padding-top: 1rem;
}

.p1-r {
  padding-right: 1rem;
}

.p1-b {
  padding-bottom: 1rem;
}

.p1-l {
  padding-left: 1rem;
}

/* Margin 各方向（1rem） */
.m1-t {
  margin-top: 1rem;
}

.m1-r {
  margin-right: 1rem;
}

.m1-b {
  margin-bottom: 1rem;
}

.m1-l {
  margin-left: 1rem;
}

/* display:block */
.d-b {
  display: block;
}

.font-inherit {
  font-size: inherit;
}

.fw-b {
  font-weight: bold;
}

/* 画面幅767px以下の場合は各値を倍に（2rem） */
@media (max-width: 767px) {
  .p1-t {
    padding-top: 3rem;
  }

  .p1-r {
    padding-right: 3rem;
  }

  .p1-b {
    padding-bottom: 3rem;
  }

  .p1-l {
    padding-left: 3rem;
  }

  .m1-t {
    margin-top: 3rem;
  }

  .m1-r {
    margin-right: 3rem;
  }

  .m1-b {
    margin-bottom: 3rem;
  }

  .m1-l {
    margin-left: 3rem;
  }



}


#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-size: 2.5vw;
}

@media (max-width: 767px) {
  #loading {
    font-size: 5vw;
  }
}

.wrapper {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.wrapper.show {
  display: block;
  opacity: 1;
}

.fade-block {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-block.show {
  opacity: 1;
  transform: translateY(0);
}

.heading-zen {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-zen--large {
  font-size: 3.6rem;
  line-height: 1;
}

.text-strong {
  font-weight: 700;
  line-height: 2;
}

.header {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 9999;
}

.hamburger {
  position: absolute;
  position: fixed;
  top: 2.78vw;
  right: 2.78vw;
  width: 6.25vw;
  height: 6.53vw;
  background: url("assets/img/menu_c_bg@2x.png") no-repeat center center;
  background: url("assets/img/btn-menu.png") no-repeat center center;
  background-size: contain;
  border: 0;
  cursor: pointer;
}

@media (max-width: 767px) {
  .hamburger {
    top: 6.15vw;
    right: 3.85vw;
    width: 16.41vw;
    height: 17.18vw;
    background: url("assets/img/btn-menu.png") no-repeat center center;
    background-size: contain;
  }
}

.menu-bg {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  z-index: 999;
}

.menu-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 30.83vw;
  height: 40.42vw;
  background: url("assets/img/pc/menu-bg.png") no-repeat center/contain;
}

@media (max-width: 767px) {
  .menu-bg::before {
    width: 67.95vw;
    height: 91.03vw;
    background: url("assets/img/sp/menu-bg.png") no-repeat center/contain;
  }
}

.menu-close {
  position: absolute;
  border: 0;
  background: 0;
  cursor: pointer;
  top: 5.07vw;
  right: 5.07vw;
  width: 2.08vw;
  height: 2.08vw;
  padding: 0;
}

.menu-close img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .menu-close {
    top: 11.54vw;
    right: 9.23vw;
    width: 6.41vw;
    height: 6.41vw;
  }
}

.menu-nav {
  position: absolute;
  top: 12.08vw;
  right: 5.07vw;
  width: auto;
  padding: 0 2vw;
}

.menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-nav li {
  margin-bottom: 1.11vw;
}

.menu-nav a {
  display: flex;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.81vw;
  line-height: 1.64;
  letter-spacing: -0.02em;
  color: var(--color-main, #d21d22);
  text-decoration: none;
  white-space: nowrap;
}

.menu-nav a::before {
  content: "";
  display: inline-block;
  width: 2.22vw;
  height: 2.22vw;
  background: url("assets/img/btn-arw.png") no-repeat center/contain;
  margin-right: 0.56vw;
}

@media (max-width: 767px) {
  .menu-nav {
    top: 26.15vw;
    right: 5.07vw;
    padding: 0 5vw;
  }

  .menu-nav li {
    margin-bottom: 2.82vw;
  }

  .menu-nav a {
    font-size: 4.1vw;
    line-height: 1.48;
    letter-spacing: -0.01em;
  }

  .menu-nav a::before {
    width: 5.13vw;
    height: 5.13vw;
    margin-right: 1.03vw;
  }
}

.rounded-rectangle {
  width: 70.28vw;
  height: 16.74vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.32vw;
  padding: 2.78vw 2.78vw 2.78vw 19.44vw;
  margin: 4.17vw auto;
  position: relative;
  background: url("assets/img/pc/block1-bg.png") no-repeat center center;
  background-size: 100% 100%;
}

.point-logo {
  position: absolute;
  top: 3.06vw;
  left: 5.07vw;
  width: 8.4vw;
  height: 10.63vw;
  flex-shrink: 0;
}

.menu-text {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.menu-text a {
  position: relative;
  display: block;
  padding-left: 3.33vw;
  color: var(--color-main, #d21d22);
  font-family: "Zen Maru Gothic";
  font-size: 1.81vw;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: -0.04vw;
  text-decoration: none;
  margin-bottom: 1.32vw;
}

.menu-text a:last-child {
  margin-bottom: 0;
}

.menu-text a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 2.78vw;
  height: 2.78vw;
  background: url("assets/img/btn-arw.png") no-repeat center center;
  background-size: contain;
}

@media (max-width: 767px) {
  .rounded-rectangle {
    width: 92.31vw;
    height: 50.77vw;
    padding: 8.21vw 6.15vw;
    margin: 15.38vw auto 2.5vw;
    position: relative;
    background: url("assets/img/sp/block1-bg.png") no-repeat center center;
    background-size: 100% 100%;
  }

  .point-logo {
    display: none;
  }

  .menu-text a {
    padding-left: 8.21vw;
    font-size: 4.1vw;
    line-height: 1.48;
    letter-spacing: -0.04vw;
    margin-bottom: 4.87vw;
  }

  .menu-text a::before {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(90deg);
    width: 6.15vw;
    height: 6.15vw;
    background: url("assets/img/btn-arw.png") no-repeat center center;
    background-size: contain;
  }
}

.block.fade-block {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

#block2,
#block4,
#block6 {
  background-color: var(--color-white, #fff);
}

#block3,
#block5 {
  background-color: var(--color-background, #fbf0f0);
}

#block6,
#block5,
#block4,
#block3 {
  padding-bottom: 5vw;
}

@media (max-width: 767px) {

  #block6,
  #block4,
  #block3 {
    padding-bottom: 15vw;
  }
}

hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #000;
  margin: 0;
}

.title-block {
  background: linear-gradient(to bottom, #fff 50%, #fbf0f0 50%);
  padding: 5vw 0;
}

.title-block.type {
  background: linear-gradient(to bottom, #fbf0f0 50%, #fff 50%);
}

.title-inner {
  margin: 0 auto;
  text-align: center;
}

.title-inner img {
  display: inline-block;
  width: 312px;
  height: auto;
  width: 21.67vw;
  height: 5.56vw;
}

@media (max-width: 767px) {
  .title-block {
    padding: 10vw 0;
  }

  .title-inner img {
    width: 186px;
    width: 47.69vw;
    height: 12.23vw;
  }
}

.block-title {
  width: 56.39vw;
  height: 6.94vw;
  background: url("assets/img/pc/ttl-h2-bg.png") no-repeat center center;
  background-size: 100% 100%;
  color: var(--color-main, #d21d22);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
}

@media (max-width: 767px) {
  .block-title {
    width: 92.31vw;
    height: 16.41vw;
    background: url("assets/img/sp/ttl-h2-bg.png") no-repeat center center;
    background-size: 100% 100%;
    font-size: 5.13vw;
    letter-spacing: -0.1vw;
    margin: 0 auto 0;
  }

  #block6 .block-title {
    height: 20.51vw;
    background: url("assets/img/sp/ttl-h2-bg2.png") no-repeat center center;
    background-size: 100% 100%;
  }
}

.block3-content {
  margin-top: 4.45vw;
  width: 77.78vw;
  height: 18.89vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.57vw;
  margin-left: auto;
  margin-right: auto;
}

.block3-text {
  width: 30.76vw;
  height: 16.39vw;
  color: var(--color-Black, #000);
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.05vw;
}

.block3-text strong {
  color: var(--color-main, #d21d22);
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: inherit;
  display: block;
  margin-top: 3.47vw;
}

.block3-image {
  width: 44.44vw;
  height: 18.89vw;
  position: relative;
}

.block3-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .block3-content {
    margin-top: 10.26vw;
    width: 92.31vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: center;
  }

  .block3-text {
    width: 84.1vw;
    height: auto;
    font-size: 4.1vw;
    line-height: 2;
    order: 2;
    text-align: left;
  }

  .block3-text strong {
    line-height: 1.64;
  }

  .block3-image {
    width: 92.31vw;
    height: auto;
    order: 1;
  }

  .block3-image img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.block3-image .overlay-text {
  position: absolute;
  color: var(--color-main, #d21d22);
  text-align: right;
}

.block3-image .overlay-text1 {
  top: 2.22vw;
  right: 6.53vw;
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-weight: 800;
  line-height: 2;
}

.block3-image .overlay-text2 {
  top: 4.25vw;
  right: 2.47vw;
  font-family: "Zen Maru Gothic";
  font-size: 1.81vw;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: -0.04vw;
}

@media (max-width: 767px) {
  .block3-image .overlay-text1 {
    top: 4.13vw;
    right: 10.46vw;
    font-family: "Noto Sans";
    font-size: 2.6vw;
    font-weight: 800;
    line-height: 2;
  }

  .block3-image .overlay-text2 {
    top: 7.51vw;
    right: 3.98vw;
    font-family: "Zen Maru Gothic";
    font-size: 3.75vw;
    font-weight: 700;
    line-height: 1.64;
    letter-spacing: -0.075vw;
  }
}

.block4-content {
  margin-top: 4.45vw;
  width: 77.78vw;
  height: 18.89vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.57vw;
  margin-left: auto;
  margin-right: auto;
}

.block4-text {
  width: 30.76vw;
  height: auto;
  color: var(--color-Black, #000);
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.05vw;
}

.block4-text strong {
  color: var(--color-main, #d21d22);
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: inherit;
  margin-top: 3.47vw;
  display: inline;
  margin-top: 0;
}

.block4-image {
  width: 44.44vw;
  height: 18.89vw;
  position: relative;
}

.block4-image img {
  width: 100%;
  height: auto;
  display: block;
  fill: var(--color-White, #fff);
  filter: drop-shadow(0 2.25px 4.5px rgba(0, 0, 0, 0.15));
}

@media (max-width: 767px) {
  .block4-content {
    margin-top: 10.26vw;
    width: 92.31vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: center;
  }

  .block4-text {
    width: 84.1vw;
    height: auto;
    font-size: 4.1vw;
    line-height: 2;
    order: 2;
    text-align: left;
    position: relative;
    top: 2vw;
  }

  .block4-text strong {
    line-height: 1.64;
  }

  .block4-image {
    width: 92.31vw;
    height: auto;
    order: 1;
  }

  .block4-image img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.block4-image .overlay-text {
  position: absolute;
  color: var(--color-main, #d21d22);
  text-align: right;
}

.block4-image .overlay-text1 {
  top: 1.39vw;
  right: 5.76vw;
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 2;
}

.block4-image .overlay-text2 {
  top: 3.05vw;
  right: 6.87vw;
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 2;
}

.block4-image .overlay-text3 {
  top: 4.79vw;
  right: 0.97vw;
  font-family: "Zen Maru Gothic";
  font-size: 1.81vw;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: -0.04vw;
}

@media (max-width: 767px) {
  .block4-image .overlay-text1 {
    top: 2.88vw;
    right: 11.75vw;
    font-family: "Noto Sans";
    font-size: 2.6vw;
    font-weight: 500;
    line-height: 2;
  }

  .block4-image .overlay-text2 {
    top: 6.3vw;
    right: 14.28vw;
    font-family: "Noto Sans";
    font-size: 2.6vw;
    font-weight: 500;
    line-height: 2;
  }

  .block4-image .overlay-text3 {
    top: 9.95vw;
    right: 1.85vw;
    font-family: "Zen Maru Gothic";
    font-size: 3.75vw;
    font-weight: 700;
    line-height: 1.64;
    letter-spacing: -0.075vw;
  }
}

.overlay-text-medals {
  position: absolute;
  text-align: left;
  font-family: "Noto Sans";
  font-weight: 800;
  font-size: 1.25vw;
  line-height: 2;
  letter-spacing: 0;
  left: 2.77vw;
}

.overlay-text-medals1 {
  top: 2.3vw;
}

.overlay-text-medals2 {
  top: 6.4vw;
}

.overlay-text-medals3 {
  top: 10vw;
}

.overlay-text-medals4 {
  top: 14.2vw;
}

@media (max-width: 767px) {
  .overlay-text-medals {
    font-size: 2.5vw;
    left: 5.77vw;
  }

  .overlay-text-medals1 {
    top: 5.3vw;
  }

  .overlay-text-medals2 {
    top: 13.6vw;
  }

  .overlay-text-medals3 {
    top: 21vw;
  }

  .overlay-text-medals4 {
    top: 29.8vw;
  }
}

.rank-table-section {
  margin-top: 5vw;
}

.rank-table {
  width: 77.78vw;
  height: auto;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid var(--color-black-60, #4f4f4f);
  font-family: "Noto Sans", sans-serif;
  font-size: 1.81vw;
  margin: 0 auto;
}

.rank-table th,
.rank-table td {
  border: 1px solid var(--color-black-40, #bdbdbd);
  padding: 0.5vw;
  text-align: center;
  vertical-align: middle;
}

.header-left {
  font-family: "Zen Maru Gothic";
  font-size: 1.81vw;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: -0.04vw;
  background-color: var(--color-black-60, #4f4f4f);
  color: #fff;
  width: 24.17vw;
  height: 6.6vw;
}

.rank-table thead th:not(.header-left) {
  background-color: var(--color-black-10, #f3f3f3);
  width: 12.95vw;
  height: auto;
}

.rank-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rank-head span {
  color: #000;
  font-family: "Noto Sans";
  font-weight: 800;
  font-size: 1.25vw;
  line-height: 2;
}

.rank-head>img {
  width: calc(3.3vw * 1.42);
  height: auto;
  margin-top: 0.5vw;
  margin-bottom: 0;
  margin-right: -1.78vw;
}

.rank-head .star {
  position: absolute;
  left: 7.5vw;
  top: 0;
}

.rank-head .star>img {
  width: 1.3vw;
  height: auto;
}

.rank-table tbody th {
  background-color: var(--color-white, #fff);
  color: var(--color-black, #000);
  text-align: center;
  vertical-align: middle;
  font-family: "Zen Maru Gothic";
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: -0.04vw;
  height: 5vw;
}

.rank-table tbody td {
  background-color: var(--color-white, #fff);
  color: var(--color-black, #000);
  text-align: center;
  vertical-align: middle;
  font-family: "Zen Maru Gothic";
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04vw;
  height: 5vw;
}

.rank-table tbody td.cross {
  background: var(--color-black-10, #f3f3f3);
}

.rank-table tbody td span {
  font-size: 1vw;
}

.rank-table tbody td span.span-block {
  display: block;
}

@media (max-width: 767px) {
  .rank-table-section {
    margin-top: 15vw;
  }

  .rank-table {
    width: 92.31vw;
    font-size: 3.59vw;
    border: 1px solid var(--color-black-60, #4f4f4f);
    margin: 0 auto;
  }

  .rank-table th,
  .rank-table td {
    border: 1px solid var(--color-black-40, #bdbdbd);
    padding: 1vw;
    text-align: center;
    vertical-align: middle;
  }

  .rank-table td {
    padding: 1vw 1.5vw;
  }

  .header-left {
    width: 21.03vw;
    height: 25.66vw;
    font-size: 3.85vw;
    line-height: 1.2;
  }

  .rank-table thead th:not(.header-left) {
    width: 16.95vw;
    height: auto;
  }

  .rank-head img {
    width: 9.23vw;
    height: auto;
    margin-bottom: 0.25vw;
  }

  .rank-head span {
    font-size: 3.59vw;
  }

  .rank-table tbody th {
    text-align: left;
    font-size: 3.59vw;
    line-height: 1.2;
  }

  .rank-table tbody td {
    text-align: left;
    font-size: 3.59vw;
    height: 20vw;
  }

  .tight-cell {
    padding: 0 !important;
    letter-spacing: -0.5vw !important;
  }

  .rank-table tbody td span.span-inline,
  .rank-table tbody td span.span-block {
    font-weight: 500;
    font-size: 2vw;
  }

  .tight-cell span.span-block {
    letter-spacing: 0 !important;
  }

  .rank-table tbody th.cell-center,
  .rank-table tbody td.cell-center {
    text-align: center;
  }

  .rank-table tbody th.cell-left,
  .rank-table tbody td.cell-left {
    text-align: left;
  }

  .rank-table tbody td.cross {
    text-align: center;
    font-size: 5vw;
  }
}

/* 
----------------------------------------------------------------
 */


.img-wrapper {
  width: 77.78vw;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  /* 折り返しを許可 */
  justify-content: center;
  padding: 2.78vw;
  align-items: flex-start;
  gap: 1.67vw;
  border-radius: 4.07vw;
  border: 0.07vw solid var(--color-black-40, #bdbdbd);
  margin: 5vw auto 0;
}

.img-item {
  flex: 0 0 calc((100% - (1.67vw * 3)) / 4);
  /* 4列ベースで計算 */
  text-align: center;
}

.img-item a {
  display: block;
  transition: opacity 0.3s ease;
}

.img-item a:hover {
  opacity: 0.6;
}


.img-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.img-item-border {
  border: 0.07vw solid var(--color-black-40, #bdbdbd);

}

.img-item p {
  margin: 0.5vw auto 0;
  color: var(--color-Black, #000);
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-weight: 800;
  line-height: 200%;
}

.img-item p span.tight-line {
  font-size: 1.25vw;
  line-height: 120%;
  display: inline-block;
}

.img-item p span.txt-collaboration {
  font-size: 1.15vw;
  padding-left: 0.25em;
  letter-spacing: -0.1vw;
}

.img-item p span.word {
  font-size: 0.97vw;
  margin-top: -1vw;
}


@media screen and (max-width: 767px) {
  .img-wrapper {
    width: 92.31vw;
    margin-top: 7.5vw;
    gap: 3vw;
  }

  .img-item {
    flex: 0 0 calc((100% - 3vw) / 2);
    /* 2列 */
    margin-bottom: 4vw;
  }

  .img-item img {
    width: 100%;
    height: auto;
  }

  .img-item p {
    width: 90%;
    margin: 1vw auto 0;
    font-size: 3.59vw;
    font-weight: 800;
    line-height: 128%;
  }

  .img-item p span.tight-line {
    font-size: 3.59vw;
  }

  .img-item p span.txt-collaboration {
    font-size: 3.59vw;
  }

  .img-item p span.word {
    font-size: 2.82vw;
    font-weight: 500;
    margin-top: -1vw;
  }
}

.img-item p span.word.mt0 {
  margin-top: 0;
}

.img-item p span.span-block {
  display: block;
}

.img-item p span.span-block.non {
  display: inline;
}


/* 
----------------------------------------------------------------
 */




.copy-text {
  color: var(--color-black-80, #242424);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  font-size: 1.81vw;
  line-height: 2.96vw;
  letter-spacing: -0.04vw;
  margin-top: 3vw;
}

@media screen and (max-width: 767px) {
  .copy-text {
    width: 84.1vw;
    font-size: 4.1vw;
    line-height: 6.08vw;
    letter-spacing: -0.04vw;
    margin: 7vw auto 0;
  }
}

.copy-text p {
  margin: 0;
}

#block5 {
  padding: 0;
  margin: 0 auto;
}

.block5-copy {
  width: 56.93vw;
  margin: 3vw auto 0;
  text-align: center;
}

.block5-copy-strong {
  color: var(--color-main, #d21d22);
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-weight: 800;
  line-height: 2.5vw;
}

.block5-copy-normal {
  color: #000;
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 2.5vw;
}

.block5-boxes {
  margin: 4.45vw auto 0;
  width: 77.78vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.block5-box {
  position: relative;
  width: 37.77vw;
  height: 30vw;
  border-radius: 1.67vw;
  background-color: var(--color-white, #fff);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3.5vw;
  padding-bottom: 4vw;
  margin-top: 0;
}

.block5-box-caption {
  position: absolute;
  top: -1.8vw;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  width: auto;
  margin: 0;
}

.block5-box-caption1 {
  width: 31.11vw;
}

.block5-box-caption2 {
  width: 31.11vw;
}

.block5-box .inner {
  display: flex;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.block5-box .inner img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  height: auto;
}

.block5-box .inner p {
  color: #000;
  font-family: "Noto Sans";
  font-size: 1.25vw;
  line-height: 200%;
  text-align: left;
  margin-top: 1vw;
  width: 31.11vw;
}

@media screen and (max-width: 767px) {
  #block5 {
    padding-bottom: 20vw;
  }

  .block5-copy {
    width: 84.1vw;
    margin: 10vw auto 0;
    text-align: left;
  }

  .block5-copy-strong {
    font-size: 4.1vw;
    line-height: 6.73vw;
    display: block;
  }

  .block5-copy-normal {
    font-size: 4.1vw;
    line-height: 8.21vw;
  }

  .block5-boxes {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10vw auto 0;
  }

  .block5-box {
    width: 92.31vw;
    border-radius: 4.07vw;
    margin-top: 6.5vw;
    padding-bottom: 8vw;
    height: 85vw;
  }

  .block5-box.box2 {
    margin-top: 12.5vw;
  }

  .block5-box-caption {
    top: -6vw;
    transform: translate(-50%, 0);
    width: auto;
  }

  .block5-box img.block5-box-caption1 {
    width: 80vw;
    height: auto;
  }

  .block5-box img.block5-box-caption2 {
    width: 90vw;
    height: auto;
  }

  .block5-box .inner img {
    max-width: 90%;
    margin-top: 3.5vw;
  }

  .block5-box .inner p {
    width: 80vw;
    font-size: 4.1vw;
  }
}

.faq-outer {
  display: flex;
  width: 77.78vw;
  padding: 3.33vw 2.78vw;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.56vw;
  border-radius: 1.67vw;
  background: var(--color-main_Light, #fbf0f0);
  margin: 5vw auto 0;
}

.faq-item {
  width: 72.22vw;
  border-radius: 3.33vw;
  background: var(--color-White, #fff);
  padding: 2.11vw 1.11vw;
  margin-bottom: 1.11vw;
}

.faq-question {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.faq-redcircle {
  width: 0.56vw;
  height: 0.56vw;
  background: var(--color-main, #d21d22);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 0.56vw;
}

.faq-question-text {
  width: 63.33vw;
  color: var(--color-Black, #000);
  font-family: "Noto Sans", sans-serif;
  font-size: 1.25vw;
  font-weight: 800;
  line-height: 2.5vw;
  text-align: left;
  margin-right: 1.67vw;
}

.faq-toggle {
  width: 2.35vw;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-answer {
  margin-top: 1.11vw;
  margin-left: 1.11vw;
  width: 63.33vw;
  color: var(--color-Black, #000);
  font-family: "Noto Sans", sans-serif;
  font-size: 0.97vw;
  font-weight: 500;
  line-height: 1.94vw;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer.open {
  max-height: 69.44vw;
}

.faq-answer a {
  font-size: inherit;
  text-decoration: underline;
}

.faq-answer a:hover {
  text-decoration: none;
}



.faq-answer .faq-answer-title {
  font-size: inherit;
  font-style: inherit;
}

.faq-answer .faq-answer-box {
  font-size: inherit;
  font-style: inherit;
}

.faq-answer .faq-answer-box .faq-answer-box-inner {
  font-size: inherit;
  font-style: inherit;
}

.faq-answer .faq-answer-box .faq-answer-box-inner span {
  font-size: inherit;
  font-style: inherit;
}

.faq-answer-syukka {
  padding-left: 1rem;
  padding-top: 1rem;
  display: block;
  ;
  font-size: inherit;
  font-style: inherit;
}


@media screen and (max-width: 767px) {
  .faq-answer-syukka {
    padding-left: 0.5rem;
    padding-top: 1.5rem;
  }

}



@media screen and (max-width: 767px) {
  .faq-outer {
    width: 92.31vw;
    padding: 6.15vw 2.05vw;
    gap: 2.05vw;
    border-radius: 6.15vw;
    margin: 5vw auto 0;
  }

  .faq-item {
    width: 88.21vw;
    border-radius: 12.31vw;
    padding: 6vw 2vw;
    margin-bottom: 2vw;
  }

  .faq-redcircle {
    width: 2.05vw;
    height: 2.05vw;
    margin-right: 2.05vw;
  }

  .faq-question-text {
    width: 66.41vw;
    font-size: 4.1vw;
    line-height: 6.73vw;
    margin-right: 6.15vw;
  }

  .faq-toggle {
    width: 6.15vw;
    height: 6.15vw;
  }

  .faq-answer {
    margin-top: 2vw;
    margin-left: 4.1vw;
    width: 75.9vw;
    font-size: 3.08vw;
    line-height: 6.15vw;
    max-height: 0;
    transition: max-height 0.5s ease;
  }

  .faq-answer.open {
    max-height: 69.44vw;
  }

  .faq-answer.open a {
    font-size: inherit;
    text-decoration: underline;
  }
}

.footer {
  width: 100%;
  margin: 8.4vw auto 8.33vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  width: 18.33vw;
  height: 4.72vw;
  height: auto;
  object-fit: cover;
  display: block;
}

.footer-links {
  margin-top: 2.78vw;
  display: flex;
  gap: 2.78vw;
  justify-content: center;
  align-items: center;
}

.footer-link {
  color: var(--color-Black, #000);
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5vw;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.56vw;
}

.icon-1,
.icon-3 {
  display: inline-flex;
  width: 1.67vw;
  height: 1.67vw;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.icon-2,
.icon-4 {
  display: inline-flex;
  width: 1.11vw;
  height: 1.11vw;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.copy-right {
  margin-top: 1.11vw;
  width: 27.99vw;
  color: var(--color-black-60, #4f4f4f);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 1.5vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.94vw;
  white-space: nowrap;
  overflow: hidden;
}

.copy-right a {
  color: var(--color-black-60, #4f4f4f);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media screen and (max-width: 767px) {
  .footer {
    margin: 12.31vw auto 17.18vw;
  }

  .footer-logo-img {
    width: 52.82vw;
    height: 13.33vw;
    height: auto;
  }

  .footer-links {
    margin-top: 6.15vw;
    gap: 6.15vw;
  }

  .footer-link {
    font-size: 4.1vw;
    line-height: 8.21vw;
    gap: 2.05vw;
  }

  .icon-1,
  .icon-3 {
    width: 6.15vw;
    height: 6.15vw;
    display: inline-block;
    margin-top: -0.75vw;
  }

  .icon-2,
  .icon-4 {
    width: 4.1vw;
    height: 4.1vw;
    display: inline-block;
    margin-top: -0.75vw;
  }

  .copy-right {
    margin-top: 2.05vw;
    width: 81.28vw;
    font-size: 4.1vw;
    line-height: 5.64vw;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2.78vw;
  padding: 6.67vw 5.56vw;
  width: 66.67vw;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 1.67vw;
  background: var(--color-White, #fff);
  box-shadow: 0.97vw 0.97vw 2.78vw 0vw rgba(0, 0, 0, 0.15);
  margin: 2vw;
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: 2.78vw;
  right: 2.78vw;
  width: 4.44vw;
  height: 4.44vw;
  height: auto;
  border: 0;
  background: 0;
  cursor: pointer;
  padding: 0;
}

.modal-close img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-title {
  color: var(--color-Black, #000);
  font-family: "Zen Maru Gothic";
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.05vw;
  text-align: center;
}

.modal-heading {
  width: 66.67vw;
  width: auto;
  width: 100%;
  color: var(--color-Black, #000);
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 800;
  line-height: 2.5vw;
  text-align: left;
  justify-content: flex-start;
}

.modal-text {
  width: 66.67vw;
  width: 100%;
  color: var(--color-Black, #000);
  font-family: "Noto Sans";
  font-size: 0.97vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.94vw;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .modal {
    width: 80vw;
    height: 80vh;
    max-height: none;
    border-radius: 2.67vw;
  }

  .modal-close {
    position: absolute;
    top: 2.78vw;
    right: 2.78vw;
    width: 5.44vw;
    height: 5.44vw;
    height: auto;
    border: 0;
    background: 0;
    cursor: pointer;
    padding: 0;
  }

  .modal-title {
    font-size: 4.5vw;
  }

  .modal-heading {
    font-size: 3vw;
    line-height: 200%;
  }

  .modal-text {
    font-size: 2.25vw;
    line-height: 200%;
  }
}

/* ------------------------
 
 
 -------------------------- */

.btn-row a:hover {
  opacity: 0.6;
}

.btn-disabled {
  pointer-events: none !important;
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-hidden {
  display: none !important;
}

.button-group {
  clear: both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
  text-align: center;
  margin-top: 3vw;
  width: 64.44vw;
  margin-left: auto;
  margin-right: auto;
}

.button-group .btn-row-1,
.button-group .btn-row-2 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.button-group .btn-row-2 {
  gap: 2vw;
}

@media (max-width: 767px) {
  .button-group {
    margin-top: 10vw;
    width: 92.3vw;
    gap: 3vw;
  }

  .button-group .btn-row-1,
  .button-group .btn-row-2 {
    display: block;
    text-align: center;
  }
}

.btn-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64.44vw;
  height: 7.5vw;
  border-radius: 1.67vw;
  background: var(--color-yellow, #ffeb62);
  box-shadow: 0 -0.42vw 0 0 rgba(0, 0, 0, 0.2) inset;
  text-decoration: none;
  position: relative;
}

.btn-more-logo {
  display: inline-block;
  height: 3.78vw;
  width: auto;
  margin-right: 1.75vw;
}

.btn-more-text {
  color: var(--color-Black, #000);
  font-family: "Zen Maru Gothic";
  font-size: 1.81vw;
  font-style: normal;
  font-weight: 700;
  line-height: 2.96vw;
  letter-spacing: -0.04vw;
  display: inline-block;
  margin: 0;
}

.btn-more-arrow {
  position: absolute;
  right: 1.75vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.78vw;
  height: 2.78vw;
}

/* SVGの代わりにimgを等倍表示 */
.btn-more-arrow img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* SP（～767px / 390px基準） */
@media screen and (max-width: 767px) {
  .btn-more {
    width: 92.31vw;
    height: 18.46vw;
    border-radius: 6.15vw;
    box-shadow: 0 -1.03vw 0 0 rgba(0, 0, 0, 0.2) inset;
  }

  .btn-more-logo {
    height: 10.1vw;
    margin-right: 3.5vw;
  }

  .btn-more-text {
    font-size: 5.13vw;
    line-height: 5.13vw;
    letter-spacing: -0.1vw;
  }

  .btn-more-arrow {
    width: 6.21vw;
    height: 6.21vw;
    height: auto;
    right: 4.21vw;
  }
}

.btn-register {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.56vw;
  flex-shrink: 0;
  width: 30.97vw;
  height: 4.44vw;
  border: 0.14vw solid #242424;
  border-radius: 2.22vw;
  background: #fff;
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .btn-register.btn-long {
    width: 64.44vw;
  }
}

.btn-register-text {
  color: var(--color-Black, #000);
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 800;
  line-height: 2.5vw;
  display: inline-block;
  margin: 0;
}

.btn-register-arrow {
  position: absolute;
  right: 1.67vw;
  top: 1.11vw;
  width: 2.22vw;
  height: 2.22vw;
  border-radius: 2.22vw;
  border: 0.14vw solid #242424;
  background: #242424;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SVGの代わりにimgを等倍表示 */
.btn-register-arrow img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .btn-register {
    width: 92.31vw;
    height: 12.31vw;
    gap: 2.05vw;
    border: 0.51vw solid #242424;
    border-radius: 8.21vw;
  }

  .btn-register-text {
    font-size: 4.1vw;
    line-height: 6.73vw;
  }

  .btn-disabled .btn-register-text {
    line-height: 4.73vw;
  }


  .btn-register-arrow {
    width: 6.15vw;
    height: 6.15vw;
    right: 4.1vw;
    top: 3.08vw;
    border: 0.51vw solid #242424;
    border-radius: 8.21vw;
  }
}

.btn-register.inverted {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.56vw;
  flex-shrink: 0;
  width: 30.97vw;
  height: 4.44vw;
  border: 0.14vw solid #fff;
  border-radius: 2.22vw;
  background: #242424;
  text-decoration: none;
}

.btn-register.inverted .btn-register-text {
  color: #fff;
  font-family: "Noto Sans";
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 800;
  line-height: 2.5vw;
  display: inline-block;
  margin: 0;
}

.btn-register.inverted .btn-register-arrow {
  position: absolute;
  right: 1.67vw;
  top: 1.11vw;
  width: 2.22vw;
  height: 2.22vw;
  border-radius: 2.22vw;
  border: 0.14vw solid #fff;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-register.inverted .btn-register-arrow img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .btn-register.inverted {
    width: 92.31vw;
    height: 12.31vw;
    gap: 2.05vw;
    border: 0.51vw solid #fff;
    border-radius: 8.21vw;
    background: #242424;
    margin-top: 2.5vw;
  }

  .btn-register.inverted .btn-register-text {
    font-size: 4.1vw;
    line-height: 6.73vw;
    color: #fff;
  }

  .btn-register.inverted .btn-register-arrow {
    width: 6.15vw;
    height: 6.15vw;
    right: 4.1vw;
    top: 3.08vw;
    border: 0.51vw solid #fff;
    border-radius: 8.21vw;
    background: #fff;
  }
}