html {
  font-size: min(0.715vw, 10px);
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  html {
    font-size: min(1.334vw, 10px);
  }
}

body, h1, h2, h3, h4, p, figure, ul, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul, ol, li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s linear;
}

img, svg {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

.js-accElement {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.js-animation.slideUpIn {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.4s linear, translate 0.4s ease-out;
}
.js-animation.slideUpIn.is-animated {
  opacity: 1;
  translate: 0 0;
}

.header_outer {
  position: fixed;
  background: #fff;
  left: 0;
  right: 0;
  top: 0;
  z-index: 500;
}
.header_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .header_inner {
    height: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .header_inner {
    height: 11rem;
  }
}
.header_logo {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .header_logo {
    width: 23.8rem;
    padding: 1rem 0 0 3rem;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 32.2rem;
    padding: 1.5rem 0 0 1.8rem;
  }
}
.header_entry {
  position: relative;
  height: 100%;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .header_entry {
    width: 14.2rem;
    margin-left: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .header_entry {
    width: 16.6rem;
  }
}
.header_entry a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ef0000;
  width: 100%;
  height: 100%;
  letter-spacing: 0.075em;
  line-height: 1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .header_entry a {
    border-radius: 0 0 0 3rem;
    padding: 0 0 0 0.6rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .header_entry a {
    border-radius: 0 0 0 5rem;
    padding: 0 0 0 1rem;
    font-size: 3rem;
  }
}
.header_entry a:hover {
  background: #fff;
  color: #ef0000;
}

.nav_switch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 13.6rem;
  margin-left: auto;
  z-index: 2;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .nav_switch {
    display: none;
  }
}
.nav_switch::before, .nav_switch::after, .nav_switch span {
  content: "";
  background: #000;
  border-radius: 4px;
  width: 48.53%;
  height: 0.3rem;
  pointer-events: none;
}
.nav_switch::before, .nav_switch::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.nav_switch::before {
  top: 34.546%;
}
.nav_switch::after {
  bottom: 34.546%;
}
.nav_switch.is-opened::before, .nav_switch.is-opened::after {
  width: 36.765%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav_switch.is-opened::before {
  rotate: 45deg;
}
.nav_switch.is-opened::after {
  rotate: -45deg;
}
.nav_switch.is-opened span {
  display: none;
}
@media screen and (min-width: 769px) {
  .nav_outer {
    height: 100%;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .nav_outer {
    position: fixed;
    background: #fff;
    height: 0;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    transition: height 0.4s ease;
  }
}
@media screen and (min-width: 769px) {
  .nav_inner {
    height: 100%;
  }
}
.nav_list {
  display: flex;
}
@media screen and (min-width: 769px) {
  .nav_list {
    align-items: center;
    column-gap: 3rem;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .nav_list {
    flex-direction: column;
    row-gap: 4rem;
    padding: 16rem 5rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_list > li {
    display: flex;
    align-items: center;
    column-gap: 3rem;
  }
  .nav_list > li::before {
    content: "";
    display: block;
    background: #000;
    border-radius: 4px;
    width: 2.5rem;
    height: 0.3rem;
  }
}
.nav_link {
  display: block;
}
@media screen and (min-width: 769px) {
  .nav_link {
    line-height: 1.625;
    font-size: 1.6rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .nav_link {
    line-height: 1.607;
    font-size: 3.3rem;
    font-weight: 500;
  }
}
.nav_link:hover {
  color: #ef0000;
}

.main_outer {
  width: 100%;
  overflow: hidden;
}

.entry_outer {
  position: relative;
  background: #ef0000;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .entry_outer {
    margin-top: 6rem;
  }
}
.entry_inner {
  display: flex;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .entry_inner {
    justify-content: flex-start;
    align-items: center;
    column-gap: 8rem;
    max-width: 1400px;
    padding: 0 0 5rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_inner {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    row-gap: 3.5rem;
    padding: 0 0 5rem;
  }
}
.entry_image {
  position: relative;
}
@media screen and (min-width: 769px) {
  .entry_image {
    width: 78rem;
    margin-top: -6rem;
  }
}
.entry_image figure {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .entry_image figure {
    border-radius: 0 15rem 15rem 0;
    height: 55rem;
  }
}
@media screen and (min-width: 1401px) {
  .entry_image figure {
    width: calc(100% + 50vw - 700px);
    margin-left: calc(700px - 50vw);
  }
}
.entry_image figure img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.entry_caption {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .entry_caption {
    row-gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_caption {
    justify-content: flex-end;
    align-items: center;
    row-gap: 3.5rem;
  }
}
.entry_text {
  letter-spacing: 0.04em;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .entry_text {
    line-height: 1.589;
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_text {
    line-height: 1.5;
    font-size: 4rem;
    text-align: center;
  }
}
.entry_button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  fill: #ef0000;
}
@media screen and (min-width: 769px) {
  .entry_button {
    border-radius: 7.9rem;
    width: 31.6rem;
    height: 7.9rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_button {
    border-radius: 12rem;
    width: 55rem;
    height: 12rem;
  }
}
@media screen and (min-width: 769px) {
  .entry_button p {
    width: 10.3rem;
    height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_button p {
    width: 15.4rem;
    height: 3.8rem;
  }
}
.entry_button > svg {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media screen and (min-width: 769px) {
  .entry_button > svg {
    width: 2.5rem;
    height: 2.5rem;
    right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .entry_button > svg {
    width: 4.4rem;
    height: 4.4rem;
    right: 3.4rem;
  }
}
.entry_button:hover {
  background: #f6c944;
}

.footer_inner {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .footer_inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 7rem 0 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_inner {
    flex-direction: column;
    padding: 8.5rem 0 4rem;
  }
}
.footer_logos {
  display: block;
}
@media screen and (min-width: 769px) {
  .footer_logos {
    width: 57.8rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_logos {
    width: 63.6rem;
  }
}
.footer_logos:hover {
  opacity: 0.5;
}
.footer_link {
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer_link {
    margin-left: 5rem;
    padding-left: calc(5rem + 2px);
  }
  .footer_link::before {
    content: "";
    position: absolute;
    border-radius: 2px;
    background: #bebebe;
    width: 2px;
    height: 4.3rem;
    left: 0;
    top: 50%;
    translate: 0 -50%;
  }
}
@media screen and (max-width: 768px) {
  .footer_link {
    padding-top: 5rem;
  }
}
.footer_link a {
  display: block;
}
@media screen and (min-width: 769px) {
  .footer_link a {
    width: 13.6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_link a {
    width: 20rem;
  }
}
.footer_link a:hover {
  opacity: 0.5;
}
.footer_copylight {
  width: 100%;
  padding-top: 5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .footer_copylight {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_copylight {
    font-size: 2rem;
  }
}