@charset "utf-8";

/* @font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('font/NotoSansJP-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('font/NotoSansJP-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('font/NotoSansJP-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/NotoSansJP-Bold.woff2') format('woff2')
} */


/* ----------------------------------------------------------
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: #000;
    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: #000;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.8;
}

input:hover,
a:hover img {
    outline: 0;
    opacity: 0.8;
}

/* 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: #666;
    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/ci1_202310/img/mv_bg_pc.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.mv .box {
    background-color: #fff;
    padding: 15px 25px;
    position: absolute;
    top: 87px;
    right: 90px;
    border-radius: 4px;
}

.mv .box .title {
    color: #EA650D;
    margin-bottom: 10px;
    position: relative;
    margin-right: 25px;
}

.mv .box .title span {
    position: relative;
}

.mv .box .title span::after {
    color: #404040;
    content: '※';
    font-size: 1.3rem;
    display: inline-block;
    position: absolute;
    right: -15px;
    bottom: 18px;
}

.mv .box .btn {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

/* ----------------------------------------------------------
section
---------------------------------------------------------- */
.section {
    padding-top: 100px;
}

.divider .inner {
    padding-bottom: 100px;
    border-bottom: 1px solid #E6DFDA;
}

.title {
    font-size: 2.8rem;
    font-weight: 700;
}

.heading {
    font-size: 2.4rem;
    font-weight: 700;
}

.sub_heading {
    font-size: 2rem;
    font-weight: 500;
}

.notes {
    font-size: 1.3rem;
    font-weight: 300;
}

.btn a {
    color: #fff;
    font-size: 1.8rem;
    border-radius: 4px;
    background: #404040;
    padding: 5px 20px 6px;
}

.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 .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.main .layout .text {
    width: 600px;
}

.main .title {
    text-align: center;
}

.main .title:last-of-type {
    color: #EA650D;
}

.main .cta_btn {
    text-align: center;
    margin-top: 40px;
}

/* ----------------------------------------------------------
insurance
---------------------------------------------------------- */

.insurance .title {
    margin-bottom: 50px;
}

.insurance .box {
    margin-bottom: 20px;
}

.insurance .heading {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

.insurance .box .heading.heading01:after {
    content: '';
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 7px;
}

.insurance .box.box01 .heading.heading01:after {
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/ci1_202310/img/list_style01.svg);
}

.insurance .box.box02 .heading.heading01:first-of-type:after {
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/ci1_202310/img/list_style02.svg);
}

.insurance .box.box03 .heading.heading01:after {
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/ci1_202310/img/list_style03.svg);
}

.insurance .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insurance .layout .contents {
    width: 540px;
}

.insurance .table {
    width: 360px;
}

.insurance .table thead tr {
    font-weight: 500;
    text-align: left;
    border-bottom: 2px solid #6D6D6D;
}

.insurance .table tbody tr {
    border-bottom: 1px solid #E6DFDA;
}

.insurance .table tr th,
.insurance .table tr td {
    padding: 10px;
}

.insurance .list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px
}

.insurance .list li:after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #404040;
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 11px;
    border-radius: 4px;
}

.insurance .cta_btn {
    text-align: center;
    margin-top: 40px;
}

/* ----------------------------------------------------------
voice
---------------------------------------------------------- */

.voice_box {
    background-color: #E6DFDA;
    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;
}

/* ----------------------------------------------------------
movie
---------------------------------------------------------- */

.movie .title {
    margin-bottom: 50px;
}

.movie .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.movie .text {
    width: 440px;
}


/* ----------------------------------------------------------
chart
---------------------------------------------------------- */

.section.chart {
    padding-top: 40px;
}


.chart .chart_container {
    background-color: #F1EDEB;
    border-top: 2px solid #EA650D;
    padding: 40px 110px 80px;
}

.chart .chart_container>.heading {
    color: #EA650D;
}

.chart .text {
    margin-top: 20px;
}

.chart .box {
    padding-top: 100px;
    display: none;
}

.chart .box#chart_box01 {
    display: block;
}

.chart .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart .layout .heading {
    width: 380px;
}

.chart .layout .img {
    text-align: center;
    line-height: 193px;
    height: 193px;
    width: 340px;
}

.chart .chart_btn_layout {
    display: flex;
    width: 100%;
    margin-top: 50px;
}

.chart .chart_btn {
    font-size: 2.4rem;
    line-height: 65px;
    text-align: center;
    background-color: #fff;
    width: 50%;
    height: 65px;
    box-sizing: border-box;
    cursor: pointer;
}

.chart .chart_btn.chart_btn_small {
    font-size: 1.8rem;
}


.chart .chart_btn:first-of-type {
    border-radius: 4px 0 0 4px;
    border-right: 1px solid #F1EDEB;
}

.chart .chart_btn:last-of-type {
    border-radius: 0 4px 4px 0;
}

/* ----------------------------------------------------------
chart_result
---------------------------------------------------------- */

.chart_result_bg {
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.70);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    display: none;
}

.chart_result {
    text-align: center;
    width: 780px;
    height: calc(100vh - 100px);
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 20;
    background-color: #fff;
    padding: 65px 75px 45px 75px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-y: scroll;
    display: none;
}

.chart_result .close_btn {
    position: absolute;
    top: 22px;
    right: 22px;
    cursor: pointer;
}

.chart_result .heading {
    margin-top: 20px;
}

.chart_result .img {
    margin: 35px 0;
}

.chart_result .sub_heading {
    margin-bottom: 35px;
}

.chart_result .chart_result_btn a {
    font-size: 2.4rem;
    font-weight: 700;
    width: 355px;
    padding: 15px 0;
    margin: 35px auto 30px;
    border: 2px solid #404040;
    border-radius: 4px;
    display: block;
}

.chart_result .chart_result_btn a:hover {
    color: #fff;
    background-color: #404040;
    opacity: 1;
}


.chart_result .one_more_btn {
    cursor: pointer;
}

.chart_result .one_more_btn span {
    position: relative;
}

.chart_result .one_more_btn span:before {
    content: '';
    width: 10px;
    height: 16px;
    background-image: url(https://www.nnlife.co.jp/library/bizd/lg/ci1_202310/img/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    position: absolute;
    left: -15px;
    top: 4px;
}

.chart_result .notes_list {
    text-align: left;
    margin-top: 65px;
}

.chart_result .divider {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 70px;
    border-bottom: 1px solid #E6DFDA;
}


/* ----------------------------------------------------------
entry
---------------------------------------------------------- */

.entry .title {
    margin-bottom: 50px;
}

.entry .text span {
    font-size: 1rem;
}

.entry .layout {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.entry .box {
    width: 185px;
}

.entry .box .img {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    height: 198px;
}

.entry .box .sub_heading {
    text-align: center;
}

.entry .box .sub_heading span {
    font-size: 1rem;
}

.entry .box .contents {
    text-align: center;
    background: #E6DFDA;
    padding: 10px;
    margin-top: 20px;
}

.entry .notes_list {
    margin-top: 50px;
}

/* ----------------------------------------------------------
problem
---------------------------------------------------------- */

.problem .balloon {
    width: 100%;
    height: 110px;
    position: relative;
}

.problem .balloon .img:first-of-type {
    position: absolute;
    left: 0;
    top: 0;
}

.problem .balloon .img:nth-of-type(2) {
    position: absolute;
    left: 290px;
    bottom: 0;
}

.problem .balloon .img:last-of-type {
    position: absolute;
    right: 0;
    top: 20px;
}

.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 .title {
    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 .title {
    margin-bottom: 50px;
}

.section.flow {
    padding-top: 40px;
    padding-bottom: 100px;
}

.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: #E6DFDA;
}

.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: #E6DFDA;
    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: 30px;
}

.support .layout .contents {
    padding: 20px;
    margin-top: 10px;
    background-color: #E6DFDA;
    box-sizing: border-box;
    height: calc(100% - 30px)
}

.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;
    line-height: 42px;
    height: 42px;
}

@media only screen and (max-width:959px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    .inner {
        width: 95%;
        margin: 0 auto;
    }

    /* ----------------------------------------------------------
    main
    ---------------------------------------------------------- */

    .main .layout .contents {
        padding-right: 20px;
    }

    .main .layout .text {
        margin-right: 0;
    }

    /* ----------------------------------------------------------
    problem
    ---------------------------------------------------------- */

    .problem .balloon {
        height: 170px;
    }

    .problem .layout>.img {
        width: 50%;
    }

    .problem .layout .contents {
        width: 45%;
    }

    /* ----------------------------------------------------------
    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 -300px center;
        background-size: 150%;
    }

    .mv .box {
        right: 30px;
    }

    .main .layout .text {
        width: calc(100% - 340px);
    }

    .movie iframe {
        width: 420px;
        height: 236px;
    }

    .movie .text {
        width: calc(100% - 440px);
    }

    .insurance .layout .contents {
        width: calc(100% - 380px);
    }

    .voice_box .box {
        width: calc(100% - 170px);
    }
}

@media only screen and (max-width: 767px) {

    /*body*/

    body {
        font-size: 1.4rem;
    }

    /* ----------------------------------------------------------
    header
    ---------------------------------------------------------- */

    .header .layout .text {
        font-size: 1.2rem;
        margin-left: -61px;
    }

    .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%;
        position: static;
        top: auto;
        right: auto;
    }

    .mv .box .title {
        margin-right: 0;
    }

    .mv .box .btn {
        justify-content: center;
    }

    /* ----------------------------------------------------------
section
---------------------------------------------------------- */
    .section {
        padding-top: 10%;
    }

    .divider .inner {
        padding-bottom: 10%;
    }

    .title {
        font-size: 2.6rem;
    }

    .heading {
        font-size: 2.2rem;
    }

    .sub_heading {
        font-size: 2rem;
    }

    .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: 50px;
    }

    .main .layout {
        flex-flow: column;
        margin: 30px 0;
    }

    .main .layout .img {
        order: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .main .layout .text {
        order: 1;
        width: 100%;
    }

    .main .cta_btn {
        margin-top: 40px;
    }

    /* ----------------------------------------------------------
    insurance
    ---------------------------------------------------------- */

    .insurance .title {
        margin-bottom: 30px;
    }

    .insurance .box {
        margin-bottom: 20px;
    }

    .insurance .heading {
        padding-left: 30px;
        margin-bottom: 10px;
        position: relative;
    }

    .insurance .box .heading.heading01:after {
        content: '';
        width: 24px;
        height: 24px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: inline-block;
        position: absolute;
        left: 0;
        top: 7px;
    }

    .insurance .box.box01 .heading.heading01:after {
        background-image: url(https://www.nnlife.co.jp/library/bizd/lg/ci1_202310/img/list_style01.svg);
    }

    .insurance .box.box02 .heading.heading01:first-of-type:after {
        background-image: url(https://www.nnlife.co.jp/library/bizd/lg/ci1_202310/img/list_style02.svg);
    }

    .insurance .box.box03 .heading.heading01:after {
        background-image: url(https://www.nnlife.co.jp/library/bizd/lg/ci1_202310/img/list_style03.svg);
    }

    .insurance .layout {
        display: block;
    }

    .insurance .layout .contents {
        width: 100%;
    }

    .insurance .table {
        width: 100%;
    }

    .insurance .table thead tr {
        font-weight: 500;
        text-align: left;
        border-bottom: 2px solid #6D6D6D;
    }

    .insurance .table tbody tr {
        border-bottom: 1px solid #E6DFDA;
    }

    .insurance .table tr th,
    .insurance .table tr td {
        padding: 10px;
    }

    .insurance .list li {
        padding-left: 30px;
        position: relative;
        margin-bottom: 10px
    }

    .insurance .list li:after {
        content: '';
        width: 8px;
        height: 8px;
        background-color: #404040;
        display: inline-block;
        position: absolute;
        left: 10px;
        top: 11px;
        border-radius: 4px;
    }

    .insurance .cta_btn {
        text-align: center;
        margin-top: 40px;
    }

    /* ----------------------------------------------------------
    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;
    }

    /* ----------------------------------------------------------
    movie
    ---------------------------------------------------------- */

    .movie .title {
        margin-bottom: 30px;
    }

    .movie .layout {
        display: block;
    }

    .movie .text {
        width: 100%;
    }

    .movie .youtube {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .movie .youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }



    /* ----------------------------------------------------------
chart
---------------------------------------------------------- */

    .section.chart {
        padding-top: 40px;
    }


    .chart .chart_container {
        padding: 40px 20px 40px;
    }

    .chart .text {
        margin-top: 20px;
    }

    .chart .layout {
        display: block;
    }

    .chart .layout .heading {
        width: 100%;
        min-height: 100px;
    }

    .chart .layout .img {
        margin-top: 30px;
        width: auto;
    }

    .chart .chart_btn_layout {
        margin-top: 30px;
    }

    .chart .chart_btn {
        font-size: 2rem;
        line-height: 1.5;
        height: auto;
        padding: 5px 5px;
    }

    .chart .chart_btn.chart_btn_small {
        font-size: 1.6rem;
    }

    /* ----------------------------------------------------------
    chart_result
    ---------------------------------------------------------- */

    .chart_result {
        width: 95%;
        padding: 65px 20px 35px 20px;
    }

    .chart_result .chart_result_btn a {
        font-size: 2rem;
        padding: 10px 0;
        width: auto;
    }

    .chart_result .one_more_btn span:before {
        top: 3px;
    }

    /* ----------------------------------------------------------
    entry
    ---------------------------------------------------------- */

    .entry .title {
        margin-bottom: 30px;
    }

    .entry .layout {
        display: block;
        margin-top: 30px;
    }

    .entry .box {
        width: 185px;
        margin: 0 auto 40px;
    }

    .entry .box .img {
        display: block;
        height: auto;
        margin-top: 10px;
    }

    .entry .notes_list {
        margin-top: 0;
    }


    /* ----------------------------------------------------------
problem
---------------------------------------------------------- */

    .problem .balloon {
        width: 100%;
        height: auto;
        position: relative;
    }

    .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 .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
    ---------------------------------------------------------- */

    .section.flow {
        padding-bottom: 10%;
    }

    .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;
        line-height: 30px;
        height: 30px;
    }

}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/