@charset "utf-8";

html {
    scroll-behavior: smooth;
}

ol {
    list-style: true;
    padding-left: 20px;
}

ul {
    padding-left: 20px;
}

/* bodyの設定-------------- */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    /* overflow-x: hidden; */
}

/*---------fadein-------*/
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1500ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

/* header---------- */
header {
    width: 100%;
    padding-top: 10px;
    background-color: #fff;
    position: fixed;
    z-index: 999;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.5);
}

h1 {
    padding-left: 10%;
    box-sizing: border-box;
    height: 80px;
}

/* navの設定---------------- */
nav.global ul {
    display: flex;
    justify-content: space-between;
    margin-top: -15px;
    height: 40px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

nav.global ul li {
    display: inline-block;
    width: auto;
    /* アニメーションの速度設定 */
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

nav.global ul li a {
    display: block;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-weight: bolder;
    padding: 0 20px;
    box-sizing: border-box;
    transition: 0.3s;
}

nav.global ul li a:hover {
    color: #999;
}

/* --------メインビジュアル-------- */
.main-visual{
    position: relative;
    margin: 0 auto;
    padding-top: 120px;
}

.main-visual img {
    width: 100%;
    height: auto;
    z-index: 0;
    position: relative;
}

/* main-------------------- */
main {
    margin: 0 auto;
}

/* section-------- */
.nav_move {
    padding-top: 80px;
}

.nav_move2{
    padding-top: 150px;
}

.white {
    max-width: 1170px;
    background-color: #fff;
    margin: 0 auto;
    clear: both;
}

.caption {
    font-size: 0.8em;
    text-align: left;
    margin-left: 3rem;
    text-indent: -3rem;
    margin-bottom: 0;
    clear: both;
    font-weight: normal;
}

.caption span{
    display: inline-block;
    text-indent: 0rem;
}

.red_caption{
    clear: both;
    font-size: 0.8em;
    color: #f00;
    text-align: left;
    margin-left: 1rem;
    text-indent: -1rem;
    margin-bottom: 0;
    font-weight: normal;
}

.one_rem {
    margin-left: 1rem;
    text-indent: -1rem;
}

.two_rem{
    margin-left: 2rem;
    text-indent: -2rem;
}

.mini{
    font-size: 0.8em;
}

.half_rem{
    margin-left: 0.5rem;
    text-indent: -0.5rem;
}

.right{
    text-align: right;
}

h2{
    padding: 1rem;
    text-align: center;
    font-size: 2em;
    line-height: 1.5em;
    color: #fff;
    background-image:/*背景・水玉カラー*/
     linear-gradient(135deg, transparent 0 0px, #eb0a1e 50px calc(100% - 50px), transparent calc(100% - 20px)),
     radial-gradient(#fff 30%, transparent 30%);
    background-repeat: no-repeat, repeat;
    background-size: 100% 100%, 10px 10px;
    background-color: #eb0a1e;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
}

h3{
    text-align: center;
    font-size: 1.5em;
    padding: 30px;
}

.center{
    text-align: center;
}

.mt10{
    margin-top: 10px;
}

.mt30{
    margin-top: 30px;
}

.mt50{
    margin-top: 50px;
}



/* -----interview------ */
.specialist{
    margin-top: 40px;
}

.specialist img {
    float: left;
    margin-right: 40px;
}

.name {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.7em;
}

.name .shimei{
    font-size: 1.3em;
    margin-top: 5px;
}

.profile{
    margin-top: 10px;
}

.profile p{
    font-size: 15px;
    line-height: 1.8em;
}

.underline span{
    border-bottom: 1px solid #000;
    font-weight: bold;
    padding-bottom: 2px;
}

/* ---------アコーディオン--------- */
/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
}

.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    border: 1px solid #ccc;
    margin-top: 40px;
}

/*アコーディオンタイトル*/
.a_title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    padding: 2% 3% 2% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.a_title::before,
.a_title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;
}

.a_title::before {
    top: 48%;
    left: 15px;
    transform: rotate(0deg);
}

.a_title::after {
    top: 48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.a_title.close::before {
    transform: rotate(45deg);
}

.a_title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    /*はじめは非表示*/
    background: #f3f3f3;
    margin: 0 3% 3% 3%;
    padding: 3%;
}

.answer{
    font-size: 24px;
    font-weight: 600;
}

.answer span{
    border-bottom: 1px solid #000;
}

.ans_sentence {
    font-size: 1em;
    font-weight: 500;
    line-height: 2em;
    margin-bottom: 10px;
}

.cap_box {
    margin-top: 20px;
}

.now_power{
    position: relative;
    margin-top: 40px;
    font-size: 22px;
    color: #eb0a1e;
    padding: 0.5em 10em;
}

.now_power:before,
.now_power:after{
    position: absolute;
    top: 0.8rem;
    height: 1.8rem;
    content: '';
}

.now_power:before{
    border-left: solid 3px;
    left: 25%;
    transform: rotate(-30deg);
}

.now_power:after{
    border-right: solid 3px;
    right: 25%;
    transform: rotate(30deg);
}


.now_power_contents{
    text-align: center;
    margin-top: 30px;
    font-size: 20px;
}

.mt60{
    margin-top: 60px;
}

.mt80{
    margin-top: 80px;
}

.short_wise{
    max-width: 800px;
    margin: 0 auto;
}

.graph_title{
    font-size: 1.3em;
    text-align: center;
    margin-top: 40px;
}

.graph_title span{
    display: inline-block;
}

.message{
    line-height: 2em;
    font-weight: 600;
    margin-top: 10px;
}

#interview{
    padding-bottom: 80px;
}

/* -----ファンドの特色------ */
.hako{
    margin-top: 50px;
}

#features{
    background-color: #f5f2ee;
    padding-bottom: 80px;
}

#features .white{
    background-color: transparent;
}

#features h2{
    margin-top: 30px;
}

.features_box{
    height: 330px;
}

.fund_left{
    float: left;
}

.fund_right{
    float: right;
    width: calc(100% - 350px);
    height: 300px;
    margin-left: 50px;
}

.fund_detail{
    font-size: 22px;
    font-weight: bold;
    line-height: 1.8em;
    color:#333
}

.btn a{
    position: relative;
    display: block;
    width: 300px;
    padding: 15px 0;
    background-color: #eb0a1e;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    transition: .2s;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px gray;
}

.btn a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: .2s;
    box-sizing: border-box;
  }

  .btn-icon-move a:hover::after {
    right: 20px;
  }

.tokkagata{
    border: 1px solid #999;
    margin: 30px 0 5px 0;
    padding: 15px;
    clear: both;
}

.strong{
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.another{
    position: relative;
    z-index: 0;
    margin-top: 60px;
}

.whole{
    position: relative;
    font-size: 1.8rem;
    text-align: center;
    
}

.whole:before{
    content: "";
  position: absolute;
  background: #61c5e1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
  opacity: 0.3;
}

/* ------銘柄紹介-------- */
.stocks{
    padding: 0.5em 6em;
    background: linear-gradient(to right, #fff 0%, #16347d 30%, #16347d 70%, #fff 100%);
    color: #fff;
    font-size: 24px;
    margin-top: 100px;
}

.company ul{
    margin-top: 20px;
}

.company ul li{
    font-size: 20px;
    margin-top: 10px;
}

.company ul li span{
    font-weight: bold;
    color: #eb0a1e;
}

.company h4{
    margin-top: 10px;
    text-align: center;
    font-size: 1.5em;
}

.company h5{
    margin-top: 10px;
    text-align: center;
    font-size: 1.2em;
}

.toyota_value{
    margin-top: 50px;
}

.left_box{
    width: 550px;
    float: left;
    margin-bottom: 10px;
}

.right_box{
    width: 550px;
    float: right;
    margin-bottom: 10px;
}

.bottomline{
    border-bottom: 1px solid #000;
}

.invi{
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0) 40%,rgba(255,255,255,0.5) 60%,rgba(255,255,255,1) 100%),url(../images/invitation.jpg);;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-top: 150px;
}

.invitation{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    position: relative;
    line-height: 1.6;
    padding:2em 1em;
    text-align: center;
    margin-top: 50px;
    text-shadow: 2px 2px 4px #0000a0;
}

.indent4{
    text-indent:0.1em;
}

/* ------guard------ */
.guard{
    margin-top: 80px;
}

#gray {
    margin-top: 40px;
    margin-bottom: 10px;
    background: none;
    background-color: #777;
    color: #fff;
    padding: 10px 0 6px 20px;
    line-height: 1.3;
    text-align: left;
    font-size: 1em;
    font-weight: 600;
}

.guard ul li{
    font-size: 0.9em;
}

.kakoi{
    font-size: 0.9em;
    border: 1px solid #0000a0;
    border-radius: 8px;
    padding: 8px;
    margin: 5px 0;
}

.factor ul li span{
    color: #f00;
    border-bottom: 1px solid #f00;
}

.fund p {
    font-size: 0.9em;
    font-weight: normal;
}

.fund ul li{
    color: #024480;
    font-weight: bold;
}

.fund p span {
    font-weight: bold;
    color: #f00;
    border-bottom: 1px solid;
}

.kawase{
    position: relative;
    margin-top: -20px;
}

.fund h4 {
    margin-top: 30px;
    text-align: left;
    margin-bottom: 0;
    color: #024480;
    font-weight: bold;
    font-size: 1.1em;
}

.fund h5{
    font-size: 1em;
    color: #024480;
    text-align: left;
}

.fund ul p{
    font-weight: normal;
}

.factor ul{
    list-style-type: circle;
}

.factor ul li{
    color: #000;
    font-weight: normal;
}

.factor ul li span{
    color: #f00;
    border-bottom: 1px solid;
    font-weight: bold;
}

.fund ul .list_color{
    color: #01b0e9;
    font-weight: bold;
    margin-bottom: 0;
}

.fund .list_color span{
    border-style: none;
    color: #01b0e9;
}

.hansha_btn a{
    margin: 0 auto;
}

.notes{
    margin-top: 80px;
}

/* footer-------- */
footer {
    background-color: #000;
    margin-top: 60px;
    text-align: center;
    padding: 40px 0;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

small {
    color: #fff;
}

/* ------------タブレットサイズ--------- */
@media screen and (max-width:1190px) {
    header{
        height: 130px;
    }

    h1 {
        padding-left: 20px;
    }

    h1 img {
        width: auto;
        height: 70px;
    }

    nav.global ul li a {
        padding: 0 3px;
    }

    .main-visual {
        padding-top: 140px;
    }

    .main_img{
        display: flex;
        justify-content: center;
        width: 100%;
        margin: auto;
    }

    .main-visual img {
        width: 150%;
        display: block;
    }

    .wrapper {
        overflow: hidden;
    }

    .white {
        max-width: 95%;
    }

    h2{
        margin-top: 10px;
    }

    h2 span{
        display: inline-block;
    }

    section img {
        max-width: 100%;
    }

    #features h2{
        margin-top: 0;
    }
    
    .features_box{
        height: 330px;
    }
    
    .fund_left img{
        width: 250px;
        height: 250px;
    }
    
    .fund_right{
        float: right;
        width: calc(100% - 275px);
        height: auto;
        margin-left: 25px;
    }
    
    .fund_detail{
        font-size: 22px;
        font-weight: bold;
        line-height: 1.8em;
        color:#333
    }

    .btn a{
        width: 250px;
        font-size: 19px;
    }

    .nav_move2{
        padding-top: 100px;
    }

    .left_box{
        float: none;
        margin: 0 auto;
        padding-bottom: 30px;
    }

    .right_box{
        float: none;
        margin: 0 auto;
        padding-bottom: 20px;
    }

    .invi{
        margin-top: 50px;
        height: 230px;
    }

    .invitation{
        font-size: 32px;
    }

    .one_rem {
        margin-left: 1rem;
        text-indent: -1rem;
    }
    
    .two_rem{
        margin-left: 2rem;
        text-indent: -2rem;
    }
    
    .mini{
        font-size: 0.8em;
    }
    
    .half_rem{
        margin-left: 0.5rem;
        text-indent: -0.5rem;
    }

}

/* ---------スマホ横用--------- */
@media screen and (max-width:700px){
    header{
        padding-top: none;
        height: 65px;
        max-width: 100%;
    }

    h1 img {
        width: auto;
        height: 50px;
    }

    nav.global {
        position: fixed;
        transition: all .4s;
    }

    nav.global ul {
        display: block;
        width: 100%;
        margin-top: 28px;
        padding-top: 10px;
        height: 250px;
        transition: all .4s;
    }

    nav.global ul li {
        width: auto;
        display: block;
        margin-left: -20px;
        transition: all .4s;
    }

    nav.global ul li a {
        color: #fff;
        font-size: 0.75em;
        font-weight: lighter;
        line-height: 40px;
    }

    .main-visual {
        padding-top: 70px;
    }
}

/* ----------スマホ用---------- */
@media screen and (max-width:480px) {
    header {
        padding-top: none;
        height: 48px;
        max-width: 100%;
    }

    h1 {
        padding-left: 20px;
    }

    h1 img {
        width: auto;
        height: 40px;
    }

    nav.global {
        position: fixed;
        transition: all .4s;
    }

    nav.global ul {
        display: block;
        width: 100%;
        margin-top: 28px;
        padding-top: 10px;
        height: 250px;
        transition: all .4s;
    }

    nav.global ul li {
        width: auto;
        display: block;
        margin-left: -20px;
        transition: all .4s;
    }

    nav.global ul li a {
        color: #fff;
        font-size: 0.75em;
        font-weight: lighter;
        line-height: 40px;
    }

    .wrapper {
        overflow: hidden;
    }

    /* main-visual-------- */
    .main-visual {
        padding-top: 58px;
        
    }

    .main_img{
        display: flex;
        justify-content: center;
        width: 100%;
        margin: auto;
    }

    .main-visual img {
        width: 150%;
        display: block;
    }

    /* -------section--------- */

    section p {
        font-size: 14px;
        line-height: 1.6em;
        margin-bottom: 10px;
    }

    .white {
        max-width: 95%;
    }

    .caption {
        font-size: 12px;
        line-height: 1.5;
        /* margin-left: 2.5rem;
        text-indent: -2.5rem; */
    }

    .red_caption{
        font-size: 12px;
        line-height: 1.5;
        /* margin-left: 1rem;
        text-indent: -1rem; */
    }

    .nav_move {
        padding-top: 50px;
    }
    
    .nav_move2{
        padding-top: 40px;
    }

    h2{
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 1.1em;
        line-height: 1.25em;
    }

    h2 span{
        display: inline-block;
    }

    h3{
        font-size: 1em;
        padding: 10px;
    }

    h3 span{
        display: inline-block;
    }

    section img {
        max-width: 100%;
    }

    /* -----interview------ */
.specialist{
    margin-top: 20px;
}

.specialist img {
    float: left;
    margin-right: 10px;
    width: 140px;
}

.name {
    float: right;
    width: calc(100% - 150px);
}

.name .belong{
    font-size: 0.8em;
    line-height:1.4em
}

.name .belong span{
    display: inline-block;
}

.name .shimei{
    font-size: 1.3em;
    margin-top: 5px;
}

.profile{
    padding-top: 15px;
    clear: both;
}

.profile p{
    font-size: 13px;
    line-height: 1.7em;
}

.underline span{
    border-bottom: 1px solid #000;
    font-weight: bold;
}

.accordion-area li {
    margin: 0 0;
}

.accordion-area section {
    border: 1px solid #ccc;
    margin-top: 10px;
}

.a_title {
    font-size: 0.95rem;
    padding: 4% 4% 1% 50px;
}

.a_title::before {
    top: 50%;
}

.a_title::after {
    top: 50%;
}

.answer{
    font-size: 18px;
    font-weight: 600;
}

.ans_sentence {
    font-size: 0.9em;
    line-height: 1.7em;
    margin-bottom: 10px;
}

.now_power{
    position: relative;
    margin-top: 20px;
    font-size: 16px;
    padding: 0.5em 0.5em;
}

.now_power:before,
.now_power:after{
    position: absolute;
    top: 0.4rem;
    height: 1.8rem;
    content: '';
}

.now_power:before{
    border-left: solid 2px;
    left: 2%;
    transform: rotate(-30deg);
}

.now_power:after{
    border-right: solid 2px;
    right: 2%;
    transform: rotate(30deg);
}

.now_power_contents{
    margin-top: 15px;
    font-size: 15px;
}

.graph_title{
    font-size: 1em;
    margin-top: 20px;
}

.message{
    font-weight: normal;
}

.inner_box{
    margin-bottom: -40px;
}

/* -----ファンドの特色------ */
.hako{
    margin-top: 25px;
}

#features{
    padding-bottom: 30px;
}

#features .white{
    background-color: transparent;
}

#features h2{
    margin-top: 30px;
}

.features_box{
    height: auto;
    text-align: center;
    max-width: 100%;
}

.fund_left{
    float: none;
    text-align: center;
}

.fund_right{
    float: none;
    text-align: left;
    width: 95%;
    height: auto;
    margin-top: 10px;
    margin-left: 5px;
}

.fund_detail{
    font-size: 15px;
    font-weight: bold;
    line-height: 1.8em;
    color:#333
}

.btn{
    width: 250px;
    margin: 0 auto;
}

.btn a{
    margin-top: 20px;
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 0;
    background-color: #eb0a1e;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    transition: .2s;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px gray;
}

.btn a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: .2s;
    box-sizing: border-box;
  }

  .btn-icon-move a:hover::after {
    right: 20px;
  }

.tokkagata{
    border: 1px solid #999;
    margin: 30px 0 5px 0;
    padding: 10px;
    font-size: 14px;
}

.strong{
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 5px;
}

.another{
    position: relative;
    z-index: 0;
    margin-top: 30px;
}

.whole{
    position: relative;
    font-size: 1.1rem;
    text-align: center;
    
}

.whole:before{
    content: "";
  position: absolute;
  background: #61c5e1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
  opacity: 0.3;
}

/* ------銘柄紹介-------- */
.stocks{
    padding: 0.5em 2em;
    background: linear-gradient(to right, #fff 0%, #16347d 20%, #16347d 80%, #fff 100%);
    color: #fff;
    font-size: 16px;
    margin-top: 30px;
}

.company ul{
    margin-top: 20px;
}

.company ul li{
    font-size: 15px;
    margin-top: 10px;
}

.company ul li span{
    font-weight: bold;
    color: #eb0a1e;
}

.company h4{
    margin-top: 20px;
    text-align: center;
    font-size: 1em;
}

.company h4 span{
    display: inline-block;
}

.company h5{
    margin-top: 10px;
    text-align: center;
    font-size: 0.9em;
}

.company .mt50{
    margin-top: 20px;
}

.toyota_value{
    margin-top: 20px;
}

.left_box{
    width: 100%;
    float: none;
    margin-bottom: 10px;
}

.right_box{
    width: 100%;
    float: none;
    margin-bottom: 10px;
}

.bottomline{
    border-bottom: 1px solid #000;
}

.invi{
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0) 60%,rgba(255,255,255,0.5) 80%,rgba(255,255,255,1) 100%),url(../images/invitation.jpg);;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-top: 40px;
}

.invitation{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    line-height: 1.6;
    padding:2em 1em;
    text-align: center;
    margin-top: 20px;
    text-shadow: 2px 2px 4px #0000a0;
}

.invitation span{
    display: inline-block;
}

.indent4{
    text-indent:0.1em;
}

/* ------guard------ */
.guard{
    margin-top: 40px;
}

#gray {
    margin-top: 40px;
    margin-bottom: 10px;
    background: none;
    background-color: #777;
    color: #fff;
    padding: 10px 0 6px 20px;
    line-height: 1.3;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

.guard ul li{
    font-size: 0.9em;
}

.kakoi{
    font-size: 0.9em;
    border: 1px solid #0000a0;
    border-radius: 8px;
    padding: 8px;
    margin: 5px 0;
}

.factor ul li span{
    color: #f00;
    border-bottom: 1px solid #f00;
}

.fund p {
    font-size: 0.9em;
    font-weight: normal;
}

.fund ul li{
    color: #024480;
    font-weight: bold;
}

.fund p span {
    font-weight: bold;
    color: #f00;
    border-bottom: 1px solid;
}

.kawase{
    position: relative;
    margin-top: -20px;
}

.fund h4 {
    margin-top: 10px;
    text-align: left;
    margin-bottom: 0;
    color: #024480;
    font-weight: bold;
    font-size: 1em;
}

.fund h5{
    font-size: 1em;
    color: #024480;
    text-align: left;
}

.fund ul p{
    font-weight: normal;
}

.factor ul{
    list-style-type: circle;
}

.factor ul li{
    color: #000;
    font-weight: normal;
}

.factor ul li span{
    color: #f00;
    border-bottom: 1px solid;
    font-weight: bold;
}

.fund ul .list_color{
    color: #01b0e9;
    font-weight: bold;
    margin-bottom: 0;
}

.fund .list_color span{
    border-style: none;
    color: #01b0e9;
}

.hansha_btn a{
    margin: 0 auto;
}

.notes{
    margin-top: 80px;
}

.one_rem {
    margin-left: 1rem;
    text-indent: -1rem;
}

.two_rem{
    margin-left: 2rem;
    text-indent: -2rem;
}

.mini{
    font-size: 0.8em;
}

.half_rem{
    margin-left: 0.5rem;
    text-indent: -0.5rem;
}

/* footer-------- */
footer {
    margin-top: 30px;
    padding: 20px 20px;
}

small {
    font-size: 0.5em;
}

}