@charset "UTF-8";
body {
    font-family:"Hiragino Mincho ProN","Yu Mincho","YuMincho","MS Mincho",serif;
    background-color: #fff;
    color: #fff;
    margin: 0;
}
img{
	width: 100%;
	vertical-align: middle;
}

/* 切り替え */
/* 初期リセット */
.sp, .pc, .tab {
    display: none;
}
/* SP */
@media screen and (max-width: 759px) {
    .sp {
        display: block;
    }
}
/* TAB（ここがポイント） */
@media screen and (min-width: 760px) and (max-width: 1299px) {
/* 通常はPCを表示 */
    .pc {
        display: block;
        width: 100%;
    }
/* MVの中だけTAB表示 */
    h1 .tab {
        display: block;
        width: 100%;
    }
/* MVの中のPCは消す */
    h1 .pc {
        display: none;
    }
}
/* PC */
@media screen and (min-width: 1300px) {
    .pc {
        display: block;
        width: 100%;
    }
}


h2{
    margin: 0;
}
.fl{
    display: flex;
}

/* header */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.left{
    display: flex;
    width: 60%;
    align-items: center;
}
.right{
    width: 28%;
}
@media screen and (min-width:760px){
    header{
        padding: 10px 70px;
    }
    .left{
        display: flex;
        max-width: 400px;
        align-items: center;
    }
    .right{
        width: 200px;
    }
    .tel{
        width: 50%;
        margin-right: 10px;
    }
}

/* mv */
h1{
    margin: 0;
}

/* cta */
.cta{
    padding: 20px 20px 30px;
}
.cta img{
    margin-bottom: 10px;
}

@media screen and (min-width:760px){
    .cta{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 20px 20px 3%;
}
}

/* anxiety */
@media screen and (min-width:760px){
    .anxiety{
        background: url(../img/anxiety_back_pc.jpg);
        padding: 60px 60px 0;
    }
    .anxiety h2{
        max-width: 1100px;
        margin: 0 auto;
    }
    .anxiety .fl{
        max-width: 1000px;
        gap: 40px;
        margin: 0 auto;
    }
    .anxiety .fl img {
        width: calc((100% - 80px) / 3); /* 3枚＋gap40×2 */
        height: auto;
}
    .anxiety .bottom{
        width: 700px;
        margin: 30px auto 0;
    }
}

/* ex */
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 40px;
}
.slides {
    display: flex;
    transition: 0.5s;
}
.slide {
    width: 100%;
    flex-shrink: 0;
    margin: 15px 0;
}
.slide img {
    width: 95%;
    margin: 0 auto;
}
/* 矢印 */
.arrow {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
}
.arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    border-top: 3px solid #960007;
    border-right: 3px solid #960007;
    transform: translate(-50%, -50%);
}
.prev { left: 0px; }
.prev::before { transform: translate(-50%, -50%) rotate(-135deg); }
.next { right: 0px; }
.next::before { transform: translate(-50%, -50%) rotate(45deg); }
/* ドット */
.dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d3d3d3;
    cursor: pointer;
}
.dot.active {
    background: #979797;
}
@media screen and (min-width:760px){
    .ex{
        padding: 80px;
    }
    .ex h2{
        max-width: 800px;
        margin: 0 auto;
    }
    .slider {
        max-width: 600px;
        margin: 0 auto;
    }
}


/* reason */
.cta_box {
    position: relative;
}
.cta_inner {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}
@media screen and (min-width:760px){
    .reason{
        background: url(../img/reason_back_pc.png);
        padding: 80px 0px;
    }
    .reason h2{
        max-width: 550px;
        margin: 0 auto;
    }
    .reason .content{
        max-width: 1200px;
        margin: 20px auto 0;
    }
    .cta_box{
        max-width: 500px;
        margin: 40px auto 100px;
    }
    .cta_inner {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
    }
}

/* comparison */
/* PCは普通 */
.wide-scroll {
    margin: 20px auto 0;
    max-width: 1000px;
}
.wide-scroll img {
    width: 100%;
    display: block;
}
/* SPだけ横スクロール */
@media (max-width:768px){
    .wide-scroll {
        overflow-x: auto;
        margin: 20px auto 40px;
    }
    .wide-scroll img {
        width: 200%;
        max-width: none;
    }
}
@media screen and (min-width:760px){
    .com{
        padding: 80px 10px;
    }
    .com h2{
        max-width: 800px;
        margin: 0 auto;
    }
}

/* price */
@media screen and (min-width:760px){
    .price{
        background-image:
            url(../img/price_back_top_pc.png),
            url(../img/price_back_bottom_pc.png);
        background-position:
            top center,
            bottom center;
        background-repeat:
            no-repeat,
            no-repeat;
        padding: 80px 10px;
    }
    .price h2{
        max-width: 1100px;
        margin: 0 auto;
    }
    .price .content{
        max-width: 800px;
        margin: 40px auto 0;
    }
}

/* flow */
@media screen and (min-width:760px){
    .flow{
        padding: 80px 0px;
    }
    .flow h2{
        max-width: 450px;
        margin: 0 auto;
    }
    .flow .content{
        max-width: 1400px;
        margin: 30px auto 0;
    }
}

/* QA */
.accordion {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 45px;
}
.item {
    margin-bottom: 10px;
    border: 2px solid #960007;
}
 /* チェックボックス非表示 */
.item input {
    display: none;
}
/* タイトル */
.title {
    display: block;
    background: #960007;
    color: #fff;
    padding: 10px 25px 10px 2.1em;
    text-indent: -1.5em;
    cursor: pointer;
    position: relative;
    font-weight: bold;
}
.icon {
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}
/* ＋の線 */
.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background: #fff;
}
/* 横棒 */
.icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
/* 縦棒 */
.icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
/* 開いたら－ */
input:checked + .title .icon::after {
    display: none;
}
/* 開いたら－にする */
input:checked + .title .icon::after {
    display: none;
}
/* 中身 */
.qa_content {
    padding-left: 2em !important;
    text-indent: -1.2em;
    max-height: 0;
    overflow: hidden;
    color: #000;
    padding: 0 12px;
    transition: all 0.3s ease;
}
/* 開いたとき */
input:checked + .title + .qa_content {
    max-height: 300px;
    padding: 12px;
}
@media screen and (min-width:760px){
    .qa{
        padding: 60px 20px 40px;
    }
    .qa h2{
        max-width: 350px;
        margin: 0 auto 30px;
    }
}

/* doctor */
@media screen and (min-width:760px){
    .doctor{
        background: url(../img/doctor_back_pc.png);
        background-size: cover;
        background-position: bottom;
        padding: 80px 40px 0;
    }
    .doctor h2{
        max-width: 650px;
        margin: 0 auto 30px;
    }
    .doctor .content{
        max-width: 750px;
        margin: 0 auto;
    }
    .d_img{
        padding: 50px 10px;
    }
}

/* info */
@media screen and (min-width:760px){
    .info{
        background-color: #d6b473;
        padding: 80px 40px;
    }
    .info .content{
        max-width: 750px;
        margin: 0 auto;
    }
}

/* 追従 */
/* CTA本体 */
.cta_fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #303030;
    z-index: 999;
    transform: translateY(100%);
    transition: 0.3s;
}
.tuiju{
    padding: 10px;
    display: flex;
    text-align: center;
    gap: 5px;
}
.cta_fixed img{
    width: 100%;
}
/* 表示状態 */
.cta_fixed.show {
    transform: translateY(0);
}
/* SPだけ */
@media (min-width: 769px) {
    .cta_fixed {
        display: none;
    }
}

/* footer */
footer {
    padding: 40px 20px;
    background-color: #303030;
}
footer iframe {
    width: 100%;
    height: 150px;
}
.txt {
    color: #fff;
    margin-top: 20px;
}
.info_box {
    display: flex;
    font-size: 15px;
    padding: 2px 2px 15px;
    align-items: flex-start;
}
/* 左のラベル */
.left .info_label {
    min-width: 80px;
}
.right .info_label {
    min-width: 80px;
}
/* 右のテキスト */
.info_content {
    padding-left: 10px;
    border-left: 1px solid #ffffff;
    line-height: 1.4;
}

@media (max-width:768px){
    .txt .right {
        width: 100%;
    }
    .txt .left {
        width: 100%;
    }
    .left .info_label {
        min-width: 60px;
    }
    .right .info_label {
        min-width: 60px;
    }
    .info_box {
        display: flex;
        font-size: 12px;
    }
}
@media (min-width: 769px) {
    footer {
        padding: 80px 40px;
        background-color: #303030;
    }
    footer .content{
        display: flex;
        max-width: 900px;
        margin: 0 auto;
        gap: 40px;
    }
    footer iframe {
        width: 50%;
        height: 270px;
    }
    .txt {
        width: 50%;
        margin-top: 0;
    }
    footer .left , footer .right{
        width: 100%;
    }
}