#splash-area,
.standBy #splash-area {
    display: none;
    opacity: 0;
    visibility: hidden;
}

#splash-area-inner,
.standBy #splash-area-inner {
    transform-origin: center center;
    transform: scale(0.5) translateY(90vh);
}

body.navTrigerOn {
    overflow: hidden;
}

#kv-area .catchcopy {
    width: 280px;
    margin-top: -40px;
}

#kv-area .symbol-logo {
    display: block;
    width: 110px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
@media (orientation: portrait) {
    #kv-area .symbol-logo {
        bottom: 140px;
    }
}
@media (orientation: landscape) {
    #kv-area .symbol-logo {
        bottom: 60px;
    }
}


#kv-area .btn-contact {
    display: block;
    background-color: #00bce1;
    width: 80px;
    height: 43px;
    position: absolute;
    right: 15px;
    bottom: 60px;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    padding-top: 38px;
    background-image: url(../img/icon-mail.svg);
    background-size: 22px auto;
    background-repeat: no-repeat;
    background-position: center top 14px;
    font-size: 10px;
    line-height: 12px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

#kv-area .btn-contact .eng {
    font-weight: 400;
    display: block;
    font-size: 10px;
    line-height: 12px;
    padding-top: 1px;
}

.onlyPC {
    display: none;
    visibility: hidden;
}
/*線装飾つき色文字タイトル*/
.tit-type-A{
    color: #00bce1;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.25em;
}
.tit-type-A::before{
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #00bce1;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}










#header-area {
    position: fixed;
    z-index: 1000;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 110px;
    overflow: hidden;
    transition-duration: 0.4s;
}
.navTrigerOn #header-area {
    transition-duration: 0s;
    height: 100%;
}
/*
#header-area.afterScroll:hover {
    height: 110px;
    transform: translateY(-20px);
    background-color: rgba(255,255,255,0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px); 
    transition-duration: 0.15s;
}
*/
#header-area a .header-logo{
    display: block;
    width: auto;
    height: 16px;
    position: absolute;
    left: 20px;
    top: 20px;
    transition-duration: 0.4s;
    transform-origin: left top;
}



#header-nav{
    visibility: hidden;
    opacity: 0;

    position: fixed;
    display: block;

    top: 0px;
    left: 0px;
    width: 100%;
    height: calc(50vh + 160px);
    padding-top: calc(50vh - 160px);
    transition-duration: 0.4s;

    background-color: #fff;
}
.navTrigerOn #header-nav{
    transition-duration: 0.6s;
    visibility: visible;
    opacity: 1;
}
#header-nav li.nav{
    margin: 0px 0px;
}
#header-nav li.nav a{
    text-align: center;
    color: #2f3f42;
    text-decoration: none;
    font-size: 13px;
    line-height: 15px;
    display: block;
    padding: 10px 0px;
    transition-duration: 0.2s;
    letter-spacing: 0.1em;
}
#header-nav li.nav a:hover{
    /*    background-color: rgba(255,255,255,0.36);*/
    background-color: rgba(0,188,225,0.36);

    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px); 
    color: #fff;
    transition-duration: 0.4s;
}
#header-nav a.btn-contact {
    position: fixed;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-align: center;

    background-image: url(../img/icon-mail.svg);
    background-repeat: no-repeat;
    background-size: auto 19px;
    background-position: left 80px top 19px;
    display: block;
    width: 280px;
    height: 38px;
    padding-top: 19px;
    padding-left: 20px;
    background-color: #00bce1;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    transition-duration: 0.2s;
}
#header-nav a.btn-contact:hover {
    /*    background-color: #2f3f42;*/
    transition-duration: 0.3s;
    opacity: 0.64;
}




/* ハンバーガーメニュー　ここから */
:root {
    --hamburger-menu-size: 100px; /* メニューの大きさ */ 
    --hamburger-menu-padding: 12px;  
    --hamburger-menu-border-px: 2px; /* 線の太さ */
    --hamburger-menu-border-color: #222222; /* 線の色 */
    --hamburger-menu-transition: 0.3s; /* アニメーション秒数 */
}
.hamburger-menu {
    margin: 0 auto; /* 中央寄せしたいだけ */
    cursor: pointer;
    position: absolute;
    top: 6px;
    right: 0px;
    width: 43px;
    height: 40px;
/*    background-color: #fff;*/
}
.hamburger-menu-line {
    position: absolute;
    transition: var(--hamburger-menu-transition);
    width: calc(100% - var(--hamburger-menu-padding) * 2);
    height: var(--hamburger-menu-border-px);
    background-color: var(--hamburger-menu-border-color);
}
.line-top {
    top: var(--hamburger-menu-padding);
    left: var(--hamburger-menu-padding);
}
.line-middle {
    top: calc(50% - var(--hamburger-menu-border-px)/2);
    left: var(--hamburger-menu-padding);
}
.line-bottom {
    bottom: var(--hamburger-menu-padding);
    left: var(--hamburger-menu-padding);
}

.hamburger-menu-active > .line-top {
    top: calc(50% - var(--hamburger-menu-border-px)/2);
    transform: rotate(45deg);
}
.hamburger-menu-active > .line-middle {
    width: 0;
    height: 0;
    left: var(--hamburger-menu-padding);
}

.hamburger-menu-active > .line-bottom {
    top: calc(50% - var(--hamburger-menu-border-px)/2);
    transform: rotate(-45deg);
}
/* ハンバーガーメニュー　ここまで */




.section-inner{
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
}




#section-CONCEPT {
    margin-top: 55px;
    padding-top: 15px;
    text-align: center;
    background-image: url(../img/bg-section-concept.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 860px auto;
    padding-bottom: 350px;
}
#section-CONCEPT h2{
    font-size: 17px;
    letter-spacing: 0.25em;
    line-height: 28px;
    padding-bottom: 15px;
    text-align: center;
}

#section-CONCEPT .honbun{
    padding-top: 35px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 26px;
    text-align: center;
}
#section-CONCEPT .honbun strong{
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.25em;
    line-height: 28px;
}

#section-CONCEPT .youtube-iframe {
    margin-top: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 320px;
    height: 180px;
}




#section-THANKS {
    margin-top: 55px;
    padding-top: 15px;
    text-align: center;
    background-image: url(../img/bg-section-concept.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 860px auto;
    padding-bottom: 250px;
}
#section-THANKS h2{
    font-size: 17px;
    letter-spacing: 0.25em;
    line-height: 28px;
    padding-bottom: 15px;
    text-align: center;
}

#section-THANKS .honbun{
    padding-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 26px;
    text-align: center;
}




#section-TECHNOLOGY {
    text-align: center;
}
#section-TECHNOLOGY.section-outer{
}

#section-TECHNOLOGY h2{
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    overflow: hidden;
    position: relative;
    width: 320px;
    
    font-size: 18px;
    line-height: 23px;

    letter-spacing: 0.25em;

    margin-bottom: 50px;

}
/*
@media screen and (min-width:768px) and ( max-width:980px) {
    #section-TECHNOLOGY h2{
        transform-origin: center top;
        transform: scale(0.86) translateX(-20px);
    }
}
*/

#section-TECHNOLOGY h2 .logotype{
    display: block;
    width: 150px;
    overflow: hidden;
    height: 36px;
    position: relative;

}
#section-TECHNOLOGY h2 .logotype img{
    position: absolute;
    top: 0;
    right: 0;
    height: 28px;
    width: auto;
    display: block;
}
#section-TECHNOLOGY h2 .tit-text{
    display: block;
    position: absolute;
    top: 2px;
    left: 160px;
}
#section-TECHNOLOGY .honbun{
    padding-top: 20px;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 24px;
    text-align: center;
}




/*6つのフィルター図版*/
.zuhan-six-filters {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    height: 360px;
    overflow: hidden;
    position: relative;
    margin-top: -80px;
    padding-top: 100px;
}
.zuhan-six-filters .air {
    display: block;
    position: absolute;
    left: 50%;
    top: 115px;
    width: 256px;
    margin-left: -115px;
    height: auto;
}
.zuhan-six-filters .aqua {
    display: block;
    position: absolute;
    left: 50%;
    top: 258px;
    width: 262px;
    margin-left: -118px;
    height: auto;
    mix-blend-mode: "multiply";
}
.zuhan-six-filters .water {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 368px;
    width: 107px;
    height: auto;
}
.zuhan-six-filters .bg-arrows {
    display: block;
    margin-left: 46px;
    width: 236px;
    height: 400px;
    overflow: hidden;
    background-image: url(../img/zu-a-bg-arrow.png);
    background-position: left top 54px;
    background-repeat: repeat-x;
    background-size: 47px auto;
}
.zuhan-six-filters .filter-list {
    position: absolute;
    top: 190px;
    left: 50%;
    margin-left: -193px;
    display: block;
    width: 386px;
    height: 400px;
    overflow: hidden;
}
.zuhan-six-filters .filter-list li img {
    display: block;
    width: 300px;
    height: auto;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
}




/* 6フィルターの説明文エリア*/
#caption-six-filters {
    display: block;
    width: calc(100% - 40px);
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    text-align: left;
    float: none;
}

#caption-six-filters li {
    display: block;
    width: 100%;
    /*    min-height: 350px;*/
    position: relative;
    margin-bottom: 25px;

}
#caption-six-filters h4 {
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.15em;
    color: #00bce1;
    margin-left: 80px;
}
#caption-six-filters li:nth-child(1) h4::before {content: "01";}
#caption-six-filters li:nth-child(2) h4::before {content: "02";}
#caption-six-filters li:nth-child(3) h4::before {content: "03";}
#caption-six-filters li:nth-child(4) h4::before {content: "04";}
#caption-six-filters li:nth-child(5) h4::before {content: "05";}
#caption-six-filters li:nth-child(6) h4::before {content: "06";}
#caption-six-filters li h4::before {
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/bg-number-sp.png);
    background-size: 66px auto;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    width: 66px;
    height: 47px;
    padding-top: 10px;
    color: #fff;
    font-family:'Lato','メイリオ', sans-serif;
    font-size: 33px;
    line-height: 35px;
    text-align: center;
    letter-spacing: 0em;
}

#caption-six-filters li:nth-child(6) h4
{ 
    padding-top: 8px;
}

#caption-six-filters h5 {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.08em;
    margin-left: 80px;
    margin-top: 3px;
}
#caption-six-filters .caption-honbun {
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.1em;
    margin-top: 15px;
    margin-left: 0px;
}
#caption-six-filters .attention {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    margin-top: 5px;
    margin-left: 0px;
}




.two-functions-area {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;

    border-bottom: solid 1px #def2f6;

    display: block;
    text-align: left;
    overflow: hidden;

}
.two-functions-area li {
    display: block;
    border-top: solid 1px #def2f6;
    padding-top: 20px;
    overflow: hidden;
}
.two-functions-area h3 {
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.15em;
}
.two-functions-area h3::before {
    content: "■";
    font-size: 15px;
    line-height: 19px;

}
.two-functions-area .caption-honbun {
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.12em;
    text-align: left;


    margin-top: 10px;
    margin-bottom: 20px;
}




.etc-functions-area {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;


    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
}
.etc-functions-area li {
    height: 90px;
    width: 30vw;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.12em;
    background-repeat: no-repeat;

    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    
    white-space: nowrap;
    
    padding-top: 26px;
}
.etc-functions-area .fuction-rock {
    background-image: url(../img/icon-rock.svg);
    background-size: auto 44px;
    background-position: center top;
}
.etc-functions-area .fuction-circulation {
    background-image: url(../img/icon-circulation.svg);
    background-size: auto 40px;
    background-position: center top 3px;
}
.etc-functions-area .fuction-change {
    background-image: url(../img/icon-change.svg);
    background-size: auto 32px;
    background-position: center top 9px;
}



.etc-check-area {
    width: calc(100% - 42px);
    border: solid 1px #a1d8e3;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding:20px 0px;
    display: block;
}
.etc-check-area li {
    background-image: url(../img/icon-checkbox.svg);
    background-size: 22px auto ;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left:33px;
    padding-top:8px;
    min-height: 27px;

    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.12em;

    margin: 0px 20px;
    text-align: left;

}





#theree-kindness-area {
    background-image: url(../img/bg-theree-kindness-area.jpg);
    background-size: 900px auto ;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 500px;
    padding-bottom: 45px;
    margin-top: 75px;
}

#theree-kindness-area ul {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;

    display: block;
}

#theree-kindness-area li {
    text-align: center;
}
#theree-kindness-area li:first-child {
    border-bottom: 1px solid #def2f6;
    padding-bottom: 30px;
}
#theree-kindness-area h4 {
    margin-top: 25px;
    font-size: 15px;
    line-height: 29px;
    text-align: center;
    margin-bottom: 15px;
}


.function-B .zuhan {
    width: calc(100% - 40px);
    max-width: 488px;
}

.function-C .zuhan {
    width: calc(100% - 40px);
    max-width: 398px;
}

#theree-kindness-area .zuhan {
    margin-left: auto;
    margin-right: auto;
}





#photo-essay-area {
    padding-top: 50px;
    padding-bottom: 500px;
    background-image: url(../img/bg-photo-essay-area-compressed-30.jpg);
    background-size: 800px auto ;
    background-repeat: no-repeat;
    background-position: left -20px bottom;
    background-color: #f8fcfd;
}

#photo-essay-area h3 {
    color: #00bce1;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.15em;
}

#photo-essay-area ul {
    width: calc(100% - 40px);
    display: block;
    overflow: hidden;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;

}
#photo-essay-area li {
    width: calc(50% - 6px);
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 2px;
    margin-bottom: 0px;
    float: left;
    display: inline;
}
#photo-essay-area .photo {
    width: 100%;
    height: auto;
}





#section-SPEC {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;

}
#section-SPEC.section-outer{
}


.slideshow-and-speclilist-outer {
    display: block;
    padding-top: 40px;
    position: relative;


}



#section-SPEC h2 {
    text-align: center;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 0.25em;
    margin-top: 75px;
}
#section-SPEC .eng {
    font-weight: 400;
    display: block;
    padding-top: 7px;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.15em;
}

.slide-shows {
    display: block;
    width: 200px;
    height: 550px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

#section-SPEC .slide-shows li {
    width: 100%;
    display: block;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;

    /*
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    */

}
#section-SPEC .slide-shows li img {
    width: 100%;
    height: auto;
}




#section-SPEC .spec-list {
    display: block;
    margin-top: 20px;
}

#section-SPEC .spec-list li {
    width: 100%;

    border-top: 1px solid #dddddd;
    padding: 10px 0px 13px;

    clear: both;
    overflow: hidden;
    float: none;
}
#section-SPEC .spec-list li:last-child {
    border-bottom: 1px solid #dddddd;
}
#section-SPEC .spec-list h3 {
    font-weight: 400;
    font-size: 12px;
    float: left;
    clear: none;
    width: 30%;
}
#section-SPEC .spec-list p {
    float: left;
    font-size: 12px;
    width: 70%;
    letter-spacing: 0.06em;
}
#section-SPEC .spec-list p sup {
    font-size: 10px;
}


.attention-list {
    margin-top: 15px;
    overflow: hidden;
    
}
.attention-list ul {
    display: inline;
}
.attention-list li {
    font-size: 11px;
    line-height: 12px;
    margin-bottom: 6px;
    padding-left: 30px;

}
.attention-list li::before {
    display: block;
    margin-left:  -30px;
    float: left;
    clear: none;
}

.attention-list li.number-1::before {content: "※1"}
.attention-list li.number-2::before {content: "※2"}
.attention-list li.number-3::before {content: "※3"}
.attention-list li.number-4::before {content: "※4"}
.attention-list li.number-5::before {content: "※5"}
.attention-list li.number-6::before {content: "※6"}
.attention-list li.number-7::before {content: "※7"}
.attention-list li.number-8::before {content: "※8"}
.attention-list li.number-9::before {content: "※9"}
.attention-list li.number-10::before {content: "※10"}
.attention-list li.number-11::before {content: "※11"}
.attention-list li.number-12::before {content: "※12"}
.attention-list li.number-13::before {content: "※13"}
.attention-list li.number-14::before {content: "※14"}
.attention-list li.number-15::before {content: "※15"}
.attention-list li.number-16::before {content: "※16"}
.attention-list li.number-17::before {content: "※17"}
.attention-list li.number-18::before {content: "※18"}
.attention-list li.number-19::before {content: "※19"}
.attention-list li.number-20::before {content: "※20"}



h4.water-per-day  {
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    letter-spacing: 0.15em;
    margin-top: 50px;

}
h4.water-per-day sup {
    font-size: 10px;
}



.water-mount-table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: calc(100vw - 20px);
    white-space: nowrap; /*文字の折り返しを禁止*/
    padding-bottom: 10px;
}

/*スクロールバー全体*/
.water-mount-table::-webkit-scrollbar {
    height: 12px;
    overflow: hidden;
}

/*スクロールバーの軌道*/
.water-mount-table::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #eeeeee;
}

/*スクロールバーの動く部分*/
.water-mount-table::-webkit-scrollbar-thumb {
    background-color: #ccc;
    height: 8px;
    border-radius: 6px;
}



.water-mount-table table {
    margin-top: 30px;
    width: 720px;
    border: 1px solid #dddddd;
    border-collapse: collapse;
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 400;
}
.water-mount-table tbody {
}
.water-mount-table tr {
}
.water-mount-table tr th {
    font-weight: 400;
    background-color: #f5f5f5;
    border: 1px solid #dddddd;
    border-collapse: collapse;

    height: 32px;
    text-align: center;
    vertical-align: middle;
}
.water-mount-table tr td {
    font-weight: 400;
    background-color: #fff;
    height: 24px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #dddddd;
    border-collapse: collapse;

}
.water-mount-table .th-img {
}

.water-mount-table tr td.emphasis {
    background-color: #cfedf3;
    color: #00bce1;
    font-weight: 500;
}
.water-mount-table tr .th-Temperature-Humidity{
    position: relative;
    overflow: hidden;
    width: 100px;
}


.water-mount-table tr .line-diagonal{
    position: absolute;
    display: block;
    height: 32px;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.water-mount-table tr .Temperature {
    position: absolute;
    bottom: 3px;
    left: 9%;
}
.water-mount-table tr .Humidity {
    position: absolute;
    top: 8px;
    right: 2%;
}

.water-mount-table .attention-list {
    margin-left: 130px;
    padding-left: 100px;
    background: red;
}









#section-FAQ {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;

}
#section-FAQ h2 {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.25em;
    margin-top: 70px;
}
#section-FAQ .eng {
    font-weight: 400;
    display: block;
    padding-top: 8px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.15em;
}

.FAQ-list {
    width: 100%;
    display: block;
    margin-top: 25px;
}

.FAQ-list li {
    border-top: solid 1px #def2f6;
    padding: 25px 0px;
    display: block;
    font-feature-settings: "palt";
    text-align:justify;
}
.FAQ-list li:last-child {
    border-bottom: solid 1px #def2f6;
}
.FAQ-list .question {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.15em;
    padding-left: 40px;
    display: block;

}
.FAQ-list .question::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "Q";
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    background-color: #2f3f42;
    width: 23px;
    height: 22px;
    border-radius: 100%;
    overflow: hidden;
    padding: 3px 0 0 2px;
    margin: -2px 18px 0 0;
    display: block;
    float: left;
    clear: none;
    text-align: center;
}

.FAQ-list .answer {
    position: relative;
    display: block;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.12em;
    padding-left: 40px;
    display: block;
    margin-top: 10px;
}
.FAQ-list .answer::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "A";
    font-size: 14px;
    line-height: 16px;
    border-radius: 100%;
    color: #fff;
    background-color: #00bce1;
    width: 23px;
    height: 22px;
    border-radius: 100%;
    overflow: hidden;
    padding: 3px 0 0 2px;
    margin: 0px 18px 0 0;
    display: block;
    float: left;
    clear: none;
    text-align: center;
}

#section-CONTACT {
    padding-top: 75px;
    padding-bottom: 75px;
    text-align: center;
}

#section-CONTACT h2 {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.25em;
    margin-top: 70px;
}
#section-FAQ .eng {
    font-weight: 400;
    display: block;
    padding-top: 8px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.15em;
}
#section-CONTACT .eng {
    font-weight: 400;
    display: block;
    padding-top: 7px;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.15em;
}
#section-CONTACT a.btn-contact {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-align: center;

    background-image: url(../img/icon-mail.svg);
    background-repeat: no-repeat;
    background-size: auto 19px;
    background-position: left 80px top 19px;
    display: block;
    width: 280px;
    height: 38px;
    padding-top: 19px;
    padding-left: 20px;
    background-color: #00bce1;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    transition-duration: 0.2s;
}
#section-CONTACT a.btn-contact:hover {
    /*    background-color: #2f3f42;*/
    transition-duration: 0.3s;
    opacity: 0.88;
}

#section-CONTACTFROM {
    padding-top: 30px;
}

#section-CONTACTFROM a.btn-contact {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-align: center;

    background-image: url(../img/icon-home.svg);
    background-repeat: no-repeat;
    background-size: auto 19px;
    background-position: left 70px top 19px;
    display: block;
    width: 280px;
    height: 38px;
    padding-top: 19px;
    padding-left: 20px;
    background-color: #00bce1;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    transition-duration: 0.2s;
}
#section-CONTACTFROM a.btn-contact:hover {
    /*    background-color: #2f3f42;*/
    transition-duration: 0.3s;
    opacity: 0.88;
}


#section-POLICY {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 35px;
}
#section-POLICY h2{
    font-size: 17px;
    letter-spacing: 0.25em;
    line-height: 28px;
    padding-top: 50px;
    text-align: center;
}
#section-POLICY .eng {
    font-weight: 400;
    display: block;
    padding-top: 7px;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.15em;
}
#section-POLICY .honbun{
    padding-bottom: 35px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 26px;
    text-align: left;
}
#section-POLICY .section {
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 40px;
    font-weight: 700;
    text-align: left;
}


#section-FOOTER {
    background-color: #222222;
    overflow: hidden;
    padding-bottom: 50px;
    position: relative;
}
#section-FOOTER.section-outer{
}
#section-FOOTER .section-inner {
}
#section-FOOTER h2 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 115px;
    height: auto;
    margin-top: 70px;
}

#section-FOOTER ul {
    display: block;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    margin-top: 70px;
    padding: 0;
}
#section-FOOTER li a {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.05em;

    padding: 10px;
    
    margin-left: auto;
    margin-right: auto;

}
#section-FOOTER li a:hover {
    color: #00bce1;
    transition-duration: 0.3s;
    /*    opacity: 0.5;*/
}

.copyright {
    display: block;
    min-width: 300px;
    position: static;
    color: #fff;
    text-align: center;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.05em;
    margin-top: 50px;
}
