@charset "UTF-8";
/* CSS Document */

body {
    background-color: #fff;
    font: inherit;
    width: 100%;
    margin: 0px;
}

h4, h5 {
    font-weight: normal;
}

/*ヘッダーまわりはご自由に*/

#nav-drawer {
    position: relative;
}

/*チェックボックス等は非表示に*/

.nav-unshown {
    display: none;
}

/*アイコンのスペース*/

#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/

#nav-open span {
    position: absolute;
    height: 83px;
    width: 83px;
    /*長さ*/
    background-size: cover;
    display: block;
    content: '';
    cursor: pointer;
}

.menu_open_pc {
    height: 83px;
    width: 83px;
    margin-top: 6px;
}

#nav-open {
    margin-right: 29px;
    margin-top: -83px;
    float: right;
    height: 83px;
    width: 83px;
}

#nav-open span:before {
    bottom: -8px;
}

#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/

#nav-close {
    display: block;
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    margin-top: 10px;
    right: 29px;
    width: 83px;
    height: 83px;
    background-size: cover;
    opacity: 0;
    transition: .3s ease-in-out;
}

#nav-close {
    display: inline-block;
    vertical-align: middle;
}

.menu_close_pc {
    width: 83px;
    height: 83px;
}

/*中身*/

#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /*最前面に*/
    width: 100%;
    /*最大幅*/
    height: 100%;
    background: none;
    visibility: hidden;
    /*背景色*/
    transition: transform 0.5s ease-in-out, visibility 0s;
    /*滑らかに表示*/
    -webkit-transform: translateY(-105%);
    transform: translateY(-105%);
}

#nav_drawer {
    display: inline-block;
}

/*チェックが入ったらもろもろ表示*/

#nav-input:checked~#nav-content #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: 1.0;
}

#nav-input:checked~#nav-content {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    /*中身を表示*/
}

.model_container {
    width: 100%;
    background: #114b91;
    border-bottom: 3px solid #0D6C8B;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
}

#nav-input:checked~#nav-content #nav_drawer {
    display: block;
}

.inner_1320 {
    width: 91.66667%;
    max-width: 1320px;
    margin: auto;
}

.model_container .model_nav {
    box-sizing: border-box;
    background: #FFF;
    border-radius: 10px;
    margin-top: 118px;
    padding: 70px 9% 90px;
}

.model_container .model_nav .main_nav {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    height: 190px;
    width: 100%;
}

.model_container .model_nav .main_nav li {
    font-size: 25px;
    list-style: none;
    font-weight: 800;
    font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position: relative;
}

.model_container .model_nav .main_nav li a.main_nav_link {
    display: inline-block;
    padding: 24px 8px;
    width: 95%;
}

.model_container .model_nav .main_nav .sub_nav li {
    width: auto;
    font-size: 15px;
    list-style: none;
    font-weight: 900;
    font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    margin: 0 0 8px;
    position: relative;
    padding: 0;
}

.sub_nav {
    padding: 0;
}

.main_nav_link:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    background-color: #114b91;
    background-image: url("../image/white_arrow.png");
    background-repeat: no-repeat;
    background-size: 7px;
    background-position: center center;
    margin-right: 10px;
}

.sub_nav li a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 10px;
    background-image: url("../image/arrow.png");
    background-repeat: no-repeat;
    background-size: 8px;
    margin-right: 12px;
    margin-left: 6px;
}

.model_container .model_nav .main_nav li .sub_nav {
    border-top: solid 3px #DFE8EF;
    padding: 12px 0px;
}

.model_container .model_nav .main_nav li .nav_sub_title {
    padding: 24px 12px;
    display: inline-block;
}

.model_container .model_nav .main_nav li ul.sub_nav li a.sub_nav_link {
    display: inline-block;
    padding: 8px 8px;
    width: 95%;
}

.model_btn_link {
    text-align: center;
    color: #FFF;
    font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: bold;
    margin: 46px 0;
}

.model_btn_link a {
    margin: 10px;
}

.model_btn_link a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 10px;
    background-image: url("../image/white_arrow.png");
    background-repeat: no-repeat;
    background-size: 8px;
    margin-right: 6px;
}

header {
    position: fixed;
    width: 100%;
    height: 100px;
    background-color: #114b91;
    border-bottom: 3px solid #0D6C8B;
    box-sizing: border-box;
    z-index: 2;
}

.header_rogo img {
    margin-top: 16px;
    margin-left: 29px;
    width: 285px;
    height: auto;
}

.header_rogo {
    max-width: 100%;
    margin-right: auto;
}

.h5 {
    text-align: center;
    padding: 10px;
}

.wrapper {
    padding-top: 100px;
    box-sizing: border-box;
    z-index: 0;
}

.contents_inner {
    padding-top: 100px;
}

.small_script {
    font-size: 20px;
    margin-bottom: 20px;
}

.step_list li:not(:first-child)::before {
    content: "";
    background: url("../image/arrow.png") no-repeat center bottom;
    background-size: contain;
    display: flex;
    position: absolute;
    top: 30%;
    width: 2em;
    height: 2em;
    padding: 0px -40px;
}

/*****ここを均等にするか*******/

.stepbox {
    width: 90%;
}

.step_list {
    position: relative;
}

.step_list ul {
    display: flex;
    text-align: center;
}

.step_list {
    margin: auto;
    padding: 0 0;
    text-align: center;
}

.step_list img {
    height: 75px;
    text-align: center;
}

.step_list h4 {
    font-weight: bolder;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.step_list h5 {
    line-height: 1.8em;
    /*説明文行間*/
}

.stepbox .step_list h6 {
    line-height: 1em;
    /*分割払いはできません*/
}

.stepbox .step_text p{
    text-align: justify;
}

.step_img {
    margin: 40px;
}

.step_list li {
    display: table-cell;
}

.step_list p {}

.shoplist_img {
    text-align: center;
}

.step_text {
    margin-top: 20px !important;
    margin-bottom: 30px;
    margin-left: 15% !important;
    margin-right: 15% !important;
}

#step2 {
    margin-left: 10px;
}

#step2 li {
    margin-right: 20px;
}

.bread_box {
    width: 100%;
    background-color: #DFE8EF;
    font-weight: bold;
}

.bread_box ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 32px;
    align-items: center;
    height: 80px;
    margin: 0px;
}

.bread_box ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.bread_box ul li:not(:last-child) {
    margin-right: 1em;
}

.bread_box ul li:not(:first-child)::before {
    width: 8px;
    height: 10px;
    content: "";
    background: url("../../img/common/arrow@2x.png") no-repeat center bottom;
    background-size: contain;
    margin-right: 1em;
    display: inline-block;
}

.inner {
    width: 86.11111%;
    max-width: 1240px;
    margin: auto;
}

.inpage_link_btn {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.top img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
    border-bottom: solid 3px #DFE8EF;
    border-top: solid 3px #DFE8EF;
}

#bloc1 {
    padding-top: 100px;
    margin-top: -100px;
    margin-bottom: 78px;
    padding-bottom: 90px;
    border-bottom: solid 3px #DFE8EF;
}

#bloc2 {
    padding-top: 100px;
    margin-top: -100px;
}

ul.dot_marker_list {
    list-style: none;
    padding-left: 1.2em;
}

ul.dot_marker_list li {
    display: block;
    padding: 4px 0px;
    text-indent: -1.3em;
    font-size: 16px;
}

@media (max-width: 1200px) {
    ul.dot_marker_list li {
        font-size: 12px;
    }
}

@media (max-width: 500px) {
    ul.dot_marker_list li {
        font-size: 12px;
        line-height: 14px;
    }
}

ul.dot_marker_list li::before {
    content: '●';
    margin-right: 1rem;
    font-size: 10px;
}

#bloc3 {
    padding-top: 100px;
    margin-top: -100px;
}

.inpage_link_btn a:hover {
    color: #000000;
    background-color: #E1E8EE;
}

.inpage_link_btn a {
    display: inline-block;
    width: 30%;
    position: relative;
    border-radius: 100px;
    border: solid 3px #E1E8EE;
    border-radius: 100px;
    line-height: 4em;
    font-weight: 900;
    text-decoration: none;
    text-align: center;
    color: #000;
}

.inpage_link_btn a:before {
    width: 8px;
    height: 10px;
    content: "";
    background: url("../image/arrow_.png")no-repeat center bottom;
    background-size: contain;
    margin-right: 1em;
    display: inline-block;
}

/***************************/

.main-text h3 {
    font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 26px;
    position: relative;
    padding-left: 26px;
}

/*****************************/

.menu a {
    display: block;
    padding: 5px;
    /* text-decoration: none; */
    /* color: #000; */
}

/*************⑧追加*******************/

label.Qa {
    height: 30px;
    margin: 8px 0 8px 0;
    border-radius: 10px;
    padding: 30px 15px 30px 0px;
    line-height: 1;
    color: #000000;
    background: #E1E8EE;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: 900;
}
@media (max-width: 769px) {
label.Qa {
    border-radius: 10px;
    padding: 30px 15px 30px 15px;
    font-size: 1.3rem;
    font-weight: 900;
}
}

label.Qa::after {
    width: 15px;
    height: 15px;
    content: "";
    background: url("../image/arrow_.png")no-repeat center;
    background-size: contain;
    margin-right: 1em;
    display: flex;
    transition: .5s;
}

.Qa h1 {
    display: flex;
    margin-left: 3%;
}
/*
#menu_bar01:checked~label#Qa_btn01::after, #menu_bar02:checked~label#Qa_btn02::after, #menu_bar03:checked~label#Qa_btn03::after {
    transform-origin: center center;
    transition: .5s;
    transition-property: transform;
}
*/
/**************************************/

input {
    display: none;
}

.menu ul {
    list-style: none;
    height: 0;
    padding: 0;
    overflow: hidden;
    background-color: #F2F5F7;
    border-radius: 20px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
/*
#menu_bar01~ul#links01, #menu_bar02~ul#links02, #menu_bar03~ul#links03 #menu_bar04~ul#links04{
    height: 0;
    transition: all 0.5s;
}

#menu_bar01~ul#links01 li, #menu_bar02~ul#links02 li, #menu_bar03~ul#links03 li #menu_bar04~ul#links04 li {
    opacity: 0;
    height: 0;
    transition: all 0.5s;
}

#menu_bar01~ul#links01 li dl.Qa_txt, #menu_bar02~ul#links02 li dl.Qa_txt #menu_bar03~ul#links03 li dl.Qa_txt #menu_bar04~ul#links04 li dl.Qa_txt {
    height: 0;
    transition: all 0.5s;
}
*/
#menu_bar01~ul#links01, #menu_bar02:checked~ul#links02, #menu_bar03:checked~ul#links03, #menu_bar04:checked~ul#links04 {
    display: block;
    padding: 15px 0px;
    height: auto;
    opacity: 1;
}

#menu_bar01~ul#links01 li:not(:first-child)::before, #menu_bar02:checked~ul#links02 li:not(:first-child)::before, #menu_bar03:checked~ul#links03 li:not(:first-child)::before, #menu_bar04:checked~ul#links04 li:not(:first-child)::before {
    display: block;
    opacity: 1;
}

#menu_bar01~ul#links01 li, #menu_bar02:checked~ul#links02 li, #menu_bar03:checked~ul#links03 li, #menu_bar04:checked~ul#links04 li {
    opacity: 1;
    height: auto;
}

#menu_bar01~ul#links01 li dl.Qa_txt, #menu_bar02:checked~ul#links02 li dl.Qa_txt, #menu_bar03:checked~ul#links03 li dl.Qa_txt, #menu_bar04:checked~ul#links0 li dl.Qa_txt {
    height: auto;
}

/*******************************************/

dl.Qa_txt {
    display: block;
    width: auto;
    height: auto;
    padding: 18px 60px;
}

.Qa_txt dt {
    line-height: 30px;
    font-weight: bold;
    margin: 5px 0px 14px 0px;
    clear: both;
}

.Qa_txt dt::before {
    content: "Q";
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin-right: 15px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    color: white;
    background-color: #114b91;
    display: block;
    float: left;
}

.Qa_txt dd::before {
    content: "A";
    font-weight: bold;
    width: 30px;
    height: 30px;
    font-size: 18px;
    margin-right: 15px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    color: white;
    background-color: #114b91;
    display: block;
    float: left;
}

.Qa_txt dd {
    font-size: 14px;
    line-height: 30px;
    clear: both;
}

.question {
    margin-top: 80px;
}

.question li:not(:first-child)::before {
    content: "";
    display: none;
    height: 2px;
    margin: 0% 3%;
    background-color: silver;
    border-radius: 1px;
    opacity: 1;
    transition: all 0.5s;
}

.main-text h3:before {
    content: "";
    display: inline-block;
    width: 6px;
    background: #114b91;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    height: 80%;
    transform: translateY(-50%);
}
.shoplist {
    display: table;
}

.stepList li {
    display: table-cell;
}

/* 規約 */
#bloc4 {
    width: 100%;
    background: #DFE8EF;
    padding: 35px 0px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

#bloc4 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    width: 360px;
    max-width: 400px;
    height: 75px;
    background: #fff;
    box-sizing: border-box;
    color: #222;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
    box-shadow: 0px 5px 12px #969da7, -6px -6px 12px #FFF;
    border-radius: 40px;
    position:relative;
    left: 0;
    top: 0;
    transition-duration: 0.2s;
    text-align: center;
    margin: 0 50px;
}
@media (max-width: 768px){
    #bloc4 {
        display: block;
		padding: 35px 0 15px 0;
    }
    #bloc4 a {
        font-size: 1.3rem;
        height: 54px;
        width: 80%;
        margin: 0 auto 20px;
    }
    #bloc4 a {
        margin-bottom: 20px;
    }
}

#bloc4 a:hover {
    left: 5px;
    top: 5px;
    box-shadow: 0 0 4px #CAD4E2, -2px -2px 4px #FFF;
}


.bloc4_inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.bloc4_inner .box {
    padding: 8px 4px;
}

div.anshin_img {
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.anshin_img img {
    width: 90%;
}

.anshinList_item {
    padding: 30px 0px;
    width: 45%;
}

div.yajirushi {
    width: 10%;
    position: relative;
}

.yajirushi img {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.anshinList {
    display: flex;
    justify-content: space-between;

}

.anshinList>div {
    display: flex;
}

.box {
    height: 300px;
    /* 高さを制限(※) */
    overflow: scroll;
    /* スクロールバーを表示(※) */
    /* 枠線を追加 */
    background-color: #fff;
    /* 背景色を追加 */
}

.txtArea {
    padding: 0px 12px;
    width: 50%;
}




.txtArea h6 {
    display: block;
    font-size: 16px;
    margin: 20px 0px 10px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}


#bloc2 {
    border-bottom: solid 3px #DFE8EF;
    margin-bottom: 78px;
    padding-bottom: 90px;
}

.bgG {
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    padding: 100px 0px;
}

.bgG ul {
    list-style: none;
}

.bgG li {
    display: table-cell;
    padding: 0px;
}

h6 {
    margin: 0px;
}

.anshinList li {
    display: table-cell;
}

.top_btn {
    display: inline-block;
    background-color: #114b91;
    background-image: url("../image/top_arrow.png");
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
}

.back-to-top-container {
    text-align: right;
    padding-right: 30px;
    padding-top: 30px;
}

.footer_cantainer {
    width: 100%;
    background-color: #114b91;
    padding: 30px 0px;
    color: #FFF;
}

.footer {
    padding-left: 10px;
}

.acd-check {
    display: none;
}

.inner_1320 {
    max-width: 1320px;
    margin: auto;
}

.footer_cantainer .footer {
    font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 100%;
    line-height: 1.3rem;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
}

.footer_cantainer .footer a {
    height: 40px;
    font-size: 13px;
    margin-right: 16px;
}

.footer_cantainer a {
    display: inline-block;
    margin-right: 16px;
}

.footer a:after {
    display: inline-block;
    content: "|";
    margin-left: 16px;
}

/* .copyright {
    font-size: 6px;
    margin-left: -10px;
} */

#inner_pic img {
    width: 100%;
    margin-top: 26px;
}

.shoplist_img img {
    width: 100%;
}

.bloc2_top2 img {
    width: 100%;
}

.menu_close_pc {
    display: block !important;
}

.menu_close_sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media only screen and (max-width: 752px) {
    .menu_close_pc {
        display: none !important;
    }
    .menu_close_sp {
        display: block !important;
    }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.menu_open_pc {
    display: block !important;
}

.menu_open_sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media only screen and (max-width: 752px) {
    .menu_open_pc {
        display: none !important;
    }
    .menu_open_sp {
        display: block !important;
    }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */

#logo_pc {
    display: block !important;
    transition: opacity 0.3s ease;
}

#logo_pc:hover {
    opacity: 0.8;
}

#logo_sp {
    display: none !important;
}

#logo_sp:hover {
    opacity: 0.8;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media only screen and (max-width: 752px) {
    #logo_pc {
        display: none !important;
    }
    #logo_sp {
        display: block !important;
    }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */

.top_pc {
    display: block !important;
}

.top_sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media only screen and (max-width: 752px) {
    .top_pc {
        display: none !important;
    }
    .top_sp {
        display: block !important;
    }
}

@media screen and (max-width: 752px) {
    .stepbox {
        display: flex;
    }
}

/*************************************************************************************************************/

/*************************************************************************************************************/

/*************************************************************************************************************/

/*************************************************************************************************************/

/*************************************************************************************************************/

/*************************************************************************************************************/

/*************************************************************************************************************/

/*************************************************************************************************************/

/*************************************************************************************************************/

@media screen and (max-width: 1000px) {
    .box {
        width: 100%;
    }
    .contents_inner {
        padding-top: 50px;
    }
    #bloc1 {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    #step1 {
        margin-bottom: 20px;
    }
    .step_img {
        margin: 10% 0% 10% 10%;
    }
    .step_text h4 {
        margin: 0px;
    }
    .step_text h5 {
        padding: 0px 30px;
        margin-top: 5%;
    }
    .step_list li {
        position: relative;
    }
    .step_list li:not(:first-child)::before {
        content: "";
        background: url("../image/arrow_.png")no-repeat center bottom;
        background-size: contain;
        width: 1em;
        height: 1em;
        display: flex;
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
    .step_list li {
        display: flex;
        height: 25%;
        margin: 0 !important;
    }
    .stepbox {
        display: table;
        table-layout: fixed;
        width: 100% !important;
        height: 100%;
    }
    .stepbpx.step_img {
        display: table-cell;
        /*
		position: absolute;
		top:50%;
		left:25%;
		transform: translateX(-50%) translateY(-50%);*/
    }
    .step_text {
        width: 50%;
        display: table-cell;
        vertical-align: middle;
    }
    .stepbox h6 {
        margin-top: 1em;
        font-size: 0.5em;
    }
    /***********③追加*********************/
    .inpage_link_btn a {
        height: 50px;
        width: 30%;
        margin-top: 10px;
        text-align: center;
    }
    .inpage_link_btn a:before {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
    }
    .inpage_link_btn span {
        font-size: 1.3vw;
        padding-top: -5px;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
    /***********************************/
    .anshinList_item {
        padding: 20px 10px 20px 0px;
    }
    .box dl {
        font-size: 12px;
    }
    .question dl {
        padding: 2% 5%;
        width: 90%
    }
    .question dt::before {
        font-size: 15px;
    }
    .question dt {
        float: left;
    }
    .question dd::before {
        font-size: 15px;
    }
    .Qa_txt dd#oneline::before {
    }
    .Qa_txt dd#high::before {
    }
    .question dd {
        display: block;
        margin-bottom: 10px;
    }
    .pc {
        display: none;
    }
    .unshown_Qa {
        display: none;
    }
    .unshown_Qa:checked+#Qa_open+.Qa_content {
        height: 40px;
        opacity: 1;
        padding: 10px;
        visibility: visible;
    }
    #Qa_open {
        background: #E0E8EF;
        display: block;
    }
    .Qa_content {
        transition: .5s;
        visibility: hidden;
    }
    .bgwr {
        width: auto;
        margin-left: 100px;
        margin-right: 100px;
        padding-top: 30px;
        padding-bottom: 30px;
        background: #fff;
        border-radius: 10px;
    }
}

#Qa1 {
    margin-bottom: 10px;
}

#Qa2 {
    margin-bottom: 10px;
}

#Qa3 {
    margin-bottom: 10px;
}

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

@media screen and (max-width: 752px) {
    .model_btn_link a:before {
        display: none;
    }
    .model_btn_link {
        font-size: 10px;
        margin: 0;
        margin-top: 17px;
    }
    .model_btn_link a {
        display: block;
        line-height: 40px;
        border-top: solid 2px #2DB9EB;
        margin: 0;
    }
    .main_nav {
        display: block!important;
    }
    .menu_close_pc {
        width: 83px;
        height: 83px;
    }
    .menu_close_sp {
        margin-top: -2px;
        margin-left: 30px;
        width: 73px;
        height: 43px;
    }
    .model_container .model_nav .main_nav {
        height: auto;
    }
    .model_container .model_nav .main_nav li {
        margin-bottom: 2px;
        font-size: 15px;
    }
    .model_container .model_nav .main_nav .sub_nav li {
        width: auto;
        font-size: 15px;
        list-style: none;
        font-weight: 900;
        font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
        margin: 0 0 0px;
        position: relative;
    }
    .main_nav_link:before {
        display: none;
    }
    .sub_nav li {
        border-radius: none;
    }
    .main_nav_link:after {
        float: right;
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 9px;
        background-color: #114b91;
        background-image: url(../image/white_arrow.png);
        background-repeat: no-repeat;
        background-size: 7px;
        background-position: center center;
        margin-right: 10px;
    }
    .sub_nav li a:before {
        display: none;
    }
    .sub_nav li a:after {
        float: right;
        content: "";
        display: inline-block;
        width: 8px;
        height: 10px;
        background-image: url(../image/arrow.png);
        background-repeat: no-repeat;
        background-size: 8px;
        margin-right: 12px;
        margin-left: 6px;
    }
    .main_nav li {
        padding: 0px;
    }
    .model_container .model_nav {
        background: none;
        padding: 0px;
        margin-top: 60px;
    }
    .model_nav {
        margin-top: 68px;
        background: none;
    }
    .main-text h3 {
        font-size: 21px;
        padding-left: 15px;
    }
    .modal_container .model_nav {
        margin-top: 0px;
        padding: 0;
        background: none;
    }
    .main_nav {
        display: block;
        width: 90%;
        height: auto;
    }
    .main_nav li {
        background: #FFF;
        border-radius: 10px;
        margin-bottom: 2px;
        font-size: 1.5rem;
        padding: 18px 20px;
    }
    .modal_container {
        display: block;
        border-bottom: 2px solid #0D6C8B;
    }
    header {
        height: 60px;
    }
    .header_rogo img {
        margin-top: 9px;
        margin-left: 9px;
        width: 174px;
    }
    /***********①変更***********************/
    .menu_open_sp {
        margin-top: 40px;
        margin-left: 30px;
        width: 73px;
        height: 43px;
    }
    .wrapper {
        padding-top: 60px;
    }
    .bread_box {
        height: 40px;
    }
    .bread_box ul {
        height: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 5%;
    }
    .top img {
        margin-bottom: 20px;
    }
    .inpage_link_btn {
        display: block;
        text-align: center;
    }
    .inpage_link_btn a {
        width: 80%;
    }
    .inpage_link_btn a:before {
        position: absolute;
        top: 50%;
        left: 20%;
        transform: translateY(-50%);
    }
    .inpage_link_btn span {
        font-size: 1em;
        padding-top: -5px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
    .contents_inner {
        padding-top: 50px;
    }
    #bloc1 {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    #step1 {
        margin-bottom: 20px;
    }
    .step_img {
        margin: 7%;
    }
    .step_text h4 {
        margin: 0px;
    }
    .step_text h5 {
        margin-top: 5%;
    }
    .step_list li {
        position: relative;
    }
    .step_list li:not(:first-child)::before {
        content: "";
        background: url("../image/arrow_.png")no-repeat center bottom;
        background-size: contain;
        width: 1em;
        height: 1em;
        display: flex;
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
    .step_list li {
        display: flex;
        height: 25%;
        margin: 0 !important;
    }
    .stepbox {
        padding: 30px 0;
        display: table;
        table-layout: fixed;
        width: 100% !important;
        height: 100%;
    }
    .stepbpx.step_img {
        display: table-cell;
        /*
		position: absolute;
		top:50%;
		left:25%;
		transform: translateX(-50%) translateY(-50%);*/
    }
    .step_text {
        width: 50%;
        display: table-cell;
        vertical-align: middle;
    }
    .stepbox h6 {
        margin-top: 1em;
        font-size: 0.5em;
    }
    #bloc2 {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    .anshinList_item {
        padding: 30px 0px 30px 0px;
        width: 48%;
    }

    .anshin_img img {
        width: 90%;
    }

    div.yajirushi {
        width: 4%;
    }

    .yajirushi img {
        width: 10px;
        height: 10px;
    }

    div.txtArea {
        width: 80%;
    }
    .bgG {
        padding: 25px 0px;
    }
    .txtArea h6 {
        font-size: 13px;
        margin: 10px 0px;
    }

    .bgwr {
        width: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        background: #fff;
        border-radius: 10px;
        margin: 0px 10px;
    }
    .bloc4_inner {
        width: 90%;
    }
    .sp {
        font-size: 20px;
    }
    h2 {
        font-size: 15px;
    }
    .p_style {
        font-size: 12px;
    }
    .step_text h4 {
        text-align: left;
    }
    .step_text h5 {
        padding: 0px;
        text-align: left;
    }
    .step_text h6 {
        padding: 0px;
        text-align: left;
    }
    
}

.kiyaku{
    text-align: center;
    font-size: 1.8rem;
    padding-bottom: 30px;
    background: url(../image/bloc04_btArrow.png) no-repeat center bottom;
    background-size: 40px;
}
@media screen and (max-width: 768px){
    .kiyaku{
        text-align: center;
        font-size: 1.3rem;
        padding-bottom: 30px;
    }
}
/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

@media (max-width: 768px) {
    .main-text h3 {
        margin-bottom: 16px;
    }
    .small_script {
        font-size: 16px;
        line-height: 20px;
    }
    .footer_cantainer .footer {
        text-align: center;
        padding: 0px;
        display: block;
        font-size: 1rem;
    }
    .footer a {
        display: block;
        line-height: 40px;
        border-bottom: solid 2px #2DB9EB;
        margin-right: 0;
        font-size: 1.1rem;
        line-height: 4rem;
    }
    .copyright {
        text-align: center;
    }
}

@media screen and (max-width: 1100px) {
    .step_img img {
        max-width: 80%;
        height: auto;
    }
    .step_text {
        margin: 20px;
    }
}

@media screen and (max-width: 1200px) {
    .txtArea {
        padding-right: 10px;
    }
    .anshin_img img {
        width: 90%;
    }
    .txtArea p {
        font-size: 12px;
        margin: 10px 0px;
    }
    .txtArea h6 {
        font-size: 14px;
    }
}

/**************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

/**************************************************************************************************************************************/

@media screen and (max-width: 500px) {
    .main_nav {
        display: block!important;
    }
    .bgG {
        padding: 0px 0px 30px 0px;
    }
    .small_script {
        margin-bottom: 0;
    }
    .menu_close_pc {
        width: 83px;
        height: 83px;
    }
    .menu_close_sp {
        margin-top: -2px;
        margin-left: 30px;
        width: 73px;
        height: 43px;
    }
    .model_container .model_nav .main_nav {
        height: auto;
    }
    .model_container .model_nav .main_nav li {
        width: 100%;
        margin-bottom: 2px;
        font-size: 15px;
    }
    .model_container .model_nav .main_nav .sub_nav li {
        width: auto;
        font-size: 15px;
        list-style: none;
        font-weight: 900;
        font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
        margin: 0 0 0px;
        position: relative;
    }
    .main_nav_link:before {
        display: none;
    }
    .main_nav_link:after {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 9px;
        background-color: #114b91;
        background-image: url(../image/white_arrow.png);
        background-repeat: no-repeat;
        background-size: 7px;
        background-position: center center;
        margin-right: 10px;
    }
    .main_nav li {
        padding: 0px;
    }
    .model_container .model_nav {
        background: none;
        padding: 0px;
        margin-top: 60px;
    }
    .model_nav {
        width: 100;
        margin-top: 68px;
        background: none;
    }
    .bread_box {
        height: 40px;
    }
    .bread_box li {
        font-size: 13px;
    }
    .step_img {
        margin: 12%;
    }
    .step_text h4 {
        margin: 0px;
    }
    .step_text h5 {
        font-size: 14px;
        margin-right: 0;
    }
    .anshinList {
        margin: 0px;
    }
    .anshinList_item {
        padding-top: 30px;
        padding-bottom: 0px;
        display: block!important;
    }

    .yajirushi img {
        top: 70px;
        transform: translateY(-50%) translateX(-50%);
    }

    div.txtArea {
        width: auto;
    }
    .txtArea h6 {
        text-align: center;
        margin: 10px 0px;
    }
    .anshin_img img {
        height: 80px;
        width: auto;
    }
    .question dd {
        margin-top: 0px;
    }
    .inpage_link_btn a {
        width: 95%;
        text-align: center;
    }
    .inpage_link_btn a:before {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
    }
    .inpage_link_btn span {
        font-size: 4vw;
        padding-top: -5px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }
    .question dt::before {
        font-size: 15px;
    }
    .question dt {
        margin-top: 10px;
    }
    .question dd::before {
        font-size: 15px;
    }
    .question dd {
        font-size: 12px;
        display: block;
        margin-top: 40px;
        margin-bottom: 10px;
    }
}

.main-text p.indent{
    padding-left: 3em;
    text-indent: 0em;
}
@media screen and (max-width: 768px) {
    .main-text p.indent{
        padding-left: 3.8em;
        text-indent: 0em;
        margin-bottom: 0em;
        display: block;
    }
}

.wrapper .inpage_link_btn span{
    color: #3B4043;
    text-decoration: none;
}


/**10/11更新にて追加**/

 .top_link {
	 text-align: center;
  }


/* お客様サポート部分テキスト化にて追加 */
@media screen and (max-width: 970px){
    .pc_only{
        display: none;
    }
}

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

.support{
    margin-top: 80px;
}

.support-container {
    border: solid 3px #114b91;
    margin-bottom: 30px;
}

/* 中央のライン */
  
@media (min-width: 768px) {
.wrapper .support-container .divider {
    margin: 8px 40px;
    width: 4px;
    height: 170px;
    background-color: #DFE8EF;
}
}

@media screen and (min-width: 768px){
    .support-container {
        margin-bottom: 60px;
    }
}

h4.support_title{
    background-color: #114b91;
    color: #fff;
    width: 100%;
    height: 105px;
    padding: 15px 17px 15px 20px;
    margin-bottom: 25px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;   
    font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
}
@media screen and (min-width: 768px){
    h4.support_title{
        height: 60px;
        font-size: 20px;
        font-family: "Noto Sans Japanese", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    }
}

.support_block{
    margin: 0 1.5rem;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 768px){
    .support_block{
        margin: 0 40px 20px;
        flex-direction: row;

    }
}

.link-block {
    margin-bottom: 30px;
}

/* @media screen and (min-width: 768px){
    .link-block:nth-of-type(1){
        padding-right: 40px;
    }
}

@media screen and (min-width: 768px){
    .link-block:nth-of-type(2){
        padding-left: 40px;
    }
} */

.support-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

@media screen and (min-width: 768px){
    .support-title {
        font-size: 26px;
    }
}


.credit-title {
    color: #114B91;
}

.miraibarai-title {
    color: #00ABE0;
}

.inquiry-list {
    margin-bottom: 15px;
}

@media screen and (min-width: 768px){
    .inquiry-list {
        margin-bottom: 20px;
    }
}

.inquiry-list li:not(:last-child) {
    margin-bottom: 5px;
}

.indent-text {
    display: inline-block;
    padding-left: 1.3em;
    text-indent: -1.3em;
}

@media screen and (min-width: 768px){
    .indent-text {
        font-size: 16px;
    }
}

.indent {
    text-indent: -1.3em;
    padding-right: 0.3em;
}

.accordion-content .inquiry-title {
    margin: 20px 0 0;
    font-weight: bold;
}

.main-text a.link-btn {
    display: block;
    background: #114b91;
    color: #FFF;
    width: 100%;
    max-width: 270px;
    text-align: center;
    height: 54px;
    line-height: 54px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto;
}

.main-text a.miraibarai-link {
    background: #00ABE0;
    position: relative;
}

.main-text a.miraibarai-link:after {
    content: url(../../img/common/white-component.svg);
    margin: 0 5px;
    position: absolute;
    top: -5px;
}

@media screen and (min-width: 768px) {
    .main-text a.link-btn {
        max-width: 240px;
        height: 50px;
        font-size: 1.6rem;
        margin: unset;
    }
}

.main-text a.link-btn:before {
    display: inline-block;
    content: "";
    background: url(../../img/common/arrow-yellow@2x.png);
    background-size: 7px;
    background-repeat: no-repeat;
    width: 7px;
    height: 8px;
    margin-right: 7px;
}

@media screen and (min-width: 768px) {
    .main-text a.link-btn:before {
        width: 11px;
        height: 13px;
        background-size: 10.5px;
    }
}

.wrapper .before-inquiry {
    background-color: #F2F5F7;
    border: 3px solid #DFE8EF;
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .wrapper .before-inquiry {
        padding: 30px;
    }
}

.wrapper .before-inquiry-title {
    color: #114B91;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .wrapper .before-inquiry-title {
        font-size: 18px;
    }
}

.wrapper .before-inquiry p {
    margin-bottom: 6px;
}

@media screen and (min-width: 768px) {
    .wrapper .before-inquiry p {
        font-size: 18px;
    }
}

.wrapper .before-inquiry p span {
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    .wrapper .before-inquiry p span {
        font-size: 14px;
    }
}

.wrapper .before-inquiry ul {
    margin-top: 14px;
}

@media screen and (min-width: 768px) {
    .wrapper .before-inquiry ul {
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 768px) {
    .wrapper .before-inquiry ul li {
        font-size: 18px;
        width: 50%;
    }
}

@media screen and (min-width: 768px){
    .wrapper .card-link-sec {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}


.wrapper .inquiry-card {
    padding: 20px;
    border: 3px solid #DFE8EF;
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;  
    text-decoration: none;
}

@media screen and (min-width: 768px){
    .wrapper .pc-events-none {
        pointer-events: none;
    }
}

@media screen and (min-width: 768px){
    .wrapper .inquiry-card .pc-none {
        display: none;
    }
}

@media screen and (min-width: 768px){
    .wrapper .inquiry-card {
        padding: 30px 25px;
        width: calc(50% - 10px);
        margin:0 0 20px 0;   
    }
}

@media screen and (min-width: 768px){
    .wrapper .inquiry-card:nth-child(odd) {
        margin-right: 20px;
    }
}

@media screen and (min-width: 768px){
    .wrapper .inquiry-card img {
        width: 22px;
    }
}

.wrapper .inquiry-card .card-content .card-title {
    color: #114B91;
    font-size: 16px;
    font-weight: bold;
}

@media screen and (min-width: 768px){
    .wrapper .inquiry-card .card-content .card-title {
        margin-bottom: 8px;
        font-size: 18px;
    }
}

.wrapper .inquiry-card .card-content .card-text {
    padding-right: 20px;
    color: #222222;
}

@media screen and (min-width: 768px){
    .wrapper .inquiry-card .card-content .card-text {
        font-size: 16px;
    }
}

.wrapper .inquiry-card .card-content .card-text span{
    font-weight: bold;
}

.wrapper .inquiry-card .link-icon {
    transform: rotate(270deg);
}

.support_block_inner{
    margin-bottom: 2rem;
}
@media screen and (min-width: 768px){
    .support_block_inner{
        margin-bottom: 4rem;
    }
}

.support_txt{
    font-weight: bold;
    font-size: 1.5rem;
}
@media screen and (min-width: 768px){
    .support_txt{
        font-size: 2rem;
    }
}



.support_flex{
    margin-top: 1rem;;
}
@media screen and (min-width: 971px){
    .support_flex{
        display: flex;
        justify-content: space-between;
        margin: 0 20px;
        align-items: center;
    }
}


.support_flex .support_flex_left{
    color: #114b91;
}

.support_flex .support_flex_left .support_tell{
    font-weight: 900;
    font-size: 1.75rem;
}

.support_flex .support_flex_left .support_tell .support_tell_num{
    font-size: 2.75rem;
    margin-left: 1rem;
}
.support_flex .support_flex_left .support_tell .support_email{
	font-size: 100%;
    overflow-wrap:break-word;
    margin-left: 1rem;
}
@media screen and (min-width: 768px){
    .support_flex .support_flex_left .support_tell .support_tell_num{
        font-size: 3.75rem;
    }
    .support_flex .support_flex_left .support_tell .support_email{
        font-size: 3.75rem;
    }
}

.support_flex .support_flex_right p{
    margin-bottom: 0px;
    text-align: left;
}
@media screen and (min-width: 971px){
    .support_flex .support_flex_right p:last-child{
        text-align: right;
    }
}
@media screen and (min-width: 971px){
    .support_block .support_block_inner p{
        text-align: center;
    }
}
@media screen and (max-width: 970px){
    .support_block .support_block_inner p{
        text-align: left;
    }
}
.support_flex .support_flex_left p{
    margin-top: 10px;
    margin-bottom: 0px;
}
.support_mail_block {
    border: solid #114b91 0.5px;
    padding: 1rem;
    margin-top: 2rem;
}
@media screen and (min-width: 768px){
    .support_mail_block{
        padding: 3rem 5rem;
        margin: 0 50px;
    }
}

.support_email{
    margin-bottom: 1rem;
    font-weight: bold;
}
@media screen and (min-width: 768px){
    .support_email{
        font-size: 2rem;
        text-align: center;
    }
}

@media screen and (min-width: 768px){
    .support_email_note{
        display: block;
        width: 500px;
        margin: 0 auto;
    }


}

.sp_table{
    display: none;
}
.pc_table{
    display: block;
}

@media screen and (max-width:768px) {
    .sp_table{
        display: block;
    }
    .pc_table{
        display: none;
    }
}

.txt_red{
    color:#F44336;
}