/* =========================================================
 CSS Custom Properties
========================================================= */
:root {
  --diagonal-coef: calc(75 / 1366 * 100vw);
  --common-bg-color: #FEF3CD;
  --common-bg-color2: #FDC600;
  --color1: #EA5506;
  --color2: #00661B;
  --color3: #533327;
  --device-base-width: 1600;
  --common-section-width: 1050px;
  --common-padding-block: 90px;
  --common-text-size: 24px;
  --common-text-size-small: 20px;
  --common-line-height: 180%;
}
@media screen and (max-width: 767px) {
  :root {
    --diagonal-coef: calc(20 / 375 * 100vw);
    --device-base-width: 375;
    --common-section-width: 600px;
    --common-padding-block: 40px;
    --common-text-size: 18px;
    --common-text-size-small: 16px;
  }
}
@media screen and (max-width: 640px) {
  :root {
    --common-section-width: 310px;
  }
}

/* =========================================================
 出現アニメーション 
========================================================= */
.fadein {
  opacity: 0;
  transition: opacity .5s cubic-bezier(0.5, 0, 0, 1.42);
}
.fadein.scrollin {
  opacity: 1;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein_y {
  opacity: 0;
  transform: translateY(50px);
  transition: transform .5s cubic-bezier(0.5, 0, 0, 1.42), opacity .5s cubic-bezier(0.5, 0, 0, 1.42);
}
.fadein_y.scrollin {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadein_y {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_scale_up {
  opacity: 0;
  transform: scale(0.85);
  transition: transform .75s cubic-bezier(0.5, 0, 0, 1.42), opacity .75s cubic-bezier(0.5, 0, 0, 1.42);
}
.fade_scale_up.scrollin {
  opacity: 1;
  transform: scale(1);
}
@keyframes fade_scale_up {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fade_scale_down {
  opacity: 0;
  transform: scale(1.4);
  transition: transform .5s cubic-bezier(0.5, 0, 0, 1.42), opacity .5s cubic-bezier(0.5, 0, 0, 1.42);
}
.fade_scale_down.scrollin {
  opacity: 1;
  transform: scale(1);
}
@keyframes fade_scale_down {
  0% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fuwatto1 {
  opacity: 0;
  transform: translate3d(0, 20%, 0);
  filter: blur(10px);
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.fuwatto1.scrollin {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
@keyframes fuwatto1 {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
.fuwatto2 {
  opacity: 0;
  transform: translate3d(0, 20%, 0);
  filter: blur(10px);
  transition: all 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.fuwatto2.scrollin {
  opacity: 0.8;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
@keyframes fuwatto2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 0.8;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

/* =========================================================
 keyframes アニメーション 
========================================================= */
@keyframes expansion {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes fluffy1 {
  0% {
    transform:translateY(0);
  }
  50% {
    transform:translateY(-15px);
  }
  100% {
    transform:translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform:translateY(0);
  }
  25% {
    transform:translateY(-5px);
  }
  50% {
    transform:translateY(0);
  }
}
@keyframes fluffy3 {
  0% {
    transform:translateY(0);
  }
  50% {
    transform:translateY(-5px);
  }
  100% {
    transform:translateY(0);
  }
}
@keyframes swaying1 {
  0% {
    transform:translateX(0);
  }
  50% {
    transform:translateX(-10px);
  }
  100% {
    transform:translateX(0);
  }
}
@keyframes katakata {
  0%,
  10%,
  21%,
  30%,
  41%,
  to {
    -webkit-transform: translateY(1px);
    transform: translateY(2px);
  }
  11%,
  20%,
  31%,
  40% {
    -webkit-transform: translateY(-1px);
    transform: translateY(-2px);
  }
}
@keyframes katakata_rotate2 {
  0% {
    transform: rotate(0deg);
  }
  2.5% {
    transform: rotate(3deg);
  }
  5.0% {
    transform: rotate(3deg);
  }
  7.5% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(0deg);
  }
  12.5% {
    transform: rotate(3deg);
  }
  15% {
    transform: rotate(3deg);
  }
  17.5% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  52.5% {
    transform: rotate(-3deg);
  }
  55% {
    transform: rotate(-3deg);
  }
  57.5% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(0deg);
  }
  62.5% {
    transform: rotate(-3deg);
  }
  65% {
    transform: rotate(-3deg);
  }
  67.5% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translate3d(0,100px,0) scaleY(1);
    animation-timing-function: cubic-bezier(.210,.60,.350,1);
  }
  40% {
    opacity: 1;
    transform: translate3d(0,-30px,0);
  }
  75% {
    transform: translate3d(0,15px,0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0,0,0);
    animation-timing-function: cubic-bezier(.210,.60,.350,1);
  }
}
@media screen and (max-width: 767px) {
  @keyframes bounceInUp {
    0% {
      opacity: 0;
      transform: translate3d(0,50px,0) scaleY(1);
      animation-timing-function: cubic-bezier(.210,.60,.350,1);
    }
    40% {
      opacity: 1;
      transform: translate3d(0,-20px,0);
    }
    75% {
      transform: translate3d(0,10px,0);
    }
    100% {
      opacity: 1;
      transform: translate3d(0,0,0);
      animation-timing-function: cubic-bezier(.210,.60,.350,1);
    }
  }
}
@keyframes bounceInUp2 {
  0% {
    opacity: 0;
    transform: translate3d(0,50px,0) scaleY(1);
    animation-timing-function: cubic-bezier(.210,.60,.350,1);
  }
  40% {
    opacity: 1;
    transform: translate3d(0,-14px,0);
  }
  75% {
    transform: translate3d(0,7px,0);
    animation-timing-function: cubic-bezier(.210,.60,.350,1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0,0,0);
    animation-timing-function: cubic-bezier(.210,.60,.350,1);
  }
}
@media screen and (max-width: 767px) {
  @keyframes bounceInUp2 {
    0% {
      opacity: 0;
      transform: translate3d(0,25px,0) scaleY(1);
      animation-timing-function: cubic-bezier(.210,.60,.350,1);
    }
    40% {
      opacity: 1;
      transform: translate3d(0,-10px,0);
    }
    75% {
      transform: translate3d(0,5px,0);
      animation-timing-function: cubic-bezier(.210,.60,.350,1);
    }
    100% {
      opacity: 1;
      transform: translate3d(0,0,0);
      animation-timing-function: cubic-bezier(.210,.60,.350,1);
    }
  }
}
@keyframes swaying {
  0 {
    transform:rotate(0)
  }
  2.5% {
    transform:rotate(-6deg)
  }
  5% {
    transform:rotate(7deg)
  }
  8.75% {
    transform:rotate(-3deg)
  }
  12.5% {
    transform:rotate(3deg)
  }
  16.25% {
    transform:rotate(-1deg)
  }
  20% {
    transform:rotate(1deg)
  }
  23.75% {
    transform:rotate(0)
  }
  100% {
    transform:rotate(0)
  }
}
@keyframes yuge_up {
  0% {
    opacity: 0;
    transform: translate3d(0,20%,0);
    filter: blur(10px);
  }
  35% {
    opacity: 0.8;
    transform: translate3d(0,0,0);
    filter: blur(0);
  }
  50% {
    opacity: 0.8;
    transform: translate3d(0,0,0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0,-15%,0);
    filter: blur(10px);
  }
}

/* =========================================================
 レスポンシブパーツ 
========================================================= */
.pc_inline {
  display: inline;
}
.pc_inline_block {
  display: inline-block;
}
.sp,
.sp_inline,
.sp_inline_block {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc,
  .pc_inline,
  .pc_inline_block {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline;
  }
  .sp_inline_block {
    display: inline-block;
  }
}

/* =========================================================
 CP47-wrap
========================================================= */
.area-contents {
  padding: 0;
}
.CP47-wrap {
  position: relative;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  background: var(--common-bg-color) url(../images/common_bg_base.webp);
  overflow: clip;
}
.CP47-wrap *,
.CP47-wrap *::before,
.CP47-wrap *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
}
.CP47-wrap img,
.CP47-wrap svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.CP47-wrap ul,
.CP47-wrap li {
  list-style: none;
  margin: 0;
  padding: 0
}
.CP47-wrap .common_section {
  position: relative;
  padding-block: var(--common-padding-block);
}
.CP47-wrap .common_section .common_inner {
  margin-inline: auto;
  width: var(--common-section-width);
}
.CP47-wrap a.common_btn {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: var(--common-text-size-small);
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 0 #372119;
  background-color: var(--color1);
  overflow: hidden;
  transition: all .05s ease-out;
}
@media (hover: hover) {
  .CP47-wrap  a:hover {
    box-shadow: 0 0 0 #372119;
    transform: translateY(4px);
  }
}
@media screen and (max-width: 767px) {
  .CP47-wrap {
    background: var(--common-bg-color) url(../images/common_bg_base_sp.webp);
    background-size: 375px auto;
  }
  .CP47-wrap a.common_btn {
    border-radius: 10px;
  }
}

/* =========================================================
 CP47-mv 
========================================================= */
.CP47_mv {
  position: relative;
  background: var(--common-bg-color2) url(../images/common_bg.webp);
  overflow: clip;
}
.CP47_mv img {
  width: 100%;
  max-width: inherit;
}
.CP47_mv_inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 670;
  container-type: inline-size;
}
.CP47_mv_title {
  position: absolute;
  top: calc(80 / var(--device-base-width) * 100cqi);
  left: calc(90 / var(--device-base-width) * 100cqi);
  width: calc(660 / var(--device-base-width) * 100cqi);
  aspect-ratio: 660 / 473;
  container-type: inline-size;
  --CP47-mv_title: 660;
}
.CP47_mv_heading {
  position: relative;
  width: 100%;
  height: 100%;
}
.CP47_mv_heading .fukidashi {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(373 / var(--CP47-mv_title) * 100cqi);
}
.CP47_mv_heading .fukidashi .fukidashi_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
body.content_loaded .CP47_mv_heading .fukidashi .fukidashi_bg {
  animation: fuwatto1 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards 0s;
}
body.content_loaded .CP47_mv_heading .fukidashi .fukidashi_bg img {
  animation: 3s infinite fluffy2 3.0s;
}
.CP47_mv_heading .fukidashi .fukidashi_txt {
  position: absolute;
  top: calc(40 / var(--CP47-mv_title) * 100cqi);
  left: calc(27 / var(--CP47-mv_title) * 100cqi);
  width: calc(318 / var(--CP47-mv_title) * 100cqi);
  opacity: 0;
}
body.content_loaded .CP47_mv_heading .fukidashi .fukidashi_txt {
  animation: bounceInUp2 0.75s forwards 0.25s;
}
body.content_loaded .CP47_mv_heading .fukidashi .fukidashi_txt img {
  animation: 3s infinite fluffy2 3.2s;
}
  /*
body.loaded .CP47_mv_heading .fukidashi {
  animation: fuwatto1 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards 0s;
}
body.loaded .CP47_mv_heading .fukidashi img {
  animation: 1.6s infinite katakata 2.0s;
}
  */
.CP47_mv_heading .loves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(245 / var(--CP47-mv_title) * 100cqi);
  opacity: 0;
}
body.content_loaded .CP47_mv_heading .loves {
  animation: fade_scale_up 1.0s forwards 0.5s;
}
.CP47_mv_heading .loves img {

}
body.content_loaded .CP47_mv_heading .loves img {
  animation: fluffy1 2.5s ease-in-out 1.5s infinite;
}
.CP47_mv_heading .shabuyo {
  position: absolute;
  top: calc(160 / var(--CP47-mv_title) * 100cqi);
  right: 0;
  width: calc(413 / var(--CP47-mv_title) * 100cqi);
  opacity: 0;
}
body.content_loaded .CP47_mv_heading .shabuyo {
  animation: bounceInUp 1s forwards 0.75s;
}
.CP47_mv_heading .fs {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(407 / var(--CP47-mv_title) * 100cqi);
  opacity: 0;
}
body.content_loaded .CP47_mv_heading .fs {
  animation: bounceInUp 1s forwards 1.0s;
}
.CP47_mv_map {
  position: absolute;
  top: calc(60 / var(--device-base-width) * 100cqi);
  right: calc(91 / var(--device-base-width) * 100cqi);
  width: calc(660 / var(--device-base-width) * 100cqi);
  aspect-ratio: 650 / 502;
  container-type: inline-size;
  --CP47-mv_map: 650;
}
.CP47_mv_map_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.CP47_mv_map_inner .base_map_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.CP47_mv_map_inner .wave_image.wave1 {
  position: absolute;
  top: calc(43 / var(--CP47-mv_map) * 100cqi);
  left: calc(78 / var(--CP47-mv_map) * 100cqi);
  width: calc(84 / var(--CP47-mv_map) * 100cqi);
}
.CP47_mv_map_inner .wave_image.wave1 img {
  animation: fluffy3 3.5s ease-in-out infinite;
}
.CP47_mv_map_inner .wave_image.wave2 {
  position: absolute;
  top: calc(107 / var(--CP47-mv_map) * 100cqi);
  left: calc(187 / var(--CP47-mv_map) * 100cqi);
  width: calc(56 / var(--CP47-mv_map) * 100cqi);
  animation: fluffy3 2.5s ease-in-out infinite;
}
.CP47_mv_map_inner .wave_image.wave3 {
  position: absolute;
  top: calc(305 / var(--CP47-mv_map) * 100cqi);
  right: calc(43 / var(--CP47-mv_map) * 100cqi);
  width: calc(56 / var(--CP47-mv_map) * 100cqi);
  animation: fluffy3 2.75s ease-in-out infinite;
}
.CP47_mv_map_inner .wave_image.wave4 {
  position: absolute;
  bottom: calc(-34 / var(--CP47-mv_map) * 100cqi);
  right: calc(116 / var(--CP47-mv_map) * 100cqi);
  width: calc(84 / var(--CP47-mv_map) * 100cqi);
  animation: fluffy3 3.75s ease-in-out infinite;
}
.CP47_mv_map_inner .fukidashi {
  position: absolute;
  padding: 0.75em 0.65em;
  color: #fff;
  font-size: calc(20 / var(--CP47-mv_map) * 100cqi);
  font-weight: 700;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30px) scale(0.75);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.CP47_mv_map_inner .fukidashi::after {
  content: '';
  position: absolute;
  width: calc(40 / var(--CP47-mv_map) * 100cqi);
  aspect-ratio: 40 / 11;
}
.CP47_mv_map_inner .fukidashi.f1 {
  top: calc(12 / var(--CP47-mv_map) * 100cqi);
  right: calc(105 / var(--CP47-mv_map) * 100cqi);
  background: var(--color1);
}
.CP47_mv_map_inner .fukidashi.f2 {
  top: calc(200 / var(--CP47-mv_map) * 100cqi);
  right: calc(156 / var(--CP47-mv_map) * 100cqi);
  background: var(--color2);
}
.CP47_mv_map_inner .fukidashi.f3 {
  top: calc(429 / var(--CP47-mv_map) * 100cqi);
  right: calc(55 / var(--CP47-mv_map) * 100cqi);
  background: #D9333F;
  transform: translateY(-30px) scale(0.75);
}
.CP47_mv_map_inner .fukidashi.f4 {
  top: calc(450 / var(--CP47-mv_map) * 100cqi);
  right: calc(286 / var(--CP47-mv_map) * 100cqi);
  background: #19448E;
  transform: translateY(-30px) scale(0.75);
}
.CP47_mv_map_inner .fukidashi.f5 {
  top: calc(280 / var(--CP47-mv_map) * 100cqi);
  right: calc(345 / var(--CP47-mv_map) * 100cqi);
  background: #C85179;
}
.CP47_mv_map_inner .fukidashi.f6 {
  top: calc(344 / var(--CP47-mv_map) * 100cqi);
  right: calc(465 / var(--CP47-mv_map) * 100cqi);
  background: #00A497;
}
.CP47_mv_map_inner .fukidashi.show {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}
.CP47_mv_map_inner .fukidashi.show2 {

}
.CP47_mv_map_inner .fukidashi.f1::after {
  left: 65%;
  bottom: 1px;
  transform: translateX(-50%) translateY(100%);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iI2VmNTUwNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiNlZjU1MDYiLz4KPC9zdmc+');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0;
}
.CP47_mv_map_inner .fukidashi.f2::after {
  left: 75%;
  bottom: 1px;
  transform: translateX(-50%) translateY(100%);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iIzAwNjYxYiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiMwMDY2MWIiLz4KPC9zdmc+');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0;
}
.CP47_mv_map_inner .fukidashi.f3::after {
  left: 35%;
  top: 1px;
  transform: translateX(-50%) translateY(-100%) rotate(180deg);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iI2Q5MzMzZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiNkOTMzM2YiLz4KPC9zdmc+');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.CP47_mv_map_inner .fukidashi.f4::after {
  left: 45%;
  top: 1px;
  transform: translateX(-50%) translateY(-100%) rotate(180deg);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iIzE5NDQ4ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiMxOTQ0OGUiLz4KPC9zdmc+');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.CP47_mv_map_inner .fukidashi.f5::after {
  left: 50%;
  bottom: 1px;
  transform: translateX(-50%) translateY(100%);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iI2M4NTE3OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiNjODUxNzkiLz4KPC9zdmc+');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0;
}
.CP47_mv_map_inner .fukidashi.f6::after {
  left: 55%;
  bottom: 1px;
  transform: translateX(-50%) translateY(100%);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iIzAwYTQ5YSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiMwMGE0OWEiLz4KPC9zdmc+');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0;
}
@media screen and (max-width: 767px) {
  .CP47_mv {
    background: var(--common-bg-color2) url(../images/common_bg_sp.webp);
    background-size: 375px auto;
  }
  .CP47_mv_inner {
    aspect-ratio: 375 / 614;
    container-type: inline-size;
  }
  .CP47_mv_title {
    top: calc(347 / var(--device-base-width) * 100cqi);
    left: calc(25 / var(--device-base-width) * 100cqi);
    width: calc(320 / var(--device-base-width) * 100cqi);
    aspect-ratio: 320 / 230;
    container-type: inline-size;
    --CP47-mv_title: 320;
  }
  .CP47_mv_heading .fukidashi {
    width: calc(180 / var(--CP47-mv_title) * 100cqi);
  }
  .CP47_mv_heading .fukidashi .fukidashi_txt {
    top: calc(14 / var(--CP47-mv_title) * 100cqi);
    left: calc(12 / var(--CP47-mv_title) * 100cqi);
    width: calc(154 / var(--CP47-mv_title) * 100cqi);
  }
  .CP47_mv_heading .loves {
    width: calc(119 / var(--CP47-mv_title) * 100cqi);
  }
  .CP47_mv_heading .shabuyo {
    top: calc(77 / var(--CP47-mv_title) * 100cqi);
    width: calc(200 / var(--CP47-mv_title) * 100cqi);
  }
  .CP47_mv_heading .fs {
    width: calc(197 / var(--CP47-mv_title) * 100cqi);
  }
  .CP47_mv_map {
    top: calc(52 / var(--device-base-width) * 100cqi);
    right: calc(28 / var(--device-base-width) * 100cqi);
    width: calc(320 / var(--device-base-width) * 100cqi);
    aspect-ratio: 320 / 295;
    container-type: inline-size;
    --CP47-mv_map: 320;
  }
  .CP47_mv_map_inner .wave_image.wave1 {
    top: calc(6 / var(--CP47-mv_map) * 100cqi);
    left: calc(17 / var(--CP47-mv_map) * 100cqi);
    width: calc(48 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .wave_image.wave2 {
    position: absolute;
    top: calc(42 / var(--CP47-mv_map) * 100cqi);
    left: calc(81 / var(--CP47-mv_map) * 100cqi);
    width: calc(32 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .wave_image.wave3 {
    position: absolute;
    top: calc(156 / var(--CP47-mv_map) * 100cqi);
    right: calc(3 / var(--CP47-mv_map) * 100cqi);
    width: calc(32 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .wave_image.wave4 {
    position: absolute;
    bottom: calc(0 / var(--CP47-mv_map) * 100cqi);
    right: calc(48 / var(--CP47-mv_map) * 100cqi);
    width: calc(48 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .fukidashi {
    padding: 0.65em 0.5em 0.65em 0.6em;
    font-size: calc(14 / var(--CP47-mv_map) * 100cqi);
    border-radius: 9px;
  }
  .CP47_mv_map_inner .fukidashi::after {
    width: calc(30 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .fukidashi.f1 {
    top: calc(-20 / var(--CP47-mv_map) * 100cqi);
    right: calc(20 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .fukidashi.f2 {
    top: calc(83 / var(--CP47-mv_map) * 100cqi);
    right: calc(67 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .fukidashi.f3 {
    top: calc(191 / var(--CP47-mv_map) * 100cqi);
    right: calc(2 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .fukidashi.f3::after {
    left: 30%;
  }
  .CP47_mv_map_inner .fukidashi.f4 {
    top: calc(229 / var(--CP47-mv_map) * 100cqi);
    right: calc(111 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .fukidashi.f5 {
    top: calc(127 / var(--CP47-mv_map) * 100cqi);
    right: calc(149 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .fukidashi.f6 {
    top: calc(172 / var(--CP47-mv_map) * 100cqi);
    right: auto;
    left: calc(-20 / var(--CP47-mv_map) * 100cqi);
  }
  .CP47_mv_map_inner .fukidashi.f6::after {
    left: 40%;
  }
}

/* =========================================================
 wave_x_scroll
========================================================= */
.wave_x_scroll {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.wave_x_scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--common-bg-color) url(../images/common_bg_base.webp);
  z-index: -1;
}
.hougen_47CP + .wave_x_scroll::before {
  background: var(--common-bg-color2) url(../images/common_bg2.webp);
  z-index: -1;
}
.CP47_mv + .wave_x_scroll {
  margin-bottom: -1px;
  background: var(--common-bg-color2) url(../images/common_bg.webp);
}
.wave_x_scroll_wrapper {
  width: calc(1550 * 3 * 1px);
  display: flex;
}
.wave_x_scroll_wrapper span {
  width: 1550px;
}
.wave_x_scroll_wrapper img {
  display: block;
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scroll-left 30s infinite linear .5s both;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 767px) {
  .wave_x_scroll::before {
    background: var(--common-bg-color) url(../images/common_bg_base_sp.webp);
    background-size: 375px auto;
  }
  .hougen_47CP + .wave_x_scroll::before {
    background: var(--common-bg-color2) url(../images/common_bg2_sp.webp);
    background-size: 375px auto;
  }
  .wave_x_scroll_wrapper {
    width: calc(383 * 3 * 1px);
    display: flex;
  }
  .wave_x_scroll_wrapper span {
    width: 383px;
  }
  .wave_x_scroll_wrapper img {
    animation-duration: 16s;
  }
}

/* =========================================================
 anchor_links_47CP
========================================================= */
.anchor_links_47CP {
  position: relative;
}
.CP47-wrap .anchor_links_47CP.common_section {
  padding-top: 50px;
}
.anchor_links_47CP .common_inner  {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.anchor_links_47CP .common_btn {
  display: block;
  aspect-ratio: 300 / 74;
  display: grid;
  place-content: center;
  font-size: var(--common-text-size);
}
.anchor_links_47CP .common_btn:nth-child(1) {
  background-color: var(--color3);
}
.anchor_links_47CP .common_btn:nth-child(3) {
  background-color: var(--color2);
}
@media screen and (max-width: 767px) {
  .CP47-wrap .anchor_links_47CP.common_section {
    padding-top: 0px;
  }
  .CP47-wrap .common_section.anchor_links_47CP .common_inner {
    width: 280px;
  }
  .anchor_links_47CP .common_inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .anchor_links_47CP .common_btn {
    aspect-ratio: 270 / 55;
  }
  .anchor_links_47CP .common_btn img {
    width: 1em;
  }
}

/* =========================================================
 about_47CP
========================================================= */
.about_47CP {
  position: relative;
}
.CP47-wrap .about_47CP.common_section {

}
.about_47CP_title {
  margin-bottom: 30px;
  text-align: center;
}
.about_47CP_heading {
  color: var(--color1);
  font-size: 40px;
  font-weight: 700;
}
.about_47CP_heading .min {
  font-size: 28px;
}
.about_47CP_leader {
  margin-bottom: 30px;
  text-align: center;
}
.about_47CP_leader.hide {
  display: none;
}
.about_47CP_btn {
  text-align: center;
}
.CP47-wrap .about_47CP_btn a.common_btn {
  width: calc(130 / 20 * 1em);
  aspect-ratio: 130 / 46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  place-content: center;
  font-size: var(--common-text-size-small);
  letter-spacing: 0.1em;
  background-color: var(--color3) !important;
}
.about_47CP_btn a.common_btn img {
  transform: translateY(10%);
}
.about_47CP_btn a.common_btn.active img {
  transform: rotate(180deg) translateY(-10%);
}
.about_47CP_more_block.toggle_block {
  height: 7.5em;
  overflow: hidden;
  margin-bottom: 1em;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  pointer-events: none;

  /* フェードマスク */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0)
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0)
  );
  
}
.about_47CP_more_block.toggle_block.show {
  height: auto;
  margin-bottom: 0;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;

  /* マスク解除 */
  -webkit-mask-image: none;
  mask-image: none;
  
}
.about_47CP_more_block.show {
  padding-block: 50px;
}
.about_47CP_more_block p {
  margin-bottom: 1.5em;
  color: var(--color3);
  font-size: var(--common-text-size);
  line-height: var(--common-line-height);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about_47CP_title {
    margin-bottom: 20px;
  }
  .about_47CP_heading {
    font-size: 24px;
  }
  .about_47CP_heading img {
    width: 22px;
  }
  .about_47CP_heading .min {
    display: block;
    margin-top: 1em;
    text-align: center;
    font-size: 20px;
  }
  .about_47CP_more_block.toggle_block {
    height: 5.8em;
    margin-bottom: 1em;

    /* フェードマスク */
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 20%,
      rgba(0,0,0,0)
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0,0,0,1) 20%,
      rgba(0,0,0,0)
    );
    
  }
  .about_47CP_leader {
    margin-bottom: 20px;
  }
  .CP47-wrap .about_47CP_btn a.common_btn {
    width: calc(110 / 16 * 1em);
    aspect-ratio: 110 / 40;
  }
  .about_47CP_more_block.show {
    padding-block: 39px 30px;
  }
}

/* =========================================================
 hougen_47CP
========================================================= */
.hougen_47CP {
  position: relative;
}
.CP47-wrap .hougen_47CP.common_section {

}
.hougen_47CP_heading {
  margin-bottom: 80px;
  text-align: center;
}
.fukidashi_heading {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 517px;
  padding-bottom: 45px;
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0.05em;
  aspect-ratio: 517 / 200;
  z-index: 1;
  container-type: inline-size;
  --fukidashi_heading-width: 517;
}
.apply_47CP_heading .fukidashi_heading {
  padding-bottom: 10px;
}
.fukidashi_heading .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -3;
  opacity: 0;
}
.fukidashi_heading.scrollin .bg {
  animation: fuwatto1 1.0s cubic-bezier(0.33, 1, 0.68, 1) forwards 0s;
}
.fukidashi_heading.scrollin .bg img {
  animation: 3s infinite fluffy2 3.0s;
}
.fukidashi_heading .parts1 {
  position: absolute;
  top: calc(-16 / var(--fukidashi_heading-width) * 100cqi);
  left: calc(8 / var(--fukidashi_heading-width) * 100cqi);
  width: calc(86 / var(--fukidashi_heading-width) * 100cqi);
  z-index: -2;
  opacity: 0;
}
.fukidashi_heading.scrollin .parts1,
.fukidashi_heading.scrollin .parts2 {
  animation: fadein 1.6s cubic-bezier(0.5, 0, 0, 1.42) forwards 0.5s;
}
.fukidashi_heading.scrollin .parts1 img {
  animation: 2s infinite katakata_rotate2 0s;
}
.fukidashi_heading .parts2 {
  position: absolute;
  top: calc(-16 / var(--fukidashi_heading-width) * 100cqi);
  right: calc(-16 / var(--fukidashi_heading-width) * 100cqi);
  width: calc(64 / var(--fukidashi_heading-width) * 100cqi);
  z-index: -2;
  opacity: 0;
}
.fukidashi_heading.scrollin .parts2 img {
  animation: 1.6s infinite katakata 2.0s;
}
.fukidashi_heading .txt_wrap {
  opacity: 0;
}
.fukidashi_heading.scrollin .txt_wrap {
  display: inline-block;
  animation: bounceInUp2 1s forwards;
}
.fukidashi_heading .txt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.fukidashi_heading.scrollin .txt {
  animation: 3s infinite fluffy2 3.2s;
}
.fukidashi_heading .min {
  margin-bottom: 15px;
  font-size: 28px;
}
.hougen_47CP_title_num {
  position: relative;
  width: 551px;
  aspect-ratio: 551 / 291;
  margin-inline: auto;
  margin-top: -16px;
  padding-top: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hougen_47CP_title_num .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.hougen_47CP_title_num.scrollin .bg {
  animation: bounceInUp2 1s forwards;
}
.hougen_47CP_title_num .img {
  position: relative;
  display: inline-block;
  opacity: 0;
}
.hougen_47CP_title_num.scrollin .img {
  animation: bounceInUp2 1s forwards 0.25s;
}
.hougen_47CP_title_num.scrollin .img img {
  animation: 1.8s infinite katakata 2.5s;
}
.hougen_47CP_title_num.scrollin .img:nth-child(2) > img {
  animation-delay: 3.0s;
}
.hougen_47CP_title_num .object_kemuri.kemuri1 {
  top: 0px;
  left: -140px;
  width: 210px;
}
.hougen_47CP_title_num .object_kemuri.kemuri2 {
  top: 169px;
  right: -104px;
  width: 110px;
}
.hougen_47CP_lead_block {
  margin-bottom: 70px;
  text-align: center;
}
.hougen_47CP_lead_block p {
  color: var(--color3);
  font-size: var(--common-text-size);
  line-height: var(--common-line-height);
  text-align: center;
}
.hougen_47CP_campaign_info {
  width: 690px;
  margin: 0 auto 120px;
  padding-block: 40px;
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
}
.hougen_47CP_campaign_info_heading {
  position: relative;
  margin-bottom: 30px;
  color: var(--color1);
  font-size: var(--common-text-size);
  font-weight: 700;
  z-index: 1;
}
.hougen_47CP_campaign_info_heading::before {
  content: '';
  position: absolute;
  bottom: 3%;
  left: 50%;
  width: 370px;
  aspect-ratio: 347 / 16;
  background: url(../images/hougen_47CP_campaign_info_heading_line.svg) center center no-repeat;
  background-size: contain;
  z-index: -1;
  transform: translateX(-51%);
}
.hougen_47CP_campaign_info p {
  margin-bottom: 30px;
  color: var(--color3);
  font-size: var(--common-text-size-small);
  line-height: var(--common-line-height);
}
.CP47-wrap .hougen_47CP_btn a.common_btn {
  width: calc(186 / 20 * 1em);
  aspect-ratio: 186 / 54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  place-content: center;
  font-size: var(--common-text-size-small);
  background-color: var(--color2) !important;
}
.CP47-wrap .about_47CP_btn a.common_btn.active {
}
.hougen_47CP .hougen_main_list {
  margin-top: 120px;
  padding-top: 20px;
}
.hougen_47CP .area_tab {
  position: sticky;
  top: 100px;
  z-index: 5;
  margin-inline: -65px;
}
.hougen_47CP .area_tab.area_tab_bottom {
  display: none;
}
.hougen_47CP .area_tab ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.hougen_47CP .area_tab ul li a.common_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  padding-left: 0.35em;
  font-size: var(--common-text-size-small);
  background-color: var(--color2);
  border: 1px solid var(--color3);
}
.hougen_47CP .area_tab ul li a.common_btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #FDC600;
  transform: translateY(-50%);
}
.hougen_47CP .area_tab ul li a.common_btn.active {
  color: var(--color3);
  background-color: #fff !important;
  border-color: var(--color3);
  box-shadow: 0 7px 0 transparent;
  transform: none !important;
}
.hougen_47CP .area_block {
  position: relative;
  display: none;
  margin-top: 80px;
  padding-bottom: 80px;
}
.hougen_47CP .area_block.show {
  display: block;
}
.hougen_47CP .area_block .prefecture_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: 1120px;
  margin-left: -35px; /*  (1120 - 1050) / 2 * -1   */
}
.hougen_47CP .area_block .prefecture_list li {
  position: relative;
  margin-top: 34px;
  padding-block: 65px 35px;
  color: var(--color3);
  background-color: #fff;
  text-align: center;
  container-type: inline-size;
  --prefecture_list-li-width: 310;
  border-radius: 0 0 10px 10px;
  transform: rotate(-3deg) translateY(0);
  transition: transform 0.1s ease-out;
}
.hougen_47CP .area_block .prefecture_list li:nth-child(2n) {
  transform: rotate(3deg) translateY(0);
  border-radius: 0;
}
.hougen_47CP .area_block .prefecture_list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 310 / 34;
  background: url(../images/prefecture_list_upper1.svg) center bottom no-repeat;
  background-size: contain;
  transform: translateY(-100%);
}
.hougen_47CP .area_block .prefecture_list li:nth-child(2n)::before {
  background: url(../images/prefecture_list_upper2.svg) center bottom no-repeat;
  background-size: contain;
}
.hougen_47CP .area_block .prefecture_list li:hover {
	transform: rotate(-3deg) translateY(-8px);
}
.hougen_47CP .area_block .prefecture_list li:nth-child(2n):hover {
  transform: rotate(3deg) translateY(-8px);
}
.hougen_47CP .area_block .prefecture_list li .head {
  position: absolute;
  top: 15px;
  right: 36px;
  width: calc(109 / var(--prefecture_list-li-width) * 100cqi);
  aspect-ratio: 109 / 10;
  background: url(../images/prefecture_list_head.svg) center center no-repeat;
  background-size: contain;
}
.hougen_47CP .area_block .prefecture_list li .mes_title {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.1em;
  z-index: 1;
}
.hougen_47CP .area_block .prefecture_list li .mes_title::before { 
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: calc(135 / var(--prefecture_list-li-width) * 100cqi);
  aspect-ratio: 135 / 17;
  background: url(../images/prefecture_list_title_line.svg) center center no-repeat;
  background-size: contain;
  z-index: -1;
  animation: 1.6s infinite katakata 0.5s;
  translate: -52.5% 0;
}
.hougen_47CP .area_block .prefecture_list li .mes_title .area_name {
  color: var(--color2);
  font-size: 30px;
}
.hougen_47CP .area_block .prefecture_list li:nth-child(2n) .mes_title .area_name {
  color: var(--color1);
}
.hougen_47CP .area_block .prefecture_list li .mes {
  margin-block: 15px 25px;
  color: var(--color1);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.025em;
}
.hougen_47CP .area_block .prefecture_list li:nth-child(2n) .mes {
  color: var(--color2);
}
.hougen_47CP #kinki .prefecture_list li:nth-child(3) .mes,
.hougen_47CP #kyushu-okinawa .prefecture_list li:nth-child(7) .mes,
.hougen_47CP #kyushu-okinawa .prefecture_list li:nth-child(8) .mes {
  letter-spacing: 0;
}
.hougen_47CP .area_block .prefecture_list li a.common_btn {
  width: calc(200 / 310 * 100%);
  aspect-ratio: 200 / 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  place-content: center;
  font-size: 12px;
  line-height: 160%;
  background-color: var(--color2) !important;
}
.hougen_47CP .area_block .prefecture_list li:nth-child(2n) a.common_btn {
  background-color: var(--color1) !important;
}
.object_kemuri {
  position: absolute;
  z-index: 10;
  opacity: 0;
}
.object_kemuri.kemuri1 {
  aspect-ratio: 190 / 152;
}
.object_kemuri.kemuri2 {
  aspect-ratio: 110 / 88;
}
.object_kemuri.kemuri3 {
  aspect-ratio: 140 / 112;
}
.object_kemuri.scrollin {
  animation: fadein 0.5s forwards 0s;
}
.object_kemuri img {
  max-width: inherit;
  width: 100%;
  opacity: 0;
}
.object_kemuri.kemuri1 img {
  animation: 3.0s infinite yuge_up 0.25s;
}
.object_kemuri.kemuri2 img {
  animation: 3.5s infinite yuge_up 0s;
}
.object_kemuri.kemuri3 img {
  animation: 3.0s infinite yuge_up 0.75s;
}
#random_prefecture_block {
  position: relative;
  width: 900px;
  margin: 0 auto;
}
#random_prefecture_block .object_kemuri.kemuri1 {
  top: 40px;
  left: 40px;
  width: 140px;
}
#random_prefecture_block .object_kemuri.kemuri3 {
  right: 0;
  bottom: 0;
  width: 200px;
}
.hougen_47CP .random_display {
  position: relative;
  width: 100%;
  aspect-ratio: 900 / 640;
  clip-path: ellipse(50% 50% at 50% 50%);
  overflow: hidden;
}
.hougen_47CP .random_display .base_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FDC600;
}
.hougen_47CP .random_display .base_bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hougen_47CP .random_display .map {
  position: absolute;
  top: 0;
  left: 0;
  /*
  top: 50%;
  left: 50%;
  width: calc(820 / 900 * 100%);
  aspect-ratio: 820 / 634;
  transform: translateX(-50%) translateY(-50%);
  */
  width: 100%;
  height: 100%;
}

/*
.hougen_47CP .random_display .map img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: inherit;
  width: 75%;
  transform: translateX(-50%) translateY(-50%);
  transition: top 0.5s ease-out, left 0.5s ease-out, width 0.5s ease-out;
}
*/

.hougen_47CP .random_display .map img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: inherit;
  width: 75%;
  transform: translateX(-50%) translateY(-50%);
  transition: top 1.0s ease-out, left 1.0s ease-out, width 1.0s ease-out;
  transition-duration: 1.0s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.0);
  --random_display-map-width: 200%;
}
.hougen_47CP .random_display.zoom_in .map img {
  transition-duration: 2.0s !important;
  transition-delay: .6s;
}

/*
.hougen_47CP .random_display.current .map img {
  top: 120%; left: -8%;
  transform: translateX(-50%) translateY(-50%) scale(2.5);
  transition: transform 1.0s cubic-bezier(0,.55,0,1) 0.5s;
  --random_display-map-width: 200%;
}
*/

/* =========================
   北海道・東北
========================= */
.hougen_47CP .random_display[data-slug="hokkaido"] .map img { top: 120%; left: -8%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="aomori"]   .map img { top: 72%;  left: -5%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="iwate"]    .map img { top: 55%;  left: -10%;   width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="akita"]    .map img { top: 55%;  left: 2%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="yamagata"] .map img { top: 35%;  left: 8%;   width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="miyagi"]   .map img { top: 35%;  left: 5%;   width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="fukushima"] .map img { top: 20%;  left: 8%;   width: var(--random_display-map-width) }

/* =========================
   関東
========================= */
.hougen_47CP .random_display[data-slug="ibaraki"]  .map img { top: 0%;  left: 10%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="tochigi"]  .map img { top: 0%;   left: 18%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="gunma"]    .map img { top: 0%;   left: 23%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="saitama"]  .map img { top: -8%;   left: 23%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="chiba"]    .map img { top: -15%;  left: 15%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="tokyo"]    .map img { top: -15%; left: 22%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="kanagawa"] .map img { top: -18%;  left: 24%;  width: var(--random_display-map-width) }

/* =========================
   中部
========================= */ 
.hougen_47CP .random_display[data-slug="niigata"]  .map img { top: 16%;  left: 26%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="toyama"]   .map img { top: 12%;   left: 32%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="ishikawa"] .map img { top: 12%;   left: 48%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="fukui"]    .map img { top: -2%;   left: 55%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="yamanashi"] .map img { top: -12%;  left: 26%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="nagano"]   .map img { top: -2%;  left: 35%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="gifu"]     .map img { top: -10%;  left: 50%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="shizuoka"] .map img { top: -16%; left: 35%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="aichi"]    .map img { top: -20%; left: 48%;  width: var(--random_display-map-width) }

/* =========================
   近畿
========================= */ 
.hougen_47CP .random_display[data-slug="mie"]      .map img { top: -24%; left: 58%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="shiga"]    .map img { top: -14%; left: 61%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="kyoto"]    .map img { top: -10%; left: 64%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="osaka"]    .map img { top: -20%; left: 68%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="hyogo"]    .map img { top: -10%; left: 74%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="nara"]     .map img { top: -20%; left: 62%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="wakayama"] .map img { top: -28%; left: 68%;  width: var(--random_display-map-width) }

/* =========================
   中国
========================= */ 
.hougen_47CP .random_display[data-slug="tottori"]  .map img { top: -2%;  left: 80%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="shimane"]  .map img { top: -2%;   left: 100%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="okayama"]  .map img { top: -10%; left: 84%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="hiroshima"] .map img { top: -10%; left: 96%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="yamaguchi"] .map img { top: -15%; left: 108%; width: var(--random_display-map-width) }

/* =========================
   四国
========================= */ 
.hougen_47CP .random_display[data-slug="kagawa"]   .map img { top: -22%; left: 84%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="ehime"]    .map img { top: -25%; left: 96%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="tokushima"] .map img { top: -28%; left: 80%;  width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="kochi"]    .map img { top: -34%; left: 97%;  width: var(--random_display-map-width) }

/* =========================
   九州・沖縄
========================= */ 
.hougen_47CP .random_display[data-slug="fukuoka"]  .map img { top: -24%; left: 122%; width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="saga"]     .map img { top: -25%; left: 126%; width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="nagasaki"] .map img { top: -25%; left: 132%; width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="kumamoto"] .map img { top: -42%; left: 126%; width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="oita"]     .map img { top: -28%; left: 114%; width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="miyazaki"] .map img { top: -47%; left: 116%; width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="kagoshima"] .map img { top: -52%; left: 126%; width: var(--random_display-map-width) }
.hougen_47CP .random_display[data-slug="okinawa"]  .map img { top: -57%; left: 146%; width: var(--random_display-map-width) }


.hougen_47CP .random_display #random_prefecture {
  position: absolute;
  top: 50px;
  left: 50%;
  display: inline-block;
  width: 400px;
  padding: 30px 0 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-synthesis: none;
  text-align: center;
  background-color: #19448E;
  border-radius: 30px;
  opacity: 0;
  transform: translateX(-50%) translateY(60px) scale(0.75);
  transform-origin: center top;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-duration: 0.2s;
  transition-delay: 0s;
}
.hougen_47CP .random_display #random_prefecture.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  transition-duration: 0.6s;
  transition-delay: 2s;
}
.hougen_47CP .random_display #random_prefecture::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 70px;
  aspect-ratio: 70 / 20;
  transform: translateX(-50%) translateY(100%);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iIzE5NDQ4ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiMxOTQ0OGUiLz4KPC9zdmc+');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0;
}
.hougen_47CP .random_display[data-f_color="f1"] #random_prefecture::after {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iI2VmNTUwNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiNlZjU1MDYiLz4KPC9zdmc+');
}
.hougen_47CP .random_display[data-f_color="f2"] #random_prefecture::after {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iIzAwNjYxYiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiMwMDY2MWIiLz4KPC9zdmc+');
}
.hougen_47CP .random_display[data-f_color="f3"] #random_prefecture::after{
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iI2Q5MzMzZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiNkOTMzM2YiLz4KPC9zdmc+');
}
.hougen_47CP .random_display[data-f_color="f4"] #random_prefecture::after {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iIzE5NDQ4ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiMxOTQ0OGUiLz4KPC9zdmc+');
}
.hougen_47CP .random_display[data-f_color="f5"] #random_prefecture::after {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iI2M4NTE3OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiNjODUxNzkiLz4KPC9zdmc+');
}
.hougen_47CP .random_display[data-f_color="f6"] #random_prefecture::after {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCA0MCAxMSIgZmlsbD0iIzAwYTQ5YSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMEM4LjMxMjM0IDAgMTUuOTY5OCA0LjIxMTQgMjAgMTFDMjQuMDMwMiA0LjIxMTQgMzEuNjg3NyAwIDQwIDBIMFoiIGZpbGw9IiMwMGE0OWEiLz4KPC9zdmc+');
}
.hougen_47CP .random_display #random_prefecture .prefecture {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 15px;
  color: #19448E;
  font-weight: bold;
  letter-spacing: 0.1em;
  background-color: #fff !important;
  border-radius: 9999px;
}
.hougen_47CP .random_display #random_prefecture .message {
  color: #fff !important;
  line-height: 180%;
  letter-spacing: 0.1em;
}
.hougen_47CP .random_display[data-f_color="f1"] #random_prefecture .prefecture,
.hougen_47CP .random_display[data-f_color="f1"] #random_prefecture {
  color: var(--color1);
  background: var(--color1);
}
.hougen_47CP .random_display[data-f_color="f2"] #random_prefecture .prefecture,
.hougen_47CP .random_display[data-f_color="f2"] #random_prefecture {
  color: var(--color2);
  background: var(--color2);
}
.hougen_47CP .random_display[data-f_color="f3"] #random_prefecture .prefecture,
.hougen_47CP .random_display[data-f_color="f3"] #random_prefecture {
  color: #D9333F;
  background: #D9333F;
}
.hougen_47CP .random_display[data-f_color="f4"] #random_prefecture .prefecture,
.hougen_47CP .random_display[data-f_color="f4"] #random_prefecture {
  color: #19448E;
  background: #19448E;
}
.hougen_47CP .random_display[data-f_color="f5"] #random_prefecture .prefecture,
.hougen_47CP .random_display[data-f_color="f5"] #random_prefecture {
  color: #C85179;
  background: #C85179;
}
.hougen_47CP .random_display[data-f_color="f6"] #random_prefecture .prefecture,
.hougen_47CP .random_display[data-f_color="f6"] #random_prefecture {
  color: #00A497;
  background: #00A497;
}
@media screen and (max-width: 767px) {
  .CP47-wrap .hougen_47CP.common_section {
    padding-bottom: 80px
  }
  .hougen_47CP_heading {
    margin-bottom: 50px;
  }
  .fukidashi_heading {
    width: 323px;
    margin-inline: auto;
    padding-bottom: 30px;
    font-size: 36px;
    aspect-ratio: 323 / 125;
    container-type: inline-size;
    --fukidashi_heading-width: 323;
  }
  .fukidashi_heading.scrollin .txt_wrap {
    transform: translateX(-15px);
  }
  .fukidashi_heading .bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: -3;
  }
  .fukidashi_heading .parts1 {
    top: calc(-10 / var(--fukidashi_heading-width) * 100cqi);
    left: calc(4 / var(--fukidashi_heading-width) * 100cqi);
    width: calc(58 / var(--fukidashi_heading-width) * 100cqi);8
  }
  .fukidashi_heading .parts2 {
    top: calc(-10 / var(--fukidashi_heading-width) * 100cqi);
    right: calc(-10 / var(--fukidashi_heading-width) * 100cqi);
    width: calc(42 / var(--fukidashi_heading-width) * 100cqi);
  }
  .fukidashi_heading .min {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .hougen_47CP_title_num {
    width: 340px;
    aspect-ratio: 340 / 180;
    margin-top: -10px;
    padding-top: 33px;
  }
  .hougen_47CP_title_num .img {
    width: 96px;
  }
  .hougen_47CP_title_num .img:nth-child(2) {
    width: 100px;
  }
  .hougen_47CP_title_num .object_kemuri.kemuri1 {
    top: 15px;
    left: -43px;
    width: 90px;
  }
  .hougen_47CP_title_num .object_kemuri.kemuri2 {
    top: 133px;
    right: -7px;
    width: 60px;
  }
  .hougen_47CP_lead_block {
    margin-bottom: 40px;
  }
  .hougen_47CP_lead_block p:first-of-type {
    margin-bottom: 1.5em;
  }
  .hougen_47CP_campaign_info {
    width: 300px;
    margin: 0 auto 80px;
    border-radius: 10px;
  }
  .hougen_47CP_campaign_info_heading {
    margin-bottom: 25px;
  }
  .hougen_47CP_campaign_info_heading::before {
    bottom: 1%;
    width: 274px;
    aspect-ratio: 260 / 13;
  }
  .hougen_47CP_campaign_info p {
    margin-bottom: 25px;
  }
  .CP47-wrap .hougen_47CP_btn a.common_btn {
    width: calc(157 / 16 * 1em);
    aspect-ratio: 157 / 41;
  }
  .hougen_47CP .hougen_main_list {
    margin-top: 50px;
    padding-top: 20px;
  }
  .hougen_47CP .area_tab {
    position: relative;
    top: auto;
    margin-inline: 0;
  }
  .hougen_47CP .area_tab.area_tab_bottom {
    display: block;
  }
  .hougen_47CP .area_tab ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;  
  }
  .hougen_47CP .area_tab ul li a.common_btn {
    height: 44px;
    font-size: var(--common-text-size-small);
  }
  .hougen_47CP .area_block {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .hougen_47CP .area_block .prefecture_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    width: 100%;
    margin-left: 0;
    translate: 0 0;
  }
  .hougen_47CP .area_block .prefecture_list li {
    padding-block: 55px 30px;
    container-type: inline-size;
    --prefecture_list-li-width: 272;
  }
  .hougen_47CP .area_block .prefecture_list li .mes {
    font-size: 15px;
  }
  .hougen_47CP .area_block .prefecture_list li a.common_btn {
    width: calc(200 / var(--prefecture_list-li-width) * 100cqi);
  }
  #random_prefecture_block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  #random_prefecture_block .object_kemuri.kemuri1 {
    top: -30px;
    left: 20px;
    width: 95px;
  }
  #random_prefecture_block .object_kemuri.kemuri3 {
    right: 0;
    bottom: -49px;
    width: 130px;
  }
  .hougen_47CP .random_display {
    aspect-ratio: 375 / 550;
    clip-path: none;
  }
  .hougen_47CP .random_display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/hougen_47CP_cover_sp.png) center no-repeat;
    background-size: cover;
    z-index: 2;
  }
  .hougen_47CP .random_display .base_bg {
    
  }
  .hougen_47CP .random_display .map {

  }
  .hougen_47CP .random_display .map img {
    --random_display-map-width: 300%;
  }
  .hougen_47CP .random_display #random_prefecture {
    top: calc(70 / 375 * 100vw);
    width: calc(320 / 375 * 100vw);
    padding: calc(25 / 375 * 100vw) 0 calc(20 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    border-radius: 30px;
  }
  .hougen_47CP .random_display #random_prefecture::after {
    width: calc(70 / 375 * 100vw);
  }
  .hougen_47CP .random_display #random_prefecture .prefecture {
    margin-bottom: calc(12 / 375 * 100vw);
  }
  .hougen_47CP .random_display .map img {
    width: 100%;
    --random_display-map-width: 400%;
  }

  /* --random_display-map-width: 400%;  */
  /* 北海道・東北 */
  .hougen_47CP .random_display[data-slug="hokkaido"]  .map img { top: 117%; left: -68%; }
  .hougen_47CP .random_display[data-slug="aomori"]    .map img { top: 72%;  left: -60%; }
  .hougen_47CP .random_display[data-slug="iwate"]     .map img { top: 52%;  left: -71%; }
  .hougen_47CP .random_display[data-slug="akita"]     .map img { top: 60%;  left: -45%; }
  .hougen_47CP .random_display[data-slug="yamagata"]  .map img { top: 38%;  left: -32%; }
  .hougen_47CP .random_display[data-slug="miyagi"]    .map img { top: 33%;  left: -48%; }
  .hougen_47CP .random_display[data-slug="fukushima"] .map img { top: 18%;  left: -37%; }

  /* 関東 */
  .hougen_47CP .random_display[data-slug="ibaraki"]   .map img { top:  2%;  left: -24%; }
  .hougen_47CP .random_display[data-slug="tochigi"]   .map img { top:  2%;  left: -11%; }
  .hougen_47CP .random_display[data-slug="gunma"]     .map img { top:  2%;  left: -2%; }
  .hougen_47CP .random_display[data-slug="saitama"]   .map img { top: -8%;  left: -5%; }
  .hougen_47CP .random_display[data-slug="chiba"]     .map img { top: -16%; left:  -18%; }
  .hougen_47CP .random_display[data-slug="tokyo"]     .map img { top: -14%; left: -8%; }
  .hougen_47CP .random_display[data-slug="kanagawa"]  .map img { top: -16%; left: 0%; }

  /* 中部 */
  .hougen_47CP .random_display[data-slug="niigata"]   .map img { top: 23%;  left:  -4%; }
  .hougen_47CP .random_display[data-slug="toyama"]    .map img { top: 15%;  left:  21%; }
  .hougen_47CP .random_display[data-slug="ishikawa"]  .map img { top: 15%;  left:  42%; }
  .hougen_47CP .random_display[data-slug="fukui"]     .map img { top: 6%;  left:  60%; }
  .hougen_47CP .random_display[data-slug="yamanashi"] .map img { top: -7%;  left:  -2%; }
  .hougen_47CP .random_display[data-slug="nagano"]    .map img { top: 2%;  left:  15%; }
  .hougen_47CP .random_display[data-slug="gifu"]      .map img { top: -7%;  left:  46%; }
  .hougen_47CP .random_display[data-slug="shizuoka"]  .map img { top: -16%; left:  41%; }
  .hougen_47CP .random_display[data-slug="aichi"]     .map img { top: -16%; left:  53%; }

  /* 近畿 */
  .hougen_47CP .random_display[data-slug="mie"]       .map img { top:  -20%;  left:  67%; }
  .hougen_47CP .random_display[data-slug="shiga"]     .map img { top: -8%;  left:  72%; }
  .hougen_47CP .random_display[data-slug="kyoto"]     .map img { top: -11%;  left:  79%; }
  .hougen_47CP .random_display[data-slug="osaka"]     .map img { top: -16%; left:  86%; }
  .hougen_47CP .random_display[data-slug="hyogo"]     .map img { top: -6%;  left:  106%; }
  .hougen_47CP .random_display[data-slug="nara"]      .map img { top: -18%; left:  77%; }
  .hougen_47CP .random_display[data-slug="wakayama"]  .map img { top: -25%; left:  86%; }

  /* 中国 */
  .hougen_47CP .random_display[data-slug="tottori"]   .map img { top:  2%;  left: 112%; }
  .hougen_47CP .random_display[data-slug="shimane"]   .map img { top:  2%;  left: 138%; }
  .hougen_47CP .random_display[data-slug="okayama"]   .map img { top: -6%;  left: 118%; }
  .hougen_47CP .random_display[data-slug="hiroshima"] .map img { top: -6%;  left: 144%; }
  .hougen_47CP .random_display[data-slug="yamaguchi"] .map img { top:  -8%;  left: 170%; }

  /* 四国 */
  .hougen_47CP .random_display[data-slug="kagawa"]    .map img { top: -20%; left: 118%; }
  .hougen_47CP .random_display[data-slug="ehime"]     .map img { top: -21%; left: 144%; }
  .hougen_47CP .random_display[data-slug="tokushima"] .map img { top: -25%; left: 112%; }
  .hougen_47CP .random_display[data-slug="kochi"]     .map img { top: -29%; left: 138%; }

  /* 九州・沖縄 */
  .hougen_47CP .random_display[data-slug="fukuoka"]   .map img { top: -20%; left: 192%; }
  .hougen_47CP .random_display[data-slug="saga"]      .map img { top:  -16%; left: 202%; }
  .hougen_47CP .random_display[data-slug="nagasaki"]  .map img { top:  -21%; left: 215%; }
  .hougen_47CP .random_display[data-slug="kumamoto"]  .map img { top: -38%; left: 202%; }
  .hougen_47CP .random_display[data-slug="oita"]      .map img { top:  -25%; left: 176%; }
  .hougen_47CP .random_display[data-slug="miyazaki"]  .map img { top: -43%; left: 183%; }
  .hougen_47CP .random_display[data-slug="kagoshima"] .map img { top: -51%; left: 202%; }
  .hougen_47CP .random_display[data-slug="okinawa"]   .map img { top: -51%; left: 241%; }


  /* --random_display-map-width: 300%;  */
  /* =========================================
    北海道・東北
  =========================================
  .hougen_47CP .random_display[data-slug="hokkaido"]  .map img { top: 100%; left: -40%; }
  .hougen_47CP .random_display[data-slug="aomori"]    .map img { top: 65%;  left: -35%; }
  .hougen_47CP .random_display[data-slug="iwate"]     .map img { top: 50%;  left: -30%; }
  .hougen_47CP .random_display[data-slug="akita"]     .map img { top: 50%;  left: -20%; }
  .hougen_47CP .random_display[data-slug="yamagata"]  .map img { top: 40%;  left: -18%; }
  .hougen_47CP .random_display[data-slug="miyagi"]    .map img { top: 33%;  left: -20%; }
  .hougen_47CP .random_display[data-slug="fukushima"] .map img { top: 22%;  left: -15%; }

  /* =========================================
    関東
  =========================================
  .hougen_47CP .random_display[data-slug="ibaraki"]   .map img { top: 15%;  left: -5%; }
  .hougen_47CP .random_display[data-slug="tochigi"]   .map img { top: 15%;  left:  2%; }
  .hougen_47CP .random_display[data-slug="gunma"]     .map img { top: 15%;  left:  8%; }
  .hougen_47CP .random_display[data-slug="saitama"]   .map img { top:  8%;  left:  8%; }
  .hougen_47CP .random_display[data-slug="chiba"]     .map img { top:  0%;  left:  0%; }
  .hougen_47CP .random_display[data-slug="tokyo"]     .map img { top:  5%;  left:  3%; }
  .hougen_47CP .random_display[data-slug="kanagawa"]  .map img { top:  0%;  left:  6%; }

  /* =========================================
    中部
  =========================================
  .hougen_47CP .random_display[data-slug="niigata"]   .map img { top: 28%;  left: 15%; }
  .hougen_47CP .random_display[data-slug="toyama"]    .map img { top: 25%;  left: 22%; }
  .hougen_47CP .random_display[data-slug="ishikawa"]  .map img { top: 25%;  left: 35%; }
  .hougen_47CP .random_display[data-slug="fukui"]     .map img { top: 15%;  left: 40%; }
  .hougen_47CP .random_display[data-slug="yamanashi"] .map img { top: 10%;  left: 18%; }
  .hougen_47CP .random_display[data-slug="nagano"]    .map img { top: 24%;  left: 25%; }
  .hougen_47CP .random_display[data-slug="gifu"]      .map img { top: 12%;  left: 38%; }
  .hougen_47CP .random_display[data-slug="shizuoka"]  .map img { top:  5%;  left: 28%; }
  .hougen_47CP .random_display[data-slug="aichi"]     .map img { top:  2%;  left: 42%; }

  /* =========================================
    近畿
  =========================================
  .hougen_47CP .random_display[data-slug="mie"]       .map img { top:  0%;  left: 58%; }
  .hougen_47CP .random_display[data-slug="shiga"]     .map img { top:  8%;  left: 55%; }
  .hougen_47CP .random_display[data-slug="kyoto"]     .map img { top: 10%;  left: 60%; }
  .hougen_47CP .random_display[data-slug="osaka"]     .map img { top:  5%;  left: 80%; }
  .hougen_47CP .random_display[data-slug="hyogo"]     .map img { top: 10%;  left: 72%; }
  .hougen_47CP .random_display[data-slug="nara"]      .map img { top:  0%;  left: 55%; }
  .hougen_47CP .random_display[data-slug="wakayama"]  .map img { top: -5%;  left: 62%; }

  /* =========================================
    中国
  =========================================
  .hougen_47CP .random_display[data-slug="tottori"]   .map img { top: 15%;  left: 95%; }
  .hougen_47CP .random_display[data-slug="shimane"]   .map img { top: 15%;  left:110%; }
  .hougen_47CP .random_display[data-slug="okayama"]   .map img { top: 10%;  left:105%; }
  .hougen_47CP .random_display[data-slug="hiroshima"] .map img { top:  8%;  left:123%; }
  .hougen_47CP .random_display[data-slug="yamaguchi"] .map img { top:  5%;  left:143%; }

  /* =========================================
    四国
  =========================================
  .hougen_47CP .random_display[data-slug="kagawa"]    .map img { top:  0%;  left:105%; }
  .hougen_47CP .random_display[data-slug="ehime"]     .map img { top: -2%;  left:115%; }
  .hougen_47CP .random_display[data-slug="tokushima"] .map img { top: -5%;  left:100%; }
  .hougen_47CP .random_display[data-slug="kochi"]     .map img { top: -8%;  left:111%; }

  /* =========================================
    九州・沖縄
  =========================================
  .hougen_47CP .random_display[data-slug="fukuoka"]   .map img { top:  0%;  left:165%; }
  .hougen_47CP .random_display[data-slug="saga"]      .map img { top: -6%;  left:170%; }
  .hougen_47CP .random_display[data-slug="nagasaki"]  .map img { top: -9%;  left:170%; }
  .hougen_47CP .random_display[data-slug="kumamoto"]  .map img { top: -13%; left:165%; }
  .hougen_47CP .random_display[data-slug="oita"]      .map img { top: -6%;  left:155%; }
  .hougen_47CP .random_display[data-slug="miyazaki"]  .map img { top: -18%; left:160%; }
  .hougen_47CP .random_display[data-slug="kagoshima"] .map img { top: -22%; left:165%; }
  .hougen_47CP .random_display[data-slug="okinawa"]   .map img { top: -28%; left:196%; }
   */


}
@media screen and (max-width: 640px) {
  .fukidashi_heading {
    margin-left: -7px;
  }
  .hougen_47CP_title_num {
    margin-left: -15px;
  }
  .hougen_47CP .area_block .prefecture_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    width: 100%;
    margin-left: 0;
  }
  .hougen_47CP .area_block .prefecture_list li {
    container-type: inline-size;
    --prefecture_list-li-width: 310;
  }
  .hougen_47CP .area_block .prefecture_list li .mes {
    font-size: 17px;
  }
}

/* =========================================================
 apply_47CP
========================================================= */
.apply_47CP {
  position: relative;
  background: var(--common-bg-color2) url(../images/common_bg2.webp);
}
.CP47-wrap .apply_47CP.common_section {
  padding-bottom: 0;
}
.apply_47CP .apply_47CP_outer {
  padding-bottom: 170px;
}
.apply_47CP_heading {
  margin-bottom: 80px;
  text-align: center;
}
.apply_47CP_title {
  text-align: center;
}
.apply_47CP_heading .fukidashi_heading {
  padding-bottom: 15px;
}
.apply_47CP_heading .fukidashi_heading .txt {
  flex-direction: row;
  align-items: flex-end;
}
.apply_47CP_heading .fukidashi_heading .min2 {
  font-size: calc(45 / 58 * 1em);
}
.apply_47CP_heading .fukidashi_heading .parts1 {
  top: calc(-16 / var(--fukidashi_heading-width) * 100cqi);
  left: calc(8 / var(--fukidashi_heading-width) * 100cqi);
  width: calc(76 / var(--fukidashi_heading-width) * 100cqi);
}
.apply_47CP_heading .fukidashi_btm_txt {
  position: relative;
  width: 851px;
  aspect-ratio: 851 / 334;
  margin-inline: auto;
  margin-top: -25px;
  padding-top: 105px;
}
.apply_47CP_heading .fukidashi_btm_txt .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.apply_47CP_heading .fukidashi_btm_txt .bg img {
  max-width: inherit;
  width: 100%;
}
.apply_47CP_heading .fukidashi_btm_txt.scrollin .bg {
  animation: bounceInUp2 1s forwards 0s;
}
.apply_47CP_heading .fukidashi_btm_txt .txt {
  position: relative;
  opacity: 0;
}
.apply_47CP_heading .fukidashi_btm_txt.scrollin .txt {
  animation: bounceInUp2 1s forwards 0.25s;
}
.apply_47CP_heading .fukidashi_btm_txt.scrollin .txt img {
  animation: 1.8s infinite katakata 2.5s;
}
.apply_47CP_heading .fukidashi_btm_txt .txt .sub_txt {
  position: relative;
  display: inline-block;
  margin-top: 1.2em;
  padding-inline: 0.2em 0.1em;
  color: var(--color1);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.apply_47CP_heading .fukidashi_btm_txt .txt .sub_txt::before {
  content: '';
  position: absolute;
  bottom: -0.45em;
  left: 0;
  width: 100%;
  height: 1px;
  border: 2px dashed var(--color1);
}
.apply_47CP_heading .fukidashi_btm_txt .txt .sub_txt::after {
  content: '';
  position: absolute;
  top: -0.6em;
  left: 0;
}
.apply_47CP_heading .object_kemuri.kemuri1 {
  top: 104px;
  left: -120px;
  width: 210px;
}
.apply_47CP_heading .object_kemuri.kemuri2 {
  top: 199px;
  right: -92px;
  width: 110px;
}
.apply_47CP_lead_block {
  margin-bottom: 120px;
  text-align: center;
}
.apply_47CP_lead_block p {
  margin-bottom: 80px;
  color: var(--color3);
  font-size: var(--common-text-size);
  line-height: var(--common-line-height);
}
.apply_47CP_lead_block p img {
  width: 1em;
  margin-inline: 0.2em;
  vertical-align: middle;
  transform: translateY(-0.1em);
}
.apply_47CP_lead_block_img img {
  border-radius: 20px;
  overflow: hidden;
}
.apply_47CP_step_block {
  margin-bottom: 50px;
  text-align: center;
}
.apply_47CP_step_heading {
  position: relative;
  display: inline-grid;
  place-content: center;
  width: 243px;
  aspect-ratio: 243 / 90;
  margin-bottom: 30px;
  padding-bottom: 1%;
  color: var(--color1);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 1;
}
.apply_47CP_step_heading .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
}
.apply_47CP_step_heading.scrollin .bg {
  animation: fuwatto1 1.0s cubic-bezier(0.33, 1, 0.68, 1) forwards 0s;
}
.apply_47CP_step_heading.scrollin .bg img {
  animation: 3s infinite fluffy2 2.0s;
}
.apply_47CP_step_heading .txt_wrap {
  display: inline-block;
  opacity: 0;
}
.apply_47CP_step_heading.scrollin .txt_wrap {
  animation: bounceInUp2 1s forwards;
}
.apply_47CP_step_heading .txt {
  display: inline-block;
}
.apply_47CP_step_heading.scrollin .txt {
  animation: 3s infinite fluffy2 2.2s;
}
.apply_47CP_step_txt {
  margin-bottom: 80px;
}
.apply_47CP_step_txt p {
  color: var(--color3);
  font-size: var(--common-text-size);
}
.CP47-wrap .apply_47CP_step_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1020px;
  margin-inline: auto;
}
.CP47-wrap .apply_47CP_step_list li {
  position: relative;
  width: 320px;
  padding-block: 35px 25px;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--color3);
  border-radius: 15px;
  container-type: inline-size;
}
.CP47-wrap .apply_47CP_step_list li.step2 {
  transition-delay: 0.4s;
}
.CP47-wrap .apply_47CP_step_list li.step3 {
  transition-delay: 0.8s;
}
.CP47-wrap .apply_47CP_step_list .step_mark {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 16px;
  background-color: var(--color3);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.CP47-wrap .apply_47CP_step_list li.step1 + .step_mark {
  transition-delay: 0.2s;
}
.CP47-wrap .apply_47CP_step_list li.step2 + .step_mark {
  transition-delay: 0.6s;
}
.CP47-wrap .apply_47CP_step_list li .num_title {
  position: absolute;
  top: calc(10 / 318 * 100cqi);
  left: calc(12 / 318 * 100cqi);
  width: calc(56 / 12 * 1em);
  height: calc(56 / 12 * 1em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
  color: #fff;
  font-size: 12px;
  background-color: var(--color2);
  border-radius: 9999px;
}
.CP47-wrap .apply_47CP_step_list li .num_title .num {
  font-size: 180%;
}
.CP47-wrap .apply_47CP_step_list li p {
  color: var(--color3);
  font-size: var(--common-text-size-small);
  line-height: var(--common-line-height);
}
.CP47-wrap .apply_47CP_step_list li .illust {
  display: inline-block;
  width: calc(200 / 318 * 100cqi);
  margin-top: calc(10 / 318 * 100cqi);
}
.CP47-wrap .apply_47CP_step_list li.step2 .illust {
  width: calc(220 / 318 * 100cqi);
  margin-top: calc(20 / 318 * 100cqi);
}
.CP47-wrap .apply_47CP_step_list li.step3 .illust {
  width: calc(114 / 318 * 100cqi);
  margin-top: calc(15 / 318 * 100cqi);
}
.apply_47CP_require_block {
  width: 900px;
  margin: auto;
  padding-block: 25px;
  color: var(--color3);
  background-color: #fff;
  border-radius: 10px;
}
.apply_47CP_require_wrap {
  padding-block: 25px;
  padding-inline: 40px;
  /*

  data-simplebar data-simplebar-auto-hide="false"

  height: 200px;
  overflow: auto;
  */
}
.apply_47CP_require_body {
  font-size: 14px;
  line-height: 180%;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.apply_47CP_require_title {
  margin-bottom: 0.65em;
  font-size: 14px;
  font-weight: bold;
}
.apply_47CP_require_body p + .apply_47CP_require_title,
.apply_47CP_require_body ul + .apply_47CP_require_title {
  margin-top: 1.5em
}
.apply_47CP_require_body p {
  font-size: 14px;
  line-height: var(--common-line-height);
}
.apply_47CP_require_body li {
  display: flex;
  line-height: var(--common-line-height);
}
.apply_47CP_require_body li::before {
  content: '・';
  margin-right: 0.2em;
  line-height: var(--common-line-height);
}
.simplebar-scrollbar:before {
  background: #ddd;
  opacity: 1 !important;
}
@media screen and (max-width: 767px) {
  .apply_47CP {
    background: var(--common-bg-color2) url(../images/common_bg_sp.webp);
    background-size: 375px auto;
  }
  .CP47-wrap .apply_47CP.common_section .common_inner {
    width: 100%;
  }
  .apply_47CP .apply_47CP_outer {
    padding-bottom: 80px;
  }
  .CP47-wrap .apply_47CP.common_section {
    padding-top: 0;
    padding-bottom: 0;
  }
  .apply_47CP_heading {
    margin-bottom: 50px;
  }
  .apply_47CP_heading .fukidashi_heading .parts1 {
    top: calc(-10 / var(--fukidashi_heading-width) * 100cqi);
    left: calc(4 / var(--fukidashi_heading-width) * 100cqi);
    width: calc(42 / var(--fukidashi_heading-width) * 100cqi);
  }
  .apply_47CP_heading .fukidashi_btm_txt {
    width: 340px;
    aspect-ratio: 340 / 210;
    margin-inline: auto;
    margin-top: -10px;
    padding-top: 35px;
  }
  .apply_47CP_heading .fukidashi_btm_txt.scrollin .txt img {
    width: 220px;
  }
  .apply_47CP_heading .object_kemuri.kemuri1 {
    top: 62px;
    left: -43px;
    width: 90px;
  }
  .apply_47CP_heading .object_kemuri.kemuri2 {
    top: 167px;
    right: -7px;
    width: 60px;
  }
  .apply_47CP_heading .fukidashi_btm_txt .txt .sub_txt {
    margin-top: 1.2em;
    font-size: 16px;
  }
  .apply_47CP_lead_block {
    margin-bottom: 50px;
  }
  .apply_47CP_lead_block_img img {
    width: calc(296 / 375 * 100vw);
    border-radius: 10px;
  }
  .apply_47CP_lead_block p {
    margin-bottom: 40px;
    margin-inline: -2em;
  }
  .apply_47CP_step_txt {
    margin-bottom: 50px;
  }
  .apply_47CP_step_block {
    margin-bottom: 30px;
  }
  .CP47-wrap .apply_47CP_step_list {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 300px;
  }
  .CP47-wrap .apply_47CP_step_list li {
    width: 100%;
    padding-block: 30px 30px;
    border-radius: 10px;
    transition-delay: 0 !important;
  }
  .CP47-wrap .apply_47CP_step_list li .illust {
    width: calc(203 / 300 * 100cqi);
    margin-top: calc(0 / 300 * 100cqi);
  }
  .CP47-wrap .apply_47CP_step_list li.step2 .illust {
    width: calc(220 / 300 * 100cqi);
    margin-top: calc(20 / 300 * 100cqi);
  }
  .CP47-wrap .apply_47CP_step_list li.step3 .illust {
    width: calc(114 / 300 * 100cqi);
    margin-top: calc(15 / 300 * 100cqi);
  }
  .CP47-wrap .apply_47CP_step_list .step_mark {
    width: 16px;
    height: 10px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
  .CP47-wrap .apply_47CP_step_list li .num_title {
    top: calc(10 / 300 * 100cqi);
    left: calc(12 / 300 * 100cqi);
    width: calc(50 / 12 * 1em);
    height: calc(50 / 12 * 1em);
  }
  .apply_47CP_require_block {
    width: min(340 / 375 * 100vw, 340px);
    margin: auto;
    padding: 20px 0;
    border-radius: 10px;
  }
  .apply_47CP_require_wrap {
    /*
    height: 170px;
    */
    padding-block: 15px;
    padding-inline: 25px;
  }
  .apply_47CP_require_body {
    font-size: 12px;
  }
  .apply_47CP_require_title {
    font-size: 12px;
  }
  .apply_47CP_require_body li + li {
    margin-top: 0.4em;
  }
  .apply_47CP_require_body p {
    font-size: 12px;
  }
}

/* =========================================================
 footer_47CP
========================================================= */
.footer_47CP {
  position: relative;
  padding-top: 50px;
  padding-bottom: 160px;
}
.footer_47CP_campaign_info_heading {
  position: relative;
  min-height: 1em;
  margin-bottom: 20px;
  color: var(--color3);
  font-size: var(--common-text-size-small);
  font-weight: 700;
  text-align: center;
  z-index: 1;
}
.footer_47CP_campaign_info_heading::before {
  content: '';
  position: absolute;
  bottom: -2%;
  left: 50%;
  width: calc(395 / 20 * 1em);
  aspect-ratio: 300 / 22;
  background: url(../images/footer_47CP_campaign_info_heading_line.svg) center center no-repeat;
  background-size: contain;
  z-index: -1;
  translate: -50% 0;
}
.footer_47CP_campaign_info_heading.scrollin::before {
  animation: 1.6s infinite katakata 0.5s;
}
.footer_47CP_campaign_info_heading .txt {
  display: none;
}
.txt.fade-in {
  animation: fade_in_up 1.0s ease-out forwards;
}
.txt.fade-out {
  animation: fade_out_up 1.0s ease-out forwards;
}
@keyframes fade_in_up {
  0% {
    opacity: 0;
    transform: translate3d(0,10px,0) rotate(0.0001deg);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0,0,0) rotate(0.0001deg);
    filter: blur(0);
  }
}
@keyframes fade_out_up {
  0% {
    opacity: 1;
    transform: translate3d(0,0,0) rotate(0.0001deg);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0,-10px,0) rotate(0.0001deg);
    filter: blur(10px);
  }
}
.CP47-wrap .footer_47CP_btn {
  margin-bottom: 50px;
  text-align: center;
}
.CP47-wrap .footer_47CP_btn a.common_btn {
  width: calc(330 / 20 * 1em);
  aspect-ratio: 330 / 74;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  place-content: center;
  font-size: var(--common-text-size-small);
  background-color: var(--color1) !important;
}
.footer_47CP_sns_links_heading {
  position: relative;
  margin-bottom: 20px;
  color: var(--color3);
  font-size: var(--common-text-size-small);
  font-weight: 700;
  text-align: center;
  z-index: 1;
}
.footer_47CP_sns_links_list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.CP47-wrap .footer_47CP_sns_links_list a.common_btn {
  width: 74px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
  background-color: var(--color2) !important;
}
.CP47-wrap .footer_47CP_sns_links_list .instagram a.common_btn {
  background-color: var(--color3) !important;
}
.CP47-wrap .footer_47CP_sns_links_list a.common_btn img {

}
@media screen and (max-width: 767px) {
  .footer_47CP {
    padding-top: 0px;
    padding-bottom: 80px;
    z-index: 2;
  }
  .footer_47CP_campaign_info_heading {
    min-height: calc(2em + 1em * 1.2);
    margin-bottom: 15px;
    font-size: var(--common-text-size-small);
    line-height: 160%;
  }
  .footer_47CP_campaign_info_heading::before {
    bottom: 5%;
    width: calc(230 / 16 * 1em);
    aspect-ratio: 230 / 28;
    background: url(../images/footer_47CP_campaign_info_heading_line_sp.svg) center center no-repeat;
    background-size: contain;
    transform: translateX(-51%);
  }
  .footer_47CP_campaign_info_heading .txt {
    line-height: 160%;
  }
  .CP47-wrap .footer_47CP_btn {
    margin-bottom: 50px;
  }
  .CP47-wrap .footer_47CP_btn a.common_btn {
    width: calc(270 / 16 * 1em);
    aspect-ratio: 270 / 54;
  }
  .CP47-wrap .footer_47CP_sns_links_list a.common_btn {
    width: 54px;
  }
  .CP47-wrap .footer_47CP_sns_links_list a.common_btn img {
    width: 24px;
  }
}