@charset "utf-8";

/* ----------------------------------------------------------
reset css
---------------------------------------------------------- */

/* v2.0 | 20110126
  http://meyerweb.com/eric/tools/css/reset/ 
  License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ----------------------------------------------------------
reset css end
---------------------------------------------------------- */

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
}

/*body*/

body {
    color: #404040;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}

.inner {
    width: 940px;
    margin: 0 auto;
}

.notes {
    font-size: 1.2rem;
}

::-moz-selection {
    background: #ea650d;
    color: #fff;
}

::selection {
    background: #ea650d;
    color: #fff;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #404040;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

input:hover,
a:hover img {
    outline: 0;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    background-color: #fff;
}

.header .inner {
    padding: 15px 0;
}

.header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .layout .text {
    color: #404040;
    width: calc(100% - -95px);
    text-align: center;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv .inner {
    width: 1200px;
    height: 400px;
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/bs/img/mv_bg_pc.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.mv.mv02 .inner {
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/bs/img/mv_bg02_pc.webp);
}

.mv .box {
    background-color: #fff;
    padding: 15px 25px 25px;
    position: absolute;
    top: 40px;
    right: 90px;
    border-radius: 4px;
    width: 410px;
    box-sizing: border-box;
}

.mv .box .title {
    color: #EA650D;
    margin-bottom: 10px;
    position: relative;
}

.mv .box .btn {
    margin-top: 10px;
}

.mv .box .btn a {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 5px 40px 6px 20px;
}

.mv .box .btn a:before {
    content: '';
    width: 10px;
    height: 16px;
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/bs/img/arrow_wh.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 11px;
}

.mv .box .sub_heading {
    margin-top: 10px;
    margin-bottom: 20px;
}


/* ----------------------------------------------------------
section
---------------------------------------------------------- */
.section {
    padding-top: 100px;
}

.divider .inner {
    padding-bottom: 100px;
    border-bottom: 1px solid #e6dfda;
}

.title {
    color: #1a1a1a;
    font-size: 2.8rem;
    font-weight: 700;
}

.heading {
    color: #1a1a1a;
    font-size: 2.4rem;
    font-weight: 700;
}

.heading.orange {
    color: #EA650D;
}

.sub_heading {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 500;
}

.notes {
    font-size: 1.4rem;
    font-weight: 300;
}

.list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 20px
}

.list li:after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #404040;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 11px;
    border-radius: 4px;
}

.list.list_orange li {
    margin-bottom: 15px
}

.list.list_orange li:after {
    background-color: #EA650D;
}


.btn a {
    color: #fff;
    font-size: 1.8rem;
    border-radius: 4px;
    background: #404040;
    padding: 5px 20px 6px;
}

.btn a:hover {
    background-color: #2b2b2b;
    box-shadow: 0px 1px 2px 0px rgba(102, 102, 102, 0.1),
        0px 1px 6px 0px rgba(128, 128, 128, 0.1),
        0px 2px 16px 0px rgba(114, 114, 114, 0.08);
}

.btn.btn_orange a {
    background: #EA650D;
}

.simulator_btn a {
    display: block;
    width: 740px;
    border: 1px solid #EA650D;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 20px 90px 20px 20px;
    margin: 20px auto 0;
}

.simulator_btn .simulator_btn_layout {
    display: flex;
    align-items: center;
}

.simulator_btn .img {
    margin-right: 20px;
}

.simulator_btn .contents {
    width: 470px;
}

.simulator_btn .heading {
    padding-left: 20px;
    margin-bottom: 10px;
}

.insurance .simulator_btn .heading {
    padding-left: 20px;
}

/* ----------------------------------------------------------
main
---------------------------------------------------------- */

.section.main {
    padding-top: 50px;
}

.main.divider .inner {
    padding-bottom: 60px;
}

.main .layout {
    display: flex;
    justify-content: space-between;
}

.main .layout .box {
    width: 510px;
}

.main .box .img {
    margin: 45px 0;
}

.main .box .sub_heading {
    margin-bottom: 15px;
}

.main .box .text {
    margin-bottom: 30px;
}

.main .box .text a {
    text-decoration: underline;
}

.main .box .text a:hover {
    text-decoration: none;
}

.main .box .text:last-of-type {
    margin-bottom: 0;
}

.main .layout .form {
    width: 390px;
}

.main .layout .form .sub_heading {
    margin-bottom: 50px;
}

/* ----------------------------------------------------------
bs_section01
---------------------------------------------------------- */

.bs_section01 .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bs_section01 .box .heading {
    margin-bottom: 15px;
}

.bs_section01 .box {
    margin-bottom: 50px;
}

.bs_section01 .layout .contents {
    width: calc(100% - 325px);
}

.bs_section01 .layout .img {
    text-align: center;
    width: 325px;
}

.bs_section01_btn {
    margin-top: 20px;
}

.bs_section01_btn a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #E6DFDA;
    border-radius: 4px;
}

.bs_section01_btn a:hover {
    border: 1px solid #EA650D;
    box-shadow: 0px 1px 2px 0px rgba(102, 102, 102, 0.1),
        0px 1px 6px 0px rgba(128, 128, 128, 0.1),
        0px 2px 16px 0px rgba(114, 114, 114, 0.08);
}

.bs_section01_btn a .icon {
    margin-right: 20px;
}

/* ----------------------------------------------------------
bs_section02
---------------------------------------------------------- */

.bs_section02 .line_up {
    padding: 30px 35px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.bs_section02 .line_up .line_up_box {
    text-align: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.bs_section02 .line_up .heading {
    margin-bottom: 5px;
}

.bs_section02 .line_up01 {
    background-color: #D5E2F0;
}

.bs_section02 .line_up .line_up_box .sub_heading {
    color: #404040;
}

.bs_section02 .line_up02 {
    background-color: #FCDAC4;
}

.bs_section02 .layout {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.bs_section02 .layout .bs_section02_btn {
    width: 420px;
}

.bs_section02 .layout .bs_section02_btn a {
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    box-sizing: border-box;
    position: relative;
}

.bs_section02 .layout .bs_section02_btn.bs_section02_btn01 a {
    color: #fff;
    background-color: #404040;
    border-radius: 4px;
}

.bs_section02 .layout .bs_section02_btn.bs_section02_btn01 a:hover {
    background-color: #2b2b2b;
    box-shadow: 0px 1px 2px 0px rgba(102, 102, 102, 0.1),
        0px 1px 6px 0px rgba(128, 128, 128, 0.1),
        0px 2px 16px 0px rgba(114, 114, 114, 0.08);
}

.bs_section02 .layout .bs_section02_btn.bs_section02_btn02 a {
    background-color: #fff;
    border: 1px solid #404040;
    border-radius: 4px;
}

.bs_section02 .layout .bs_section02_btn.bs_section02_btn02 a:hover {
    border: 1px solid #EA650D;
    box-shadow: 0px 1px 2px 0px rgba(102, 102, 102, 0.1),
        0px 1px 6px 0px rgba(128, 128, 128, 0.1),
        0px 2px 16px 0px rgba(114, 114, 114, 0.08);
}

.bs_section02 .layout .bs_section02_btn a:after {
    content: '';
    width: 10px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 13px;
}

.bs_section02 .layout .bs_section02_btn.bs_section02_btn01 a:after {
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/bs/img/bs_arrow01.svg);
}

.bs_section02 .layout .bs_section02_btn.bs_section02_btn02 a:after {
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/bs/img/bs_arrow02.svg);
}

.bs_section02 .layout .bs_section02_btn.bs_section02_btn02 a img {
    margin-right: 15px;
}

.bs_section02 .list li span {
    font-size: 1rem;
    vertical-align: top;
    margin-left: -10px;
}

.bs_section02 .table {
    margin-bottom: 20px;
}

.bs_section02 .table td {
    vertical-align: middle;
    background-color: #E1E1E1;
    padding: 15px 25px;
    border: 1px solid #FCDAC4;
    box-sizing: border-box;
}

.bs_section02 .table td span {
    color: #EA650D;
}

.bs_section02 .table td:first-of-type {
    width: 88%;
}

.bs_section02 .table td:last-of-type {
    width: 12%;
    text-align: center;
}

.bs_section02 .contents01 .text {
    margin: 15px 0 50px;
}

.bs_section02 .contents02 .heading {
    margin-top: 30px;
}

.bs_section02 .contents02 .list {
    margin-top: 20px;
}

/* ----------------------------------------------------------
cta
---------------------------------------------------------- */

.cta .cta_btn {
    text-align: center;
}


/* ----------------------------------------------------------
voice
---------------------------------------------------------- */

.voice_box {
    background-color: #E1E1E1;
    border-radius: 4px;
    padding: 15px 35px 35px 35px;
}

.voice_box .voice_layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voice_box .box {
    width: 680px;
    padding-left: 25px;
    position: relative;
    box-sizing: border-box;
}

.voice_box .box:after {
    content: '';
    width: 4px;
    height: 100%;
    background-color: #EA650D;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
}

.voice_box .title {
    color: #EA650D;
    margin-bottom: 10px;
}

.voice_box .img {
    text-align: center;
    line-height: 150px;
    background-color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.voice_box .text {
    margin-top: 20px;
}

/* ----------------------------------------------------------
problem
---------------------------------------------------------- */

.problem .balloon {
    display: flex;
    justify-content: space-between;
}

/* .problem .balloon .img:first-of-type {
    position: absolute;
    left: 0;
    top: 0;
}

.problem .balloon .img:nth-of-type(2) {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}

.problem .balloon .img:last-of-type {
    position: absolute;
    right: 0;
    top: 0;
} */

.problem .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.problem .layout .contents {
    width: 440px;
}

.problem .layout .contents .heading {
    margin-bottom: 10px;
}

.problem .layout .btn {
    margin-top: 20px;
}

/* ----------------------------------------------------------
faq
---------------------------------------------------------- */
.faq .title {
    margin-bottom: 50px;
}

.faq .sub_heading {
    margin-bottom: 10px;
}

.faq .box {
    margin-bottom: 40px;
}

.faq .box:last-of-type {
    margin-bottom: 10px;
}

/* ----------------------------------------------------------
flow
---------------------------------------------------------- */

.flow.divider .inner {
    padding-bottom: 80px;
}

.flow .title {
    margin-bottom: 50px;
}

.flow .inner>.text {
    margin-bottom: 30px;
}

.flow .box {
    padding: 10px;
}

.flow .box:first-of-type {
    padding-bottom: 20px;
}

.flow .box:nth-of-type(odd) {
    background-color: #E1E1E1;
}

.flow .box .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flow .box .layout .img {
    text-align: center;
    line-height: 80px;
    width: 10%;
}

.flow .box .layout .contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.flow .box .layout .sub_heading {
    width: 45%;
}

.flow .box .layout .text {
    font-size: 1.4rem;
}

.flow .box .layout .contents_box {
    width: 55%;
}

.flow .box .layout .contents_box .btn {
    margin-top: 10px;
}

/* ----------------------------------------------------------
about
---------------------------------------------------------- */

.about .title {
    margin-bottom: 50px;
}

.about .layout {
    display: flex;
    justify-content: center;
}

.about .layout .contents {
    width: 50%;
    padding-right: 30px;
    box-sizing: border-box;
}

.about .notes {
    margin-top: 10px;
}

.about .layout .box {
    width: 50%;
    padding: 25px 40px;
    background-color: #E1E1E1;
    box-sizing: border-box;
}

/* ----------------------------------------------------------
support
---------------------------------------------------------- */

.section.support {
    padding-top: 40px;
}

.support .title {
    margin-bottom: 50px;
}

.support .inner>.text {
    margin-bottom: 30px;
}

.support .layout {
    display: flex;
    justify-content: space-between;
}

.support .layout .box {
    width: 32%;
}

.support .box>.sub_heading {
    text-align: center;
    height: 70px;
}

.support .layout .contents {
    padding: 20px;
    margin-top: 10px;
    background-color: #E1E1E1;
    box-sizing: border-box;
    height: calc(100% - 70px)
}

.support .contents .sub_heading {
    text-align: center;
    height: 70px;
}

.support .notes_list {
    margin-top: 20px;
}

.support .cta_btn {
    text-align: center;
    margin-top: 40px;
}


/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    background: #fff;
    margin-top: 70px;
}

.footer .copyright {
    font-size: 1.4rem;
    text-align: center;
    padding: 15px 0;
}

@media only screen and (max-width:959px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    .inner {
        width: 95%;
        margin: 0 auto;
    }

    /* ----------------------------------------------------------
    main
    ---------------------------------------------------------- */

    .main .layout .box {
        width: calc(100% - 290px);
    }

    .main .layout .form {
        width: 270px;
    }

    .main .layout .box .contents {
        padding-right: 20px;
    }

    .bs_section02 .layout .bs_section02_btn {
        width: 48%;
    }

    /* ----------------------------------------------------------
    problem
    ---------------------------------------------------------- */

    .problem .layout>.img {
        width: 50%;
    }

    .problem .layout .contents {
        width: 45%;
    }

    .problem .balloon .img:nth-of-type(2) {
        margin: 0 10px;
    }


    /* ----------------------------------------------------------
    flow
    ---------------------------------------------------------- */

    .flow .box .layout .title,
    .flow .box .layout .text {
        padding-right: 10px;
    }

}

@media screen and (min-width:767px) and (max-width:1024px) {

    .mv .inner {
        width: 100%;
        background-position: left -100px center;
        background-size: cover;
    }

    .mv.mv02 .inner {
        background-position: center;
    }

    .mv .box {
        width: 380px;
        right: 30px;
    }

    .mv .box .title {
        margin-right: 0;
    }
}

@media screen and (min-width:767px) and (max-width:819px) {

    .mv .inner {
        background-position: left -140px center;
    }

    .mv.mv02 .inner {
        background-position: center;
    }
}

@media only screen and (max-width: 767px) {

    /*body*/

    body {
        font-size: 1.4rem;
    }

    /* ----------------------------------------------------------
    header
    ---------------------------------------------------------- */

    .header .layout .text {
        font-size: 1.2rem;
    }

    .header .layout .text span {
        display: none;
    }

    /* ----------------------------------------------------------
    mv
    ---------------------------------------------------------- */

    .mv .inner {
        width: 100%;
        height: auto;
        background-image: none;
    }

    .mv .img img {
        width: 100%;
    }

    .mv .box {
        padding: 15px 5% 10%;
        position: static;
        top: auto;
        right: auto;
        width: auto;
    }

    .mv .box .title {
        margin-right: 0;
    }

    .mv .box .btn {
        justify-content: center;
    }

    .mv .box .btn a {
        display: block;
    }

    /* ----------------------------------------------------------
section
---------------------------------------------------------- */
    .section {
        padding-top: 15%;
    }

    .divider .inner {
        padding-bottom: 10%;
    }

    .title {
        font-size: 2.6rem;
    }

    .heading {
        font-size: 2.2rem;
    }

    .sub_heading {
        font-size: 2rem;
    }

    .btn a {
        font-size: 1.6rem;
    }

    .simulator_btn a {
        width: 100%;
        padding: 40px 20px;
        margin: 20px auto 0;
    }

    .simulator_btn a>.simulator_btn_layout {
        display: block;
    }

    .simulator_btn .img {
        text-align: center;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .simulator_btn .contents {
        width: 100%;
    }

    /* ----------------------------------------------------------
    main
    ---------------------------------------------------------- */

    .section.main {
        padding-top: 0;
    }

    .main .layout {
        display: block;
    }

    .main .layout .box {
        width: 100%;
    }

    .main .layout .form {
        width: 100%;
        margin-top: 30px;
    }

    .main .layout .form iframe {
        height: 500px;
    }

    .main .layout .box .contents {
        padding-right: 0;
        width: calc(100% - 60px);
    }

    .main .img {
        text-align: center;
    }

    .main .img img {
        width: 90%;
    }

    /* ----------------------------------------------------------
    bs_section01
    ---------------------------------------------------------- */

    .bs_section01 .box>.layout {
        display: block;
    }

    .bs_section01 .layout .contents {
        width: 100%;
    }

    .bs_section01 .layout .img {
        margin: 20px 0;
        width: 100%;
    }

    .bs_section01_btn a {
        padding: 10px;
    }

    .bs_section01_btn a .sub_heading {
        font-size: 1.6rem;
    }

    .bs_section01_btn a .icon {
        margin-right: 10px;
    }

    .bs_section01 .box {
        margin-bottom: 40px;
    }

    .bs_section01 .box:last-of-type {
        margin-bottom: 0;
    }

    /* ----------------------------------------------------------
    bs_section02
    ---------------------------------------------------------- */

    .bs_section02 .line_up {
        padding: 20px;
    }

    .bs_section02 .table td {
        padding: 10px;
    }

    .bs_section02 .table td:first-of-type {
        width: calc(100% - 55px);
    }

    .bs_section02 .table td:last-of-type {
        width: 55px;
    }

    .bs_section02 .layout {
        display: block;
    }

    .bs_section02 .layout .bs_section02_btn {
        width: 100%;
    }

    .bs_section02 .layout .bs_section02_btn.bs_section02_btn01 {
        margin-bottom: 15px;
    }

    /* ----------------------------------------------------------
    voice
    ---------------------------------------------------------- */

    .voice_box {
        padding: 15px 20px;
    }

    .voice_box .voice_layout {
        flex-flow: column;
    }

    .voice_box .box {
        width: 100%;
        padding-left: 25px;
        order: 1;
    }

    .voice_box .title {
        margin-bottom: 10px;
    }

    .voice_box .img {
        margin-bottom: 20px;
        order: 0;
    }


    /* ----------------------------------------------------------
problem
---------------------------------------------------------- */

    .problem .balloon {
        display: block;
        text-align: center;
    }

    /* .problem .balloon .img:first-of-type {
        position: relative;
        left: auto;
        top: auto;
    }

    .problem .balloon .img:nth-of-type(2) {
        position: relative;
        left: auto;
        bottom: auto;
        float: right;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .problem .balloon .img:last-of-type {
        position: relative;
        right: auto;
        top: auto;
        clear: right;
    } */

    .problem .balloon .img:nth-of-type(2) {
        margin: 10px 0;
    }

    .problem .layout {
        display: block;
    }

    .problem .layout .img {
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }

    .problem .layout .contents {
        width: 100%;
    }

    .problem .layout .btn {
        text-align: center;
        margin-top: 20px;
    }


    /* ----------------------------------------------------------
    faq
    ---------------------------------------------------------- */

    .faq .box {
        max-width: 100%;
    }

    .faq .box .q {
        font-size: 1.6rem;
    }

    .faq .notes {
        max-width: 100%;
        margin-top: 20px;
    }

    /* ----------------------------------------------------------
    flow
    ---------------------------------------------------------- */

    .flow.divider .inner {
        padding-bottom: 8%;
    }

    .flow .inner {
        width: 100%;
    }

    .flow .inner .title {
        width: 95%;
        margin: 0 auto;
    }

    .flow .inner>.text {
        text-align: left;
        width: 95%;
        margin: 0 auto 30px;
    }

    .flow .box .layout {
        align-items: flex-start;
    }

    .flow .box .layout .img {
        text-align: center;
        line-height: auto;
        width: 20%;
    }

    .flow .box .layout .contents {
        display: block;
        width: 80%;
        padding: 20px 10px;
        box-sizing: border-box;
    }

    .flow .box .layout .sub_heading {
        width: 100%;
    }

    .flow .box .layout .text {
        margin-top: 20px;
        width: 100%;
        padding-right: 0;
    }

    .flow .box .layout .text {
        font-size: 1.4rem;
    }

    .flow .box .layout .contents_box {
        width: 100%;
    }

    .flow .box .layout .contents_box .btn {
        margin-top: 10px;
    }


    /* ----------------------------------------------------------
about
---------------------------------------------------------- */
    .about .title {
        margin-bottom: 30px;
    }

    .about .layout {
        display: block;
    }

    .about .layout .contents {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about .layout .box {
        width: 100%;
        padding: 0;
        background-color: transparent;
    }

    /* ----------------------------------------------------------
support
---------------------------------------------------------- */

    .section.support {
        padding-top: 40px;
    }

    .support .title {
        margin-bottom: 30px;
    }

    .support .layout {
        display: block;
    }

    .support .layout .box {
        width: 100%;
        margin-bottom: 20px;
    }

    .support .box>.sub_heading {
        height: auto;
    }

    .support .contents .sub_heading {
        height: auto;
        margin-bottom: 10px;
    }


    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer {
        margin-top: 10%;
    }

    .footer .copyright {
        font-size: 1.3rem;
        padding: 10px 0;
    }

}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/