@charset "UTF-8";
:root {
  --color-blue: #0071BE;
  --color-red: #D7373D;
  --color-orange: #F7672E;
  --color-ivory: #f8f7dd;
  --sp-content-margin: 15px;
  --content-width-s: 420px;
  --content-width-m: 500px;
  --content-width-l: 600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a:hover {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
a.disable {
  pointer-events: none;
}
a.disable:hover {
  opacity: 1;
}

#wrapper {
  position: relative;
  width: 100%;
  margin: auto;
  z-index: 1;
}

.main-wrapper {
  background-color: white;
  box-shadow: 0 4px 84px rgb(216, 61, 32);
  max-width: var(--content-width-l);
  position: inherit;
  margin: auto;
  z-index: 2;
}

.bg-wrapper {
  position: fixed;
  background-color: var(--color-orange);
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
.bg-wrapper_inner {
  position: relative;
  width: 100%;
  height: 100svh;
}
.bg-wrapper_inner::before, .bg-wrapper_inner::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.bg-wrapper_inner::before {
  background-image: url(../images/havefun-title.svg);
  top: 40px;
  left: 5vw;
  width: 20svw;
  height: 100svh;
}
.bg-wrapper_inner::after {
  top: 39px;
  right: 30px;
  width: 172px;
  height: 14px;
}
@media (min-width: 1200px) and (min-height: 650px) {
  .bg-wrapper_inner::after {
    background-image: url(../images/gdo-2025-autumn.svg);
  }
}
@media screen and (min-width: 1440px) {
  .bg-wrapper_inner::after {
    background-image: url(../images/gdo-2025-autumn.svg);
  }
}
.bg-wrapper .toc-wrapper,
.bg-wrapper .autumn-nav {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc((100vw - var(--content-width-l)) / 2);
}
.bg-wrapper .toc-wrapper {
  left: 0;
  display: flex;
}
.bg-wrapper .autumn-nav {
  right: 0;
  display: flex;
}

#toc {
  color: white;
  display: none;
}
@media screen and (min-width: 1200px) {
  #toc {
    display: block;
  }
}
#toc h3 {
  font-size: 30px;
  margin: 0 0 0.75em;
}
#toc .toc-list {
  list-style: none;
  padding: 0;
}
#toc .toc-list li {
  margin-bottom: 0.5em;
}
#toc .toc-list li:nth-child(3) {
  margin-bottom: 2em;
}
#toc .toc-list li:last-child {
  margin-bottom: 0;
}
#toc .toc-list li a {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  padding-left: 28px;
}
#toc .toc-list li a.active {
  color: black;
}

.autumn-nav_content {
  display: none;
}
@media screen and (min-width: 1200px) {
  .autumn-nav_content {
    display: block;
    width: 211px;
  }
}
@media screen and (min-width: 1440px) {
  .autumn-nav_content {
    width: 316px;
  }
}
@media screen and (min-width: 1600px) {
  .autumn-nav_content {
    width: 420px;
  }
}
.autumn-nav_content .autumn-nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 1440px) {
  .autumn-nav_content .autumn-nav_list {
    justify-content: start;
    gap: 20px;
  }
}
.autumn-nav_content .autumn-nav_list li a {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.autumn-nav_content .autumn-nav_list li .img-icon {
  width: 60px;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .autumn-nav_content .autumn-nav_list li .img-icon {
    width: 90px;
  }
}
.autumn-nav_content .autumn-nav_list li .img-text {
  width: 41px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .autumn-nav_content .autumn-nav_list li .img-text {
    width: 30px;
  }
}

.header {
  background-color: var(--color-orange);
  color: white;
  padding: 10px var(--sp-content-margin) 0;
}
.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_top h1 {
  margin: 0;
  width: 128px;
  height: 52px;
}
.header_top .logo-img {
  width: 128px;
  height: 52px;
}
.header_top a {
  display: flex;
}
.header_bottom {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 1%;
}
.header_bottom .copy {
  display: flex;
  font-weight: bold;
  margin: 0;
  width: 223px;
  height: auto;
}
.header_bottom .copy img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header_bottom .copy {
    width: 357px;
  }
}
.header_bottom img.ball {
  width: 78px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header_bottom img.ball {
    width: 125px;
  }
}

.global-nav {
  box-sizing: 0 4px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  border-bottom: solid 1px var(--color-orange);
}
.global-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-weight: bold;
  text-decoration: none;
  width: 50%;
  height: 54px;
  border-right: solid 1px var(--color-orange);
}
.global-nav a::before {
  position: absolute;
  top: 40px;
  left: 50%;
  background-color: white;
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: -10px;
  content: "";
  border-radius: 100px;
}
.global-nav a::after {
  position: absolute;
  top: 44px;
  left: 50%;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: -8px;
  color: #ffffff;
  background-color: var(--color-orange);
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}
.global-nav a:last-child {
  border-right: none;
}

.btn {
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  max-width: 345px;
  width: 100%;
  height: 54px;
  margin-left: auto;
  margin-right: auto;
}
.btn.blue {
  background-color: var(--color-blue);
  color: white;
}
.btn.red {
  background-color: var(--color-red);
  color: white;
}
.btn.white {
  border: solid 1px var(--color-blue);
  color: var(--color-blue);
}
.btn.white.active {
  background: var(--color-blue);
  color: white;
}

.page-title {
  text-align: center;
  margin: 0 auto 7px;
  line-height: 1;
}
.page-title-1 {
  margin-top: 42px;
}
.page-title-2 {
  margin-bottom: -40px;
}

.page-visual {
  width: 100%;
  height: auto;
}

#coupon,
#family-coupon,
#dog-coupon {
  padding-top: 25px;
}

.coupon {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  background-image: url(../images/coupon-frame.png);
  background-size: contain;
  text-align: center;
  max-width: 345px;
  width: 100%;
  height: 375px;
  margin: 0 auto;
  padding: 25px 32px;
}
.coupon-title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  margin: 0 auto 8px;
  padding: 0 45px;
}
.coupon-title:before, .coupon-title:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: black;
}
.coupon-title:before {
  left: 0;
  transform: rotate(-120deg);
}
.coupon-title:after {
  right: 0;
  transform: rotate(-60deg);
}
.coupon p {
  margin: 0 auto 8px;
}
.coupon .decorate {
  border: solid 1px var(--color-orange);
  color: var(--color-orange);
  font-weight: bold;
}
.coupon .off {
  font-weight: bold;
  font-size: 23px;
  margin-bottom: 8px;
}
.coupon .off .large {
  font-size: 31px;
}
.coupon .period {
  background: #F4F4F4;
  text-align: left;
  padding: 11px 14px;
}
.coupon .point {
  background-color: var(--color-orange);
  border-radius: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: absolute;
  font-size: 14px;
  top: -20px;
  right: -10px;
  width: 86px;
  height: 86px;
}
.coupon .point .large {
  font-size: 20px;
  font-weight: bold;
}

.circle {
  position: relative;
}
.circle::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: white;
  text-align: center;
  /* 水平方向の中央揃え */
  line-height: 13px;
  /* 垂直方向の中央揃え */
  color: white;
  font-size: 20px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

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

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

.marker {
  background: linear-gradient(transparent 60%, var(--color-orange) 60%);
}

.default-link {
  color: var(--color-blue);
}
.default-link svg {
  width: 8px;
  height: 14px;
  margin-left: 3px;
}

.section-0,
.section-2 {
  background-color: var(--color-ivory);
}
.section-0 .section_inner,
.section-2 .section_inner {
  padding: 36px 0;
}
.section-0 .section_inner .section_content,
.section-2 .section_inner .section_content {
  padding: 0 var(--sp-content-margin);
}

.section-4 .section_inner {
  padding-top: 0;
}

.section_inner {
  padding: 40px var(--sp-content-margin);
}

.section_content p {
  line-height: 1.875;
}

.region-nav {
  margin: 0 auto 35px;
}
.region-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
}
.region-nav ul li {
  width: 31.6666666667%;
}
.region-nav ul li a {
  height: 40px;
}
.region-nav ul li a:hover {
  background: var(--color-blue);
  color: white;
  opacity: 1;
}

.region-title {
  font-size: 20px;
  margin: 0 0 16px;
}

.card {
  border: solid 1px #DEDEDF;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  margin: 0 auto 25px;
}
.card .images {
  display: flex;
  gap: 10px;
}
.card .btn {
  margin: auto;
}
.card .contents h3 {
  margin-bottom: 14px;
}
.card .contents p {
  margin-top: 0;
  line-height: 1.6;
}

.swiper.familySwiper,
.swiper.dogSwiper,
.swiper.parentSwiper {
  padding-bottom: 1.5em;
  margin-bottom: 2em;
}
.swiper.familySwiper .swiper-wrapper .swiper-slide,
.swiper.dogSwiper .swiper-wrapper .swiper-slide,
.swiper.parentSwiper .swiper-wrapper .swiper-slide {
  display: flex;
  height: auto;
}

.swiper.dogSwiper0 {
  padding-bottom: 0;
}
.swiper.dogSwiper0 .card {
  margin-bottom: 0;
}

.swiper-horizontal .swiper-button-prev,
.swiper-horizontal .swiper-button-next {
  background: var(--color-blue);
  border: solid 1px var(--color-blue);
  border-radius: 50px;
  bottom: 0;
  top: auto !important;
  width: 36px;
  height: 36px;
}
.swiper-horizontal .swiper-button-prev svg,
.swiper-horizontal .swiper-button-next svg {
  color: white;
  width: 7px;
  height: 16px;
}

.familySwiper.swiper-horizontal > .swiper-pagination-bullets,
.dogSwiper.swiper-horizontal > .swiper-pagination-bullets,
.parentSwiper.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  margin: auto;
}

.imageSwiper {
  aspect-ratio: 1/0.704;
  width: 80%;
  height: auto;
}
.imageSwiper.debut {
  position: relative;
}
.imageSwiper.debut::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../images/debut-text.png);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 184px;
  width: 70%;
  height: 23px;
  left: 5px;
  bottom: 5px;
  z-index: 2;
}
.imageSwiper .swiper-slide {
  display: flex;
  max-height: 315px;
}
.imageSwiper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbSwiper {
  width: 20%;
  height: auto;
  overflow: visible;
}
.thumbSwiper .swiper-wrapper {
  justify-content: space-between;
}
.thumbSwiper .swiper-slide {
  aspect-ratio: 1/0.704;
  border-bottom: solid 2px white;
  height: auto;
  max-height: 92px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .thumbSwiper .swiper-slide {
    border-bottom: none;
  }
}
.thumbSwiper .swiper-slide:last-child {
  border-bottom: none;
}
.thumbSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumbSwiper .swiper-slide-thumb-active img {
  opacity: 0.5;
}

/* summary */
.summary {
  position: relative;
}

.summary__lists {
  border: 1px solid #DEDEDF;
  border-radius: 4px;
  padding: 0;
  list-style: none;
}

@media (max-width: 767.9px) {
  .summary__lists {
    border: none;
    border-radius: inherit;
  }
}
.summary__lists > li {
  display: flex;
}

.summary__lists > li:not(:first-child) {
  border-top: 1px solid #DEDEDF;
}

@media (max-width: 767.9px) {
  .summary__lists > li {
    display: block;
    padding-bottom: 24px;
  }
  .summary__lists > li:not(:first-child) {
    padding-top: 24px;
  }
  .summary__lists > li:last-child {
    border-bottom: 1px solid #DEDEDF;
    padding-bottom: 0;
  }
}
@media (max-width: 767.9px) {
  .summary__lists-noLine > li {
    padding-top: 0 !important;
    border: none !important;
  }
}
.summary__label {
  display: flex;
  align-items: center;
  width: 210px;
  padding: 10px 16px;
  font-weight: bold;
  font-size: 16px;
  background-color: #F4F4F4;
}

@media (max-width: 767.9px) {
  .summary__label {
    display: block;
    width: 100%;
    padding: 0 0 10px 0;
    background-color: transparent;
  }
}
.summary__detail {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 16px;
  font-size: 16px;
  flex-direction: column;
}
.summary__detail ul,
.summary__detail ol {
  list-style: none;
  padding: 0;
}

.summary__detail .summary__txt-lists,
.summary__detail p {
  margin-top: 0;
  width: 100%;
}

.summary__detail a {
  color: #000;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .summary__detail a:hover {
    color: #0071BE;
    text-decoration: none;
  }
}
@media (max-width: 767.9px) {
  .summary__detail {
    display: block;
    padding: 0;
  }
}
.summary__txt-lists li {
  text-indent: -1em;
  padding-left: 1em;
}

.another-autumn .scroll-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: -10px;
}
.another-autumn .scroll-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  gap: 15px;
}
.another-autumn .scroll-track img {
  width: 118px;
  height: auto;
  flex-shrink: 0;
  cursor: pointer;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
  /* 画像数に応じて調整 */
}

.footer {
  position: relative;
  align-items: center;
  background: #303030;
  color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 93px 0 108px;
  z-index: 1;
}
.footer-logo {
  margin: 12px auto 27px;
}/*# sourceMappingURL=common.css.map */