body{
    font-size: 16px;
    color: #333333;
    font-family: serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-bottom: 100px;
    background-color: #ffffff;
    font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a{
    text-decoration: none;
    color: #fff;
}
li{
    list-style: none;
}
h2{
    font-size: 1.5rem;
}
.fadeUp{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}
.fadeUp.inView{
    transform: translateY(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeLeft{
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s;
}
.fadeLeft.inView{
    transform: translateX(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeRight{
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s;
}
.fadeRight.inView{
    transform: translateX(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeBlur{
    opacity: 0;
    filter: blur(10px);
    transition: all 0.8s;
}
.fadeBlur.inView{
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.3s;
}
/* header */
.header-fixed{
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    transition: all 0.5s;
    background-color: #EAF7F9;
}
.header-flex{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.cta-flex{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.logo{
    width: 20%;
}
.logo a{
    display: flex;  
    align-items: center;
    width: 100px;
    height: 50px;
    overflow: hidden;
    font-size: 30px;
    color: #fff;
}
.logo-img{
    width: 100%;
    height: 100%;
}
.logo-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ハンバーガーメニュー */
.hamb {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    position: relative;
    z-index: 300;
  }
  .black-bg ul{
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .black-bg ul li {
    text-align: center;
    padding: 20px 0;
  }
  
  .black-bg ul li a {
    color: #000;
    font-size: 18px; 
    font-weight: bold;
    display: block;
    text-decoration: none;
  }
  
  .line {
    position: absolute;
    width: 27px;
    height: 1px;
    background-color: #fff;
    box-shadow: #272727 1px 1px 1px;
}
.line:nth-child(1){
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
  } 

  .line:nth-child(2)  {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  
  .line:nth-child(3)  {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .black-bg {
    position: fixed;
    background: #EAF7F9;
    top: 0;
    right: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 100;
  }
  
  .black-bg.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  
  #hamb.active .line {
    background-color: #fff;
  }
  
  /*アニメーション*/
  .black-bg {
    transition: opacity 0.6s, visibility 0.35s, width 0.35s;
  }
  #hamb.active .line:nth-child(1) {
    top: 50%;
    left: 15%;
    transform: translateY(-50%) rotate(-45deg);
  }
  #hamb.active .line:nth-child(2) {
      opacity: 0;
      background: #FFF;
  }
  #hamb.active .line:nth-child(3) {
    bottom: 45%;
    left: 15%;
    transform: rotate(45deg);
  }
  .animation {
    transition: all .9s;
  }
  .lp-all{
    width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
}
/* video */
.video{
    position: relative;
    width: 100%;
    height: 0;
    margin: 0 auto;
    margin-bottom: 50px;
    padding-top: 56.25%;
}
.video iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.trouble .overlay {
    width: 100%;
    height: 100%;
  }
 .center-h{
    margin: 20px 0;
    line-height: 35px;
    color: #048efe;
    text-align: center;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
 } 
  .orange-name{
    color: orange;
}
.big{
    font-size: 25px;
}
/* faq-content */
.faq-section {
    max-width: 600px;
    margin: 40px auto;
    font-family: sans-serif;
  }
  
  .faq-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .faq-item {
    border-bottom: 1px solid #ddd;
    border-radius: 4px;
    /* margin-bottom: 1em; */
    overflow: hidden;
}
.faq-section .faq-item:first-of-type {
    border-top: 1px solid #ddd;

  }
  
  
  .faq-question {
    padding: 0.5em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    /* background: #f7f7f7; */
  }
  
  .faq-answer {
    display: none;
    padding: 0.5em;
  }
  .faq-iframe{
    width: 100%;
  }
  .faq-iframe iframe{
    width: 100%;
    object-fit: contain;
  }
  /* 矢印アイコン */
  .arrow {
    float: right;
    transition: transform 0.3s ease;
  }
  
  /* 開いた状態を表すクラス */
  .open .arrow {
    transform: rotate(180deg);
  }
  .faq-blue{
    color: blue;
    border-bottom: 1px solid blue;
  }
  
/*first-price*/
.first-price {
    width: 95%;
    height: 100%;
    box-shadow: 1px 1px 5px #000;
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 50px;
    position: relative; /* Positioning context for the trial offer */
}

.first-price-top {
    width: 100%;
    background-color: green;
    color: #fff;
    text-align: center;
    padding-top: 40px;
    border-radius: 10px 10px 0 0;
}

.first-price-top h3 {
    display: flex;
    justify-content: center;
    align-items: end;
    margin: 0 auto;
    font-size: 50px;
    line-height: 1;
}

.title-box, .title-en {
    display: inline-block;
    vertical-align: middle;
}

.title-box {
    color: #0A6836;
    background-color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 5px;
    margin-right: 20px;
    line-height: 1;
}

.title-en {
    position: relative;
    font-size: 20px;
    line-height: 1;
}

.tax {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
}

.first-price-top > p {
    padding-top: 20px;
    font-size: 35px;
    font-weight: bold;
}

.p-small {
    font-size: 25px;
}

.first-price-bottom {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    background-color: #fff;
}

.first-price-bottom h3 {
    font-size: 25px;
    text-align: center;
}

.title-box2 {
    background-color: green;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.first-price-bottom > p {
    padding: 20px 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    width: 95%;
    display:block;
    margin: 0 auto;
    text-align: left;
}

.p-red {
    color: red;
}
.abc span{
    font-size: 18px;
}
.cta-first-price {
    width: 150px;
    height: 50px;
    background-color: rgb(17, 237, 13);
    margin: 0 auto;
    display: block;
    line-height: 50px;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    box-shadow: #000 1px 1px 3px;
    color: #000;
    margin-bottom: 30px;
}

/* Styling for the trial offer in the top-right corner */
.trial-offer {
    position: absolute;
    top: -40px;
    right: 0;
    background-color: rgb(114, 180, 15); /* Red background */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-align: right;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.trial-offer:before {
    content: '';
    position: absolute;
    top: 100%;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgb(114, 180, 15);
}
.trial-offer div{
    font-size: 16px;
}
.trial-offer span{
    font-size: 20px;
}
/* video */
.lp1{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}
.lp1 div{
    width: 100%;
    height: 100%;
}
.lp1 video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp1 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lp1 h2{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #ff8c00;
    width: auto;
    text-align: start;
    /* -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl; */
    /* text-shadow: #848080 1px 1px 3px; */
    font-size: 40px;
    /* bottom: 0;
    right: 10px; */
}
.lp1 h2 .horizontal {
    writing-mode: horizontal-tb; /* Overrides the vertical writing mode */
    display: inline-block; /* Ensures the span is treated as inline for text flow */
    font-size: 40px; /* Optional: adjust size to make it more prominent */
    line-height: 1; /* Adjust for better vertical alignment */
    margin: 0 5px; /* Optional: spacing around the horizontal text */
}
.yellow{
    color: yellow;
    font-size: 35px;
}
.lp1 h3{
    position: absolute;
    bottom: 5%;
    right: 5%;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    text-shadow: #000 1px 1px 3px;
}
.price-cta-all{
    width: 100%;
    margin-top: 20px;
    font-size: 20px;
    text-align: center;
}
.price-cta-all-flex{
    width: 80%;
    display: flex;
    justify-content: space-around;
    padding-bottom: 30px;
    margin: 0 auto;
    margin-top: 20px;
}
.price-cta-all-flex a{
    width: 45%;
    height: 50px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    box-shadow: #5d5d5d 1px 1px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-cta-all-flex span{
    font-size: 14px;
}
.cta-color{
    background: linear-gradient(135deg, #24ba29 0%, #38c212 100%); /* 青紫のグラデーション */
}
.cta-color span{
    color: #fff;
}
/* b&a */
.banda{
    width: 100%;
    height: 100%;
    background-color: #F4EDD6;
    padding: 20px 0;
    
}
.banda h4{
    width: 90%;
    margin: 0 auto;
}
.banda1{
    width: 90%;
    height: 100%;
    padding: 20px 10px;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}
.banda1 > div{
    width: 45%;
}
.banda-img{
    width: 100%;
    height: 180px;
}
.banda-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banda-p{
    width: 90%;
    margin: 0 auto;
    padding-top: 10px;
}
/* center-video */
.center-video{
    width: 90%;
    height: 500px;
    margin: 0 auto;
    margin-top: 30px;
    box-shadow: #092A2E 1px 1px 10px;
    border-radius: 30px;
}
.center-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
/* voice */
.voice{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 50px;
}
.voice .concept-title{
    margin-bottom: 100px;
}
.voice h3{
    font-size: 40px;
}
.voice .concept-title span{
    color: rgba(0, 0, 0, 0.5);
}
.voice-ul{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.voice-ul li{
    width: 90%;
    background-color: #fff;
    border-radius: 10px;
    font-size: 16px;
    padding: 30px;
    padding-bottom: 100px;
    position: relative;
    margin: 0 auto;
    background-color: #EAF7F9;
    box-shadow: #3C3C3C 1px 1px 10px;
}
.voice-ul h4{
    display: flex;
    align-items: center;
    padding: 20px 0;
    width: 100%;
}
.category span{
    background-color: #626161;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    padding: 7px;
}
.voice-ul p{
    padding-top: 30px;
    line-height: 30px;
    text-shadow: #fff 1px 1px 5px;
}
.orange{
    width: 30px;
    height: 30px;
    display:block;
    border-radius: 50%;
    background-color: orange;
    line-height: 30px;
    text-align: center;
    color: #fff;
    margin-right: 20px;
}
.sky-blue{
    width: 30px;
    height: 30px;
    display:block;
    border-radius: 50%;
    background-color: skyblue;
    line-height: 30px;
    text-align: center;
    color: #fff;
    margin-right: 20px;
}
.purple{
    width: 30px;
    height: 30px;
    display:block;
    border-radius: 50%;
    background-color: purple;
    line-height: 30px;
    text-align: center;
    color: #fff;
    margin-right: 20px;
}
.sky-blue{
    width: 30px;
    height: 30px;
    display:block;
    border-radius: 50%;
    background-color: skyblue;
    line-height: 30px;
    text-align: center;
    color: #fff;
    margin-right: 20px;
}
.star5_rating{
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #CCCCCC; /* グレーカラー 自由に設定化 */
    /*font-size: 30px; フォントサイズ 自由に設定化 */
}

.star5_rating:before, .star5_rating:after{
    content: '★★★★★';
}

.star5_rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffcf32; /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
/* price */
.price{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
    width: 90%;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 50px;
    box-shadow: #000 1px 1px 5px;
    border-radius: 10px;
    background-color: #fff;
}
.price h2{
    display: block;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: #062E46;
    color: #fff;
    border-radius: 10px 10px 0 0;
    text-shadow: 1px 1px 3px #3C3C3C;
}
.price-img{
    width: 100%;
    height: 200px;
}
.price-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.price li{
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.price-content{
    width: 100%;
    background-color: #fff;
}
.price-content-a{
    padding: 40px 10px;
}
.price-content-a h4{
    font-size: 25px;
    padding-bottom: 10px;
}
.price h3{
    display: flex;
    align-items: center;
    font-size: 22px;
    padding: 10px;
}
.price-start{
    font-size: 25px;
    padding-right: 15px;
}
.zei{
    padding-left: 10px;
    font-size: 15px;
}
.price-content-a ul{
    width: 90%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    background-color: beige;
    color: #000;
    border: #000 1px solid;
}
.price-content-a li{
    width: 50%;
    height: 100%;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
}
.price-content-a li:nth-child(1){
    border-right: 1px solid #000;
}
#price {
    scroll-margin-top: 100px; /* 固定ヘッダーの高さなどに合わせて調整 */
  }
#staff{
    scroll-margin-top: 100px; /* 固定ヘッダーの高さなどに合わせて調整 */
}
.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    /* 初期状態は1％分だけ女性色にしておく(3.6deg) */
    background: conic-gradient(#ff69b4 3.6deg, #6495ed 3.6deg);
  }

  .legend {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
  }

  .legend span {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 50%;
  }

  .female-color {
    background: #ff69b4; 
  }

  .male-color {
    background: #6495ed;
  }
/* end_all */
.end_all{
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
/* Q&A */
.q_a{
    width: 90%;
    margin-bottom: 60px;
    color: #092A2E;
    background-color: #fff;
    padding: 50px 0;
    margin: 0 auto;
}
.q_a h2{
    text-align: center;
    padding-bottom: 20px;
}
.q_a span{
    font-size: 16px;
}
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border-bottom: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.q_a-title{
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    line-height: 2rem;
    font-weight: normal;
    padding: 3% 3% 3% 30px;
    transition: all .5s ease;
    display: flex;
}
.q_a-title span{
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.5);
    opacity: 0.3;
    margin-right: 20px;
}
/*アイコンの＋と×*/
.q_a-title::before,
.q_a-title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #092A2E;
    
}
.q_a-title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.q_a-title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.q_a-title.close::before{
  transform: rotate(45deg);
}

.q_a-title.close::after{
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    color: #092A2E;
  margin:0 3% 3% 3%;
    padding: 3%;
}
  /* 全体のスタイル */
.access {
    width: 100%;
    height: 100%;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.map {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease-in-out;
    padding-bottom: 30px;
}

/* マップコンテナのホバー時アクション */
.map:hover {
    transform: translateY(-10px); /* ホバー時に少し浮く動き */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* 影の追加 */
}

.title-map {
    text-align: center;
}

.title-map h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.title-map span {
    font-size: 18px;
}

/* iframe (Googleマップ) のスタイル */
.iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px; /* 角を丸く */
    border: none;
    transition: transform 0.3s ease-in-out;
}
/* iframeのホバー時のアクション */
.iframe:hover {
    transform: scale(1.05); /* 少し拡大する動き */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
/* テーブル全体のデザイン */
table {
    width: 60%; /* テーブル幅を少し広く */
    text-align: center;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden; /* 角を丸くした際にテーブルの枠が飛び出さないように */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* テーブルに軽い影を追加 */
    transition: transform 0.3s ease-in-out;
}
/* テーブル行のホバー時アクション */
table tr:hover {
    background-color: #ffe4b3; /* ホバー時に行の背景色が変わる */
}
/* テーブルのヘッダー部分のデザイン */
table tr:first-child td {
    background-color: #c3c3c3;
    color: #272727;
    font-weight: bold;
}
/* テーブルの内部要素 */
tbody {
    background-color: #fff;
}
td {
    border: #000 1px solid;
    padding: 15px;
    font-size: 16px;
    color: #272727;
    transition: background-color 0.3s ease-in-out;
}
footer{
    width: 100%;
    height: 100%;
}
footer p{
    width: 100%;
    text-align: center;
}
.red{
    background-color: rgb(31, 173, 255);
    color: #fff;
}
.blue{
    background-color: rgb(255, 127, 148);
    color: #fff;
}
table tr:first-child .red{
    background-color: rgb(0, 141, 223);
}
table tr:first-child .blue{
    background-color: rgb(255, 72, 103);
}
/* CTAコンテナのスタイル */
.cta-container {
    width: 300px;
    display: flex;
    justify-content: flex-end; /* 3つのCTAを均等に配置 */
    padding: 5px 0;
    z-index: 100;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05); /* 上部に軽い影を追加 */
    transition: background-color 0.3s ease-in-out;
    gap: 10px;
}

/* CTAボタンのベーススタイル */
.cta {
    width: 45%; /* 3つのCTAボタンの幅を均等に */
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    border-radius: 10px; /* ボタンを丸く */
    text-decoration: none;
    transition: all 0.3s ease; /* 全体的なトランジション */
    box-shadow:1px 1px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* 背景アニメーション用の擬似要素 */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%);
    transform: translate(-50%, -50%);
    transition: transform 0.6s ease;
    opacity: 0;
}

/* ホバー時のアクション */
.cta:hover {
    transform: translateY(-5px); /* 少し上に浮かぶ効果 */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* ホバー時に影を濃く */ /* テキストの間隔を広げて視認性を高める */
}

.cta:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* 各CTAボタンのグラデーション背景を設定 */
.cta.cta-1 {
    background: linear-gradient(135deg, #02df1b 0%, #00a445 100%);
    background-color: #fff;
    color: #fff;
}

.cta.cta-2 {
    background: linear-gradient(135deg, #FEA104 0%, #fd6000 100%);
    /* background-color: #fff; */
    color: #fff;
}

.cta.cta-2:hover {
    color: #000;
    background-color: #fff; /* ホバー時に少し濃く */
    border: 1px solid #000;
}

.cta.cta-3 {
    background: linear-gradient(135deg, #048efe 0%, #4c00fd 100%); 
    /* background-color: #5020ff; */
    color: #fff;
}

.cta.cta-3:hover {
    color: #000;
    background-color: #fff; /* ホバー時に少し濃く */
    border: 1px solid #000;
}

/* ボタンのテキストに軽い影を追加して立体感を出す */
.cta span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* ホバー時に文字が少し浮き上がる */
.cta:hover span {
    transform: translateY(-3px);
}

/* CTAボタンを押しやすくするアニメーション (脈打つ効果) */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* 少し大きくして注目させる */
    }
    100% {
        transform: scale(1);
    }
}

/* 初期状態でレスポンシブテキストを非表示 */
.responsive-text {
    display: none;
}

/* デスクトップサイズの時の表示 */
.desktop-text {
    display: inline;
}
.reserve-cta{
    width: 100%;
    height: 100%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 20px 0;
}
.reserve-cta-top{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.reserve-cta-top h2{
    width: 100%;
    text-align: center;
    font-size: 16px;
}
.reserve-cta-top a{
    background: linear-gradient(135deg, #FEA104 0%, #fd6000 100%);
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.tap-tel{
    width: 60%;
}
.tap{
    width: 30%;
    font-size: 12px;
    line-height: 10px;
    border: 1px solid #fff;
    padding: 3px;
}
.reserve-cta-top p{
    width: 100%;
    text-align: center;
}
.reserve-cta a{
    width: 300px;
    height: 50px;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    box-shadow: 1px 1px 5px #0c552e;
    font-weight: bold;
    border-radius: 10px;
}
.reserve-cta-medium{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.reserve-cta-medium a{
    background: linear-gradient(0deg, #fff 0%,#dce1fd 50%, #fff 100%);
    margin-top: 10px;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #000;
}
.reserve-cta-bottom{
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
}
.staff{
    width: 100%;
    height: 100%;
}
.staff-all{
    width: 60%;
    height: 200px;
    background-color: #EBE6CD;
    box-shadow: #092A2E 1px 1px 3px;
    position: relative;
    margin: 30px auto;
    border-radius: 20px;
}
.staff-name{
    position: absolute;
    top: 20%;
    left: 5%;
    font-weight: bold;
    font-size: 25px;
    z-index: 10;
    color: #fff;
    text-shadow: #000 1px 1px 3px;
}
.staff-style{
    position: absolute;
    top: 5%;
    right: 5%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-position: top 0 right 0;
    background-size: cover;
}
.staff1{
    background-image: url(../img/staff1.jpg);
}
.staff2{
    background-image: url(../img/staff2.jpg);
}
.reserve-abc{
    width: 600px;
    height: 500px;
    margin: 0 auto;
}
.reserve-abc iframe{
    width: 100%;
    height: 100%;
}
   /* ======== CTA セクション ======== */
   .cta1 {
    padding: 60px 20px;
    background: linear-gradient(135deg, #00aeff, #2b01ff);
    text-align: center;
    color: #fff;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    margin-bottom: 50px;
  }
  .cta1.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .cta1 h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff6ec4, #ffcc00, #00ffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textPulse 3s ease infinite;
  }
  .cta1 p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(45deg, #ff00cc, #ffcc00);
    background-size: 200% 200%;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: buttonPulse 2s infinite;
  }
  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
  @keyframes textPulse {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  @keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }
    .price {
      padding: 60px 10px;
      background: #F0F7FA;
    }
    .price h2 {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #1A237E;
    }
    .price table {
      width: 90%;
      max-width: 800px;
      margin: 0 auto;
      border-collapse: collapse;
    }
    .price th, .price td {
      border: 1px solid #ccc;
      padding: 12px 15px;
      font-size: 1.1em;
    }
    .price th {
      background: linear-gradient(90deg, #66EEFD, #86B8FD);
      color: #fff;
    }
    .price td {
      background: #F0F7FA;
      color: #333;
    }

/* 480px以下の画面での対応 */
@media (max-width: 480px) {
    .header-fixed{
        width: 100%;
        height: 50px;
    }
    .lp-all{
        width: 100%;
    }
    .evi{
        height: auto;
    }
    .hamb{
        height: 30px;
    }
    .black-bg {
        width: 80vw;
    }
    .logo span{
        padding-left: 0;
    }
    .logo-img{
        width: 200px;
    }
    .logo a{
        font-size: 20px;
    }
    .top{
        height: 95vh;
    }
    .lp1 h2{
        top: 15%;
        width: 100%;
        text-align: center;
        font-size: 25px;
    }
    .needle-container{
        left: 10%;
    }
    .needle{
        height: 50px;
    }
    .scroll-text{
        font-size: 12px;
    }
    .cta-container {
        flex-direction: row; /* 小さい画面でも横並びを維持 */
        padding: 8px;
        gap: 0;
    }
    .cta {
        padding: 8px; /* ボタンの余白をさらに減らす */
        font-size: 10px; /* フォントサイズをさらに小さく */
        margin: 0 5px; /* ボタン間の余白を狭める */
    }
    .title {
        position: static; /* absoluteからstaticに変更して順序を調整 */
        transform: none; /* translateYの無効化 */
        text-align: center; /* タイトルを中央に配置 */
    }
    .title h2{
        position: absolute;
        top: 45%;
        right: 10%;
        transform: translateY(-50%);
        writing-mode: vertical-rl;
        text-align: right;
        text-shadow: #272727 1px 1px 10px;
    }
    .highlight{
        text-shadow: #272727 1px 1px 10px;
    }
    .slider-top {
        position: static; /* スライダーも順序通りに表示 */
        width: 100%; /* 幅を調整 */
        margin-bottom: 20px; /* スライダー下に余白を追加 */
        padding-top: 100px;
    }
    .slider-top li{
        width: 400px;
        height: 400px;
    }
    .slider-top img{
        width: 100%;
        height: 100%;
    }
    .title h2 {
        font-size: 20px;
    }
    .highlight{
        font-size: 30px;
    }
    .title p {
        font-size: 16px;
        padding-top: 20px;
    }
    .voice{
        width: 80%;
        margin: 0 auto;
    }
    .voice-ul li{
        width: 100%;
    }
    .voice-ul h4{
        padding: 0;
    }
    .voice-ul p{
        padding: 0;
    }
    .star5_rating{
        margin-bottom: 30px;
    }
    .concept{
        height: 100%;
        padding-bottom: 150px;
    }
    .cta-concept {
        display: flex;               /* フレックスボックスで中央寄せ */
        flex-direction: row;         /* 横並びにする */
        justify-content: center;     /* 中央寄せ */
        align-items: center;         /* 縦の中央揃え */
        width: 100%;
        max-width: 150px;            /* 最大幅を少し狭める */
        margin: 20px auto;           /* 中央揃えにするためのマージン */
    }

    .cta-concept p {
        padding-right: 5px;          /* 小さい画面では間隔を狭める */
    }

    .play-button {
        border-left: 8px solid white; /* 小さい画面ではボタンも少し小さく */
    }
    .reason{
        width: 100%;
    }
    .concept-title h3 {
        font-size: 24px;
    }

    .concept-title span {
        font-size: 16px;
    }
    .concept-content{
        text-align: start;
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }
    .concept-content h4{
        width: 100%;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
    }
    .concept-content p{
        width: 100%;
        padding-right: 0;
        font-size: 12px;
    }
    .none{
        display: none;
    }
    .slider-concept li{
        width: 100px;
        height: 100px;
        padding-right: 10px;
    }
    .list-title{
        font-size: 20px;
    }
    .menu-list1{
        width: 100%;
    }
    .menu-list1 li{
        width: 100%;
    }
    .click{
        width: 20%;
        height: 30px;
        font-size: 12px;
        line-height: 30px;
    }
    td{
        padding: 10px;
        font-size: 13px;
    }
    .q_a-title{
        font-size: 13px;
        display: flex;
    }
    .q_a-title div{
        width: 70%;
    }
    .desktop-text {
        display: none;
    }
    .responsive-text {
        display: inline;
    }
    .menu-price{
        height: 100%;
    }
    .menu-flex{
        flex-direction: column-reverse;
    }
    .menu-right-img{
        width: 100%;
        height: 250px;
    }
    .menu-left-flex{
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }
    .menu-left-flex h3{
        font-size: 30px;
    }
    .menu-left-flex h4{
        font-size: 20px;
    }
    .menu-left-flex p{
        text-align: left;
        font-size: 16px;
        line-height: 20px;
    }
    .menu-left-flex p br{
        display: none;
    }
    .menu-left-flex a{
        margin: 0 auto;
        margin-top: 30px;
        height: 50px;
    }
    .title-map span{
        font-size: 16px;
    }
        .price{
            display: flex;
            align-items: flex-end;
        }
        .b{
            font-size: 14px;
        }
        .s{
            font-size: 10px;
        }
        .cta1 h2{
            font-size: 25px;
        }
}