@keyframes slide_loop_pc {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -2683px 0;
  }
}
@keyframes slide_loop_sp {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -201.225rem 0;
  }
}
h1, h2, h3, h4, h5, p, ul, ol, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

html {
  background-color: #326ee8;
  background-image: url(../img/bg.png);
  background-position: center top;
  background-repeat: repeat;
  background-size: 140rem auto;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  html {
    background-size: 100% auto;
    font-size: 0.715vw;
  }
}
@media screen and (min-width: 1401px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.334vw;
  }
}

body {
  margin: 0;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1130px;
  }
}
body.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
}
body.is-opening {
  position: fixed;
  background: #0082dc;
  left: 0;
  right: 0;
}
body.is-opening .opening_area {
  visibility: visible;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
}

sup {
  line-height: 1;
}

a {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

.js-animation:not(.noFade) > * {
  opacity: 0;
  transform: translate(0, 15px);
  transition: transform 400ms ease-out 0ms, opacity 400ms linear 0ms;
}
.js-animation:not(.noFade).is-animated > * {
  opacity: 1;
  transform: translate(0, 0);
}

.header_outer {
  position: fixed;
  background: #fff;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9000;
}
@media screen and (min-width: 768px) {
  .header_outer {
    min-width: 1130px;
  }
}
@media screen and (min-width: 768px) {
  .header_outer + .main_outer {
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .header_outer + .main_outer {
    padding-top: 10rem;
  }
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header_inner {
    padding: 0 0 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .header_inner {
    padding: 2rem 0;
  }
}

.header_logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .header_logo {
    width: 29.315%;
    max-width: 406px;
  }
}
@media screen and (max-width: 767px) {
  .header_logo {
    width: 53.2rem;
    margin-left: 4.9rem;
  }
}

@media screen and (min-width: 768px) {
  .header_navi {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .header_navi {
    display: none;
    position: fixed;
    background: #326ee8;
    inset: 0;
    overflow: hidden;
  }
}

.header_list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .header_list {
    flex-direction: column;
    padding: 14rem 6rem;
  }
}
.header_list > li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .header_list > li {
    padding: 1.5rem 0;
  }
  .header_list > li::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    inset: -1px 0 0;
    pointer-events: none;
  }
  .header_list > li:first-of-type::before {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}

.header_button {
  display: flex;
  align-items: center;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header_button {
    justify-content: center;
    border: 2px solid transparent;
    width: 6.667em;
    height: 90px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s linear;
  }
  .header_button.col1 {
    background: #0082dc;
  }
  .header_button.col1:hover {
    background: #fff;
    border-color: #0082dc;
    color: #0082dc;
  }
  .header_button.col2 {
    background: #fcdc0a;
    color: #1a1a1a;
  }
  .header_button.col2:hover {
    background: #fff;
    border-color: #fcdc0a;
  }
  .header_button.col3 {
    background: #022ec2;
  }
  .header_button.col3:hover {
    background: #fff;
    border-color: #022ec2;
    color: #022ec2;
  }
}
@media screen and (max-width: 767px) {
  .header_button {
    padding: 2.6rem 0;
    line-height: 1;
    font-size: 2.8rem;
    font-weight: 500;
  }
}

.header_switch {
  line-height: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header_switch {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header_switch {
    display: block;
    width: 8.4rem;
    margin-right: 4rem;
  }
  .header_navi .header_switch {
    position: absolute;
    right: 0;
    top: 2rem;
  }
}

.footer_outer {
  position: relative;
  color: #fff;
}

.footer_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer_inner {
    max-width: 1130px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer_inner {
    height: 8.3rem;
  }
}

.footer_copylight {
  letter-spacing: 0.01em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer_copylight {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .footer_copylight {
    font-size: 2rem;
  }
}

.pagetop_anchor {
  position: fixed;
  right: 0;
  line-height: 0;
  z-index: 8500;
  transition: opacity 200ms linear 0ms;
}
@media screen and (min-width: 768px) {
  .pagetop_anchor {
    width: 40px;
    bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .pagetop_anchor {
    width: 7.4rem;
    bottom: 14rem;
  }
}
.pagetop_anchor a {
  display: block;
  background: #1a1a1a;
  width: 100%;
}
.pagetop_anchor.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.main_outer {
  display: block;
  width: 100%;
  color: #fff;
  contain: paint;
}

.kv_section {
  position: relative;
}
@media screen and (min-width: 768px) {
  .kv_section {
    padding: 90px 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .kv_section {
    padding: 1.8rem 0 11.8rem;
  }
}

.kv_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .kv_inner {
    max-width: 1400px;
  }
}
@media screen and (max-width: 767px) {
  .kv_inner {
    max-width: 750px;
  }
}

.kv_image {
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .kv_image {
    position: absolute;
    width: 55.786%;
    right: 1%;
    top: -66px;
  }
}
@media screen and (max-width: 767px) {
  .kv_image {
    position: relative;
    width: 72.6rem;
    margin: 0 0 0 1.3rem;
  }
}

.kv_h2 {
  position: relative;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .kv_h2 {
    width: 14%;
    margin: 0 0 0 6.072%;
  }
}
@media screen and (max-width: 767px) {
  .kv_h2 {
    width: 24.9rem;
    margin: -3.6rem 0 0 2.6rem;
  }
}

.kv_h1 {
  position: relative;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .kv_h1 {
    width: 44.643%;
    margin: 15px 0 0 6.358%;
  }
}
@media screen and (max-width: 767px) {
  .kv_h1 {
    width: 67rem;
    margin: 0.8rem auto 0;
  }
}

.kv_lead {
  position: relative;
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .kv_lead {
    line-height: 1.572;
    font-size: 28px;
  }
  .kv_lead > p {
    font: inherit;
  }
  .kv_lead > p:first-of-type {
    margin-top: -0.285em;
  }
  .kv_lead > p:last-of-type {
    margin-bottom: -0.285em;
  }
  .kv_lead {
    padding: 40px 0 0 6.429%;
  }
}
@media screen and (max-width: 767px) {
  .kv_lead {
    line-height: 1.5;
    font-size: 3.6rem;
  }
  .kv_lead > p {
    font: inherit;
  }
  .kv_lead > p:first-of-type {
    margin-top: -0.25em;
  }
  .kv_lead > p:last-of-type {
    margin-bottom: -0.25em;
  }
  .kv_lead {
    padding: 3.9rem 0 0 3.7rem;
  }
}

.theme_section {
  position: relative;
}
@media screen and (min-width: 768px) {
  .theme_section {
    padding: 0 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .theme_section {
    padding: 0 0 13rem;
  }
}

.theme_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .theme_inner {
    max-width: 1400px;
  }
}
@media screen and (max-width: 767px) {
  .theme_inner {
    max-width: 750px;
  }
}

.theme_h2 {
  text-align: center;
}
.theme_h2 h2 {
  letter-spacing: 0.05em;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .theme_h2 h2 {
    line-height: 1;
    font-size: 40px;
    font-weight: 900;
  }
}
@media screen and (max-width: 767px) {
  .theme_h2 h2 {
    line-height: 1.072;
    font-size: 5.6rem;
    font-weight: 900;
  }
}
.theme_h2 .col1 {
  color: #ffdf25;
}
.theme_h2 strong {
  display: inline-block;
  font-weight: 900;
  translate: 0 15%;
}
@media screen and (min-width: 768px) {
  .theme_h2 strong {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 767px) {
  .theme_h2 strong {
    line-height: 0.817;
    font-size: 1.75em;
  }
}

.theme_list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .theme_list {
    justify-content: center;
    gap: 50px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .theme_list {
    flex-direction: column;
    gap: 6rem;
    padding-top: 6.4rem;
  }
}
@media screen and (min-width: 768px) {
  .theme_list > li {
    width: 21.429%;
  }
}

.theme_detail {
  display: grid;
}
@media screen and (min-width: 768px) {
  .theme_detail {
    justify-items: center;
  }
}
@media screen and (max-width: 767px) {
  .theme_detail {
    display: grid;
    justify-content: center;
    align-self: center;
    align-content: center;
    grid-template-columns: 20rem 42rem;
    gap: 3rem 4rem;
  }
}

.theme_detail_image {
  position: relative;
  background: #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .theme_detail_image {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .theme_detail_image {
    grid-row: 1/3;
  }
}
.theme_detail_image::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 110%;
  height: 110%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .theme_detail_image::before {
    border: 2px solid;
  }
}
@media screen and (max-width: 767px) {
  .theme_detail_image::before {
    border: 1px solid;
  }
}

.theme_detail_h3 {
  letter-spacing: 0.07em;
  line-height: 1;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .theme_detail_h3 {
    padding-top: 40px;
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .theme_detail_h3 {
    grid-column: 2/3;
    align-self: flex-end;
    font-size: 3.6rem;
  }
}

.theme_detail_p {
  letter-spacing: 0.07em;
  line-height: 1;
  font-weight: 500;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .theme_detail_p {
    padding-top: 20px;
    line-height: 1.688;
    font-size: 16px;
  }
  .theme_detail_p > p {
    font: inherit;
  }
  .theme_detail_p > p:first-of-type {
    margin-top: -0.343em;
  }
  .theme_detail_p > p:last-of-type {
    margin-bottom: -0.343em;
  }
}
@media screen and (max-width: 767px) {
  .theme_detail_p {
    grid-column: 2/3;
    line-height: 1.5;
    font-size: 2.8rem;
  }
  .theme_detail_p > p {
    font: inherit;
  }
  .theme_detail_p > p:first-of-type {
    margin-top: -0.25em;
  }
  .theme_detail_p > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.slider_block {
  display: flex;
  position: relative;
}
@media screen and (min-width: 768px) {
  .slider_block {
    width: 5366px;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .slider_block {
    width: 402.45rem;
    height: 30rem;
  }
}
.slider_block::before {
  content: "";
  background-image: url(../img/slider.webp);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 768px) {
  .slider_block::before {
    width: 5366px;
    animation: slide_loop_pc 26.83s linear infinite;
  }
}
@media screen and (max-width: 767px) {
  .slider_block::before {
    width: 402.45rem;
    animation: slide_loop_sp 40.245s linear infinite;
  }
}
@media screen and (min-width: 768px) {
  .slider_block::before {
    margin-left: -115px;
  }
}
@media screen and (max-width: 767px) {
  .slider_block::before {
    margin-left: -8.625rem;
  }
}

.throu_section {
  position: relative;
}
@media screen and (min-width: 768px) {
  .throu_section {
    padding: 120px 0;
  }
}
@media screen and (max-width: 767px) {
  .throu_section {
    padding: 12rem 4rem;
  }
}

.throu_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .throu_inner {
    display: grid;
    grid-template-columns: 46.429% 53.572%;
    max-width: 1400px;
  }
}
@media screen and (max-width: 767px) {
  .throu_inner {
    max-width: 750px;
  }
}

.throu_head {
  display: flex;
}
@media screen and (min-width: 768px) {
  .throu_head {
    padding-left: 16.154%;
  }
}
@media screen and (max-width: 767px) {
  .throu_head {
    flex-direction: column;
    gap: 3.5rem;
  }
}

.throu_head_p {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 768px) {
  .throu_head_p {
    gap: 5px;
    font-size: 18px;
    writing-mode: vertical-lr;
  }
}
@media screen and (max-width: 767px) {
  .throu_head_p {
    gap: 0.8rem;
    font-size: 2.7rem;
  }
}
.throu_head_p::before {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 0.667em;
  height: 0.667em;
}
@media screen and (min-width: 768px) {
  .throu_head_p::before {
    translate: -5% 0;
  }
}

.throu_head_h2 {
  letter-spacing: 0.07em;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .throu_head_h2 {
    padding-left: 7.34%;
    line-height: 1.5;
    font-size: 40px;
  }
  .throu_head_h2 > h2 {
    font: inherit;
  }
  .throu_head_h2 > h2:first-of-type {
    margin-top: -0.25em;
  }
  .throu_head_h2 > h2:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (max-width: 767px) {
  .throu_head_h2 {
    line-height: 1.5;
    font-size: 5.6rem;
  }
  .throu_head_h2 > h2 {
    font: inherit;
  }
  .throu_head_h2 > h2:first-of-type {
    margin-top: -0.25em;
  }
  .throu_head_h2 > h2:last-of-type {
    margin-bottom: -0.25em;
  }
}
.throu_head_h2 em {
  font-style: normal;
  color: #ffdf25;
}

@media screen and (min-width: 768px) {
  .throu_body {
    padding-right: 21.334%;
  }
}
@media screen and (max-width: 767px) {
  .throu_body {
    padding-top: 8rem;
  }
}

.throu_body_p {
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .throu_body_p {
    line-height: 2;
    font-size: 18px;
  }
  .throu_body_p > p {
    font: inherit;
  }
  .throu_body_p > p:first-of-type {
    margin-top: -0.5em;
  }
  .throu_body_p > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
@media screen and (max-width: 767px) {
  .throu_body_p {
    line-height: 2;
    font-size: 3rem;
  }
  .throu_body_p > p {
    font: inherit;
  }
  .throu_body_p > p:first-of-type {
    margin-top: -0.5em;
  }
  .throu_body_p > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
@media screen and (min-width: 768px) {
  .throu_body_p p + p {
    margin-top: 2em;
  }
}
@media screen and (max-width: 767px) {
  .throu_body_p p + p {
    margin-top: 1.6em;
  }
}

.entry_section {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .entry_section {
    background-image: url(../img/entry_bg_pc.webp);
    padding: 170px 0 160px;
  }
}
@media screen and (max-width: 767px) {
  .entry_section {
    background-image: url(../img/entry_bg_sp.webp);
    padding: 11rem 4rem 13rem;
  }
}

.entry_inner {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .entry_inner {
    display: grid;
    align-items: center;
    grid-template-columns: 53.929% 46.072%;
    max-width: 1400px;
  }
}
@media screen and (max-width: 767px) {
  .entry_inner {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    max-width: 750px;
  }
}

.entry_head {
  display: flex;
}
@media screen and (min-width: 768px) {
  .entry_head {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .entry_head {
    flex-direction: column;
    gap: 3.5rem;
  }
}

.entry_head_p {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
@media screen and (min-width: 768px) {
  .entry_head_p {
    gap: 5px;
    font-size: 18px;
    writing-mode: vertical-lr;
  }
}
@media screen and (max-width: 767px) {
  .entry_head_p {
    gap: 0.8rem;
    font-size: 2.7rem;
  }
}
.entry_head_p::before {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 0.667em;
  height: 0.667em;
}
@media screen and (min-width: 768px) {
  .entry_head_p::before {
    translate: -5% 0;
  }
}

@media screen and (min-width: 768px) {
  .entry_head_h2 {
    width: 78.676%;
    padding-left: 3.974%;
  }
}
@media screen and (max-width: 767px) {
  .entry_head_h2 {
    width: 65.6rem;
  }
}

@media screen and (min-width: 768px) {
  .entry_body {
    padding-left: 20.931%;
  }
}

.entry_buttons {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .entry_buttons {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry_buttons {
    align-items: center;
    gap: 4rem;
  }
}

.entry_button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid;
  letter-spacing: 0.07em;
  line-height: 1;
  font-weight: 700;
  transition: 0.2s linear;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .entry_button {
    border-radius: 7rem;
    width: 34.7rem;
    height: 7rem;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .entry_button {
    border-radius: 10rem;
    width: 52rem;
    height: 10rem;
    font-size: 3.2rem;
  }
}
.entry_button i {
  position: absolute;
  border-radius: 50%;
  transition: 0.2s linear;
}
@media screen and (min-width: 768px) {
  .entry_button i {
    width: 1.778em;
    height: 1.778em;
    right: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .entry_button i {
    width: 1.25em;
    height: 1.25em;
    right: 0.625em;
  }
}
.entry_button i svg {
  width: 100%;
  height: 100%;
}
.entry_button.col1 {
  fill: #000;
  color: #fff;
}
.entry_button.col1 i {
  background: #ffdf25;
}
.entry_button.col1:hover {
  background: #ffdf25;
  border-color: #ffdf25;
  color: #000;
}
.entry_button.col1:hover i {
  background: #fff;
}
.entry_button.col2 {
  background: #ffdf25;
  fill: #000;
  color: #000;
}
.entry_button.col2 i {
  background: #fff;
}
.entry_button.col2:hover {
  background: #fff;
  border-color: #fff;
}
.entry_button.col2:hover i {
  background: #ffdf25;
}

.entry_select {
  background: transparent;
  border: 0;
}
.entry_select::backdrop {
  background: rgba(0, 0, 0, 0.8);
  background-blend-mode: multiply;
}
.entry_select:focus {
  outline: none;
}

.entry_select_close {
  display: block;
  position: relative;
  margin: 0 0 0 auto;
  transition: 0.2s linear;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .entry_select_close {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .entry_select_close {
    width: 6.4rem;
    height: 6.4rem;
  }
}
.entry_select_close::before, .entry_select_close::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 134.211%;
  height: 1px;
  inset: 0 0 0 -16%;
  margin: auto;
}
.entry_select_close::before {
  rotate: 45deg;
}
.entry_select_close::after {
  rotate: -45deg;
}
.entry_select_close:hover {
  opacity: 0.5;
}

.entry_select_box {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .entry_select_box {
    border-radius: 10px;
    margin-top: 13px;
    padding: 60px 80px;
  }
}
@media screen and (max-width: 767px) {
  .entry_select_box {
    border-radius: 2.4rem;
    margin-top: 2.8rem;
    padding: 8rem 9rem;
  }
}

.entry_select_p {
  letter-spacing: 0.07em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .entry_select_p {
    padding-bottom: 30px;
    line-height: 1.75;
    font-size: 20px;
  }
  .entry_select_p > p {
    font: inherit;
  }
  .entry_select_p > p:first-of-type {
    margin-top: -0.375em;
  }
  .entry_select_p > p:last-of-type {
    margin-bottom: -0.375em;
  }
}
@media screen and (max-width: 767px) {
  .entry_select_p {
    padding-bottom: 6rem;
    line-height: 1.5;
    font-size: 3.6rem;
  }
  .entry_select_p > p {
    font: inherit;
  }
  .entry_select_p > p:first-of-type {
    margin-top: -0.25em;
  }
  .entry_select_p > p:last-of-type {
    margin-bottom: -0.25em;
  }
}

.entry_select_buttons {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .entry_select_buttons {
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .entry_select_buttons {
    flex-direction: column;
    gap: 2rem;
  }
}

.entry_select_button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #ffdf25;
  fill: #000;
  border: 1px solid;
  letter-spacing: 0.07em;
  line-height: 1;
  font-weight: 700;
  color: #000;
  transition: 0.2s linear;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .entry_select_button {
    border-radius: 3.125em;
    width: 12.5em;
    height: 3.125em;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .entry_select_button {
    border-radius: 3.125em;
    width: 16.25em;
    height: 3.125em;
    font-size: 3.2rem;
  }
}
.entry_select_button i {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}
@media screen and (min-width: 768px) {
  .entry_select_button i {
    width: 1.778em;
    height: 1.778em;
    right: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .entry_select_button i {
    width: 1.25em;
    height: 1.25em;
    right: 0.625em;
  }
}
.entry_select_button i svg {
  width: 100%;
  height: 100%;
}
.entry_select_button:focus {
  outline: none;
}
.entry_select_button:hover {
  background: #fff;
}
.entry_select_button:hover i {
  background: #ffdf25;
}