/*リセットCSS*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}



/*共通CSS*/

h1 {
font-family: a-otf-ud-shin-go-pr6n, sans-serif;
font-style: normal;
font-size: 42px;
line-height: 62px;
}

h2 {
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
}

h3 {
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
}

h4 {
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-style: normal;
    font-weight: lighter;
    font-size: 18px;
    line-height: 28px;
}

h5 {
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-style: normal;
    font-weight: lighter;
    font-size: 10px;
}

.logo-font-thin {
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    font-style: normal;
}
.logo-font-bold {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: normal;
}
    

p {
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 28px;
}

li {
    list-style: none;
}

div img {
    vertical-align: top;
}

a {
    text-decoration: none;
    color: white;
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-style: normal;
    font-weight: bold;
}

/*ビデオヘッダー(videoCase)*/

.videoCase {
    position: relative;
    left: 0;

    width: 100%;
    height: 100vh;

    background: #000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.videoHeader {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: auto;

    transform: translate(-50%,-50%);

    display: flex;
    flex-direction: column;

}

.videoHeader img {
    width: auto;
    height: 50px;

    margin: 0 auto 20px auto;


    filter: drop-shadow(1px 1px 5px #000000);
    


}

.chatchText {
    
    width: 100%;
    height: auto;
    letter-spacing: 2px;
    
    display: flex;
    justify-content: center;

    filter: drop-shadow(1px 1px 5px #000);


}

.chatchText h1 {
    
    font-size: 32px;
    font-weight: 1;
    letter-spacing: 2px;
    caret-color: transparent;

    
}


.item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /*img-changeと言う名前のアニメーションを15秒かけて繰り返す*/
    animation: img-change 15s infinite;

    opacity: 0;
}

.item:nth-child(1) {
    animation-delay: 0s;
}
.item:nth-child(2) {
    animation-delay: 5s;    
}
.item:nth-child(3) { 
    animation-delay: 10s;   
}


.item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes img-change {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    20%{
        opacity: 1;
    }
    30%{
        opacity: 1;
    }
    40%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}


/*--------
.videoCase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

----------*/
/*------------------*/

/*ヘッダーイメージ(imgHeadCase)*/

.imgHeadCase {

    position: relative;

    width: 100%;
    height: 100vh;
}

.imgHeadUpper {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: #ffffff;

    display: flex;

    
    
}

.imgHeadUnder {
    position: absolute;
    top: 60%;
    left: 0;

    width: 100%;
    height: 100%;


    display: flex;   
    
}

.imgItem {
    width: 25%;
    height: 40%;
    
}

.imgItem img {
    width: 100%;
    height: 100%;
    
    object-fit: cover;
}



.imgHeadText {

    position: relative;

    top: 40%;
    left: 0;

    z-index: 1;

    color: #000;
    background-color: #ffffff;

    width: 100%;
    height: 20%;

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

.imgHeadText h1 {

    font-size: 32px;
    font-weight: 1;
    letter-spacing: 2px;
    caret-color: transparent;
}

/*------------------*/




/*ヘッダー紹介します。(daIntCase)*/

.daIntCase {
    position: relative;

    width: 100%;
    height: 100vh;
}

.leftDaInt {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

.leftDaInt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rightDaIntWrapper {
    width: auto;
    height: auto;

    color: #ffffff;

    position: absolute;
    top: 50%;
    right: 10%;

    transform: translateY(-50%);

    background-color: rgba(0, 0, 0, 0.8);

    

    border-radius: 10px;

    padding: 40px;
}

.rightDaIntWrapper h1 {
    font-size: 32px;
    font-weight: 1;
    letter-spacing: 2px;
    caret-color: transparent;
}

.boxText01 {

    color: #000;
    background-color: #ffffff;

    margin-bottom: 10px;

    padding: 0 10px;

    border-radius: 5px;

    width: 260px;

       
}

.boxText02 {

    color: #000;
    background-color: #ffffff;

    margin-bottom: 10px;

    padding: 0 20px;

    border-radius: 5px;

    width: 400px;

       
}

.daIntText {

    padding: 0 1px;

}




/*------------------*/


/*ヘッダーイメージ(headerImg1st)*/

.headerImg1st {
    width: 100%;
    height: 100vh;

    position: relative;

    background-color: #fc6ddd;
}

.header1st {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 800px;
    height: 300px;

    transform: translate(-50%,-50%);


    background-color: #2e262c;

}

/*------------------*/

/*ヘッダーイメージ(headerImg2nd)*/

.headerImg2nd {
    width: 100%;
    height: 100vh;

    position: relative;

    background-image: url(./images/head_2danme.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.header2nd {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 800px;
    height: 300px;

    transform: translate(-50%,-50%);


    background-color: #2e262c;

}



/*------------------*/

/*ヘッダー(header)*/
header {
    background-color: black;
    width: 100%;
    height: 100px;
    align-items: center;
}
.header-block {
    width: 100%;
    height: 100px;
    display: flex;
    text-align: center;
    align-items: center;
}
.header-logo {
    width: 30%;
    text-align: right;
}
.header-logo img{
    width: 270px;
    height: auto;
}

.header-text {
    color: white;
    width: 70%;
}
/*------------------*/


/*トップヘッド(top-head)*/


.topwrapper {
    width: 100%;
    height: 100vh;
}

.topwrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topwrapper-mobile {
    width: 100%;
}

.topwrapper-mobile img {
    width: 100%;
}
/*------------------*/


/*サブヘッド/ホワイト/小大*/

.sub-heading-wrapper {
    width: 100%;
    text-align: center;
    padding: 100px 0 100px 0;
    color: #333333;
}

.sub-heading-contaner {
    display: inline-block;
    padding-bottom: 40px;
    border-bottom: 1px solid #333333;
}

.heading-shou {
    padding-bottom: 10px;
}




/*サブヘッド/ホワイト/大小*/


.heading-dai-02 {
    padding-bottom: 10px;
}



/*サブヘッド/グレイ*/

.sub-heading-wrapper-gray {
    width: 100%;
    text-align: center;
    padding: 100px 0 100px 0;
    color: white;
    background-color: #333333;
}

.sub-heading-contaner-gray {
    display: inline-block;
    padding-bottom: 40px;
    border-bottom: 1px solid white;
}

/*サブヘッド＆テキスト/ホワイト*/

.sub-headingmix-wrapper {
    width: 100%;
    text-align: center;
    padding: 100px 0 50px 0;
    color: #333333;
}

.sub-heading-text-mix {
    width: 100%;
}
.heading-area {
    display: inline-block;
    padding-bottom: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333333;
}
.under-block {
    text-align: left;
    width: 100%;
}
.undertext-area {
    width: 100%;
    padding:20px 0;

}


/*サブヘッド/悩み*/

.sub-heading-wrapper-nayami {
    width: 100%;
    text-align: center;
    padding: 100px 0 100px 0;
    color: white;
}

.sub-heading-contaner-gray {
    display: inline-block;
    padding-bottom: 40px;
    border-bottom: 1px solid white;
}

.midasi_backgray {
    text-align: center;
    color: white;
    font-weight: bold;
    padding: 7px;
}

.midasi_backwhite {
    text-align: center;
    color: black;
    font-weight: bold;
    padding: 7px;
}

.kaigyo {
    display: inline-block;
}

/*------------------*/


/*サブヘッド/一行*/

.sub-heading-wrapper-itigyo {
    width: 100%;
    text-align: center;
    padding: 100px 0 50px 0;
    color: black;
    background-color: white;
}

.sub-heading-wrapper-itigyo h1 {
    padding-bottom: 40px;
    border-bottom: 1px solid #333333;
    display: inline-block;
}



/*コンテンツ*/

.contaner {
    width: 860px;
    margin: 0 auto;
}

.tyome {
    background-color: #333333;
    padding: 60px 0;
}
.tyome-sign {
    color: white;
    border: 1px solid white;
    font-size: 14px;
    border-radius: 5px;
    padding: 20px 40px ;
}
.jube-sign {
    text-align: right;
    font-size: 14px;
    padding-top: 10px;
}

.contents-block-a {
    padding-bottom: 80px;
}

.contents-block-backgray {
    background-color: #333333;
}

.contents-block-backgray iframe {
    width: 100%;
    height: 100%;
}

/*必要なもの*/

.hituyou-wrapper {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}
.hituyou-heading {
    padding: 80px 0;
}
.hituyou-contaner {
    width: 80%;
    margin:  0 auto;
    display: flex;
    justify-content: space-between;
}
.hituyou-block {
    width: 30%;
}
.hituyou-icon img{
    width: 180px;
    height: auto;
    margin:  0 auto;
}
.hituyou-textarea {
    padding-top: 20px;
}
.hituyou-textarea h2{
    border-bottom: 1px solid #333333;
    display: inline-block;
}


/*結果表*/

table {
    width: 100%;
}

tr {
    height: 60px;
}

td {
    text-align: right;
    padding-right: 80px;
    vertical-align: middle;
}

.hyo-title {
    background-color: white;
    color: black;
    font-size: 14px;
    height: 40px;
    border-bottom: 1px solid #999999;
}


.gu-gyou {
    background-color: #f7f7f77a;
}
.roi {
    color: #009473;
    font-weight: bold;
}



.goukei {
    font-size: 20px;
    height: 70px;
    border-top: 1px solid #999999;
}

.setumei-wrapper {
    padding-bottom: 20px;
}

.setumei-a {
    font-size: 10px;
    color: black;
    text-align: right;
    line-height: 12px;
}

.kekka-gragh {
    width: 100%;
    height: auto;
    border: 1px solid #eeeeee;
    margin-bottom: 20px;
}

.text-area {
    padding: 100px 0 100px 0;
    background-color: #f7f7f7;
}
.text-area02 {
    padding: 30px 0 100px 0;
    background-color: #f7f7f7;
}

.text-area-backgray {
    padding: 100px 0 100px 0;
    background-color: #333333;
}

.text-area-clear {
    padding: 100px 0 100px 0;
    color: white;
}

.text-area-white {
    background-color: white;
}


.text {
    width: 100%;
}

.text-area-backgray p{
    color: white;
    font-size: 14px;
}

.kekka-rireki {
    width: 100%;
    height: 500px;
    position: relative;
    box-shadow: 2px 2px 10px #999999;
}

.kekkarireki-gazo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.scroll-wrapper{
    position: absolute;
    top: 40px;
    left: 40px;
}

.scroll-contaner {
    width: 160px;
    background-color: #009473;
    opacity: 0.8;
    display: flex;
    align-items: center;
    color: white;
    border-radius: 30px;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
.scroll-icon {
    width: 40%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 32px;
    
}
.scroll-text {
    width: 60%;
    height: 60px;
    text-align: center;
}
.scroll-text h1{
    line-height: 60px;
    font-size: 24px;
    letter-spacing: 3px;
    padding-right: 14px;
}

.douga-mazu {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.douga-mazu iframe {
    width: 100%;
    height: 100%;
}


.kekka-komidasi-contents {
    width: 95%;
    margin: 0 0 0 auto;
    padding: 30px 0;
    text-align: left;
}
.kekka-komidasi-tittle {
    color: #333333;
    width: 100%;
    margin: 20px 0;
}
.kekka-komidasi-tittle h4 {
    display: inline-block;
    padding: 5px;
    border-left: 10px solid #333333;
    border-bottom: 1px solid #333333;
}



  
  

/*悩み*/

.nayami-wrapper {
    background-image: url(images/bg_nayami01.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom 0px left 0px;
    background-color: #333333;
}

.text-area-backgray h1 {
    color: white;
}
.text-area-nayami h1 {
    color: white;
}

.list-nayami {
    border: 1px solid #999999;
    width: 80%;
    margin: 0 auto;
    color: #999999;
    font-size: 20px;
    line-height: 40px;
    text-align: left;
    font-weight: bold;
}
.list-nayami ul {
    padding: 5% 7%;
    display: inline-block;
    text-align: center;
}
.list-nayami li {
    margin: 10px 0;
}
.nayami-red {
    color: red;
}

.text-nayami {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 0 0;
}

/*三拍子コンテンツ*/

.sanbyousi-contents-area {
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.sanbyousi-contents {
    width: 30%;
    text-align: center;
}

.sanbyousi-icon {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 10px;
}

.sanbyousi-icon img {
    width: 100%;
}

.sanbyousi-textarea {
    width: 80%;
    margin: 0 auto;
    padding-top: 10px;
}
.sanbyousi-green {
    font-weight: 900;
    color: #009473;
}
.sub-heading-wrapper-sanbyousi {
    width: 100%;
    text-align: center;
    padding: 50px 0 100px 0;
    color: #333333;
}




/*if*/

.if-bigwrapper {
    width: 860px;
    margin: 0 auto;
    padding: 100px 0 70px 0;
}

.if-wrapper {
    width: 100%;
    border: 3px solid #333333;
}

.if-wrapper h1 {
    color: white;
    text-align: center;
    background-color: #333333;
    font-size: 32px;
    line-height: 80px;
}



.if-contaner {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.if-list {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    
}

.check-icon {
    height: 30px;
    padding-top: 3px;
}

.check-icon .fas {
    color: red;
    font-size: 24px;
    padding-right: 20px;
}
.if-text h2 {
    color: #666666;
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-style: normal;
    font-weight: lighter;
}

.if-sub {
    color: #333333;
    background-color: white;
    padding: 0 20px;
    text-align: center;
    position: relative;
    top: -24px;
    width: 60%;
    margin: 0 auto 10px 0;
}

.if-sub-sub {
    color: #333333;
    background-color: white;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.h1-red {
    color: red;
    text-decoration: underline;
}
.if-kaiketu {
    padding-bottom: 100px;
    text-align: center;
}
.if-kaiketu h1 {
    display: inline-block;

    font-size: 32px;
    line-height: 50px;

}

.if-kaiketu i {
    color: red;
    width: 100%;
    font-size: 200%;
    text-align: center;
    padding: 20px 0 30px 0;
}

.if-kaiketu02 {
    text-align: center;
}
.if-kaiketu02 h1 {
    display: inline-block;

    font-size: 32px;
    line-height: 50px;

}
.if-kaiketu02 i {
    color: #009473;
    width: 100%;
    font-size: 200%;
    text-align: center;
    padding: 20px 0 30px 0;
    margin: 0 auto;
}


/*２カラム*/

.contents-block-two{
    display: flex;
    width: 100%;
    align-items: flex-start;
}


.contents-block-two-text {
    width: 50%;
}

.contents-block-two-text p{
    font-size: 14px;
}

.contents-block-two-photo {
    width: 50%;
    text-align: center;
    opacity: 0.7;
    padding-bottom: 10px;
}

.contents-block-two-photo img {
    width: 70%;
    border-radius: 5px;
}


/*２カラム/バックグリーン*/

.da-contents-block-two{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    padding: 50px 0 ;
}


.da-contents-block-two-text {
    width: 50%;
}

.da-contents-block-two-text h1{
    font-size: 14px;
    line-height: 28px;
    font-weight: bold;
    background-color: #f7f7f7;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.da-contents-block-two-text p{
    font-size: 14px;
}

.da-contents-block-two-photo {
    width: 50%;

}

.da-contents-block-two-photo img {
    width: 100%;
    margin: 0 auto;
}


/*３つの特徴*/

.tokutyou-wrapper {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 80px;
}

.tokutyou-contents-area {
    display: flex;
    justify-content: space-between;
}

.tokkutyou-block {
    width: 30%;
}

.toku-img img{
    width: 100%;
}

.toku-textarea {
    width: 80%;
    margin: 0 auto;
}

.toku-heading {
    padding: 20px 0;
}
.toku-heading-shou {
    font-weight: 900;
    text-align: center;
}
.toku-heading-dai {
    text-align: center;
    padding-top: 5px;
    color: #009473;
}

.toku-text {
    padding: 20px 0;
    border-top: 1px solid #666666;

}





/*ディレクションアローセクション*/

.da-section {
    width: 100%;
    background-color: #009473;
}
.da-topimage {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0 0px 0;
    
}
.da-topimage img {
    width: 100%;
}
.da-topimage h1 {
    color: white;
    font-size: 52px;
    line-height: 80px;
    font-weight: lighter;
}
.font-size {
    font-size: 38px;
}

.da-wrapper {
    width: 860px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
}

.da-contaner {
    width: 760px;
    margin: 0 auto;
}

.da-textarea-backgreen {
    color: white;
    width: 100%;
    padding: 70px 0;
}

.step-part-image-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.step-part-image-block img{
    width: 45%;
}
.step-part-image-block .step3-image {
    width: 90%;
    margin: 0 auto;
}





/*３ステップあああああああ*/

.da-3step-section {
    background-color: #f7f7f7;
}
.da-3step-heading {
    padding: 40px 0;
}

.merit-heading-area {
    background-color: #f7f7f7;
}
.directionarrow-contents-block {
    background-color: #009473;
}

.merit-topimage {
    width: 80%;
    margin: 0 auto;    
}
.merit-topimage img {
    width: 100%;
}
.da-3step-text-area {
    width: 100%;
    padding: 80px 0;
}



.text-area-merit {
    background-color: white;
    padding: 0 0 100px 0;
}

.text-white-merit {
    width: 100%;
}
.text-white-merit h2{
    text-align: left;
}

.da-3step-wrapper {
    padding-bottom: 40px;
}

.da-3step-tittle {
    width: 100%;
    background-color: #333333;
    display: flex;
    align-items: center;
    border: 1px solid #333333;
    border-radius: 10px 10px 0 0;
}
.da-3step-left {
    width: 15%;
    text-align: center;
    background-color: white;
    color: #333333;
    margin: 20px;
    padding: 20px 0px;
    border-radius: 10px;
}
.da-3step-nunber-up {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 5px;
}
.da-3step-nunber-up h4{
    font-size: 18px;
    line-height: 18px;
    padding-bottom: 5px;
}
.da-3step-nunber-down h1{
    font-weight: bold;
    font-size: 42px;
    line-height: 42px;
}
.da-3step-right {
    width: 80%;
    color: white;
    padding: 0 40px;
    font-weight: lighter;
}
.da-3step-contents-area {
    width: 100%;
    border: 1px solid #333333;
    border-radius: 0 0 10px 10px;
    background-color: white;
}
.da-3step-contents {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.da-3step-image {
    margin: 0 auto;
    width: 100%;
    padding: 40px 0;
}
.da-3step-image img {
    width: 100%;
}
.da-3step-image-gragh img {
    width: 100%;
    margin: 10px 0;
    border: 1px solid #999999;
}
.da-3step-midasitext {
    padding: 20px 0;
}
.da-3step-midasitext p{
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
}

/*動画解説テキストエリア*/

.dougakaisetu-wrapper {
    width: 100%;
    background-color: #333333;
    padding: 20px 0 40px 0;
}
.dougakaisetu-contents {
    color: white;
    padding: 30px 0 50px 0;
    text-align: left;
}
.douga-tittle {
    width: 100%;
    margin: 20px 0;
}
.douga-tittle h4 {
    display: inline-block;
    padding: 5px;
    border-left: 10px solid white;
    border-bottom: 1px solid white;
}
.douga-text {
    width: 100%;
}


.trade-chart-2 {
    display: flex;
}
.trade-chart-2 img{
    width: 50%;
}
.trade-chart-1 img{
    width: 100%;
}

/*チャートギャラリー*/

.chart-gallery {
    background-color:white;
}
.gallery-contaner {
    width: 90%;
    margin: 0 auto;
}
.gallery-contaner p {
    text-align: right;
    font-size: 10px;
    line-height: 14px;
    color: black;
}
.chart-1face img{
    width: 100%;
    margin-bottom: 1px;
}
.chart-2face {
    display: flex;
}
.chart-2face img{
    width: 50%;
    margin: 0 1px 1px 0;
}

.dougakaisetu-contents {
    width: 100%;
}
.dougakaisetu-contents img {
    width: 100%;
}

.sab-heading-kotosi {
    background-color: #333333;
}
.sab-heading-kotosi h1 {
    font-size: 32px;
    color: white;
    padding: 0 0 20px 0;
    margin: 0 0 50px 0;
    border-bottom: 1px solid white;
    display: inline-block;
}

.contents-block-gallery-text {
    padding: 40px 0 80px;
}

/*メリット*/

.merit-heading-area {
    background-color: #f7f7f7;
}
.directionarrow-contents-block {
    background-color: #009473;
}

.merit-topimage {
    width: 80%;
    margin: 0 auto;    
}
.merit-topimage img {
    width: 100%;
}
.merit-text-area {
    width: 100%;
    padding: 80px 0;
}



.text-area-merit {
    background-color: white;
    padding: 0 0 100px 0;
}

.text-white-merit {
    width: 100%;
}
.text-white-merit h2{
    text-align: left;
}

.merit-wrapper {
    padding-bottom: 40px;
}

.merit-tittle {
    width: 100%;
    background-color: #009473;
    display: flex;
    align-items: center;
    border: 1px solid #009473;
    border-radius: 10px 10px 0 0;
}
.merit-left {
    width: 15%;
    text-align: center;
    background-color: white;
    color: #009473;
    margin: 20px;
    padding: 20px 0px;
    border-radius: 10px;
}
.merit-nunber-up {
    width: 100%;
    margin: 0 auto;
}
.merit-nunber-up h4{
    font-size: 18px;
    line-height: 18px;
    padding-bottom: 10px;
}
.merit-nunber-down h1{
    font-weight: bold;
    font-size: 42px;
    line-height: 42px;
}
.merit-right {
    width: 80%;
    color: white;
    padding: 0 40px;
    font-weight: lighter;
}
.merit-contents-area {
    width: 100%;
    border: 1px solid #009473;
    border-radius: 0 0 10px 10px;
}
.merit-contents {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.merit-image {
    margin: 0 auto;
    width: 100%;
    padding: 40px 0;
}
.merit-image img {
    width: 100%;
}
.merit-image-gragh img {
    width: 100%;
    margin: 10px 0;
    border: 1px solid #999999;
}
.merit-midasitext {
    padding: 20px 0;
}
.merit-midasitext p{
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
}




/*億万長者*/
.okumanntyoujya-wrapper {
    padding-bottom: 80px;
    background-image: url(images/bg-oku.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom 0px right 0px;
    background-color: #f7f7f7;
}

.okumann-list{
    padding: 40px 0;
}

.okumann-list h3{
    text-align: left;
    margin: 10px 0;
    color: #666666;
}


/*人間関係*/
.ningenkankei-wrapper {
    padding-bottom: 80px;
    background-image: url(images/bg_ningen03.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom 0px right 0px;
    background-color: white;
}


/*理想*/
.risou-wrapper {
    padding-bottom: 40px;
}
.risou-wrapper img {
    width: 100%;
}
.risou-block {
    width: 100%;
    padding: 40px 0;
}
.risou-list {
    width: 100%;
    margin: 0 auto 5px auto;
    display: flex;
    padding: 20px 0 5px 0;
    border-bottom: 1px solid #eeeeee;
}
.risou-check {
    width: 8%;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: lighter;
    color: #009473;
}
.risou-text {
    width: 92%;
    font-weight: lighter;
    padding-right: 10px;
}



/*ディレクションアローコンテンツ*/

.da-contents-topimage {
    width: 100%;
}
.da-contents-topimage img{
    width: 100%;
}

.directionarrow-contents-wrapper {
    background-color: #009473;
    padding-bottom: 40px;
}
.directionarrow-contents-block {
    background-color: #009473;
    margin: 0px 0 80px 0;
}

.directionarrow-contents {
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

.directionarrow-contents-area {
    width: 90%;
    margin: 0 auto;
    display: flex;
    padding: 40px 0;
    align-items: center;
}

.directionarrow-contents-left {
    width: 40%;
    text-align: center;
    align-items: center;
}
.directionarrow-contents-left img {
    width: 90%;
}

.directionarrow-contents-right {
    width: 60%;
}
.directionarrow-contents-right-separate {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}
.directionarrow-contents-right-separate p{
    line-height: 20px;
}

.directionarrow-contents-nunber {
    width: 30%;
    font-weight: bold;
    color: #009473;
    text-align: center;
}

.directionarrow-contents-subtittle {
    width: 70%;
    text-align: left;
} 

.directionarrow-contents-tittle {
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.directionarrow-contents-textarea {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 40px;
}

.mt4-dousa {
    width: 100%;
    padding-top: 10px;
}

.kankyo {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kankyo-titlle {
    width: 15%;
    padding: 5px 0;
    text-align: center;
    color: white;
    background-color: #333333;
    border: 1px solid #333333;
    border-radius: 10px;
    
}

.kankyo-text {
    width: 80%;
}


/*サポート*/


.suport-wrapper p {
    color: black;
}
.support-contents-area {
    width: 90%;
    margin: 0 auto;
    background-image: url(images/bg_support.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom 0px right 0px;
}
.suport-contaner {
    width: 860px;
}
.suport-block {
    width: 100%;
    padding-bottom: 40px;
}

.suport-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;;
}
.suport-title-left {
    width: 25%;
    text-align: right;
}
.suport-title-right {
    width: 70%;
    text-align: left;
}
.suport-title-icon {
    font-size: 46px;
    color: #333333;
    line-height: 100px;

}
.suport-tilte-text h3{
    line-height: 100px;
    text-align: left;
 }
.suport-textarea{
    width: 70%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid #999999;
    

}
.suport-text {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}



/*金額*/

.price-wrappoer {
    padding: 80px 0;
}

.kingaku {
    color: red;
    font-weight: bold;
    padding: 30px 0 10px 0;
    border-bottom: 1px solid red;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.kingaku-shou {
    font-size: 34px;
}

.text-white img {
    width: 100%;
}



/*特典*/

.tokuten-wrapper {
    padding-bottom: 40px;
    background-image: url(images/haikei_tokuten03.jpg);
    background-position: top 0px right 0px;

}

.tokuten-area {
    padding-bottom: 40px;
}

.tokuten-tittle {
    width: 100%;
    background-color: #333333;
    display: flex;
    align-items: center;
    border: 1px solid #333333;
    border-radius: 10px 10px 0 0;
}
.tokuten-left {
    width: 20%;
    text-align: center;
    background-color: #f7f7f7;
    color: #333333;
    margin: 20px;
    padding: 20px 0;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tokuten-nunber-up {
    width: 60%;
    text-align: right;
    font-size: 32px;
}
.tokuten-nunber-down {
    width: 38%;
    text-align: left;
    font-size: 42px;
    font-weight: 900;
}
.tokuten-right {
    width: 80%;
    color: white;
    font-size: 32px;
    line-height: 42px;
    padding: 0 40px;
}
.tokuten-contents-area {
    width: 100%;
    border: 1px solid #333333;
    border-radius: 0 0 10px 10px;
}
.tokuten-contents {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}
.tokuten-contents h4 {
    padding: 5px 0;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 1px solid #333333;
}
.tokuten-midasitext {
    padding: 5px 0;
}
.tokuten-midasitext p{
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}

.tokuten-tow-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}
.tokuten-tow-block-left {
    width: 45%;
}
.tokuten-tow-block-left img{
    width: 100%;
    border-radius: 10px;
}
.tokuten-tow-block-right {
    width: 50%;
}


/*まとめ*/

.sub-heading-wrapper-matome {
    width: 100%;
    text-align: center;
    padding: 100px 0 100px 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px 10px 0 0;
}

.sub-heading-contaner-matome {
    display: inline-block;
    padding-bottom: 40px;
    border-bottom: 1px solid white;
}

.matome-wrapper {
    width: 100%;
    background-image: url(images/heading_image_02.jpg);
    background-position: cover;
    background-attachment: fixed;
    padding: 120px 0 120px 0;
}


.matome-contents-wrapper {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding-top: 80px;
}
.matome-block {
    padding-bottom: 60px;
}

.matome-contents-title {
    width: 90%;
    margin: 0 auto;
}
.matome-contents-title h1{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 50px;
    padding: 0 0 10px 10px;
    border-bottom: 1px solid #333333;
    border-left: 10px solid #333333;
}
.page-area {
    width: 100%;
    text-align: right;
    color: white;
}

.page-area h5{
    background-color: #333333;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 3px;
}

.matome-contents {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.matome-contents-left {
    width: 50%;
}
.matome-contents-left img{
    width: 100%;
}
.matome-contents-right {
    width: 50%;
}

.matome-contents-right-block {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.matome-contents-icon {
    width: 15%;
    text-align: center;
}
.matome-contents-icon img{
    width: 100%;
}
.matome-contents-icon h1{
    font-size: 24px;
    font-weight: bold;
    color: #009473;
    text-align: center;
    line-height: 36px;
}
.matome-contents-icon i{
    font-size: 24px;
    color: #009473;
    text-align: center;
}
.matome-contents-text {
    width: 85%;
}


/*まとめ用金額*/
.matome-price-wrapper {
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 60px;
    border-radius: 0 0 10px 10px;
    color: white;
}
.matome-priceーcontents {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.matome-price {
    align-items: flex-end;
    margin: 0 auto;

}
.matome-price h1{
    display: inline-block;
    font-size: 60px;
    letter-spacing: 2px;
}
.matome-price h3 {
    display: inline-block;
    font-size: 42px;
    letter-spacing: 1px;
}
.tategaki {
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.matome-kingaku-left {
    width: 40%;
    text-align: center;
}
.matome-kingaku-left img{
    width: 60%;
    margin: 0 auto;
    border: 1px solid white;
    border-radius: 3px;
    padding: 5px 10px;
}
.matome-kingaku-right {
    width: 60%;
}


/*申込ボタン*/

.buttom-wrapper {
    background-color: white;
    text-align: center;
    padding: 100px 0;
}

.buttton {
    width: 50%;
    height: 100px;
    margin: 50px auto;
    font-size: 32px;
    background-color: #009473;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.5s;
}
.buttton:hover {
    opacity: 0.8;
}
.buttton a {
    display: block;
    line-height: 100px;
}

.button-block {
    width: 100%;
}

.btn-contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.btn-contents-left {
    width: 48%;
}
.btn-contents-left img{
    width: 100%;
}
.bun-contents-right {
    width: 48%;
}

.btn-setumei-heading {
    font-size: 10px;
    line-height: 10px;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #666666;
    color: #333333;
}

.btn-setumei-text {
    font-size: 10px;
    line-height: 12px;
    padding-top: 5px;
    text-align: left;

}


/*FAQ*/

.faq-wrapper {
    padding-top: 80px;
}

.faq-block {
    width: 100%;
    padding: 50px 0;
    border-bottom: 1px solid #999999;
}
.faq-block-end {
    width: 100%;
    padding: 50px 0;
}

.q-block {
    width: 580px;
    display: flex;
    align-items: flex-start;
}
.q-logo {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: red;
    color: white;
    border-radius: 50%;
    margin-right: 20px;
}
.q-logo h2{
    font-size: 32px;
    line-height: 48px;
}
.q-textarea {
    width: 500px;
    margin-top: 10px;
    
}
.q-text {
    display: inline-block;
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 10px 10px;
}


.a-block {
    width: 580px;
    display: flex;
    align-items: flex-start;
    margin: 20px 0 0 auto;
}
.a-logo {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: blue;
    color: white;
    border-radius: 50%;
    margin-left: 20px;
}
.a-logo h2{
    font-size: 32px;
    line-height: 48px;
}
.a-textarea {
    width: 500px;
    text-align: right;
    margin-top: 10px;
}
.a-text {
    display: inline-block;
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 10px 10px;
    text-align: left;
}

/*さいごに*/
.saigoni-wrapper {
    padding-top: 80px;
}

/*お客さんの声*/
.user-voice-block {
    width: 100%;
    display: flex;
    box-shadow: 2px 2px 10px #999999;
    margin-bottom: 40px;
    background-image: url(images/paper_background.gif);
}

.user-voice-profil-area {
    width: 25%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4);
}
.user-icon {
    width:150px;
    height: 150px;
    margin: 30px auto;
    background-color: #333333;
    align-items: center;
    border-radius: 50%;
}
.user-icon img{
    width: 60%;
    margin-top: 30px;
}

.user-profil {
    margin-top: 30px;
}


.user-voice-text-area {
    width: 75%;
    background-color: rgba(255, 255, 255, 0.7);
}

.user-voice-title {
    margin: 30px;
    padding: 63px 0;
    border-bottom: 1px solid #333333;
}
.user-voice-text {
    margin: 0 30px 30px 30px ;
}
.user-voice-text img {
    width: 100%;
    padding: 28px 0px;
}
.user-tyomei {
    text-align: right;
    margin-top: 30px;
}




/*フッター*/
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding-bottom: 20px;
}
.footer-contents-block {
    padding-top: 20px;
}
.footer-contents-block a{
    padding: 10px 0 5px 0;
    margin: 0 10px 10px 10px;
    font-size: 12px;
    display: inline-block;
    border-bottom: 1px solid white;

}
.footer_textarea {
    color: #999999;
}
.footer_textarea p{
   font-size: 10px;
}