@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Zen+Kaku+Gothic+Antique&family=Zen+Old+Mincho&display=swap');


html {
    height: 100%;
    width: 100%;
    /* PCではbody自体のスクロールを止め、.centerのみスクロールさせる */
    overflow: hidden;
    scroll-behavior: smooth;
}
 body {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.4;
    color: #2b2b2b;
    /* PCではbodyスクロール無効 */
    overflow: hidden;
    height: 100%;
    background-image: url(../images/lp_img/main_bg.png?1222);
    position: relative;
    background-repeat: repeat;
    background-color: #f7f7f7;
    font-family: "Tenor Sans", "Zen Kaku Gothic Antique", sans-serif;
 }
html,
body{
  overflow-x:hidden;
}
/* SP時はbody・htmlスクロールを戻す */
@media only screen and (max-width: 768px) {
  html {
    overflow: auto;
  }
  body {
    overflow: auto;
  }
}
 img {
    max-width: 100%;
}
.side-wrap {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.side {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100vh;
    pointer-events: auto;
    width: clamp(173px, 50vw, calc((100% - 480px) / 2));
}
.left { 
    left: 0; 
}
.right { 
    /*right: 16px;*/ 
	right: 0;
}
/* 中央スクロール */
.center {
    position: relative;
    z-index: 0;
    height: 100vh;
    overflow-y: auto;
}
/* ★中央の可変領域 */
.center-inner {
    max-width: 480px; 
    margin: 0 auto;
    box-sizing: border-box;
    background: #fff;
    width: 55vw;
    border-left: solid 1px #cccccc;
    border-right: solid 1px #cccccc;
}
.side.left {
    display: flex;
    align-items: center;
    justify-content: center;
}
.side.right {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 左メニュー */
.lp_pc-left_area {
    max-width: 280px;
    box-sizing: border-box;
    width: 80%;
    position: relative;
}
.lp_pc-logo_link{
    display: block;
    max-width: 220px;
    width: auto;
    margin: 0 auto 45px;
}
.lp_pc-left_contact{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tel-box {
    width: 100%;
    border: 2px solid #de5a55;
    color: #de5a55;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 400;
}
.lp_pc-left_contact .tel-box {
    height: 62px;
    gap: 8px;
}
.tel-box:hover {
    opacity: 0.7;
}
.lp_pc-left_contact img {
    max-width: 18px;
    display: block;
}
.lp_pc-left_contact .tel-number {
    font-size: clamp(15px, 2.2vw, 26px);
    letter-spacing: 0.05em;
}
.reserve-btn {
    width: 100%;
    border: 2px solid #de5a55;
    background: #de5a55;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    box-sizing: border-box;
    letter-spacing: 0.2em;
}
.reserve-btn:hover {
    opacity: 0.7;
}
.lp_pc-left_contact .reserve-btn {
    height: 62px;
    gap: 10px;
}
.lp_pc-left_contact .reserve-icon img {
    max-width: 20px;
    display: block;
}
.reserve-text {
    color: #fff;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp_pc-left_contact .reserve-text {
    font-size: clamp(14px, 1.4vw, 15px);
    gap: 3px;
}
.reserve-text small {
    font-size: 11px;
    font-weight: 500;
}
.sns-area.lp_pc-left_sns {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}
.sns-area.lp_pc-left_sns img {
    width: 33px;
    height: 33px;
    object-fit: contain;
    display: block;
}
.sns-link {
  transition: 0.3s;
}
.sns-link:hover {
  opacity: 0.7;
}
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
br.sp{
    display: block;
}
br.pc{
    display: none;
}
@media screen and (max-width: 960px) {
    .lp_pc-left_contact .tel-number {
        font-size: clamp(15px, 3.2vw, 26px);
    }
    .lp_pc-left_contact .reserve-text {
        font-size: clamp(14px, 3.1vw, 15px);
    }
    .side.right{
        display: none;
    }
    .lp_pc-right_area {
        display: none;
    }
    .center-inner {
        max-width: 480px;
        margin-left: auto;
        margin-right: 0;
        border-left: solid 1px #cccccc;
        border-right: none;
        position: relative;
        /*top: 55px;*/
        top: 0;
    }
    .side {
        width: clamp(173px, 50vw, calc((100% - 480px) / 1));
    }
    .center {
        overflow-x: hidden;
    }
}
@media only screen and (max-width: 768px) {
    .center {
        width: 100%;
        overflow-y: auto;
    }
    .left, .right {
        position: static;
        width: 0;
        height: auto;
        max-width: 0;
    }
    .center-inner {
        width: 100%;
        max-width: none;
        overflow: hidden;
        border-left: none;
				top: 55px;
		}
    .lp_pc-left_area {
        display: none;
    }
    .lp_pc-left_contact .tel-number {
        font-size: clamp(26px, 5vw, 28px);
    }
    .lp_pc-left_contact .tel-box {
        height: 68px;
    }
    .lp_pc-left_contact .reserve-btn {
        height: 68px;
    }
}
@media only screen and (max-width: 480px){
    .lp_pc-left_contact .tel-box {
        height: 62px;
    }
    .lp_pc-left_contact .reserve-btn {
        height: 62px;
    }
    br.sp{
        display: none;
    }
    br.pc{
        display: block;
    }
}
/* 右側のメニュー */
.lp_pc-right_area{
    max-width: 270px;
    box-sizing: border-box;
    width: 80%;
    position: relative;
}
.menu-page_head {
    text-align: center;
    margin-bottom: 50px;
}
.menu-page_title {
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 400;
    letter-spacing: 0.08em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menu-page_sub {
    margin-top: 5px;
    font-size: clamp(11px, 2.4vw, 12px);
    letter-spacing: 0.2em;
    color: #de5a55;
}
.menu-page_list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.menu-page_list li {
    list-style: none;
}
.menu-page_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}
.menu-page_list a:hover {
  opacity: 0.7;
}
.menu-page_text_link{
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.menu-page_text_link .menu-page_en {
    font-size: clamp(16px, 2.4vw, 18px);
    font-weight: 400;
    letter-spacing: 0.04em;
}
.menu-page_text_link .menu-page_jp {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #c9a063;
}
.menu-page_arrow {
    margin-left: auto;
    width: 12px;
    flex-shrink: 0;
}
.menu-page_arrow img {
    width: 100%;
    display: block;
}
.menu_lp_furisode-banner .menu_lp_furisode-banner_link{
    display: block;
    max-width: 270px;
    height: auto;
    transition: 0.3s;
}
.menu_lp_furisode-banner .menu_lp_furisode-banner_link:hover{
    opacity: .7;
}
.menu_lp_furisode-banner {
    margin-top: 36px;
}
@media screen and (max-width: 768px) {
    .menu-page_text_link .menu-page_en {
        font-size: clamp(18px, 3.9vw, 22px);
    }
}

/* ハンバーガーメニュー */
.fv-header {
    display: none;
}
.hamburger {
    display: none;
}
.lp_pc-left_contact.sp{
    display: none;
}
@media screen and (max-width: 960px) {
    .fv-header {
        position: fixed;
        top: 0px;
        /*right: 15px;*/
        right: 0;
				z-index: 999;
        max-width: 480px;
        width: 55vw;
        height: 60px;
        /*background: #fff;*/
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: end;
        padding-left: 12px;
        box-sizing: border-box;
        /*box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);*/
    }
    .menu-open .fv-header {
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    }
    .hamburger {
        width: 60px;
        height: 60px;
        background: #c9a063;
        border: none;
        cursor: pointer;
        position: relative;
        padding: 0;
        display: block;
    }
    .hamburger span {
        position: absolute;
        left: 50%;
        width: 28px;
        height: 1px;
        background: #fff;
        transform: translateX(-50%);
        transition: all .4s;
    }
    .hamburger span:nth-child(1) {
        top: 24px;
    }
    .hamburger span:nth-child(2) {
        top: 32px;
    }
    .hamburger span:nth-child(3) {
        top: 40px;
    }
    .fv-header_logo.sp{
        display: none;
    }
    .fv-header_sns.sp{
        display: none;
    }
    .drawer-nav{
        width: 80%;
    }
    .menu-page_text_link .menu-page_en {
        font-size: clamp(16px, 2.8vw, 24px);
    }
    .menu_lp_furisode-banner .menu_lp_furisode-banner_link {
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    body{
        background-image: none;
    }
    .menu-page_text_link .menu-page_en {
        font-size: clamp(16px, 5.2vw, 28px);
    }
    .menu-page_text_link .menu-page_jp {
        font-size: clamp(12px, 2vw, 13px);
    }
    .fv-header_logo.sp{
        display: block;
        margin-left: 20px;
    }
    .fv-header_logo.sp img{
        width: min(40vw, 168px);
    }
    .fv-header_sns.sp{
        display: block;
    }
    .fv-header_right {
        display: flex;
        align-items: center;
        height: 100%;
        gap: 15px;
    }
    .fv-header {
        max-width: 100%;
        width: 100%;
        height: 60px;
        justify-content: space-between;
				background: #fff;
    }
    .drawer-menu {
        width: 100%;
        max-width: 100%;
        height: 100vh;
    }
    .fv-header_sns {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fv-header_sns img {
        width: 27px;
        display: block;
    }
    .lp_pc-left_contact.sp{
        display: flex;
        margin-top: 36px;
    }
    .drawer-menu.is-active {
        right: 0px;
    }
    .drawer-nav{
        width: 70%;
        margin: auto;
        margin-top: 100px;
        margin-bottom: 80px;
    }
    .menu-open .fv-header{
        right: 0px;
    }
    .menu_lp_furisode-banner .menu_lp_furisode-banner_link {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .fv-header {
        right: 0px;
        padding-left: 0px;
    }
    .drawer-nav {
        width: 75%;
    }
}

.hamburger.is-active span:nth-child(1) {
    top: 32px;
    transform: translateX(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 32px;
    transform: translateX(-50%) rotate(-45deg);
}
.drawer-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    max-width: 55vw;
    height: 100vh;
    background: #f7f7f7;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
    background-image: url(../images/lp_img/main_bg.png?1222);
    background-repeat: repeat;
}
.drawer-menu.is-active {
    right: 0;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}
.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
    .drawer-menu {
        width: 100%;
        max-width: 100%;
        height: 100vh;
    }
    .drawer-menu.is-active {
        right: 0px;
        overflow-y: auto;
        display: block;
    }
}

/* コンバージョンエリア */
.contact_lp_box {
    max-width: 410px;
    margin: 0 auto;
    padding: 35px 30px;
    background: #fff;
    position: relative;
}
.contact_lp_box::before,
.contact_lp_box::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
}
.contact_lp_box::before {
    top: 0%;
    left: 0%;
    border-top: 2px solid #c9a063;
    border-left: 2px solid #c9a063;
}
.contact_lp_box::after {
    right: 0px;
    bottom: 0px;
    border-right: 2px solid #c9a063;
    border-bottom: 2px solid #c9a063;
}
.contact_lp_area{
    background: #f7f7f7;
    padding: 60px 35px;
}
.contact_lp_text{
    font-size: clamp(16px, 1.9vw, 18px);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 20px;
}
.text_pink{
    color: #de5a55;
}
.lp_common_contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lp_common_contact .tel-box {
    height: 76px;
    gap: 8px;
}
.lp_common_contact img {
    max-width: 23px;
    display: block;
}
.lp_common_contact .tel-number {
    font-size: clamp(24px, 2.4vw, 30px);
    letter-spacing: 0.05em;
}
.lp_common_contact .reserve-btn {
    height: 76px;
    gap: 15px;
}
.lp_common_contact .reserve-icon img {
    max-width: 25px;
    display: block;
}
.lp_common_contact .reserve-text {
    font-size: clamp(14px, 2.4vw, 15px);
    gap: 3px;
}
.lp_common_contact .reserve-text small{
    font-size: 13px;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .contact_lp_area {
        padding: 60px 5%;
    }
    .contact_lp_box {
        max-width: 100%;
        padding: 9% 7%;
    }
    .contact_lp_text {
        font-size: clamp(16px, 3.7vw, 24px);
        margin-bottom: clamp(20px, 3.7vw, 25px);
    }
    .lp_common_contact .tel-number {
        font-size: clamp(30px, 4.4vw, 32px);
    }
    .lp_common_contact .reserve-text {
        font-size: clamp(16px, 4.1vw, 24px);
    }
    .lp_common_contact .tel-box {
        height: 85px;
    }
    .lp_common_contact .reserve-btn {
        height: 85px;
    }
}

@media screen and (max-width: 480px) {
    .lp_common_contact .tel-box {
        height: 76px;
    }
    .lp_common_contact .reserve-btn {
        height: 76px;
    }
    .contact_lp_box {
        padding: 9% 6.3%;
    }
}

/* フッター */
.footer{
    padding: 50px 5% 35px;
}
.footer-logo{
    display: block;
    max-width: 220px;
    margin: auto;
    margin-bottom: 28px;
}
.footer-home-link{
    font-size: clamp(14px, 1.9vw, 15px);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
    padding-bottom: 5px;
    border-bottom: solid 1px #2b2b2b;
    align-items: center;
    transition: 0.3s;
}
.footer-home-link:hover{
    opacity: .7;
}
.footer-home-link img{
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
}
.sns-area.lp_footer_sns {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 10px;
    margin-bottom: 38px;
}
.sns-area.lp_footer_sns img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    display: block;
}
.footer-copy{
    font-size: clamp(10px, 1.9vw, 11px);
    text-align: center;
}
.footer-copy a{
    border-bottom: solid 1px #565656;
}
.footer-home-link_box{
    text-align: center;
}
@media screen and (max-width: 768px) {
    .footer-logo {
        max-width: 100%;
        width: min(52vw, 250px);
    }
    .footer-home-link {
        font-size: clamp(15px, 3.1vw, 16px);
    }
    .sns-area.lp_footer_sns img {
        width: 28px;
        height: 28px;
    }
    .footer {
        padding: 50px 5% 23%;
    }
}

/* 共通タイトル */
.lp_common-title {
    font-size: clamp(30px, 4.3vw, 44px);
    line-height: 1;
}
.lp_common-subtitle {
    display: block;
    color: #de5a55;
    font-size: clamp(12px, 1.9vw, 13px);
    margin-top: 10px;
    letter-spacing: 0.1em;
}
.lp_common-heading {
    text-align: center;
    margin-bottom: 40px;
}
.lp_common-title_th{
    font-size: clamp(20px, 4.3vw, 25px);
    color: #de5a55;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    font-weight: 600;
}
@media screen and (max-width: 768px){
    .lp_common-title {
        font-size: clamp(38px, 8vw, 50px);
    }
    .lp_common-title_th {
        font-size: clamp(20px, 4.3vw, 30px);
        margin-bottom: 6%;
    }
}
/* プラン紹介 */
.plan {
    padding: 80px 35px 60px;
    position: relative;
}
.plan-inner {
    max-width: 410px;
    margin: 0 auto;
}
.plan_heading{
    top: -24px;
    right: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
}
.plan-text {
    font-size: clamp(14px, 1.9vw, 15px);
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 2;
}
.plan-note {
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    color: #636363;
    letter-spacing: 0.1em;
    line-height: 2;
}
.plan-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}
.plan-card {
    position: relative;
}
.plan-card::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: 2px solid #c9a063;
}
.plan-card-inner {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 2px solid #c9a063;
    padding: 30px 30px 30px;
    text-align: center;
}
.plan-card-title {
    font-size: clamp(20px, 3.3vw, 25px);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.plan-card-desc {
    font-size: clamp(14px, 3.3vw, 15px);
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.plan-price {
    position: relative;
    margin: 20px auto 0;
    padding: 20px 20px;
    font-size: clamp(25px, 3.3vw, 30px);
    height: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-price span {
    display: block;
    font-size: clamp(14px, 3.3vw, 15px);
    margin-left: 2px;
}
.plan-price::before,
.plan-price::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
}
.plan-price::before {
    top: 0;
    left: 0;
    border-top: 2px solid #c9a063;
    border-left: 2px solid #c9a063;
}
.plan-price::after {
    right: 0;
    bottom: 0;
    border-right: 2px solid #c9a063;
    border-bottom: 2px solid #c9a063;
}
.plan-price_text{
    display: flex;
    align-items: baseline;
}
/* カード別カラー */
.rental::after {
    background: #de5a55;
}
.rental .plan-card-title {
    color: #d62525;
}
.rental .plan-price {
    background: #fceeee;
}
.purchase::after {
    background: #4e4e9b;
}
.purchase .plan-card-title {
    color: #241b89;
}
.purchase .plan-price {
    background: #f3f2fc;
}
.mama::after {
    background: #a537a5;
}
.mama .plan-card-title {
    color: #9b0494;
}
.mama .plan-price {
    background: #f4e9f4;
    font-size: clamp(14px, 3.3vw, 15px);
}
.plan_special_service{
    margin-top: 55px;
}
.plan_special_list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.location_box.plan_special_box{
    text-align: inherit;
}
.plan_special_box-title{
    text-align: center;
}
.plan_special_list li {
    display: inline-flex;
    font-size: 15px;
    line-height: 2.1;
    letter-spacing: 0.008em;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
    flex-direction: column;
}
.plan_special_repletion{
    font-size: 13px;
}
.plan_special_list li::before {
    display: block;
    position: absolute;
    top: 12px;
    bottom: 0;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #de5a55;
    content: "";
}
@media screen and (max-width: 768px) {
    .plan-inner {
        max-width: 100%;
    }
    .plan-text {
        font-size: clamp(14px, 3.6vw, 18px);
    }
    .plan {
        padding: 16% 5% 13%;
    }
    .plan-list {
        margin-top: 10%;
    }
    .plan-card-title {
        font-size: clamp(20px, 4.7vw, 25px);
        margin-bottom: 5%;
    }
    .plan-card-desc {
        font-size: clamp(14px, 3.6vw, 17px);
    }
    .plan-price {
        font-size: clamp(25px, 5.9vw, 30px);
        height: 70px;
    }
    .plan_special_list li {
        font-size: clamp(15px, 3.3vw, 18px);
    }
    .plan_special_repletion {
        font-size: clamp(13px, 2.7vw, 15px);
    }
    .plan_special_list li::before {
        top: clamp(12px, 2.4vw, 14px);
    }
}
@media screen and (max-width: 480px) {
    .plan-card::after {
        right: -8px;
        bottom: -8px;
    }
    .plan-card-inner {
        padding: 25px 25px 25px;
    }
    .plan-list {
        gap: 35px;
    }
    .plan-price {
        height: 60px;
    }
    .plan_special_list li::before {
        top: 11px;
    }
}

/* 店舗情報 */
.about {
    padding: 100px 0px 62px;
    position: relative;
}
.about_heading{
    top: -24px;
    right: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
}
.about-inner{
    padding: 0 35px;
}
.location_data_box{
	  border: 3px double #b9964f;
    padding: 3%;
    margin-bottom: 26px;
}
.location_data_ttl{
		color: #b9964f;
		border-bottom: 1px solid #b9964f;
		margin-bottom: 8px;
		padding-bottom: 8px;
}
.location_data:first-child{
	margin-bottom: 12px;
}
.shop_data {
    display: flex;
    align-items: baseline;
    padding-bottom: 17px;
    font-size: clamp(15px, 3.5vw, 16px);
    line-height: 1.5;
    letter-spacing: 0.1em;
}
.shop_data_ttl {
    flex-shrink: 0;
    width: 100px;
    font-weight: 600;
}
.shop_data dd {
    width: calc(100% - 100px);
    font-weight: 500;
}
.shop_data:last-child {
    padding-bottom: 0px;
}
.shop_map{
    box-sizing: border-box;
    width: 100%;
    margin-top: 30px;
}
.shop_map iframe{
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.event_contents{
    padding: 60px 0 0;
}

.event_link {
    display: block;
    width: 100%;
    height: 100%;
    transition: .3s;
}
.event_link:hover{
    opacity: .7;
}
.event_box .event_link_img img {
    height: auto;
    width: 100%;
    aspect-ratio: 410 / 215;
    object-fit: cover;
    transition: .3s;
    opacity: 1;
}
.event_box .event_text_link {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding-bottom: 2px;
    gap: 10px;
    color: #de5a55;
    border-bottom: solid 1px #de5a55;
    letter-spacing: 0.1em;
    font-size: 14px;
}
.event_box .event_text {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: 0.3s;
    padding: 15px 0 10px;
}
.event_link_arrow{
    margin-left: auto;
    width: 15px;
    flex-shrink: 0;
    display: inline-block;
}
.event_link_arrow img{
    vertical-align: middle;
}
.catalog_contents{
    padding-top: 60px;
}
.catalog_furisode-banner .catalog_furisode-banner_link{
    display: block;
    width: 100%;
    height: auto;
    transition: 0.3s;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
}
.catalog_furisode-banner .catalog_furisode-banner_link:hover{
    opacity: .7;
}

@media screen and (max-width: 768px){
    .about-inner {
        padding: 0% 5%;
    }
    .event_box .event_text {
        font-size: clamp(16px, 4vw, 20px);
    }
    .about {
        padding: 16% 0% 62px;
    }
}
@media screen and (max-width: 480px){
    .event_box .event_text {
        padding: 15px 0 5px;
    }
    .about_heading {
        top: -21px;
    }
    .about {
        padding: 18% 0% 62px;
    }
}

/* 導入 */
.intro {
    padding: 60px 0px 100px;
}
.intro_image {
    position: relative;
    padding-right: 80px;
}
.intro_image img {
    width: 100%;
    display: block;
}
.intro_catch {
    position: absolute;
    bottom: -90px;
    left: 35px;
    width: 100%;
}
.intro_catch span {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    display: inline-block;
    background: #dd6561;
    color: #fff;
    font-size: clamp(25px, 3.2vw, 30px);
    letter-spacing: 0.2em;
    line-height: 1.2;
    padding: 8px 15px;
}
.intro_catch span:first-child {
    margin-left: 0;
}
.intro_catch span:last-child {
    margin-top: 8px;
    margin-left: clamp(200px, 3.2vw, 220px);
}
.intro_lead {
    margin-top: 140px;
    padding-left: 35px;
    margin-right: 35px;
    padding-bottom: 20px;
    margin-bottom: 60px;
    border-bottom: solid 1px #c9a063;
}
.intro_lead p {
    font-size: clamp(22px, 2.9vw, 25px);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.text_pink{
    color: #de5a55;
}
.intro_text p {
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 0.08em;
}
.intro_text{
    padding: 0 35px;
    margin-bottom: 50px;
}
.intro-flow {
    overflow: hidden;
    padding: 0;
}
.intro-flow_inner {
    width: 100%;
}
.intro-flow_track {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    width: max-content;
    animation: flowSlide 30s linear infinite;
}
.intro-flow_item {
    flex-shrink: 0;
    overflow: hidden;
}
.intro-flow_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-flow_item--01 {
    max-width: 300px;
}
.intro-flow_item--02 {
    max-width: 232px;
    margin-bottom: 20px;
}
.intro-flow_item--03 {
    max-width: 235px;
    margin-bottom: 70px;
}
.intro-flow_item--04 {
    max-width: 232px;
    margin-bottom: 30px;
}
/* 横に流れるアニメーション */
@keyframes flowSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.bg_main {
    position: relative;
}
.mv-intro_bg{
    position: absolute;
    left: 0;
    bottom: -180px;
    width: 100%;
    height: 180px;
    background: #f7f7f7;
    z-index: 0;
}
@media screen and (max-width: 768px) {
    .intro_text p {
        font-size: clamp(15px, 3.3vw, 18px);
    }
    .mv-intro_bg {
        bottom: -32%;
        height: 32%;
    }
    .intro_image {
        padding-right: 11%;
    }
    .intro {
        padding-top: 15%;
        padding-bottom: 24%;
    }
    .intro_catch span {
        font-size: clamp(25px, 6.4vw, 46px);
    }
    .intro_catch {
        bottom: -31%;
        left: 5%;
    }
    .intro_catch span:last-child {
        margin-left: clamp(200px, 50.9vw, 370px);
    }
    .intro_lead p {
        font-size: clamp(22px, 5vw, 30px);
    }
    .intro_lead {
        margin-top: 30%;
        padding-left: 5%;
        margin-right: 5%;
        padding-bottom: 20px;
        margin-bottom: 10%;
    }
    .intro_text {
        padding: 0 5%;
        margin-bottom: 12%;
    }
}

/* 振袖コレクション */
.collection {
    background: #f7f7f7;
    padding: 70px 0;
    position: relative;
}
.lp_collection-heading{
    position: absolute;
    z-index: 3;
    top: -24px;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.collection_catch{
    margin-top: clamp(0px, 0.9vw, 12px);
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-align: center;
    padding: 0 25px;
}
.collection_inner {
    margin: 0 auto;
}
.collection_area{
    width: 100%;
    overflow: hidden;
    padding: 0 35px;
    padding-top: 100px;
}
/*    共通 */
.collection_item {
    margin-bottom: 150px;
}
.collection_item.collection_item-red {
    margin-bottom: 80px;
}
.collection_frame {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.collection_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -15px;
    right: -15px;
    z-index: 1;
    border: 2px solid #c9a063;
}
.collection_image {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 2px solid #c9a063;
}
.collection_image img {
    width: 100%;
    max-width: 520px;
    display: block;
}
.collection_circle {
    position: absolute;
    top: -100px;
    right: -65px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    border: 2px solid #c9a063;
}
.collection_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collection_label {
    position: absolute;
    z-index: 4;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.collection_label span {
    font-size: clamp(20px, 2.6vw, 23px);
    letter-spacing: 0.17em;
    line-height: 0;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
}
.collection_label small {
  font-size: clamp(16px, 4.3vw, 17px);
  letter-spacing: 0.12em;
  position: relative;
  padding: 6px 6px;
  line-height: normal;
}
.collection_label small::before,
.collection_label small::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
}
.collection_label small::before {
    top: 0;
    left: 0;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.collection_label small::after {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}
/* 紺 */
.collection_item-navy .collection_bg {
    background: #232c6b;
}
.collection_item-navy .collection_label {
    background: #232c6b;
    left: -26px;
    bottom: -10px;
}
/* ピンク */
.collection_item-pink .collection_bg {
    background: #e8b8bf;
    left: -15px;
    top: -15px;
}
.collection_item-pink .collection_circle {
    left: -65px;
    top: -85px;
}
.collection_item-pink .collection_label {
  background: #d8a1ad;
  right: -26px;
  bottom: -10px;
}
/* 赤 */
.collection_item-red .collection_bg {
    background: #d72c42;
}
.collection_item-red .collection_label {
    background: #d72c42;
    left: -26px;
    bottom: -10px;
}
.lp-btn-wrap {
    text-align: center;
    padding-bottom: 8px;
}
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 280px;
    width: 100%;
    padding: 20px 12px 20px 20px;
    background: #fff;
    border: 1px solid #b78f3e;
    box-shadow: 4px 4px 0 #b78f3e;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}
.lp-btn:hover {
    transform: translateY(4px);
    box-shadow: 0 0 0 transparent;
}
.lp-btn_text {
    font-size: 15px;
    color: #9f8346;
    letter-spacing: 0.08em;
    line-height: 1;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
}
.lp-btn_arrow {
    max-width: 19px;
    display: flex;
    align-items: center;
}
.lp-btn_arrow img {
    width: 100%;
    height: auto;
    display: block;
}
.top_item_link{
    position: relative;
    z-index: 3;
    transition: .3s;
}
.top_item_link:hover{
    opacity: .8;
}
@media screen and (max-width: 768px) {
    .collection_label {
        padding: 18px 4.7%;
    }
    .lp-btn_text {
        font-size: clamp(15px, 3.3vw, 18px);
    }
    .collection_area {
        padding: 0 7%;
        padding-top: 20%;
    }
    .lp-btn {
        max-width: 100%;
        width: 65%;
        padding: 24px 12px 24px 20px;
        font-size: clamp(15px, 3.3vw, 18px);

    }
    .collection_image img {
        max-width: 100%;
    }
    .collection_circle {
        width: min(32vw, 200px);
        height: min(32vw, 200px);
        top: -18%;
        right: -12%;
    }
    .collection_item-pink .collection_circle {
        left: -15%;
        top: -15%;
    }
    .collection_label span {
        font-size: clamp(19px, 4.4vw, 34px);
    }
    .collection_item {
        margin-bottom: 35%;
    }
    .collection_item.collection_item-red {
        margin-bottom: 16%;
    }
    .collection_item-navy .collection_label {
        left: -4%;
    }
    .collection_item-pink .collection_label {
        right: -4%;
    }
    .collection_item-red .collection_label {
        left: -4%;
    }
    .collection {
        padding: 10% 0 20%;
    }
    .collection_catch{
        font-size: clamp(18px, 4.6vw, 30px);
        padding: 0 5%;
        margin-top: 30px;
    }
}
@media screen and (max-width: 480px){
    .collection_item-navy .collection_label {
        left: -5%;
    }
    .collection_item-pink .collection_label {
        right: -5%;
    }
    .collection_item-red .collection_label {
        left: -5%;
    }
    .collection_label small {
        font-size: 16px;
    }
    .collection_label {
        padding: 18px 23px;
    }
    .lp-btn {
        max-width: 280px;
        width: 100%;
        padding: 18px 12px 18px 20px;
    }
    .lp_collection-heading {
        top: -21px;

    }
}

/* ロケーション */
.location {
    padding: 70px 0 108px;
}
.location_content {
    background: #fceeee;
    padding: 110px 0px 0px 0;
    margin-top: -70px;
    margin-right: 25px;
    position: relative;
}
.location_heading {
    text-align: center;
    margin-bottom: -10px;
    position: relative;
    z-index: 2;
}
.location_catch {
    margin-bottom: 30px;
    font-size: clamp(21px, 2.7vw, 24px);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.location_text p {
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 0.1em;
    font-weight: 500;
}
.location_text {
    margin-bottom: 40px;
}
.location_images {
  position: relative;
  margin-bottom: 110px;
}
.location_img img {
    width: 100%;
    display: block;
}
.location_img--main {
    width: 85%;
    max-width: 385px;
}
.location_img--sub {
    width: 52%;
    max-width: 229px;
    position: absolute;
    right: -25px;
    bottom: -68px;
}
.location_text_box{
    padding: 0 25px;
}
.location_oogiya{
    padding: 0 25px; 
}
.location_box {
    background: #fceeee;
    padding: 40px 25px;
    text-align: center;
    position: relative;
}
.location_box::before,
.location_box::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
}
.location_box::before {
    top: 0;
    left: 0;
    border-top: 2px solid #c9a063;
    border-left: 2px solid #c9a063;
}
.location_box::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #c9a063;
    border-right: 2px solid #c9a063;
}
.location_box-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: clamp(22px, 2.9vw, 25px);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.location_box p {
    font-size: 15px;
    line-height: 2.1;
    letter-spacing: 0.008em;
    font-weight: 500;
}
.location_oogiya_inner_contents{
    padding: 0 25px;
    padding-top: 50px;
}
.location_service_price-table_title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding-bottom: 14px;
    border-bottom: 1px solid #dd6561;
}
.location_service_price-table_wrap {
    overflow-x: auto;
}
.location_service_price-table_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.location_service_price-table_table tr {
    border-bottom: 1px solid #e5e5e5;
}
.location_service_price-table_table th {
    width: 67%;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
}
.location_service_price-table_table th, .location_service_price-table_table td {
    padding: 20px 0px;
    text-align: left;
    vertical-align: middle;
    line-height: 1.4;
}
.location_service_price-table_table th, .location_service_price-table_table td {
    padding: 20px 0px;
    text-align: left;
    vertical-align: middle;
    line-height: 1.9;
}
.location_service_price-table_none {
    font-size: 16px;
    font-weight: 500;
}
.location_service_price_text {
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 1.1px;
    line-height: 1.6;
    color: #444444;
}
.location_service_price{
    margin-top: 50px;
}
.location_service_price-table_none .text_pink{
    font-weight: 600;
}
/* プランバッジUI */
.location_plan_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.location_plan_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}
.location_plan_badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: serif;
    letter-spacing: 0;
}
.location_plan_badge--a { background: #de5a55; }
.location_plan_badge--b { background: #c9a063; }
.location_plan_badge--c { background: #9e9e9e; }
.location_plan_body {
    flex: 1;
}
.location_plan_cond {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    line-height: 1.5;
    letter-spacing: 0.04em;
}
.location_plan_price_wrap {
    margin-top: 4px;
}
.location_plan_label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.06em;
}
.location_plan_amount {
    font-size: 18px;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.04em;
    line-height: 1.2;
}
.location_plan_amount--free {
    font-size: 18px;
    margin-top: 4px;
}
@media screen and (max-width: 768px) {
    .location_plan_cond {
        font-size: clamp(14px, 3.3vw, 15px);
    }
    .location_plan_amount {
        font-size: clamp(16px, 4vw, 18px);
    }
}
@media screen and (max-width: 480px) {
    .location_plan_badge {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
.lp_common-title_th .location_option_service{
    font-size: clamp(16px, 2.9vw, 18px);
    display: block;
    margin-top: 4px;
}
@media screen and (max-width: 768px) {
    .location_text_box {
        padding: 0 5%;
    }
    .location_oogiya {
        padding: 0 5%;
    }
    .location_catch {
        font-size: clamp(19px, 4.6vw, 30px);
        margin-bottom: clamp(18px, 3.7vw, 24px);
    }
    .location_text p {
        font-size: clamp(15px, 3.3vw, 18px);
    }
    .location_img--main {
        width: 85%;
        max-width: 100%;
    }
    .location_img--sub {
        width: 48%;
        max-width: 100%;
    }
    .location_box p {
        font-size: clamp(15px, 3.3vw, 18px);
    }
    .location_box-title{
        font-size: clamp(22px, 4.6vw, 30px); 
    }
    .location {
        padding: 20% 0 24%;
    }
    .location_service_price-table_table th {
        font-size: clamp(15px, 3.3vw, 17px);
    }
    .location_service_price-table_none {
        font-size: clamp(15px, 3.3vw, 17px);
    }
    .location_content{
        padding-top: clamp(95px, 22.2vw, 120px);
    }
}

@media screen and (max-width: 480px) {
    .location_box {
        padding: 40px 20px;
    }
    .location_content {
        margin-top: -62px;
    }
    .location_service_price-table_table th {
        padding-right: 5%;
        width: 58%;
    }
}

/* 流れ */
.flow {
    background: #f7f7f7;
    padding: 80px 35px 108px;
    position: relative;
}
.flow_heading {
    top: -24px;
    right: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
}
.flow_inner {
    margin: 0 auto;
}
.flow_text {
    font-size: 15px;
    line-height: 2.1;
    letter-spacing: 0.02em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
}
.flow_list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.flow_item {
    position: relative;
}
.flow_step {
    position: absolute;
    top: -36px;
    left: -15px;
    z-index: 2;
    width: 64px;
}
.flow_step img {
    width: 100%;
    display: block;
}
.flow_card {
    background: #fff;
    padding: 38px 35px;
}
.flow_image img {
    width: 100%;
    display: block;
}
.flow_content {
    margin-top: 23px;
    text-align: center;
}
.flow_item-title {
    font-size: clamp(22px, 2.9vw, 25px);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #de5a55;
}
.flow_desc {
    margin-top: 15px;
    font-size: 15px;
    line-height: 2.2;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-align: left;
}
.flow_arrow {
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #de5a55;
}
@media screen and (max-width: 768px) {
    .flow {
        padding: 16% 5% 24%;
    }
    .flow_text {
        font-size: clamp(15px, 3.3vw, 18px);
        margin-bottom: 11%;
    }
    .flow_step {
        top: -7%;
        left: -13px;
        width: min(14vw, 82px);
    }
    .flow_card {
        padding: 10% 6%;
    }
    .flow_item-title {
        font-size: clamp(22px, 4.6vw, 30px);
    }
    .flow_desc {
        margin-top: 3.3%;
        font-size: clamp(15px, 3.3vw, 18px);
    }
    .flow_list {
        gap: clamp(28px, 7vw, 40px);
    }
    .flow_arrow {
        border-left: 23px solid transparent;
        border-right: 23px solid transparent;
        border-top: 23px solid #de5a55;
    }
}
@media screen and (max-width: 480px) {
    .flow_arrow {
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 18px solid #de5a55;
    }
}

/* お客様の声 */
.slick-dots li {
    width: 15px;
}
.voice {
    background: #f7f7f7;
    padding: 80px 0px 95px;
    position: relative;
}
.voice_heading{
    top: -24px;
    right: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
}
.voice__inner {
    margin: 0 auto;
}
/* スライダー */
.voice-slider-wrap {
  position: relative;
}
.voice-slider {
    width: 100%;
}
.voice-slide {
    transition: 0.4s;
}
.voice-card {
    background: #fff;
    padding: 25px 30px 25px;
    position: relative;
    transition: 0.4s;
    transform: scale(0.9);
}
.voice-card::before,
.voice-card::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
}
.voice-card::before {
    top: 0px;
    left: 0px;
    border-top: 2px solid #c9a063;
    border-left: 2px solid #c9a063;
}
.voice-card::after {
    bottom: 0px;
    right: 0px;
    border-bottom: 2px solid #c9a063;
    border-right: 2px solid #c9a063;
}
/* 中央を大きく */
.slick-center .voice-card {
    transform: scale(1);
    opacity: 1;
}
/* 中央以外 */
.slick-slide:not(.slick-center) .voice-card {
    transform: scale(0.9);
}
.voice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* .voice-card:hover {
    opacity: .7;
} */
.voice-card__img {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}
.voice-card__img img {
    width: 90px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    max-width: 100%;
}
.voice-card__text p {
    font-size: clamp(13px, 3.3vw, 14px);
    line-height: 1.9;
    letter-spacing: 0.08em;
}
.voice-slider-wrap .slick-track {
    display: flex;
    align-items: center;
}
.voice-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #b9964f;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.voice-arrow img {
    width: 14px;
}
.voice-arrow-prev {
    left:13px;
}
.voice-arrow-next {
    right: 13px;
}
.slick-dots {
    bottom: -40px;
}
.slick-dots li button:before {
    font-size: 8px;
    color: #cccccc;
    opacity: 1;
}
.slick-dots li.slick-active button:before {
    color: #de5a55;
}
.slick-dots{
    list-style: none;
}
.voice-name{
    text-align: center;
    font-size: clamp(15px, 3.3vw, 16px);
    letter-spacing: 0.08em;
    font-weight: 600;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.voice-card__text_supplement{
    margin-top: 20px;
    padding-top: 23px;
    border-top: 1px solid #e5e5e5;
}
.voice-card__text_supplement p {
    font-size: clamp(13px, 3.3vw, 14px);
    line-height: 1.9;
    letter-spacing: 0.08em;
}
.voice-card__text_supplement .voice-name {
    text-align: left;
    margin-bottom: 9px;
}
.voice-card_box{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.voice-card__text{
    width: 100%;
}
.voice-card__text .pc{
    display: block;
}
.voice-card__text .sp{
    display: none;
}
@media screen and (max-width: 768px) {
    .voice {
        padding: 16% 0 24.2%;
    }
    .voice-card__text p {
        font-size: clamp(14px, 2.7vw, 16px);
    }
    .voice-name{
        font-size: clamp(16px, 2.7vw, 18px);
    }
    .voice-card__text_supplement p {
        font-size: clamp(14px, 2.7vw, 16px);
    }
    .voice-card__img img {
        width: 16vw;
    }
    .voice-arrow-prev {
        left:3%;
    }
    .voice-arrow-next {
        right: 3%;
    }
}
@media screen and (max-width: 480px){
    .slick-dots {
        bottom: -46px;
    }
    .voice_heading {
        top: -21px;
    }
    .voice {
        padding: 18% 0 24.2%;
    }
    .voice-card__text p {
        font-size: 3.4vw;
    }
    .voice-card__text_supplement p {
        font-size: 3.4vw;
    }
    .voice-card_box {
        gap: 10px;
    }
    .voice-name {
        font-size: 4vw;
    }
    .voice-card__img img {
        width: 20vw;
    }
    .voice-card__text .pc{
        display: none;
    }
    .voice-card__text .sp{
        display: block;
    }
    .voice-arrow-prev {
        left:10px;
    }
    .voice-arrow-next {
        right: 10px;
    }
        .voice-arrow-prev {
        left:13px;
    }
    .voice-card {
        padding: 25px 32px 25px;
    }
}

/* スマホ用フローティングボタン */
.sp-floating-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s;
}
.sp-floating-btn.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.floating-btn {
    width: 50%;
    text-decoration: none;
    border: 2px solid #dd6561;
    border-right: none;
    transition: all 0.6s ease;
    display: block;
    height: 100%;
    position: relative;
}
.floating-btn__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(9px, 2.3vw, 12px);
    height: 76px;
}
.floating-btn img {
    max-width: min(3.5vw,30px);
    height: auto;
    display: block;
}
.floating-btn span {
    font-size: clamp(15px, 3.9vw, 22px);
    font-weight: 700;
    letter-spacing: 0.3em;
}
.floating-btn--reserve {
    background: #dd6561;
}
.floating-btn--reserve span {
    color: #fff;
}
.floating-btn--tel {
    background: #fff;
}
.floating-btn--tel span {
    color: #dd6561;
}
.floating-btn:hover {
    border: 2px solid #e48481;
    border-right: none;
}
.floating-btn a::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.floating-btn a:hover::after {
    opacity: 0.2;
}
/* PCでは非表示 */
@media screen and (min-width: 769px) {
  .sp-floating-btn {
    display: none;
  }
}
@media screen and (max-width: 480px) {
    .floating-btn__inner {
        flex-direction: column;
        height: 71px;
    }
    .floating-btn img {
        max-width: 20px;
    }
}

.contact_lp_area.s_contact_lp_area {
    background: #fff;
    padding: 0px 35px;
    padding-top: 0;
    padding-bottom: 75px;
}
.s_contact_lp_area .contact_lp_box {
    background: #f7f7f7;
}
@media screen and (max-width: 768px) {
    .contact_lp_area.s_contact_lp_area {
        padding: 0px 5%;
        padding-top: 0;
        padding-bottom: 17%;
    }
}

/*振袖下層ページ*/
.page-template-page-collection .center-inner,
.single-furisode-item .center-inner{
		background: transparent;
}
@media screen and (max-width: 768px) {
    body.page-template-page-collection,
	body.single-furisode-item{
        background-image: url(../../wp-content/themes/oogiya/images/lp_img/main_bg.png);
    }
}
#furisode-title{
		padding: 45px 5%;
		text-align: center;
}
#furisode-title h1{
		font-size: clamp(22px, 5vw, 30px);
		font-family: "Zen Old Mincho", serif;
}
#furisode-title p{
		color: #de5a55;
}
.btn_area{
	text-align: center;
	padding: 5px;
	display: flex;
}
.btn_area .link_btn{
	background: #dd5a55;
	display: inline-block;
	padding: 15px;
	border: 2px solid #dd5a55;
	color: #fff;
	text-align: center;
	width: 100%;
	margin: 5px;
	text-decoration:none;
}

