@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    color: color: rgb(105, 104, 104);
	width:100%;
	overflow-x: hidden !important;
}
ol, ul {
	list-style: none;
}
a {
    text-decoration: none !important;
    color: #212529 !important;
}
a:hover{
opacity:0.8;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ==============================
ここから
============================== */
img {
	vertical-align: bottom;
}
.wrapper {
    width: 500px;
    margin: auto;
}
.cta {
    position: relative;
}
.cta-in {
    position: absolute;
    display: flex;
    bottom: 4%;
    width: 55%;
    left: 0;
    right: 0;
    margin: auto;
    justify-content: space-between;
}
.cta-in a {
    width: 30%;
}
.cta-in2 {
    position: absolute;
    top: 16%;
    left: 0;
    right: 0;
    width: 80%;
    margin: auto;
}
/* ==============================
見出しデザイン
============================== */
.heading-16 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b12a23;
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.heading-16::before,
.heading-16::after {
    width: 3px;
    height: 40px;
    background-color: #b12a23;
    content: '';
}

.heading-16::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.heading-16::after {
    transform: rotate(35deg);
    margin-left: 30px;
}
#address {
    border: 2px solid #b12a23;
    border-radius: 11px;
    padding: 1rem;
    line-height: 2rem;
	width: 95%;
    margin: auto;
}
#copyBtn {
    text-align: center;
    display: block;
    padding: 0.5rem;
    background-color: #b12a23;
    width: 54%;
    margin: 1rem auto;
    border-radius: 112px;
    color: #fff !important;
}
.map iframe {
    height: 350px;
}
/* ポップアップ */
.popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .popup-overlay.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .popup-overlay.show {
            opacity: 1;
        }
        
        /* ポップアップコンテナ */
        .popup-container {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            width: 90%;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .popup-overlay.show .popup-container {
            transform: scale(1);
        }
        
        /* ポップアップのタイトル */
        .popup-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }
        
        /* ボタングループ */
        .button-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }
        
        /* ボタンスタイル */
        .popup-button {
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            color: white;
        }
        
        .popup-button.primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .popup-button.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }
        
        .popup-button.secondary {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .popup-button.secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
        }
        
        /* 閉じるボタン */
        .close-button {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background: #e0e0e0;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
            color: #666;
        }
        
        .close-button:hover {
            background: #d0d0d0;
            transform: rotate(90deg);
        }
.cta-in3 {
    display: flex;
	justify-content: space-between;
}
.cta-in3 a {
    width: 40%;
}
/* ==============================
FVフローティングボタン
============================== */
/* ファーストビュー */
.fv {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fv > img {
    width: 100%;
    height: auto;
    display: block;
}

/* FV内のCTAボタン - 右端配置 */
.cta-fv {
    position: absolute;
    bottom: 1%;
    right: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

/* ボタンの幅を調整 */
.cta-in-fv {
    width: 90px; /* 固定幅にして安定させる */
}

.cta-in-fv img {
    width: 100%;
    height: auto;
    display: block;
/*     filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)); */
    transition: all 0.3s ease;
}

/* ホバー効果 */
.cta-fv:hover {
    transform: translateX(-10px); /* 左に少し移動 */
}

.cta-fv:hover .cta-in-fv img {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* 固定CTAボタン（右下） */
.fixed-cta-wrapper {
    position: fixed;
    bottom: 1%;
    right: 0; /* 右端に配置 */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.fixed-cta-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.fixed-cta-wrapper .cta-in-fixed {
    width: 90px;
}

.fixed-cta-wrapper .cta-in-fixed img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.fixed-cta-wrapper:hover .cta-in-fixed img {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transform: translateX(-5px); /* 左に少し移動 */
}

/* 揺れるアニメーション（右端配置用） */
@keyframes shake {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    10% {
        transform: translateX(-3px) rotate(-1deg);
    }
    20% {
        transform: translateX(-1px) rotate(1deg);
    }
    30% {
        transform: translateX(-3px) rotate(-1deg);
    }
    40% {
        transform: translateX(-1px) rotate(1deg);
    }
    50% {
        transform: translateX(0) rotate(0deg);
    }
}

/* 固定CTAボタン用の揺れるアニメーション */
@keyframes shakeFixed {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    10% {
        transform: translateX(-3px) rotate(-1deg);
    }
    20% {
        transform: translateX(-1px) rotate(1deg);
    }
    30% {
        transform: translateX(-3px) rotate(-1deg);
    }
    40% {
        transform: translateX(-1px) rotate(1deg);
    }
    50% {
        transform: translateX(0) rotate(0deg);
    }
}

.cta-fv.shake-animation {
    animation: shake 0.5s ease-in-out;
}

.fixed-cta-wrapper.shake-animation .cta-in-fixed {
    animation: shakeFixed 0.5s ease-in-out;
}
.c-color {
    background-color: #fcfbfc;
    padding: 2rem;
}
.calender {
    border: 3px solid #b62c1e;
}
.qa-6 {
    max-width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
    background-color: #fff;
    border-radius: 10px;
}
.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #dcc163;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #dcc163;
    border-right: 3px solid #dcc163;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #bb271a;
    line-height: 1.2;
    content: "A";
}
.qa {
    background: url(https://whatsjapan.com/wp-content/uploads/2025/11/back-scaled.webp);
    padding: 3rem;
	line-height:1.5rem;
}
/* ==============================
お問い合わせフォーム
============================== */
.contact-area {
    width: 90%;
    margin: auto;
    background-color: #bb2719;
    padding: 3rem 0;
    border-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 7rem;
}
.h6 {
    text-align: center;
    color: #bb271a;
    font-size: 2rem;
    margin-top: 5rem;
}
#contact {
    background-color: #fff;
    width: 80%;
    margin: auto;
    padding: 3rem 1rem;
}
.form-in {
    margin-top: 1rem;
}
.form-in input {
    width: 100%;
	max-width: 100%;
	display: block;
}
.form {
    margin-bottom: 2rem;
}
.submit input {
    margin: auto;
    text-align: center;
    display: block;
    width: 70%;
    background-color: #28a745;
    color: #fff;
    border-radius: 119px;
    padding: 15px 0;
    border: 2px solid #155724;
    margin-top: 4rem;
}