@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #2CBEA1;
    --linkhover-color: #9AEBDB;
    --back-color: #fff;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

.main-visual {
    padding: 0;
    background: url(../img/bg_main.png) no-repeat right top;
    background-size: cover;
/*    background: linear-gradient(45deg, #EFEFEF 0%, #EFEFEF 50%, #F5F5F5 50%, #F5F5F5 100%);*/
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 10px solid #00c3a8;
}
.header-content .logo {
    height: 140px;
    margin-top: -40px; /* 上を少しカットする調整用 */
    margin-left: 60px;
    margin-right: auto;
}
.banner-link {
    background: #00c3a8;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: -80px;
    margin-right: 50px;
    cursor: pointer;
}
.visual-content {
    padding: 0 40px;
    display: flex;
    justify-content: space-around;
    margin-top: 0;
    flex-wrap: wrap;
    height: 460px;
}
.text-block {
    flex: 1;
    padding-top: 60px;
    margin: 0 auto;
    text-align: center;
}
.text-block-inner {
    width: 72%;
    margin: 0 auto;

}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .text-block-inner {
        width: 100%;
        padding-top: 20px;
    }
}
.text-block p.h1sub {
    font-size: 24px;
    color: #00c3a8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.text-block p.h1sub::before,
.text-block p.h1sub::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #00c3a8;
    margin: 0px 0px -2px;
}
.text-block p.h1sub::before {
    transform: rotate(50deg);
}
.text-block p.h1sub::after {
    transform: rotate(-50deg);
}
.text-block h1 {
    font-size: 48px;
    font-weight: bold;
    color: #00c3a8;
}
.text-block h1 span.h1small {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding-left: 10px;
}
.text-block p.subtxt {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    text-align: left;
    display: block;
    width: 82%;
    margin: 0 auto;
}
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(-45deg, #2BBEA1 0%, #2BBEA1 50%, #2BD6B4 50%, #2BD6B4 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}
.cta-btn:hover {
    color: #fff;
    opacity: 0.8;
}
.image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 540px;
    margin-top: -160px; /* 上を少しカットする調整用 */
}
.device-group {
    max-width: 100%;
    height: auto;
    margin-top: -30px;
}

.visual-sub-content {
    background-color: rgba(43,190,161,0.1);
    padding: 30px 20px 30px 50px;
    color: #2CBEA1;
    font-weight: bold;
    font-size: 20px;
}

/* フローティングボタン共通 */
.floating-button {
    position: fixed;
    top: 20px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-color: #00c3a8;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-decoration: none;
}

.floating-text {
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  display: block;
}

/* アイコン画像 -未使用- */
/* .floating-button img {
    width: 48px;
    height: 48px;
} */

.app-intro, .app-intro2, .app-steps, .user-voices, .book-review, .developer {
    padding: 80px 40px;
}
.faq {
    padding: 80px 40px 0;
}
.app-intro, .app-intro2, .app-steps, .user-voices, .book-review, .developer, .develop-text, .voice-intro, .faq, .app-info, .step p {
    text-align: left;
}
.container {
    max-width: 1000px;
    margin: auto;
}
.app-intro {
    background: #fff;
    position: relative;
    padding-bottom: 30px;
    filter:drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.3));
    margin-bottom: 70px;
    z-index: 50;
}
.app-intro::after{
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #fff;
    left: 0;
    top: 100%;
}
.app-intro .container {
    display: block;
    justify-content: center;
    align-items: center;
}
.app-intro h2 {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #00c3a8;
}
.app-intro .intro-content {
    margin: 0 auto;
    text-align: center;
}
.app-intro .imageSP {
    margin: 0 auto;
    width: 392px;
    background: url(../img/pic_slide_phone.png) no-repeat center top ;
    background-size: cover;
    height: 520px;
    position: relative;
}

.app-intro .imageSP_bg {
    margin: 0 auto;
    width: 392px;
    background: url(../img/pic_image_phone.png) no-repeat center top ;
    background-size: cover;
    height: 520px;
    position: relative;
}
.app-intro .imageSP .imageSPinner {
    width:226px;
    height: 100vh;
    position: absolute;
    top: 7%;
    left: 21%;
}
/* 全体設定 */
.css-carousel-slider6 {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.css-carousel-slider6 img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

/* スライド設定 */
.css-carousel-slider6 .slide-wrap {
    width: 600%;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: 0;
    animation: css-carousel-slider6 30s infinite;
    animation-delay: 2s;
}
.css-carousel-slider6 .slide-wrap-main {
    width: 100%;
    z-index: 1;
    animation: css-carousel-slider-main6 30s infinite;
    animation-delay: 2s;
}
.css-carousel-slider6 .slide {
    width: 100%;
}

/* スライダーアニメーションの設定 */
@keyframes css-carousel-slider6 {
    0% { transform: translateX(0); }

    13.6% { transform: translateX(calc(1 / 6 * -100%)); }
    16.6% { transform: translateX(calc(1 / 6 * -100%)); }

    30.3% { transform: translateX(calc(2 / 6 * -100%)); }
    33.3% { transform: translateX(calc(2 / 6 * -100%)); }

    46.9% { transform: translateX(calc(3 / 6 * -100%)); }
    49.9% { transform: translateX(calc(3 / 6 * -100%)); }

    63.6% { transform: translateX(calc(4 / 6 * -100%)); }
    66.6% { transform: translateX(calc(4 / 6 * -100%)); }

    80.3% { transform: translateX(calc(5 / 6 * -100%)); }
    83.3% { transform: translateX(calc(5 / 6 * -100%)); }

    97% { transform: translateX(calc(6 / 6 * -100%)); }
    100% { transform: translateX(calc(6 / 6 * -100%)); }
}

@keyframes css-carousel-slider-main6 {
    0% { transform: translateX(100%); }
    83.3% { transform: translateX(100%); }
    97% { transform: translateX(0%);}
}

.app-intro .textSP {
    margin: 20px auto 0;
}
.app-intro .textSP p {
    font-size: 20px;
    line-height: 1.4;
}

.app-intro .textSP p.txt01 {
    color: #505050;
}

.app-intro .textSP p.txt02 {
    color: #00c3a8;;
    font-weight: bold;
}


.app-intro2 {
    margin-top: 0;
    background: #fff;
    position: relative;
    padding-bottom: 30px;
    filter:drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.3));
    margin-bottom: 70px;
    z-index: 20;
}
.app-intro2::after{
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #ffffff;
    left: 0;
    top: 100%;
}
.app-intro2 .container {
    display: block;
    justify-content: center;
    align-items: center;
}
.app-intro2 h2 {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    padding-top: 30px;
    margin-bottom: 40px;
    color: #00c3a8;
}
.app-intro2 .intro-content {
    margin: 0 auto;
    text-align: center;
}
.app-intro2 .imagePerson {
    margin: 0 auto;
}

.app-intro2 .textBtn {
    margin: 20px auto 0;
}
.app-intro2 .textbtn {
    width: 100%;
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #2AD6B4;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}


.app-function {
    background: #e6f1ef;
    position: relative;
    margin-top: -70px;
    padding-top: 120px;
    padding-bottom: 50px;
    filter:drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.3));
    z-index: 18;
}
.app-function::after{
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #e6f1ef;
    left: 0;
    top: 100%;
}
.app-function .container {
    max-width: 100%;
    padding: 0;
}

.app-function h2 {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #00c3a8;
}
.app-function .function-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px auto;
    padding: 0 80px;
    background-color: rgba(43,190,161,0.1);
}
.function-image img {
    max-width: 180px;
}

.function-text {
    align-items: center;
    padding: 20px 30px;
}
.function-text h3 {
    display: inline-block;
    background-color: #2BBEA1;
    border-radius: 5px;
    padding: 5px 10px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.function-text h3 span {
    font-size: 16px;
    font-weight: bold;
}


.app-function-guide,
.app-function-guide2 {
    background: #fff;
    position: relative;
    padding-top: 120px;
    padding-bottom: 0px;
    filter:drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.3));
    margin-bottom: 70px;
    z-index: 20;
}
.app-function-guide::after,
.app-function-guide2::after{
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #fff;
    left: 0;
    top: 100%;
}
.app-function-guide .container,
.app-function-guide2 .container {
    display: block;
    text-align: center;
    align-items: center;
    padding-bottom: 40px;
}
.app-function-guide h2,
.app-function-guide2 h2 {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #00c3a8;
}
.app-function-guide h2 span,
.app-function-guide2 h2 span {
    font-weight: normal;
    color: #505050;
}


.app-steps {
    background: #fff;
    position: relative;
    margin-top: -70px;
    padding-top: 120px;
    padding-bottom: 30px;
    filter:drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.3));
    margin-bottom: 70px;
}
.app-steps::after{/* beforeでもafterでも*/
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);/* ココ */
    background-color: #fff;/* デモは青色の部分 */
    left: 0;
    top: 100%;
}
.app-steps .container {
    display: block;
    text-align: center;
    align-items: center;
    padding-bottom: 40px;
}
.app-steps h2 {
    text-align: center;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #00c3a8;
}

.app-steps h2 span {
    font-weight: bold;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.step {
    flex: 1;
    min-width: 200px;
    background: #fff;
    padding: 20px;
}



.user-voices {
    background: #F5F5F5;
    position: relative;
    margin-top: -70px;
    padding-top: 120px;
    padding-bottom: 30px;
    filter:drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.3));
}
.user-voices::after{/* beforeでもafterでも*/
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);/* ココ */
    background-color: #F5F5F5;
    filter:drop-shadow(0 4px 12px rgb(0 0 0 / .3));
    left: 0;
    top: 100%;
}


.user-voices h2 {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #00c3a8;
}

.voice-intro {
    width: 80%;
    margin: 0 auto 60px;
}

.voice-intro p.subtxt {
    color: #505050;
}


.app-develop {
    position: relative;
    margin-top: -70px;
    margin-bottom: 70px;
    padding-top: 180px;
    filter:drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.3));
}
.app-develop::after{/* beforeでもafterでも*/
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);/* ココ */
    background-color: #fff;/* デモは青色の部分 */
    left: 0;
    top: 100%;
}
.app-develop h2 {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #00c3a8;
}

.app-develop .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px auto;
    padding: 20px 40px;
}
.develop-image img {
    max-width: 360px;
}

.develop-text {
    align-items: center;
    padding: 20px 30px;
}
.develop-text h3 {
    display: inline-block;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: bold;
}

.app-develop .main-txt {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    text-align: center;
    font-weight: bold;
}
.app-develop .main-txt .point {
    color: #00c3a8;
}

.develop-text p {
    font-size: 16px;
    text-align: left;
}

.develop-text p span {
    font-weight: bold;
}

.book-review .container, .developer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.book-image img, .developer-image img {
    max-width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.developer-image img {
    border-radius: 50%;
}



.faq {
    background: #fff;
}


.faq .faq-item {
    margin-bottom: 10px;
}


.faq h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    color: #00c3a8;
}

.cp_qa03 .cp_actab {
  position: relative;
  width: 100%;
  margin: 0 0 2em 0;
  color: #1b2538;
}
.cp_qa03 .cp_actab input {
  display: none;
}
/* 質問 */
.cp_qa03 .cp_actab label {
  font-weight: bold;
  color: #2BBEA1;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 0em 2em 0.4em 3em;
  cursor: pointer;
  border-radius: 30px;
  border: 2px solid #2BBEA1;
  background: #fff;
    text-align: left;
}
.cp_qa03 .cp_actab label span {
  display: block;
  padding: 0.4em 2em 0 0;
}
.cp_qa03 .cp_actab label::before {
position: absolute;
    left: 0px;
    content: '?';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    font-size: 1.6em;
    font-weight: bold;
    z-index: 99;
    color: #fff;
    border-radius: 20px;
    background: #00c3a8;
}
.cp_qa03 .cp_actab label:hover {
  color: #00838f;
  transition: all 0.3s;
}
/* --質問の＋アイコン */
.cp_qa03 .cp_actab label::after {
  position: absolute;
  top: 0;
  right: 0;
  content: '+';
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.4em;
  display: inline-block;
  width: 2em;
  height: 2em;
  transition: transform 0.3s;
}
/* 答え */
.cp_qa03 .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 1.5em;
  border-radius: 0 0 0.5em 0.5em;
  transition: max-height 0.2s;
}

.cp_qa03 .cp_actab .cp_actab-content p {
  margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa03 .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa03 .cp_actab input:checked ~ label {
  color: #2BBEA1;
  border-radius: 30px;
}
/* 質問をクリックした時の+の動き */
.cp_qa03 .cp_actab input[type=checkbox]:checked + label::after {
  transform: rotateZ(45deg);
  transform-origin: 25% 50%;
  line-height: 1.4em;
}


.app-info{
    position: relative;
    margin-top: -70px;
    margin-bottom: 120px;
    padding-top: 180px;
    padding-bottom: 30px;
    background-color: #F5F5F5;
    filter:drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.3));
}
.app-info::after{
    content: "";
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #F5F5F5;
    left: 0;
    top: 100%;
}
.app-info h2 {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #00c3a8;
}

.app-info h3 {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    margin-bottom: 0;
}
.app-info p.date {
    margin-top: 3px;
    text-align: center;
    font-size: 14px;
    color: #505050;
}


.app-company{
    position: relative;
    margin-top: -70px;
    margin-bottom: 120px;
    padding-top: 180px;
    padding-bottom: 30px;
}
.app-company h2 {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #00c3a8;
}
.app-company dl {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin: 0px auto 20px;
    padding: 10px 20px 10px 0;
    border-bottom: 1px solid #2BBEA1;
}
.app-company dt {
    font-size: 18px;
    padding-right: 40px;
}
.app-company dt span {
    font-weight: normal;
    color: #505050;
}
.app-company dd {
    font-size: 16px;
    color: #505050;
}
.app-company dd span {
    font-weight: bold;
}

.site-footer {
    background: #00c3a8;
    color: #fff;
    text-align: center;

}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;

}
.foot-content {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    flex-wrap: wrap;
    position: relative;
    max-height: 40vh;
    padding: 20px 20px 0 20px;
}
.foot-content .footer-parts {
    position: absolute;
    left: -60px;
    bottom: 0;
}
.foot-content .footer-parts img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.foot-content .footer-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 12%;
    margin: 0 auto;
}
.foot-content .footer-logo img {
    width: 100%;
}

.foot-content .footer-text {
    flex: 1;
    min-width: 300px;
    padding-top: 10px;
    text-align: right;
}
.foot-content .footer-text h3 {
    font-size: 28px;
    line-height: 1.6;
    color: #fff;
    font-weight: bold;
}
.foot-content .footer-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
}
.foot-content .footer-text p.copyright {
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 20px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.footer-nav li a:hover {
    text-decoration: underline;
}

/* フッター固定バナー */
.fixed-bottom-banner {
    display: none;
}


@media screen and (max-width: 768px) {
    body {
    font-size: 15px;
    }
    .header-content .logo {
        height: 120px;
        margin-top: -40px; /* 上を少しカットする調整用 */
        margin-left: auto;
        margin-right: auto;
    }
    .banner-link {
        padding: 8px;
        border-radius: 10px;
        text-decoration: none;
        margin-top: -60px;
        margin-right: 0;
        cursor: pointer;
        font-size: 14px;
        line-height: 1.4;
    }
    .main-visual {
        padding: 0;
        background: url(../img/pic_main.png) no-repeat right top;
        background-size: contain;
        opacity: 0.8;
  
    }
    .visual-content,
    .container,
    .book-review .container,
    .developer .container {
    flex-direction: column;
    text-align: center;
    }
    
    .visual-content {
        padding: 0;
        display: block;
        width: 100%;
        height: auto;
    }
    .text-block,
    .intro-text,
    .book-text,
    .developer-text {
    margin-left: 0;
    margin-top: 20px;
    padding: 0 10px;
    }

    .text-block {
    background:rgba(255, 255, 255, 0.8);

    }
    .text-block-inner {
        width: 94%;
        margin: 0 auto;
        padding-top: 20px;
    }

    .text-block p.h1sub {
        font-size: 20px;
        color: #00c3a8;
    }
    .text-block h1 {
        font-size: 44px;
        font-weight: bold;
        color: #00c3a8;
    }
    .text-block h1 span.h1small {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        padding-left: 10px;
    }
    .text-block p.subtxt {
        font-size: 20px;
        line-height: 1.6;
        color: #333;
        text-align: center;
    }
    .image-block {
    display: none;
    width: 100%;
    margin: 0 auto;
    }
    .visual-sub-content {
        padding: 20px;
        font-size: 18px;
        text-align: center;
    }
    .app-intro, .app-intro2, .app-steps, .user-voices, .book-review, .developer, .faq {
        padding: 100px 20px 20px;
    }

    .app-intro, .app-intro2, .app-steps, .user-voices, .book-review, .developer, .develop-text, .voice-intro, .cp_actab, .app-info, .step p {
        text-align: left;
        
    }
    .app-function-guide, .app-function-guide2 {
        padding-top: 60px;
    }
    .container {
        padding: 0 0.2rem;
    }
    .app-function .function-content {
        display: block;
        justify-content: space-between;
        align-items: center;
        margin: 30px auto;
        padding: 0 0;
    }
    .app-function .function-text p {
        text-align: left;
    }
    .app-intro .imageSP,
    .app-intro .imageSP_bg {
        width: 100%;
        height: auto;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        position: relative;
        aspect-ratio: 9 / 16;
    }
    .app-intro .imageSP .imageSPinner {
        position: absolute;
        top: 8%;        /* 調整ポイント：スライドの縦位置 */
        left: 24%;      /* 調整ポイント：スライドの横位置 */
        width: 52%;     /* 調整ポイント：スライドの幅 */
        height: 64%;    /* 調整ポイント：スライドの高さ */
    }
    .app-intro .imageSP .imageSPinner img {
        width: 100%;
        height: auto;
        display: block;
    }

    .function-image img {
        max-width: 60%;
    }
    .voice-intro {
        width: 96%;
        margin: 0 auto 60px;
    }
    .step-image,
    .developer-image,
    .book-image {
    margin: auto;
    text-align: center;
    }
    .device-group {
    width: 80%;
    margin-top: 0;
    }
    .steps,
    .voices,
    .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    }
    .footer-nav li {
    margin-bottom: 10px;
    }

    .app-develop h2 {
        font-size: 20px;
    }
    .app-develop .container {
        padding: 0 22px;
    }
    .app-develop .main-txt {
        font-size: 20px;
        padding-bottom: 20px;
    }
    .develop-text {
        align-items: center;
        padding: 20px 10px;
    }
    .faq-item h3,
    .faq-item p {
    font-size: 14px;
    }
    /* 質問 */
    .cp_qa03 .cp_actab label {
        padding: 0em 1em 0em 3em;
        cursor: pointer;
        border-radius: 20px;
    }
    .cp_qa03 .cp_actab label span {
        display: block;
        padding: 0.4em 1em 0.2em 0;
        font-size: 16px;
    }
    .cp_qa03 .cp_actab label::before {
        position: absolute;
        left: 0px;
        content: '?';
        display: flex;
        justify-content: center;
        align-items: center;
        width: 34px;
        height: 100%;
        font-size: 1.4em;
        font-weight: bold;
        z-index: 99;
        color: #fff;
        border-radius: 18px 0 0 18px;
        background: #00c3a8;
    }
    .cp_qa03 .cp_actab label::after {
        position: absolute;
        top: .1em;
        right: 0;
        content: '+';
        font-size: 1.4em;
        font-weight: bold;
        line-height: 1.4em;
        display: inline-block;
        width: 1.2em;
        height: 1.2em;
        transition: transform 0.3s;
    }
    .app-info {
        padding: 0 20px;
    }
    .app-info p {
        text-align: left;
        display: block;
        padding-bottom: 20px;
    }

    .app-company {
        padding: 60px 20px 0;
    }
    .cta-btn {
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
    font-size: 16px;
    }
    .site-footer {
    padding: 20px;
    }

    .foot-content {
        display: block;
        width: 96%;
        margin: 0 auto;
        position: relative;
        padding: 20px;
    }
    .foot-content .footer-parts {
        display: none;
    }
    .foot-content .footer-logo {
        top: 10%;
        width: 25%;
        margin: 6% auto 5%;
    }
    .foot-content img  {
        width: 100%;
        
    }
    .foot-content .footer-text {
        width: 100%;
        margin: 20% auto 0;
        text-align: center;
    }
    .foot-content .footer-text h3 {
        line-height: 1.2;
    }
	
	.fixed-banner {
  position: fixed;
  top: 20px;          /* 上から20px */
  right: 20px;        /* 右から20px */
  z-index: 9999;      /* 常に最前面 */
  display: block;
}

.fixed-banner img {
  width: 150px;       /* バナー画像の幅（必要に応じて調整） */
  height: auto;
}

@media screen and (max-width: 768px) {
  .fixed-banner img {
    width: 100px;     /* スマホ時に小さくする */
  }
}


    /* フローティングボタン */
    .floating-button {
        display: none;
    }

   /* フッター固定バナー */
    .fixed-bottom-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        background-color: var(--white-color);
        border: 10px solid var(--white-color);
        z-index: 10000;
    }

    .fixed-bottom-banner .btn {
        flex: 1;
        text-align: center;
        padding: 12px 0;
        font-size: 15px;
        font-weight: bold;
        color: var(--white-color);
        border-radius: 5px;
        text-decoration: none;
    }

    /* 友達登録ボタン */
    .fixed-bottom-banner .friend {
        background-color: #00c3a8;
    }
}