@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/


/*------------------------------------------------------------------
　header
------------------------------------------------------------------*/

/*  header
------------------------------------------------------------------*/
header{
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    width: 100%;
    padding: 10px 30px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    z-index: 1000;
}
@media screen and (max-width:991px){
    header{
        padding: 0 0 0 10px;
        column-gap: 16px;
    }
}
/*  header-logo
------------------------------------------------------------------*/
.header-logo{}
.header-logo img{
    width: 100%;
    height: auto;
}
@media screen and (max-width:991px){
    .header-logo{
        width: 180px;
        margin-right: auto;
    }
}
/*  header-gnav
------------------------------------------------------------------*/
.header-gnav{
    flex-shrink: 0;
}
@media screen and (max-width:991px){
    .header-gnav{
        position: fixed;
        top: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        height: 100vh;    
        padding: 80px 0 120px;
        background: #fff;
        overflow-y: scroll;
        visibility: hidden;
        opacity: 0;
        transition: .2s ease-out;
        z-index: 3;
    }
    .header-gnav.open{
        transform: translateX(-100%);
        visibility: visible;
        opacity: 1;
    }
    .header-gnav::-webkit-scrollbar{
        display: none;
    }
}
/*  header-gnav-logo
------------------------------------------------------------------*/
.header-gnav-logo{
    display: none;
}
@media screen and (max-width:991px){
    .header-gnav-logo{
        display: block;
        margin-bottom: 8px;
        padding: 0 12px;
        text-align: center;
    }
}
/*  header-gnav-top
------------------------------------------------------------------*/
.header-gnav-top{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 24px;
    margin-bottom: 12px;
}
@media screen and (max-width:991px){
    .header-gnav-top{
        display: block;
        order: 2;
    }
}
/*  header-gnav-tel
------------------------------------------------------------------*/
.header-gnav-tel{
    display: flex;
    align-items: center;
    column-gap: .5em;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.header-gnav-tel i{
    font-size: .8em;
    color: var(--primary-color);
}
@media screen and (max-width:991px){
    .header-gnav-tel{
        justify-content: center;
        margin-bottom: 30px;
        font-size: 1.75rem;
        text-align: center;
    }
}
/*  header-gnav-sub
------------------------------------------------------------------*/
.header-gnav-sub{
    display: flex;
    align-items: center;
    column-gap: 10px;
}
@media screen and (max-width:991px){
    .header-gnav-sub{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 8px;
        padding: 0 20px;
    }
}
/*  header-gnav-sub-item
------------------------------------------------------------------*/
.header-gnav-sub-item{
    position: relative;
    display: block;
    padding: .9em 2em;
    background: var(--black-color);
    font-size: .875rem;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
.header-gnav-sub-item.green{
    background: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-sub-item:hover{
        background: var(--accent-color);
        color: var(--black-color);
    }
}
@media (hover:none) {
    .header-gnav-sub-item:active{
        background: var(--accent-color);
        color: var(--black-color);
    }
}
@media screen and (max-width:991px){
    .header-gnav-sub-item{
        padding: 1em 2em;
        text-align: center;
    }
}
/*  header-gnav-bottom
------------------------------------------------------------------*/
.header-gnav-bottom{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 40px;
}
@media screen and (max-width:991px){
    .header-gnav-bottom{
        display: block;
        margin-bottom: 30px;
        order: 1;
    }
}
/*  header-gnav-main
------------------------------------------------------------------*/
.header-gnav-main{
    display: flex;
    align-items: center;
    column-gap: 40px;
}
@media screen and (max-width:991px){
    .header-gnav-main{
        display: block;
    }
}
/*  header-gnav-main-item
------------------------------------------------------------------*/
.header-gnav-main-item{
    position: relative;
    display: block;
    padding: .25em 0;
    line-height: 1.2;
}
/* アクティブ時動作 */
.header-gnav-main-item.active{
    color: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-main-item:hover{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .header-gnav-main-item:active{
        color: var(--primary-color);
    }
}
@media screen and (max-width:991px){
    .header-gnav-main-item{
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: .5em;
        height: 3.5em;
        padding: 0 .75em;
        border-bottom: 1px solid #bdbdbd;
    }
    .header-gnav-main-item::before{
        display: none;
    }
    .header-gnav-main-item::after{
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
    }
}
/*  header-gnav-dropdown
------------------------------------------------------------------*/
.header-gnav-dropdown{
    position: relative;
    z-index: 1;
}
@media screen and (max-width:991px){
    .header-gnav-dropdown > a::before{
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(3.5em - 1px);
        height: calc(3.5em - 1px);
        background: var(--primary-color);
        content: "＋";
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        cursor: pointer;
        z-index: 2;
    }
    .header-gnav-dropdown > a.open::before{
        content: "－";
    }
}
/*  header-gnav-dropdown-menu
------------------------------------------------------------------*/
.header-gnav-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    z-index: 1;
}
@media screen and (max-width:991px){
    .header-gnav-dropdown-menu{
        position: relative;
        top: initial;
        left: initial;
        transform: initial;
        box-shadow: initial;
        width: 100%;
    }
}
/*  header-gnav-dropdown-item
------------------------------------------------------------------*/
.header-gnav-dropdown-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 3.25em;
    padding: 0 2em 0 1em;
    background: #fff;
    border-bottom: 1px solid #aaa;
    font-size: .875rem;
    line-height: 1.2;
    transition: .2s ease-out;
}
.header-gnav-dropdown-item::after{
    position: absolute;
    top: calc(50% - .5em);
    right: 16px;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-gnav-dropdown-item.active{
    background: var(--primary-color);
    color: #fff;
}
.header-gnav-dropdown-item.active::after{
    right: 0;
}
@media (hover:hover) {
    .header-gnav-dropdown-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .header-gnav-dropdown-item:hover:after{
        right: 0;
    }
}
@media screen and (max-width:991px){
    .header-gnav-dropdown-item{
        height: 3.25em;
        background: var(--primary-light-color);
        font-size: .75rem;
    }
}
/*  header-gnav-sns
------------------------------------------------------------------*/
.header-gnav-sns{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.header-gnav-sns > li > a{
    display: block;
    width: 32px;
    height: 32px;
}
.header-gnav-sns > li > a > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:991px){
    .header-gnav-sns{
        display: none;
    }
}
/*  header-sns
------------------------------------------------------------------*/
.header-sns{
    display: none;
}
@media screen and (max-width:991px){
    .header-sns{
        display: flex;
        align-items: center;
        column-gap: 20px;
    }
    .header-sns > li > a{
        display: block;
        width: 32px;
        height: 32px;
    }
    .header-sns > li > a > img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        aspect-ratio: 1 / 1;
        background: var(--primary-color);
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .lines {
        position: relative;
        width: 24px;
        height: 16px;
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: .2s ease-out;
    }
    .header-hamburger .lines .line#line1 {
        top: 0;
    }
    .header-hamburger .lines .line#line2 {
        top: calc(50% - 1px);
    }
    .header-hamburger .lines .line#line3 {
        bottom: 0;
    }
    /* オープン時動作 */
    .header-hamburger.open .lines .line#line1 {
        transform: rotate(-135deg);
        top: 6px !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(135deg);
        top: 6px !important;
    }
}

/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 2;
}
.header-overlay.open{
    opacity: 1;
    visibility: visible;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 100px 0 50px;
    background: var(--black-color);
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding: 60px 0;
    }
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
    margin-bottom: 90px;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: initial;
        margin-bottom: 60px;
    }
}
/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    width: 280px;
    filter: brightness(0) invert(1);
    line-height: 1;
    margin-bottom: 30px;
}
@media screen and (max-width:991px){
    .footer-logo{
        margin: 0 auto 30px;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-address{
        margin-bottom: 20px;
        text-align: center;
    }
}
/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    color: #ccc;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-tel{
        text-align: center;
    }
}
/*  footer-nav-wrapper
------------------------------------------------------------------*/
.footer-nav-wrapper{
    display: flex;
    align-items: flex-start;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .footer-nav-wrapper{
        display: none;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    display: block;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-nav-item:active{
        color: var(--accent-color);
    }
}
/*  footer-nav-sub
------------------------------------------------------------------*/
.footer-nav-sub{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-top: 20px;
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-sub-item{
    display: block;
    font-size: .875rem;
    color: #ccc;
    line-height: 1.2;
    transition: .2s ease-out;
}
.footer-nav-sub-item::before{
    content: "-";
    margin-right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-sub-item:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-nav-sub-item:active{
        color: var(--accent-color);
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:991px){
    .copyright{
        text-align: center;
    }
}

/*-----------------------------------------------------------------
  common store
------------------------------------------------------------------*/
.common-store{
    padding: 80px 0;
    background: url(../images/common/store-bg.jpg) no-repeat center / cover;
    text-align: center;
}
@media screen and (max-width:1399px){
    .common-store{
        padding: 60px 0;
    }
}
@media screen and (max-width:767px){
    .common-store{
        padding: 40px 0;
    }
}
@media screen and (max-width:575px){
    .common-store{
        padding: 20px 0;
    }
}

/*------------------------------------------------------------------
  common contact
------------------------------------------------------------------*/

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 100px 0;
    z-index: 1;
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 80px 0;
    }     
}
/*  common-contact-list
------------------------------------------------------------------*/
.common-contact-list{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    max-width: 830px;
    margin: 0 auto;
    z-index: 1;
}
@media screen and (max-width:991px){
    .common-contact-list{
        column-gap: 10px;
    }
}
@media screen and (max-width:767px){
    .common-contact-list{
        grid-template-columns: 1fr;
        row-gap: 12px;
    }
}
/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: var(--black-color);
    color: #fff;
    text-align: center;
}
.common-contact-tel .title{
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1;
}
.common-contact-tel .num{
    margin-bottom: 8px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}
.common-contact-tel .time{
    font-size: .75rem;
    color: #ccc;
    line-height: 1;
}
@media screen and (max-width:767px){
    .common-contact-tel .title{
        font-size: 1rem;
    }
    .common-contact-tel .num{
        font-size: 1.75rem;
    }
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    height: 120px;
    background: var(--black-color);
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-mail:hover{
        background: var(--primary-color);
    }
}
@media (hover:none) {
    .common-contact-mail:active{
        background: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .common-contact-mail{
        height: 90px;
        font-size: 1.125rem;
    }
}


/*-----------------------------------------------------------------
  common page
------------------------------------------------------------------*/

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 80px 0 ;
    background: var(--primary-light-color);
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-top{
        padding: 60px 0 ;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 50px 0;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    z-index: 3;
}
@media screen and (max-width:1399px){
    .page-top-title{ font-size: 2.75rem;}
}
@media screen and (max-width:1199px){
    .page-top-title{ font-size: 2.5rem;}
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 2.25rem;}
}
@media screen and (max-width:767px){
    .page-top-title{ font-size: 2rem;}
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 1.75rem;}
}
@media screen and (max-width:374px){
    .page-top-title{ font-size: 1.5rem;}
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 10px;
    font-size: 12px;
    line-height: 1.5;
}
.breadcrumb > li{
    color: #999;
}
.breadcrumb > li + li::before{
    display: inline-block;
    margin-right: 10px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.breadcrumb > li > a{
    color: var(--primary-color);
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: var(--sub-color);
}
@media screen and (max-width:767px){
    .breadcrumb{
        bottom: 5px;
        font-size: 11px;
    }
}

/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.paging-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #aaa;
    color: #898989;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    transition: .2s ease-out;
}
.paging-text.current{
    background:  var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background:  var(--primary-color);
        border-color: var(--primary-color);
    }
    .paging-text:hover a{
        color:  #fff !important;
    }
}
@media screen and (max-width:767px){
    .paging{
        column-gap: 5px;
    }
    .paging-text{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/*------------------------------------------------------------------
  pagetop-btn
------------------------------------------------------------------*/
#pagetop-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 2;
}
#pagetop-btn img{
    width: 52px;
}
#pagetop-btn img:hover {
    animation: rotates 0.7s linear infinite;
}
@keyframes rotates {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}
@media (max-width: 991px) {
    #pagetop-btn img{
        width: 40px;
        height: auto;
    }
}

/*  floating-cta
------------------------------------------------------------------*/
.floating-cta{
    position: fixed;
    bottom: 80px;
    right: 8px;
    width: 280px;
    padding: 20px;
    background: var(--primary-light-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,.5);
    text-align: center;
    transition: .3s ease-out;
    z-index: 100;
}
.floating-cta.hidden{
    transform: translateX(calc(100% + 8px));
    box-shadow: initial;
}
@media screen and (max-width:1199px){
    .floating-cta{
        bottom: 0;
        right: 0;
        width: 100%;
        padding: 12px 8px;
        box-shadow: 0 0 8px rgba(0,0,0,.3);
        border-radius: 0;
    }
    .floating-cta.hidden{
        transform: translateY(100%);
        box-shadow: initial;
    }
}
/*  floating-cta-title
------------------------------------------------------------------*/
.floating-cta-title{
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
}
@media screen and (max-width:1199px){
    .floating-cta-title{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .floating-cta-title{
        margin-bottom: 8px;
        font-size: .75rem;
    }
}
/*  floating-cta-btns
------------------------------------------------------------------*/
.floating-cta-btns{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
}
@media screen and (max-width:1199px){
    .floating-cta-btns{
        display: flex;
        column-gap: 8px;
        max-width: 500px;
        margin: 0 auto;
    }
}
/*  floating-cta-btn
------------------------------------------------------------------*/
.floating-cta-btn{
    position: relative;
    display: block;
    padding: .75em 2em;
    background: var(--accent-color);
    border-radius: 4px;
    text-align: center;
    line-height: 1.2;
    transition: .2s;
    z-index: 1;
}
.floating-cta-btn::after{
    position: absolute;
    top: 50%;
    right: .75em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s;
    z-index: 1;
}
.floating-cta-btn.black{
    background: var(--black-color);
    color: #fff;
}
@media (hover:hover) {
    .floating-cta-btn:hover{ background: var(--sub-color); color: #fff;}
    .floating-cta-btn:hover::after{ right: .3em;}
}
@media (hover:none) {
    .floating-cta-btn:active{ background: var(--sub-color); color: #fff;}
    .floating-cta-btn:active::after{ right: .3em;}
}
@media screen and (max-width:1199px){
    .floating-cta-btn{
        width: 100%;
    }
}
@media screen and (max-width:575px){
    .floating-cta-btn{
        font-size: .75rem;
    }
}
/*  floating-cta-close
------------------------------------------------------------------*/
.floating-cta-close{
    position: absolute;
    top: -20px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    background: var(--red-color);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}
@media screen and (max-width:1199px){
    .floating-cta-close{
        display: none;
    }
}
/*  floating-cta-open
------------------------------------------------------------------*/
.floating-cta-open{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    display: none;
    padding: 12px;
    background: var(--accent-color);
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,.3);
    writing-mode: vertical-lr;
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
}
.floating-cta-open.show{
    display: block;
}


/*-----------------------------------------------------------------
  フォーム表示項目切り替え関連
------------------------------------------------------------------*/
.switch-contents{
    display: none;
}