@charset "UTF-8";
/*//////////////////////////////////////////////////////////

------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  background-color: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  display: block;
  border: 0 none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 1.5rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
select::-ms-expand {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.scrollin {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.scrollin {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.scrollin {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.scrollin {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ------------------------
    基本構造
------------------------ */
:root {
  --headerHeight: 100px;
  --activeHeaderHeight: 100px;
  --minWidth: 1px;
  --sideW: min(4.4vw, 60px);
  --space: 10rem;
}
@media screen and (max-width: 750px) {
  :root {
    --headerHeight: 100px;
    --activeHeaderHeight: 100px;
    --minWidth: 1px;
    --sideW: min(5.2vw, 20px);
    --space: 6rem;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}

body {
  font-size: 1.4rem;
  font-weight: 400;
  color: #222222;
  text-align: left;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #222222;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  color: #222222;
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.al-center {
  text-align: center;
}

.al-center-pc {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .al-center-pc {
    text-align: left;
  }
}

@media screen and (max-width: 750px) {
  .al-center-sp {
    text-align: center;
  }
}

.nolink {
  pointer-events: none;
  color: #222222;
  cursor: pointer;
  text-decoration: none;
}

.disp-ib {
  display: inline-block;
}

.only-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .only-sp {
    display: inherit;
  }
}

@media screen and (max-width: 750px) {
  .only-pc {
    display: none;
  }
}
.section-wrap {
  padding-bottom: var(--space);
}
.section-wrap[class*=bg-] {
  padding-top: var(--space);
}
.section-wrap[class*=bg-] + .section-wrap {
  padding-top: var(--space);
}
.section-wrap.bg-pink {
  background: url(../img/bg_pattern.png);
  background-color: #F4D1E8;
}
.section-wrap.bg-pink-02 {
  background: url(../img/bg_pattern.png);
  background-color: #FFE0EF;
}

.contents {
  max-width: calc(950px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
  line-height: 1.75;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.036em;
}

.hero {
  position: relative;
  padding-top: min(10.1vw, 138px);
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .hero {
    padding-top: 21.5vw;
    margin-bottom: 54.35vw;
  }
}
.hero::before {
  content: "";
  position: absolute;
  width: min(23.42vw, 320px);
  aspect-ratio: 321/641;
  background: url(../img/mv_02_bg.svg) no-repeat center/contain;
  left: calc(50% + min(24.3vw, 332px));
  top: min(2.2vw, 30px);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .hero::before {
    width: 104.1vw;
    aspect-ratio: 406/700;
    background-image: url(../img/mv_bg_sp.svg);
    left: 0.77vw;
    top: 4.1vw;
    z-index: 2;
  }
}
.hero::after {
  content: "";
  position: absolute;
  width: min(22.03vw, 301px);
  aspect-ratio: 301/323;
  background: url(../img/mv_03_bg.svg) no-repeat center/contain;
  right: calc(50% + min(25.55vw, 349px));
  top: min(34.8vw, 476px);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .hero::after {
    content: none;
  }
}
.hero h1 {
  position: relative;
}
@media screen and (max-width: 750px) {
  .hero h1 {
    padding-top: 19.2vw;
  }
}
.hero h1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: min(32.8vw, 448px);
  background: url(../img/bg_pattern.png) repeat-x left top/auto 100%, url(../img/mv_01_bg.png) repeat left top/60px auto;
  background-color: #D89AC2;
  top: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .hero h1::before {
    height: 115.4vw;
  }
}
.hero h1 picture {
  display: block;
  position: relative;
  z-index: 1;
  margin: auto;
  width: min(45.17vw, 617px);
  transform: translate(max(-2.93vw, -40px), max(-2.2vw, -30px));
}
@media screen and (max-width: 750px) {
  .hero h1 picture {
    width: 104.36vw;
    transform: translate(-6.9vw, 0);
  }
}
.hero h1 picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-lead h2 {
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 750px) {
  .sec-lead h2 {
    margin-bottom: 30px;
  }
}
.sec-lead h2 span {
  display: inline;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 2;
  padding-bottom: 3px;
  letter-spacing: 0;
  background: linear-gradient(to bottom, transparent calc(100% - 3px), #222222 calc(100% - 3px));
}
@media screen and (max-width: 750px) {
  .sec-lead h2 span {
    font-size: min(5vw, 2rem);
  }
}
.sec-lead img {
  display: block;
  margin: 0 auto 50px;
}
@media screen and (max-width: 750px) {
  .sec-lead img {
    width: 73.33vw;
    margin-bottom: 35px;
  }
}
.sec-lead ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.sec-lead ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 20px;
  background: url(../img/lead_01_bg.svg) no-repeat center bottom;
  background-color: #F7E5F1;
  border: 2px dotted #B13484;
  padding: 35px 30px;
}
@media screen and (max-width: 750px) {
  .sec-lead ul li {
    padding: 25px 20px;
    gap: 15px;
  }
}
.sec-lead ul li:nth-child(2) {
  background-image: url(../img/lead_02_bg.svg);
}
.sec-lead ul li h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #B13484;
}
@media screen and (max-width: 750px) {
  .sec-lead ul li h3 {
    font-size: 1.6rem;
  }
}
.sec-lead ul li p {
  line-height: 2;
}

.sec-app dl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 750px) {
  .sec-app dl {
    margin-bottom: 4rem;
  }
}
.sec-app dl .step {
  display: flex;
  flex-wrap: wrap;
  gap: 0 35px;
  position: relative;
  padding: 35px 40px;
  background-color: #F4D1E8;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .sec-app dl .step {
    padding: 25px 20px;
  }
}
.sec-app dl .step:first-of-type {
  margin-top: 0;
}
.sec-app dl .step:first-of-type::before {
  content: none;
}
.sec-app dl .step::before {
  content: "";
  position: absolute;
  width: 29px;
  aspect-ratio: 29/37;
  background: url(../img/ico_arrow_triple.svg) no-repeat center/contain;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
}
.sec-app dl .step dt {
  position: relative;
  width: 280px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .sec-app dl .step dt {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    font-size: 1.8rem;
    letter-spacing: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.sec-app dl .step dt::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: repeating-linear-gradient(180deg, #fff, #fff 4px, transparent 4px, transparent 8px);
  right: 0;
  top: 0;
}
@media screen and (max-width: 750px) {
  .sec-app dl .step dt::after {
    right: auto;
    top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(90deg, #fff, #fff 4px, transparent 4px, transparent 8px);
  }
}
.sec-app dl .step dt span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
}
@media screen and (max-width: 750px) {
  .sec-app dl .step dt span {
    letter-spacing: 0;
  }
}
.sec-app dl .step dt span b {
  font-size: 2.5rem;
}
.sec-app dl .step dd {
  display: grid;
  align-items: center;
  gap: 12px;
  width: calc(100% - 280px - 35px);
}
@media screen and (max-width: 750px) {
  .sec-app dl .step dd {
    width: 100%;
  }
}
.sec-app dl .step dd p {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .sec-app dl .step dd p {
    font-size: 1.5rem;
  }
}
.sec-app dl .step dd em {
  font-size: 1.3rem;
}
.sec-app .ekitag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 40px;
  border: 1px solid #B13484;
  margin-bottom: 5rem;
}
@media screen and (max-width: 750px) {
  .sec-app .ekitag {
    justify-content: center;
    padding: 20px;
    margin-bottom: 4rem;
  }
}
.sec-app .ekitag img {
  display: block;
  width: 90px;
  aspect-ratio: 1/1;
}
.sec-app .ekitag p {
  width: calc(100% - 90px - 20px);
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .sec-app .ekitag p {
    width: 100%;
  }
}
.sec-app h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .sec-app h3 {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.sec-app .download {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 750px) {
  .sec-app .download {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .sec-app .download li {
    width: 134px;
  }
}
@media screen and (max-width: 750px) {
  .sec-app .download li:nth-child(2) {
    width: 169px;
  }
}
.sec-app .download a:hover {
  opacity: 0.7;
}
.sec-app .terms {
  padding: 5rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 750px) {
  .sec-app .terms {
    padding: 2.5rem 2rem;
  }
}
.sec-app .terms strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .sec-app .terms strong {
    font-size: 1.6rem;
  }
}

.rally-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .rally-list {
    display: block;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 750px) {
  .rally-list li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 750px) {
  .rally-list li:last-child {
    margin-bottom: 0;
  }
}
.rally-list li a {
  display: block;
  border: 4px solid #222222;
  background: url(../img/ico_arrow_rally.svg) no-repeat center bottom 13px;
  background-color: #fff;
  padding: 15px 5px 38px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.44;
  letter-spacing: 0;
  font-weight: 800;
}
@media screen and (max-width: 750px) {
  .rally-list li a {
    padding: 10px 17px;
    background-position: center right 22px;
    text-align: left;
  }
}
.rally-list li a:hover {
  border-color: #B13484;
}

.rally-item {
  position: relative;
  margin-bottom: 80px;
}
.rally-item:last-child {
  margin-bottom: 0;
}
.rally-item::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 6px;
  background: repeating-linear-gradient(90deg, #222222, #222222 6px, transparent 6px, transparent 12px);
  left: calc(50% - 50vw);
  top: 70px;
}
@media screen and (max-width: 750px) {
  .rally-item::after {
    height: 4px;
    background: repeating-linear-gradient(90deg, #222222, #222222 4px, transparent 4px, transparent 8px);
    top: 60px;
  }
}
.rally-item h3 {
  display: grid;
  place-content: center;
  position: relative;
  width: 343px;
  aspect-ratio: 343/96;
  background: url(../img/rally_ttl.svg) no-repeat center/contain;
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0;
  font-weight: 700;
  padding-bottom: 13px;
  transform: rotate(-5deg);
  z-index: 1;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .rally-item h3 {
    width: 296px;
    font-size: 2.1rem;
    margin-inline: auto;
  }
}
.rally-item ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 25px;
}
@media screen and (max-width: 750px) {
  .rally-item ul {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 25px;
    padding: 0 6.4vw;
  }
}
.rally-item ul li img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
}
.rally-item ul li .station {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 27px;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 4px;
  background-color: #fff;
  padding: 0 10px;
  margin-bottom: 12px;
}
.rally-item ul li .station::before {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 12/17;
  background: url(../img/ico_station.svg) no-repeat center/contain;
  flex-shrink: 0;
}
.rally-item ul li h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.rally-item ul li dl dt {
  font-weight: 700;
  font-size: 1.3rem;
}
.rally-item ul li dl dd {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.rally-item ul li dl dd a {
  text-decoration: underline;
}
.rally-item ul li dl dd a:hover {
  text-decoration: none;
}

.cation {
  font-weight: 500;
  font-size: 1.5rem;
}

.stamp-station {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .stamp-station {
    gap: 10px;
  }
}
.stamp-station .item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  background-color: #F7F7F7;
  padding: 45px 50px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .stamp-station .item {
    padding: 25px 20px;
    gap: 15px;
  }
}
.stamp-station .item dt {
  width: 162px;
  font-weight: 700;
  font-size: 1.7rem;
}
@media screen and (max-width: 750px) {
  .stamp-station .item dt {
    width: 100%;
  }
}
.stamp-station .item dd {
  width: calc(100% - 162px);
}
@media screen and (max-width: 750px) {
  .stamp-station .item dd {
    width: 100%;
  }
}

.prize-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 94px 23px;
}
@media screen and (max-width: 750px) {
  .prize-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px 20px;
  }
}
.prize-list__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 10px;
}
.prize-list__item .shop {
  color: #B13484;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 4px;
}
@media screen and (max-width: 750px) {
  .prize-list__item .shop {
    line-height: 1.46;
  }
}
.prize-list__item .name {
  font-size: 1.6rem;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.375;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .prize-list__item .name {
    font-size: 1.5rem;
    line-height: 1.46;
  }
}
.prize-list__item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.prize-list__item ul li {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 27px;
  padding: 0 10px;
  background-color: #fff;
  border-radius: 4px;
}
@media screen and (max-width: 750px) {
  .prize-list__item ul li {
    line-height: 23px;
    padding: 0 6px;
  }
}

.cation-wrap {
  background-color: #F7F7F7;
  padding: 45px 50px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 750px) {
  .cation-wrap {
    padding: 25px 20px;
  }
}
.cation-wrap h2 {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .cation-wrap h2 {
    font-size: 1.6rem;
  }
}

.link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  place-items: center;
  gap: 10px;
  width: 740px;
  max-width: 100%;
  margin: 0 auto var(--space);
}
.link-list a:hover {
  opacity: 0.7;
}

.organizer {
  width: 780px;
  max-width: 100%;
  margin: auto;
}
.organizer p {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2;
}

.ttl-cmn-01 {
  display: block;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .ttl-cmn-01 {
    margin-bottom: 4rem;
  }
}
.ttl-cmn-01 span {
  display: inline-block;
  position: relative;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .ttl-cmn-01 span {
    font-size: 2.8rem;
  }
}
.ttl-cmn-01 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg, #D89AC2, #D89AC2 5px, transparent 5px, transparent 10px);
}
.ttl-cmn-01--white span::after {
  background: repeating-linear-gradient(90deg, #fff, #fff 5px, transparent 5px, transparent 10px);
}

.lead {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .lead {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

.catch {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.55;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .catch {
    font-size: 2.2rem;
  }
}

.list-dot-pink {
  margin-bottom: 15px;
}
.list-dot-pink:last-child {
  margin-bottom: 0;
}
.list-dot-pink li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.list-dot-pink li:last-child {
  margin-bottom: 0;
}
.list-dot-pink li::before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #D89AC2;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.list-dot-pink li.color {
  color: #9A0062;
  font-weight: 600;
}

.list-dot-white {
  margin-bottom: 6rem;
}
.list-dot-white:last-child {
  margin-bottom: 0;
}
.list-dot-white li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.list-dot-white li:last-child {
  margin-bottom: 0;
}
.list-dot-white li::before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #fff;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.list-dot-white li.color {
  color: #9A0062;
  font-weight: 600;
}

.page-top {
  position: fixed;
  bottom: 0;
  right: -3px;
  z-index: 98;
}
.page-top a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
  width: 215px;
  aspect-ratio: 215/63;
  padding: 0 19px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .page-top a {
    max-width: 55vw;
    font-size: min(3.84vw, 1.5rem);
  }
}
.page-top a::before {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 18/15;
  background: url(../img/ico_pagetop_arrow.svg) no-repeat center/contain;
}
.page-top a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/ico_pagetop.svg) no-repeat center/contain;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}
.page-top a:hover::after {
  transform: rotate(4deg);
}
.page-top img {
  display: block;
  margin: auto;
}
