{"id":12351,"date":"2025-05-20T20:49:55","date_gmt":"2025-05-20T11:49:55","guid":{"rendered":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/?post_type=lp&#038;p=12351"},"modified":"2025-05-21T01:09:48","modified_gmt":"2025-05-20T16:09:48","slug":"menu3","status":"publish","type":"lp","link":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/?lp=menu3","title":{"rendered":"menu3"},"content":{"rendered":"\n<style>\n  .image-marquee-container {\n    position: relative;\n    width: 100%;\n    max-width: 600px;\n    height: 180px;  \/* \u9ad8\u3055\u3092\u534a\u5206\u306b\u5909\u66f4 *\/\n    overflow: hidden;\n    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);\n    border-radius: 8px;\n    margin-top: 20px; \/* \u3053\u3053\u3067\u30c8\u30c3\u30d7\u306b\u30b9\u30da\u30fc\u30b9\u3092\u8ffd\u52a0 *\/\nmargin-bottom: 20px; \/* \u3053\u3053\u3067\u30dc\u30c8\u30e0\u306b\u30b9\u30da\u30fc\u30b9\u3092\u8ffd\u52a0 *\/\n\nborder: 2px solid #fff;  \/* \u767d\u3044\u30dc\u30fc\u30c0\u30fc\u3092\u8ffd\u52a0 *\/\n  }\n\n  .image-background {\n    position: relative;\n    width: 100%;\n    height: 100%;\n  }\n\n  .bg-image {\n    position: absolute;\n    width: 100%;\n    height: 100%;\n    background-position: center;\n    background-repeat: no-repeat;\n    background-size: cover;\n    opacity: 0;\n    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);\n    z-index: 1;\n  }\n\n  .bg-image.active {\n    opacity: 1;\n    z-index: 2;\n  }\n\n  .marquee-overlay {\n    position: absolute;\n    bottom: 0;\n    left: 0;\n    width: 100%;\n    height: 40px;\n    background-color: rgba(0, 0, 0, 0.1);\n    color: #fff;\n    display: flex;\n    align-items: center;\n    overflow: hidden;\n    z-index: 3;\n  }\n\n  .marquee-viewport {\n    width: 100%;\n    height: 100%;\n    position: relative;\n    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);\n    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);\n  }\n\n  .marquee-content {\n    white-space: nowrap;\n    font-size: 20px;\n    position: absolute;\n    top: 50%;\n    transform: translate(0, -50%);\n    animation: marquee linear infinite;\n    padding-right: 50px;\n  }\n\n  @keyframes marquee {\n    0% { transform: translate(0, -50%); }\n    100% { transform: translate(-50%, -50%); }\n  }\n<\/style>\n\n<a href=\"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/?lp=reapi\" target=\"_blank\" rel=\"noopener\">\n  <div class=\"image-marquee-container\">\n    <div class=\"image-background\">\n      <div class=\"bg-image active\" id=\"bg1\"><\/div>\n      <div class=\"bg-image\" id=\"bg2\"><\/div>\n    <\/div>\n    <div class=\"marquee-overlay\">\n      <div class=\"marquee-viewport\">\n        <div class=\"marquee-content\" id=\"marqueeContent\">\n          \u64ae\u5f71\u4f1a\u3067\u4ef2\u826f\u3057\u306b\u306a\u308d\u3046\u306d\ud83d\udc95\u3000\u3000\u3000\u3000  \n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/a>\n\n\n<script>\n  document.addEventListener('DOMContentLoaded', function () {\n    const images = [\n      'http:\/\/www.xn--paipanchan-ww4i4lod1w.com\/wp-content\/uploads\/2025\/05\/a-9.jpg',\n      'http:\/\/www.xn--paipanchan-ww4i4lod1w.com\/wp-content\/uploads\/2025\/05\/a-10.jpg',\n      'http:\/\/www.xn--paipanchan-ww4i4lod1w.com\/wp-content\/uploads\/2025\/05\/a-14.jpg',\n      'http:\/\/www.xn--paipanchan-ww4i4lod1w.com\/wp-content\/uploads\/2025\/05\/a-11.jpg',\n      'http:\/\/www.xn--paipanchan-ww4i4lod1w.com\/wp-content\/uploads\/2025\/05\/a-6.jpg'\n    ];\n\n    \/\/ \u753b\u50cf\u30d7\u30ea\u30ed\u30fc\u30c9\n    images.forEach(url => new Image().src = url);\n\n    let currentIndex = 0;\n    let isBg1Active = true;\n    const bg1 = document.getElementById('bg1');\n    const bg2 = document.getElementById('bg2');\n\n    bg1.style.backgroundImage = `url('${images[currentIndex]}')`;\n\n    function changeBackground() {\n      currentIndex = (currentIndex + 1) % images.length;\n      const nextImage = images[currentIndex];\n\n      if (isBg1Active) {\n        bg2.style.backgroundImage = `url('${nextImage}')`;\n        bg2.classList.add('active');\n        bg1.classList.remove('active');\n      } else {\n        bg1.style.backgroundImage = `url('${nextImage}')`;\n        bg1.classList.add('active');\n        bg2.classList.remove('active');\n      }\n\n      isBg1Active = !isBg1Active;\n    }\n\n    setInterval(changeBackground, 5500);\n\n    \/\/ \u30c6\u30ad\u30b9\u30c8\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\n    const content = document.getElementById('marqueeContent');\n    const originalText = content.textContent;\n    content.textContent = originalText.repeat(3);\n\n    function setAnimation() {\n      const textWidth = content.scrollWidth \/ 3;\n      const viewportWidth = content.parentElement.offsetWidth;\n      const duration = (textWidth + viewportWidth) * 0.04;\n      content.style.animation = `marquee ${duration}s linear infinite`;\n    }\n\n    setAnimation();\n    window.addEventListener('resize', setAnimation);\n  });\n<\/script>\n\n\n\n<style>\n       \n        \n        .photoshoot-container {\n            max-width: 100%;\n            background: white;\n            border-radius: 15px;\n            padding: 10px 10px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            margin-bottom: 30px;\n        }\n        \n        h1 {\n            text-align: center;\n            margin-bottom: 25px;\n            color: #ff6b95;\n            font-size: 10px;\n            position: relative;\n            padding-bottom: 10px;\n        }\n        \n        \n        \n        .flow-section {\n            margin-bottom: 30px;\n        }\n        \n        h2 {\n            font-size: 17px;\n            color: #ff6b95;\n            margin-bottom: 15px;\n            display: flex;\n            align-items: center;\n        }\n        \n        h2::before {\n            content: '';\n            display: inline-block;\n            width: 20px;\n            height: 20px;\n            background-color: #ff9a8b;\n            border-radius: 50%;\n            margin-right: 10px;\n        }\n        \n        .step {\n            display: flex;\n            margin-bottom: 20px;\n            background: #fff9fa;\n            border-radius: 12px;\n            padding: 15px;\n            position: relative;\n            border-left: 4px solid #ffb8b8;\n        }\n        \n        .step-number {\n            min-width: 30px;\n            height: 30px;\n            background: linear-gradient(135deg, #FF3399, #ff6b95);\n            color: white;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-weight: bold;\n            margin-right: 15px;\n            flex-shrink: 0;\n        }\n      \n      .step-number2 {\n            min-width: 30px;\n            height: 30px;\n            background: linear-gradient(135deg, #33CCFF, #FFFF66);\n            color: white;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-weight: bold;\n            margin-right: 15px;\n            flex-shrink: 0;\n        }\n        \n        .step-content h3 {\n            color: #555;\n            margin-bottom: 5px;\n            font-size: 16px;\n        }\n        \n        .step-content p {\n    color: #666;\n    font-size: 12px;\n    font-weight: bold;\n}\n        \n        .system-section {\n            background: #fff2f5;\n            padding: 20px;\n            border-radius: 12px;\n            margin-top: 30px;\n        }\n        \n        .system-item {\n            margin-bottom: 20px;\n        }\n        \n        .system-item h3 {\n            color: #ff6b95;\n            margin-bottom: 8px;\n            font-size: 16px;\n            display: flex;\n            align-items: center;\n        }\n        \n        .system-item h3::before {\n            content: '\u2713';\n            color: #ff6b95;\n            margin-right: 8px;\n            font-size: 18px;\n        }\n        \n        .system-item p {\n            color: #666;\n            font-size: 14px;\n            padding-left: 25px;\n        }\n        \n        .note-box {\n            background: #fff;\n            border: 2px dashed #ffb8b8;\n            padding: 15px;\n            border-radius: 10px;\n            margin-top: 25px;\n        }\n        \n        .note-box h3 {\n            color: #ff6b95;\n            margin-bottom: 10px;\n            font-size: 16px;\n        }\n        \n        .note-box ul {\n            list-style-type: none;\n            padding-left: 5px;\n        }\n        \n        .note-box li {\n            margin-bottom: 8px;\n            padding-left: 25px;\n            position: relative;\n        }\n        \n        .note-box li::before {\n            content: '\u203b';\n            position: absolute;\n            left: 10px;\n            color: #ff6b95;\n        }\n    <\/style>\n\n    <div class=\"photoshoot-container\">\n        <h1>\u64ae\u5f71\u4f1a\u306e\u6d41\u308c\u3068\u30b7\u30b9\u30c6\u30e0<\/h1>\n        \n        <div class=\"flow-section\">\n            <h2>\u64ae\u5f71\u4f1a\u306e\u6d41\u308c<\/h2>\n            \n            <div class=\"step\">\n                <div class=\"step-number\">1<\/div>\n                <div class=\"step-content\">\n                    <h3>\u30b9\u30bf\u30b8\u30aa\u306b\u5230\u7740\u5f8c\u2757\ufe0f<\/h3>\n                    <p>\u30c9\u30a2\u3092\u958b\u3051\u3066\u5de6\u5074\u306b\u4e0b\u99c4\u7bb1\u304c\u3042\u308a\u307e\u3059\u306e\u3067\u30b9\u30ea\u30c3\u30d1\u306b\u5c65\u304d\u66ff\u3048\u3066\u4e0b\u3055\u3044\ud83d\ude47\u200d\u2640\ufe0f<\/p>\n                <\/div>\n            <\/div>\n            \n            <div class=\"step\">\n                <div class=\"step-number\">2<\/div>\n                <div class=\"step-content\">\n                    <h3>\u53d7\u4ed8<\/h3>\n                    <p>\u30ab\u30a6\u30f3\u30bf\u30fc\u3067\u30e1\u30f3\u30d0\u30fc\u30ba\u30ab\u30fc\u30c9\u3092\u3054\u63d0\u793a\u3057\u3066\u4e0b\u3055\u3044\u3002<br>\n\uff08\u3053\u306e\u6642\u306b\u30b9\u30bf\u30c3\u30d5\u304c\u3069\u306e\u30e2\u30c7\u30eb\u3055\u3093\u3092\u5e0c\u671b\u306e\u304a\u5ba2\u69d8\u304b\u628a\u63e1\u3059\u308b\u306e\u306b\u6642\u9593\u3092\u6709\u3059\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u306e\u3067\u3002\u3054\u4e88\u7d04\u540d\u3068\u64ae\u5f71\u30e2\u30c7\u30eb\u540d\u3092\u8a00\u3063\u3066\u9802\u3051\u307e\u3059\u3068\u30b9\u30e0\u30fc\u30ba\u306b\u304a\u4f1a\u8a08\u304c\u9032\u307f\u307e\u3059\u2757\ufe0f\uff09<\/p>\n                <\/div>\n            <\/div>\n            \n           <div class=\"step\">\n                <div class=\"step-number\">3<\/div>\n                <div class=\"step-content\">\n                    <h3>\u30ec\u30f3\u30bf\u30eb\u54c1<\/h3>\n                    <p>\u53d7\u4ed8\u6642\u306b\u53d7\u4ed8\u30b9\u30bf\u30c3\u30d5\u306b\u304a\u4f1d\u3048\u4e0b\u3055\u3044\ud83d\ude47\u200d\u2640\ufe0f\n\u30ec\u30f3\u30bf\u30eb\u54c1\u306f\u300e\u4e00\u773c\u30ec\u30d5\u30fb\u30d3\u30c7\u30aa\u30ab\u30e1\u30e9\u30fb\u4e09\u811a\u30fb\u30b3\u30b9\u30d7\u30ec\u300f\u304c\u3042\u308a\u307e\u3059\u3002<br>\u30b3\u30b9\u30d7\u30ec\u306f\uff11\u968e\u53d7\u4ed8\u6a2a\u3068\uff12\u968e\u306e\u304a\u90e8\u5c4b\u524d\u306b\u6709\u308a\u307e\u3059\u3002<\/p>\n                <\/div>\n            <\/div>\n            \n          <div class=\"step\">\n                <div class=\"step-number2\">\u2605<\/div>\n                <div class=\"step-content\">\n                    <h3 style=\"color: #ff0000;\">\u3054\u65b0\u898f\u69d8\u306e\u5834\u5408<\/h3>\n                    <p>\ud83d\udc95\u521d\u3081\u3066\u3054\u6765\u5e97\u306e\u304a\u5ba2\u69d8\u306f\u30b9\u30bf\u30c3\u30d5\u304b\u3089\u30e2\u30c7\u30eb\u3055\u3093\u3078\u306e\u6ce8\u610f\u4e8b\u9805\u306e\u8aac\u660e\u3068\u3054\u672c\u4eba\u69d8\u78ba\u8a8d\u306e\u70ba\u306b\u8eab\u5206\u8a3c\u306e\u3054\u63d0\u793a\u3092\u6c42\u3081\u3089\u308c\u307e\u3059\u2757\ufe0f<br>\n\u8eab\u5206\u8a3c\u3092\u3054\u7528\u610f\u3057\u3066\u304a\u5f85\u3061\u9802\u3051\u307e\u3059\u3068\u30b9\u30e0\u30fc\u30ba\u306b\u53d7\u4ed8\u304c\u9032\u307f\u307e\u3059\ud83c\udf1f<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number2\">\u2605<\/div>\n                <div class=\"step-content\">\n                    <h3 style=\"color: #ff0000;\">\u571f\u66dc\u65e5\u3001\u65e5\u66dc\u65e5\u3001\u795d\u65e5<\/h3>\n                    <p>\u53d7\u4ed8\u304c\u6df7\u307f\u5408\u3046\u70ba\u3001<br>\u30b9\u30ea\u30c3\u30d1\u306b\u5c65\u304d\u66ff\u3048\u305f\u5f8c\u306b\u300e\u30e1\u30f3\u30d0\u30fc\u30ba\u30ab\u30fc\u30c9\u300f\u3068\u300e\u64ae\u5f71\u6599\u91d1\u300f\u3092\u53d7\u4ed8\u524d\u306b\u3054\u7528\u610f\u3057\u3066\u9802\u3051\u307e\u3059\u3068\ud83e\udd70<br>\u30b9\u30e0\u30fc\u30ba\u306b\u53d7\u4ed8\u304c\u51fa\u6765\u307e\u3059\u3002<\/p>\n                <\/div>\n            <\/div>\n          \n            <div class=\"step\">\n                <div class=\"step-number\">4<\/div>\n                <div class=\"step-content\">\n                    <h3>\u53d7\u4ed8\u5f8c\u30fb\u6848\u5185<\/h3>\n                    <p>\u304a\u90e8\u5c4b\u304c\u7a7a\u304d\u6b21\u7b2c\u304a\u90e8\u5c4b\u306b\u3054\u6848\u5185\u3055\u308c\u307e\u3059\ud83d\ude47\u200d\u2640\ufe0f<br>\n\uff08\u53d7\u4ed8\u304c\u6df7\u3093\u3067\u3044\u3066\u672c\u65e5\u306e\u64ae\u5f71\u306e\u304a\u90e8\u5c4b\u304c\u4f55\u968e\u304b\u3092\u4e8b\u524d\u306b\u304a\u4f1d\u3048\u3059\u308b\u306e\u3092\u7701\u7565\u3059\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u2757\ufe0f\u2640\ufe0f<br>\u304a\u90e8\u5c4b\u304c\uff15\u968e\u306e\u5834\u5408\u3082\u3042\u308a\u307e\u3059\u306e\u3067\u2757\ufe0f<br>\u91cd\u305f\u3044\u304a\u8377\u7269\u306f\u9060\u616e\u305b\u305a\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u306b\u9810\u3051\u3066\u4e0b\u3055\u3044\ud83d\ude47\u200d\u2640\ufe0f\uff09<\/p>\n                <\/div>\n            <\/div>\n            \n          <div class=\"step\">\n                <div class=\"step-number\">5<\/div>\n                <div class=\"step-content\">\n                    <h3>\u304a\u90e8\u5c4b\u306e\u4e2d<\/h3>\n                    <p>\u7167\u660e\u306f\u30b9\u30a4\u30c3\u30c1\u3092\u5165\u308c\u3066\u30c0\u30a4\u30e4\u30eb\u3092\u56de\u3059\u3060\u3051\u3067\u7c21\u5358\u306b\u4f7f\u7528\u3067\u304d\u308b\u7167\u660e\u304c\u3054\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059\u3002<br>\n\uff08\u90e8\u5c4b\u306b\u5bc4\u3063\u3066\u306f2\u53f0\u3042\u308a\u307e\u3059\u2757\ufe0f\u90e8\u5c4b\u306b\u5bc4\u3063\u3066\u306f1\u53f0\u306e\u5834\u5408\u3082\u3042\u308b\u307e\u3059\u306e\u3067\u3001\u305d\u306e\u6642\u306f\u3059\u3050\u306b\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u306b\u3082\u3046\u4e00\u53f0\u7167\u660e\u5897\u3084\u305b\u307e\u3059\u304b\u2753\u3068\u805e\u3044\u3066\u307f\u3066\u4e0b\u3055\u3044\ud83d\ude47\u200d\u2640\ufe0f\uff09<br>\u304a\u90e8\u5c4b\u306e\u5929\u4e95\u306e\u7167\u660e\u306f\u968e\u3054\u3068\u306b\u70b9\u706f\u3057\u307e\u3059\u306e\u3067\uff11\u90e8\u5c4b\u3060\u3051\u3092\u6d88\u305b\u306a\u3044\u306e\u3067\u3002<br>\u304a\u90e8\u5c4b\u306e\u5929\u4e95\u7167\u660e\u3092\u6d88\u3057\u305f\u3044\u5834\u5408\u306f\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u306b\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u2757\ufe0f<br>(\u65e5\u306b\u5bc4\u3063\u3066\u306f\u304a\u90e8\u5c4b\u306e\u96fb\u6c17\u3092\u6d88\u3059\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059\u2757\ufe0f)<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number2\">\u2605<\/div>\n                <div class=\"step-content\">\n                    <h3 style=\"color: #ff0000;\">\u30a8\u30a2\u30b3\u30f3\u30fb\u98f2\u98df<\/h3>\n                    <p>\u30c9\u30a2\u306e\u6a2a\u306b\u30a8\u30a2\u30b3\u30f3\u306e\u30b9\u30a4\u30c3\u30c1\u304c\u3042\u308b\u304a\u90e8\u5c4b\u306f\u3054\u81ea\u7531\u306b\u64cd\u4f5c\u3057\u3066\u5feb\u9069\u306a\u6e29\u5ea6\u306b\u3057\u3066\u4e0b\u3055\u3044\u2757\ufe0f<br>\u64ae\u5f71\u304c\u59cb\u307e\u308b\u304a\u6642\u9593\u306e\u524d\u307e\u3067\u306f\u81ea\u7531\u3067\u3059\u3002<br>\n\u98f2\u307f\u7269\u3001\u98df\u3079\u7269\u306f\u304a\u90e8\u5c4b\u306e\u4e2d\u3067\u3082\u306e\u53ef\u80fd\u3067\u3059\ud83d\ude18<br>\n\u3053\u307c\u3055\u306a\u3044\u3088\u3046\u306b\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude0b<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number\">6<\/div>\n                <div class=\"step-content\">\n                    <h3>\u30bb\u30c3\u30c6\u30a3\u30f3\u30b0<\/h3>\n                    <p>\u30ab\u30e1\u30e9\u306e\u30bb\u30c3\u30c6\u30a3\u30f3\u30b0\u3001\u7167\u660e\u306e\u914d\u7f6e\u3001\u304a\u624b\u6d17\u3044\u306a\u3069\u3092\u304a\u6e08\u307e\u305b\u4e0b\u3055\u3044\ud83d\ude47\u200d\u2640\ufe0f<br>\n\u304a\u90e8\u5c4b\u306b\u5165\u3063\u3066\u304b\u3089\u30b3\u30b9\u30d7\u30ec\u3092\u501f\u308a\u305f\u3044\u6642\u306f\u3001\uff11\u968e\u3001\uff12\u968e\u306e\u30b3\u30b9\u30d7\u30ec\u3092\u3054\u81ea\u7531\u306b\u304a\u90e8\u5c4b\u306e\u4e2d\u306b\u5165\u308c\u3066\u3054\u7528\u610f\u3082\u53ef\u80fd\u3067\u3059\u2757\ufe0f<br>\uff08\u30b9\u30bf\u30b8\u30aa\u5185\u306e\u30b3\u30b9\u30d7\u30ec\u3092\u501f\u308a\u308b\u6642\u306f\u30b9\u30bf\u30c3\u30d5\u306b\u304a\u58f0\u639b\u3051\u3092\u3057\u306a\u304f\u3066\u3082\u5927\u4e08\u592b\u3067\u3059\ud83c\udf1f\uff09<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number\">7<\/div>\n                <div class=\"step-content\">\n                    <h3>\u64ae\u5f71\u958b\u59cb\u6642\u523b<\/h3>\n                    <p>\u64ae\u5f71\u958b\u59cb\u6642\u523b\u306b\u306a\u308a\u307e\u3059\u3068\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u304c\u30e2\u30c7\u30eb\u3055\u3093\u3092\u304a\u90e8\u5c4b\u306b\u3054\u6848\u5185\u3057\u307e\u3059\u2757\ufe0f<br>\uff08\u304a\u6301\u3061\u306e\u30ab\u30e1\u30e9\u3067\u30c4\u30fc\u30b7\u30e7\u30c3\u30c8\ud83d\udcf8\u3092\u3054\u5e0c\u671b\u306e\u969b\u306f\u305d\u306e\u6642\u306b\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u306b\u304a\u58f0\u639b\u3051\u4e0b\u3055\u3044\ud83d\ude47\u200d\u2640\ufe0f\uff09<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number\">8<\/div>\n                <div class=\"step-content\">\n                    <h3>\u64ae\u5f71\u4f1a\u958b\u59cb\u5f8c40\u5206\u5f8c<\/h3>\n                    <p>\u7d42\u308f\u308a\u306e5\u5206\u524d\u306b\u4e00\u5ea6\u30b9\u30bf\u30c3\u30d5\u306e\u65b9\u304c<br><span style=\"color: red;\">\u300e5\u5206\u524d\u3067\u3059\u300f<\/span><br>\u3068\u304a\u58f0\u304b\u3051\u306b\u53c2\u308a\u307e\u3059\u3002<br>\n\u300e\u274c\u7247\u4ed8\u3051\u958b\u59cb\u306e\u5408\u56f3\u3067\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u2757\ufe0f\u300f<br>\n\u300e\u2b55\ufe0f5\u5206\u5f8c\u306e\u6700\u5f8c\u306e\u6700\u5f8c\u307e\u3067\u304a\u697d\u3057\u307f\u4e0b\u3055\u3044\ud83d\udc95\u300f<br>\u306e\u5408\u56f3\u3067\u3059\u2757\ufe0f<br>\n45\u5206\u7d4c\u3061\u307e\u3059\u3068\u30b9\u30bf\u30c3\u30d5\u304c\u518d\u5ea6\u304a\u90e8\u5c4b\u306b\u6765\u307e\u3059\u306e\u3067\u2757\ufe0f<br>\u305d\u306e\u6642\u306b\u304a\u7247\u4ed8\u3051\u3092\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude47\u200d\u2640\ufe0f<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number\">9<\/div>\n                <div class=\"step-content\">\n                    <h3>\u64ae\u5f71\u4f1a\u958b\u59cb\u5f8c45\u5206\u5f8c<\/h3>\n                    <p>\u64ae\u5f71\u7d42\u4e86\u306e\u304a\u6642\u9593\u306e\u304a\u58f0\u639b\u3051\u306b\u53c2\u308a\u307e\u3059\ud83c\udf1f<br>\u64ae\u5f71\u4f1a\u958b\u59cb\uff12\u56de\u76ee\u306e\u304a\u58f0\u639b\u3051\u304c\uff14\uff15\u5206\u7acb\u3061\u307e\u3057\u305f\u306e\u5408\u56f3\u3067\u3059\u2757\ufe0f<br>\u304a\u90e8\u5c4b\u306f\u6b21\u306e\u304a\u5ba2\u69d8\u304c\u4f7f\u3044\u307e\u3059\u306e\u3067\ud83d\ude47\u200d<br>\u8377\u7269\u304c\u591a\u3044\u65b9\u306f\u30b9\u30bf\u30c3\u30d5\u306b\u304a\u7247\u4ed8\u3051\u3092\u624b\u4f1d\u3063\u3066\u8cb0\u3046\u306e\u3082OK\ud83d\ude46\u200d\u2640\ufe0f\u3067\u3059\ud83c\udf1f<br>\n\u304a\u7247\u4ed8\u3051\u304c\u7d42\u308f\u3063\u305f\u5f8c\u306f\uff11\u968e\u307e\u3067\u4e0b\u304c\u308a\u305d\u306e\u307e\u307e\u304a\u5e30\u308a\u51fa\u6765\u307e\u3059\ud83d\ude0b<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number2\">\u2605<\/div>\n                <div class=\"step-content\">\n                    <h3 style=\"color: #ff0000;\">\u64ae\u5f71\u5f8c<\/h3>\n                    <p>\u6b21\u56de\u306e\u3054\u4e88\u7d04\u3092\u3057\u305f\u3044\u5834\u5408\u4e8b\u524d\u4e88\u7d04\u3092\u3057\u305f\u3044\u5834\u5408\u306f\u305d\u306e\u307e\u307e1\u968e\u306e\u53d7\u4ed8\u3067\u6b21\u56de\u306e\u958b\u50ac\u65e5\u3001\u4e88\u7d04\u306e\u7a7a\u304d\u72b6\u6cc1\u3092\u76f4\u63a5\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u306b\u805e\u3044\u3066\u3054\u4e88\u7d04\u3082\u51fa\u6765\u307e\u3059\ud83d\ude47\u200d\u2640\ufe0f<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number\">10<\/div>\n                <div class=\"step-content\">\n                    <h3>\u5f8c\u306f\u5e30\u308b\u3060\u3051\ud83d\udc95<\/h3>\n                    <p>\u305d\u306e\u307e\u307e\u7384\u95a2\u306b\u884c\u3063\u3066\u9774\u3092\u5c65\u304d\u66ff\u3048\u3066\u304a\u5e30\u308a\u9802\u3051\u307e\u3059\ud83c\udf1f<br>\u697d\u3057\u3044\u6c17\u5206\u3067\u5e30\u3063\u3066\u9802\u3051\u307e\u3059\u3068\u5e78\u3044\u3067\u3059\ud83d\udc95<br>\u5909\u3048\u308b\u969b\u306b\u30c9\u30a2\u3092\u958b\u3051\u3066\u96e8\u304c\u964d\u3063\u3066\u307e\u3057\u305f\u3089\u30b9\u30bf\u30c3\u30d5\u3055\u3093\u306b\u300e\u5098\u300f\u3042\u308a\u307e\u305b\u3093\u304b\u2753<br>\u3068\u8a00\u3063\u3066\u4e0b\u3055\u3044\u2757\ufe0f<br>(\u5098\u306f\u30c1\u30fc\u30e0\u3071\u3044\u3071\u3093\u304b\u3089\u306e\u30d7\u30ec\u30bc\u30f3\u30c8\u3068\u601d\u3063\u3066\u4e0b\u3055\u3044\u270c)<\/p>\n                <\/div>\n            <\/div>\n          \n          <div class=\"step\">\n                <div class=\"step-number2\">\u2605<\/div>\n                <div class=\"step-content\">\n                    <h3 style=\"color: #ff0000;\">\u304a\u5199\u771f<\/h3>\n                    <p>\u30c4\u30a4\u30c3\u30bf\u30fc\u306b\u6295\u7a3f\u7528\u306b\u9001\u3063\u3066\u9802\u3051\u307e\u3059\u3068\u5b09\u3057\u3044\u3067\u3059\ud83d\udc93<br>(\u64ae\u5f71\u4f1a\u306e\u4f11\u61a9\u6642\u9593\u4e2d\u306f\u6b21\u306e\u6e96\u5099\u304c\u3042\u308a\ud83d\udca6<br>\u81ea\u64ae\u308a\u3067\u304d\u308b\u6642\u9593\u304c\u3042\u307e\u308a\u306a\u3044\u306e\u3067\u3059\ud83d\udca6<br>\u64ae\u3063\u3066\u9802\u3051\u305f\u304a\u5199\u771f\u304c\u3042\u308b\u3068\u30c4\u30a4\u30c3\u30bf\u30fc\u6295\u7a3f\u983b\u5ea6\u304c\u5897\u3048\u307e\u3059\ud83d\udc93)<\/p>\n                <\/div>\n            <\/div>\n          \n          \n        <\/div>\n        \n        <div class=\"system-section\">\n            <h2>\u6ce8\u76ee<\/h2>\n            \n            <div class=\"system-item\">\n                <h3>\u4e88\u7d04\u30b7\u30b9\u30c6\u30e0<\/h3>\n               <p>\n  \u3054\u4e88\u7d04\u306f\u5b8c\u5168\u4e88\u7d04\u5236\u3067\u3059\u3002<br><a href=\"https:\/\/class-a.jp\/schedule.html\" target=\"_blank\" style=\"color: blue; text-decoration: underline;\" rel=\"noopener\">\u30af\u30e9\u30b9A\u3055\u3093\u306eHP<\/a>\u304b\u3089\u64ae\u5f71\u4f1a\u306e\u5e0c\u671b\u306e\u65e5\u6642\u3092\u9078\u629e\u3057\u3066\u4e88\u7d04\u3057\u3066\u304f\u3060\u3055\u3044\u3002<br>\u5f53\u65e5\u306b\u7a7a\u304d\u67a0\u304c\u3042\u308a\u307e\u3057\u305f\u3089\u5f53\u65e5\u3067\u3082\u3054\u4e88\u7d04\u53ef\u80fd\u3067\u3059\ud83d\udc95\n<\/p>\n            <\/div>\n            \n            <div class=\"system-item\">\n                <h3>\u52d5\u753b\u6599\u91d1<\/h3>\n                <p>\u30c1\u30fc\u30e0\u3071\u3044\u3071\u3093\u306f\u52d5\u753b\u30aa\u30d7\u30b7\u30e7\u30f3\u6599\u91d1\u306f4,000\u5186\u3067\u3059\ud83c\udf1f<\/p>\n            <\/div>\n            \n            <div class=\"system-item\">\n                <h3>\u3071\u3044\u3071\u3093\u3061\u3083\u3093\u3054\u4e88\u7d04\u6642\u5f85\u9047\u2460<\/h3>\n                <p>\n\u30a2\u30af\u30b7\u30e7\u30f3\u30ab\u30e1\u30e9insta360 ace pro2\uff08\u3044\u3064\u3067\u3082\uff09<br>\u7121\u6599\u3067\u304a\u8cb8\u3057\u3057\u3066\u307e\u3059\ud83d\udc95<\/p>\n            <\/div>\n            \n            <div class=\"system-item\">\n                <h3>\u3071\u3044\u3071\u3093\u3061\u3083\u3093\u3054\u4e88\u7d04\u6642\u5f85\u9047\u2461<\/h3>\n                <p>\uff08\u5e73\u65e5\u9650\u5b9a\u3001\u4e8b\u524d\u306b\u3071\u3044\u3071\u3093\u3061\u3083\u3093\u306b\uff24\uff2d\uff09<br>\n\u30ab\u30e1\u30e9\u21e8SONY a7c\u2161\ud83d\udcf8<br>\u30ec\u30f3\u30ba\u21e8SIGMA 28mm\u301c70mm\u306e\u30ba\u30fc\u30e0\u30ec\u30f3\u30ba\ud83d\udc40<br>\n\u3092\u7121\u6599\u3067\u304a\u8cb8\u3057\u3057\u3066\u307e\u3059\ud83d\ude47\u200d\u2640\ufe0f<\/p>\n            <\/div>\n          \n          <div class=\"system-item\">\n                <h3>\u3071\u3044\u3071\u3093\u3061\u3083\u3093\u3054\u4e88\u7d04\u6642\u5f85\u9047\u2462<\/h3>\n                <p>\u30de\u30a4\u30af\u30ed\uff33\uff24\u30ab\u30fc\u30c9\uff0864\u30ae\u30acv30\uff09<br>\n\uff33\uff24\u30ab\u30fc\u30c9\uff0832\u30ae\u30ac\uff09<br>\n\u3092500\u5186\u3067\u3071\u3044\u3071\u3093\u3061\u3083\u3093\u304b\u3089\u8cb7\u3048\u307e\u3059\u2757\ufe0f<br>\n\uff33\uff24\u30ab\u30fc\u30c9\u3092\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f\u3001\u5bb9\u91cf\u304c\u4e00\u676f\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u5834\u5408\u3082<br>\u3054\u6e96\u5099\u304c\u3042\u308b\u306e\u3067\u3054\u5b89\u5fc3\u4e0b\u3055\u3044\u2757\ufe0f<br>ps.\uff33\uff24\u3001\u30de\u30a4\u30af\u30ed\uff33\uff24\u30ab\u30fc\u30c9\u304c500\u5186\u8ca9\u58f2\u306e\u7406\u7531\u306f\u611f\u8b1d\u306e\u6c17\u6301\u3061\u3067\u3059\ud83d\ude47\u200d\u2640\ufe0f<br>\n\u539f\u4fa1\u306f1\u679a1000\u5186\u4ee5\u4e0a\u3057\u307e\u3059\u7b11<\/p>\n            <\/div>\n          \n          <div class=\"system-item\">\n                <h3>\u3071\u3044\u3071\u3093\u3061\u3083\u3093\u3054\u4e88\u7d04\u6642\u5f85\u9047\u2463<\/h3>\n                <p>\u3071\u3044\u3071\u3093\u3061\u3083\u3093\u306e\u307f\u30c1\u30a7\u30ad\u64ae\u5f71\u3082\u53ef\u80fd\u3067\u3059\u3002<br>\n1\u679a500\u5186\u3067\u30c1\u30a7\u30ad\u304c\u64ae\u308c\u307e\u3059\u2757\ufe0f<br>\uff08\u30c1\u30a7\u30ad\u306f\u3071\u3044\u3071\u3093\u3061\u3083\u3093\u306e\u79c1\u7269\u3067\u3059\u3002\uff09<\/p>\n            <\/div>\n          \n        <\/div>\n        \n        <div class=\"note-box\">\n            <h3>\u3054\u6ce8\u610f\u4e8b\u9805<\/h3>\n            <ul>\n                <li>\u30ad\u30e3\u30f3\u30bb\u30eb\u306f\u524d\u65e518\u6642\u307e\u3067\u306b\u3054\u9023\u7d61\u304f\u3060\u3055\u3044<\/li>\n                <li>\u9045\u523b\u3055\u308c\u305f\u5834\u5408\u3001\u64ae\u5f71\u6642\u9593\u304c\u77ed\u304f\u306a\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059<\/li>\n                <li>\u304a\u30bf\u30d0\u30b3\u306f\u304a\u5916\u3067\u304a\u9858\u3044\u3057\u307e\u3059<\/li>\n                <li>\u30da\u30c3\u30c8\u540c\u4f34\u3067\u306e\u64ae\u5f71\u306f\u51fa\u6765\u307e\u305b\u3093<\/li>\n            <\/ul>\n        <\/div>\n    <\/div>\n\n\n\n<footer style=\"\n  background: linear-gradient(135deg, #ffe0f0, #fff5fa);\n  padding: 30px 20px;\n  text-align: center;\n  font-size: 14px;\n  color: #d63384;\n  border: 3px dotted #ffaad4; \/* \u2190\u3053\u3053\u3092\u5909\u66f4 *\/\n  border-radius: 20px;\n  box-shadow: 0 0 12px rgba(255, 192, 203, 0.3);\n  position: relative;\n               \n               \n\">\n<style>\n  .floating-dm {\n    display: inline-block;\n    animation: swing-left-right 4s linear infinite;\n  }\n\n  @keyframes swing-left-right {\n    0%   { transform: translateX(0); }\n    25%  { transform: translateX(-8px); }\n    50%  { transform: translateX(8px); }\n    75%  { transform: translateX(-8px); }\n    100% { transform: translateX(0); }\n  }\n<\/style>\n  <div style=\"font-size: 18px; margin-bottom: 10px;\">\n    \ud83c\udf80 <strong>\u30c1\u30fc\u30e0\u3071\u3044\u3071\u3093\u30e1\u30f3\u30d0\u30fc<\/strong> \ud83c\udf80\n  <\/div>\n\n  <p style=\"margin: 0 0 10px;\">&copy; \u30c9M\u30c9\u5909\u614b\u30fb\u672c\u6c17\u308c\u3042\u3074 \ud83d\udc97<\/p>\n\n  <p style=\"margin: 0;\">\n    <a href=\"\/privacy-policy\" style=\"color:#d63384; text-decoration: none; margin: 0 10px;\">\ud83d\udd12\u30a4\u30de\u30e9\u30c1\u30aa\u306f\u64ae\u5f71\u4f1a\u3067\u306f\u30c0\u30e1\u304b\u3089\u306d\ud83d\udc97<\/a><a href=\"https:\/\/x.com\/messages\/1546194524762161152-1901303651290980352\"\n     class=\"floating-dm\"\n     style=\"color:#d63384; text-decoration: none; margin: 0 10px;\">\n    \ud83d\udce9\uff24\uff2d\u306f\u6c17\u8efd\u306b\u3057\u3066\u306d\ud83d\udc97\u2190\u30af\u30ea\u30c3\u30af\n  <\/a>\n  <\/p>\n\n  <div style=\"position: absolute; bottom: 10px; right: 15px; font-size: 12px; color: #ff80b0;\">\n    \u2661 thank you for visiting \u2661\n  <\/div>\n<\/footer>\n","protected":false},"author":1,"featured_media":0,"template":"","meta":{"_eb_attr":"","_uag_custom_page_level_css":"","swell_btn_cv_data":"","_themeisle_gutenberg_block_has_review":false,"footnotes":"","_wp_rev_ctl_limit":""},"class_list":["post-12351","lp","type-lp","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"\u9db4\u30c3\u6597\u3071\u3044\u3071\u3093","author_link":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/?author=1"},"uagb_comment_info":0,"uagb_excerpt":"\u64ae\u5f71\u4f1a\u3067\u4ef2\u826f\u3057\u306b\u306a\u308d\u3046\u306d\ud83d\udc95\u3000\u3000\u3000\u3000 \u64ae\u5f71\u4f1a\u306e\u6d41\u308c\u3068\u30b7\u30b9\u30c6\u30e0 \u64ae\u5f71\u4f1a\u306e\u6d41\u308c 1 \u30b9\u30bf\u30b8\u30aa\u306b\u5230\u7740\u5f8c\u2757\ufe0f \u30c9\u30a2\u3092\u958b\u3051&hellip;","_links":{"self":[{"href":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/index.php?rest_route=\/wp\/v2\/lp\/12351","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/index.php?rest_route=\/wp\/v2\/lp"}],"about":[{"href":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/index.php?rest_route=\/wp\/v2\/types\/lp"}],"author":[{"embeddable":true,"href":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"version-history":[{"count":10,"href":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/index.php?rest_route=\/wp\/v2\/lp\/12351\/revisions"}],"predecessor-version":[{"id":12401,"href":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/index.php?rest_route=\/wp\/v2\/lp\/12351\/revisions\/12401"}],"wp:attachment":[{"href":"https:\/\/www.xn--paipanchan-ww4i4lod1w.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=12351"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}