@charset "UTF-8"; /* CSS Document */
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap');
/* :rootのCSS変数の宣言 */ :root {
  --main-color: #F93817;
  --blue: #0000ff;
}
/*===============================================
● PC/SP共通
===============================================*/
.menudetail_contents .disc, .menudetail_contents .circle, .menudetail_contents .decimal {
  margin: 0 0 1em 1em;
}
.menudetail_contents .disc li {
  list-style: disc;
  margin-bottom: 0.5em;
}
.menudetail_contents .circle li {
  list-style: circle;
  margin-bottom: 0.5em;
}
.menudetail_contents .decimal li {
  list-style: decimal;
}
.menudetail_contents .bold {
  font-weight: bold;
}
.menudetail_contents .em {
  color: var(--main-color);
}
.menudetail_contents .pink {
  color: #d37d95;
}
.menudetail_contents p.text {
  margin-bottom: 1em;
  line-height: 1.8;
}
.menudetail_contents .text-center {
  text-align: center;
}
.mb40 {
  margin-bottom: 40px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb10 {
  margin-bottom: 10px;
}
.menudetail_contents .m40a {
  margin: 40px auto
}
.menudetail_contents .f80 {
  font-size: 80%;
}
.menudetail_contents .f120 {
  font-size: 120%;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*swiperのナビアイコンを黒に*/
.swiper-button-prev, .swiper-container-rtl .swiper-button-next, .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  filter: brightness(0);
}
.menudetail_contents .swiper-pagination-bullet-active {
  background: #C2686A;
}
.lato_font {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
/*===============================================
● 画面の横幅が761px以上
===============================================*/
@media screen and (min-width: 761px) {
    
 .slide_in_image {
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    opacity: 0;
  }
  .isPlay {
    animation-name: play;
    animation-duration: 0.55s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    position: relative;
    opacity: 1 !important;
    animation-timing-function: ease;
  }
  /*//isPlayの疑似要素にマスクとマスクを外すアニメーションを設定 */
  .isPlay:before {
    animation-name: maskOut;
    animation-duration: 0.55s;
    animation-delay: 0.55s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f3b7b7, #ffeaea);
  }
  /*//「slide_in_image」をスライドインする*/
  @keyframes play {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  /*//マスク要素をスライドアウトする*/
  @keyframes maskOut {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(100%);
    }
  }
    
    

  .menudetail_contents {
    width: 100%;
    /* clear: both; */
    /* float: left; */
    background-size: 100%;
    font-size: 17px;
    line-height: 35px;
    color: #000000;
    text-align: left;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 400;
    min-width: 1200px;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
  }
  .menudetail_contents .auto {
    max-width: none;
    /* width: 1100px; */
    margin: 0 auto;
    position: relative;
    clear: both;
    padding-top: 60px;
  }
  .menudetail_contents img {
    display: block;
    width: 100%;
    height: auto;
  }
  .menudetail_contents section {
    width: 100%;
    /* float: left; */
    clear: both;
    margin-bottom: 100px;
    /* overflow: hidden; */
  }
    .menudetail_contents .bnr_conts{
        max-width: 600px;
      margin:50px auto;
      
    }
  #title_conts {
    width: 100%;
    height: 600px;
    background-image: url(../images/lhala-doctor/img_main_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    margin-bottom: 40px;
  }
  #title_conts .auto {
    height: 600px
  }
  #title_conts .title_inner {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 600px;
  }
  #title_conts .page_ttl {
    position: absolute;
    width: 600px;
    height: auto;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 74px;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.5;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0px 3px rgb(236 64 26 / 80%);
  }
  #title_conts .page_ttl span {
    display: block;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.3em;
  }
  .contsMenu {
    width: 1200px;
    margin: auto;
  }
  .contsMenu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 1em 0;
  }
  .contsMenu ul li {
    width: calc((100% - 3px) / 4);
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
    border-left: 1px solid #ccc;
  }
  .contsMenu ul li:last-child {
    border-right: 1px solid #ccc;
  }
  .contsMenu ul a {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-content: center;
    padding: 10px 20px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-size: 16px;
  }
  .title_box {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 99;
    margin: 50px 0 226px 0;
  }
  .title_box::after {
    content: "";
    display: block;
    width: 1px;
    height: 132px;
    background-color: #000;
    position: absolute;
    bottom: -190px;
    left: 50%;
  }
  .title_box .large_title {
    color: #333;
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: .1em;
    margin-bottom: 14px;
    color: var(--main-color);
  }
  .title_box .small_title {
    font-size: 17px !important;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: .2em;
  }
  .conts_inner {
    clear: both;
    margin-bottom: 50px;
  }
  .conts_inner .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    position: relative;
    /* text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff; */
    /* clear: both; */
    align-items: center;
  }
  .conts_inner .box:nth-last-of-type(2n) {
    flex-direction: row-reverse;
  }
  .conts_inner .box:last-of-type {
    /* margin-bottom: 0; */
  }
  .conts_inner .box .img {
    width: calc((100% - 580px) - 40px);
    overflow: hidden;
  }
  .conts_inner .box .text_group {
    width: 580px;
    box-sizing: border-box;
    position: relative;
    z-index: 9;
  }
  .conts_inner .text_group.text_one {
    width: 100%;
    margin: 30px 0 100px;
  }
  .conts_inner .box .text_group .text_group_ttl {
    font-size: 28px;
    line-height: 56px;
    font-weight: bold;
    margin-bottom: 1em;
    letter-spacing: .2em;
    color: var(--main-color);
  }
  .conts_inner .box .text_group.text_one .text_group_ttl {
    text-align: center;
  }
  .reco {
    width: 100%;
    padding: 80px 0;
    background-image: url("../images/lhala-doctor/img_recommend_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-attachment: fixed;
    position: relative;
    margin-bottom: 40px;
  }
  .reco .large_title {
    color: #fff;
    text-shadow: 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%);
  }
  .reco .small_title{
  color:#fff;
    text-shadow: 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%), 0 0 10px rgb(213 119 119 / 50%);
    }
    .title_box::after {
        /* background-color: #fff; */
    }
  
  .reco_list {
    display: flex;
    width: 100%;
    margin-top: 30px;
    flex-flow: wrap;
    justify-content: space-between;
  }
  .reco_list li {
    width: 32%;
    margin-bottom: 20px;
    background: #fff;
    padding: 1em 10px 1em 60px;
    position: relative;
    font-weight: bold;
    display: flex;
    align-items: center;
    line-height: 1.5;
  }
  .reco_list li:nth-child(3n) {
    margin-right: 0;
  }
  .reco_list li:before {
    content: '';
    position: absolute;
    background-image: url("../images/common/icon_check.png");
    background-repeat: no-repeat;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: 100%;
  }
  .reco_list::after {
    content: "";
    width: 32%;
    display: block;
    height: 0;
  }
  .reco_list .reco_list_item {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }
  .reco_list .reco_list_item img {
    display: block;
    margin-bottom: 20px;
  }
  .effects_box {
    border: 6px solid #eee;
    /* display: flex; */
    margin-bottom: 0;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    width: calc((100% - 40px) / 2);
  }
  .effects_box .heading {
    /* width: 14em; */
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 0.5em;
    text-align: center;
  }
  .effects_box .text {
    /* width:calc(100% - 15em); */
  }
  .effects_box_last {
    width: calc((100% - 40px) / 2);
    background:  var(--main-color);
    color: #fff;
    padding: 20px;
    font-weight: bold;
    font-size: 18px;
  }
  .effects .conts_inner {
    display: flex;
    flex-flow: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .history_inner {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }
  .history_box {
    background: #999;
    flex: 1;
    padding: 10px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .history_box::after {
    position: absolute;
    content: "▶";
    color: var(--main-color);
    width: 20px;
    height: 20px;
    right: -22px;
    top: 45%;
  }
  .history_box:last-of-type {
    background: var(--main-color);
  }
  .history_box:last-of-type::after {
    content: none;
  }
  .history_box_ttl {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1;
    justify-content: center;
    flex: 1;
  }
  .history_box_ttl span {
    font-size: 14px;
  }
  .history_box_text {
    background: #fff;
    color: #333;
    padding: 10px;
    line-height: 1.6;
    font-size: 1rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    /* justify-content: center; */
    flex: 1;
    text-align: center;
  }
  .history_box_text span{
    font-weight:bold;
    text-decoration: underline #F93817 wavy;
    text-underline-offset: 0.2em;
  }
  
  .lhala-pico-group{
    
  }
  .lhala-pico-list {
    display: flex;
    gap: 20px;
    flex-flow: wrap;
    justify-content: center;
  }
  .lhala-pico-list li {
    width: calc((100% - 40px) / 3);
    border: 6px solid #eee;
    padding: 10px;
  }
  .lhala-pico-list_ttl {
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
  .flow {
    margin-bottom: 100px;
    padding-bottom: 100px;
  }
  .flow_list {
    clear: both;
  }
  .flow_list li {
    width: 100%;
    float: left;
    clear: both;
    margin-bottom: 107px;
  }
  .flow_list li:nth-of-type(2n) .text_box {
    float: right;
  }
  .flow_list li:last-of-type {
    margin-bottom: 100px;
  }
  .flow_list li .text_box {
    width: 590px;
    min-height: 363px;
    float: left;
    position: relative;
    z-index: 9;
  }
  .flow_list .text_box .flow_ttl {
    font-size: 31px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .flow_list li .img {
    width: 567px;
    float: right;
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
  .flow_list li:nth-of-type(2n) .img {
    float: left;
  }
  .flow_list .number {
    font-size: 90px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--main-color);
  }
  .flow_list .gray_text {
    font-size: 100px;
    line-height: 1;
    color: #f6f6f6;
    position: absolute;
    bottom: -42px;
    left: 0;
    z-index: -1;
    letter-spacing: .1em;
  }

#picks_conts{
  background:#ffdbd5;
  margin-bottom: 0 !important;
  padding-bottom: 100px;
}
.picks_list{
  display:flex;
  gap: 20px;
  margin-bottom: 60px;
}

.picks_list_item{
  background:#fff;
  padding:20px;
  box-shadow: 6px 6px #f1cdc6;
  line-height: 1.6;
  flex: 1;
  font-size: 1rem;
}
.picks_list_item figcaption{
  text-align:center;
  font-weight:500;
  margin: 0.5em 0;
  font-size: 1.2rem;
}
  
  .price_wrapper {
    width: 100%;
    /* float: left; */
    /* clear: both; */
    text-align: center;
    padding: 20px 100px;
    -webkit-box-sizing: border-box;
    moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 33px;
    overflow: hidden;
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
  }
  .price {
    background-color: #eee;
    padding-bottom: 100px;
  }
  .price_subttl {
    background: #b97081;
    color: #fff;
    text-align: center;
    margin-bottom: 2em;
    font-size: 24px;
    padding: 10px 0;
  }
  .price_wrapper .price_box {
    width: 475px;
    /* float: left; */
    margin-bottom: 35px;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24px 20px 12px;
    border-radius: 6px;
    box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
  }
  .price_table {
    width: 1000px;
    border: 1px solid #999;
    margin: 0 auto 40px;
    background-color: #fff;
  }
  .price_table caption {
    font-size: 22px;
    margin: 2em 0 1em;
  }
  .price_table .monitor {
    font-weight: bold;
    color: #de5e5e;
  }
  .price_table thead th {
    text-align: center;
    padding: 0.5em;
    border-right: 1px solid #999;
    background: #333;
    color: #fff;
    font-weight: bold;
    line-height: 1.4;
    font-size: 20px;
  }
  .price_table thead th.price-plan span {
    display: block;
    font-size: 14px;
  }
  .price_table tbody tr {
    border-bottom: 1px solid #999;
  }
  .price_table tbody {
    border: 1px solid #999;
  }
  .price_table tbody th {
    text-align: left;
    border-right: 1px solid #999;
    line-height: 1.4;
  }
  .price_table tbody td {
    text-align: center;
    font-size: 22px;
    vertical-align: middle;
  }
  .price_table tbody td.price-type {
    border-right: 1px solid #999;
  }
  .price_table tbody th, .price_table tbody td {
    padding: 1em;
    vertical-align: middle;
    width: 50%;
  }
  .price_table tbody th span, .price_table tbody td span {
    font-size: 14px;
  }
  .price-option {
    background: #f6f6f6;
  }
  .detail_box {
    width: 100%;
    clear: both;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 30px 50px;
    margin-bottom: 60px;
  }
  .detail_box h4 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
  }
  .detail_box table {
    width: 100%;
  }
  .detail_box table tr:nth-of-type(2n) {
    background-color: #f8f8f8;
  }
  .detail_box table th {
    width: 217px;
    font-size: 16px;
    line-height: 25px;
    font-weight: bold;
    padding: 15px 23px 12px 35px;
  }
  .detail_box table td {
    font-size: 16px;
    line-height: 27px;
    padding: 15px 23px 12px 0;
    width: calc(100% - 200px);
    min-width: 400px;
  }
  .detail_box .disc {
    font-size: 16px;
  }
    .faqArea {
    border-top: 1px solid #5c574f;
  }
  .faqArea dl {
    border-bottom: 1px solid #5c574f;
    padding: 10px 0;
  }
  .faqArea dl dt {
    padding: 10px 10px 10px 60px;
    position: relative;
    color: #5c574f;
    font-weight: bold;
  }
  .faqArea dl dt:before {
    position: absolute;
    content: "";
    background-image: url("../images/thread-lift/icon_q.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
    width: 35px;
    height: 35px;
    left: 10px;
    top: 10px;
  }
  .faqArea dl dd {
    padding: 10px 10px 10px 60px;
    background: #f6f6f6;
    position: relative;
    display: none;
  }
  .faqArea dl dd:before {
    position: absolute;
    content: "";
    background-image: url("../images/thread-lift/icon_a.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
    width: 35px;
    height: 35px;
    left: 10px;
    top: 10px;
  }
  .faqArea dl dd .ansLink {
    display: table;
    padding: 5px 40px 4px 15px;
    margin-top: 8px;
    background: #40b1bf;
    color: #fff;
    position: relative;
  }
  .faqArea dl dd .ansLink:after {
    content: '';
    position: absolute;
    background-image: url(../images/hutae/reserve_arrow.png);
    background-repeat: no-repeat;
    width: 8px;
    height: 20px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    background-size: contain;
  }
}
/*===============================================
●画面の横幅が760pxまで（iPhone6 横向きまで）
===============================================*/
@media screen and (max-width: 760px) {
  .menudetail_contents {
    width: 100%;
    height: 100%;
    clear: both;
    float: left;
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
    line-height: 1.7;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: normal;
    color: #000000;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
  }
  .menudetail_contents > .section {
    margin-bottom: 50px;
  }
  .menudetail_contents auto {
    width: 94%;
    margin: 0 auto;
  }
      .menudetail_contents .bnr_conts{
        padding:20px;
      margin:20px auto;
      
    }
  #title_conts {
    width: 100%;
    height: 30vh;
    background-image: url(../images/lhala-doctor/img_main_sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 61% 50%;

    /* margin-bottom: 2.4vw; */
  }
  .title_inner{
        width: 100%;
    height: 30vh;
        position: relative;
  }
  #title_conts .page_ttl {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 8vw;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0px 3px rgb(236 64 26 / 80%);
    font-weight: bold;
  }
  #title_conts .page_ttl span {
    display: block;
    font-size: 4vw;
    font-weight: bold;
  }
  .contsMenu {
    width: 100%;
    margin: 0 auto 40px;
  }
  .contsMenu ul {
    display: flex;
    width: 100%;
    flex-flow: wrap;
  }
  .contsMenu li {
    text-align: left;
    height: 15vw;
    width: 50%;
    padding: 0 6% 0 1em;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    position: relative;
    font-size: 3.5vw;
    line-height: 1.5;
    display: flex;
    align-items: center;
  }
  .contsMenu a:nth-child(2n) {
    border-right: 0;
  }
  /* .contsMenu a:nth-child(1), .contsMenu a:nth-child(2) {
    line-height: 1.5;
  }*/
  .contsMenu a:nth-child(even) {
    border-left: none;
  }
  .contsMenu a:after {
    content: '';
    position: absolute;
    background-image: url(../images/common/under_arrow.png);
    background-repeat: no-repeat;
    right: 3vw;
    top: 50%;
    margin-top: -1vw;
    width: 3vw;
    height: 3vw;
    background-size: 100%;
    filter: saturate(0%) brightness(0);
  }
  .title_box {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 9;
    margin: 0 0 80px;
    padding-top: 50px;
  }
  .title_box::after {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background-color: #000;
    position: absolute;
    bottom: -60px;
    left: 50%;
  }
  .title_box .large_title {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: .1em;
    color: var(--main-color);
  }
  .title_box .small_title {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: .1em;
  }
  .conts_inner {
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
  }
  .conts_inner .box {
    width: 100%;
    margin-bottom: 60px;
    position: relative;
  }
  .text_group {
    margin-bottom: 20px
  }
  .text_group_reed {
    font-size: 18px;
    line-height: 2;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: .1em;
  }
  .text_group_ttl {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: .2em;
    color: #fff;
    text-align: center;
    background: var(--main-color);
    padding: 0.25em 0;
  }
  .conts_inner .box .text_group h4 {
    font-size: 18px;
    line-height: 2;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: .1em;
    /* text-align: center; */
  }
  .wrap-colbox {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto 10vw;
  }
  .wrap-colbox .col2-box {
    width: 100%;
    margin-bottom: 5vw;
  }
  .slide_in_image {
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    opacity: 0;
  }
  .isPlay {
    animation-name: play;
    animation-duration: 0.55s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    position: relative;
    opacity: 1 !important;
    animation-timing-function: ease;
  }
  /*//isPlayの疑似要素にマスクとマスクを外すアニメーションを設定 */
  .isPlay:before {
    animation-name: maskOut;
    animation-duration: 0.55s;
    animation-delay: 0.55s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f3b7b7, #ffeaea);
  }
  /*//「slide_in_image」をスライドインする*/
  @keyframes play {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  /*//マスク要素をスライドアウトする*/
  @keyframes maskOut {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(100%);
    }
  }
  .intro .box .text {
    width: 100%;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .intro_img_wrap {
    display: flex;
    gap: 20px;
    width: 100%;
    margin: 20px auto 40px;
    height: auto;
    flex-flow: wrap;
  }
  .intro_img_wrap .img {
    width: calc((100% - 20px) / 2);
    height: auto;
  }
  .reco {
    width: 100%;
    background-image: url("../images/lhala-doctor/img_recommend_bg_sp.jpg");
    background-repeat: no-repeat;
    /* background-position: 50% 50%; */
    /* background-attachment: fixed; */
    background-size: cover;
    position: relative;
    margin-bottom: 40px;
    background-color: var(--main-color);
  }
  .reco .large_title {
    color: #fff;
    text-shadow: 0px 3px rgb(236 64 26 / 40%);
  }
    .reco .small_title {
    color: #fff;
    text-shadow: 0px 3px rgb(236 64 26 / 40%);
  }
      .reco  .title_box::after {
        content: "";
        display: block;
        width: 1px;
        height: 40px;
        background-color: #ffffff;
        position: absolute;
        bottom: -60px;
        left: 50%;
    }

  
  .reco_list {
    padding: 5%;
    overflow: hidden;
    display: table;
    width: 100%;
    margin-top: 3vw;
  }
  .reco_list li {
    width: 100%;
    margin-right: 2%;
    margin-bottom: 2%;
    background: #fff;
    padding: 3% 3% 3% 12%;
    position: relative;
    float: left;
    font-weight: bold;
    font-size: 3.6vw;
  }
  .reco_list li:nth-child(3n) {
    margin-right: 0;
  }
  .reco_list li:before {
    content: '';
    position: absolute;
    background-image: url("../images/common/icon_check.png");
    background-repeat: no-repeat;
    left: 10px;
    top: 50%;
    margin-top: -13px;
    width: 18px;
    height: 18px;
    background-size: 100%;
  }
  .effects_box {
    border: 6px solid #eee;
    /* display: flex; */
    margin-bottom: 0;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .effects_box .heading {
    /* width: 14em; */
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 0.5em;
    text-align: center;
  }
  .effects_box .text {
    /* width:calc(100% - 15em); */
  }
  .effects_box_last {
    width: 100%;
    /* background:  var(--main-color); */
    color: var(--main-color);
    /* padding: 20px; */
    font-weight: bold;
    font-size: 18px;
  }
  .effects .conts_inner {
    display: flex;
    flex-flow: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .history_inner {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .history_box {
    background: #999;
    flex: 1;
    padding: 10px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .history_box::after {
    position: absolute;
    content: "▼";
    color: var(--main-color);
    width: 20px;
    height: 20px;
    right: 46%;
    bottom: -20px;
  }
  .history_box:last-of-type {
    background: var(--main-color);
  }
  .history_box:last-of-type::after {
    content: none;
  }
  .history_box_ttl {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 1.2rem;
    align-items: baseline;
  }
  .history_box_ttl span {
    font-size: 0.8rem;
  }
  .history_box_text {
    background: #fff;
    color: #333;
    padding: 10px;
    line-height: 1.6;
    font-size: 14px;
     display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .history_box_text span{
    font-weight:bold;
    text-decoration: underline #F93817 wavy;
    text-underline-offset: 0.2em;
  }
  .lhala-pico-list{
    display:flex;
    gap:20px;
    flex-flow:wrap;
    justify-content: center;
    flex-direction: column;
  }
  .lhala-pico-list li{
    width: 100%;
    border: 6px solid #eee;
    padding: 10px;
  }
  
.lhala-pico-list_ttl{
  color: var(--main-color);
  font-weight:bold;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.flow_list {
    width: 90%;
    margin: 0 auto 10vw;
    clear: both;
  }
  .flow_list li {
    width: 100%;
    margin-bottom: 50px;
  }
  .flow_list li:last-of-type {
    margin-bottom: 0;
  }
  .flow_list li .text_box {
    width: 100%;
    position: relative;
    z-index: 9;
  }
  .flow_list li .text_box .number {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--main-color);
  }
  .flow_list li .text_box .flow_ttl {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .flow_list li .text_box .gray_text {
    font-size: 40px;
    line-height: 1;
    color: #f6f6f6;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    text-align: right;
    letter-spacing: .1em;
  }
  .flow_list li .img {
    width: 100%;
    position: relative;
    z-index: 9;
    margin-top: 20px;
    overflow: hidden;
  }
  #picks_conts{
  background:#ffdbd5;
  margin-bottom: 0 !important;
  padding-bottom: 10px;
}
.picks_list{
  display:flex;
  gap:20px;
  margin-bottom: 60px;
  flex-flow: wrap;
}

.picks_list_item{
  background:#fff;
  padding: 10px;
  box-shadow: 6px 6px #f1cdc6;
  line-height: 1.6;
  font-size: 1rem;
  width:calc((100% - 20px ) /2);
}
  .picks_list_item span{
    font-size:12px;
  }
.picks_list_item figcaption{
  text-align:center;
  font-weight:500;
  margin: 0.5em 0;
  font-size: 1rem;
}
  
 .price {
    background-color: #eee;
    padding-bottom: 10px;
  }
  .price_table {
    width: 100%;
    border: 1px solid #999;
    margin: 0 auto 40px;
    background-color: #fff;
  }
  .price_table caption {
    font-size: 22px;
    margin: 2em 0 1em;
  }
  .price_table .monitor {
    font-weight: bold;
    color: #de5e5e;
  }
  .price_table thead th {
    text-align: center;
    padding: 0.5em;
    border-right: 1px solid #999;
    background: #333;
    color: #ddd;
    font-weight: bold;
  }
  .price_table thead th.price-plan {
    font-size: 18px;
  }
  .price_table thead th.price-plan span {
    display: block;
    font-size: 12px;
    line-height: 1.4
  }
  .price_table tbody tr {
    border-bottom: 1px solid #999;
  }
  .price_table tbody {
    border: 1px solid #999;
  }
  .price_table tbody th {
    text-align: center;
    border-right: 1px solid #999;
    line-height: 1.4;
    width: 40%;
  }
  .price_table tbody td {
    text-align: center;
    font-size: 22px;
    vertical-align: middle;
  }
  .price_table tbody th, .price_table tbody td {
    padding: 0.5em;
    vertical-align: middle;
    line-height: 1.2;
  }
  .price_table tbody th span, .price_table tbody td span {
    font-size: 14px;
  }
 .details {
    background: #faeded;
    padding-bottom: 50px;
  }
  .details .details_inner {
    display: flex;
    gap: 40px;
    margin: 0 auto;
    flex-direction: column;
    padding-bottom: 1;
  }
  .details .details_inner .box {
    background: #fff;
    padding: 20px 20px 0;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .details .details_inner .box .img {
    margin-bottom: 10px;
  }
  .details .details_inner .box .text_group {
    width: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }
  .details .details_inner .box .text_group_ttl {
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.5em;
    color: #d57777;
    letter-spacing: normal;
    font-family: "Hiragino Mincho ProN", YuMincho, serif;
  }
 .detail_box {
    width: 100%;
    clear: both;
    -webkit-box-sizing: border-box;
    moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 1px 4px 3px rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 30px 5% 32px;
    margin: 0 auto 10vw;
  }
  .detail_box h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 18px;
    text-align: center;
  }
  .detail_box table tr:nth-of-type(2n) {
    background-color: #f8f8f8;
  }
  .detail_box table th {
    width: 30%;
    font-size: 13px;
    line-height: 1.6;
    font-weight: bold;
    padding: 12px 5% 10px 5%;
  }
  .detail_box table td {
    font-size: 14px;
    line-height: 1.6;
    padding: 12px 5% 10px 0;
  }
  .faqArea {
    border-top: 1px solid #5c574f;
  }
  .faqArea dl {
    border-bottom: 1px solid #5c574f;
    padding: 10px 0;
  }
  .faqArea dl dt {
    padding: 10px 10px 10px 60px;
    position: relative;
    color: #5c574f;
    font-weight: bold;
  }
  .faqArea dl dt:before {
    position: absolute;
    content: "";
    background-image: url("../images/thread-lift/icon_q.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
    width: 35px;
    height: 35px;
    left: 10px;
    top: 10px;
  }
  .faqArea dl dd {
    padding: 10px 10px 10px 60px;
    background: #f6f6f6;
    position: relative;
    display: none;
  }
  .faqArea dl dd:before {
    position: absolute;
    content: "";
    background-image: url("../images/thread-lift/icon_a.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100%;
    width: 35px;
    height: 35px;
    left: 10px;
    top: 10px;
  }
  .faqArea dl dd .ansLink {
    display: table;
    padding: 5px 40px 4px 15px;
    margin-top: 8px;
    background: #40b1bf;
    color: #fff;
    position: relative;
  }
  .faqArea dl dd .ansLink:after {
    content: '';
    position: absolute;
    background-image: url(../images/hutae/reserve_arrow.png);
    background-repeat: no-repeat;
    width: 8px;
    height: 20px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    background-size: contain;
  }
}