@charset "UTF-8";
/*-----------------------------------------------------------------------------
初期化
-------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}

img {
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6, figure, p, dl, dt, dd {
  padding: 0;
  margin: 0;
}

.none {
  display: none;
}

html, body {
  scroll-behavior: smooth;
}

/*-----------------------------------------------------------------------------
break point
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
PC/SP
-------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*-----------------------------------------------------------------------------
colors
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
font
-------------------------------------------------------------------------------*/
body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  line-height: 1.4;
  overflow-x: hidden;
  width: 100%;
  color: #333333;
}
@media screen and (max-width: 767px) {
  body {
    height: 100%;
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
  }
  body .l-tieup {
    overflow-x: hidden;
  }
}

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

.txt-right {
  text-align: right;
}

.txt-bold {
  font-weight: 700;
}

.txt-white {
  color: #fff;
}

/*-----------------------------------------------------------------------------
a tag
-------------------------------------------------------------------------------*/
a {
  transition: all 0.3s ease-in;
}

/*-------------------------------------------------------------
ふわっと表示
-------------------------------------------------------------*/
.scroll_up {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease-out, transform 2s ease-out;
  transition-delay: calc(var(--delay) * 0.2s);
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*-----------------------------------------------------------------------------
画像
-------------------------------------------------------------------------------*/
img {
  display: block;
  vertical-align: bottom;
}

.img-center {
  display: block;
  margin: 0 auto;
}

/*-----------------------------------------------------------------------------
.inner
-------------------------------------------------------------------------------*/
.inner {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 1rem;
  }
}

/*-----------------------------------------------------------------------------
display flex
-------------------------------------------------------------------------------*/
.dflex {
  display: flex;
}

.dflex-center {
  justify-content: center;
}

.dflex-column-reverse {
  flex-direction: column-reverse;
}

.dblock {
  display: block;
}

/*-----------------------------------------------------------------------------
ボタン
-------------------------------------------------------------------------------*/
.btn a {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s ease-in;
  line-height: 2.375rem;
  border-radius: 0.5rem;
}
.btn a span {
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn a:hover {
    opacity: 0.7;
  }
}

.btn-red a {
  border: 0.125rem solid #333333;
  color: #fff;
  background-color: #F32D45;
}

.btn-arrow-bottom span:after,
.btn-arrow span:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("../img/icon_arrow_btn.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: -1.5rem;
}

.btn-arrow-bottom span:after {
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon_arrow_bottom.svg") no-repeat center center;
  right: -2rem;
}

/*-----------------------------------------------------------------------------
共通パーツ
-------------------------------------------------------------------------------*/
.txt-red {
  color: #F32D45;
}

.l-tieup {
  background-color: #FFF7D8;
}

/*-----------------------------------------------------------------------------
共通
-------------------------------------------------------------------------------*/
.swiper {
  overflow: visible;
  width: 100%;
}

.swiper-button-prev, .swiper-button-next, .attractions-swiper-button-prev, .attractions-swiper-button-next {
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next, .attractions-swiper-button-prev, .attractions-swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}

img {
  width: 100%;
}

span.sp-only {
  display: inline;
}

.banner-container {
  height: 5rem;
  width: 33rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner-container {
    height: 3.875rem;
    padding: 0 1rem;
    max-width: 33rem;
    width: 100%;
  }
}
.banner-image--left, .banner-image--right {
  align-self: self-start;
  z-index: 1;
  width: 3.375rem;
}
@media screen and (max-width: 767px) {
  .banner-image--left, .banner-image--right {
    width: 2.625rem;
  }
}
.banner-image--left {
  justify-self: start;
}
@media screen and (max-width: 767px) {
  .banner-image--left {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .banner-image--right {
    margin-left: 0;
  }
}
.banner-title-container {
  height: 4rem;
  width: 100%;
  align-self: self-end;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 0.1875rem solid #333333;
}
@media screen and (max-width: 767px) {
  .banner-title-container {
    border: 0.125rem solid #333333;
    border-radius: 0.5rem;
    height: 3.125rem;
  }
}
.banner-title-container--red {
  background-color: #F32D45;
}
.banner-title-container--blue {
  background-color: #0084B0;
}
.banner-title-container--green {
  background-color: #3D9453;
}
.banner-title-container--orange {
  background-color: #FF952F;
}
.banner-title-text {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .banner-title-text {
    font-size: 1.5rem;
  }
}
.banner-title-text-small {
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
}

/*-----------------------------------------------------------------------------
wrapper
-------------------------------------------------------------------------------*/
.wrapper {
  position: relative;
  overflow-x: hidden;
}

/*-----------------------------------------------------------------------------
header
-------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: 0.0625rem solid #C8C8C8;
  height: 3.625rem;
}
@media screen and (max-width: 767px) {
  #header {
    border: none;
    height: 3rem;
  }
  #header img {
    width: 7.03125rem;
  }
}

/*-----------------------------------------------------------------------------
パンくずリスト
-------------------------------------------------------------------------------*/
.breadlist {
  position: relative;
  background-color: #fff;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 2.75rem;
}
@media screen and (max-width: 767px) {
  .breadlist {
    height: 4.25rem;
    padding: 0 !important;
  }
}
.breadlist .inner {
  padding: 0.75rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .breadlist .inner {
    padding: 0.75rem 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .breadlist {
    padding: 0.1875rem 0.3125rem 0.125rem;
    width: 100%;
  }
}
.breadlist .list {
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .breadlist .list {
    padding: 0;
    flex-wrap: wrap;
    gap: 0.25rem 0;
  }
}
.breadlist .list .item {
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
  }
}
.breadlist .list .item:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  vertical-align: -0.1875rem;
  margin-left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../img/icon_arrow_breadlist.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item:not(:last-of-type):after {
    width: 1rem;
    height: 1rem;
  }
}
.breadlist .list .item a {
  font-weight: 700;
  font-size: 0.875rem;
  padding-top: 0.125rem;
  display: inline-block;
  color: #298BFF;
}
@media screen and (max-width: 767px) {
  .breadlist .list .item a {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
.breadlist .list .item a:hover {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------*/
.footer {
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .footer {
    height: 2.25rem;
  }
}
.footer small {
  color: #fff;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .footer small {
    font-size: 0.75rem;
  }
}

/*-----------------------------------------------------------------------------
kv
-------------------------------------------------------------------------------*/
.kv {
  height: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv {
    padding-top: 1.5rem;
  }
}
.kv .kv-img {
  position: relative;
}

/*-----------------------------------------------------------------------------
プレゼント内容
-------------------------------------------------------------------------------*/
.sec-present {
  position: relative;
  margin-top: -10rem;
}
@media screen and (max-width: 767px) {
  .sec-present {
    margin-top: 1.875rem;
  }
}
.sec-present .campaign-bg {
  background: url("../img/bg_red_pc.png") no-repeat;
  background-position: 0 3.375rem;
  background-size: 100% 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg {
    background: url("../img/bg_red.png") no-repeat;
    background-size: 100% auto;
    background-position: 0 4.875rem;
  }
}
.sec-present .campaign-bg .gift-card {
  position: relative;
  margin: 1.5625rem auto 0;
  max-width: 42.5rem;
  border-radius: 0.5rem;
  border: 0.125rem solid;
  background-color: #fff;
  border-color: #333333;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .gift-card {
    margin: 0.5rem auto 0;
    width: 100%;
  }
}
.sec-present .campaign-bg .gift-card__image-container {
  padding-top: 1rem;
  margin-top: -0.125rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .gift-card__image-container {
    margin-top: -0.0625rem;
    padding-top: 0.5rem;
  }
}
.sec-present .campaign-bg .gift-card__image {
  margin: 0 auto;
  max-width: 30.625rem;
  width: 100%;
  padding: 0 5rem;
}
.sec-present .campaign-bg .gift-card .message-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-present .campaign-bg .gift-card .message-block__icon {
  flex-shrink: 0;
  margin-bottom: -0.0625rem;
}
.sec-present .campaign-bg .gift-card .message-block__content {
  margin: -0.5rem 0 0 0.5rem;
  text-align: center;
  font-weight: 700;
}
.sec-present .campaign-bg .gift-card .icon {
  display: block;
}
.sec-present .campaign-bg .gift-card .icon--stop {
  background-image: url("../img/stop_sign_pc.png") no-repeat;
  width: 6.4375rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .gift-card .icon--stop {
    width: 3.5rem;
  }
}
.sec-present .campaign-bg .gift-card .text {
  font-size: 2rem;
  line-height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .gift-card .text {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.sec-present .campaign-bg .gift-card .text--bold {
  font-weight: 700;
}
.sec-present .campaign-bg .gift-card .text--accent {
  color: #F32D45;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .gift-card .text--accent {
    font-size: 1.25rem;
  }
}
.sec-present .campaign-bg .gift-card .price {
  color: #F32D45;
}
.sec-present .campaign-bg .gift-card .price--large {
  font-size: 3.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .gift-card .price--large {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
}
.sec-present .campaign-bg .gift-card .price-message {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sec-present .campaign-bg .gift-card .price-message {
    line-height: 3.5rem;
  }
}
.sec-present .campaign-bg .date-card {
  position: relative;
  border: 0.125rem solid #333333;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  max-width: 42.5rem;
  height: 4rem;
  margin: 2.5rem auto;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .date-card {
    height: 2.8125rem;
    margin: 1.75rem auto 0;
  }
}
.sec-present .campaign-bg .date-card__flag {
  height: 100%;
  margin-left: -0.125rem;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  background: url("../img/red_rect_pc.png") no-repeat center center;
  background-size: cover;
  width: 15rem;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .date-card__flag {
    padding: 0 0.5rem;
    background: url("../img/red_rect.png") no-repeat;
    background-size: cover;
    width: 7.125rem;
    height: 2.75rem;
    letter-spacing: -0.03125rem;
  }
}
.sec-present .campaign-bg .date-card__flag-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .date-card__flag-text {
    font-size: 0.75rem;
  }
}
.sec-present .campaign-bg .date-card__content {
  margin-left: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .date-card__content {
    margin: 0 auto;
    letter-spacing: -0.09375rem;
  }
}
.sec-present .campaign-bg .date-card .date--large {
  font-size: 2.5rem;
  letter-spacing: 0.21875rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .date-card .date--large {
    font-size: 1.5rem;
    letter-spacing: 0.125rem;
  }
}
.sec-present .campaign-bg .date-card .date--medium {
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .date-card .date--medium {
    font-size: 1.125rem;
  }
}
.sec-present .campaign-bg .date-card .date--small {
  font-size: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .date-card .date--small {
    font-size: 0.6875rem;
  }
}
.sec-present .campaign-bg .campaign {
  position: relative;
  margin-top: 1.5rem;
  text-align: center;
}
.sec-present .campaign-bg .campaign__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.sec-present .campaign-bg .campaign__text--small {
  font-size: 1.25rem;
  line-height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .campaign__text--small {
    font-size: 1rem;
    line-height: 2.375rem;
  }
}
.sec-present .campaign-bg .campaign__text--large {
  font-size: 1.75rem;
  line-height: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .campaign__text--large {
    font-size: 1.25rem;
    line-height: 3rem;
  }
}
.sec-present .campaign-bg .campaign__block {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .campaign__block {
    margin-top: 2rem;
  }
}
.sec-present .campaign-bg .invitation-content {
  position: relative;
  max-width: 64rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .invitation-content {
    margin: 2.4375rem auto 0;
  }
}
.sec-present .campaign-bg .invitation-content .invitation {
  border: 0.125rem solid #333333;
  border-radius: 0.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0.875rem 1.375rem;
  text-align: center;
}
.sec-present .campaign-bg .invitation-content .invitation__title {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .sec-present .campaign-bg .invitation-content .invitation__title {
    max-width: 56.125rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .invitation-content .invitation__title {
    max-width: 21.4375rem;
  }
}
.sec-present .campaign-bg .invitation-content .invitation__message {
  margin-top: 1rem;
  text-align: left;
  font-size: 1rem;
  line-height: 2rem;
}
@media screen and (min-width: 768px) {
  .sec-present .campaign-bg .invitation-content .invitation__message {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
.sec-present .campaign-bg .invitation-content .invitation__content {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .sec-present .campaign-bg .invitation-content .invitation__content {
    height: 21.25rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem;
  }
}
.sec-present .campaign-bg .invitation-content .invitation__hook {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-top: 1rem;
}
.sec-present .campaign-bg .invitation-content .invitation__cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.sec-present .campaign-bg .invitation-content .invitation .card {
  height: 4.625rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 30rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.sec-present .campaign-bg .invitation-content .invitation .card__label {
  font-weight: 700;
  line-height: 1.75rem;
  font-size: 1.5rem;
}
.sec-present .campaign-bg .invitation-content .invitation .card__ruby {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.sec-present .campaign-bg .invitation-content .invitation .card--primary {
  background-color: #F32D45;
  color: #fff;
  border: none;
}
.sec-present .campaign-bg .invitation-content .invitation .card--outline {
  background-color: #fff;
  color: #F32D45;
  border: 0.125rem solid #F32D45;
}
.sec-present .campaign-bg .invitation-content .invitation .card--outline .card__label {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-present .campaign-bg .invitation-content .invitation .card--outline .card__label {
    font-size: 1.25rem;
  }
}
.sec-present .campaign-bg .invitation-content .notice {
  margin-top: 0.375rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.375rem;
  font-size: 0.875rem;
}

/*-----------------------------------------------------------------------------
3歳バースデー・デビュー インビテーションの詳細はこちら
-------------------------------------------------------------------------------*/
.button-container {
  text-align: center;
  margin-top: 4rem;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .button-container {
    margin-top: 3rem;
  }
}

.button {
  display: inline-block;
  width: 100%;
  height: 5rem;
  cursor: pointer;
  position: relative;
  border: 0.125rem solid #333333;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 50rem;
  border-width: 0.1875rem;
}

.button__text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .button__icon {
    width: 1.5rem;
  }
}

.button__icon--right {
  right: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .button__icon--right {
    right: 0.1875rem;
  }
}

.button--primary {
  background-color: #F32D45;
}
.button--primary .button__text {
  color: #fff;
}

.button__text {
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .button__text {
    font-size: 1.125rem;
  }
}

.button--shadow {
  box-shadow: #333333 0 0.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .button--shadow {
    box-shadow: #333333 0 0.375rem 0 0;
  }
}
.button--shadow:hover {
  box-shadow: #333333 0 0 0 0;
}

.button--small {
  height: 2.5625rem;
  padding: 0.5rem;
  box-shadow: #333333 0 0.125rem 0 0;
  width: 10.25rem;
  border-width: 0.125rem;
}
.button--small .button__text {
  font-size: 0.875rem;
}

/*-----------------------------------------------------------------------------
キャンペーン参加条件
-------------------------------------------------------------------------------*/
.sec-campaign {
  overflow: hidden;
  position: relative;
  padding-bottom: 3rem;
}

.sec-condition {
  margin-top: 4rem;
  width: 100%;
  padding: 0 1rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-condition {
    margin-top: 0;
    padding: 0;
  }
}
.sec-condition .banner-container {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-condition .banner-container {
    margin-top: 3rem;
  }
}
.sec-condition .detail-box-container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-condition .detail-box-container {
    padding: 0 1rem;
  }
}
.sec-condition .detail-box {
  border: 0.125rem solid #333333;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  padding: 1.5rem 4rem;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sec-condition .detail-box {
    margin-top: 1rem;
    padding: 0.875rem 0.875rem;
  }
}
.sec-condition .detail-box .section:not(:last-child) {
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 767px) {
  .sec-condition .detail-box .section:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.sec-condition .detail-box .section__header {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex-wrap: nowrap;
  color: #F32D45;
}
.sec-condition .detail-box .section__title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sec-condition .detail-box .section__title {
    font-size: 1rem;
    line-height: 1rem;
  }
}
.sec-condition .detail-box .section__content {
  margin-top: 0.5rem;
}
.sec-condition .detail-box .icon {
  height: 1.5rem;
  width: 1.5rem;
}
.sec-condition .detail-box .divider {
  flex-grow: 1;
  border: none;
  background-color: #F32D45;
  height: 0.0625rem;
  margin-top: 0.375rem;
}
.sec-condition .detail-box .list__item {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .sec-condition .detail-box .list__item {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

/*-----------------------------------------------------------------------------
参加方法
-------------------------------------------------------------------------------*/
.sec-entry {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .sec-entry {
    margin-top: 3rem;
  }
}
.sec-entry .swiper-entry {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec-entry .swiper-entry {
    margin-top: 2.125rem;
    padding: 0 1rem;
  }
}
.sec-entry .swiper-entry .swiper-wrapper {
  justify-content: center;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .sec-entry .swiper-entry .swiper-wrapper {
    justify-content: start;
    margin-left: 0;
  }
}
.sec-entry .swiper-entry .swiper-slide {
  max-width: 20.5rem;
  border: 0.125rem solid #333333;
  position: relative;
  padding: 0.875rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .sec-entry .swiper-entry .swiper-slide {
    max-width: 33rem;
    width: 90%;
  }
}
.sec-entry .swiper-entry .swiper-slide:not(:last-child)::after {
  width: 1.5rem;
  height: 1rem;
  background: url("../img/connect.png") no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  display: block;
  right: -1.625rem;
  bottom: 0.625rem;
}
.sec-entry .swiper-entry .swiper-slide.step1 {
  background-color: #FF952F;
}
.sec-entry .swiper-entry .swiper-slide.step2 {
  background-color: #62D911;
}
.sec-entry .swiper-entry .swiper-slide.step3 {
  background-color: #0084B0;
}
.sec-entry .swiper-entry .swiper-slide .balloon {
  position: absolute;
  margin: auto;
  width: 11.25rem;
  top: -1.25rem;
  left: 0;
  right: 0;
}
.sec-entry .swiper-entry .swiper-slide .step-card {
  border-radius: 0.9375rem;
  background-color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.sec-entry .swiper-entry .swiper-slide .step-card__title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.625rem;
  text-align: center;
  margin-top: 0.0625rem;
  text-wrap: nowrap;
}
.sec-entry .swiper-entry .swiper-slide .step-card__image {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}
.sec-entry .swiper-entry .swiper-slide .step-card__description {
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.8125rem;
  line-height: 1.4375rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec-entry .swiper-entry .swiper-slide .step-card__description {
    min-height: 4rem;
  }
}
.sec-entry .swiper-entry .swiper-slide .wheel {
  position: absolute;
  bottom: -1.625rem;
  width: 3rem;
  height: 3rem;
}
.sec-entry .swiper-entry .swiper-slide .wheel-left {
  left: 1.25rem;
}
.sec-entry .swiper-entry .swiper-slide .wheel-right {
  right: 1.25rem;
}
.sec-entry .road {
  margin-top: -2.5625rem;
  width: 100%;
  height: 6.5rem;
  background: url("../img/bg_road.png") repeat-x;
  background-size: contain;
}
.sec-entry .swiper-button-container {
  width: 17.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 2.75rem;
}
.sec-entry .swiper-button-container .swiper-pagination {
  margin-top: 1.5rem;
}
.sec-entry .swiper-pagination {
  top: 0;
  z-index: 0;
}
.sec-entry .swiper-button-prev, .sec-entry .swiper-button-next {
  width: 4rem;
  height: 4rem;
}
.sec-entry .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 0.5rem !important;
  background-color: #fff;
  opacity: 1;
}
.sec-entry .swiper-pagination-bullet-active {
  background-color: #F32D45;
  border: 0.0625rem solid #333333;
}
.sec-entry .entry-form {
  margin: 0 auto;
  line-height: 1.375rem;
  width: 100%;
  max-width: 52rem;
}
.sec-entry .entry-form .button-container {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-entry .entry-form .button-container {
    margin-top: 2.25rem;
    margin-bottom: 1rem;
  }
}
.sec-entry .entry-form p {
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 0.875rem;
}

/*-----------------------------------------------------------------------------
3歳バースデーインビテーション
-------------------------------------------------------------------------------*/
.sec-guide {
  position: relative;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .sec-guide {
    margin-top: 0rem;
  }
}
.sec-guide .guide-bg {
  background: url("../img/bg_green_pc.png") no-repeat;
  background-position: 0 9.25rem;
  background-size: 100% 78.125rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .guide-bg {
    background: url("../img/bg_green.png") no-repeat;
    background-size: 100% 85%;
    background-position: 0 4.875rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-guide .guide-bg {
    padding-bottom: 1.875rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec-guide .guide-bg .guide-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 64rem;
  padding: 1.5rem 4rem;
  border: 0.125rem solid #333333;
  border-radius: 0.5rem;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-guide .guide-bg .guide-container {
    padding: 1.5rem 0.875rem;
  }
}
.sec-guide .guide-bg .guide-container .ttl {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sec-guide .guide-bg .guide-container .ttl {
    max-width: 56rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-guide .guide-bg .guide-container .ttl {
    max-width: 21.4375rem;
  }
}
.sec-guide .guide-bg .guide-container .banner-container {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .guide-bg .guide-container .banner-container {
    margin-top: 0.5rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.sec-guide .guide-bg .decoration-container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .sec-guide .guide-bg .decoration-container .banner-title-text-small {
    font-size: 1.75rem;
  }
}
.sec-guide .guide-bg .banner-container {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .guide-bg .banner-container {
    margin-top: 2.25rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.sec-guide .guide-bg .road {
  margin-top: -2.5rem;
  width: 100vw;
  margin-left: -1rem;
  height: 6.5rem;
  background: url("../img/bg_road.png") repeat-x;
  background-size: contain;
}
.sec-guide .guide-bg .swiper-button-container {
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sec-guide .guide-bg .swiper-button-container {
    width: 19.5rem;
  }
}
.sec-guide .guide-bg .notice {
  margin-top: 0.75rem;
  align-self: flex-start;
  font-size: 0.75rem;
}
.sec-guide .guide-bg .text {
  color: #fff;
  text-align: center;
}
.sec-guide .guide-bg .swiper-attractions {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .guide-bg .swiper-attractions {
    width: 20.5rem;
    margin-top: 0.5rem;
  }
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide {
  min-width: 19.5rem;
  border: 0.125rem solid #333333;
  padding: 1rem;
  padding-bottom: 2rem;
  border-radius: 1.25rem;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide:after {
  width: 1.5rem;
  height: 1rem;
  background: url("../img/connect.png") no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  display: block;
  right: -1.625rem;
  bottom: 0.625rem;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide .ttl {
  border-radius: 2.5rem;
  background-color: #fff;
  font-weight: 700;
  font-size: 1.1875rem;
  text-align: center;
  padding: 0.375rem 0;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide .attraction-img {
  border-radius: 0.5rem;
  height: 11.25rem;
  width: 100%;
  margin-top: 0.5rem;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide .description {
  line-height: 1.125rem;
  font-size: 0.8125rem;
  color: #fff;
  margin-top: 0.5rem;
  white-space: pre-line;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide1 {
  background-color: #F32D45;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide1 .ttl {
  color: #F32D45;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide2 {
  background-color: #FF952F;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide2 .ttl {
  color: #FF952F;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide3 {
  background-color: #52CC00;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide3 .ttl {
  color: #52CC00;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide4 {
  background-color: #0084B0;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide4 .ttl {
  color: #0084B0;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide5 {
  background-color: #A843C6;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide.slide5 .ttl {
  color: #A843C6;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide .wheel {
  position: absolute;
  bottom: -1.625rem;
  width: 3rem;
  height: 3rem;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide .wheel-left {
  left: 1.25rem;
}
.sec-guide .guide-bg .swiper-attractions .swiper-slide .wheel-right {
  right: 1.25rem;
}
.sec-guide .step-container {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sec-guide .step-container {
    margin-bottom: 2rem;
  }
}
.sec-guide .step-container:not(:first-child) {
  margin-top: 1.5rem;
}
.sec-guide .step-container .button-container {
  margin-top: 0.625rem;
}
.sec-guide .step-header {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .step-header {
    margin-top: 1rem;
  }
}
.sec-guide .step-icon-container {
  border-radius: 1rem;
  height: 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sec-guide .step-icon-container {
    border-radius: 0.625rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
.sec-guide .step-icon-image {
  height: 2.5rem;
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .step-icon-image {
    height: 1.5625rem;
    width: 1.5625rem;
  }
}
.sec-guide .step-title {
  font-size: 1.25rem;
  line-height: 1rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .step-title {
    font-size: 1rem;
  }
}
.sec-guide .step-content {
  margin-top: 0.5rem;
}
.sec-guide .step-button-wrapper {
  margin-top: 0.5rem;
  text-align: center;
}
.sec-guide .step-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 2.5rem;
  width: 15rem;
  border: 0.125rem solid #333333;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .step-button-container {
    width: 10.25rem;
  }
}
.sec-guide .step-header {
  background-color: #fff;
}
.sec-guide .step-icon-container.orange {
  background-color: #FF952F;
}
.sec-guide .step-icon-container.green {
  background-color: #52CC00;
}
.sec-guide .step-icon-container.blue {
  background-color: #0084B0;
}
.sec-guide .step-title {
  font-weight: 700;
}
.sec-guide .step-content {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .sec-guide .step-content {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.sec-guide .step-content .font-bold {
  font-weight: 700;
}

/*-----------------------------------------------------------------------------
よくあるご質問
-------------------------------------------------------------------------------*/
.sec-qa {
  background-color: #FFEA2E;
  padding-top: 3.375rem;
  padding-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec-qa {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
}
.sec-qa .banner-container {
  margin-top: 0.5rem;
}
.sec-qa .qa-container {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.sec-qa .qa {
  width: 100%;
  max-width: 50rem;
  border: 0.125rem solid #333333;
  border-radius: 0.5rem;
}
.sec-qa .qa dt {
  display: flex;
  align-items: center;
  background-color: #fff;
  gap: 0.5rem;
  padding: 0.75rem 0.375rem;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  cursor: pointer;
  position: relative;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  transition-duration: 0.2s;
  transition-delay: 0.2s;
}
.sec-qa .qa dt img {
  width: 1.5rem;
  height: 1.5rem;
}
.sec-qa .qa dt:before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 0.125rem;
  background-color: #909090;
  position: absolute;
  right: 0.4375rem;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}
.sec-qa .qa dt:after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 0.125rem;
  background-color: #909090;
  position: absolute;
  right: 0.4375rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s;
}
.sec-qa .qa dt.show::before {
  opacity: 0;
}
.sec-qa .qa dt.show::after {
  transform: translateY(-50%) rotate(180deg);
}
.sec-qa .qa dt.show {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition-delay: 0s;
}
.sec-qa .qa dt .question {
  font-weight: 700;
  font-size: 1rem;
  margin-right: 1.5rem;
  line-height: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .sec-qa .qa dt .question {
    font-size: 0.875rem;
  }
}
.sec-qa .qa dd {
  display: none;
  line-height: 1.125rem;
}
.sec-qa .qa dd.answer {
  background-color: #F8F8F8;
  font-size: 0.8125rem;
  font-weight: 500;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  padding: 0.875rem 1rem 0.5rem 1rem;
}
.sec-qa .qa dd.answer span {
  display: inline-block;
}
.sec-qa .qa dd.answer .button-container {
  margin-top: 0.5rem;
}
.sec-qa .qa dd.answer .p2 {
  margin-top: 0.5rem;
}
.sec-qa .button-container {
  margin-top: 0.5rem;
  width: fit-content;
  margin: 0 auto;
}

/*-----------------------------------------------------------------------------
応募規約
-------------------------------------------------------------------------------*/
.policy-container {
  width: 100%;
  max-width: 52rem;
  margin-top: 3rem;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .policy-container {
    margin-top: 2rem;
  }
}
.policy-header {
  height: 2.5rem;
  background-color: #F32D45;
  border: 0.125rem solid #333333;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  text-align: center;
}
.policy-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 0.375rem;
}
.policy-dots {
  display: flex;
  flex-direction: column;
}
.policy-dot {
  height: 0.25rem;
  width: 0.25rem;
  border-radius: 50%;
  display: block;
  background-color: #fff;
}
.policy-dot + .policy-dot {
  margin-top: 1rem;
}
.policy-body {
  padding: 0.625rem 0.375rem 0.5rem 0.5rem;
  background-color: #fff;
  border: 0.125rem solid #333333;
  border-top: 0;
  border-radius: 0 0 0.5rem 0.5rem;
}
.policy-content {
  padding-top: 0.375rem;
  padding-right: 0.25rem;
  padding-bottom: 0.75rem;
  padding-left: 0.5rem;
  height: 17.25rem;
  overflow-y: scroll;
  white-space: pre-line;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .policy-content {
    padding-right: 0.125rem;
  }
}
.policy-content::-webkit-scrollbar {
  width: 0.25rem;
  background-color: #F2F2F2;
  border-radius: 0.25rem;
}
.policy-content::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: #F32D45;
}

/*-----------------------------------------------------------------------------
バナーエリア
-------------------------------------------------------------------------------*/
.bnrarea {
  padding: 3rem 1.25rem 4rem;
}
@media screen and (max-width: 767px) {
  .bnrarea {
    padding: 2rem 1.75rem 3rem;
  }
}
.bnrarea .ttl {
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .ttl {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .bnrarea .ttl img {
    width: 80vw;
  }
}
.bnrarea .txt {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .txt {
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}
.bnrarea .bnrs {
  justify-content: center;
  gap: 2.875rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .bnrs {
    flex-direction: column;
    gap: 2rem;
  }
}
.bnrarea .bnrs .item a {
  display: block;
}
@media screen and (min-width: 768px) {
  .bnrarea .bnrs .item a:hover {
    opacity: 0.7;
  }
}
.bnrarea .bnrs .item a img {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .bnrs .item a img {
    width: 100%;
  }
}
.bnrarea .box .box_ttl {
  color: #333;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .box .box_ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.bnrarea .box .sns {
  justify-content: center;
}
.bnrarea .box .sns ul {
  justify-content: center;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .bnrarea .box .sns ul {
    width: 100%;
    gap: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .bnrarea .box .sns ul li {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.bnrarea .box .sns ul li a {
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .bnrarea .box .sns ul li a:hover {
    opacity: 0.7;
  }
}
.bnrarea .box .sns ul li a img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .bnrarea .box .sns ul li a img {
    width: 50px;
  }
}

/*-----------------------------------------------------------------------------
装飾
-------------------------------------------------------------------------------*/
.decoration {
  position: absolute;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  #decoration_01 {
    left: 0;
    top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #decoration_02 {
    left: 0;
    top: 16.875rem;
    width: calc(100% + 32px);
    margin-left: -1rem;
  }
}

#decoration_03 {
  top: 15.3125rem;
  padding-left: 0.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  #decoration_03 {
    left: 0;
    top: -3.25rem;
    width: 100%;
  }
}

#decoration_04 {
  top: 4rem;
}
@media screen and (max-width: 767px) {
  #decoration_04 {
    left: 0;
    top: -2rem;
    width: 100%;
  }
}

#decoration_05 {
  top: 13rem;
}

/*# sourceMappingURL=style.css.map */
