@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "LINE Seed JP";
  font-style: normal;
  font-weight: 300;
  src: url("../font/LINESeedJP_OTF_Th.woff2") format("woff2"), url("../font/LINESeedJP_OTF_Th.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "LINE Seed JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/LINESeedJP_OTF_Rg.woff2") format("woff2"), url("../font/LINESeedJP_OTF_Rg.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "LINE Seed JP";
  font-style: normal;
  font-weight: 800;
  src: url("../font/LINESeedJP_OTF_Eb.woff2") format("woff2"), url("../font/LINESeedJP_OTF_Eb.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "LINE Seed JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/LINESeedJP_OTF_Bd.woff2") format("woff2"), url("../font/LINESeedJP_OTF_Bd.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "LINE Seed Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../font/LINESeedSans_W_Rg.woff2") format("woff2"), url("../font/LINESeedSans_W_Rg.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "LINE Seed Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../font/LINESeedSans_W_Bd.woff2") format("woff2"), url("../font/LINESeedSans_W_Bd.woff") format("woff");
}
:root {
  --scrollbar: 0;
}
html {
  font-size: calc((16 / 1440) * (100vw - var(--scrollbar)));
  scroll-behavior: smooth;
}
@media screen and (max-width: 810px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  position: relative;
  font-family: "LINE Seed JP";
  color: #000;
  line-height: 1.8;
}
@media screen and (max-width: 810px) {
  body {
    overflow-x: hidden;
  }
}

@media screen and (min-width: 811px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 7.5rem;
  padding-left: 7.5rem;
}
@media screen and (max-width: 810px) {
  .l-inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.c-column {
  width: 50%;
}
@media screen and (max-width: 810px) {
  .c-column {
    width: 100%;
  }
}
@media screen and (max-width: 810px) {
  .c-column:nth-child(2) {
    margin-top: 1rem;
  }
}
.c-column__img {
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 810px) {
  .c-column__img {
    border-radius: 0.75rem;
  }
}
.c-column__img img {
  -o-object-fit: 4/3;
     object-fit: 4/3;
}
.c-column__title {
  position: relative;
  padding-left: 4.875rem;
  font-size: 2.5625rem;
  line-height: 1.3902439024;
  font-weight: 700;
}
@media screen and (max-width: 810px) {
  .c-column__title {
    padding-left: 2.5625rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.c-column__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "LINE Seed Sans";
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 810px) {
  .c-column__title::before {
    top: 47%;
    font-size: 1.625rem;
  }
}
.c-column__title--red::before {
  -webkit-text-stroke: 0.1875rem #FF3A6C;
  text-stroke: 0.1875rem #FF3A6C;
}
@media screen and (max-width: 810px) {
  .c-column__title--red::before {
    -webkit-text-stroke: 0.125rem #FF3A6C;
    text-stroke: 0.125rem #FF3A6C;
  }
}
.c-column__title--orange::before {
  -webkit-text-stroke: 0.1875rem #FF863A;
  text-stroke: 0.1875rem #FF863A;
}
@media screen and (max-width: 810px) {
  .c-column__title--orange::before {
    -webkit-text-stroke: 0.125rem #FF863A;
    text-stroke: 0.125rem #FF863A;
  }
}
.c-column__title--blue::before {
  -webkit-text-stroke: 0.1875rem #279AFF;
  text-stroke: 0.1875rem #279AFF;
}
@media screen and (max-width: 810px) {
  .c-column__title--blue::before {
    -webkit-text-stroke: 0.125rem #279AFF;
    text-stroke: 0.125rem #279AFF;
  }
}
.c-column__title--lightBlue::before {
  -webkit-text-stroke: 0.1875rem #47C4FA;
  text-stroke: 0.1875rem #47C4FA;
}
@media screen and (max-width: 810px) {
  .c-column__title--lightBlue::before {
    -webkit-text-stroke: 0.125rem #47C4FA;
    text-stroke: 0.125rem #47C4FA;
  }
}
.c-column__text {
  margin-top: 0.75rem;
  line-height: 1.8;
}
@media screen and (max-width: 810px) {
  .c-column__text {
    margin-top: 0.5rem;
  }
}
.c-column__text span {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(10%, #FFD105));
  background: linear-gradient(transparent 90%, #FFD105 10%);
}
.c-column__btn {
  margin-top: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 810px) {
  .c-column__btn {
    margin-top: 0.5rem;
  }
}
.c-column__btn a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10rem;
  height: 3.3125rem;
  padding-right: 2rem;
  background-color: #279AFF;
  color: #fff;
  line-height: 1;
  border-radius: 62.4375rem;
  font-weight: 700;
}
@media screen and (max-width: 810px) {
  .c-column__btn a {
    width: 9rem;
    height: 2.8125rem;
  }
}
.c-column__btn a::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/icon/arrow-to-right.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .c-column__btn a::after {
    right: 1rem;
  }
}
.c-column__group {
  margin-top: 0.75rem;
}
@media screen and (max-width: 810px) {
  .c-column__group {
    margin-top: 0.5rem;
  }
}
.c-column__subText {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (max-width: 810px) {
  .c-column__subText {
    margin-top: 0.125rem;
  }
}

.c-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 810px) {
  .c-columns {
    display: block;
  }
}
@media screen and (max-width: 810px) {
  .c-columns:first-child {
    margin-top: 0;
  }
}
.c-columns:nth-child(1) h3::before {
  content: "01";
}
.c-columns:nth-child(2) h3::before {
  content: "02";
}
.c-columns:nth-child(3) h3::before {
  content: "03";
}
.c-columns:nth-child(4) h3::before {
  content: "04";
}
.c-columns:nth-child(5) h3::before {
  content: "05";
}

.c-group__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem 1rem;
  background-color: #FFE5E5;
}
@media screen and (max-width: 810px) {
  .c-group__list {
    padding: 0.375rem 0.625rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-group__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: calc(100% - 2rem);
  height: 0.0625rem;
  background-color: #D2BCBC;
}
@media screen and (max-width: 810px) {
  .c-group__list::before {
    width: calc(100% - 1.5rem);
  }
}
.c-group__list:first-child:nth-last-child(1) {
  padding: 1rem;
  border-radius: 0.75rem;
}
@media screen and (max-width: 810px) {
  .c-group__list:first-child:nth-last-child(1) {
    padding: 0.75rem;
    border-radius: 0.5rem;
  }
}
.c-group__list:first-child {
  border-radius: 0.75rem 0.75rem 0 0;
  padding: 1rem 1rem 0.625rem;
}
@media screen and (max-width: 810px) {
  .c-group__list:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 0.75rem 0.75rem 0.375rem;
  }
}
.c-group__list:first-child::before {
  display: none;
}
.c-group__list:last-child {
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 0.625rem 1rem 1rem;
}
@media screen and (max-width: 810px) {
  .c-group__list:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 0.375rem 0.75rem 0.75rem;
  }
}
.c-group__title {
  width: 5rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 810px) {
  .c-group__title {
    width: 3.75rem;
  }
}
.c-group__text {
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (max-width: 810px) {
  .c-group__text {
    width: calc(100% - 4.25rem);
  }
}

.c-menu {
  position: relative;
}
.c-menu input[type=checkbox] {
  display: none;
}
.c-menu input[type=checkbox]:checked ~ .c-menu__modal {
  top: 2.75rem;
}
.c-menu input[type=checkbox]:checked ~ .c-menu__label .c-menu__part {
  width: 0;
  height: 0;
}
.c-menu input[type=checkbox]:checked ~ .c-menu__label .c-menu__part::before, .c-menu input[type=checkbox]:checked ~ .c-menu__label .c-menu__part::after {
  top: 50%;
}
.c-menu input[type=checkbox]:checked ~ .c-menu__label .c-menu__part::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.c-menu input[type=checkbox]:checked ~ .c-menu__label .c-menu__part::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.c-menu__label {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.375rem 0.1875rem;
  display: block;
}
.c-menu__content {
  width: 1.125rem;
  height: 0.75rem;
  cursor: pointer;
  position: relative;
}
.c-menu__part {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-menu__part::before, .c-menu__part::after {
  content: "";
}
.c-menu__part::before {
  top: -0.4375rem;
}
.c-menu__part::after {
  top: 0.4375rem;
}
.c-menu__part, .c-menu__part::before, .c-menu__part::after {
  position: absolute;
  left: 0;
  width: 1.125rem;
  height: 0.107125rem;
  background-color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.c-menu__modal {
  width: 100vw;
  position: fixed;
  top: -100%;
  left: 0;
  -webkit-transition: opacity 0.1s ease-out, padding 0.2s ease-out 0.2s, top 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s;
  transition: opacity 0.1s ease-out, padding 0.2s ease-out 0.2s, top 0.2s ease-out 0.2s, right 0.2s ease-out 0.2s;
}

.c-modal {
  z-index: 2;
  background-color: #fff;
  padding: 0.75rem 1.5rem;
}
.c-modal__list {
  padding-top: 0.6875rem;
}
.c-modal__item {
  position: relative;
}
.c-modal__item:first-child::before {
  display: none;
}
.c-modal__item::before {
  content: "";
  position: absolute;
  top: -0.03125rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #E1E1E1;
}
.c-modal__item:nth-child(1) a::before {
  content: "01";
}
.c-modal__item:nth-child(2) a::before {
  content: "02";
}
.c-modal__item:nth-child(3) a::before {
  content: "03";
}
.c-modal__item:nth-child(4) a::before {
  content: "04";
}
.c-modal__link {
  position: relative;
  display: block;
  padding: 0.75rem 0 0.75rem 1.5rem;
  line-height: 1.5;
  font-weight: 700;
}
.c-modal__link::before {
  position: absolute;
  top: 49%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 810px) {
  .c-modal__link::before {
    top: 51%;
  }
}

.c-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 810px) {
  .c-nav {
    display: block;
  }
}
.c-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 810px) {
  .c-nav__list {
    display: block;
  }
}
@media screen and (max-width: 810px) {
  .c-nav__item {
    margin-top: 0.875rem;
  }
}
@media screen and (max-width: 810px) {
  .c-nav__item:first-child {
    margin-top: 0;
  }
}
.c-nav__item:nth-child(1) a::before {
  content: "01";
}
.c-nav__item:nth-child(2) a::before {
  content: "02";
}
.c-nav__item:nth-child(3) a::before {
  content: "03";
}
.c-nav__item:nth-child(4) a::before {
  content: "04";
}
.c-nav__link {
  position: relative;
  display: block;
  padding: 0.3125rem 0 0.3125rem 1.5625rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 810px) {
  .c-nav__link {
    padding: 0.3125rem 0 0.3125rem 1.375rem;
  }
}
.c-nav__link::before {
  position: absolute;
  top: 49%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 810px) {
  .c-nav__link::before {
    top: 51%;
  }
}
@media screen and (max-width: 810px) {
  .c-nav__btn {
    margin-top: 1.1875rem;
  }
}
.c-nav__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 10rem;
  height: 3.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  border-radius: 62.4375rem;
  color: #fff;
  background-color: #279AFF;
}
@media screen and (max-width: 810px) {
  .c-nav__btn a {
    height: 2.6875rem;
  }
}

.c-sectionNumber {
  font-family: "LINE Seed Sans";
  font-weight: 700;
  padding: 0 1.494375rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber {
    padding: 0 0.4rem;
  }
}
.c-sectionNumber span {
  display: block;
  color: #fff;
}
.c-sectionNumber__en {
  text-transform: uppercase;
  font-size: 3.704375rem;
  line-height: 1.4000337439;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__en {
    font-size: 1.060625rem !important;
    line-height: 1.3995285798 !important;
  }
}
.c-sectionNumber__en--red {
  -webkit-text-stroke: 0.174375rem #FF3A6C;
  text-stroke: 0.174375rem #FF3A6C;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__en--red {
    -webkit-text-stroke: 0.05rem #FF3A6C;
    text-stroke: 0.05rem #FF3A6C;
  }
}
.c-sectionNumber__en--orange {
  -webkit-text-stroke: 0.125rem #FF863A;
  text-stroke: 0.174375rem #FF863A;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__en--orange {
    -webkit-text-stroke: 0.05rem #FF863A;
    text-stroke: 0.05rem #FF863A;
  }
}
.c-sectionNumber__en--blue {
  -webkit-text-stroke: 0.125rem #279AFF;
  text-stroke: 0.174375rem #279AFF;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__en--blue {
    -webkit-text-stroke: 0.05rem #279AFF;
    text-stroke: 0.05rem #279AFF;
  }
}
.c-sectionNumber__en--lightBlue {
  -webkit-text-stroke: 0.125rem #47C4FA;
  text-stroke: 0.174375rem #47C4FA;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__en--lightBlue {
    -webkit-text-stroke: 0.05rem #47C4FA;
    text-stroke: 0.05rem #47C4FA;
  }
}
.c-sectionNumber__num {
  font-size: 11.97375rem;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: -1.2053125rem;
  margin-bottom: -1.2053125rem;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__num {
    font-size: 3.445625rem !important;
    margin-top: -0.4375rem !important;
    margin-bottom: -0.25rem !important;
  }
}
.c-sectionNumber__num--red {
  -webkit-text-stroke: 0.34875rem #FF3A6C;
  text-stroke: 0.34875rem #FF3A6C;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__num--red {
    -webkit-text-stroke: 0.1rem #FF3A6C;
    text-stroke: 0.1rem #FF3A6C;
  }
}
.c-sectionNumber__num--orange {
  -webkit-text-stroke: 0.34875rem #FF863A;
  text-stroke: 0.34875rem #FF863A;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__num--orange {
    -webkit-text-stroke: 0.1rem #FF863A;
    text-stroke: 0.1rem #FF863A;
  }
}
.c-sectionNumber__num--blue {
  -webkit-text-stroke: 0.34875rem #279AFF;
  text-stroke: 0.34875rem #279AFF;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__num--blue {
    -webkit-text-stroke: 0.1rem #279AFF;
    text-stroke: 0.1rem #279AFF;
  }
}
.c-sectionNumber__num--lightBlue {
  -webkit-text-stroke: 0.34875rem #47C4FA;
  text-stroke: 0.34875rem #47C4FA;
}
@media screen and (max-width: 810px) {
  .c-sectionNumber__num--lightBlue {
    -webkit-text-stroke: 0.1rem #47C4FA;
    text-stroke: 0.1rem #47C4FA;
  }
}

.c-sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-sns__item {
  width: 1.5rem;
  height: 1.5rem;
}
.c-sns__item a, .c-sns__item img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-footer {
  padding: 7.5rem 0;
  background-color: #F5F5F5;
}
@media screen and (max-width: 810px) {
  .p-footer {
    padding: 4rem 0;
  }
}
.p-footer__inner {
  padding: 0 13.375rem;
}
@media screen and (max-width: 810px) {
  .p-footer__inner {
    padding: 0 5.90625rem;
  }
}
.p-footer__nav {
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
}
.p-footer__nav ul {
  -webkit-column-gap: 3.5rem;
     -moz-column-gap: 3.5rem;
          column-gap: 3.5rem;
}
.p-footer__nav li a {
  padding-left: 1.5rem;
}
.p-footer__copy {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 810px) {
  .p-footer__copy {
    margin-top: 2rem;
  }
}
.p-footer__copy small {
  font-family: "LINE Seed Sans";
  font-size: 0.875rem;
}
@media screen and (max-width: 810px) {
  .p-footer__copy small {
    letter-spacing: -0.06em;
  }
}
.p-footer__sns {
  margin-top: 1.5rem;
}
@media screen and (max-width: 810px) {
  .p-footer__sns {
    margin-top: 0.75rem;
  }
}
.p-footer__sns ul {
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
@media screen and (max-width: 810px) {
  .p-footer__sns ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }
}

.p-header {
  position: fixed;
  top: 1.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
  background-color: #fff;
  width: 86rem;
  border-radius: 0.75rem;
}
@media screen and (max-width: 810px) {
  .p-header {
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    width: 23.4375rem;
    border-radius: 0 0 0.75rem 0.75rem;
  }
}
.p-header__inner {
  padding: 0 3.5rem;
}
@media screen and (max-width: 810px) {
  .p-header__inner {
    padding: 0 1rem;
  }
}
.p-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6875rem 0;
}
.p-header__logo {
  width: 12.454375rem;
  height: 3.68375rem;
  padding: 0.4825rem 1.0525rem;
  margin-right: auto;
}
@media screen and (max-width: 810px) {
  .p-header__logo {
    width: 6.95625rem;
    height: 2.0575rem;
    padding: 0.269375rem 0.588125rem;
  }
}
.p-header__logo a, .p-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-header__logo img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-header__nav {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 810px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav ul {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.p-info {
  padding: 9.75rem 0 6.39375rem;
}
@media screen and (max-width: 810px) {
  .p-info {
    padding: 6.5rem 0 6.311875rem;
  }
}
.p-info__content {
  padding: 0 0.166875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 810px) {
  .p-info__content {
    display: block;
    padding: 0;
  }
}
.p-info__column:nth-child(2) {
  width: 45.3275rem;
  height: 28.115625rem;
}
@media screen and (max-width: 810px) {
  .p-info__column:nth-child(2) {
    margin-top: 2rem;
    width: 21.4375rem;
    height: 13.295625rem;
  }
}
.p-info__column:nth-child(2) iframe {
  width: 100%;
  height: 100%;
}
.p-info__title {
  font-size: 3.5rem;
  line-height: 1.5;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "LINE Seed Sans";
}
@media screen and (max-width: 810px) {
  .p-info__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-info__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
  margin-top: 2.125rem;
}
@media screen and (max-width: 810px) {
  .p-info__group {
    row-gap: 1rem;
    margin-top: 1.5rem;
  }
}
.p-info__group > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-info__logo {
  row-gap: 0.75rem;
}
.p-info__logo img {
  width: 11.8125rem;
  height: 3.0625rem;
}
@media screen and (max-width: 810px) {
  .p-info__logo img {
    width: 9.23rem;
    height: 2.393125rem;
  }
}
.p-info__logo a {
  width: 9.6875rem;
  padding-right: 1.75rem;
}
@media screen and (max-width: 810px) {
  .p-info__logo a {
    width: 8.6875rem;
    height: 2.5rem;
  }
}
.p-info__access {
  row-gap: 1rem;
}
.p-info__access h3 {
  font-family: "LINE Seed Sans";
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.0625rem;
}
@media screen and (max-width: 810px) {
  .p-info__access h3 {
    font-size: 1.25rem;
  }
}
.p-info__access a {
  width: 8.6875rem;
}
@media screen and (max-width: 810px) {
  .p-info__access a {
    width: 7.6875rem;
  }
}
.p-info__btn {
  text-align: left;
}
.p-info__btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3rem;
  background-color: #279AFF;
  color: #fff;
  font-weight: 700;
  border-radius: 62.4375rem;
  padding-right: 1.75rem;
}
@media screen and (max-width: 810px) {
  .p-info__btn a {
    height: 2.5rem;
  }
}
.p-info__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.65625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.9375rem;
  background-image: url(../images/icon/tab.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-info__btn a::after {
    right: 1.15625rem;
  }
}

.p-layer {
  display: none;
}
@media screen and (max-width: 810px) {
  .p-layer {
    position: fixed;
    display: block;
    z-index: -1;
  }
}
@media screen and (max-width: 810px) {
  .p-layer::before {
    opacity: 0;
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
}
@media screen and (max-width: 810px) {
  .p-layer.shadow {
    z-index: 2;
  }
}
@media screen and (max-width: 810px) {
  .p-layer.shadow::before {
    opacity: 1;
    z-index: 2;
  }
}

.p-mv {
  position: relative;
  width: 100%;
  height: 47.6875rem;
  background-image: url(../images/mv/bg.webp);
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 810px) {
  .p-mv {
    -webkit-column-gap: normal;
       -moz-column-gap: normal;
            column-gap: normal;
    -webkit-column-gap: initial;
       -moz-column-gap: initial;
            column-gap: initial;
    background-image: url(../images/mv/bg-sp.webp);
    height: 26.5rem;
  }
}
.p-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
}
.p-mv::after {
  content: "";
  width: 90rem;
  height: 6.96875rem;
  position: absolute;
  bottom: -1.1875rem;
  left: 0;
  background-image: url(../images/mv/bottom-bg.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-mv::after {
    display: none;
  }
}
.p-mv__content {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 30.598125rem;
  padding-bottom: 5.658125rem;
}
@media screen and (max-width: 810px) {
  .p-mv__content {
    padding-top: 19.375rem;
    padding-bottom: 0.5275rem;
  }
}
.p-mv__heading {
  position: absolute;
  top: 12.169375rem;
  left: 0;
}
@media screen and (max-width: 810px) {
  .p-mv__heading {
    top: 4.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-mv__title {
  position: relative;
}
.p-mv__title picture:nth-child(1) {
  width: 67.90625rem;
}
@media screen and (max-width: 810px) {
  .p-mv__title picture:nth-child(1) {
    width: 19.6875rem;
    margin-left: 0.25rem;
  }
}
.p-mv__title picture:nth-child(2) {
  margin-top: -8.375rem;
  width: 82.125rem;
}
@media screen and (max-width: 810px) {
  .p-mv__title picture:nth-child(2) {
    margin-top: -2.1875rem;
    width: 24.3125rem;
    margin-left: -1.5rem;
  }
}
.p-mv__title::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 3.5rem;
  width: 6.154375rem;
  height: 4.8625rem;
  background-image: url(../images/mv/title-bgLeft.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-mv__title::before {
    top: 0.4375rem;
    left: 1.25rem;
    width: 1.625rem;
    height: 1.25rem;
    -webkit-transform: rotate(-23.76deg);
            transform: rotate(-23.76deg);
  }
}
.p-mv__title::after {
  content: "";
  position: absolute;
  top: 2.6875rem;
  right: -4.75rem;
  width: 6.8325rem;
  height: 5.398125rem;
  background-image: url(../images/mv/title-bgRight.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-mv__title::after {
    top: 5.9375rem;
    right: -0.25rem;
    width: 2.39375rem;
    height: 2.61125rem;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background-image: url(../images/mv/title-bgRight-sp.webp);
    display: none;
  }
}
.p-mv__text {
  display: block;
  margin-top: -5.875rem;
  margin-left: 7.25rem;
  position: relative;
}
@media screen and (max-width: 810px) {
  .p-mv__text {
    margin-top: -4.75rem;
    margin-left: 0.9375rem;
  }
}
.p-mv__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 47.15rem;
  height: 7.09375rem;
  background-image: url(../images/mv/bg-white.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-mv__text::before {
    top: 1.6875rem;
    width: 20.69rem;
    height: 3.1875rem;
    background-image: url(../images/mv/bg-white-sp.webp);
  }
}
.p-mv__text picture {
  position: relative;
  width: 45.84375rem;
  padding-top: 0.8125rem;
  padding-left: 0.375rem;
}
@media screen and (max-width: 810px) {
  .p-mv__text picture {
    width: 20.5rem;
    padding-top: 2.0625rem;
    padding-left: 0.6rem;
  }
}
.p-mv picture img {
  width: 100%;
  height: 100%;
}
.p-mv__circles {
  margin-right: 5.015rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.28rem;
     -moz-column-gap: 2.28rem;
          column-gap: 2.28rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 810px) {
  .p-mv__circles {
    margin-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.3725rem;
       -moz-column-gap: 1.3725rem;
            column-gap: 1.3725rem;
  }
}
.p-mv__circle {
  position: relative;
  width: 11.430625rem;
  height: 11.430625rem;
  border-radius: 50%;
  background-color: #F9FF4C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 810px) {
  .p-mv__circle {
    width: 6.5975rem;
    height: 6.5975rem;
  }
}
.p-mv__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 10.83625rem;
  height: 10.86125rem;
  border: solid 0.125rem #EAC634;
  border-radius: 50%;
}
@media screen and (max-width: 810px) {
  .p-mv__circle::before {
    width: 6.254375rem;
    height: 6.254375rem;
    border: solid 0.071875rem #EAC634;
  }
}
.p-mv__circle:nth-child(1) > span > span:nth-child(1) {
  font-size: 1.1525rem;
  line-height: 1.2001084599;
}
@media screen and (max-width: 810px) {
  .p-mv__circle:nth-child(1) > span > span:nth-child(1) {
    font-size: 0.7275rem;
  }
}
.p-mv__circle:nth-child(1) > span > span:nth-child(2) {
  font-size: 2.273125rem;
  line-height: 1.2078636239;
}
@media screen and (max-width: 810px) {
  .p-mv__circle:nth-child(1) > span > span:nth-child(2) {
    font-size: 1.311875rem;
  }
}
.p-mv__circle:nth-child(1) > span > span:nth-child(3) {
  font-size: 1.98375rem;
  line-height: 1.200063012;
  letter-spacing: -0.04em;
  padding-left: 0.813125rem;
}
@media screen and (max-width: 810px) {
  .p-mv__circle:nth-child(1) > span > span:nth-child(3) {
    font-size: 1.145rem;
    padding-left: 0.335625rem;
    padding-top: 0.0625rem;
  }
}
@media screen and (max-width: 810px) {
  .p-mv__circle:nth-child(2) > span > span {
    padding-left: 0.1575rem;
  }
}
.p-mv__circle:nth-child(2) > span > span:nth-child(1) {
  font-size: 1.149375rem;
  line-height: 1.2001087548;
}
@media screen and (max-width: 810px) {
  .p-mv__circle:nth-child(2) > span > span:nth-child(1) {
    font-size: 0.72625rem;
  }
}
.p-mv__circle:nth-child(2) > span > span:nth-child(2) {
  font-size: 2.288125rem;
  line-height: 1.1999453701;
}
@media screen and (max-width: 810px) {
  .p-mv__circle:nth-child(2) > span > span:nth-child(2) {
    font-size: 1.320625rem;
  }
}
.p-mv__circle:nth-child(2) > span > span:nth-child(3) {
  font-size: 1.70375rem;
  line-height: 1.1999266324;
}
@media screen and (max-width: 810px) {
  .p-mv__circle:nth-child(2) > span > span:nth-child(3) {
    font-size: 0.983125rem;
    padding-left: 0.3125rem;
  }
}
.p-mv__circle > span {
  display: block;
  color: #000;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 810px) {
  .p-mv__circle > span {
    padding-top: 0.125rem;
  }
}
.p-mv__circle > span > span {
  display: block;
}
.p-mv__circle > span > span:nth-child(1) {
  font-weight: 700;
}
.p-mv__circle > span > span:nth-child(2) {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff));
  background: linear-gradient(transparent 50%, #fff 50%);
}

.p-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
}
@media screen and (max-width: 810px) {
  .p-page__content {
    row-gap: 2.5rem;
  }
}
.p-page01 {
  padding: 0.125rem 0 6.415rem;
}
@media screen and (max-width: 810px) {
  .p-page01 {
    padding: 0.5625rem 0 3.75rem;
  }
}
.p-page01__title {
  margin-bottom: -4rem;
  margin-left: -0.375rem;
  width: 31.25rem;
  height: 12.75rem;
}
@media screen and (max-width: 810px) {
  .p-page01__title {
    margin-bottom: -1.5625rem;
    margin-left: 0.0625rem;
    width: 11.03125rem;
    height: 4.53125rem;
  }
}
.p-page02 {
  position: relative;
  margin-top: 8.75rem;
  padding: 1.4375rem 0 8.3125rem;
}
@media screen and (max-width: 810px) {
  .p-page02 {
    margin-top: 1.875rem;
    padding: 0.1875rem 0 3.75rem;
  }
}
.p-page02::before {
  position: absolute;
  width: 100%;
  top: -1.5rem;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: -1;
  -webkit-transform: skewY(4.32deg);
          transform: skewY(4.32deg);
  background-color: #FFA959;
  content: "";
}
@media screen and (max-width: 810px) {
  .p-page02::before {
    top: -0.625rem;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
.p-page02::after {
  content: "";
  position: absolute;
  top: -13.125rem;
  left: 0;
  width: 100%;
  height: 15.28125rem;
  background-image: url(../images/event02/bg-top.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-page02::after {
    top: -3.125rem;
    width: 23.4375rem;
    height: 4.13865625rem;
    background-size: 384%;
    background-position: top 13.625rem left;
    z-index: -1;
  }
}
.p-page02__num {
  font-size: 12.25rem;
  position: relative;
  left: -9%;
}
.p-page02__title {
  margin-bottom: -3.125rem;
  margin-left: 0;
  width: 28.21875rem;
  height: 11.75rem;
}
@media screen and (max-width: 810px) {
  .p-page02__title {
    margin-bottom: -1.5625rem;
    margin-left: 0.0625rem;
    width: 11.03125rem;
    height: 4.53125rem;
  }
}
.p-page02__box {
  padding: 2rem 3.75rem;
  background-color: #fff;
  border-radius: 3rem;
}
@media screen and (max-width: 810px) {
  .p-page02__box {
    padding: 1rem;
    border-radius: 0.75rem;
  }
}
.p-page02__group {
  margin-top: 1.5rem;
}
.p-page03 {
  position: relative;
  padding-top: 8.0625rem;
  padding-bottom: 7.0625rem;
}
@media screen and (max-width: 810px) {
  .p-page03 {
    padding-top: 3.125rem;
    padding-bottom: 3.9375rem;
  }
}
.p-page03::before {
  content: "";
  position: absolute;
  top: -7.8125rem;
  left: 0;
  width: 100%;
  height: 15.28125rem;
  background-image: url(../images/event03/bg-top.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-page03::before {
    top: -0.125rem;
    width: 23.4375rem;
    height: 4.13865625rem;
    background-size: 384%;
    background-position: top 10.6875rem left;
    z-index: -1;
  }
}
.p-page03::after {
  content: "";
  position: absolute;
  bottom: -12.05375rem;
  left: 0;
  width: 100%;
  height: 15.28125rem;
  background-image: url(../images/event03/bg-bottom.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-page03::after {
    bottom: -1.42875rem;
    width: 23.4375rem;
    height: 4.13865625rem;
    background-size: 384%;
    background-position: top 14rem left;
    z-index: -1;
  }
}
.p-page03__num {
  font-size: 12.25rem;
  position: relative;
  left: -9%;
}
.p-page03__title {
  margin-bottom: -2.1875rem;
  margin-left: 0;
  width: 25.21875rem;
  height: 10.34375rem;
}
@media screen and (max-width: 810px) {
  .p-page03__title {
    margin-bottom: -1.5625rem;
    margin-left: 0.0625rem;
    width: 11.03125rem;
    height: 4.53125rem;
  }
}
.p-page04 {
  margin-top: 8.125rem;
  padding: 2.3125rem 0 4.125rem;
  position: relative;
  background-color: #C3F1FF;
}
@media screen and (max-width: 810px) {
  .p-page04 {
    margin-top: 0;
    padding: 1rem 0 1.625rem;
  }
}
.p-page04::before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: -1;
  -webkit-transform: skewY(4.32deg);
          transform: skewY(4.32deg);
  background-color: #C3F1FF;
  content: "";
}
@media screen and (max-width: 810px) {
  .p-page04::before {
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
.p-page04::after {
  content: "";
  position: absolute;
  bottom: -9.3125rem;
  left: 0;
  width: 100%;
  height: 15.28125rem;
  background-image: url(../images/event04/bg-bottom.webp);
  background-size: cover;
}
@media screen and (max-width: 810px) {
  .p-page04::after {
    bottom: -2.5rem;
    width: 23.4375rem;
    height: 4.13865625rem;
    background-size: 384%;
    background-position: top 11.625rem left;
  }
}
.p-page04__headingColumns.p-sectionHeading__columns {
  -webkit-column-gap: 1.6875rem;
     -moz-column-gap: 1.6875rem;
          column-gap: 1.6875rem;
}
.p-page04__headingColumn.p-sectionHeading__column:last-child {
  width: calc(100% - 6.3rem);
}
.p-page04__en {
  position: relative;
  font-size: 3.4375rem;
  left: -7%;
}
@media screen and (max-width: 810px) {
  .p-page04__en {
    left: 0;
  }
}
.p-page04__num {
  font-size: 11rem;
  position: relative;
  left: -12%;
  padding-bottom: 0.375rem;
}
.p-page04__title {
  margin-top: 0.375rem;
  margin-bottom: -2.9375rem;
  margin-left: -0.625rem;
  width: 28.21875rem;
  height: 11.75rem;
}
@media screen and (max-width: 810px) {
  .p-page04__title {
    margin-bottom: -1.5625rem;
    margin-left: 0.0625rem;
    width: 11.03125rem;
    height: 4.53125rem;
  }
}
.p-page04 h2 {
  line-height: 1.2;
}
.p-page04 h2 span {
  font-size: 5rem;
}
@media screen and (max-width: 810px) {
  .p-page04 h2 span {
    font-size: 1.25rem;
  }
}
::-webkit-full-page-media, :future, :root .p-page04 h2 span {
  font-size: 4.95rem;
}
@media screen and (max-width: 810px) {
  ::-webkit-full-page-media, :future, :root .p-page04 h2 span {
    font-size: 1.25rem;
  }
}
@-moz-document url-prefix() {
  .p-page04 h2 span {
  font-size: 4.95rem;
}
}
@media screen and (max-width: 810px) {
  @-moz-document url-prefix() {
  .p-page04 h2 span {
    font-size: 1.25rem;
  }
}
}
.p-page04__box {
  padding: 2rem 3.75rem;
  background-color: #fff;
  border-radius: 3rem;
}
@media screen and (max-width: 810px) {
  .p-page04__box {
    padding: 1rem;
    border-radius: 0.75rem;
  }
}
.p-page04__column {
  position: relative;
}
.p-page04__column span {
  position: absolute;
  bottom: 0.7925rem;
  right: 0.804375rem;
  color: rgba(0, 0, 0, .2);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-family: "LINE Seed Sans";
}

.p-sectionHeading {
  margin-bottom: 4rem;
}
@media screen and (max-width: 810px) {
  .p-sectionHeading {
    margin-bottom: 1.5rem;
  }
}
.p-sectionHeading__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 3.856875rem;
     -moz-column-gap: 3.856875rem;
          column-gap: 3.856875rem;
}
@media screen and (max-width: 810px) {
  .p-sectionHeading__columns {
    -webkit-column-gap: 0.956875rem;
       -moz-column-gap: 0.956875rem;
            column-gap: 0.956875rem;
  }
}
.p-sectionHeading__column:first-child {
  width: 16.11375rem;
}
@media screen and (max-width: 810px) {
  .p-sectionHeading__column:first-child {
    width: 4.6125rem;
  }
}
.p-sectionHeading__column:last-child {
  width: calc(100% - 19.97062rem);
}
@media screen and (max-width: 810px) {
  .p-sectionHeading__column:last-child {
    width: calc(100% - 5.56938rem);
  }
}
.p-sectionHeading__title {
  font-size: 2.6875rem;
  line-height: 1;
  color: #270303;
  font-weight: 800;
}
@media screen and (max-width: 810px) {
  .p-sectionHeading__title {
    font-size: 0.925rem;
  }
}
.p-sectionHeading__strong {
  padding-top: 1.5rem;
  display: inline-block;
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
}
@media screen and (max-width: 810px) {
  .p-sectionHeading__strong {
    padding-top: 0.25rem;
    font-size: 1.75rem;
  }
}
.p-sectionHeading__strong--red {
  color: #FF3A6C;
}
.p-sectionHeading__strong--orange {
  color: #FF863A;
}
.p-sectionHeading__strong--blue {
  color: #279AFF;
}
.p-sectionHeading__strong--lightBlue {
  color: #47C4FA;
}

.p-spNav {
  display: none;
}
@media screen and (max-width: 810px) {
  .p-spNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
  }
}
.p-spNav__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 4.5rem;
  height: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  border-radius: 62.4375rem;
  color: #fff;
  background-color: #279AFF;
}

@media screen and (max-width: 810px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 810px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
