/*----------
 common
 ----------*/
body {
  font-family: "Zen Maru Gothic", sans-serif;
}

/*----------
 utility 
 ----------*/

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}

/*----------
 ashiya-icepark-header 
 ----------*/
.ashiya-icepark-header {
  position: relative;
  z-index: 100;
}

.ashiya-icepark-menu-btn {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 102;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 4px solid #F882B6;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}

.ashiya-icepark-menu-btn span {
  display: block;
  width: 42px;
  height: 4px;
  background-color: #F37DB5;
  transition: transform 0.3s, opacity 0.3s;
}

.ashiya-icepark-header.is-open .ashiya-icepark-menu-btn span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}

.ashiya-icepark-header.is-open .ashiya-icepark-menu-btn span:nth-child(2) {
  opacity: 0;
}

.ashiya-icepark-header.is-open .ashiya-icepark-menu-btn span:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}

.ashiya-icepark-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  pointer-events: none;
}

.ashiya-icepark-header.is-open .ashiya-icepark-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.ashiya-icepark-menu__content {
  max-width: 100%;
  margin: 0 auto;
  padding: 56px 80px;
  border: 6px solid #F37DB5;
  border-radius: 22px;
  background-color: #fff;
}

.ashiya-icepark-menu__content a {
  display: block;
  color: #5C5C5C;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  transition: color 0.2s;
}

.ashiya-icepark-menu__content a+a {
  margin-top: 18px;
}

.ashiya-icepark-menu__content a:hover {
  color: #F37DB5;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-menu-btn {
    top: 19px;
    right: 14px;
    gap: 7px;
    width: 70px;
    height: 70px;
    border-width: 5px;
  }

  .ashiya-icepark-menu-btn span {
    width: 34px;
    height: 4px;
  }

  .ashiya-icepark-header.is-open .ashiya-icepark-menu-btn span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .ashiya-icepark-header.is-open .ashiya-icepark-menu-btn span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .ashiya-icepark-menu {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }

  .ashiya-icepark-menu__content {
    padding: 35px 50px;
    border-width: 5px;
    border-radius: 18px;
  }

  .ashiya-icepark-menu__content a+a {
    margin-top: 16px;
  }
}

/*----------
 ashiya-icepark-fv 
 ----------*/
.ashiya-icepark-fv {
  position: relative;
}

.ashiya-icepark-fv__btn {
  position: absolute;
  right: 28.83vw;
  bottom: 7.28vw;
  width: 17.444vw;
}

.ashiya-icepark-fv__btn img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-fv__btn {
    position: absolute;
    right: 14.83vw;
    bottom: 5.28vw;
    width: 70.444vw;
  }
}

/*----------
 ashiya-icepark-title 
 ----------*/
.ashiya-icepark-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ashiya-icepark-title h2 {
  color: #383838;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.ashiya-icepark-title img {
  width: 30px;
  padding-top: 8px;
}

@media screen and (max-width: 767px) {

  .ashiya-icepark-title {

    gap: 10px;
  }

  .ashiya-icepark-title h2 {
    font-size: 24px;
  }

  .ashiya-icepark-title img {
    width: 20px;
    padding-top: 4px;
  }
}


/*----------
 ashiya-icepark-desc 
 ----------*/
.ashiya-icepark-desc {
  background-image: url(../img/ashiya-icepark-desc-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 16px 120px;
}

/* .ashiya-icepark-desc__bnr {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 90px;
} */

.ashiya-icepark-desc__text {
  color: #5C5C5C;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.5;
  margin: 32px 0 20px;
}

.ashiya-icepark-desc__content {
  max-width: 920px;
  margin: 0 auto;
  background-color: #fff;
  padding: 56px;
}

.ashiya-icepark-desc__btn {
  max-width: 280px;
  margin: 0 auto;
  margin-top: 60px;
}

.ashiya-icepark-info {
  color: #5C5C5C;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.ashiya-icepark-info__item {
  display: flex;
  border-top: 1px solid #E0E0E0;
}

.ashiya-icepark-info__item:first-child {
  border-top: none;
}

.ashiya-icepark-info__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  /* padding: 34px 40px; */
  color: #DC6BA0;
  font-size: 16px;
  font-weight: 600;
}

.ashiya-icepark-info__body {
  flex: 1;
  padding: 26px 0;
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
}

.ashiya-icepark-info__datetime {
  margin-bottom: 10px;
}

.ashiya-icepark-info__schedule {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E0E0E0;
}

.ashiya-icepark-info__schedule+.ashiya-icepark-info__schedule {
  padding-top: 28px;
  padding-bottom: 0;
  border-bottom: none;
}

.ashiya-icepark-info__dates {
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.ashiya-icepark-info__period {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #F882B7;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.ashiya-icepark-info__note {
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.ashiya-icepark-map {
  margin-top: 34px;
}

.ashiya-icepark-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-desc {
    padding: 60px 16px 80px;
  }

  /* .ashiya-icepark-desc__bnr {
    margin-bottom: 50px;
  } */

  .ashiya-icepark-desc__text {
    text-align: left;
    font-size: 14px;
    line-height: 2;
    margin: 24px 0 30px;
  }

  .ashiya-icepark-desc__content {
    padding: 24px 20px;
  }

  .ashiya-icepark-desc__btn {
    max-width: 260px;
    margin: 0 auto;
    margin-top: 40px;
  }
  
  .ashiya-icepark-info {
    font-size: 14px;
  }

  .ashiya-icepark-info__item {
    display: block;
  }

  .ashiya-icepark-info__label {
    justify-content: flex-start;
    width: auto;
    padding: 20px 0 4px;
    text-align: left;
  }

  .ashiya-icepark-info__body {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.8;
  }

  .ashiya-icepark-info__schedule {
    gap: 16px;
    padding-bottom: 20px;
  }

  .ashiya-icepark-info__schedule+.ashiya-icepark-info__schedule {
    padding-top: 20px;
  }

  .ashiya-icepark-info__dates {
    font-size: 14px;
  }

  .ashiya-icepark-info__period {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .ashiya-icepark-info__note {
    font-size: 14px;
  }

  .ashiya-icepark-map {
    margin-top: 24px;
  }

  .ashiya-icepark-map iframe {
    height: 240px;
  }
}

/*----------
 ashiya-icepark-howto 
 ----------*/
.ashiya-icepark-howto {
  padding: 100px 16px;
  background-image: url(../img/ashiya-icepark-howto-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ashiya-icepark-howto__text p {
  color: #5C5C5C;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 30px 0 20px;
}

.ashiya-icepark-howto__content {
  display: flex;
  justify-content: center;
  gap: 54px;
  max-width: 1100px;
  margin: 0 auto;
}

.ashiya-icepark-howto__item {
  width: calc((100% - 108px) / 3);
  text-align: center;
}

.ashiya-icepark-howto__item:nth-child(2) {
  margin-top: 74px;
}

.ashiya-icepark-howto__item img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-howto {
    padding: 60px 16px 80px;
  }

  .ashiya-icepark-howto__text p {
    font-size: 14px;
    margin: 24px 0 32px;
  }

  .ashiya-icepark-howto__content {
    flex-direction: column;
    gap: 30px;
  }

  .ashiya-icepark-howto__item {
    width: 80%;
    margin: 0 auto;
  }

  .ashiya-icepark-howto__item:nth-child(2) {
    margin-top: 0;
  }
}


/*----------
 ashiya-icepark-guide 
 ----------*/
.ashiya-icepark-guide {
  padding: 0 16px 131px;
  background-image: url(../img/ashiya-icepark-guide-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ashiya-icepark-guide__slider {
  overflow: hidden;
  margin: 0 -16px 100px;
}

.ashiya-icepark-guide__slider-track {
  display: flex;
  width: max-content;
  animation: ashiya-icepark-guide-slider 36s linear infinite;
  will-change: transform;
}

.ashiya-icepark-guide__slider-group {
  display: flex;
}

.ashiya-icepark-guide__slider-item {
  flex-shrink: 0;
  width: 240px;
  margin-right: 10px;
}

.ashiya-icepark-guide__slider-item img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

@keyframes ashiya-icepark-guide-slider {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.ashiya-icepark-guide__text p {
  color: #383838;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 30px 0 45px;
}

.ashiya-icepark-guide__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 55px 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.ashiya-icepark-guide__item {
  grid-column: span 2;
}

.ashiya-icepark-guide__item:nth-child(2) {
  margin-top: 30px;
}

.ashiya-icepark-guide__item:nth-child(3) {
  margin-top: 60px;
}

.ashiya-icepark-guide__item:nth-child(4) {
  grid-column: 2 / span 2;
}

.ashiya-icepark-guide__item:nth-child(5) {
  grid-column: 4 / span 2;
  margin-top: 30px;
}

.ashiya-icepark-guide__item img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-guide {
    padding: 0 16px 80px;
  }

  .ashiya-icepark-guide__slider {
    margin: 0 -16px 60px;
  }

  .ashiya-icepark-guide__slider-item {
    width: 160px;
    margin-right: 8px;
  }

  .ashiya-icepark-guide__slider-item img {
    height: 100px;
  }

  .ashiya-icepark-guide__text p {
    font-size: 14px;
    line-height: 1.8;
    margin: 24px 0 32px;
    text-align: left;
  }

  .ashiya-icepark-guide__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 340px;
    width: 90%;
    margin: 0 auto;
  }

  .ashiya-icepark-guide__item,
  .ashiya-icepark-guide__item:nth-child(4),
  .ashiya-icepark-guide__item:nth-child(5) {
    grid-column: auto;
  }

  .ashiya-icepark-guide__item:nth-child(2),
  .ashiya-icepark-guide__item:nth-child(3),
  .ashiya-icepark-guide__item:nth-child(5) {
    margin-top: 0;
  }
}

/*----------
 ashiya-icepark-intro 
 ----------*/
.ashiya-icepark-intro {
  padding: 92px 16px 110px;
  background-color: #FDFAE8;
}

.ashiya-icepark-intro__scroll {
  box-sizing: border-box;
  max-width: 1000px;
  height: 800px;
  margin: 48px auto 0;
  padding: 42px 16px;
  border: 3px solid #F5F1D9;
  border-radius: 8px;
}

.ashiya-icepark-intro__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 16px;
  height: 100%;
  padding-right: 20px;
  overflow-y: auto;
}

.ashiya-icepark-intro__content::-webkit-scrollbar {
  width: 10px;
}

.ashiya-icepark-intro__content::-webkit-scrollbar-track {
  background-color: #EEE;
}

.ashiya-icepark-intro__content::-webkit-scrollbar-thumb {
  background-color: #F882B6;
}

.ashiya-icepark-intro__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ashiya-icepark-intro__item img {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

.ashiya-icepark-intro__body h3 {
  color: #383838;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.ashiya-icepark-intro__body p {
  color: #383838;
  font-size: 14px;
  font-weight: 700;
}

.ashiya-icepark-intro__tags {
  display: flex;
  gap: 4px;
  margin-top: 3px;
}

.ashiya-icepark-intro__tags span {
  display: inline-block;
  background-color: #fff;
  padding: 0 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.ashiya-icepark-intro__tag-area,
.ashiya-icepark-intro__tag-prefecture {
  color: #6DC8EB;
}

.ashiya-icepark-intro__tag-date {
  color: #EA951E;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-intro {
    padding: 60px 16px 80px;
  }

  .ashiya-icepark-intro__scroll {
    width: 100%;
    height: 620px;
    margin-top: 32px;
    padding: 24px 12px 24px 16px;
    border-width: 2px;
  }

  .ashiya-icepark-intro__content {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-right: 12px;
  }

  .ashiya-icepark-intro__content::-webkit-scrollbar {
    width: 8px;
  }

  .ashiya-icepark-intro__item {
    gap: 12px;
  }

  .ashiya-icepark-intro__item img {
    width: 96px;
    height: 96px;
  }

  .ashiya-icepark-intro__body h3 {
    font-size: 14px;
  }

  .ashiya-icepark-intro__body p {
    font-size: 13px;
  }

  .ashiya-icepark-intro__tags {
    flex-wrap: wrap;
  }

  .ashiya-icepark-intro__tags span {
    font-size: 12px;
  }
}

/*----------
 ashiya-icepark-icerace-bnr 
 ----------*/
.ashiya-icepark-icerace-bnr {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-icerace-bnr {
    margin-top: 40px;
  }
}

/*----------
 ashiya-icepark-icerace-youtube 
 ----------*/
.ashiya-icepark-icerace-youtube {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
}

.ashiya-icepark-icerace-youtube iframe {
  width: 100%;
  height: 450px;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-icerace-youtube {
    margin-top: 40px;
  }

  .ashiya-icepark-icerace-youtube iframe {
    width: 100%;
    height: 56.25vw;
  }
}

/*----------
 ashiya-icepark-calendar 
 ----------*/
.ashiya-icepark-calendar {
  padding: 80px 16px;
  background-image: url(../img/ashiya-icepark-calendar-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ashiya-icepark-calendar__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.ashiya-icepark-calendar__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
  margin-bottom: 30px;
}

.ashiya-icepark-calendar__text p {
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-calendar {
    padding: 60px 16px;
  }

  .ashiya-icepark-calendar__content {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 24px;
  }

  .ashiya-icepark-calendar__text p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/*----------
 ashiya-icepark-related 
 ----------*/
.ashiya-icepark-related {
  padding: 90px 16px 70px;
  background-color: #EEFFFF;
}

.ashiya-icepark-related__label {
  max-width: 1000px;
  margin: 48px auto 20px;
}

.ashiya-icepark-related__img {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 44px;
}

.ashiya-icepark-related__img p {
  margin-top: 16px;
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-related {
    padding: 60px 16px;
  }

  .ashiya-icepark-related__label {
    margin: 32px auto 16px;
  }

  .ashiya-icepark-related__img {
    margin-top: 0;
  }

  .ashiya-icepark-related__img p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.8;
  }
}

/*----------
 ashiya-icepark-notes 
 ----------*/
.ashiya-icepark-notes {
  padding: 90px 16px 110px;
  background-color: #A7E7F3;
}

.ashiya-icepark-notes__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 130px;
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
}

.ashiya-icepark-notes__list {
  margin-top: 20px;
  display: inline-block;
}

.ashiya-icepark-notes__list li {
  padding-left: 1em;
  text-indent: -1em;
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.ashiya-icepark-notes__list li+li {
  margin-top: 4px;
}

.ashiya-icepark-notes__list li::before {
  content: "・";
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-notes {
    padding: 60px 16px;
  }

  .ashiya-icepark-notes__inner {
    padding: 36px 20px 40px;
  }

  .ashiya-icepark-notes__list {
    margin-top: 28px;
  }

  .ashiya-icepark-notes__list li {
    font-size: 14px;
    line-height: 1.8;
  }
}

/*----------
 ashiya-icepark-faq 
 ----------*/
.ashiya-icepark-faq {
  padding: 80px 16px 100px;
  background-color: #FDFAE8;
}

.ashiya-icepark-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ashiya-icepark-faq__list {
  margin-top: 36px;
}

.ashiya-icepark-faq__item {
  overflow: hidden;

}

.ashiya-icepark-faq__item+.ashiya-icepark-faq__item {
  margin-top: 24px;
}

.ashiya-icepark-faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 30px;
  border: 0;
  background-color: #fff;
  color: #383838;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #F5F1D9;
  background: #FFF;
}

.ashiya-icepark-faq__mark,
.ashiya-icepark-faq__answer-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.ashiya-icepark-faq__mark {
  margin-right: 18px;
  background-color: #EA951E;
  color: #fff;
}

.ashiya-icepark-faq__question-text {
  flex: 1;
}

.ashiya-icepark-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 20px;
}

.ashiya-icepark-faq__icon::before,
.ashiya-icepark-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  background-color: #EA951E;
  transform: translate(-50%, -50%);
  border-radius: 6px;
}

.ashiya-icepark-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ashiya-icepark-faq__item.is-open .ashiya-icepark-faq__icon::after {
  opacity: 0;
}

.ashiya-icepark-faq__answer {
  display: none;
  border-radius: 8px;
  border: 1px solid #F5F1D9;
  background: #F5F1D9;
}

.ashiya-icepark-faq__item.is-open .ashiya-icepark-faq__answer {
  display: block;
}

.ashiya-icepark-faq__answer-inner {
  display: flex;
  align-items: flex-start;
  padding: 20px 28px 24px;
}

.ashiya-icepark-faq__answer-mark {
  margin-right: 18px;
  background-color: #fff;
  color: #EA951E;
}

.ashiya-icepark-faq__answer p {
  color: #5C5C5C;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-faq {
    padding: 60px 16px 70px;
  }

  .ashiya-icepark-faq__list {
    margin-top: 32px;
  }

  .ashiya-icepark-faq__item+.ashiya-icepark-faq__item {
    margin-top: 16px;
  }

  .ashiya-icepark-faq__question {
    padding: 16px;
    font-size: 14px;
  }

  .ashiya-icepark-faq__mark,
  .ashiya-icepark-faq__answer-mark {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .ashiya-icepark-faq__mark,
  .ashiya-icepark-faq__answer-mark {
    margin-right: 12px;
  }

  .ashiya-icepark-faq__answer-inner {
    padding: 16px;
  }

  .ashiya-icepark-faq__answer p {
    font-size: 14px;
  }
}

/*----------
 ashiya-icepark-cta 
 ----------*/
.ashiya-icepark-cta {
  padding: 100px 16px;
  background-image: url(../img/ashiya-icepark-cta-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ashiya-icepark-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ashiya-icepark-cta h2 {
  color: #fff;
  line-height: 1.6;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.ashiya-icepark-cta p {
  margin-top: 48px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.ashiya-icepark-cta__btns {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 48px;
}

.ashiya-icepark-cta__btn {
  display: block;
  width: 280px;
}

.ashiya-icepark-cta__btn img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-cta {
    padding: 60px 16px;
    border-bottom-width: 12px;
  }

  .ashiya-icepark-cta h2 {
    font-size: 24px;
  }

  .ashiya-icepark-cta p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }

  .ashiya-icepark-cta__btns {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
  }

  .ashiya-icepark-cta__btn {
    width: 220px;
  }
}

/*----------
 ashiya-icepark-footer 
 ----------*/
.ashiya-icepark-footer {
  padding: 34px 16px 20px;
  background-color: #EA951E;
  color: #fff;
}

.ashiya-icepark-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.ashiya-icepark-footer__content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 28px;
  border-bottom: 2px solid #E58F16;
}

.ashiya-icepark-footer__info {
  flex: 1;
}

.ashiya-icepark-footer__info h2 {
  font-size: 18px;
  font-weight: 700;
}

.ashiya-icepark-footer__info p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.ashiya-icepark-footer__detail {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 6px 48px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.ashiya-icepark-footer__detail div {
  display: flex;
}

.ashiya-icepark-footer__bnr {
  max-width: 460px;
}

.ashiya-icepark-footer__bnr img {
  display: block;
  width: 100%;
  max-width: 320px;
}

.ashiya-icepark-footer__notes {
  margin-top: 10px;
}

.ashiya-icepark-footer__notes p {
  padding-left: 1em;
  text-indent: -1em;
  color: #FFF1DE;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.ashiya-icepark-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 26px;
}

.ashiya-icepark-footer__nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ashiya-icepark-footer__nav a+a::before {
  content: "|";
  margin: 0 8px;
}

.ashiya-icepark-footer__copy {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-footer {
    padding: 36px 16px 24px;
  }

  .ashiya-icepark-footer__content {
    display: block;
  }

  .ashiya-icepark-footer__info h2 {
    font-size: 18px;
  }

  .ashiya-icepark-footer__detail {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ashiya-icepark-footer__bnr {
    width: 100%;
    margin-top: 28px;
  }

  .ashiya-icepark-footer__nav {
    justify-content: flex-start;
    row-gap: 8px;
  }

  .ashiya-icepark-footer__nav a {
    font-size: 12px;
  }
}

/*----------
 ashiya-icepark-pagetop 
 ----------*/
.ashiya-icepark-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  width: 100px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ashiya-icepark-pagetop.is-stop {
  position: absolute;
  bottom: auto;
}

.ashiya-icepark-pagetop img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ashiya-icepark-pagetop {
    right: 12px;
    bottom: 12px;
    width: 60px;
  }
}