/*
* top.css
*
*/
/* Do not change --------------------------------------------------------- */
:root {
    --main-color: #6D7482;
    --white-color: #ffffff;
    --blue-color: #003E70;
    --grey-color: #F1F1F1;
    --haruwai-color: #D8609F;
    --mod-ttl: #1e1e1e;
    --mod-txt:#333333;
    --btn-bgColor: #d8609f;
} 
.main_container {
    -ms-overflow-x: hidden;
    overflow-x: hidden;
}

/* --------------------------------
   common
-------------------------------- */
main {
    letter-spacing: 1px;
    color: var(--main-color);
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Noto Sans,Helvetica Neue,Helvetica,Hiragino Sans,Meiryo,sans-serif;
    font-weight: normal;
}

.main_font {
    font-size: 15px;
}

html {
    font-size: 62.5%;
    font-weight: 400;
}

body {
    min-width: 320px;
}
a:hover{
    opacity:0.8;
}

section.grey{
    background: var(--bg-grey);
}

@media (min-width: 768px) {
    body {
        min-width: 1100px;
    }
}

.inner {
    width: 92%;
    max-width: 690px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .inner {
        width: 71.429vw;
        max-width: 1000px;
    }
}

em {
    font-weight: 700;
    font-style: normal;
}

.only_sp {
    display: block;
}

.only_pc {
    display: none;
}

br.only_sp,
br.only_pc {
    line-height: 0;
}

br.only_pc {
    display: none;
}

@media (min-width: 768px) {
    .only_sp {
        display: none;
    }

    .only_pc,
    br.only_pc {
        display: block;
    }
}

/*mod_ttl*/
h2.mod_ttl{
    font-size: 7.2vw;
    color: var(--mod-ttl);
    text-align: center;
    margin-bottom: 4.333vw;
}

h3.mod_ttl{
    font-size: 5.333vw;
    color: var(--blue-color);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 4vw;
}

/*modtxt*/
p.mod_txt{
    font-size: 4.267vw;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Noto Sans,Helvetica Neue,Helvetica,Hiragino Sans,Meiryo,sans-serif;
    color: var(--mod-txt);
    line-height: 1.71429;
}

p.txt_notes{
    font-size: 3.2vw;
    color: var(--mod-txt);
}

/*btn_wrap*/
.mod_btn{
    display: block;
    margin: 0 auto;
    padding: 5.333vw 0 2.333vw 0;
    text-align: center;
    text-decoration: none;
}

.mod_btn:hover{
    text-decoration: none;
}

.mod_btn p.txt_link{
    cursor: pointer;
    width: 88.067%;
    max-width: 558px;
    background: var(--btn-bgColor);
    color: var(--white-color);
    font-weight: bold;
    font-size: 5vw;
    text-decoration: none;
    -webkit-border-radius: 10.667vw;
            border-radius: 10.667vw;
    text-align: center;
    padding: 1.5vw 0 4vw;
    position: relative;
    display: inline-block;
    line-height: 1;
    margin: 0 auto 2.667vw;
}

.mod_btn p.txt_link:after {
    content: "";
    background: url(../../images/icon_com_btn.svg) no-repeat;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 3.2vw;
    height: 4.8vw;
    position: absolute;
    right: 6%;
    top: 33%;
}

.mod_btn p.txt_btn_note{
    font-size: 2.667vw;
    color: var(--mod-txt);
    line-height: 1.4;
}

.txt_discount_btn{
    font-size: 3.2vw;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5vw;
    background: var(--white-color);
    color: var(--haruwai-color);
    -webkit-border-radius: 0.533vw;
            border-radius: 0.533vw;
    line-height: 1.2;
    padding: 0.8vw;
}

/*sec tablet*/
@media only screen and (min-width: 521px) and (max-width: 767px){
    /*mod_ttl*/
    h2.mod_ttl{
        font-size: 3.6vw;
        margin-bottom: 3.259vw;
    }

    h3.mod_ttl{
        font-size: 2.608vw;
        margin-bottom: 1.304vw;
    }

    /*modtxt*/
    p.mod_txt{
        font-size: 2.086vw;
    }

    p.txt_notes{
        font-size: 1.565vw;
    }

    .mod_btn{
         padding: 5.333vw 0;
    }

    .mod_btn p.txt_link{
        width: 58.588%;
        max-width: 558px;
        font-size: 3.52vw;
        -webkit-border-radius: 6.215vw;
                border-radius: 6.215vw;
        margin-bottom: 2vw;
        padding: 1.956vw 0 2vw;
    }

    .mod_btn p.txt_link:after {
        width: 1.434vw;
        height: 2.086vw;
        right: 6%;
        top: 37%;
    }

    .mod_btn p.txt_btn_note{
        font-size: 1.565vw;
    }

    .txt_discount_btn {
        font-size: 2.2vw;
        -webkit-border-radius: 0.533vw;
        border-radius: 0.533vw;
        padding: 0.4vw 0.8vw;
    }
}

@media (min-width: 768px) {
    h2.mod_ttl{
        line-height: 1.4;
        font-size: 3.2rem;
        margin-bottom: 30px;
    }

    h3.mod_ttl{
        font-size: 2.4rem;
        margin-bottom: 15px;
    }

    /*modtxt*/
    p.mod_txt{
        font-size: 1.6rem;
    }

    p.txt_notes{
        font-size: 1.2rem;
    }

    .mod_btn{
        padding: 20px 0;
    }

    .mod_btn p.txt_link{
        width: 46.800%;
        max-width: 546px;
        font-size: 2.7rem;
        -webkit-border-radius: 40px;
                border-radius: 40px;
        display: flex;
        justify-content: center;
        -webkit-align-items: center;
                align-items: center;
        margin: 0 auto 5px;
        padding: 15px 0;
    }

    .mod_btn p.txt_link:after {
        width: 12px;
        height: 18px;
        right: 4%;
        top: 34%;
    }

    .mod_btn p.txt_btn_note{
        font-size: 1rem;
    }

    .txt_discount_btn{
        font-size: 1.6rem;
        margin: 0 10px 0 0;
        padding: 2px 5px;
        line-height: 1.5;
        -webkit-border-radius: 2px;
                border-radius: 2px;
    }
}

.flex{
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

/* --------------------------------
   header
-------------------------------- */
.header {
    background-color: var(--white-color);
}

.header_inner {
    display: flex;
    margin: 0 4vw;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header_inner {
        margin: auto;
        padding: 0 30px;
        max-width: 1400px;
    }
}

.header_h {
    padding: 4.13333vw 0 4.4vw;
}

@media (min-width: 768px) {
    .header_h {
        padding: 20px 0;
    }
}

.header_h a {
    display: inline-block;
    width: 41.06667vw;
    height: 4vw;
}

@media (min-width: 768px) {
    .header_h a {
        width: 220px;
        height: auto;
    }
}

.header_sub {
    margin: 3.2vw 0 3.73333vw;
}

@media (min-width: 768px) {
    .header_sub {
        margin: 19px 0 20px;
    }
}

.header_share {
    display: flex;
    margin: 0 -2vw;
}

@media (min-width: 768px) {
    .header_share {
        margin: 0 -8px;
    }
}

.header_share li {
    margin: 0 2vw;
    width: 5.33333vw;
}

@media (min-width: 768px) {
    .header_share li {
        margin: 0 8px;
        width: 21px;
    }
}

.header_share li a {
    display: block;
}

@media (min-width: 768px) {
    .header_share li a {
        transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
    }
}

@media (min-width: 768px) {
    .header_share li a:hover {
        opacity: 0.7;
    }
}

/*----------------------------------------------------------
-- main_title ----------------------------------------------
----------------------------------------------------------*/
.main_title {
  width: 100%;
  background: #fdf3ca;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}
.main_title .txt {
  padding: 20px 0;
  color: #c00000;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .main_title .txt {
    padding: 12px 0;
    font-size: 19px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 320px) {
  .main_title .txt {
    font-size: 17px;
  }
}

.sec_mv{
    position: relative;
    text-align: center;
    background: url(../../images/bg_mv_sp.jpg) no-repeat;
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    padding-top: 8vw;
}

.mv_content{
    max-width: 375px;
    margin: 0 auto;
}

.sec_mv h1{
    margin-bottom: 8.533vw;
}

/* Wrapper for navigation slider */
.ask_slider_nav.slick-slider {
    max-width: 375px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    align-content: center;
    align-items: center;
    overflow: initial;
}

/* Ensures slides are properly centered */
.slick-initialized .slick-slide {
    display: flex;
    justify-content: center;
}

/* Ensure navigation list has a fixed height */
.ask_slider_nav .slick-slide.nav_list {
    max-width: 240px;
    min-height: 146px; /* Ensure consistent height */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3.2vw;
    cursor: pointer;
}

/* Ensure images have a fixed max-height */
.ask_slider_nav .slick-slide.nav_list img {
    max-height: 146px; /* Set to tallest image */
    width: auto; /* Maintain aspect ratio */
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out; /* Smooth transition */
}

/* Fix main slider height */
.ask_slider .slick-slide {
    max-height: 99.667vw;
    overflow: hidden;
}

/* Prevents jumping by ensuring the slider container has a fixed height */
.ask_slider_nav {
    height: 38.933vw; /* Set fixed height for navigation */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Make sure active images are displayed properly */
.ask_slider_nav .slick-slide.nav_list.slick-current img {
    max-height: 146px; /* Same as inactive */
}

/* Arrows Styling */
.ask_slider.slick-slider{
    max-width: 360px;
    margin: 0 auto;
}

.ask_slider .slick-slide img{
    max-width: 250px;
}

.ask_slider .slick-arrow {
    position: absolute;
    width: 9.333vw;
    height: 9.333vw;
    font-size: 0;
    z-index: 9;
    top: 38%;
    transform: translateY(-50%);
    border: none;
}

.ask_slider .slick-prev {
    background: url(../../images/icon_lft_arrow.svg) no-repeat left center;
    background-size: cover;
    left: 1.8vw;
}

.ask_slider .slick-next {
    background: url(../../images/icon_rgt_arrow.svg) no-repeat right center;
    background-size: cover;
    right: 1.8vw;
}

.btn_wrap{
    display: block;
    position: absolute;
    width: 100%;
    background: rgba(255, 255, 255,.98);
    bottom: 0;
    text-decoration: none;
}

.btn_wrap.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
}

/*sec tablet*/
@media only screen and (min-width: 521px) and (max-width: 767px){
    .sec_mv{
            padding-top: 3.911vw;
    }

    .mv_content{
        max-width: 767px;
    }

    .sec_mv h1{
        width: 78.096vw;
        margin: 0 auto 2.608vw;
    }

    /* Wrapper for navigation slider */
    .ask_slider_nav.slick-slider {
        max-width: 767px;
    }

    /* Ensure navigation list has a fixed height */
    .ask_slider_nav .slick-slide.nav_list {
        width: 50vw;
        max-width: 520px;
        min-height: 14.081vw; 
        margin: 0 1.565vw;
    }

    /* Ensure images have a fixed max-height */
    .ask_slider_nav .slick-slide.nav_list img {
        max-height: 14.081vw; 
    }

    /* Fix main slider height */
    .ask_slider .slick-slide {
        max-height: 61.278vw;
    }

    /* Prevents jumping by ensuring the slider container has a fixed height */
    .ask_slider_nav {
        height: 14.081vw; /* Set fixed height for navigation */
    }

    /* Make sure active images are displayed properly */
    .ask_slider_nav .slick-slide.nav_list.slick-current img {
        max-height: 14.081vw; /* Same as inactive */
    }

    /* Arrows Styling */
    .ask_slider.slick-slider{
        max-width: 730px;
    }

    .ask_slider .slick-slide img{
        width: 79.5%;
        max-width: 610px;
        margin: 0 auto;
    }

    .ask_slider .slick-arrow {
        width: 5.333vw;
        height: 5.333vw;
        top: 38%;
    }

    .ask_slider .slick-prev {
        background: url(../../images/icon_lft_arrow.svg) no-repeat left center;
        background-size: cover;
        left: 1.8vw;
    }

    .ask_slider .slick-next {
        background: url(../../images/icon_rgt_arrow.svg) no-repeat right center;
        background-size: cover;
        right: 1.8vw;
    }

}
/*sec mv*/
@media (min-width: 768px) {
    .sec_mv{
        background: url(../../images/bg_mv.jpg) no-repeat;
        -webkit-background-size: cover;
             -o-background-size: cover;
                background-size: cover;
        padding-top: 40px;
    }

    .mv_content{
        max-width: 100%;
        margin: 0 auto;
    }

    .sec_mv h1{
        margin-bottom: 25px;
    }

    /* Wrapper for navigation slider */
    .ask_slider_nav.slick-slider {
        width: 100%;
        max-width: 1950px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
        align-content: center;
        align-items: center;
        overflow: initial;
    }

    /* Ensures slides are properly centered */
    .slick-initialized .slick-slide {
        display: flex;
        justify-content: center;
    }

    /* Ensure navigation list has a fixed height */
    .ask_slider_nav .slick-slide.nav_list {
        max-width: 680px;
        min-height: 130px; /* Ensure consistent height */
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 18px;
    }

    /* Ensure images have a fixed max-height */
    .ask_slider_nav .slick-slide.nav_list img {
        max-height: 130px; /* Set to tallest image */
        width: auto; /* Maintain aspect ratio */
        transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out; /* Smooth transition */
    }

    /* Fix main slider height */


    .ask_slider.slick-slider {
        max-width: 1320px;
        max-height: 480px;
        margin: 0 auto;
        overflow: hidden;
    }

    .ask_slider .slick-slide img{
        max-width: 1010px;
    }
    /* Prevents jumping by ensuring the slider container has a fixed height */
    .ask_slider_nav {
        height: 130px; /* Set fixed height for navigation */
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    /* Make sure active images are displayed properly */
    .ask_slider_nav .slick-slide.nav_list.slick-current img {
        max-height: 130px; /* Same as inactive */
    }

    /* Arrows Styling */
    .ask_slider .slick-arrow {
        position: absolute;
        width: 40px;
        height: 40px;
        font-size: 0;
        z-index: 9;
        top: 50%;
        transform: translateY(-50%);
        border: none;
    }

    .ask_slider .slick-prev {
        background: url(../../images/icon_lft_arrow.svg) no-repeat left center;
        background-size: cover;
        left: 1%;
    }

    .ask_slider .slick-next {
        background: url(../../images/icon_rgt_arrow.svg) no-repeat right center;
        background-size: cover;
        right: 1%;
    }


    .btn_wrap{
        position: absolute;
        width: 100%;
        background: rgba(255, 255, 255, .95);
        bottom: 0;
    }

}

/*sec_intro*/
.sec_intro{
    padding: 8vw 0;
    background: url(../../images/bg_com_sp.jpg) no-repeat;
        -webkit-background-size: cover;
             -o-background-size: cover;
                background-size: cover;
}
.into_txt_wrap{
    margin-bottom: 8vw;
}

.intro_video_wrap{
    position:relative;
        overflow:hidden;
        margin:auto;
    background: var(--white-color);
    -webkit-border-radius: 5.667vw;
            border-radius: 5.667vw;
        margin-bottom: 5.333vw;
        border: 1px solid #e8e8e8;
}

.intro_video_wrap:before {
   content:"";
   display:block;
   padding-top: 56.2%;
}

.intro_video_wrap iframe{
    background: var(--white-color);
    position:absolute;
    top: 50%;
    left: 50%;
    margin:auto;
    transform: translate(-50%,-50%);
    width:100%;
    height: 100%;
}

/*sec tablet*/
@media only screen and (min-width: 521px) and (max-width: 767px){
    /*sec_intro*/
    .sec_intro{
        padding: 4vw 0;
    }
    .into_txt_wrap{
        margin-bottom: 4vw;
    }

    .intro_video_wrap{
        -webkit-border-radius: 2.086vw;
                border-radius: 2.086vw;
            margin-bottom: 2.733vw;
    }

    .intro_video_wrap iframe{
        -webkit-border-radius: 2.086vw;
                border-radius: 2.086vw;
    }
}

@media (min-width: 768px) {
    .sec_intro{
        padding: 60px 0;
        background: url(../../images/bg_com.jpg) no-repeat;
        -webkit-background-size: cover;
             -o-background-size: cover;
                background-size: cover;
    }

    .sec_intro .inner{
        width: 1000px;
    }

    .into_txt_wrap{
        margin-bottom: 30px;
    }

    .intro_video_wrap{
        -webkit-border-radius: 40px;
                border-radius: 40px;
        width: 100%;
        margin-bottom: 20px;
    }

    .intro_video_wrap:before {
       content:"";
       display:block;
       padding-top: 56.25%;
    }

    /* Safari */
    _::-webkit-full-page-media, _:future, :root .intro_video_wrap:before {
       content:"";
       display:block;
       padding-top: 56.28%;
    }

    .intro_video_wrap iframe{
        width: 100%;
        height: 100%;
        background: var(--white-color);
        position:absolute;
        top: 50%;
        left: 50%;
        margin:auto;
        transform: translate(-50%,-50%);
        width:100%;
        -webkit-border-radius: 40px;
                border-radius: 40px;
    }
}


/*sec_features*/
.sec_features{
    background: url(../../images/bg_sec_features_sp.jpg) no-repeat;
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    padding: 5.067vw 0;
}

.feature_wrap{
    width: 100%;
    margin-bottom: 16vw;
    -webkit-justify-content: center;
            justify-content: center;
}

.sec_features h2.mod_ttl{
    line-height: 1.4;
    margin-bottom: 8vw;
}

.sec_features h2.mod_ttl.voice{
    margin-bottom: 5.333vw;
}

.ttl_sub_voice{
    font-size: 4.267vw;
    margin-bottom: 8vw;
    text-align: center;
    color: var(--mod-txt);
    font-weight: 400;
}

.voice_box{
    -webkit-justify-content: center;
            justify-content: center;
        -webkit-align-items: center;
                align-items: center;
    margin-bottom: 5.333vw;
    padding: 5vw 4vw;
    background: rgba(255,255,255,.75);
    -webkit-border-radius: 4.267vw;
            border-radius: 4.267vw;
    border: 1px solid var(--grey-color);
}

.voice_box .charactor{
    margin-right: 5.333vw;
    width: 25%; 
}

.voice_box .voice_content{
    width: 68%; 
}

.voice_box .voice_content .txt_voice,
.voice_box .voice_content .txt_position{
    font-size: 4.267vw;
    color: var(--mod-txt);
    line-height: 1.4;
    font-weight: 400;
}

.voice_box .voice_content .txt_voice{
    margin-bottom: 2.667vw;
}

.voice_box .voice_content .txt_position{
    color: var(--blue-color);
    font-weight: 700;
}

@media (max-width: 767px){
    .sec_features{
        padding: 10.667vw 0;        
    }

    .mod_list{
        background: var(--white-color);
        -webkit-border-radius: 4.267vw;
                border-radius: 4.267vw;
        width: 100%;
        margin: 0 auto 10vw;
        padding: 7.333vw 3vw 5.333vw;
        border: 1px solid var(--grey-color);
        position: relative;
    }

    .mod_list img.mod_img{
        width: 100%;
        height: auto;
        margin-bottom: 3vw;
    }
}

.mod_list span{
    top: -4.0vw;
    left: 50%;
     transform: translateX(-50%);
    position: absolute;
    text-align: center;
    display: inline-block;
    width: 10vw;
    height: 10vw;
    font-size: 6vw;
    color: var(--white-color);
    background: var(--blue-color);
    -webkit-border-radius: 50%;
            border-radius: 50%;
}

/*sec tablet*/
@media only screen and (min-width: 521px) and (max-width: 767px){
    .sec_features{
        padding: 4.563vw 0;
        background: url(../../images/bg_sec_features_tb.jpg) no-repeat;
        -webkit-background-size: cover;
             -o-background-size: cover;
                background-size: cover;
    }

    .feature_wrap{
        width: 100%;
        margin-bottom: 7.823vw;
    }

    .mod_list {
        -webkit-border-radius: 2.086vw;
        border-radius: 2.086vw;
        margin: 0 auto 6.333vw;
        padding: 7.333vw 1.956vw 5.333vw;
    }

    .mod_list img.mod_img {
        margin-bottom: 1.5vw;
    }

    .sec_features h2.mod_ttl.voice{
        margin-bottom: 3.259vw;
    }

    .ttl_sub_voice{
        font-size: 2.868vw;
        margin-bottom: 3.911vw;
    }

    .voice_box{
        margin-bottom: 1.565vw;
        padding: 2.608vw 1.434vw;
        -webkit-border-radius: 2.086vw;
                border-radius: 2.086vw;
    }

    .voice_box .charactor{
        margin-right: 0;
        width: 20%;
        text-align: center;
    }

    .voice_box .voice_content{
        width: 80%; 
    }

    .voice_box .voice_content .txt_voice,
    .voice_box .voice_content .txt_position{
        font-size: 2.4vw;
        line-height: 1.5;
    }

    .voice_box .voice_content .txt_voice{
        margin-bottom: 1.565vw;
    }

    .voice_box .voice_content .txt_position{
        color: var(--blue-color);
        font-weight: 700;
    }
}
/* pc */
@media (min-width: 768px) {
    .sec_features{
        padding: 38px 0;
        background: url(../../images/bg_sec_features.jpg) no-repeat;
        -webkit-background-size: cover;
             -o-background-size: cover;
                background-size: cover;
    }

    .sec_features .inner{
        width: 1000px;
    }

    .sec_features h2.mod_ttl{
        margin-bottom: 60px;
    }

    .sec_features h2.mod_ttl.voice{
        margin-bottom: 30px;
    }

    .feature_wrap{
        width: 100%;
        margin-bottom:  60px;
    }

    .mod_list{
        background: var(--white-color);
        -webkit-border-radius: 10px;
                border-radius: 10px;
        border: 1px solid var(--grey-color);
        width: 29%;
        min-width: 300px;
        margin: 0 15px;
        padding: 55px 16px 30px;
        position: relative;
    }

    .mod_list span{
        top: -1.5vw;
        left: 50%;
        line-height: 1.8;
         transform: translateX(-50%);
        position: absolute;
        text-align: center;
        display: inline-block;
        width: 58px;
        height: 58px;
        font-size: 3rem;
        color: var(--white-color);
        background: var(--blue-color);
        -webkit-border-radius: 50%;
                border-radius: 50%;
    }

    .mod_list:nth-child(1){
        margin-left: 0;
    }

    .mod_list:nth-child(3){
        margin-right: 0;
    }

    .mod_list img.mod_img {
        margin-bottom: 10px;
    }

    .ttl_sub_voice{
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .voice_box{
        width: 100%;
        margin-bottom: 20px;
        padding: 32px 22px;
        -webkit-border-radius: 16px;
                border-radius: 16px;
    }

    .voice_box .charactor{
        margin-right: 10px;
        width: 10%; 
    }

    .voice_box .voice_content{
        width: 87%; 
    }

    .voice_box .voice_content .txt_voice,
    .voice_box .voice_content .txt_position{
        font-size: 2rem;
        line-height: 1.5;
    }

    .voice_box .voice_content .txt_voice{
        margin-bottom: 10px;
    }
}

/* --------------------------------
new_features
-------------------------------- */

.new_features h2.mod_ttl{
    line-height: 1.4;
    margin-bottom: 5.333vw;
}

.new_features_wrap{
    width: 100%;
    margin-bottom: 5vw;
    -webkit-justify-content: center;
            justify-content: center;
}

.new_features_wrap .mod_list{
    width: 100%;
    border: none;
    background: none;
    margin-bottom: 0;
}

.txt_new_features{
    font-size: 4.267vw;
    margin-bottom: 8vw;
    text-align: left;
    color: var(--mod-txt);
    font-weight: 400;
}

.txt_new_features.last{
    margin-bottom: 0;
}


/*sec tablet*/
@media only screen and (min-width: 521px) and (max-width: 767px){
    .new_features{
        padding: 0 0 4.563vw;
    }

    .new_features .new_features_wrap{
        width: 100%;
    }

    .new_features_wrap .mod_list {
        margin: 0 auto;
        padding: 0;
    }

    .new_features .mod_list img {
        width: 100%;
        margin-bottom: 3.259vw;
    }

    .new_features h2.mod_ttl{
       margin-bottom: 3.259vw;
    }

    .txt_new_features{
        font-size: 2.868vw;
        margin-bottom: 3.911vw;
    }

}

/* pc */
@media (min-width: 768px) {
    .new_features{
        padding: 38px 0 50px;
    }

    .new_features .inner{
        width: 1000px;
    }

    .new_features h2.mod_ttl{
        margin-bottom: 30px;
    }

    .new_features .new_features_wrap{
        width: 100%;
        align-items: center;
        margin-bottom: 20px;
    }

    .new_features_wrap .mod_list{
        width: 47%;
        margin: 0;
        padding: 0;
        position: relative;
    }

    .txt_new_features {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}

.app_notice {
    margin: 0 auto;
    padding: 2rem 2rem;
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: left;
    font-size: 1.2rem;

    p {
        margin-bottom: 1rem;
    }
    p:last-of-type {
        margin-bottom: 0;
    }
}

/* --------------------------------
   Month free section
-------------------------------- */
.month_free {
    background-color: #ffffff;
    padding: 10.133vw 0 8.205vw;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.inner_month {
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

.month_free .txt_discount_btn,
.sec_notes .txt_discount_btn{
    background: var(--haruwai-color);
    color: var(--white-color);
    margin-bottom: 1vw;
}

.month_free h2.mod_ttl{
    font-size: 7.2vw;
}

.fee {
    width: 79.200vw;
    border: 1px solid #E8E8E8;
    margin: 0 auto 8vw;
    text-align: center;
    -webkit-border-radius: 0.800vw;
    border-radius: 0.800vw;
    padding: 2.133vw 1.333vw;
}

.fee span {
    color: #474747;
}

.fee span:first-child {
    font-size: 4.267vw;
    font-weight: 400;
    margin: 0 4vw 0 0;
}

.fee span:nth-child(2) {
    letter-spacing: 0;
}

.fee span:nth-child(2),
.fee span:last-child {
    font-size: 4.800vw;
    font-weight: 700;
    position: relative;
    margin: 0 6.667vw 0 0;
}

.fee span:last-child {
    color: #F58700;
    margin: 0;
}

.fee span:nth-child(2)::after {
    content: "→";
    font-size: 4.800vw;
    font-weight: 700;
    color: #474747;
    position: absolute;
    right: -6.133vw;
}

.txt_fees {
    width: 91.467vw;
    font-size: 3.733vw;
    line-height: 1.5;
    margin: 0 auto 2vw;
    color: var(--mod-txt);
    text-align: center;
}

.btn_detail {
    display: inline-block;
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    color: #003e70;
    line-height: 1.3;
    text-decoration: none;
    text-align: center;
    padding: 1.795vw 4.872vw;
    border: 0.256vw solid #003e70;
    border-radius: 7.692vw;
}

.btn_detail:hover {
    color: #003e70;
}

.btn_detail:after {
    content: '';
    position: absolute;
    background: url(../../images/icon_com_btn.svg) no-repeat center left;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 1.256vw;
    height: 2.051vw;
    right: 2.051vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .month_free {
        padding: 65px 0;
    }

    .month_free .txt_discount_btn,
    .sec_notes .txt_discount_btn{
        margin-bottom: 8px;
    }

    .month_free h2.mod_ttl{
        font-size: 3.2rem;
    }

    .fee {
        width: 300px;
        border: 1px solid #E8E8E8;
        margin: 0 auto 30px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        padding: 8px 5px;
    }

    .fee span:first-child {
        font-size: 1.6rem;
        margin: 0 15px 0 0;
    }

    .fee span:nth-child(2),
    .fee span:last-child {
        font-size: 1.8rem;
        margin: 0 25px 0 0;
    }

    .fee span:last-child {
        margin: 0;
    }

    .fee span:nth-child(2)::after {
        content: "→";
        font-size: 1.8rem;
        font-weight: 700;
        right: -23px;
    }

    .txt_fees {
        width: 100%;
        font-size: 1.8rem;
        line-height: 1.5;
        margin: 0 0 5px;
    }

    .btn_detail {
        font-size: 1.2rem;
        padding: 7px 19px;
        border: 1px solid #003e70;
        border-radius: 15px;
    }

    .btn_detail:after {
        width: 6px;
        height: 8px;
        right: 8px;
    }

}

/* For Tablet*/
@media only screen and (min-width: 521px) and (max-width: 767px) {
    .month_free {
        padding: 8.475vw 0;
    }

    .month_free .txt_discount_btn,
    .sec_notes .txt_discount_btn{
        margin-bottom: .5vw;
        padding: .8vw;
    }

    .month_free h2.mod_ttl{
        font-size: 3.6vw;
    }

    .fee {
        width: 39.113vw;
        border: 1px solid #E8E8E8;
        margin: 0 auto 3.911vw;
        -webkit-border-radius: 0.391vw;
        border-radius: 0.391vw;
        padding: 1.043vw 0.652vw;
    }

    .fee span:first-child {
        font-size: 2.086vw;
        margin: 0 1.956vw 0 0;
    }

    .fee span:nth-child(2),
    .fee span:last-child {
        font-size: 2.347vw;
        margin: 0 3.259vw 0 0;
    }

    .fee span:last-child {
        margin: 0;
    }

    .fee span:nth-child(2)::after {
        content: "→";
        font-size: 2.347vw;
        font-weight: 700;
        right: -2.999vw;
    }

    .txt_fees {
        width: 100%;
        font-size: 2.347vw;
        line-height: 1.5;
        margin: 0 0 0.911vw;
        padding: 0 1.304vw;
    }
}

/* --------------------------------
   end Month free section
-------------------------------- */
   
/* --------------------------------
   FAQ section
-------------------------------- */
.sec_faq {
    background: url(../../images/bg_com_sp.jpg) no-repeat center;
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    padding: 9.867vw 0 13vw;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.sec_faq  h2.mod_ttl{
    font-size: 7.2vw;
}

.sec_faq h3 {
    font-size: 4.267vw;
    font-weight: 700;
    margin: 6.667vw 0 4vw;
    text-align: center;
    color: #474747;
}

.sec_faq .inner_faq {
    margin: 0 auto;
    max-width: 1000px;
}

.sec_faq .sect_h {
    margin-bottom: 3vw;
}

.sec_faq .faq_wrap {
    width: 91.5%;
    margin: 0 auto 4vw;
    -webkit-border-radius: 1.600vw;
    border-radius: 1.600vw;
    border: 0.267vw solid #dfdfdf;
}

.sec_faq .faq_wrap.last{
    margin-bottom: 40px;
}

.sec_faq .faq_wrap li {
    background: #FAFAFA;
    padding: 3.467vw 5vw 3.467vw 4vw;
    position: relative;
}

.sec_faq .faq_wrap li.question {
    display: flex;
    cursor: pointer;
    -webkit-border-radius: 1.600vw;
    border-radius: 1.600vw;
}

.sec_faq .faq_wrap li .faq_img,
.sec_faq .faq_wrap li.answer {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sec_faq .faq_wrap li.answer {
    background: var(--white-color);
    flex-wrap: nowrap;
}

.sec_faq .faq_wrap li.question::after,
.sec_faq .faq_wrap.is-active li.question::after {
    content: "";
    position: absolute;
    width: 2.667vw;
    height: 1.600vw;
    background: url(../../images/icon_drop.jpg) no-repeat;
    -webkit-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    right: 3vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sec_faq .faq_wrap.is-active li.question::after {
    content: "";
    position: absolute;
    width: 2.667vw;
    height: 1.600vw;
    background: url(../../images/icon_up.jpg) no-repeat;
    -webkit-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    right: 4vw;
}

.sec_faq .faq_wrap li .info_sec a {
    color: #326691;
}

.sec_faq .faq_wrap li .info_sec p,
.sec_faq .faq_wrap li .faq_img {
    margin-bottom: 4vw;
}

.sec_faq .faq_wrap li .faq_img img,
.sec_faq .faq_wrap li.answer img {
    width: 37.600vw;
}

.sec_faq .faq_wrap li .faq_img {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.sec_faq .faq_wrap li .faq_img img:first-child {
    margin: 0;
}

.sec_faq .faq_wrap span {
    width: auto;
    font-weight: 700;
    margin-right: 1.333vw;
}

.sec_faq .faq_wrap span,
.sec_faq .faq_wrap p {
    font-size: 4.267vw;
    color: #003e70;
    display: inline-block;
}

.sec_faq .faq_wrap p {
    color: var(--mod-txt);
}

.notics_list{
    width: 91.5%;
    margin: 0 auto;
    background: var(--white-color);
    -webkit-border-radius: 4.267vw;
            border-radius: 4.267vw;
    padding: 5.867vw;
}

.notics_list p.mod_txt {
    text-indent: -5vw;
    padding-left: 5vw;
}

@media (min-width: 768px) {
    .sec_faq {
        padding: 60px 0 65px;
        background: url(../../images/bg_com.jpg) no-repeat center;
        -webkit-background-size: cover;
             -o-background-size: cover;
                background-size: cover;
    }
    .sec_faq h2.mod_ttl{
        font-size: 3.2rem;
    }

    .sec_faq h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 25px 0 15px;
        text-align: center;
        color: #474747;
    }

    .sec_faq .inner_faq {
        margin: 0 auto;
        max-width: 1000px;
    }

    .sec_faq .faq_wrap {
        width: 100%;
        margin: 0 auto 15px;
        -webkit-border-radius: 6px;
        border-radius: 6px;
        border: 1px solid #dfdfdf;
    }

    .sec_faq .faq_wrap li {
        background: #FAFAFA;
        padding: 13px 15px;
        position: relative;
    }

    .sec_faq .faq_wrap li.question {
        cursor: pointer;
        -webkit-border-radius: 6px;
        border-radius: 6px;
    }

    .sec_faq .faq_wrap li .faq_img,
    .sec_faq .faq_wrap li.answer {
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .sec_faq .faq_wrap li.answer {
        flex-wrap: nowrap;
    }

    .sec_faq .faq_wrap li.question::after,
    .sec_faq .faq_wrap.is-active li.question::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 6px;
        background: url(../../images/icon_drop.jpg) no-repeat;
        -webkit-background-size: 100% auto;
        -o-background-size: 100% auto;
        background-size: 100% auto;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .sec_faq .faq_wrap.is-active li.question::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 6px;
        background: url(../../images/icon_up.jpg) no-repeat;
        -webkit-background-size: 100% auto;
        -o-background-size: 100% auto;
        background-size: 100% auto;
        right: 15px;
    }

    .sec_faq .faq_wrap li .info_sec p,
    .sec_faq .faq_wrap li .faq_img {
        margin-bottom: 15px;
    }

    .sec_faq .faq_wrap li .faq_img img,
    .sec_faq .faq_wrap li.answer img {
        width: 310px;
    }

    .sec_faq .faq_wrap li .faq_img img:first-child {
        margin: 0;
    }

    .sec_faq .faq_wrap span {
        width: 24px;
        font-weight: 700;
    }

    .sec_faq .faq_wrap span,
    .sec_faq .faq_wrap p {
        font-size: 1.6rem;
        color: #003e70;
        display: inline-block;
    }

    .sec_faq .faq_wrap p {
        color: var(--mod-txt);
    }

    .notics_list{
        width: 100%;
        -webkit-border-radius: 16px;
                border-radius: 16px;
        padding: 22px;
    }

    .notics_list p.mod_txt {
        text-indent: 0;
        padding-left: 0;
    }
}

/* For Tablet*/
@media only screen and (min-width: 521px) and (max-width: 767px) {
    .sec_faq {
        padding: 7.823vw 0 8.475vw;
    }

    .sec_faq h2.mod_ttl {
        font-size: 3.6vw;
    }

    .sec_faq h3 {
        font-size: 2.347vw;
        margin: 3.259vw 0 1.956vw;
        color: #474747;
    }

    .sec_faq .faq_wrap {
        width: 91.8%;
        margin: 0 auto 1.956vw;
        -webkit-border-radius: 0.782vw;
        border-radius: 0.782vw;
        border: 0.130vw solid #dfdfdf;
    }

    .sec_faq .faq_wrap li {
        padding: 1.695vw 1.956vw;
    }

    .sec_faq .faq_wrap li.question {
        -webkit-border-radius: 0.782vw;
        border-radius: 0.782vw;
    }

    .sec_faq .faq_wrap li.question::after,
    .sec_faq .faq_wrap.is-active li.question::after {
        content: "";
        position: absolute;
        width: 1.304vw;
        height: 0.782vw;
        background: url(../../images/icon_drop.jpg) no-repeat;
        -webkit-background-size: 100% auto;
        -o-background-size: 100% auto;
        background-size: 100% auto;
        right: 1.956vw;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .sec_faq .faq_wrap.is-active li.question::after {
        content: "";
        position: absolute;
        width: 1.304vw;
        height: 0.782vw;
        background: url(../../images/icon_up.jpg) no-repeat;
        -webkit-background-size: 100% auto;
        -o-background-size: 100% auto;
        background-size: 100% auto;
        right: 1.956vw;
    }

    .sec_faq .faq_wrap li .info_sec p,
    .sec_faq .faq_wrap li .faq_img {
        margin-bottom: 1.956vw;
    }

    .sec_faq .faq_wrap li .faq_img img,
    .sec_faq .faq_wrap li.answer img {
        width: 40.417vw;
    }

    .sec_faq .faq_wrap li .faq_img img:first-child {
        margin: 0 1.304vw 0 0;
    }

    .sec_faq .faq_wrap span {
        width: 3.129vw;
        font-weight: 700;
    }

    .sec_faq .faq_wrap span,
    .sec_faq .faq_wrap p {
        font-size: 2.086vw;
    }

    .sec_faq .faq_wrap p {
        color: #474747;
    }

    .notics_list{
        -webkit-border-radius: 2.086vw;
                border-radius: 2.086vw;
        padding: 2.933vw;
    }

    .notics_list p.mod_txt {
        text-indent: -2.5vw;
        padding-left: 2.5vw;
    }
}

/* --------------------------------
   end FAQ section
-------------------------------- */
   
/* --------------------------------
   notes section
-------------------------------- */
.ttl_service{
    font-size: 3.733vw;
    font-weight: 700;
    color: #474747;
    margin: 5.333vw 0 2.667vw;
}
.service_contents .list{
    margin-bottom: 2.667vw;
}
.list .que{
    background: #FFF;
    border: 1px solid #DADADA;
    padding: 4vw;
    position: relative;
}
.list .que::after{
    content: "";
    width: 3.200vw;
    height: 1.867vw;
    background: url(../../images/icon_drop.jpg) no-repeat top center;
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    position: absolute;
    top: 45%;
    right: 4vw;
}
.list.is-active .que::after{
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}
.list .ans{
    background: #F7F7F7;
    border-left: 1px solid #DADADA;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
    padding: 4vw;
}
.list p{
    font-size: 3.733vw;
    font-weight: 400;
    color: #333;
}
.ans table{
    border: 1px solid #DADADA;
}
.ans table tr{
    border-bottom: 1px solid #DADADA;
}
.ans table th,
.ans table td{
    font-size: 3.200vw;
    font-weight: 400;
    color: #474747;
    border-right: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
}
.ans table th{
    color: #fff;
    background: #474747;
    padding: 1.333vw 2vw;
}
.ans table td{
    padding: 5.333vw 4vw;
}
.ans table .col_01{
    width: 30%;
}
.ans table .col_02{
    width: 35%;
}
.ans table .col_03{
    width: 35%;
}
.sec_notes {
    background: var(--grey-color);
    padding: 13.33333vw 0 14.66667vw;
    background-color: #efefef;
    content-visibility: auto;
    contain-intrinsic-size: 1700px;
}

@media (min-width: 768px) {
    .sec_notes {
        padding: 80px 0 72px;
    }
}

.sec_notes .conversion {
    margin-top: 12vw;
}

@media (min-width: 768px) {
    .sec_notes .conversion {
        margin-top: 60px;
    }
}

.notes_inner {
    margin: 0 4vw;
}

@media (min-width: 768px) {
    .notes_inner {
        margin: auto;
        max-width: 1000px;
    }
}

@media (min-width: 768px) {
    .sec_notes h2.mod_ttl,
    .notes_h {
        font-size: 3.2rem;
    }
}

.notes_list+.notes_list {
    margin: 7.66667vw 0 0;
}

@media (min-width: 768px) {
    .notes_list+.notes_list {
        margin-top: 30px;
    }
}

.notes_list_h {
    padding-left: 1.7em;
    text-indent: -1.7em;
    font-size: 4.800vw;
    font-weight: 700;
    color: #474747;
}

@media (min-width: 768px) {
    .notes_list_h {
        font-size: 1.8rem;
        color: #474747;
    }
}

@media (min-width: 768px) {
    .notes_list_body {
        margin-top: 6px;
    }
}

.notes_list_child p {
    font-size: 3.733vw;
    line-height: 1.6;
    color: var(--mod-txt);
}

@media (min-width: 768px) {
    .ttl_service{
        font-size: 1.4rem;
        font-weight: 700;
        color: #474747;
        margin: 30px 0 15px;
    }
    .notes_list_child p {
        font-size: 1.6rem;
        line-height: 1.71429;
    }
    .notes_list_child p a{
        display: inline;
    }
    .notes_list_child p.align_txt {
        text-indent: -52px;
        padding-left: 52px;
    }
}

.notes_list_child p a {
    text-decoration: underline;
    color: #0a3e6f;
    display: inline;
}

@media (min-width: 768px) {
    .notes_list_child p a:hover {
        text-decoration: none;
    }
}

.notes_list_child li {
    padding-left: 1.3em;
    text-indent: -1.3em;
}

.notes_list_child+.notes_list_child {
    margin: 5.33333vw 0 0;
}

.notes_list_child.first+.notes_list_child {
    margin-top: 0;
}

@media (min-width: 768px) {

    .notes_list_child+.notes_list_child,
    .notes_list_child02 {
        margin-top: 22px;
    }
}

table {
    width: 100%;
}

.table_02 {
    margin: 2.13333vw 0 4.53333vw;
    border-bottom: 1px solid #ccc;
}

@media (min-width: 768px) {
    .table_02 {
        margin: 12px 0 20px;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
    }

    .table_02.custom{
        margin-bottom: 12px;
    }
}

.table_02 th,
.table_02 td {
    padding: 3.33333vw;
    width: calc(100% / 3);
    text-align: center;
    font-size: 3.2vw;
    line-height: 1.58333;
}

@media (min-width: 768px) {

    .table_02 th,
    .table_02 td {
        padding: 18px;
        font-size: 1.4rem;
    }
}

.table_02 th {
    background-color: #000;
    color: #fff;
}

.table_02 th+th {
    border-left: 1px solid #ccc;
}

.table_02 td {
    background-color: #fff;
    color: #474747;
}

.table_02 td+td {
    border-left: 1px solid #ccc;
}

.table_02 td a {
    text-decoration: underline;
    color: #0a3e6f;
}

@media (min-width: 768px) {
    .table_02 td a:hover {
        text-decoration: none;
    }
}

@media (min-width: 768px) {
    .width_584 {
        width: 58.4% !important;
    }
}

@media (min-width: 768px) {
    .width_630 {
        width: 63% !important;
    }
}

.table_04 {
    margin: 2.13333vw 0;
    border-bottom: 1px solid #ccc;
}

@media (min-width: 768px) {
    .table_04 {
        margin: 7px 0 12px;
        border: 1px solid #DADADA;
        border-bottom: none;
    }
}

.table_04 th,
.table_04 td {
    padding: 3.33333vw;
    width: calc(100% / 4);
    text-align: left;
    font-size: 3.2vw;
    line-height: 1.58333;
}

@media (min-width: 768px) {

    .table_04 th,
    .table_04 td {
        padding: 18px;
        font-size: 1.2rem;
    }
}

.table_04 th {
    background-color: #000;
    color: #fff;
}

.table_04 th+th {
    border-left: 1px solid #ccc;
}

.table_04 td {
    background-color: #fff;
    color: var(--mod-txt);
}

.table_04 th,
.table_04 td {
    border-bottom: 1px solid #ccc;
}

.table_04 td.ls_col {
    width: 40%;
}

.table_04 td,
.table_04 td+td {
    border-left: 1px solid #ccc;
}

@media (min-width: 521px) and (max-width: 767px){
    .notes {
        padding: 10.430vw 0 9.387vw;
    }
    .notes_inner {
        width: 95%;
        margin: auto;
        max-width: 1000px;
    }
    .notes_list_h {
        font-size: 2.347vw;
        color: var(--mod-txt);
    }
    .service_tbl{
        display: block;
    }
    .ttl_service{
        font-size: 1.825vw;
        margin: 3.911vw 0 1.956vw;
    }
    .notes_list_child p {
        font-size: 2.086vw;
    }
    .ttl_service{
        font-size: 1.825vw;
        margin: 4.215vw 0 1.565vw;
    }
    .service_contents .list{
        margin-bottom: 2.667vw;
    }
    .list .que{
        padding: 1.565vw;
    }
    .list .que::after{
        width: 1.565vw;
        height: 0.913vw;
        right: 1.565vw;
    }
    .list .ans{
        padding: 1.565vw;
    }
    .list p{
        font-size: 1.825vw;
    }
    .ans table th,
    .ans table td{
        font-size: 1.825vw;
    }
    .ans table th{
        padding: 2.333vw 2vw;
    }
    .ans table td{
        padding: 2.333vw 2vw;
    }
    .notes_list+.notes_list{
        margin: 2.66667vw 0 0;
    }
    .table_02 th,
    .table_02 td{
        font-size: 1.825vw;
        padding: 2.333vw 2vw;
    }
}
/*end of notes section*/

/* --------------------------------
   footerNav
-------------------------------- */
.footerNav {
    background-color: #fff;
}

.footerNav_inner {
    padding: 25px 15px;
}

@media (min-width: 768px) {
    .footerNav_inner {
        padding: 8px 0;
    }
}

.footerNav_list {
    display: flex;
    margin-top: -11px;

    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footerNav_listItem {
    margin: 11px 24px 0;
}

.footerNav_listItem a {
    text-decoration: none;
    color: #67779f;
    font-size: 1.2rem;
    line-height: 1.8;

    -webkit-font-smoothing: auto;
}

@media (min-width: 768px) {
    .footerNav_listItem a {
        transition: 0.3s color cubic-bezier(0, 0, 0.58, 1);
        color: #0a385b;
    }

    .footerNav_listItem a:hover {
        color: #8a8a8a;
    }
}

/* --------------------------------
   footer
-------------------------------- */
.footer {
    padding-bottom: 34.667vw;
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 130px;
    }
}

.footer_inner {
    display: flex;
    padding: 12px 5px;
    background-color: #0a385b;

    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .footer_inner {
        padding: 22px 5px;
    }
}

.footer_logo {
    margin-right: 9px;
    width: 52px;
    font-size: 0;
}

@media (min-width: 768px) {
    .footer_logo {
        margin-right: 22px;
        width: 60px;
    }
}

.footer_logo img {
    width: 100%;
}

.footer_copylight {
    color: #fff;
    font-size: 1rem;
    -webkit-font-smoothing: auto;
}

@media (min-width: 768px) {
    .footer_copylight {
        letter-spacing: 0.9px;
        font-size: 1.4rem;
    }
}

/* #m-timeline
   -------------------------------------------------------------------------- */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    padding-left: 27px;
    padding-right: 12px;
    margin: 48px 20px 30px;
}

@media screen and (min-width: 1000px) {
    .timeline-wrapper {
        padding-left: 33px;
        padding-right: 12px;
    }
}

.timeline-wrapper+.timeline-wrapper {
    margin-top: 80px;
}

.timeline-bar {
    width: 100%;
    height: 24px;
}

.timeline-bar__item {
    position: relative;
    display: inline-block;
    height: 24px;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
    /* margin-right: -2px; */
}

.timeline-bar__item:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -27px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #fff;
}

@media screen and (min-width: 1000px) {
    .timeline-bar__item:before {
        left: -33px;
        width: 67px;
        height: 67px;
    }
}

@media screen and (max-width: 768px),
print {
    .timeline-bar__item {
        font-size: 10px;
    }
}

.timeline-bar__item--free {
    background: #f78600;
}

.timeline-bar__item.timeline-bar__item--free:before {
    background-color: #f78600;
}

.timeline-bar__item--daily {
    background-color: #003e70;
}

.timeline-bar__item.timeline-bar__item--daily:before {
    background-color: #003e70;
}

.timeline-bar__item--regular {
    background-color: #0076d6;
}

.timeline-bar__item.timeline-bar__item--regular:before {
    background-color: #0076d6;
}

.timeline-bar__item.timeline-bar__item--regular:after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent #0076d6;
}

.timeline-desc {
    width: 100%;
}

.timeline-desc__sub {
    display: inline-block;
    bottom: 0;
    font-size: 10px;
    margin-left: 0.25em;
    font-weight: normal;
}

.timeline-desc__item {
    display: inline-block;
    white-space: nowrap;
    font-weight: 800;
    font-size: 10px;
    line-height: 1.2;
    padding-left: 1.5%;
    vertical-align: top;
}

@media screen and (min-width: 1000px) {
    .timeline-desc__item {
        font-size: 14px;
        line-height: 1.8;
    }
}

.timeline-desc__item:before {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #ccc;
    margin: 0 auto 4px;
}

.timeline-label--start {
    left: -27px;
}

.timeline-bar__item--free,
.timeline-desc__item--free {
    width: 85%;
}

.timeline-label--one-month {
    left: calc(85% - 60px);
}

@media screen and (min-width: 1000px) {
    .timeline-label--start {
        left: -33px;
    }

    .timeline-label--one-month {
        left: calc(85% - 70px);
    }
}

.timeline-bar__item--daily,
.timeline-desc__item--daily {
    width: 42.5%;
}

.timeline-bar__item--regular,
.timeline-desc__item--regular {
    width: 15%;
}

.timeline-desc__item--regular {
    padding-left: 10%;
}

@media screen and (min-width: 1000px) {
    .timeline-desc__item--regular {
        padding-left: 3%;
    }
}

/* timeline-bar--beginning */
.timeline-bar--beginning .timeline-bar__item--daily,
.timeline-desc--beginning .timeline-desc__item--daily,
.timeline-label--beginning .timeline-label--one-month,
.m-note__general--beginning.m-note__general--item {
    display: none;
}

/* timeline-bar--first-week */
.timeline-bar--first-week .timeline-bar__item--free,
.timeline-desc--first-week .timeline-desc__item--free {
    width: 42.5%;
}

.timeline-bar--first-week .timeline-bar__item--daily,
.timeline-desc--first-week .timeline-desc__item--daily {
    width: 42.5%;
}

.timeline-label--first-week .timeline-label--one-month {
    left: calc(42.5% - 43px);
}

.timeline-label--next-month {
    left: calc(85% - 60px);
}

@media screen and (min-width: 1000px) {
    .timeline-label--first-week .timeline-label--one-month {
        left: calc(42.5% - 52px);
    }

    .timeline-label--next-month {
        left: calc(85% - 71px);
    }
}

/* timeline-bar--second-weeks */
.timeline-bar--second-weeks .timeline-bar__item--free,
.timeline-desc--second-weeks .timeline-desc__item--free {
    width: 47.5%;
}

.timeline-bar--second-weeks .timeline-bar__item--daily,
.timeline-desc--second-weeks .timeline-desc__item--daily {
    width: 37.5%;
}

.timeline-label--second-weeks .timeline-label--one-month {
    left: calc(47.5% - 46px);
}

@media screen and (min-width: 1000px) {
    .timeline-label--second-weeks .timeline-label--one-month {
        left: calc(47.5% - 55px);
    }
}

/* timeline-bar--third-weeks */
.timeline-bar--third-weeks .timeline-bar__item--free,
.timeline-desc--third-weeks .timeline-desc__item--free {
    width: 52.5%;
}

.timeline-bar--third-weeks .timeline-bar__item--daily,
.timeline-desc--third-weeks .timeline-desc__item--daily {
    width: 32.5%;
}

@media screen and (min-width: 1000px) {

    .timeline-bar--third-weeks .timeline-bar__item--free,
    .timeline-desc--third-weeks .timeline-desc__item--free {
        width: 49.25%;
    }

    .timeline-bar--third-weeks .timeline-bar__item--daily,
    .timeline-desc--third-weeks .timeline-desc__item--daily {
        width: 35.75%;
    }
}

.timeline-label--third-weeks .timeline-label--one-month {
    left: calc(52.5% - 47px);
}

@media screen and (min-width: 1000px) {
    .timeline-label--third-weeks .timeline-label--one-month {
        left: calc(49.25% - 55px);
    }
}

/* timeline-bar--fourth-weeks */
.timeline-bar--fourth-weeks .timeline-bar__item--free,
.timeline-desc--fourth-weeks .timeline-desc__item--free {
    width: 51%;
}

.timeline-bar--fourth-weeks .timeline-bar__item--daily,
.timeline-desc--fourth-weeks .timeline-desc__item--daily {
    width: 34%;
}

@media screen and (min-width: 1000px) {

    .timeline-bar--fourth-weeks .timeline-bar__item--free,
    .timeline-desc--fourth-weeks .timeline-desc__item--free {
        width: 51%;
    }

    .timeline-bar--fourth-weeks .timeline-bar__item--daily,
    .timeline-desc--fourth-weeks .timeline-desc__item--daily {
        width: 34%;
    }
}

.timeline-label--fourth-weeks .timeline-label--one-month {
    left: calc(51% - 46px);
}

@media screen and (min-width: 1000px) {
    .timeline-label--fourth-weeks .timeline-label--one-month {
        left: calc(51% - 55px);
    }
}

/* timeline-bar--fifth-weeks */
.timeline-bar--fifth-weeks .timeline-bar__item--free,
.timeline-desc--fifth-weeks .timeline-desc__item--free {
    width: 58%;
}

.timeline-bar--fifth-weeks .timeline-bar__item--daily,
.timeline-desc--fifth-weeks .timeline-desc__item--daily {
    width: 27%;
}

.timeline-desc--fifth-weeks .timeline-desc__item--daily {
    padding-left: 0;
    margin-left: -10px;
}

@media screen and (min-width: 1000px) {

    .timeline-bar--fifth-weeks .timeline-bar__item--free,
    .timeline-desc--fifth-weeks .timeline-desc__item--free {
        width: 68%;
    }

    .timeline-bar--fifth-weeks .timeline-bar__item--daily,
    .timeline-desc--fifth-weeks .timeline-desc__item--daily {
        width: 17%;
    }

    .timeline-desc--fifth-weeks .timeline-desc__item--daily {
        padding-left: 1.5%;
        margin-left: 0;
    }
}

.timeline-label--fifth-weeks .timeline-label--one-month {
    left: calc(58% - 48px);
}

@media screen and (min-width: 1000px) {
    .timeline-label--fifth-weeks .timeline-label--one-month {
        left: calc(68% - 63px);
    }
}

/* timeline-bar--3-days-ago */
.timeline-bar--3-days-ago .timeline-bar__item--free,
.timeline-desc--3-days-ago .timeline-desc__item--free {
    width: 58%;
}

.timeline-bar--3-days-ago .timeline-bar__item--daily,
.timeline-desc--3-days-ago .timeline-desc__item--daily {
    width: 27%;
}

.timeline-desc--3-days-ago .timeline-desc__item--daily {
    padding-left: 0;
    margin-left: -10px;
}

@media screen and (min-width: 500px) {

    .timeline-bar--3-days-ago .timeline-bar__item--free,
    .timeline-desc--3-days-ago .timeline-desc__item--free {
        width: 70%;
    }

    .timeline-bar--3-days-ago .timeline-bar__item--daily,
    .timeline-desc--3-days-ago .timeline-desc__item--daily {
        width: 15%;
    }

    .timeline-desc--3-days-ago .timeline-desc__item--daily {
        position: relative;
        right: 8px;
        padding-left: 1.5%;
        margin-left: 0;
    }
}

@media screen and (min-width: 1000px) {

    .timeline-bar--3-days-ago .timeline-bar__item--free,
    .timeline-desc--3-days-ago .timeline-desc__item--free {
        width: 75%;
    }

    .timeline-bar--3-days-ago .timeline-bar__item--daily,
    .timeline-desc--3-days-ago .timeline-desc__item--daily {
        width: 10%;
    }

    .timeline-desc--3-days-ago .timeline-desc__item--daily {
        position: relative;
        right: 8px;
        padding-left: 1.5%;
        margin-left: 0;
    }
}

.timeline-label--3-days-ago .timeline-label--one-month {
    left: calc(58% - 50px);
}

@media screen and (min-width: 500px) {
    .timeline-label--3-days-ago .timeline-label--one-month {
        left: calc(70% - 56px);
    }
}

@media screen and (min-width: 1000px) {
    .timeline-label--3-days-ago .timeline-label--one-month {
        left: calc(75% - 68px);
    }
}

/* timeline-bar--months */
.timeline-bar--by-months .timeline-bar__item--free,
.timeline-bar--by-months .timeline-bar__item--regular,
.timeline-desc--by-months .timeline-desc__item--free,
.timeline-desc--by-months .timeline-desc__item--regular {
    width: 50%;
}

.timeline-bar__item--daily[aria-hidden="true"],
.timeline-desc__item--daily[aria-hidden="true"],
.timeline-label--one-month[aria-hidden="true"],
.timeline-label--start-date[aria-hidden="true"] {
    display: none;
}

.timeline-label--by-months .timeline-label--next-month {
    left: calc(50% - 46px);
}

.timeline-label--by-months .timeline-label__desc {
    font-size: 1.1rem;
}

@media screen and (min-width: 1000px) {
    .timeline-label--by-months .timeline-label--next-month {
        left: calc(50% - 55px);
    }

    .timeline-label--by-months .timeline-label__desc {
        font-size: 1.4rem;
    }
}


.timeline-label {
    position: absolute;
    display: block;
    width: 100%;
    height: 24px;
    z-index: 1;
}

.timeline-label--start,
.timeline-label--one-month,
.timeline-label--next-month {
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    width: 54px;
}

@media screen and (min-width: 1000px) {

    .timeline-label--start,
    .timeline-label--one-month,
    .timeline-label--next-month {
        font-size: 14px;
        width: 67px;
    }
}

.timeline-label__desc {
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    width: 100%;
}

