* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9c5dd;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

/* メディアリセット */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
    margin: 0 auto;
}

.wrap-img,
.wrap-video {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;
    font-size: 0;
    text-align: center;
}

picture {
    display: block;
}

/* コンテナ */
.container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0;
}

/* FVメディア */
.fv-media {
    width: 100%;
    object-fit: contain;
    vertical-align: bottom;
}

/* ステップインジケーター */
.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
}

.step-progress {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    width: 100%;
    z-index: 0;
    border-radius: 4px;
}

.step-progress-fill {
    height: 100%;
    background: #ffffff;
    transition: width 0.4s ease;
    width: 0%;
    border-radius: 4px;
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 56px;
}

.step-item::before {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    background-color: white;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #d4a5c0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, #ffb3d9, #ff99cc);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 153, 204, 1), 0 0 20px rgba(255, 153, 204, 0.9);
    animation: shadowPulse 1s infinite alternate;
}

.step-item.completed .step-circle {
    background: linear-gradient(135deg, #ffb3d9, #ff99cc);
    color: white;
    animation: bounce 0.5s;
}

.step-item.completed .step-circle::after {
    content: '✓';
    position: absolute;
    font-size: 20px;
}

.step-item.completed .step-circle span {
    display: none;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shadowPulse {
    from {
        box-shadow: 0 4px 16px rgba(255, 153, 204, 1), 0 0 20px rgba(255, 153, 204, 0.9);
    }

    to {
        box-shadow: 0 6px 24px rgba(255, 102, 153, 1), 0 0 30px rgba(255, 102, 153, 0.9);
    }
}

@media (max-width: 600px) {
    .step-circle {
        width: 35px;
        height: 35px;
    }
}

/* 質問文 */
.question-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    padding: 0 16px;
    line-height: 1.6;
}

/* ブロック共通 */
.question-block {
    padding: 16px 10px;
    margin: 16px;
    background: #FDECF4;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 教育コンテンツブロック */
.education-block {
    padding: 16px 10px;
    margin: 16px;
}

/* 質問エリア */
.options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-btn {
    width: 100%;
    min-height: 56px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.option-btn:hover,
.option-btn:active {
    background: #f8f8f8;
}

.option-btn.selected {
    background: #ab3d76;
    color: #fff;
    border-color: #ab3d76;
}

/* 教育コンテンツ */
.education-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4;
}

.education-text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

.content-img {
    width: 100%;
    border-radius: 8px;
    margin: 24px 0;
}

/* ボタン */
.next-btn,
.cta-button {
    display: block;
    width: 100%;
    min-height: 56px;
    padding: 18px 24px;
    margin-top: 32px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: #ff6b6b;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.next-btn:hover,
.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

/* 結果エリア */
.result-title {
    font-size: 24px;
    font-weight: 700;
    font-family: "Hiragino Mincho ProN", "Times New Roman", serif;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4;
    color: #ab3d76;
}

.result-text {
    font-size: 16px;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.8;
    font-family: "Hiragino Mincho ProN", "Times New Roman", serif;
    color: #ab3d76;
}

/* 表示制御 */
.hidden {
    display: none;
}

/* アニメーション */
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.fade-left {
    opacity: 0;
    animation: fadeLeft 0.8s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate73,
.a-option73,
.a-btnsub73 {
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

a.a-btn {
    position: relative;
    display: inline-block;
    margin: auto;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

a.a-btn img {
    display: block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

img.a-main {
    width: 100%;
    position: relative;
    z-index: 54;
}

a.shover:hover * {
    animation-name: none !important;
}

@-moz-keyframes animate73 {
    0% {
        -moz-transform: scale(0.92);
    }

    40% {
        -moz-transform: scale(0.97);
    }

    60% {
        -moz-transform: scale(0.86);
    }

    80% {
        -moz-transform: scale(1);
    }

    100% {
        -moz-transform: scale(0.92);
    }
}

@-o-keyframes animate73 {
    0% {
        -o-transform: scale(0.92);
    }

    40% {
        -o-transform: scale(0.97);
    }

    60% {
        -o-transform: scale(0.86);
    }

    80% {
        -o-transform: scale(1);
    }

    100% {
        -o-transform: scale(0.92);
    }
}

@-webkit-keyframes animate73 {
    0% {
        -webkit-transform: scale(0.92);
    }

    40% {
        -webkit-transform: scale(0.97);
    }

    60% {
        -webkit-transform: scale(0.86);
    }

    80% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.92);
    }
}

@keyframes animate73 {
    0% {
        transform: scale(0.92);
    }

    40% {
        transform: scale(0.97);
    }

    60% {
        transform: scale(0.86);
    }

    80% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.92);
    }
}

.animate73 {
    -webkit-animation-name: animate73;
    -moz-animation-name: animate73;
    -o-animation-name: animate73;
    animation-name: animate73;
}

.small {
    font-size: .4em;
    text-align: right;
    line-height: 1.0;
    margin-top: 0em;
}

.sb-custom-part-ml0wnka5j5gwzdg1ly9 .bound2__btnArea {
  margin-top: 30px;
}

.sb-custom-part-ml0wnka5j5gwzdg1ly9 .bound2__btnArea .boundImg__container {
  display: block;
  width: 400px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.sb-custom-part-ml0wnka5j5gwzdg1ly9 .bound2__btnArea .boundImg__container img,
.sb-custom-part-ml0wnka5j5gwzdg1ly9 .bound2__btnArea .boundImg__container video {
  width: 100%;
  height: auto;
  animation: bound2Btn 2s ease infinite;
}

@keyframes bound2Btn {
  0% {
    transform: translateY(0);
  }

  15% {
    transform: translateY(-30px);
  }

  30% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

.sb-custom-part-mkgjwi33gyjismtq8jc img,
.sb-custom-part-mkgjwi33gyjismtq8jc video {
  width: 100%;
  height: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: block !important;
}

.sb-custom-part-mkgjwi33gyjismtq8jc .media-box {
  max-width: unset;
  margin: 0 -20px !important;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .calousel-box {
  position: relative;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  width: 85%;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transform: translate3d(0px, 0, 0);
  transition-property: transform;
  box-sizing: content-box;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-slide img,
.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-slide video {
  width: 100%;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-slide img.lazyload:not(.loaded) {
  width: auto;
  max-width: 100%;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-next,
.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  width: 25px;
  height: 25px;
  background: #666;
  transition: 0.25s;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-next:hover,
.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-prev:hover {
  background: #000;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-next {
  right: 0;
  left: auto;
  outline: none;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-prev {
  left: 0;
  right: auto;
  outline: none;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-next::before,
.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-prev::before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-next::after,
.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-prev::after {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-next::before {
  border-right: solid 2px #fff;
  transform: translatey(-50%) rotate(35deg);
  right: 10px;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-prev::before {
  border-left: solid 2px #fff;
  transform: translatey(-50%) rotate(-35deg);
  left: 10px;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-next::after {
  border-right: solid 2px #fff;
  transform: translatey(0%) rotate(-35deg);
  right: 10px;
}

.sb-custom-part-mlg9fk8jty2yuh1eysk .swiper-button-prev::after {
  border-left: solid 2px #fff;
  transform: translatey(0%) rotate(35deg);
  left: 10px;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transform: translate3d(0, 0, 0);
  transition-property: transform;
  box-sizing: content-box;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-slide img {
  vertical-align: bottom;
}

.sb-custom-part-mkghha1u06zn2naeto1g

/*スライダー内の画像の設定*/
.swiper-slide img {
  /*横幅*/
  width: 100%;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-slide img.lazyload:not(.loaded) {
  width: auto;
  max-width: 100%;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-next,
.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-prev {
  position: absolute;
  top: 50%;
  cursor: pointer;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-next {
  right: 10px;
  left: auto;
  outline: none;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-prev {
  left: 10px;
  right: auto;
  outline: none;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-next::before,
.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-prev::before {
  content: " ";
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 10;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-next::before {
  border-right: solid 8px #ccc;
  transform: translateY(-50%) rotate(45deg);
  right: 0;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-prev::before {
  border-left: solid 8px #ccc;
  transform: translateY(-50%) rotate(-45deg);
  left: 0;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-next::after,
.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-prev::after {
  content: " ";
  width: 50px;
  height: 50px;
  position: absolute;
  top: 5px;
  z-index: 10;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-next::after {
  border-right: solid 8px #ccc;
  transform: translateY(-54%) rotate(-45deg);
  right: 0;
}

.sb-custom-part-mkghha1u06zn2naeto1g .swiper-button-prev::after {
  border-left: solid 8px #ccc;
  transform: translateY(-54%) rotate(45deg);
  left: 0;
}

.sb-custom-part-mlga7uzjjuj6drpspic .animated {
  /*動きの速さを変更する場合は、animation-durationの2s(=2秒)の時間を変更してください。*/
  animation-duration: 2s;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {

  /*アニメーションの始点*/
  from {
    /*透明度（0=透明、1=不透明）*/
    opacity: 0;
    /*位置。1番目のX軸は水平, 2番目のY軸は垂直, 3番目はZ軸の回転（deg=度）*/
    transform: translateX(-20px) translateY(0px) rotate(0deg);
  }

  /*アニメーションの終点*/
  to {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
}

.sb-custom-part-mlga7uzjjuj6drpspic .fadeInLeft {
  animation-name: fadeInLeft;
}

.sb-custom-part-mlga9890fe1a1jpsbk .animated {
  /*動きの速さを変更する場合は、animation-durationの2s(=2秒)の時間を変更してください。*/
  animation-duration: 3s;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {

  /*アニメーションの始点*/
  from {
    /*透明度（0=透明、1=不透明）*/
    opacity: 0;
    /*位置。1番目のX軸は水平, 2番目のY軸は垂直, 3番目はZ軸の回転（deg=度）*/
    transform: translateX(-20px) translateY(0px) rotate(0deg);
  }

  /*アニメーションの終点*/
  to {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
}

.sb-custom-part-mlga9890fe1a1jpsbk .fadeInLeft {
  animation-name: fadeInLeft;
}

.sb-custom-part-mlga9e18mrxbbaaka .animated {
  /*動きの速さを変更する場合は、animation-durationの2s(=2秒)の時間を変更してください。*/
  animation-duration: 4s;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {

  /*アニメーションの始点*/
  from {
    /*透明度（0=透明、1=不透明）*/
    opacity: 0;
    /*位置。1番目のX軸は水平, 2番目のY軸は垂直, 3番目はZ軸の回転（deg=度）*/
    transform: translateX(-20px) translateY(0px) rotate(0deg);
  }

  /*アニメーションの終点*/
  to {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
}

.sb-custom-part-mlga9e18mrxbbaaka .fadeInLeft {
  animation-name: fadeInLeft;
}

.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows {
  position: relative;
  /*widget自体の高さ*/
  height: 50px;
  /*widgetの上余白*/
  margin-top: 1em;
  /*widgetの下余白*/
  margin-bottom: 1em;
}

.sb-custom-part-ml0xdxrx9erfuz64elr

/*一個目の矢印*/
.cp_arrows .cp_arrowfirst {
  /*アニメーション設定。
左からアニメーション名、動きの速さ（2s=2秒）、変化の度合い（ease-in-out=開始時と終了時は、緩やかに変化）、動きの回数（infinite=無限、3=3回など）*/
  animation: arrow-move08 2s ease-in-out infinite;
}

.sb-custom-part-ml0xdxrx9erfuz64elr

/*二個目の矢印*/
.cp_arrows .cp_arrowsecond {
  /*アニメーション設定。
左からアニメーション名、動きの速さ（2s=2秒）、開始時間（1s=1秒後）、変化の度合い（ease-in-out=開始時と終了時は、緩やかに変化）、動きの回数（infinite=無限、3=3回など）*/
  animation: arrow-move08 2s 1s ease-in-out infinite;
}

.sb-custom-part-ml0xdxrx9erfuz64elr

/*共通設定*/
.cp_arrows .cp_arrow {
  position: absolute;
  /*矢印の到着位置　（縦位置）*/
  top: 100%;
  /*矢印の到着位置　（横位置）*/
  left: 45%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  /*透明度（0=透明、1=不透明）*/
  opacity: 0;
}

.sb-custom-part-ml0xdxrx9erfuz64elr .content :first-child {
  margin-top: 0;
}

@keyframes arrow-move08 {

  /*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
  0% {
    top: 40%;
    opacity: 0;
  }

  /*2sの70％（1.7秒）時に不透明になる*/
  70% {
    opacity: 1;
  }

  /*2s（2秒）時に透明になる*/
  100% {
    opacity: 0;
  }
}

.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows .cp_arrow:before {
  /*矢印左の棒の設定。1番目の値は棒の角度、2番目の値は棒のX方向の位置。*/
  transform: rotate(30deg) translateX(-39%);
  /*矢印左の棒の起点。（top left=左上）*/
  transform-origin: top left;
}

.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows .cp_arrow:after {
  /*矢印右の棒の設定。1番目の値は棒の角度、2番目の値は棒のX方向の位置。*/
  transform: rotate(-30deg) translateX(39%);
  /*矢印右の棒の起点。（top right=右上）*/
  transform-origin: top right;
}

.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows .cp_arrow:before,
.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows .cp_arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  /*矢印の棒の横の長さ*/
  width: 40px;
  /*矢印の棒の縦の長さ*/
  height: 3px;
  content: '';
  /*矢印の色*/
  background: #E91E63;
}

.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows *,
.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows *:before,
.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows *,
.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows *:before,
.sb-custom-part-ml0xdxrx9erfuz64elr .cp_arrows *:after {
  box-sizing: border-box;
}

.sb-custom-part-ml0xdxrx9erfuz64elr content div:after,
.sb-custom-part-ml0xdxrx9erfuz64elr .content p:after {
  clear: both;
}

.sb-custom-part-ml0xdxrx9erfuz64elr .content div :after,
.sb-custom-part-ml0xdxrx9erfuz64elr .content p:after {
  display: block;
  content: "";
  clear: both;
}

.sb-custom-part-ml0xhohvitygzaj6krp .animated {
  /*動きの速さを変更する場合は、animation-durationの2s(=2秒)の時間を変更してください。*/
  animation-duration: 3s;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {

  /*アニメーションの始点*/
  from {
    /*透明度（0=透明、1=不透明）*/
    opacity: 0;
    /*位置。1番目のX軸は水平, 2番目のY軸は垂直, 3番目はZ軸の回転（deg=度）*/
    transform: translateX(-20px) translateY(0px) rotate(0deg);
  }

  /*アニメーションの終点*/
  to {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
}

.sb-custom-part-ml0xhohvitygzaj6krp .fadeInLeft {
  animation-name: fadeInLeft;
}

.animate73,
.a-option73,
.a-btnsub73 {
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

a.a-btn {
  position: relative;
  display: inline-block;
  margin: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

a.a-btn img {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

img.a-main {
  width: 100%;
  position: relative;
  z-index: 54;
}

a.shover:hover * {
  animation-name: none !important;
}

@-moz-keyframes animate73 {
  0% {
    -moz-transform: scale(0.92);
  }

  40% {
    -moz-transform: scale(0.97);
  }

  60% {
    -moz-transform: scale(0.86);
  }

  80% {
    -moz-transform: scale(1);
  }

  100% {
    -moz-transform: scale(0.92);
  }

}

@-o-keyframes animate73 {
  0% {
    -o-transform: scale(0.92);
  }

  40% {
    -o-transform: scale(0.97);
  }

  60% {
    -o-transform: scale(0.86);
  }

  80% {
    -o-transform: scale(1);
  }

  100% {
    -o-transform: scale(0.92);
  }

}

@-webkit-keyframes animate73 {
  0% {
    -webkit-transform: scale(0.92);
  }

  40% {
    -webkit-transform: scale(0.97);
  }

  60% {
    -webkit-transform: scale(0.86);
  }

  80% {
    -webkit-transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.92);
  }

}

@keyframes animate73 {
  0% {
    transform: scale(0.92);
  }

  40% {
    transform: scale(0.97);
  }

  60% {
    transform: scale(0.86);
  }

  80% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.92);
  }

}

.animate73 {
  -webkit-animation-name: animate73;
  -moz-animation-name: animate73;
  -o-animation-name: animate73;
  animation-name: animate73;
}
.a-btn73 {
  padding-left: 0% !important;
}

.a-option73 {
  top: 0% !important;
}

.a-option73 {
  width: 20% !important;
}

.a-btn73 {
  max-width: 100% !important;
}

.animate73,
.a-btnsub73,
.a-option73 {
  animation-duration: 1.3s !important;
  -webkit-animation-duration: 1.3s;
  -ms-animation-duration: 1.3s;
  -moz-animation-duration: 1.3s !important;
}

@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");

.accordion {
  font-size: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  padding: 1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 2;
  color: #333333;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion img {
  width: 100%;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-item>*+* {
  margin-block-start: 1em;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-item.is-selected .accordion-title::after {
  content: "-";
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-item.is-selected .accordion-body {
  max-height: 100vh !important;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-item.is-closing .accordion-body {
  max-height: 0;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-header,
.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-body {
  background-color: #fff;
  border-radius: 1em;
  position: relative;
  z-index: 1;
  box-shadow: 0.25em 0.25em 0 0 #FE5E9C;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-header {
  display: flex;
  align-items: center;
  gap: 0 1em;
  padding: 1.5em;
  cursor: pointer;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-header .first-letter {
  display: block;
  font-weight: 700;
  color: #FE5E9C;
  font-size: 3em;
  line-height: 1;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-title {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.5;
  padding-right: 2.5em;
  position: relative;
  flex-grow: 1;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-title::after {
  content: "+";
  font-weight: 700;
  line-height: 1.5em;
  color: #fff;
  background-color: #FE5E9C;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0em;
  top: 50%;
  translate: 0 -50%;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-body {
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-bottom: 1em;
}

.sb-custom-part-mkqnidzkgvdn7rc08xs .accordion-content {
  padding: 1.5em;
}

@media (max-width: 500px) {
  .sb-custom-part-mkqnidzkgvdn7rc08xs .accordion {
    font-size: 3vw;
  }
}

footer {
  color: #fff;
  text-align: center;
  margin-right: 0px;
  margin-left: 0px;
  overflow: hidden;
}

 .footer-inner {
  max-width: unset;
  width: 100vw;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  background-color: #000;
  padding: 20px 0;
}

 footer a {
  color: #fff !important;
  font-size: 16px;
}

 footer p {
  font-size: 16px;
  margin: 0
}

.relative {
  position: relative;
}

.fv-txt {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .fv-txt {
    font-size: 2.5vw;
  }  
}