@charset "UTF-8";

/*---------------------------------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}
ins {
    background-color:#fff;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#fff;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}

/*---------------------------------------------------*/

html { 
    font-size: 62.5%;
}

body {
    color: #000000;
    font-size: 1.7rem;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Segoe UI", "Meiryo", sans-serif;    
    font-weight: 400;
    margin: 0;
    padding: 0;
    background-color: #858585;
}

img {
  display: block;
}

div.container {
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.font_b {
    font-weight: 700;
}

.small_p {
    font-size: 1.2rem;
}

.text_a_c {
    text-align: center;
}

.bg_gr {
    background-color: #F5F5F5;
}


/* CTA 外枠 */
div.cta_block {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 40px 0;
  text-align: center;
}

/* CTA ボタン本体 */
a.cta_btn_new {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 320px;
  margin: 0 auto;
  padding: 18px 30px;
  background-color: #DF8D36;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  box-sizing: border-box;
}

/* テキスト部分（縦並び） */
a.cta_btn_new span.cta_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

/* 1行目 */
a.cta_btn_new span.cta_line1 {
  font-size: 1.6rem;
  opacity: 0.9;
}

/* 2行目 */
a.cta_btn_new span.cta_line2 {
  font-size: 2.1rem;
  font-weight: 700;
}

/* 矢印アイコン */
a.cta_btn_new span.cta_arrow_new {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 13px;
  height: 13px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  flex-shrink: 0;
}


a.cta_btn_new:hover {
  opacity: 0.8;
}




/* 選ばれる理由へのリンクボタン*/
div.link_btn_block {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 0 0;
  text-align: center;
}

a.link_btn_a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 320px;
  margin: 0 auto;
  padding: 18px 9px;
  border-radius: 60px;
  background-color: #3E3E3E;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  box-sizing: border-box;
}

/* テキスト部分（縦並び） */
a.link_btn_a span.cta_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
}

/* 1行目 */
a.link_btn_a span.cta_line1 {
  font-size: 1.4rem;
}

/* 2行目 */
a.link_btn_a span.cta_line2 {
  font-size: 1.4rem;
}

/* 矢印アイコン */
a.link_btn_a span.cta_arrow_new {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  flex-shrink: 0;
}


a.link_btn_a:hover {
  opacity: 0.8;
}





/* ヘッダー全体 */
header.lp_header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 480px;
    max-width: 100%;
    height: 80px;
    background-color: #F0F0F0;
    z-index: 1000;
}

/* ロゴ */
.logo {
    padding: 0 0 0 20px;
}

.logo img {
    width: 130px;
    height: auto;
}

.logo p {
    font-size: 1.3rem;
    color: #000000;
    padding-top: 5px;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: flex;
    align-items: center;
    z-index: 1100;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
    background-color: #000000;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
    background-color: #000000;
}

/* ハンバーガーメニューデザイン */
nav.nav-menu {
  position: fixed;
font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  max-width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: none;
  flex-direction: column;
  padding: 70px 15px 40px 15px;
  align-items: stretch;
  transition: top 0.3s ease-in-out;
  z-index: 900;
}

nav.nav-menu.active {
  display: flex;
  top: 0;
}

nav.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.nav-menu ul li {
  margin: 0;
  border-bottom: 1px solid #D9D9D9;
}

nav.nav-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 1.5rem;
  color: #000000;
  letter-spacing: 0.06em;
  padding: 17px 20px;
}

nav.nav-menu ul li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
}

nav.nav-menu ul li a:active {
  background-color: rgba(158, 65, 115, 0.06);
}





/* コンテンツ------------------------------------ */

img.fv_img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding-top: 80px;
}

img.contents_img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
    padding: 0;
}

/*スペースあり*/
img.contents_img_2 {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 40px 0;
}

img.contents_img_3 {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

img.bfaf_img {
    width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    padding: 0;
}



/*よくあるご質問*/
div.faq_box {
    padding-bottom: 40px;
}

.accordion-006 {
    max-width: 430px;
    margin: 0 auto 12px auto;
    background-color: #ffffff;
}

.accordion-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-size: 1.4rem;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid #000000;
}

.accordion-006 a {
    color: #000000;
    text-decoration: underline;
}

.accordion-006 summary::-webkit-details-marker {
    display: none;
}

.accordion-006 summary::before,
.accordion-006 summary::after {
    width: 2px;
    height: .9em;
    background-color: #000000;
    content: '';
}

.accordion-006 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-006 summary::after {
    transition: rotate .3s;
}

.accordion-006[open] summary::after {
    rotate: 90deg;
}

.accordion-006 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 2.2rem;
    background-color: #fff;
    transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
    transform: none;
    opacity: 1;
}





/*店舗へのアクセス*/
div.store_info {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0 60px 0;
}

div.store_info p {
  padding-bottom: 20px;
  line-height: 1.3;
}


div.store_info p.store_name {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 700;
}

div.store_info .store_map_wrapper {
  background-color: #F8E8F1;
}



/*固定CTA*/
div.fixed_cta {
  position: fixed;
  bottom: 20px;
  width: 320px;
  left: 50%;
  transform: translateX(-50%); /* ← これだけでOK */
  z-index: 9999;
}

a.fixed_cta_button {
  display: block;
  width: 320px;
  margin: 0 auto;
  padding: 22px 0;
  background-color: #DF8D36;
  border: 2px solid #ffffff;
  text-decoration: none;
  color: #ffffff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  position: relative;
  transition: opacity 0.3s ease;
}


a.fixed_cta_button span.fixed_cta_label {
  display: block;
}

a.fixed_cta_button:hover {
    opacity: 0.85;
}


/*コピーライト*/
.lp_footer {
    padding-top: 10px;
    padding-bottom: 130px;
    color: #000000;
}





/* ---------------体験予約フォームエリア--------------- */
div.contact_block {
  padding: 50px 0 70px 0;
  text-align: center;
}

/* タイトル帯 */
h2.contact_title {
  background-color: #404040;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 16px 0;
  margin-bottom: 25px;
}

/* 注意文 */
p.contact_note {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* LINEボタン */
a.contact_line_btn {
  display: block;
  width: 270px;
  margin: 0 auto 30px auto;
  padding: 18px 0;
  background-color: #3E7A34;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

a.contact_line_btn:hover {
  opacity: 0.9;
}

/* フォーム本体 */
form.contact_form {
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

/* 各項目 */
div.contact_item {
  margin-bottom: 18px;
}

/* ラベル */
div.contact_item label {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

/* (必須) 赤 */
span.required {
  color: #e53935;
  font-size: 1.3rem;
}

/* input・textarea 共通 */
form.contact_form input[type="text"],
form.contact_form input[type="email"],
form.contact_form input[type="date"],
form.contact_form textarea,
form.contact_form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dddddd;
  font-size: 1.5rem;
  box-sizing: border-box;
  background-color: #ffffff;
}


/* プレースホルダー色はブラウザ標準でOK */

/* textarea 高さ */
form.contact_form textarea {
  resize: vertical;
}

/*チェックボックス*/
.contact_confirm {
  margin: 20px 0;
  text-align: center;
}

.confirm_label {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.confirm_label input[type="checkbox"] {
  width: 18px;
  height: 18px;
}


/* 送信ボタン */
div.contact_submit {
  text-align: center;
  margin-top: 30px;
}

button.contact_submit_btn {
  width: 160px;
  padding: 12px 10px;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

button.contact_submit_btn:hover {
  opacity: 0.9;
}

/* サンクスページ--------- */
div.thanks_block {
  padding: 80px 0 120px 0;
  text-align: center;
}

h2.thanks_title {
  background-color: #404040;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 18px 0;
  margin-bottom: 40px;
}

p.thanks_text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 40px;
}

/* トップへ戻るボタン（320px固定） */
a.thanks_btn {
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  padding: 18px 10px;
  background-color: #3b7d36;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

a.thanks_btn:hover {
  opacity: 0.9;
}




/* ----------------------------------------

レスポンシブ スマホサイズ 

----------------------------------------*/

@media (max-width: 480px) {

    div.container {
        width: 100%;
    }

	/*よくあるご質問*/
	.accordion-006 {
    max-width: 400px;
    margin: 0 auto 12px auto;
	}


}
